rt-4.0.19/0000775000175000017500000000000012265024253011245 5ustar chmrrchmrrrt-4.0.19/configure.ac0000775000175000017500000003663612262650742013561 0ustar chmrrchmrrautoconf; exec ./configure $@ dnl dnl Process this file with autoconf to produce a configure script dnl dnl Embed in generated ./configure script the following CVS info: AC_REVISION($Revision$)dnl dnl Setup autoconf AC_PREREQ([2.53]) AC_INIT(RT, m4_esyscmd([( git describe --tags || cat ./.tag 2> /dev/null || echo "rt-3.9.EXPORTED" )| tr -d "\n"]), [rt-bugs@bestpractical.com]) AC_CONFIG_SRCDIR([lib/RT.pm]) dnl Save our incant early since $@ gets overwritten by some macros. dnl ${ac_configure_args} is available later, but it's quoted differently dnl and undocumented. See http://www.spinics.net/lists/ac/msg10022.html. AC_SUBST(CONFIGURE_INCANT, "$0 $@") dnl Extract RT version number components AC_SUBST([rt_version_major], m4_bregexp(AC_PACKAGE_VERSION,[^rt-\(\w+\)\.\(\w+\)\.\(.+\)$],[\1])) AC_SUBST([rt_version_minor], m4_bregexp(AC_PACKAGE_VERSION,[^rt-\(\w+\)\.\(\w+\)\.\(.+\)$],[\2])) AC_SUBST([rt_version_patch], m4_bregexp(AC_PACKAGE_VERSION,[^rt-\(\w+\)\.\(\w+\)\.\(.+\)$],[\3])) test "x$rt_version_major" = 'x' && rt_version_major=0 test "x$rt_version_minor" = 'x' && rt_version_minor=0 test "x$rt_version_patch" = 'x' && rt_version_patch=0 dnl Check for programs AC_PROG_INSTALL AC_ARG_VAR([PERL],[Perl interpreter command]) AC_PATH_PROG([PERL], [perl], [not found]) if test "$PERL" = 'not found'; then AC_MSG_ERROR([cannot use $PACKAGE_NAME without perl]) fi dnl WEB_HANDLER AC_ARG_WITH(web-handler, AC_HELP_STRING([--with-web-handler=LIST], [comma separated list of web-handlers RT will be able to use. Default is fastcgi. Valid values are modperl1, modperl2, fastcgi and standalone. To successfully run RT you need only one. ]), WEB_HANDLER=$withval, WEB_HANDLER=fastcgi) my_web_handler_test=$($PERL -e 'print "ok" unless grep $_ !~ /^(modperl1|modperl2|fastcgi|standalone)$/i, grep defined && length, split /\s*,\s*/, $ARGV@<:@0@:>@' $WEB_HANDLER) if test "$my_web_handler_test" != "ok"; then AC_MSG_ERROR([Only modperl1, modperl2, fastcgi and standalone are valid web-handlers]) fi AC_SUBST(WEB_HANDLER) dnl Defaults paths for installation AC_PREFIX_DEFAULT([/opt/rt4]) RT_ENABLE_LAYOUT # ACRT_USER_EXISTS( users, variable, default ) # - users is a list of users [www apache www-docs] # from highest to lowest priority to high priority (i.e. first match) # - variable is what you set with the result # AC_DEFUN([ACRT_USER_GUESS], [ $2=$3 for x in $1; do AC_MSG_CHECKING([if user $x exists]) AS_IF([ $PERL -e"exit( defined getpwnam('$x') ? 0 : 1)" ], [ AC_MSG_RESULT([found]); $2=$x ; break], [ AC_MSG_RESULT([not found]) ]) done ]) AC_DEFUN([ACRT_GROUP_GUESS], [ $2=$3 for x in $1; do AC_MSG_CHECKING([if group $x exists]) AS_IF([ $PERL -e"exit( defined getgrnam('$x') ? 0 : 1)" ], [ AC_MSG_RESULT([found]); $2=$x ; break], [ AC_MSG_RESULT([not found]) ]) done ]) dnl BIN_OWNER AC_ARG_WITH(bin-owner, AC_HELP_STRING([--with-bin-owner=OWNER], [user that will own RT binaries (default root)]), BIN_OWNER=$withval, BIN_OWNER=root) AC_SUBST(BIN_OWNER) dnl LIBS_OWNER AC_ARG_WITH(libs-owner, AC_HELP_STRING([--with-libs-owner=OWNER], [user that will own RT libraries (default root)]), LIBS_OWNER=$withval, LIBS_OWNER=root) AC_SUBST(LIBS_OWNER) dnl LIBS_GROUP AC_ARG_WITH(libs-group, AC_HELP_STRING([--with-libs-group=GROUP], [group that will own RT binaries (default bin)]), LIBS_GROUP=$withval, LIBS_GROUP=bin) AC_SUBST(LIBS_GROUP) dnl DB_TYPE AC_ARG_WITH(db-type, AC_HELP_STRING([--with-db-type=TYPE], [sort of database RT will use (default: mysql) (mysql, Pg, Oracle and SQLite are valid)]), DB_TYPE=$withval, DB_TYPE=mysql) if test "$DB_TYPE" != 'mysql' -a "$DB_TYPE" != 'Pg' -a "$DB_TYPE" != 'SQLite' -a "$DB_TYPE" != 'Oracle' ; then AC_MSG_ERROR([Only Oracle, Pg, mysql and SQLite are valid db types]) fi AC_SUBST(DB_TYPE) dnl DATABASE_ENV_PREF if test "$DB_TYPE" = 'Oracle'; then test "x$ORACLE_HOME" = 'x' && AC_MSG_ERROR([Please declare the ORACLE_HOME environment variable]) DATABASE_ENV_PREF="\$ENV{'ORACLE_HOME'} = '$ORACLE_HOME';" fi AC_SUBST(DATABASE_ENV_PREF) dnl DB_HOST AC_ARG_WITH(db-host, AC_HELP_STRING([--with-db-host=HOSTNAME], [FQDN of database server (default: localhost)]), DB_HOST=$withval, DB_HOST=localhost) AC_SUBST(DB_HOST) dnl DB_PORT AC_ARG_WITH(db-port, AC_HELP_STRING([--with-db-port=PORT], [port on which the database listens on]), DB_PORT=$withval, DB_PORT=) AC_SUBST(DB_PORT) dnl DB_RT_HOST AC_ARG_WITH(db-rt-host, AC_HELP_STRING([--with-db-rt-host=HOSTNAME], [FQDN of RT server which talks to the database server (default: localhost)]), DB_RT_HOST=$withval, DB_RT_HOST=localhost) AC_SUBST(DB_RT_HOST) dnl DB_DATABASE_ADMIN if test "$DB_TYPE" = "Pg" ; then DB_DBA="postgres" else DB_DBA="root" fi AC_ARG_WITH(db-dba, AC_HELP_STRING([--with-db-dba=DBA], [name of database administrator (default: root or postgres)]), DB_DBA=$withval, DB_DBA="$DB_DBA") AC_SUBST(DB_DBA) dnl DB_DATABASE AC_ARG_WITH(db-database, AC_HELP_STRING([--with-db-database=DBNAME], [name of the database to use (default: rt4)]), DB_DATABASE=$withval, DB_DATABASE=rt4) AC_SUBST(DB_DATABASE) dnl DB_RT_USER AC_ARG_WITH(db-rt-user, AC_HELP_STRING([--with-db-rt-user=DBUSER], [name of database user (default: rt_user)]), DB_RT_USER=$withval, DB_RT_USER=rt_user) AC_SUBST(DB_RT_USER) dnl DB_RT_PASS AC_ARG_WITH(db-rt-pass, AC_HELP_STRING([--with-db-rt-pass=PASSWORD], [password for database user (default: rt_pass)]), DB_RT_PASS=$withval, DB_RT_PASS=rt_pass) AC_SUBST(DB_RT_PASS) dnl WEB_USER AC_ARG_WITH(web-user, AC_HELP_STRING([--with-web-user=USER], [user the web server runs as (default: www)]), WEB_USER=$withval, ACRT_USER_GUESS([www www-data apache httpd nobody],[WEB_USER],[www]) ) AC_SUBST(WEB_USER) dnl WEB_GROUP AC_ARG_WITH(web-group, AC_HELP_STRING([--with-web-group=GROUP], [group the web server runs as (default: www)]), WEB_GROUP=$withval, ACRT_GROUP_GUESS([www www-data apache httpd nogroup nobody],[WEB_GROUP], [www])) AC_SUBST(WEB_GROUP) dnl RTGROUP AC_ARG_WITH(rt-group, AC_HELP_STRING([--with-rt-group=GROUP], [group to own all files (default: rt)]), RTGROUP=$withval, ACRT_GROUP_GUESS([rt3 rt $WEB_GROUP],[RTGROUP], [rt])) AC_SUBST(RTGROUP) dnl INSTALL AS ME # XXX TODO: The command below to figure out the group brokenly relies on # output order (and "id -gn" doesn't work on all platforms). my_group=$(groups|cut -f1 -d' ') my_user=${USER:-$LOGNAME} AC_ARG_WITH(my-user-group, AC_HELP_STRING([--with-my-user-group], [set all users and groups to current user/group]), RTGROUP=$my_group BIN_OWNER=$my_user LIBS_OWNER=$my_user LIBS_GROUP=$my_group WEB_USER=$my_user WEB_GROUP=$my_group) # Test for valid database names AC_MSG_CHECKING([if database name is set]) AS_IF([ echo $DB_DATABASE | $PERL -e 'exit(1) unless <> =~ /\S/' ], [ AC_MSG_RESULT([yes]) ], [ AC_MSG_ERROR([no. database name is not set]) ] ) AS_IF([ test "$DB_TYPE" = "mysql" ], [ AC_MSG_CHECKING([if database name is valid]) AS_IF([ echo $DB_DATABASE | $PERL -e 'exit(1) if <> =~ /-/'], [ AC_MSG_RESULT([yes]) ], [ AC_MSG_ERROR([no. database name ($DB_DATABASE) contains '-' which is not valid for mysql]) ] ) ] ) dnl Set the value of apachectl AC_ARG_WITH(apachectl, AC_HELP_STRING([--with-apachectl], [instruct RT where to find your apachectl]), APACHECTL=$withval, APACHECTL=`which apachectl`) AC_SUBST(APACHECTL) dnl RT's "maintainer mode" AC_ARG_WITH(devel-mode,[],RT_DEVEL_MODE=$withval,RT_DEVEL_MODE="0") AC_ARG_ENABLE(devel-mode, AC_HELP_STRING([--enable-devel-mode], [Turn on development aids that might hurt you in production]), RT_DEVEL_MODE=$enableval, RT_DEVEL_MODE=$RT_DEVEL_MODE) if test "$RT_DEVEL_MODE" = yes; then RT_DEVEL_MODE="1" else RT_DEVEL_MODE="0" fi AC_SUBST(RT_DEVEL_MODE) dnl RT's GraphViz dependency charts AC_CHECK_LIB([graph],[aginitlib],RT_GRAPHVIZ="1") AC_ARG_WITH(graphviz,[],RT_GRAPHVIZ=$withval) AC_ARG_ENABLE(graphviz, AC_HELP_STRING([--enable-graphviz], [Turns on support for RT's GraphViz dependency charts]), RT_GRAPHVIZ=$enableval) if test "$RT_GRAPHVIZ" = yes; then RT_GRAPHVIZ="1" else RT_GRAPHVIZ="0" fi AC_SUBST(RT_GRAPHVIZ) dnl RT's GD pie and bar charts AC_CHECK_PROG([RT_GD], [gdlib-config], "yes", "no") AC_ARG_WITH(gd,[],RT_GD=$withval) AC_ARG_ENABLE(gd, AC_HELP_STRING([--enable-gd], [Turns on support for RT's GD pie and bar charts]), RT_GD=$enableval) if test "$RT_GD" = yes; then RT_GD="1" else RT_GD="0" fi AC_SUBST(RT_GD) dnl RT's GPG support AC_CHECK_PROG([RT_GPG], [gpg], "yes", "no") AC_ARG_ENABLE(gpg, AC_HELP_STRING([--enable-gpg], [Turns on GNU Privacy Guard (GPG) support]), RT_GPG=$enableval) if test "$RT_GPG" = yes; then RT_GPG="1" else RT_GPG="0" fi AC_SUBST(RT_GPG) dnl SSL support for RT's mailgate AC_ARG_WITH(ssl-mailgate,[],RT_SSL_MAILGATE=$withval,RT_SSL_MAILGATE="0") AC_ARG_ENABLE(ssl-mailgate, AC_HELP_STRING([--enable-ssl-mailgate], [Turns on support for HTTPS in rt-mailgate]), RT_SSL_MAILGATE=$enableval, RT_SSL_MAILGATE=$RT_SSL_MAILGATE) if test "$RT_SSL_MAILGATE" = yes; then RT_SSL_MAILGATE="1" else RT_SSL_MAILGATE="0" fi AC_SUBST(RT_SSL_MAILGATE) dnl This section maps the variable names this script 'natively' generates dnl to their existing names. They should be removed from here as the .in dnl files are changed to use the new names. dnl version numbers AC_SUBST(RT_VERSION_MAJOR, ${rt_version_major}) AC_SUBST(RT_VERSION_MINOR, ${rt_version_minor}) AC_SUBST(RT_VERSION_PATCH, ${rt_version_patch}) dnl layout paths AC_SUBST([RT_PATH], ${exp_prefix}) AC_SUBST([RT_DOC_PATH], ${exp_manualdir}) AC_SUBST([RT_LOCAL_PATH], ${exp_customdir}) AC_SUBST([RT_LIB_PATH], ${exp_libdir}) AC_SUBST([RT_LEXICON_PATH], ${exp_lexdir}) AC_SUBST([RT_ETC_PATH], ${exp_sysconfdir}) AC_SUBST([CONFIG_FILE_PATH], ${exp_sysconfdir}) AC_SUBST([RT_BIN_PATH], ${exp_bindir}) AC_SUBST([RT_SBIN_PATH], ${exp_sbindir}) AC_SUBST([RT_VAR_PATH], ${exp_localstatedir}) AC_SUBST([RT_MAN_PATH], ${exp_mandir}) AC_SUBST([RT_FONT_PATH], ${exp_fontdir}) AC_SUBST([RT_PLUGIN_PATH], ${exp_plugindir}) AC_SUBST([MASON_DATA_PATH], ${exp_masonstatedir}) AC_SUBST([MASON_SESSION_PATH], ${exp_sessionstatedir}) AC_SUBST([MASON_HTML_PATH], ${exp_htmldir}) AC_SUBST([LOCAL_ETC_PATH], ${exp_custometcdir}) AC_SUBST([MASON_LOCAL_HTML_PATH], ${exp_customhtmldir}) AC_SUBST([LOCAL_LEXICON_PATH], ${exp_customlexdir}) AC_SUBST([LOCAL_LIB_PATH], ${exp_customlibdir}) AC_SUBST([LOCAL_PLUGIN_PATH], ${exp_customplugindir}) AC_SUBST([RT_LOG_PATH], ${exp_logfiledir}) if test ${exp_sysconfdir} = "etc" -o ${exp_sysconfdir} = "etc/rt"; then AC_SUBST([RT_PATH_R], ${exp_prefix}) AC_SUBST([RT_DOC_PATH_R], ${exp_prefix}/${exp_manualdir}) AC_SUBST([RT_LOCAL_PATH_R], ${exp_prefix}/${exp_customdir}) AC_SUBST([RT_LIB_PATH_R], ${exp_prefix}/${exp_libdir}) AC_SUBST([RT_ETC_PATH_R], ${exp_prefix}/${exp_sysconfdir}) AC_SUBST([CONFIG_FILE_PATH_R], ${exp_prefix}/${exp_sysconfdir}) AC_SUBST([RT_BIN_PATH_R], ${exp_prefix}/${exp_bindir}) AC_SUBST([RT_SBIN_PATH_R], ${exp_prefix}/${exp_sbindir}) AC_SUBST([RT_VAR_PATH_R], ${exp_prefix}/${exp_localstatedir}) AC_SUBST([RT_MAN_PATH_R], ${exp_prefix}/${exp_mandir}) AC_SUBST([RT_FONT_PATH_R], ${exp_prefix}/${exp_fontdir}) AC_SUBST([RT_LEXICON_PATH_R], ${exp_prefix}/${exp_lexdir}) AC_SUBST([RT_PLUGIN_PATH_R], ${exp_prefix}/${exp_plugindir}) AC_SUBST([MASON_DATA_PATH_R], ${exp_prefix}/${exp_masonstatedir}) AC_SUBST([MASON_SESSION_PATH_R], ${exp_prefix}/${exp_sessionstatedir}) AC_SUBST([MASON_HTML_PATH_R], ${exp_prefix}/${exp_htmldir}) AC_SUBST([LOCAL_ETC_PATH_R], ${exp_prefix}/${exp_custometcdir}) AC_SUBST([MASON_LOCAL_HTML_PATH_R], ${exp_prefix}/${exp_customhtmldir}) AC_SUBST([LOCAL_LEXICON_PATH_R], ${exp_prefix}/${exp_customlexdir}) AC_SUBST([LOCAL_LIB_PATH_R], ${exp_prefix}/${exp_customlibdir}) AC_SUBST([LOCAL_PLUGIN_PATH_R], ${exp_prefix}/${exp_customplugindir}) AC_SUBST([RT_LOG_PATH_R], ${exp_prefix}/${exp_logfiledir}) else AC_SUBST([RT_PATH_R], ${exp_prefix}) AC_SUBST([RT_DOC_PATH_R], ${exp_manualdir}) AC_SUBST([RT_LOCAL_PATH_R], ${exp_customdir}) AC_SUBST([RT_LIB_PATH_R], ${exp_libdir}) AC_SUBST([RT_LEXICON_PATH_R], ${exp_lexdir}) AC_SUBST([RT_ETC_PATH_R], ${exp_sysconfdir}) AC_SUBST([RT_PLUGIN_PATH_R], ${exp_plugindir}) AC_SUBST([CONFIG_FILE_PATH_R], ${exp_sysconfdir}) AC_SUBST([RT_BIN_PATH_R], ${exp_bindir}) AC_SUBST([RT_SBIN_PATH_R], ${exp_sbindir}) AC_SUBST([RT_VAR_PATH_R], ${exp_localstatedir}) AC_SUBST([RT_MAN_PATH_R], ${exp_mandir}) AC_SUBST([RT_FONT_PATH_R], ${exp_fontdir}) AC_SUBST([MASON_DATA_PATH_R], ${exp_masonstatedir}) AC_SUBST([MASON_SESSION_PATH_R], ${exp_sessionstatedir}) AC_SUBST([MASON_HTML_PATH_R], ${exp_htmldir}) AC_SUBST([LOCAL_ETC_PATH_R], ${exp_custometcdir}) AC_SUBST([MASON_LOCAL_HTML_PATH_R], ${exp_customhtmldir}) AC_SUBST([LOCAL_LEXICON_PATH_R], ${exp_customlexdir}) AC_SUBST([LOCAL_PLUGIN_PATH_R], ${exp_customplugindir}) AC_SUBST([LOCAL_LIB_PATH_R], ${exp_customlibdir}) AC_SUBST([RT_LOG_PATH_R], ${exp_logfiledir}) fi dnl Configure the output files, and generate them. dnl Binaries that should be +x AC_CONFIG_FILES([ etc/upgrade/3.8-ical-extension etc/upgrade/split-out-cf-categories etc/upgrade/generate-rtaddressregexp etc/upgrade/upgrade-articles etc/upgrade/vulnerable-passwords sbin/rt-attributes-viewer sbin/rt-preferences-viewer sbin/rt-session-viewer sbin/rt-dump-metadata sbin/rt-setup-database sbin/rt-test-dependencies sbin/rt-email-digest sbin/rt-email-dashboards sbin/rt-clean-sessions sbin/rt-shredder sbin/rt-validator sbin/rt-validate-aliases sbin/rt-email-group-admin sbin/rt-server sbin/rt-server.fcgi sbin/standalone_httpd sbin/rt-setup-fulltext-index sbin/rt-fulltext-indexer bin/rt-crontool bin/rt-mailgate bin/rt], [chmod ug+x $ac_file] ) dnl All other generated files AC_CONFIG_FILES([ Makefile etc/RT_Config.pm lib/RT/Generated.pm t/data/configs/apache2.2+mod_perl.conf t/data/configs/apache2.2+fastcgi.conf], ) AC_OUTPUT rt-4.0.19/docs/0000775000175000017500000000000012262650742012202 5ustar chmrrchmrrrt-4.0.19/docs/UPGRADING-3.80000664000175000017500000001646112262650742013763 0ustar chmrrchmrr=head1 UPGRADING FROM 3.8.8 AND EARLIER Previous versions of RT used a password hashing scheme which was too easy to reverse, which could allow attackers with read access to the RT database to possibly compromise users' passwords. Even if RT does no password authentication itself, it may still store these weak password hashes -- using ExternalAuth does not guarantee that you are not vulnerable! To upgrade stored passwords to a stronger hash, run: perl etc/upgrade/vulnerable-passwords We have also proved that it's possible to delete a notable set of records from Transactions table without losing functionality. To delete these records, run the following script: perl -I /opt/rt4/local/lib -I /opt/rt4/lib etc/upgrade/shrink_transactions_table.pl If you chose not to run the shrink_cgm_table.pl script when you upgraded to 3.8, you should read more about it below and run it at this point. The default for $MessageBoxWrap is now SOFT and $MessageBoxWidth is now unset by default. This means the message box will expand to fill all the available width. $MessageBoxWrap is also overridable by the user now. These changes accommodate the new default two column layout for ticket create and update pages. You may turn this layout off by setting $UseSideBySideLayout to 0. To retain the original behavior, set $MessageBoxWrap to HARD and $MessageBoxWidth to 72. =head1 UPGRADING FROM 3.8.7 AND EARLIER RT's ChartFont option has been changed from a string to a hash which lets you specify per-language fonts. RT now comes with a better default font for charts, too. You should either update your 'ChartFont' option to match the new format, or consider trying the new default. RT now gives you more precise control over the order in which custom fields are displayed. This change requires some small changes to your currently saved custom field orders. RT will automatically clean up your existing custom fields when you run the standard database upgrade steps. After that cleanup, you should make sure that custom fields are ordered in a way that you and your users find pleasing. =head1 UPGRADING FROM 3.8.6 AND EARLIER For MySQL and Oracle users: if you upgraded from a version of RT earlier than 3.7.81, you should already have a CachedGroupMembers3 index on your CachedGroupMembers table. If you did a clean install of RT somewhere in the 3.8 release series, you most likely don't have this index. You can add it manually with: CREATE INDEX CachedGroupMembers3 on CachedGroupMembers (MemberId, ImmediateParentId); =head1 UPGRADING FROM 3.8.5 AND EARLIER You can now forward an entire Ticket history (in addition to specific transactions) but this requires a new Template called "Forward Ticket". This template will be added as part of the standard database upgrade step. Custom fields with categories can optionally be split out into hierarchical custom fields. If you wish to convert your old category-based custom fields, run: perl etc/upgrade/split-out-cf-categories It will prompt you for each custom field with categories that it finds, and the name of the custom field to create to store the categories. If you were using the LocalizedDateTime RT::Date formatter from custom code, and passing a DateFormat or TimeFormat argument, you need to switch from the strftime methods to the cldr methods; that is, 'full_date_format' becomes 'date_format_full'. You may also have done this from your RT_SiteConfig.pm, using: Set($DateTimeFormat, { Format => 'LocalizedDateTime', DateFormat => 'medium_date_format', ); Which would need to be changed to: Set($DateTimeFormat, { Format => 'LocalizedDateTime', DateFormat => 'date_format_medium', ); =head1 UPGRADING FROM 3.8.3 AND EARLIER Arguments to the NotifyGroup Scrip Action will be updated as part of the standard database upgrade process. =head1 UPGRADING FROM 3.8.2 AND EARLIER A new scrip condition, 'On Reject', has been added. =head1 UPGRADING FROM 3.8.1 AND EARLIER When using Oracle, $DatabaseName is now used as SID, so RT can connect without environment variables or tnsnames.ora file. Because of this change, your RT instance may loose its ability to connect to your DB; to resolve this, you will need to update RT's configuration and restart your web server. Example configuration: Set($DatabaseType, 'Oracle'); Set($DatabaseHost, '192.168.0.1'); # undefined port => will try both 1526 and 1521 Set($DatabasePort, undef); # ORACLE SID Set($DatabaseName, 'XE'); # user for RT in Oracle, RT's tables in his schema Set($DatabaseUser, 'test'); # above user's password Set($DatabasePassword, 'test'); If you want a user to be able to access the Approvals tools (a.k.a. the Approvals tab), you must grant that user the "ShowApprovalsTab" right. =head1 UPGRADING FROM 3.8.0 AND EARLIER The TicketSQL syntax for bookmarked tickets has been changed. Specifically, the new phrasing is "id = '__Bookmarked__'", rather than the old "__Bookmarks__". The old form will remain, for backwards compatibility. The standard database upgrade process will only automatically change the global 'Bookmarked Tickets' search =head1 UPGRADING FROM 3.7.85 AND EARLIER We have proved that it is possible to delete a large set of records from the CachedGroupMembers table without losing functionality; in fact, failing to do so may result in occasional problems where RT miscounts users, particularly in the chart functionality. To delete these records run the following script: perl -I /opt/rt4/local/lib -I /opt/rt4/lib etc/upgrade/shrink_cgm_table.pl After you run this, you will have significantly reduced the number of records in your CachedGroupMembers table, and may need to tell your database to refresh indexes/statistics. Please consult your DBA for specific instructions for your database. =head1 UPGRADING FROM 3.7.81 AND EARLIER RT::Extension::BrandedQueues has been integrated into core, and the handling of subject tags has changed as a consequence. You will need to modify any of your email templates which use the $rtname variable, in order to make them respect the per-queue subject tags. To edit your templates, log into RT as your administrative user, then click: Configuration -> Global -> Templates -> Select -> The only template which ships with RT which needs updating is the "Autoreply" template, which includes this line: "There is no need to reply to this message right now. Your ticket has been assigned an ID of [{$rtname} #{$Ticket->id()}]." Change this line to read: "There is no need to reply to this message right now. Your ticket has been assigned an ID of { $Ticket->SubjectTag }." If you were previously using RT::Extension::BrandedQueues, you MUST uninstall it before upgrading. RT::Action::LinearEscalate extension has been integrated into core, so you MUST uninstall it before upgrading. RT::Extension::iCal has been integrated into core, so you MUST uninstall it before upgrading. In addition, you must run etc/upgrade/3.8-ical-extension script to convert old data. =head1 UPGRADING FROM 3.7.80 AND EARLIER Added indexes to CachedGroupMembers for MySQL and Oracle. If you have previously installed RTx-Shredder, you may already have these indexes. You can see the indexes by looking at etc/upgrade/3.7.81/schema.* These indexes may take a very long time to create. rt-4.0.19/docs/schema.dot0000775000175000017500000001004712262650742014157 0ustar chmrrchmrrdigraph g { graph [ rankdir = "RL", concentrate = true, ratio = auto ]; node [ fontsize = "18", shape = record, fontsize = 18 ]; edge [ ]; "Records" [shape = record, fontsize = 18, label = "(Any RT::Record)" ]; "Records" -> "Principals" [label = "Creator → id"]; "ACL" [shape = record, fontsize = 18, label = " \N " ]; "ACL" -> "Principals" [label="PrincipalId → id"]; "ACL" -> "Records" [label="ObjectId → id"]; "Attachments" [shape = record, fontsize = 18, label = " \N " ]; "Attachments" -> "Transactions" [label="TransactionId → id"]; "Attachments" -> "Attachments" [label="Parent → id"]; "CachedGroupMembers" [shape = record, fontsize = 18, label = " \N " ]; "CachedGroupMembers" -> "Groups" [label="GroupId → id", weight=2]; "CachedGroupMembers" -> "Principals" [label="MemberId → id"]; "CachedGroupMembers" -> "CachedGroupMembers" [label="Via → id"]; "CachedGroupMembers" -> "Groups" [label="ImmediateParentId → id"]; "CustomFields" [shape = record, fontsize = 18, label = " \N " ]; "CustomFieldValues" [shape = record, fontsize = 18, label = " \N " ]; "CustomFieldValues" -> "CustomFields" [label="CustomField → id"]; "GroupMembers" [shape = record, fontsize = 18, label = " \N " ]; "GroupMembers" -> "Groups" [label="GroupId → id", weight=2]; "GroupMembers" -> "Principals" [label="MemberId → id", weight = 2]; "Groups" [shape = record, fontsize = 18, label = " \N " ]; "Groups" -> "Principals" [label="id → id"]; "Links" [shape = record, fontsize = 18, label = " \N " ]; "Links" -> "Tickets" [label="LocalBase ⇢ id (usually)", style="dotted"]; "Links" -> "Tickets" [label="LocalTarget ⇢ id (usually)", style="dotted"]; "Principals" [shape = record, fontsize = 18, label = " \N " ]; "Attributes" [shape = record, fontsize = 18, label = " \N " ]; "Attributes" -> "Records" [label="ObjectId → id"]; "Queues" [shape = record, fontsize = 18, label = " \N " ]; "ScripActions" [shape = record, fontsize = 18, label = " \N " ]; "ScripConditions" [shape = record, fontsize = 18, label = " \N " ]; "Scrips" [shape = record, fontsize = 18, label = " \N " ]; "Scrips" -> "ScripConditions" [label="ScripCondition → id"]; "Scrips" -> "ScripActions" [label="ScripAction → id"]; "Scrips" -> "Templates" [label="Template → id"]; "Scrips" -> "Queues" [label="Queue → id"]; "Templates" [shape = record, fontsize = 18, label = " \N " ]; "Templates" -> "Queues" [label ="Queue → id" ]; "ObjectCustomFields" [shape = record, fontsize = 18, label = " \N " ]; "ObjectCustomFields" -> "CustomFields" [label="CustomField → id"]; "ObjectCustomFields" -> "Records" [label="ObjectId → id"]; "ObjectCustomFieldValues" [shape = record, fontsize = 18, label = " \N " ]; "ObjectCustomFieldValues" -> "CustomFields" [label="CustomField → id"]; "ObjectCustomFieldValues" -> "Records" [label="ObjectId → id"]; "Tickets" [shape = record, fontsize = 18, label = " \N " ]; "Tickets" -> "Tickets" [label="EffectiveId → id"]; "Tickets" -> "Principals" [label="Owner → id"]; "Queues" -> "Tickets" [style="invis"]; "Tickets" -> "Queues" [label="Queue → id"]; "Transactions" [shape = record, fontsize = 18, label = " \N " ]; "Transactions" -> "Records" [label="ObjectId → id"]; "Users" [shape = record, fontsize = 18, label = " \N " ]; "Users" -> "Principals" [label="id → id"]; // "Classes" [shape = record, fontsize = 18 label = " \N " ]; // "Articles" [shape = record, fontsize = 18 label = " \N " ]; // "Articles" -> "Classes" [ label="Class → id"]; // "Articles" -> "Articles" [ label="Parent → id"]; // "ObjectClasses" [shape = record, fontsize = 18 label = " \N " ]; // "ObjectClasses" -> "Records" [label="ObjectId → id"]; // "ObjectClasses" -> "Classes" [label="Class → id"]; // "Topics" [shape = record, fontsize = 18 label = " \N " ]; // "ObjectTopics" [shape = record, fontsize = 18 label = " \N " ]; // "ObjectTopics" -> "Records" [label="ObjectId → id"]; // "ObjectTopics" -> "Topics" [label="Topic → id"]; } rt-4.0.19/docs/UPGRADING-3.40000664000175000017500000000134012262650742013745 0ustar chmrrchmrr=head1 UPGRADING FROM 3.3.14 AND EARLIER The "ModifyObjectCustomFieldValues" right name was too long. It has been changed to "ModifyCustomField" =head1 UPGRADING FROM 3.3.11 AND EARLIER Custom Fields now have an additional right, "ModifyCustomField". This right governs whether a user can modify an object's custom field values for a particular custom field. This includes adding, deleting and changing values. =head1 UPGRADING FROM 3.3.2 AND EARLIER Viewing custom fields now requires the "SeeCustomField" right either globally or on a per-queue basis. Global CFs are no longer visible to everyone and SeeQueue is no longer sufficient to view queue-level CFs. You must grant the "SeeCustomField" right manually after upgrade. rt-4.0.19/docs/network-diagram.svg0000664000175000017500000072714212262650742016033 0ustar chmrrchmrr image/svg+xml Users Mail server Database server PostgreSQL, MySQL, Oracle postfix, exim, qmail,sendmail, Exchange, etc. RT webserver Apache, lighttpd, nginx, etc. External authentication LDAP, Active Directory, externaldatabase, webauth New tickets and replies via email to RT Notification emails from RT Web interface Optional authentication source For small installations, the database server can be on the same server as RT. Example Request Trackernetwork setup rt-4.0.19/docs/glossary.pod0000664000175000017500000000123012262650742014545 0ustar chmrrchmrr=head1 RT Glossary This document is intended to be a glossary of terms used in RT. Currently it doesn't even scratch the surface, but with time it should be expanded. =head2 Right names RT uses a handful of (mostly) standard prefixes to create right names of the form "". The prefixes and their meanings (if not apparent) are explained here. =over 4 =item Admin - Create, modify, and delete =item Create =item Delete =item Edit - Create, modify, and delete =item Load - See/show =item Modify - Change the content, details and/or metadata =item See - Allow viewing of =item Show - Allow viewing of, or display in the interface =back rt-4.0.19/docs/extending/0000775000175000017500000000000012262650742014167 5ustar chmrrchmrrrt-4.0.19/docs/extending/using_forms_widgets.pod0000664000175000017500000001074112262650742020757 0ustar chmrrchmrr=head1 Using widgets F This widgets was implemented to address several common issues in handling request arguments and allow developers to avoid reinventing the wheel. =head2 General info Each component shows widget by default and has two methods: Process and InputOnly. The first one method process arguments and return new value of a parametr. The second one is helper that shows only form elements with minimum of required text labels. So you show a widget with: <& /Widgets/Form/Integer, Name => 'NameOfInputElement', Description => 'Input integer', &> You can show only C box using: <& /Widgets/Form/Integer:InputOnly, Name => 'NameOfInputElement', &> In such a simple case you even can avoid processing. Yeah, most probably you want to check if value is really integer, but these widgets don't do validation for you, but they are more about fetching values from hash of arguments, showing these values to user and preserving state of value between form reloads (see below). =head2 Processing Processing is required when you use L, such as Default, Multiple or Alternative. To process arguments of a request you have to do the following: $ARGS{'NameOfInputElement'} = $m->comp( '/Widgets/Form/Integer:Process', Arguments => \%ARGS, Name => 'NameOfInputElement', ); The method returns processed value in canonical form. For different widgets a canonical form is different and depends on activated features, so you must always activate the same features during showing a widget and processing results. =head2 Extendent features =head3 Default value If C argument is true then widgets expect that there is some default value for argument if user fills nothing. 'Nothing' in each widget is different, for example in select box it's special option which is always the first one, in integer box string '' means empty value, but boolean box uses radio buttons in this case with three options: Yes, No and Default. Each widget that supports C feature as well has C and C arguments. =head4 Processing and showing with activated Default feature When this option is activated then C method returns undef value if user selected default value. So for integer box it's empty string and so on. As well when you show a widget you should pass undef as C to inform widget that the current value is default one. As all methods of a widget are consistent in this behaviour so you shouldn't care much about that, but this allows you to implement custom actions if processing returned undef, for example delete user's preference record instead of updating it (default value may change later to). =head4 C when C is not active DefaultValue argument is still actual in the Process method even if C is not true. This argument defines intial value. If value of a key in Arguments is not defined then it's treated as intial state and the method returns default value. =head3 Multiple and Alternative These options are only supported by the select widget. TODO: Add more info =head2 Implementation details =head3 Boolean widget This widget a little bit tricky. When you use Default option then things are simple and you see three radio buttons, but in other case we use a checkbox. But as you know browsers don't pass unchecked boxes to server, so arguments of a request has no entry for them. In the latter case it's hard to figure out case when user unselected value. Imagine form with a checkbox, you want show it checked by default and as well form is reloadable (like Reply forms that have "Add Another File" buttons). User uncheck the box and then upload file, in this case you want to show user's choice instead of default, but browser doesn't send any value and you can not figure out if it's initial state or page reload. To solve this problem we use magic hidden input field with the same name as the box and value equal to zero (0). Mason folds arguments with the same name into array refs, so we get 0 if box is unchecked and [0, 1] if box is checked. An array reference is true value and 0 is defined value so we know that it's not initial state and avoid switching back to default. As well this trick works good in a case when you want show a link to a page and define default choice for some boolean argument, you don't need to set argument twice, you just set it to true value (for ex. 1) and things just work. rt-4.0.19/docs/extending/clickable_links.pod0000664000175000017500000001174312262650742020012 0ustar chmrrchmrr=head1 MakeClicky extension =head2 Description I detects various formats of data in headers and email messages, and makes them into links in RT's web UI. =head2 Configuration You can configure which actions are enabled from RT config with the @Active_MakeClicky option, which should contain an ordered list of the actions you want to apply. By default, RT provides two actions: =over 4 =item C Detects C and C URLs and adds an C<[Open URL]> link after the URL. =item C Detects URLs as C format, but replaces the URL with a link. =back RTIR, an RT extension for CERT teams (not installed with core RT), shipps with several additional actions you can use: C, C, C, C and C. =head2 Order of actions The order of the actions is important in situations when you use multiple actions that could match the same block of text; only the first matching action from the list is applied. For example, it makes no sense to use C and C at the same time, as both actions always match the same pieces of text. =head2 How it works Each action consists of regular expression and function that does text replacement. When you open the history of a ticket, RT searches in the text with the given regular expresion for matches. If it finds a match, it calls the function with the match as the argument, then replaces the matched text with the string returned by the function. While RT only searches plaintext content, the actions can generate arbitrary HTML. =head2 Writing custom MakeClicky actions To extend the list of actions with your own types of data, use the provided callback. Specifically, create the file F. It will be called with the following arguments: =over 4 =item types An array reference of hash references. Modify this array reference to add your own types; the first matching type will be used. Each hashref should contain: =over 4 =item name The name of the data format; this is used in the configuration file to enable the format. =item regex A regular expression to match against. =item action The name of the action to run (see "actions", below) =back =item actions A hash reference of 'actions'. Modify this hash reference to change or add action types. Values are subroutine references which will get called when needed. They should return the modified string. Note that subroutine B HTML. =item handler A subroutine reference; modify it only if you have to. This can be used to add pre- or post-processing around all actions. =back =head2 Actions' arguments A hash is passed to the action with two keys that always exist: =over 4 =item value The full match of the regular expression; this is the block of text that will be replaced with action's result. =item all_matches And arrayref with all of the match's capturing groups; for example if your regexp is C, then the first element will be full match ("ticket #XXX"), the same as in 'value' key, but the second element of the array will be the id of a ticket (XXX). Using this, you can avoid reparsing the value in the action. Only the first eight groups of your regexps are passed to action. =back =head2 Custom MakeClicky action example Create a new file F with the content: <%ARGS> $types => [] $actions => {} <%INIT> my $web_path = RT->Config->Get('WebPath'); # action that takes ticket ID as argument and returns link to the ticket $actions->{'link_ticket'} = sub { my %args = @_; my $id = $args{'all_matches'}[1]; return qq{$args{value}}; }; # add action to the list push @$types, { # name, that should be used in config to activate action name => 'short_ticket_link', # regular expression that matches text 'ticket #xxx' regex => qr{ticket\s+#(\d+)}i, # name of the action that should be applied action => 'link_ticket', }; That's all; add C to the C<@Active_MakeClicky> option in your C, and restart your server. Creating a ticket with "ticket #1" in the body should cause that text to be automatically linked to the ticket in question. =head2 Notes for custom clicky actions writers =over =item * Note that an action B illegal HTML characters with entities and/or arguments in URLs. =item * Complex regular expressions could slow down RT, as the conversion is run each time a user opens a ticket, for every transaction. For long tickets and complex regular expressions, this can slow down ticket display notably. =item * Try to match the shortest expression you need with your regular expression; otherwise another action may miss its chance to match. =item * Whenever possible, precalculate values using closures around the functions. =back =cut rt-4.0.19/docs/extending/external_custom_fields.pod0000664000175000017500000000641012262650742021436 0ustar chmrrchmrr=head1 External custom fields =head2 Description C is an extension to custom fields that allow you to define CFs with dynamic lists of values. Loading values into these custom fields requires writing a little Perl code to fetch the data from the external source. =head2 Introduction into writing source of values For each type of data source that you want, you'll need to put a file in F (or equivalent if you installed RT into someplace other than F). To get a sense of the code that you'll need to write, take a look at the code in F for a simple example which just uses RT's API to pull in a list of RT's groups. Running C will show you the documentation for the API that needs to be fulfilled; copying and editing the C example is probably a fine place to start. Later in this doc we'll describe the example a little bit more. =head2 Configuration After the custom code is written, you need to tell RT about its existence by adding something like following to your RT_SiteConfig.pm: Set(@CustomFieldValuesSources, "RT::CustomFieldValues::MySource"); The value in quotes should be the name of the class that you created. Stop and start your web server to enable any config changes. Open the web interface as an administrative user (such as root), and create new custom field. Set its type to be a Select or Autocomplete field, and save the changes. You should now you have ability to select a "source" for values. Choose the class you wrote from the list and the save changes. =head2 How to write custom source You have to implement a subclass of L. There are two main methods you want to override: =over 4 =item SourceDescription This method should return a string describing the data source; this is the identifier which the administrator will see in the dropdown in the web interface. See L. =item ExternalValues This method should return an array reference of hash references. The hash references should contain keys for C, C, and C. C is most important one; the others are optional. =back Here's a simple static example: package RT::CustomFieldValues::MySource; # define class inheritance use base qw(RT::CustomFieldValues::External); # admin friendly description, the default valuse is the name of the class sub SourceDescription { return 'My Source'; } # actual values provider method sub ExternalValues { # return reference to array ([]) return [ # each element of the array is a reference to hash that describe a value # possible keys are name, description and sortorder { name => 'value1', description => 'external value', sortorder => 1 }, { name => 'value2', description => 'another external value', sortorder => 2 }, # values without description are also valid, the default description is empty string { name => 'value3', sortorder => 3 }, # you can skip sortorder too, but note that the default sortorder is 0 (zero) { name => 'value3' }, ]; } 1; # don't forget to return some true value rt-4.0.19/docs/UPGRADING-4.00000664000175000017500000002243412262650742013751 0ustar chmrrchmrr=head1 UPGRADING FROM BEFORE 4.0.0 =head2 Common issues RT now defaults to a database name of rt4 and an installation root of /opt/rt4. If you are upgrading, you will likely want to specify that your database is still named rt3 (or import a backup of your database as rt4 so that you can feel more confident making the upgrade). You really shouldn't install RT4 into your RT3 source tree (/opt/rt3) and instead should be using make install to set up a clean environment. This will allow you to evaluate your local modifications and configuration changes as you migrate to 4.0. If you choose to force RT to install into /opt/rt3, or another existing RT 3.x install location, you will encounter issues because we removed the _Overlay files (such as Ticket_Overlay.pm) and relocated other files. You will need to manually remove these files after the upgrade or RT will fail. After making a complete backup of your /opt/rt3 install, you might use a command like the following to remove the _Overlay files: find /opt/rt3/lib/ -type f -name '*_Overlay*' -delete RT has also changed how web deployment works; you will need to review F for current instructions. The old `fastcgi_server`, `webmux.pl`, and `mason_handler.*` files will not work with RT 4.0, and should be removed to reduce confusion. If you deploy RT with mod_perl, Apache will no longer start with C set to `perl-script`. F contains the new configuration. =head2 RT_SiteConfig.pm You will need to carefully review your local settings when moving from 3.8 to 4.0. If you were adding your own custom statuses in earlier versions of RT, using ActiveStatus or InactiveStatus you will need to port these to use the new Lifecycles functionality. You can read more about it in RT_Config.pm. In most cases, you can do this by extending the default active and inactive lists. =head2 Upgrading sessions on MySQL In 4.0.0rc2, RT began shipping an updated schema for the sesions table that specificies a character set as well as making the table InnoDB. As part of the upgrade process, your sessions table will be dropped and recreated with the new schema. =head2 Upgrading from installs with RTFM RT4 now includes an Articles functionality, merged from RTFM. You should not install and enable the RT::FM plugin separately on RT 4. If you have existing data in RTFM, you can use the etc/upgrade/upgrade-articles script to upgrade that data. When running normal upgrade scripts, RT will warn if it finds existing RTFM tables that contain data and point you to the upgrade-articles script. This script should be run from your RT tarball. It will immediately begin populating your new RT4 tables with data from RTFM. If you have browsed in the RT4 UI and created new classes and articles, this script will fail spectacularly. Do *not* run this except on a fresh upgrade of RT. You can run this as etc/upgrade/upgrade-articles It will ouput a lot of data about what it is changing. You should review this for errors. If you are running RTFM 2.0 with a release of RT, there isn't currently an upgrade script that can port RTFM's internal CustomField and Transaction data to RT4. You must also remove RT::FM from your @Plugins line in RT_SiteConfig.pm. =head2 Removals and updates The deprecated classes RT::Action::Generic, RT::Condition::Generic and RT::Search::Generic have been removed, but you shouldn't have been using them anyway. You should have been using RT::Action, RT::Condition and RT::Search, respectively. =over =item * The "Rights Delegation" and "Personal Groups" features have been removed. =item * Replace the following code in templates: [{$Ticket->QueueObj->SubjectTag || $rtname} #{$Ticket->id}] with { $Ticket->SubjectTag } =item * Unique names are now enforced for user defined groups. New groups cannot be created with a duplicate name and existing groups cannot be renamed to an in-use name. The admin interface will warn about existing groups with duplicate names. Although the groups will still function, some parts of the interface (rights management, subgroup membership) may not work as expected with duplicate names. Running /opt/rt4/sbin/rt-validator --check will report duplicate group names, and running it with --resolve will fix duplicates by appending the group id to the name. Nota Bene: As a result of differing indexes in the schema files, Postgres and SQLite RT databases have enforced group name uniqueness for many years at the database level. =back =head2 Ticket content searches (full text search) Since 4.0.0, RT's ticket content search is disabled by default because of performance issues when used without full text indexing. For details on how to re-enable it with (or without) full text indexing, see F. =head1 UPGRADING FROM 4.0.5 AND EARLIER =head2 Schema updates The fix for an attribute truncation bug on MySQL requires a small ALTER TABLE. Be sure you run `make upgrade-database` to apply this change automatically. The bug primarily manifested when uploading large logos in the theme editor on MySQL. Refer to etc/upgrade/4.0.6/schema.mysql for the actual ALTER TABLE that will be run. =head2 Query Builder The web-based query builder now uses Queue limits to restrict the set of displayed statuses and owners. As part of this change, the %cfqueues parameter was renamed to %Queues; if you have local modifications to any of the following Mason templates, this feature will not function correctly: share/html/Elements/SelectOwner share/html/Elements/SelectStatus share/html/Prefs/Search.html share/html/Search/Build.html share/html/Search/Elements/BuildFormatString share/html/Search/Elements/PickCFs share/html/Search/Elements/PickCriteria =head1 UPGRADING FROM 4.0.8 AND EARLIER =head2 Data upgrades Previously, the default lifecycle was stored in Queues.Lifecycle as NULL. To simplify code, RT now stores the string 'default' to match the name of the Lifecycle. The 3.9.2 upgrade step removed all enabled Personal Groups, but missed any disabled groups. We catch and clean up the disabled Personal groups during the 4.0.9 upgrade step. =head2 Javascript Changes If you have set a custom @JSFiles in RT_SiteConfig.pm, you will need to amend this to include the new jquery.cookie.js file added to RT_Config.pm. If you are using an extension that requires manually tweaking @JSFiles, please contact the developer and ask them to use RT->AddJavaScript in their extension to avoid these upgrade problems. If you have @JSFiles set in your RT_SiteConfig.pm but it appears to be the same as RT_Config.pm (no local js files added) you can safely remove the whole setting from RT_SiteConfig.pm and allow our default to be used. =head1 UPGRADING FROM 4.0.11 AND EARLIER =head2 Data Upgrades Previous versions of RT allowed you to create Tickets with a Type of 'Ticket', 'Approval' or 'Reminder' instead of the correct 'ticket'. Existing Types are updated in the database and the RT API now corrects these types before insertion. Site-specific custom types (anything but ticket, reminder or approval) are not affected by these changes. =head1 UPGRADING FROM 4.0.13 AND EARLIER =head2 Outgoing mail From: header The "Default" key of the C<$OverrideOutgoingMailFrom> config option now, as previously documented, only applies when no ticket is involved. Previously it was also used when a ticket was involved but the associated queue had no specific correspond address. In such cases the global correspond address is now used. The config option C<$SetOutgoingMailFrom> now accepts an email address as a value which will act as a global default. This covers the simple case of sending all bounces to a specific address, without the previous solution of resorting to defining all queues in $OverrideOutgoingMailFrom. Any definitions in the Override option (including Default) still take precedence. See L for more information. =head2 Reminder statuses New reminders are now created in the "reminder_on_open" status defined in your lifecycles. For the default lifecycle, this means reminders will start as "open" instead of "new". This change is for consistency when a completed reminder is reopened at a later date. If you use custom lifecycles and added further transition restrictions, you may need to adjust the L<"reminder_on_open" setting|RT_Config/reminder_on_open> in your lifecycles. =head2 Bookmarks Previously, the list of Bookmarks on your homepage was unlimited (if you had 100 bookmarked tickets, you would see a 100 item list on your RT at a Glance). 'Bookmarked Tickets' now uses the same size limits as any other search on your homepage. This can be customized using the 'Rows per box' setting on your RT at a Glance configuration page. =head2 PostgreSQL 9.2 If you are upgrading an RT from 3.8 (or earlier) to 4.0 on PostgreSQL 9.2, you should make sure that you have installed DBD::Pg 2.19.3 or higher. If you start your upgrade without installing a recent-enough version of DBD::Pg RT will stop the upgrade during the 3.9.8 step and remind you to upgrade DBD::Pg. If this happens, you can re-start your upgrade by running: ./sbin/rt-setup-database --action insert --datadir etc/upgrade/3.9.8/ Followed by re-running make upgrade-database and answering 3.9.8 when prompted for which RT version you're upgrading from. rt-4.0.19/docs/UPGRADING-3.20000664000175000017500000000071412262650742013747 0ustar chmrrchmrr=head1 UPGRADING FROM 3.2.0 AND EARLIER There have been a number of rights changes. Now, if you want any user to be able to access the Admin tools (a.k.a. the Configuration tab), you must grant that user the "ShowConfigTab" right. Making the user a privileged user is no longer sufficient. "SuperUser" users are no longer automatically added to the list of users who can own tickets in a queue. You now need to explicitly give them the "OwnTicket" right. rt-4.0.19/docs/backups.pod0000664000175000017500000001020712262650742014336 0ustar chmrrchmrr=head1 BACKUPS RT is often a critical piece of businesses and organizations. Backups are absolutely necessary to ensure you can recover quickly from an incident. Make sure you take backups. Make sure they I. There are many issues that can cause broken backups, such as a max_attachment_size too low for MySQL (in either the client or server), or encoding issues, or running out of disk space. Make sure your backup cronjobs notify someone if they fail instead of failing silently until you need them. Test your backups regularly to discover any unknown problems B they become an issue. You don't want to discover problems with your backups while tensely restoring from them in a critical data loss situation. =head2 DATABASE You should backup the entire RT database, although for improved speed and space you can ignore the I in the C table. Make sure you still get the C schema, however. Database specific notes and example backup commands for each database are below. Adjust the commands as necessary for connection details such as database name (C is the placeholder below), user, password, host, etc. You should put the example commands into a shell script for backup and setup a cronjob. Make sure output from cron goes to someone who reads mail! (Or into RT. :) =head3 MySQL ( mysqldump rt4 --tables sessions --no-data; \ mysqldump rt4 --ignore-table rt4.sessions --single-transaction ) \ | gzip > rt-`date +%Y%m%d`.sql.gz If you're using a MySQL version older than 4.1.2 (only supported on RT 3.8.x and older), you should be also pass the C<--default-character-set=binary> option to the second C command. The dump will be much faster if you can connect to the MySQL server over localhost. This will use a local socket instead of the network. If you find your backups taking far far too long to complete (this point should take quite a long time to get to on an RT database), there are some alternate solutions. Percona maintains a highly regarded hot-backup tool for MySQL called L. If you have more resources, you can also setup replication to a slave using binary logs and backup from there as necessary. This not only duplicates the data, but lets you take backups without putting load on your production server. =head3 PostgreSQL ( pg_dump rt4 --table=sessions --schema-only; \ pg_dump rt4 --exclude-table=sessions ) \ | gzip > rt-`date +%Y%m%d`.sql.gz =head2 FILESYSTEM You will want to back up, at the very least, the following directories and files: =over 4 =item /opt/rt4 RT's source code, configuration, GPG data, and plugins. Your install location may be different, of course. You can omit F and F if you'd like since those are temporary caches. Don't omit all of F however as it may contain important GPG data. =item Webserver configuration Often F or F. This will depend on your OS, web server, and internal configuration standards. =item /etc/aliases Your incoming mail aliases mapping addresses to queues. =item Mail server configuration If you're running an MTA like Postfix, Exim, SendMail, or qmail, you'll want to backup their configuration files to minimize restore time. "Lightweight" mail handling programs like fetchmail, msmtp, and ssmtp will also have configuration files, although usually not as many nor as complex. You'll still want to back them up. The location of these files is highly dependent on what software you're using. =item Crontab containing RT's cronjobs This may be F, F, a user-specific crontab file (C), or some other file altogether. Even if you only have the default cronjobs in place, it's one less piece to forget during a restore. If you have custom L<< C >> invocations, you don't want to have to recreate those. =back Simply saving a tarball should be sufficient, with something like: tar czvpf rt-backup-`date +%Y%m%d`.tar.gz /opt/rt4 /etc/aliases /etc/httpd ... Be sure to include all the directories and files you enumerated above! rt-4.0.19/docs/images/0000775000175000017500000000000012262650742013447 5ustar chmrrchmrrrt-4.0.19/docs/images/lifecycle-choices.png0000664000175000017500000003454312262650742017540 0ustar chmrrchmrrPNG  IHDRV<)iCCPICC ProfilexYw<wq]+{,۵GB(BI(E%HY)J$)*F4D!7~m|@q6vx )^^KKG2DB69OgWhh6>`1G?XIc??_!1|<țo|ّyc6s@03ebLNۼ9{5C2@2b-l54B0*ҨXbb?#"<^?"fۆma!-e?~c}sGSͰ_~a5cG}|2@ X`H; ? >//=H@QG`:/ GڥP|A,"oxe/#1x:ٍ$vaXS1V/((;Y 1._{T1p{v}e ZGkjfEs)"ZAk mj?R~;sc}0xXhhW <"MCN ]$0.>{yjs@C @m8GZH t PbCo0ȩF4 2~y 4.08 @2HY A"A @?#` L)0ރeCh!&⃄!IHR!#\ O bd AeYA/O`fe`UX}? 'p>\ Wf<S{xP4(V?J 2@Y\Q~( **AUQwQQS%4̈́&_Ht 0 }݌~F/ah1I: a0% &Lf 3bYXd`ISzlv8p8-5 ]uFqs5**>*y*c*W0tKT]TTT> ۩RQx->/__ШҤҔ4ܣA`$H { 1|B 𕖖VV֕666+5"QhF! ďtttzttt%t-SӋ{ѧЗӷ?_a`bcfe8pa#Qшч16,IɀtS3Yٌ99 02 #"#K!+d: ajaUwWEDEDe5M}!F+#)V%D+*,~J|DP(x( K*KJ| KmWخ]ORzRRuRҬҖ-ed\e eU =';)(g...E^B,_.DVXBgEIE_ӊϔ)*m*(S*/xTEI@`A!0p؈hQ+cc:e%$SiS33Yٲ~; {2K KelenUlb-̺MM[m[;9dL;;8Lבqc㪓SӔ~AN@VW7#ns{f'/~߀;{{uO% /k*o3 e1_-"y?-"wZ :%KeL*VkBBCB=CÂLJ?ȊT<L\EF3#APXLftvlyZcxDI$rRo2rZ~gS2̥^Lç=HM/Jv`{OFjlIf]1ơltv`pBɜ_>dJ6?"wV_prأaG u /1%[7#=Œ1'J-K[O v_~ˠ`PMU?|53z'fOv=3ާS|{Dd ̋ܗ/K^qz-~Jyspzh~fr_ ch.*)W8sr,J܁/$Ba$@#QKLmRqRMPWi ZT3 YX Y?qJsQ;xiI҄E6Tă$NI"" k*&_9Q%HMR]KCVS@EJi1]׍jKMM],L-UDwX>op8'1E 9;ݫ=r=ýOofCA!ta-.Ⱥ:M1ek?('=Mߟz`OazA L笰CΝu;_hTѢޖ'KOږU\>5r6U} ]yFj+]Aƾ&얻mvߺEzo%}XB=}A!îFe\~c|&Q/_ R}m9?]=Ftmwwז?|r[N=-aܡx$RcR8RKKH;7%-PLvfNIG W/18a^j{ҥ̻<ӗ+|N87rA&%˓W^5*_ϻYPv3]ݥ={n7'57@hxi' nM| ^N׼ɚ]lH9{}iikDwV8 IˑRA z~@&W?h(RqJNA$w:7_P\(=T( 5ArlO$#kE0bt0a1,6bpb8\ nJ*ڕ2;i4a4UZ*Z +9N>~!WȌCYOɰfwc_(|=sW"e[ p)T($b,*,F[]tLl\| +*hU5Au) 9MY- m.IoR۠0(DTƌלefl{zf{Nl΢.jVnI7 o"Y__lf0cDtTx5:gB,gU|FBwd)SnTh2;4s(|݂bZ'Nƕ:CRvnʧk7Ze ;\{b{S{?ds8outq畓o_M͌Ig//|kʇ5;H t7 R p2d' 7Q($gwAe^iS%]~rLw:%6{YpTT^jV~ >?GcNN$TҲ&bt.E@d8(XϤ4ʂebcabbH*6A3&HUQBBk"-gNJK** ${O"2Y%_S퓆V.~qɠ\2[6vh{V=.NQ.W]>cu,#Wr:Q8!Iɏ..N%3!/5i~?[فi3ee=fq=T~|A!{QxqْRɜrBӢwV5^pmBvC|wM5-mR_:ڻ{,{n5M0pQc'y'D^@/g^OQ+D?\<맕U?y+79 rl!NB}WXCj8-RqF-&Ӊ`E(!9j*xK| i} "1ޚ3C 6)f{Z9l9)\zLyyeDDD9Hjd:e4)JW?*jiehյk148՞Ӝux ߥ}aJ1ñm'˺+4O5WbX=^ }Yj._&^r-q|hmkۑ۩Vw>н_7 jףˏǝ?KW|%gguiUWy' (~aCGK/|k뷽+`kkm?Xyx]tw}cm̯-mG) uHHW$(`pkkjkkI6^X]b${ pHYs   IDATx] \TU?Ç *Zii&?̏FmsuUe+6A7]ܤ}%(Ll {M Lp}? 40H tdf`g083'<9g:xWV>ݶފ{5@5E[^wދ`/筽WhW^ի3^k@(]Q^"0f̘9eE3Z"#FݻS^k`tGꊨQ [Osԕ &OVuŊ=J{ng 8`e˓7.70pki;ti۸qQdLA4{_ՀmM^[-%$F ('!EU?;הu2Y҉Wǜ`&uBtoo2`7Ox$}Rr +FOZJ,?7ZћT<&͍IE1@F+D K݃rOXѩ{mW*e9U`,fLY%o~+vr .ʦ(/cp 5 LjZVIBNH4MCҳM Ub!F@JS "?XaF#\}Hn )B* 5MgBgnf%ŋ~WFkL%i*XKZܨn$HsSdJ*Dű99i e\"ɲз<Aй3 uj\q0CM^\%dKDF DiuiijT$tzVnUYeLBzVXDc)nCiƳw_LfYPF*#1y켬\!sĜwF(䑠rQ~فĩVhtʶ-dC%T??4g4ՀSVD@pr1NL]F\֢ҢS>:P~x#4] CTUR8#yNNeXQrLvB_ysjrJ*BUR:B[? Snݬ GAsEĺެ kL ĨҔ~~3#M}򋍄oIZy!LS)5c K6ΊY ]Zy*) Sx;J+/7|3U4uQ&ϛ=/;㢺zٞXC!J= S*m2njNs<Ʉ L ZK>KttY7?.XmlGƐӉtw%e*9B;"ӇSɯӂ4ɼ9͟%➆i7v$Mlz!Fh==:dXW,:$k-,œN>R`m[ٔګg?o;a*@>AA5#uj3 ͌n#.yA8>E]gϞL*P]]eJp̠lS,i߅N z`rSL 6RrQF泾 x!b^ZZZj5>]^~ҁY`rl\[߉:-h*_,~'Al*wTܬOK~1'eBSȎ]f>.jk]/m.z23N6W\ bc IQ!I/YVK9yWd(*.( F2T$j *WBJZz^138hj **VVTi֜5`S* k6855Gb)TRq)uZV[vp EJyn "3VTk JǬVU/C7 D}U-'7=#[sa>![)U#i@Uul?r}-TZvFu'r"Sf n_֭p ?[$Js-Rzp J+ɜU NPR+l.//gAaU^^`A8(h@Jjðփis h8fNjɳD't,DQi&ؑG'sjMd@{i?4d3&GЊf8:m<)O>(%B5V-򹈠@B'#gi|8J*8&lj>rl6#|,oȵOz#X0+ƯZbڻq1,ߝhpP@Q34ع:EḘHV?Xז8SU+c/Ax䈒h&;GT9 SCF0Y`4PGآ&A*4pH3, N˯2pB#n,2±iY-dRMs}^5{j B<|W,ʔMgrfcw('\Ǐd_~b+ƪl҆Ni՘MQiBB]0NK*BQfIUGhUf.sOhR#Z>={PpBqs;i}pCŠg,!W4hk`;"W^uW[UOjƦ?bӲRԋOo&zGS=8 8ܚ: z򝩖*hev;8pwnh|g[t>UwۿҎo,Z͖Mt,^.^Q~c^3h.n]O` *56ixvdž lQĒޱ4 fZȚoB벴v V;tv4]ͧWy6#_NlΩPǞ]'4f@>0;bGuʱ.)O>zjʋ$B">#L65#>.هK-/ z=zKG3oǯW2 78O}>n⦗d&/lkvoAr^}h/!{G_ Ut,D96c9T\PM[ycg VqYEpxA* vUm\Z]Mw?}nܸΝ+X$ Bl)`Zc#V`JEkxwdtuX,{wy5O'P:f̘[Nt26Fӓ4RV /@]~ikͥx>g+"2b&tUtW 3ʹQ? ?B;Q[%$yvTX]nz 9!`y6}4ַw}U<]N05gdveߓw}3I&9~iGBÀhA_tBnTk]>&F^mcV2m.X>㳥T#_c|VA=z=`!,AUve2o.oN'bKp:bٻGMAx;8͵ԓ؃ѵ+"ʲj.f🡽7#]yn_$3[tkA/Bt/ Y=w c]*/i9{ | ^iɾ2(i_*$c;NX1q5]}E+;{EC0۲ @gXe jMF{׃5 7&f/VutW! 3xpœf]Z}||-MK@Zgm(+;s[9QQRJRJ>X6ւE:TgŝwuߨZĸw zu宙^/+O $dg3GVBVGo:@ ԝe N(Q#ntTjK%Go*3<ϮgÞ$L~Df}[ ѿGF95cMaΊBxu͈{`[:4I6 Zq"L1/|Uʘ:kv}%3%pKg;J"Ҍ&Zpݩצ`/<N4ja kzg^O&sS~n 2\m^l9O Jx&-ٍ_҅ \ٟ}&kC}<חtDJZYK;oK Ǧ?~K}1hXfvlPoWQOw> ;p#6qfK*^?H;R%/ɟII|EFP_~N?>>+VLV67/'9S ]9j{@qgׅ[Γ).GssMNOk94 QQظ@Cb/PT z?ܤ^\^vB`KM/|4C=:O|cd˛>8qWv줐a!kV¥ ةmO 6(6JO}UW!-H|,IZI$dY/?}Q1X0rrurpcwndM{_W+{NyHp c6iavjr\ ]+ 5G Oh|20E띗䑀%!4b]b]ڰp e& nOUjIŝ[2XNƥlLIIdl(9VFνke_SoNRU\Om=gҺ\#-TW5ݺՁ,B\a?[)Uw#Rf(7cɣ͵HRyQU~|iavɓO?| Ãgr8 P9 *mm*dS4)y$}`?Xw"~ʦ,>ߵ. >ՓTSN/8?I8h;Zk%ėrym$Iz%PHtV1[>8|sW@&vu-kg]}Wں_wc0|n_,Η(J2ygۗLMȻ2lVŔTf&-,^r}ÅMMiADa3sEoQI/lZɟѸiػq3uk5@Qm:ڜEp;Mt?Sd78J[ut`d6Nw^E3iw7 !sOvĄĶ}-V2zXmžZ-Uё%(v30 }qѩ~榫*~-[~Cf a~_޸^mF#%Ko; \mVve+E'NOa{0=vwC5@eNTӼR,1/sxmЧ/g 7_R?h+=u]ustZpۊ-(uq4WS|miXmEX 91vʸW&9MiqQF?=ɘ~C 8[d[o}.fTZhŅݸnm2:ߨw" כnT 늵]`GMj[=lmG3LN9rm DOT"=sq:``weo`:icmǔqE0PZZ:nKuIDAT Zw.ޤ:d+:m@)_(;WSkMtbkJ-P ,®wu1>bf/ pVMx 1ЦLl@tsmnEqfĕ;a 75 &%#KB*+"r+jp@//0_`q+ ,#0B*o]Z#}1ذ<vyZ]&(D%8i1."OA0# |ǠP֝`F<,G0/]"h +î"β2 X$Έ Td:݆y_ú;j+" 2 &݉T{e?<ʠIENDB`rt-4.0.19/docs/images/order-history-example.png0000664000175000017500000056456312262650742020443 0ustar chmrrchmrrPNG  IHDR'OiCCPICC ProfilexYw<<{イޛ̲{{2PJQI*RfVID* Q|?|sss] ؙ9&/rT%qm7>?{oi""p39 z[`\t6>`& b mc߸u{C;<vxB%#zh`|`C69vOgWhh6>`1G?XIc??_!1|<,țo|ِyc 6s@0ebLNۼ9{5C2@ zpm=<}|  4*/`sHOA폈ٶa[DXn?xُbX(#{#6\m:b3,hl`_X?"dgmQb"`߰=e} -:B/>BN$ (Db#0c#Rw( 7ԲGGl_n>ڿvaXS1V/((;Y 1._{T1p{v}e ZGkj͂RhE*Z@5/v*v`ѾшAxD%? O9-|w񙅑wɁgv;g ?p9Զϊy~%n @+ r %>-b2k\; ^  drR3i@+LGNH[B{!N΀΋.) =#5}(aKp " F >  fQdƃ瘰LLfLALyLW˙;XP,",f,!,,,,?YYX}YsXqճdc7bf/doaɁ8DZĩIl$츒VyM#Or^a 9ųȫ{wO/2?) YauQ=/U . Y % MUO^q9$"NML4QNXXqx) XBI"@\$,,(yJ..]av="JIJIMKH[JKHq)+KVI6D\\y y|c %}O+>SbTR:ԫLQ"RTIF=5445.i<9%uVkJOSNΌy=q ze)M z Q&F F{ʌ^ /($bL-L Mqj͖U߱ Z[YXJXR,ۭ`+sbwnf/mDm"mnbmmlm%ݵgdAߡar؞={kW e;p\]/w۫7k>}9C;=h=<{b<j3omho)}+k;{'g^ηܱ3gw߸]u W2<<4@AӰpC#j#4uzlٓc?{3g<<;>"%˒W\^R6%Ͼfc.-ےyw:FG__@t? -;/}|r+ךozWlV^}ƾvꏻ?~ίm6J77YzEډPK 9T߹(A0̑`@'PfhL(ۋKkpTm ::z fz^|D̉ȭ?BYztp]JrO4NQ+Ux9X9y]%Uxլ]KxszCOnQƁ@Jw3!Kk='iN W5#%-A=4n 1 SH3(Țʹ+D*&(WNT RuSTҐbk;7ߠQqIiYnfk7Gv= d;F9;(ra>"'}{Gg"Hi- xx307D=6t6%<;%RYQg)1̱qmeधRBI5LSOW;avP۹yp8*Qњf*k%9w GԚDN/ myR|lL,}=yr{:彏E)uc{`,R48bw$>%1J!j)|{,køC:k I|IϓwHaO;Кz,-! L,C1ٙ9%˟+V*b,8&{\yI2O_w# mm Xex[7j$.GH†5I\H]B2"Ar(:u@p| ~CqP6 ɱ=ÀabưTX=l<jp xi| @Mp%\IaԣDU< ɜF+F[FGCFJ+d׌ތLLߙXH,XeXorq<>ģ xoe[ )T($b,*,F[]tLl\| +*hUf5Au) 9MY- m>]Xޤ~AaQ9brjqʹ_6 N΢.jVnI7 oY__lf0CDtTx%3z!#*>#;WVi7*fe9jnTaaqf'Ns!U?XTtSʵfVvޔ;i]yWrSi3cs K&/}afA -R) DTܠ $>!ٽ: g s ]PkhT F SkQpE 0%BTTTsDIb% 3aN hPt$  cLX*=,6)q4Y)b.Sn4w/A^c>"8@КHʤ/4ޓ{%ȬLVWT!U=ˣ_onddg2h1W̲ͲڞAbSsUaXܵ<< ?:l)}GGzRnFSLKlMϚbv`jcA}eYϲYs\rO9"__V^i/i%uvOM_;gz =[PN j>F!uDt ztb1Xkl9v;{7ğ# TT=*C4.4Zf:k% iZ1Mpq1r9Ǜ '(/$*+)!'.)&iK*YLS$I=l tCYي9yZ] *9vRBTs%UIwRe "o!χV۶<YznJ>~g?uC,p> xqLpiOMn{ZrJiZ}F{V[ywr I>}Tg_}mwT}>z`kǞ?nom5(?<Q)?*$ElnmWmmmV# zB~aԿ+ؖ pHYs   IDATx}]Ud+ )%ԠQAǂ(A1 Qc$!$׽fܼM 3}o9grϙ{KNMM <9#8#8#i#iWwGpGpGǁ#8#8# p.+8#8#8~818#8#8?nJ8#8#8N| 8#8#8@@'#8#8#4 KMpkGpGp??lBlmx MGpGp>UM<SC^#8#8@3\:d Du-0ɼGpGp:)[~`pVlki3#8#8 &2qoovq8iIs0\8#8#d@ b6>D!AS=$E66Aױ #8#8V@R5fӘON<4v(h^)N&:#8#8 鐐In̮z|Z-~8iCIB&;4>,T|s|Rq#8#8@ECBI% }3雫oC=`@NN@d>T6m.sGpGhdgSl6|XN:]Su1eN8ԷDΗ`gҩ32dߩ#8#8։@ȤZlB]7SMbnJNZp(!dtD@~$6t\8#8#бHԊO2M\4V&TҵwQp҂I~&Y&]LhI;ɓ1KypGpG"qT;]:\C}KOJ.h]u6m'x0ILT`%󔇲O&|蛉OW^&9#8#oRmqүbv!JOlDe$KeNmJ~RL&݆=<)S^T5NOi+eIpGpG"jolmMhơo(/mM)O{&ّ' m2ɩk&ON2<5I%a u2&emh؄;#8#t~T-mB^LlH)K/(o'~8p0aRm擲tPeaY 0aO;uGpG<lYmZ:9աNQ>IC$S>e.~Rm>kJNZ`n||*T|*ew8#8# ,̇|d)f?l`*>yCI䌝ԩtrLqBKzpGpGc ̳:ԪP'^T6򑜔ħKgfu)gRґo,6IߖdE؈0yɼlCx*&)>)OR~yGpGp·@M}(}b TH>Nrx1/ x)Wm:-mZZWW؀0eSŧm*^>,[z^Fd+P6I|rv9uGpGh.1dGԕٵѮvU%ٙh3l$d\ʕBe|E6>{ $SO/2&M _‘ÇLn݆1Uw`Jj,'^3β!͔hߘM&Z#꬘͉+RTKUVd\ј>͆?Y8I>O|kIծĕ)&SBm6|Oh6M&!M$}R[#Nv5'|H7R4mxEm2mo&*qR9qCĸɔЦ1}h /h/lp}|66ITֈ]͉+R&MTe6Cl0xleiӦ~Gf^~o|]<02SBxR0# p2>LoID>,O0yP yO:QzHNLQ.BX&f0q?FG}' PbK>c?ǁƆƜ$By<|zw^o{I₭E[|6yٚ{LPS MJm}8I(QVPhh#h*ݰ~;F:Xig^7,HzL9<`PA/_1'eC^eg cĒ2d=LY,G:Ňy$gä:S&?Ս4dE?2 )L0Ng1IG<媻t妇L')Oʋq$2y*Kyْ*2d=yK|Nya2|T0FG2b 2 ʤŇq<,Oq8Tw[TqVI էOq$liCʗyً$yc 1qS̋y]KJ9mējOCq$g ҆r/I{{k\Hc2%&]8v2??x7XU> /6g }3ōMOcz}#1S:YL'RH\bR76X ^1r޼yw 39Ʀ.Ox1H'%}Oƣe+b P&9ce 1+cRG_ŧNƒ2V[[Te>U_KB=ІuӰ.4Lc.m'$8GԌԚ64OW^'M@dC^~dJ-'l5xK|TF,?Hg9S&;ꘗ\42eюyهkӠ(T^>bB[ VjgObʫLXlƧzM6NʓWeb3O{ڨBV16Іc?Œz#?3GLcY.OZ)1üs<(cEE>ꘘg\2),κ]~;ˣ6 a\zu~CL507)ɋru8y&mB9uM'm3'p`4#5pbԯh&eʋҒ|2&PxH]dl?K KǢʏF63? 8nQ҄QLɕ']j)=K?x > 2=xo?zTW'*YeD2r KxX|12h(v:{ 70Am"&=ԫEK'v&cQekSC_M|gڇϋe/dY"^WTe(\+)K-;AyJc>|LJ2ᚤ {aKɤLO+Rڇe˸L[wWw^ÆuXlW_Ga=m g]1K#I5~ԟ1f|Tp'Cɹ֦_%hgZ0x'PTTYgplџ12. TxY./Ivql!)WM.ZN\_Jyh)9iLreC$ɓ!6aoob%h2m,7w5$\LT/Y6(y5 2/^} ;;CFP]hĺ2b39xG0w\ >ClcvXx } ;o;G?G183+,O~ڥir*2'eR|C~gYLu~hs,hcKqh$^vlHyLJ0LPO?Յz(SlJR$^1q~)G9y]~Wy ə'kkO V,pOs?< ]) ~u̜b\%ᙳk1?8dhQ?pU /¡Ê#Fwqq㯧Ʒͯ ]~k`;)>3Q^XCcAI"\Mگr_D.]4zj|so;f otPeْ'ey(Ku0Mˌc˳w6IQ@J|_oLeY=~5,χ[ػ7zoMIϾm_ hkk Vֿ5 ~k.W/7ʵ+KuCG>FFMXY5w2ŽзgHxl5Kl夔2myّgL&*z(gb06+/0Ϥ(L)YI$MƠRW6i!e FDrWe'1BO{UlK4+]'G}Լֿ\ھ*2o?_I@Ku}k0<r~5d;|\ (%;n;?xzxmqG:GH`PG ‰2nHC[aE[jgQ,RƢbӆ2m7c"U="}'|X?کN8*6 S cS&2Mm\2+}Xy)꠺R]e _̨LG+$f[?u5rV W-jJVa]Y<{)̋D^x-SýK;EC(`5mv6L(iL ?i񢌉<1}%ctAQ3|P]MK?0?YeIyG.Q<{ʼnz/?˶0іVs:+іym -T3&y& Ƿƫ?O 7l8''74Ϩ<{P/R2i'uyK/֧xFY3X֫|8wR5JɓT'|Îy&Ґus ';Tے9`^g;y=z"ZMi)ׯtczc&W1946.{cEn]Px>ЭrT]i6nty\n ǠуЭ{b>zvЮ,džt0AxL͋e "}2KucW,S!J{}y#THCz%q^}R<ƥz҅Le(&L7G4*u(Y!;i()gb&xyǘ Bx[ڨꋰ˖'_hUx=wx y1!{ȡض[XOlYͧQU2俐dw=֬-Gҍuu)]Λ~1H\xڠ+?߯-f<.p~8ܯa&ǍCO:L[7o`l,xF0}7΃ɗ#G[z3f (0+[ xu1vCl[#uNgpo4n 17/0f1օ8yfW?{^ÚCuO7#ܿ ~!g_;{n4kמ\4xPdۿxޖoM3"D0o'f?0\r-\<"պD{_B}">(?FXk0#FMLkjdC^SFڴ1󏴬+&=# e& M5VذU6 lW6/4gU48\y(>D*4 q1qk[ȣqwàq%7¤åw܅CϸWlw6{#9xp.(`mY߿a/\xd*?N? 00U=ˮs-g8  sq1 5ÇwEM.nkŶl:ñ2eX}b0iowكQ#?='^x ܮ 3osl[cjqu*~[y܌og?=0wЀh-|#JI:D<4N'f ?-csƦ11q2^޽{{=7~E7m_0aB$OTXW&XL墣C x"Ň(ӞTF)\zQوK$ڇ1KFJeΠl$ IDATxT2ƨ{r oڈv)Gqq7/Bvuw< own+Z_*N<,k>{'0vua"{KNjl[h?c r(\"%yN*ډWq Ņ]PdldS նaLa649YO`b>4A)'U‡6ɨc|aN!e n壘,Wu`ub ɥcqK*rJF:.LU'j#!z&ʕXF;g_uLT ӆ˧?|C^u1+x'Cr#|h#1=uU{#Em,Uǐ2)d\Ձq$ho{_a۾;%`ߺ7kLmuk@!g%;S^o;(W&;??{$S76gw)kVc]صW^_u~t k!6‹%'a<,4 o 6bۯ{b(?|{]r?s>㱮^r1^xv8Fyk*O~׾: [jEksYG4rʌn{i߻d y TVۓ%xlup 8K1ؤ1%d"r{#w0k6/F߳DGS%[DrfK)S'$_C^ӖNX)O%K_>-V=MBt58Zi2(~]ֽ;Ov6Uo벱:od>M97Z8br8Nі>*1&8S )y^K?^elR,G7|>d:& WU6S?c\O?ۥǫB=2hKL!)vm e)Ж:*3KWx>w߻ZoW\|uᓓjkU׽A'l{:i >tϳxwq\_nXO6s3ew&8Az 7_s;О9X]^R]*`':YS48xZ/Fuѯp(6}lkPRnƚ]aa״*>IV<;K{[MhlHY>٫^f󸪚D){tFo+6~beX6bWa9%Xj]TXrUSuύ] &]P׳Xar17ę2}ϱy߿#8=W[M:R3dC%>^2RɋIyKG*}fF7M.LlR'{EwO`6@;0ƴQfO+\.;ݨ鯅h3`7¾-f; ;L)/ udxqElpXv>jZ.<{ҾwRj,_]6Ա`:u%6˖<&S/ U R^^UE|*߸,ϼ7Vٓ~ĪEw+;^=quO2Y}5e )[1j/c\+l"7UϬ++QjN2\K;槍2l5+;P'Q]+Kh6i.~w5q`Xqz+n6r1bLEa(o8Ɏ )#bYLgRNěMQrºhr,/,^SN;aSTWRّ'SyIG;Ƥe_Ƕ_f W%/_qK%\(g"H&;^%%{PXuq̮*tBl.rdi%+P%ʹ}1/k?/?}37=E-Yjd[GqΛK368fz_?:\h6^i>oG7O=(},ŌG1K*JkХSOqaoa16q;VY .68yp,Ppm3pS\PU1IIޓt_sK6Lʇ=ݷhC=9:mwNFcy0|c68O^ u{[BB\,7(X%CBc?U5bPO٩%U)>CJ^'%I^>sc5Ibś1m?e,_eæ"}-Ld 3v~~Wq61DۙV\K+b}{>PȤ !cq0uC%o՟aE~G+V.LJK>AWǢfX'm$nƥVR>~4Q chx3!4SyOaL~zE2NzeC=tʇ/+ԫ=S-*2Ua>_O-\BTۿ<˖Ğ׷zTc_n#>caMc !v{wYmvx&<|-`{/{<ȋȷC}^A6g"؊~8 ̿3MGw* >Ϟhz#|;ux$ ,.5buz^r6nXw?ZHt[j%@ʔ(S^xS/i|0ƒd!\Mb7 61z],L|:*Ie#4G[lY&;Κ5nfټ͜ፌu>^~J}2{TԯCk _aM6یύ7] kqشnRۗkQw$,XIq|ϞY^5^kٻݫ̫= {k`ϡtެ}0vdO]:ОDleO*=i#LyOzڈ.^6KhϺОTe3џWWLّ2dž_eц<JGAWAmCu&e\&Ӈ:f]gLDl<I6 1`}dB|\` \)Gkjgz >SU=^ EŰ]l{(ټ {j#ů~IsVaB  sP-=bh۰O~n!b|^U.}`hWrJ-lwmFU&1z'Kj#xPt=^B\uذ~#m=[1>Y[aGAl;ݻU i׬^%k2k RlrڏTفזx ^l?b?M,Rky1~}ȱٓoه?5?oi ){r'msZ}xyä>erXz9ْFR5t,ZiC{);R+5ۋF{pLGsxLq˸?3{׮x6^'#/|*>7OtvNyR&xkK/e:ڇn,_2ҸR驓M*WC[BNO>T,v6#pPqB_PfGq=Ok')c,.-^Vn$#ՠ#xӗdci@҇_"xH6gxY~}XJ;M,婧\c,ڨ^Q=eIG{?,G>S2'gbTC}yYaeЎ1HgG 1?/F_'eB*!>1ʣ.SGCӏQyW,2(/U٫/Wunae*oyp~~1شa nU';ϳ_ ̵ U]~7#wU mګSgx~g8 ?}xҚ1q1?CuQ_җD9 ç;ڋ xPF$' y$3ud/*{R|k[dGyƔ&Nׇ CAtltȐɃBa~'U;uSf7 v0;y6O9pxР>L:ĐgLbņyFv _5=}Y&PT<}HuNڰ~Mx%D[9ֲj{JRc(z[P_ռ|wѣ=Z 9/^`u;?US,H]TpF*cxI3]e lŇ4ɳM.mjI/>t0t%*Sg^CE?q'|GyvNf.ą7D98s#GʤyIGI9޲gY%SX'I zuL$N*ynW^06IyGre9:d13<ɟryяqXF2mT҇H:@cbg94kH1Gƫ8LcW^z5H5zc3яUMgrHejo..k^뿯~ךuN>괆r=+cOnpIQNjI|5 m$c_ʶNft*mzY|wlT<-RM)/ߤ;J% pIA97ܤjKDF )7YY2cӟJ3&)c|2}x|cx-T}IY~ʊXW[o܀0C uژ"[cxHS$leGyM,Q'' $|@d4d#;=% lӧ7ohCMn@61F7im$QϋsCN^f0ʦK6.e&䙴"O{^\d_IynfTˆ~,wՁb(1)cW9OO۰|ڳԱ=(c[G;yQ2TGH%R$%m\RUxn&i>}zˤX_5^$!/ʙhKkLp\ppl|c=VA'%z:JFC񢦮{BBË2PŇoxҷѴ%':@RjSʥKR颎YIO13yZhb&u\(H&RG[DQGӇ60a,U=Tw*\&L$:lU/y(UT)<ڳ-a"\ WRX0SC[̇2ťmdz1y.I?ޠp1i|q\j̒;Gc>_WX!e8x9ȤKcNyeZ"C5m9688.µ=a·lα,DCyIC](W7((ECڀqFFS?C5j֠~h(ig>ۋqux6`@ 3e\̉qxQ{&lIC9S8O?36(Kӗ>J Iu\zƐN2%g^!Oْ*&֙O\Hi3/&>6_yORdO>h4)mX.C)'OʋmyRx`"%9uc?cbCܔqL:CD; bX8sꙄh89f}ogSX\6妇yɧL\2`^|H)gbP|# +)e]h%'TrRܕxlZq֎#8#8@ pM7o-<2=1eL<4<_чyK66Ʊ2SԘ:A 5,U2ѤN@y u!O;u)f:pGpG(jC^zQꘘg\|&J]2)NRެ*T@>I,T6I!!/1Y/;#8#86W(ʋR*IlNum0 Y9ݓ2哺d^ړ/zrGpGp:2ߪ |}͡N6BD1H)Wm) `s\Ї6.ֻ)0#8#8@GD m8gO򢒷 mI RRNTT^vWa^z˩#8#8#6~mI/L IDAT)K)SI6a>lgM[qOUP eMK{pGpGhۖ쓵MCTvdL֒f(PICa2Bۤ괐gLO#8#8@GF &y2]\(}ײ[4z8'JM%LPLrQ  ioSGpGpG#$cHX+oO+f43EX͂d)Pc3@$B]N%NhL;#8#8 m D+/(I*V(kt\( yO>˖4L: +Jy'N6ҰN;#8#8l^BXp-D导h:Y:t\Ta^2RPO^yMpGpG4e+[51>LvI'>kښ S5$tMʤ< tpGpGJW d}h#~ӦNR5)N 8 meJ&Fv5n8#8#G½ʫʓ*|(K'MshiմLX%R)ӥҕ퓲0/I}ŋrJTUU _yyyVù8#8[9ư xRL2ل,#]jL/ON2ˠ 2ɓ:u) iR'vIy0YlL;EEEO0{&z#8#8p{ِP 2$eoI%N>~CdoS<9#8# jyC},[0-=d]P C54S 'C$MoEv㵸QiW6Ri&gk*iN†4О:1n*.l_IQLiѶkQcdo`Ts3Lvh%TuGpGhUMuU@, S+cL?=U޸EdUFO[&浺a" R< ~a~Ӑx1>xtčc]g݅s#h^VWv<ιx]-z?8\vq9w".[80{IR>n9&6YGpGpH{stZj''aHŭ@|@'(+DZTVJY5@\M`p;Ĕ l3 J5(֎E9OCmL0nƴ_]!+0=1{xW1X2ǰNGpGpC W?fd<ʘX~rVC2jHRtuhƽ9#>(}w :#8#5"mZ<46`R5Lt@4< ?_Ƌ=_~дnc>gvLÕ߹R{ex=%*ȕ nw[sёlcI-<7x\}u6ƓD{?GpGpZ@aTPߦy8Q@:dG*PIHؘ05PB|}9>ץ ֕u8a*nW8gx3{?{ Ja$[؛>B ( ",egO|ƽ};cϓ#8#8@4enϝ.FA{84֞TGP&^h’&-Ͻxv`Xߥ'~ oW-|.((%|]y#xy~PqdLs sa 's-pGpG @@{ܐJJ&):uIKlM;x4Ϧ t n:s?pլo+?ďc#qT0kxm㮸寿;nܸ&5W^i*ۈJ[7]6CUXm2={6[U(۸ z}W#*Lt͉'_o GpGضVյ| *lOAA:(/jȖ2$=$-: 򊺡gi=I$Ҙ7pگ0q& ypGpGC#}<g#o&|c{9pGpGH  sγ˓#8#8֍pGpGpOr҆]X+WDii)#Om@GQjuGp@^r]_~߿?TY+?x{QFEX8#A7oAkY ,رcѵkVwֶ][n zi|ĄG&ir#8#8[ѣ}YTWx=B'Pir1 2pGpG ׻EG[giWk'fm,~DŽryrGpGp|IkI ~(~ #8#8k׶}I_pGpN@eee'hE4'mGuGps+qoj[!B:#8@Al9rdx~qY:uފ_)Gcgy؝wZg_2v 8[1acy]x\f9o.}fDN:eHU߀2vϹ3n՝o gڔ.fm/^۟o'Ѫ3t+5~8=rGp31ctLVwԥaO{3cҘp6icϿO5ypE^Z]p}4<5tx@h1mm8:fcɸ2peAf=0~f͚k+Qi^x`C]Mi״t"E[>mD0ySGpG3 0O7͘3'~hB,#~vYa;P7cę_#;qńgb^czc̸0(]a2J^éc'FϛwE:;'?*ڭᡧd,K;0mV燓ý#8##PjOӣLg7sq`mq+^ y̞ʯ=IӾrwN<VV}="_duqc2}8y7El/l,u?s ?`\a6ֿРadBHNɩشK$Ëd^2tW^4sӏrIRz¥/요~编ƍ3M|Wk:#8@+!0o<۷aJҫ8'lxe(_/r6ߣJU^ O3U%zU>SܼU%e%,N/OlrKm[ szۮ*k)ŇIlOAA:(/jȖ2$=$-m0"%xpGp΀@Q1z84ii٦=CAi&tmlΏ꿶,O<9#8#8##O #8#8#@ppGp:ovvycFGpG`+B`X|9֯p:~8HuuGpF֭FѨ840ek]#8#8@F'u#8#8@A'#8#8@F'u#8#8@A'#8#8@FyQm*#8#8xW"I'J ONZ:#8#8@!ONZV4nܸVAGp΄ Gv8''qq#8#8#la}W'o/nVM#c p5W}lf,-/gӣY!wZ".5}tRV.ǓS3NtIcG+0(;'}~,U\?u"t7wDm qw0xa8kbD>'M] A&lJK+nò#97bGeF >CYgn^&^x!Ex-4>W/qEWgp5Ӏ1mh[\%YAcF5oH-4[ZBne0bʌw(v6[Lp󾌡&}ԣ⹗bxQxQخg^Z([ch6uZLA]eee~I8fUE!CC&=PlemUٷ6[aguV#~X5)q8~tW篏/8(c2T9蠶xb(.YMx2u*^ طI9$|f<>n6 cا-%qo6%u9vh7ϸ)GEQѵ m}- _,R *?xښڥMͬǖ6iM;JL~/x8bTdW} Y{.dnS'><{8Kqoڵ=J>ޥլ7rg}>eWCS[dږW셮DzA]_֛EqǛp7MJ1V[o<1-m,'oV>qٗ%ﴃ?_YE2l{L‰p[gflw8!zaU%=qC~Zag^U,&L}vFeÏLqk:<?.,E{ƾ^wN g8g]ࢪ9h$Q%Mӑ)uBʃ/x xA"BPQd= 3À5^Yz{uSg-BOza]v14$xtN2 ɻМƒ>@"z}]x?/n& :w`#\tBፘJ F#:Y?٦W z!O["'zn =@lpky4UVr2LJ=5)t;qU2 i麄: o\͋9uFhLa^h3#MdEhܮԩ,)7ra$zRW|&a?$?vKh?IFn i$#I IDAT#iVrSux1Ew|+ߞgZ f!ds.Q|Xמ/w#[+?yڲeN Ku7_{q~4i,Mj8Xn{,t nInڢ,W:zrm?k/܍"*%зpd3BHv}B.ӟ}ǍcU N@yafXLςMƗ2DݘQNģkHMOArmGhψp` uClDy}uHOn@nص$!f\t|.p*;Sp@R +9'ઃc'*0QKOl*T%+_ i\$t< Px 44~AD3;$D 5Te9>Ky"VBY8_EN֎AP/qtA| f'%y3Pxd"4uX\ R< mBx< n -.~Z@ 'aFtτkrmrm@'>y4%,7eW؄m5p˕ߞd" ށdo:1qMfaۚ`؝ ZP;M !\aґ~y]>~[2N`T *{4FoM G\x;Fv\?kv-^7^hB֟?y *Q2 9}-u*~ nQlظ/ mƫo51v ٲc!0,-c p!{Bo͢d o8C_r6*&F?J-Mхl^7-zk.AβͻNqǕ= 4Gr; .B|Fr5%F(Dc4KR(OeغVvL$᫴-;xm_ @HN]Zs8y2Υc?킾iQ‚2s8J}{mכZ-RPzBj{m+n\)M NR4Y'xnʠZ߀zz႘զkB wܸ nH ,|+.F"[h8/#׀9DXg@08y~8*|\1Y8IEE$?Hte^^aUL[/ȡPtfF֊j{c :i hgݞ#<H^T{j [zoί>~J%kJ>'DZF!_$p srG[c; 6wr_321!Chh{UA\1i!Ҽ{,Ӗ ֣'?ѵ \X<$7,Гτ=po!!1X!KGp|p(X|M1IL^1d 񥑄PUO8:SX;Mp-Vtqb)p$ZvIntL!y+T/)9w96Garw2CQ4sw#];iȊxMK\shGoj4Yp$JXNHx.Dzd4m%,vSa#'\ͷO`f'qѐf+eR0[?qǑf9)Mzkcϭ+*Ƃi(XHsCXʠ{I|_lƴ矦]!'\zw!XW3yYZ"@= @LhkzJ89"]#ҍϕ4q4D8EONqEt7;$W/UN[w^XmLШQ\J: ΃)}`Aw|`{ax̩J;7S֠Qrpoa\GudZykagebVDuq!J5;OiB;c\@e;wT=ZH?P=qWXh`Ync}լl] 2az%;!.Rf I[lӣєSp E%ö ۊ.m{r3L܋{n#~?F/1_b-(*QE;6:4:-ePNOtuVpFxûֶr)lJFgGm]LytT4mMͶGD?~۷KQ:ɤ(1(q\Uʋp<W>"M+GJdQ`|Е4Y.52O Ltjj)}]"1b3͑FcV^r*;ZV)v5Rul]wPȎH+ZhR'K]U߅jܣ[hG,YٺhDJvC ny]tA5wNs~K;[5lL`3rwb0v]y֬1uS6iKIaچ*8պyUzD 2x"&YFE5Z&#G+4wr%VojNԱ0`L Se#Rܠ'j+ضz.wR̫P]ShW0L =`L%#;isVZqc հ*\I 0&A޽CU\ Ԙ@LLLrAx͉e>u#j>68gӡ"$m=& EHޑꆙl`L 0& {V/>? u ~Cm 0&`L :UHBHw 6\}3]>P8VFnAջP/dL 0&`C5J} (-?O $'w[ Iؼ}p|jʷX[f*|dIpYs5kOET PV{As~͊BNjh<̛bh' k3&`L>`>_/DVCW9~Q\MS0$z/΢ue X==lNC^^Μ8u`8?74/OG(c&n|lu~NO5lYCko~30ѥ37lb(xW"ED "V`L 9u ϶T%$#2wJdegҿ^Ef%ر3?UKHVf;lom/wLJ"8<ڭAs]h\*MbvZyވ-J5WRjh#uVFTT_KhNX `L 0&P I<S?؁xJZ9÷I 7Q+ WE'y <ӿ?Ur_% r`r (o>( uEJ/;؉2J` gu.Pm^0>X[TgH:S=sVQݔJ!VG1A4~$@신I^1kT]޼ub D Ʉzcֺl1QIry=L'uЧIu {6§,d(&z`MF֩Xh%IdNφ>>&H@P`]zQr$ 0&jg}Qzx"/J'PNy8ImC}#񴇋qFMPN`Pt)j(@qmT5NuA.@34pX'MCey:օ|Cn()_?~7>Ďo5wc~&قŸ)%GRA ЊY8@r|N l. >]sz26GW[7c ̌݉7u:xMX' ƹO灋j^g$?Y'2ŋ瑒~7Ĕ/1 Tz )h]A QG}fbgz ?+ˍ/܀Ȏ $<ᇖԆoDc_gS1gi;MωL 0&@&#'uTϸ43sҶ0c|w{ij _ҚU{egBV&k)ӁTخ?[f/nNIjwJvK͟BfൗK)[خcD3,gz_u o V/`銷Ѥ F-zݪ9_Lj(vLETptphv'Y?,>q1u@qs!ݎ^^$~9-Di Ã?Ć@DXĎ"ңYDw|2 vwi V;k]\eiLJFo "`zbtRr,k*g!ɱd4.L 0&@#ץƳc2еk׊$V9adW.AƮDKɄH< 7Uf}hJ+U\EYF);? B5:9Ɏ!hd@&-\jE+{C ߁JG'ݲzKJ5Қ;89zk7HvɦV3G*]!#<䠤GF*Vo9,P[!U&0Iv]ͫ(Kr4['҈f(gL 0&@}"IZ4c FLc2`k?}@Sh4Åc.xvd1'䪶SRi{e7*U5ԋ#K\/hS?MybQ+`;JEp 6Y_J &! <~Y9JwVY52# U| ]b 6 O𱧞b/BQi<M"N%U.p8GTX֣WE[B5us4T2K$º3eVy(g>?7NPLL爞>9m &`LA!r

p@g^~ 3twsDN y:=ioMC!m:B<[ϻ_5ә;|Trxwb̀1~`=NR`s<ۂ#y`<V7| IDATȞ^^BUry.|\fvPIoMDxci$|%M00S&p 4w7C8-hCK*V$VXJǵSr IR cެh67 AԬyH> e5VbeL 0@sy4zG#vg!ѕcyo֜G#F`1M1}hOlrxegl$d^]cI1ڼ)x?q@rP*fl$&NE+vMI7jSIwn$E1ȸp~8eUnXy/@|!e''b:%'"/"o6euՂٙX\'bNZ)"9m54,' !t??{ [S$)_]_&p~`~\{o:DopLװey]6'`du&tƺŖ8 0&j@s%PHkJmx8$'oHy.M͕,8ٱ8pV8?m:>J `X 6!!o,Rl=/ŨYݻ1kT2ƋoDb6!9a*.ś|4J4pM/.Dju)._ם h[<*nA7ҜKScgIoD1F7{9:;ȉx /ڈDkus6 ^w4u^CK:5BlOGlg~8dˁ?c[za fVoڛ@ɡn`n\:et2{ <];k3jzz2SD5M 0& *{ML#K` t$ފD]H+`=D#p$)U|׋>- ĦI<+HY 4boCLT^<$qW+/(^+QX?lnEooN{?D7gz# a5mL6im?2 J?R܂ͷ6\:X >,t8˶6^$pv]IuC lm^qffIgz%(jI|[k~ mCx0'h{EqrU['[waK^ot3Tј52IMe=B*'Gz``?܆^k6Oz"d.l|IO}`:Ix03v'|#53c0>.&by= |&HƠP=_/ю:4B਻@Щ 0xó 1O7@LOH}\wG4hMPϱ 1ke+~^n49,}9м,ۧuiUq*؅?JpP2 Ua!j57iڗ8$4:U4뗃É뇄ogv r3SE/7:&[=l6f#H.iFR[mxFВNtoZuy-9 8~;}OO9Wh 1b]*0Z Ν -Ю$]z#O\ng\lcISpso>H\6 =;ax0K2cؔu bL 0@*hGf&uw7 ĤOГ79]ΘH,z-tޞ <ФcXor"`j$C-#tEϮs"%IL9m_PV)Ă&ԨR$PJ.4QF٬SqpnOUQU^bti>ٝ[fw06p"M2w4k QQ.f f`l6֚^CK:vrjxq2S7E7OtLW: ]3ٲF@+{C ߁fMwWTK.ɲK(0ŚEvqtc6"Yzz(SRd`2<|N؁JcI\2׋7ĉC0_e M;8ѹuoMG[<=+ƣ{+Vr?-Shbt \0i&9diװ!^S8)Q̅\T$vݩmnC,]4Nemz&Yja(^OJ3)ش, #WHVQ*Krl/[f _Ѥ7ߕkSu*,UEzQ%rZkhQEPɗZ(؇f_0p&]w# Qn|XR&8.~.J+2GE!jŽI~uCZZmbu&Uk3 ҊD)a{aBz){dD3ؐ^x  YON/H}(;Œf5ߩ(]tW7o/2Q+y^~glޜ-91"|H@=rrG[CS&MwPb {imMtr*ebJ mXįeK2Ԃejv[Ka\S3Sfl9O'CEC`KzgNAY+IZ`wp l|MUtMIW)!B@@tWLL$>~do.kR/u?™tj"nceWY8GAq#Ҕr$IVEGFߢρ X$`rhW[Bk 铌4-Cv\a_~? gזLǛ ta1 yvrmBgNA1xO p̎JFZÆў)"#`L )m^؜=!Btr;^ ?VޖT]D6XJg1eLڮ7Qz$-q0AT;kK)̶YJGZ*9VW =^WvW40mS ą#NO顾"?Y>=S7u ' dކ6xi'Hg:G#+Lcz,fL 0&U,=WHr1FOomg]d6=9y0]iC`z 6ۮHD.G42{8؉[m1[Lۿ(q|E3EjDQsp| K%(`L\AVIضz}B&P 9Lu.sNR9a1eh޴΃У+&`Lnݤ74B#9 Cmt1jKi`L(E{\u;bV obeܻ;hZ2UWzf6ҋG$rY n>ژYdS^Dkz'%}BC" z U9Aq`4RՖL 0&$[' 7k:a\94Aזa&+ XM aUۂ!z=_c$F zgd5B9DzEGNbc`L 0&`@)~[)eq?#7A!6/}ӛ8i : W³HhF)bJ=6i'ڛcB,dјF#x @ )ߟBkk-D#' IrF<1yT44D+>hXZ ᯢM9wx9"=B(p? }7O#iS NRkt½p87#E0>pMih͂S]zFí2)i*!49CrKrL:x{ 8 ւʟ1*ױgbjw-ϣ9IMMk/* ?[qtRV'M%CANJprC \rIM,_Gf>J.d 6}1$vz7Ok!fvgb9F<瑒~72^] ?>r;vB:c~iA*!$rz%GR0x;3A-LFf"p :+dwzI$Ev{`^*J!\DO,c!`Lx3.1:"#)>wGJ{޴;I`أݟ` e(ҕ_TݭEE-`+FHteha=y&zr`DE_No /=ߒAR=4=p|M#fhգr;N6v@۷o[4j7PGn| E8Ž䉸"c|TdVhYˋj` IDAT4UW튬,P GoV><'r"W`&"g.6@ep=>n/.Bws1 ѣBanBoڲPeWsᬵfyLDtȵ0޴=blZrMEg3yFMa𡶼DNN1k7n/ (_J\Poji1p>hOwtȞaK,JLp`L XG@=rr9 '04#̵=ޣEgr9Krm4a1t~[X3}ht yZiVj ZHDd.= YO';#21!8\5=iK,,(`L 0&4 fdťP;΂lAN]\R NlKyL:{nC Q&Ѣʓ,ڣY 0&#/x(&@4 = Jf ⥅ Gp E"\o'ko&pO z gdvG+Ky:͂=*;kE{,.dL&иqcܸqCrPjx&`DRJz%!Rw 0&]'ЪU+K[z?Tj&P' <}]vv>F|L 0&@h֬ZnMKp8&P]xǪ[2vN2`V`L~ѣZlǏʕ+\i'DL#&+anvN̳&` q)L'1o/0i _F"v52O`L 0&PxA|m}Ph@D,iJ:.!"1 #<]v0HՓkH@ȟa?-zA.xKcbKʛ kvfEK/Jzkf-bL 0&9#>KoX7>KI!Nke jdzAbV#99Y]J/=B}ߪcB_z#1 0iǡ c@WQ`E5m^xߟiEU,`L 0{I{IuKz۹\YΘyD`l:"j? sg'!W4h >ӛR$僩S}r~\h!cGy QcRGፘŇlz.Szw{=fidS&D'6U֣وa d~Sh,-^dyBHQ˜Yr>gL 0&@-kBVs z3 ʎXmV+h= ӽiP 4ZΌEV7 R1į3ԩl3$˦ z # , sӞ"ܜmng6`=| ƣ⋶$izo>ߊĐxn|$Aq`tDֶ]ȪZUz>L 0&[9[d*0+A"x1ߎ- W tgh-*kw#OsѮcg8;藩a(Jac$)֜:%o9נ\[m0.xUQ$b7\j)8Q^ b{O]ףW:ʋD S+6r% 5}5#aI. Fp?Jo#,e'Fq.ʨrKJ`L 0&j/]6+gwIm72%J_hqyuzt]PwAv/?J3[̴'S xOp̎JFIKhg1 0lhER!9zoXliHTeƭm{mp&cL 0&PQ߁ .`pEc+eܧdb5L&=s-fK|L@){\LLAL!F4,r. HVH9 FV5xndD|:ٝN tO#]sm@m*]@w1d*a~l1Va()FgLCISzgKӘ`L 0&P[ܾ}ۢ.7>*#0"]#ҍϕ4q4iGpD9.⊌Q>nwHZ_bGZ ^!-- nnn-WG-v>Ņ4%R]4RgbXZNݔ9&QV%=(+ׯ/Vvژ`L 11Wۦ۷Kehj@E2s>j"n3%+Jyq4'G)qHI84 CI%TF|jNNF['j>KzBe11dɋ1&zZ(/Vvژ`L 0]`L 0&9 `L 0&`L@`&`L 0&vNe`#`L 0&`&`L 0&vNe`#`L 0&`&`L 0&vNe`#`L 0&`&`L 0&vNe`#`L 0&`&`L 0&vNe`#`L 0&`&`L 0&vNe`#`L 0&`&`L 0&vNe`#`L 0&`&`L 0&UHKK9`L 0&&13ACpGb?C͜빡K?~7&mPE_#%(M]za׫uhpnZyEƘs-mB;}2o[]?{ _vef}NN+TeڧaJV:7F}뢰W`Ժ:cI:xߊ?ř}^~a$uvlUp:7&uElܾ}ۢX zJtH7>Wܧ6O&ʉtWdLqCr -dQ,jr] \UU7AiDM` 890eC&QtƐ,"'| b>B#6|ks}s%6{~}^{{sڏsҙ~]P5+(((^K)2FL{;+c2U3[w#"7cm&y2O`ͬH*'sL3jYQ ,A~R2Ni\sw2*σ C s|eƢv)iȰpʚ!}22 O`sY/xUʳ)uHe |NC*TD3^R†F]lC%L![d]S誐h$b2  ڕxS&[euls}5"-h(b dmfzLKg]2uG9;*͇2h<Ď?%F6Eu +a_:hOzl_> y'ap]i'}/S#Fz(/0=kΝ<'̴B׉Ho7tF4JܼR}]QPX\XW)ӲoƂ7P$ O Z|qDA+s֌pw,jHƮyci^KM0kAџtphK>4g FxTVW;&yHO"5Ӥ RK1?mIcw!f_E2aϱV`>_p\6C\Ax勯x^Zy,v3cIp =nkAK/O:]rslWGFKb)^ OW #~>U 1lsa1 EWO? ). á].fL|ݺ܍72pF%[RRbgVu)!G~1DƁxel$י2ec;|ȩBjTEaw%@+\dS5 /5SdguK8Hebʓ6f%-J]O htb*DM}ox"KbrOV)ZRE-s\E5Y9A~$F.f"YF Z#Od\Q9K#PRgX'gs9q2jfs(.]#BLWSYcurGʳ6dQʐ6fMmg)$_O)\du$)I@l ʾU(,+@C`Ʀ D>7 &>LC{ fKj-~'C3nqH- fB N3v%(Cy\,/q8*}< F?W)-/@CCְUFIIf|x" h*Q"|h O>ۡðry~Ū,*&5<g2w{&CrgQϟⰉ .iWͿv!l lbӦdz yQ ȿ[Bʮ\]F.eH8pr<-H#y.q6|6$3x5}aU4Tb5J,SXJ9wf#o$'?@W_E6Q峹gƼ~-wcδ!u/âB=9'iѰiO%PoA2L|E1hqNl."2yNd!:U6䙡m_W.͍'mig,ե Is*j^3EnuMU2$5lruz;PZN&CO||%:[5F)T/Cʹ ,X!N<8c^|<{A3ie,l<9X\;#^ũqp6)n8|1&x{o}P_'Ob/dՊCt<괪 D܌:j8&̧S)Of٬v⋭|;zP&2%:a([WDS եťY| Y3"Q5ڞSP{?vA+b]Vڋtrֲ2J0壤jp lSOJy/h&x䣆㩕g,s1(ޗaO5ծXHZbM-T e4p :dJdXYY 1zBfJRIEjN%c5>9Ɖ Ie-a۵,0X1>x gg}F'q(9OK^1YoRzs@1X%]E?*+UalUalƳ+=a^JR9BKF&V$t=ʌC#?9G!`퉼-T(O=4ȴ;S|%H/G,7"#ÜUIVѾ|ͨ\n s>pp'VdaO6d >E'$ߣ첺s⟀Ȉlw´f%6>*pe]p2V-ʒKڊ5-nlGSt AzCtgW];fC7 -9:l-=K}?Bvn+ !5H z#m]wM&6"_mS^<c$=t2EN# qA#ɫ.od䙳 c;#}fOX+IS\kź^ٹ˗"l(؋,'7_5ur%%p֪):qL=/9ӱ8xsz{c1VEk,pNkFϴuC$ ')x@:~Ks58$@?Vy2qrV]h<f@yi)KQ^~h0#TJƨp_oPN),}AQ3I+.cUl`׻8+X3㕻`Jx*U`e=~}Ї a)|u C#2pU.*i@66lڌ nQ n7-\P" J&5/:(?FfXP{}/âkpnuͽ;6#6, [EI%*ہ>rZj؈Ȳܡ7E 21i)V bÆd$'gX|H"w3L~+|R4z3AƾA8F ر1 ׯgߞ<4Q5dApaD no9%h|*'kN"o.A\P8dhH F9堩 y\*DW"fupzhCnͦX>{dV!|&j4rz""t&M" Ż[JS~6쫭v4sOZ jꪐGi|n%polеOנC9/b)=_}?Gt59m89ji?IO[CmZ"o<v aLS>},w^8Fxhcʶ'g(0WqAfSWSV)X[G{M]gǦ׃h\`\OZQM;VҾw+Z T"7tx:..^,x G&R#?XR6P|@KMAcpy y0̩w4EQ?DG!*Q?P դkF"D fKrzR0-A;z ^ e TR̈>s11鈥N޲wn9s(hR>l)Q` B{xD&Cm`zȡd{ˍi ƒ0kq:n\pFe"~|:hKp-f?yvW_0 L3O(Cg)mwԜ46?))|M}1(W~Llbjl)6,atnBC\7}I<.1FnfJ4*"ɓ7o3?򐪞3r6pUU lx^4)M,\a<oD'Gr.1i aݘc[G zq/̈́{lԦ޴n*~`3?]tT!`dNC Imku+aat?Rrr,ʙaq3w_vnm:ʁ!p5Y lf&-CrBDJ=wtU֢"]8+O)㐼Oxbl^[Hoɜ3/&|Jߒz3ܠWј:׽Ob佹3&OEȋO}nN~?w~y@_,>'*`Q&h7#;Xޜ\4 Km8> -si5*ڇk/GhX1ٔ+\i;6Ӂ?\3!aH? a=Nѧ3d?OioҀ ;JFGQzu6WJRe>33<-P7"66 ]XWsZz2Z;ƅ(@}I[2i]UgìSrGHOжL$tƴٍa5eZZy& ojTiU:7@6nODٶ"`uDG`(op./tvP@@ 7*leذau̔߀*g~$mqoQ^~ЌOWJˍP @@ @@hMr%΋4^ƿ+qq%U\YB @@ @[ۺڊ\W7&NL=\!!Ņ_[zҕ-"d @@ tb@pBWDOr%kjpj+?or .}&n:\`(@@ :IaIPuF rɣgu!gNŷ@@ bi^F~*rFn؛WqE8&7H 5@@ A@؃R7z4v\f. ]gNs: @@ pN:.` -U.]@@ JĶDeG_3 @@ ɍfV5fgi5_$ @@ ;b[W7nگ֎Ce@@ @;! f[@@ O۶f@@  r͚L#@@ @k+']"@@ @@nj"<@@ (*EX9f @@ t IhV{RK@O MY~+~^.DmJ8&>FQ0rMC^;uȑVv%r_v+55[?^2g}Z #~)lm=_|ZDi[W:M_+\Uڦ֭^KVĶҿʐ3-ٽ:m`gc5WI]Wtd\j]7ݠtς&+4F|+Z#VU*rVA"Ez=z|LZwB?$Veo(c%EǦYjg}V>'j9׺ۥF9BkTQ-S:5Xjw6Y4Cݹ+Yvڭ&o]}qӂՖ^fff+Gsx{xxxx曆xxxx_@~FyToM߃_BAɞ=س0hqߗЪJ\y}@䕟ÕK G?Dg yqZY 5ZUڲwoIG v%S#q }b2׫<*XFE/zn5yE]+u]W$eפhtMp5;Ƃͧ07Geri@Qb3v*wJ#Z[I 93e%XlM[bV@+ϜXCDONӸ:Z>z勨6|67"33OѷY=[ =8ǭlB;-ҭ{cIV9dD'"j_dokplg=rX Έž2dÉdW3Ȯk/cֿbePDuqɠ~l0aQ.3tSM76-W~ :D#|Wi߀ؗRdq8ڠCq}abj*6:?kd\/=Er 6,r,ԎQs)38d:og\ F-,fMg>i]D mM[&킂̑-`>KV[ۇςֽ2| Rؼr_ggsyRXѺuF}c-eƕr? FX-%'uI@o+|+5JeD([>6FetW"֨){Kƚ.gb /h],׏٣MK=s^ǒz\}Zw_jѴOp.(mlVzVmqtgf&cgj~3Biۮӱ@R$m]b[=wEd[oK }u> Ö)SVڴ/Lb~K(6|NGڡ3him*xcMrC1[!=z8{+ep*[" tUÃc>wĝwߋ,x |ϗ"aEk&v}կ~xO=hO`͇G11BZY~> ile=ʷrqgͼݾ없+vӖǵx퐖Q^u+[X?W%j c: c\F`m)Fɥ֫s'|v mV7$F?C8TW=qTh#OV_)sߢ/ߊݴTBRaʚJ_r DVѾz&,Bm6t=ؖٶOEںRٖU}5*E0c0X響M6 2pJrh՝=%T^+{!mi'z1f`ivcp3#meψV3~N1oK> t( IDAToQWrn(c#0~֞N:BeVycnm@({'8#GX)#b=siI.Y-ۙWkΙo@!>MmmRxvMPs=a~ax-63a4$F}AyoBFh  >c=Oֽ0v5by a^]pr qCvqDS8 4ߒ-Onx4;mNc~d46:Wgpzж0yoi-^凤xb>9X~GCqt &Du&T=EKo4i Jbxg= 9xA)G@=&bCw<]R g#D^&Aª@9(` B@Ox`Ⱥh,!xe]0ШsI0/݉>TFU~ n_Yf>a>-ӗpl̻}o}!H8$'9NZ =CS楆 Wф*?avcT3}GڴMUo5V4)؛wF@9lBٔY}ZS*zz6+Ź3gp;Wu4e{8k_5hjPB-L yh~aH͆NEmjM'V<#;3SWg0Ü%)tP%{Iǥ(m[W=QBdXfȎ24ˬš8Iٱ ŠpyFDFW<4\fx_ʃ^r@|75\nmi* /l7r۸iiqc6ئXpf0a. x܏yOHgdwCON݅/~%m HOȴP[c.UPtB^KDv> cXfb DrUT'C=cq(5]:O*xYlKj D*üOEjxRISiK@gb qf@͵(H}  OD: ].hyC%vV?M6R P܀9Ix^ ĈsYz/jυx~Oϒ"ɘ*9C|Uvxm]Q\,jY/횦Lb#f?E D!yQ=Us>00i _=S?J= I/Q+m#mJ{_kR0Z|/ F~[aC T̉C᭽x-ì^BrRܪ N_0Q{1s>uVѾOyoaJc#lypX S#>ЪITpe:NX^gk13.6ղ?#j/G^^\D]1y==qŜvGº+O #l*OkсriTug?颃44</'KXY:oߕCKC߱ya`ҁF頭!UiC{+@F:,KճQ%:S9Ciҡd%i/(x^:H-Qtga~z#n?6bQ: ƥ$[%WJ?69 :(zX"n9ə5vt;^By|^%[hy?ԍr\ǭtdƤu߬^c }Ăfy?7em\!7:ͪr5mL_J}mJWn_g);io+L7$\Je˳ .+VymFe4@ϵ%XKB=9+ޞZWOJ> m&6zj'^v[ߪeyC-C*kKSq6_Zyze+:;G =w &jzFzsNͿK7Xƾ.< 2oƛDPX&Mt`̘1cE ^^^;}]cW`tvA,~mۗMݶ?XǶ4,7IiȌcH,eqTy'ҡT-=@2upI2r#bEFO7χUS/;Y^oZ4oZ2w#{0g6o[RB۴$С)l^H)-g0.I!R`?("^}zimE~!ׯ,=#nHZCۤXVj_56;T4MEoZ] NCӶHZ>[ANzsebl7fy< hErG`of۹ Tg/^Ʒ۶Bת# @@ :tVkX+쏖?ׅv@P @@ !oyGNܟ0:prO}w("@@ f礛5UujO3Mp!\lWWx5'OϚ@@ q h#7KŹS0&Y\[nJ @@ F@ƨ[Pgqf Ǥ[PB @c+'csiN,Fc<邅@@ @! .bj#2#h&T0@@ ^m]ݫ=ڥV7ѣ]#& xG yd=='g`xseeuCΚ?>&ҧGtc*>xI*+o kx(G+TmC%Ŝgk:TĀVt6WZmkvx1[wb78؈3:MdCfǼzq`۰O_mCl^g{=aFӹwbD n~d8zeffڡu'?Kb)Se!ѝ@J2$ӵžmi>5sfb<3RXmF֢a^DβJ8i 5t$b~(\'->+`nR2>,֐hk>EC07&!wOlȩ`BaYVuؕQf0?lF֝tnr b_&!%%  kfP%!=3LOBشX_% U!-j|oWH/Gh;ےpܶڷdzֲH&PRhe/~FϷ|z^ɴ&>Mްe;F0$ͨv}4L@! N;3vEAN.l$]G| %z<)lu@k w ]O_5u2QTJ٨V*b>Xt9vDu,I[w0>'9 *]_9Gڍg;77Zju\/ I+m]F c 4# ovfcBeGV:<܍721NpsZ1?"Oc`$I3VB"S 礓u\naE#I!!(L@ 1i'Z|^u˜Mss QjJjx0!Zy,Ch/NoBs糹"dQqkd N4BWSn$Iű:.tX)Aȯn5dWSȮ-s\?_SE2 `61G(Ԕ 򙜾}Ñ/٧nFEmFuM 2M/rvA1HE >4oDΊeTocVP"5P^o&QkrPy'/'.\‚waqPy#>E{Tb9`}b@4AHͯYLٴ4q9Z)mx(m:.I) ٸJ1JY$!; 'Zr1A`秎Ή^&:1kd_rlS'[ru/Kg?E0aۖce̕zFj|-{>((V~4놀pNG2+M+>pb$5]@Aٗ,4ף -J zޢ\s0j4b5ȂOp b7p<ϑ[og$._9cseP'ʓU^,/$'`,ƽ \LMA9 $YYcpC%i/!,~ðryu%`yHS M]^ J+OouU *+WX2uMU%$cMvi,6 4dE(9a0m 8r( ґǗPSIdWenq׭M(S$U9 b)ܱT*\a"1 i>=1~H=Rg]|-H)nɐ\tyҀbqD Cs1Y(Cٕ+r]LOz#&!_̤HE67Te->gq8VNA2Z ŦM.@@l)r叺# F2hqOy,I Y˂':Jt"/(C mHƘ y %lnF1p_E)(+ŅfZSo#ӲK Aׂk ,lcGh t暄q>io@_A 0T`1(/-Gb'tː1eA~κ jF;6j`e+ZyYkg{c,gЄYڎݙ+f3Zu{|bԟ3]_0ؒJ"A puFQSG Đ4tO -S:O8V ^MO/]﫽Xs6, pQܹ1u; "]HZǐ<#2Uy;xpBlQD"`y* <4iϣCbc-|jkh?MEuN|-ַu1 J9iԢ M]V"I̷rqgL6l6my\}ŲJ_'DXmڥ_dmn&:~ v-_GwLp,ƆexЙ)i!IHIɨܿcGb O5ZЎ Mʄ.ᖻti{+ꡡ4p"w 2V!!&~g+Zj ޖ`R0=&Iy Q9BKF?V$yd^._0шb:O @]8($ǩӿ!oDO̞iu/|IVر<.ò^ƺuY;~n~1d؃;׏ ʇB@c%/sƧ%-I`B*kku8 :9ɣ|aF԰#Trk\z!AfFY,r@wm woC5*oا]:Mb=ŧn2 $Zml} \ܣ[]2ضIE}%s6߉O+Y lMjdoOmRw8bG\_[QԐؿ숩?+ Ecy6?՟QZl!eXt'c-Bŗ@[ L[4UBɿkʰM.ج ~' YƷr rۏ5JDj\/WqAr4[<c5p0|+xR 1<1-fl>qHOَ1KV4 wؠt<6*lʓA]X8u Sn{*-!v/ C/H S$w,orx޶ǨfvoW~7[V#mlo}yks_jYa Kkϳa}&Uj(-{V{ KZbYs=`UHtIwh묃ܸ0>ԃ%ZhAu0Ba_G˳fk?i߷쓃\emTy8L:E{lEl^>⌁f1⢢"xyy9\&0:^*BCC-&z]s#i{S>ML YW{=!qiϛOì}X24iQ]3N}CZh<WPh푩V^WВ y͍uh9N5u4eJnxNeXGoj2X]utU%.dw6 ZpFLeIc7ҙ4QG'z ?#bF&Fz1D;1z"^(H5VzV\+FD7f*"adZ܀ [à#!#\iюXjيVJ-nosg9XZlَVIv|h6\AHVP-c;wrO>I4,(tGfq\(4J\Wh[bҔMI}4̿A&Q}Z5R+v$Z~`!t '܆]v蘰Aע3Zw {u :uҠj*@~hUGޔVrxKH1kӜp@0&F7欄.z=>ς܉Vi:0S<@BdV+Z2O5Ҳ^Mpy۸u ZR~xIWAV 0&`LxjKGTN1)j.1Y*溷@.4?$~mŠbd 9NqrZBmdNusz"Ѵ/<og⍖uŤ]ʘ+lYN%iOD݇pdbLAXN.Fo],mױ| CEffTA03 k;R̙\) >]/m X{'[̞?>8_\)MSהjG~CRpGs0vz#{WYr"hW6Turn8?|,Ot'=6u3\:OzZ&TGVcN2S-Ђu)h6{N߾W[^1.- Qop^xԦeȦyit9UiDaEI YئS8yBN =fo;fo1ߒcB 3(b*Oh]&c,= p"e#~OIyBxKd\K2 E>A0@Yf}@aE2nhŘE5(G3u.KE 3/-#~:qFdj6TDZotNNe9%,gw?]Skx]Wt]g ņ]ɚDHj>5dWcP-H^84b "y0O*š]&!"f!|݊PQ{)ϐ 7c 9\@j[Of<3447![H3wj?e탒ΚkeH(qoYE[Ċ׿lטh8>YVHʇI?%N}OH$+zT=i9]2W?9M+a,?0BO8&Uױߔ8yf^O:S*u%{M8;_P겢iNsW+4|{9ϱ8Fu} +bӅrӶc\I oI}ɹo.︐Cwk`ɷ "-eZyKH' r嶋wʽC*MJASuzydt9DN:νIhV FА~PtuQ~:Hiyf|/w5?ܹ0K ,TT^tb䜸; ,3Է y9j5!Gu"-1"SRk).l t-!7%Gf ݹr9e!Trg]kh\PX눢%'86nMzhCp KFRn(vfE!d9ݑqh+EQ}:Qr@\x-{Lm ^n_n-41N097iI( _+ٕn';6g9*[ C1фm 0r7?~2jwJxM_'1Ki Z_EPCa']Ib&V&HB[pH2]'`Tw>_[Y}nFݷ'֟yD‚Y`EhWYq!Vf e,| f_1dTo~ +66hWX <18K,Ihڧ_y<4&㋇%9Žݘ4+-_$f"j[ʥ> ~^);^ DgN* "6JwuDF%%ٝ 5VN;'5 pc*p2.̮hs~?sC? /Q^0WԨɆBprwCR4ob %aF6K#G!p: jE¨4HƑP4O^,t(_ִ>QA\(y<85]vJp '#1 Cr7"+;| i.x }i*BrU/f(,pi)$N Ԏ cp/=Hb%Ky3ySp[Ћf4DͬmSt^HgU@Lg8e"i{z8сir9"\:m0aMybQ0)L~ 1A9'r!RJ'~G@|MP@U2%;5?c";}XGU&%%~~nԄcE׏(VwS~[#o;v,||ǒH<߁q'g:´@G4!Sѥes8R`m6OkoI؏lc!7}4@!Hxx;#$p5oc( t۴,LC}b7N)[C#h/O/9ӜT>>BA! һzVM_Bt@-݈lZL#D}CM IDATۦ;f.. 5շıZ:97YabF_k챇Sɳh3XڌuKuNof՘Jǔ! #ufL] P;і' pK"|[j3"b%5z|:ݧ~iy a^W8/wIzu%4{ڿWq`H&_}C;+Y9Ƨ9ʑP: 4 E "y@f>MԶvG8}a Tִ+p>0'RGZ`=`U Y'iyIF3# Y$h )vOgN*3+Q|툯xe@B"٧v@ZKd=yD%_k̼QGeitG=dxl?v ԯUo@Op],jP5Z9j68ӛ7 Y4 s_8W= ;&}X⺤PTRĽ<}iDvk%~+FF-YUP}WŴsGeEvqo_s}{5g-o<}S<BFNށk{y,jgHځC5IGZhukc0`ae 60c•N3&ayZTMt9Dƣ"Z5%N3eHV<'# 'Leљ%Hn]*ۭk<ɣ _%:^_SMœoKt6{k%_㘕#Ad;'U :6g-V.7י>;.}0k.A+M30R!'#m:ZZ?},qX6vj+oIM/whfA$;X< :e-c'x4,? 7mr<-\8ClrAF53 o$n#]D=(}z􁫫+\,C99]dYv:vgT^ _$NuǾ͠}Ո ]6 u%k"o'l#\]W=/F̄.ښG`+mཾ'~@tbb1mo{m2G9#'af;fvh4,d<}mQV+eTP[7ߪt)Q"Vv>=w8_4ͻH3!$yޒHaҹba믡6 RoڍzG:Dݑ;%V^xBϦ=|%TJ8{5'qqJqQ){αPROfѣG‰4CPziiiګXj VP]\FE,SDCĒ%G|wb [)]d$k//R}'SPI3wF>үR>әff  ;ULZ f3Z"x'5lyYy|d=}uae. : 67g!V}3.0H"+y4JVҀPqΦ*T'6J"Rw3s62=*v3m&5i֯o1a̘1j%޽[*:zVєa$^b!꣈ĔRF+JY8{ GAq%Ҕr$84 CIKW/^+|L0M ɳka^;"-AUÊ`|i`Ц.>UźX z/.vHK?b [ }N5.fC j3̧>2&>ŵK3i&l/5dJSyjv}HNٝZ樯;&pĚkғjY 4;Kˮ0ZHuɵ`E`F WPF4'ǤBC0C1+Uh8bvC "o,(it6^L(fq6/mifi-:KsJ% 3&P ,g=bQ+AIY tGIzDEbɑ/uvMq`LI屭ɖ۱>%S&"mc&80&P= txS9!? "O8M6-UgaA-Gh:Ǽy/Lݫr\ 0` PB=y'/QВfP/YsSL 0&ጌ9)))8O ŋ: B2`N GZ : k:l;ȥWb}w6}#G, 0&1ҹsgUtc}aaS RsRuҽ[ز(.CYqIBܞ$_v\ 0&`L TT0G6COĭ ${@g0hi[I!`L 0&5^UGE[$ui!yw\BVKXt;fݫ L 0&`L891Φ+ h;HMҒ~ï3'էX&`L 022ʊ8ǎÿkx[,vL#-&`L 0J$3'"E{9$qCȌ^vRvL*1bL 0&xx)w@I&&Q¶\ܛ+K*1&`L 0jNjAr,/QdL 0k$xSl6dgghݺ5tX^U:aL 0&PQzN:TXSc OfLj׮\~*ɳڳl`L <R.1c"p`L@KI&ɹs紉9P]CĦ(0;iydե8[SڴHCZͫ쀐BvRrJS]ٳ]("Oʣ.ȩH{X`# ;(LnݺRݻw gS'SS0}hϪtDê`xF\:~,y0I;Dh\br@]`J Qb˙B728KH+[]6DZr&&<ණ+K~]/vN{U~5z3ճ$y#L=ԧ 'vS:YTEG:dQj{I] -RۜN<>K+ؓDVb H'z,G_.3&`L9)硨]O723ؼ #C@P]AM&{cZƆb$=Eܝ/eѐXIwG2 ߡKHX(@SoYf'LtVpgr6"}ONi,w$&jΎ<E^ 1N']D~:m.oSf#zr-٩: -t Ĥ6ܽB~;tNXOʙŦjFi"/,מ/rJ#M!0&@> rUL5z*@yT&R ` 7ѬEOO_lCyɭd쐗N^ WqxRº㙸=#*)W/$=j ZpM(ȹN"0o7){gDyj$$p$_@ZgLٱw1pIƌyJDUqpB:7/D@A5'D(>k6ևvrI!O1 y)\l͠nQsG+mLt*yS4K4mAC6(-Rzr(Smy9֢Ǣr.K׮9zTi :-:rL(|@U Gܺ qva׮h9>X<Z ZSKXyo{ x:Pbt /hɀyA8ҖjtiZ vnf7[g]C v\70o$դΨ#0RUN~KPΤәLg;'rѶwr%S>^ ap?o2-(̺>KΉf8:_Awٝ0k kFvv?9=FrCb GPri7Ξ3t+\ i mύhPAT76IԆŁ`A~U቏ MAm>z,a0K3;_kE{xM%ں8tj㆙jձb9or ܏^j*QϨg{?e.o"1& 4C'fO:cиň^:'2i|WϮ  Cˇֳ[1|bO} ?|Z|(LDY~Ccv\?pegx hꝍ SM?R$o.ŸB [56i[5u~虞T;/ _8=E}pWbO1_>HК q 6Ux|τΩب1U>3QθeCc2bO tmMޫO|sHӿ&pf`fSji̓!(`m,v҄zTGc$,*t*6'^@V<j!eOҲDl@FDޤ],]]Huvo^p~aTBsn_uZµl6B(w]t>چ \xB_ K[|ݨtLiOŕڲEIr(Xukmz?"o+L smЛK4kRRsqېWr1sТؽ{ ][1: S,2h4I ^HH؉ݢ0TǰK1􋭈QF,9lG ,\ep).?М׹.z8bqD̿TpzHu5 ,Űa*N/c#`ѽUyFPx`Lg~ƼOE 4bI[؇dT}8 Vx(XSiƸ_+b1_ jGX0PsR邑4A\!-٢4mV`Yp [>.mPO>{ Q`l9ufMJ{7JgG{<!3/6/à`zXج!)G?BZ1' ,\Kr] ^% q|K0fV1Ojhm i.~)i?m hґh߆ț 3;q!+Qec1o #e҆m0h+ JCUMVqHtnljÒQGOߠQYA vj6CgWNm*<퐳c#v]xa38+OoWЦP+b p7Q醨|a韓tnڥ Iia"ɅueZv0'ԫo8zUU¾/ͮԓ0 wp`U*Fk)J%;쨶3N]Lzᶞ*7h)[ڇ&eJʈ~q)W(&~t <L@VkK W+-}bЬ]7^V=B&aR!A ^GGaZVFw/uEtmqS(v=%P]uht|9ޑN2d'NBRa[.狶ɫbP+U i8b 8Z@$ IDAT~uwHX 5,:eafɍ؀ް6더͗i+]яY7w"̟ P lQ]qT9_*񈧖S֎yh`՗ꑤ8joЌn+)W.C;4Ii؟:_ԝkCg:ђ#>h^~dpK%oD#4{6GGR[Ś~M3C'rhCS`ĄΏe g`,VB8t/{%u7CZ"w7x 8ĵPЖ/y$3Sٳ6~4akeC`&t[5bqL|}.WC՘@ˮɪU1Ӷ4Fm~:f-iVְL$&\m50:" jbfArt /(=IL8E҆AaJ!G!꼒4&JknRƍr,}UK+3&P1#x2iМobA Yf/ӝ|*`o%ۉ~c:Rwk`'mߐ~ FN d(y꣩v{lX3s0%GR&a3!nZ4Rl'ޡehzLui8v< 9y:"uk[:٥9!! i͡ >cq~=Nv*{mD+AHNl Fʙ}hJ. 0ו8W:mD0^I9V ȡzkWNchVٍ\ 0J vQ/xaYD%\r?zM71v+H)}2z>+eڽ:hf8bMtV?O(ktqS<.- ׎Y¸<7.S\{My1~e65hB.aĝd`uDED_GWG!D9>CcJ0 غ2B,h^Dz5xq?L =f \>/zh(?Ĉ8[4baih+gֲI7tl+oGcaO SouhɑE!S :J\tݗH?WKl)y%Oĕ2GLg9AJ>)A!11Qzlbi륥,핶.`{$fT׭[ uy5= fԾ\όl_p):?3Vx]ͧnn@c4y֔khLK罐$iP]$tkչH&}hTfQ>5>']HF-K&3fLiIew-. E%PE\%ʔ2J\9W*K8 J+/ĕ#%IeQO7Uzu}S&`LY `f^ J6+!„ii3l:ܱPQ gG[1Cl,&]Sx"D@;l3h,C2*X>-*S&1 0&`.6X+MU{dc8S;Q^aV T0u+X9`L 0 Pס/:Tʕa 2rfLj`L 0&ǏHPϜThn 0&`K u7Wة&V?Bšӭ3 9g!u e<}B€?ak)_x g;~kj45iQyjNgNyzL 0&(7u K?uѡqf&=X:E H31)^|O;:} 혃؈!|b::͑#^?v:@h&=ʘ~)x椦`L 0r˷M+#0f\[@&iojw|Kz 7u^F +zk)09UQ; ~E4LԱ/!y돸@ΈM'7|8OжP pl&9Bν dSf2Nvbi쐐b!Y[-$Ej99}Ś2&`LK8K3 uk+luXwȢ.nQU\MŭoF+΢sGXHY*Nd1K$S=7)GX[;d#醁)E]0g c 2i mE#QJVD"BuՔb=`L 0&`-} ϟ 6h~ 'ìrqzFl1 hq[h7}L[G7b/ezmjCOג M/٪-Vd%vrEyzX { <ʽ팡Z.ܤtw'$?kNv]uj*`L 0&`ecDN(ꛉm8+jA7Z&X/ M\0K#ix.Re?詮)-HTq~:6wsmAe2E"m1u#ONS "EE{X}_7(; +L fj"{ 7oʕ+:tx)Toy.zk`L4hf͚!%%+E:uB͟EjMc`L &ХK4nΝݻw7]sI@1KČ ;&ճ9Z1&0b ɂDh&`L 0&JNL 0&`L T"vN*.fL 0&`L9)9+.`L 0&@%`h&`L 0&JNL 0&`L T"vN*.fL 0&`LULLLv&`L 0&PIuև 0&`L <x椚uC5ӈaL 0&@شizQy EgNjTwL 0&`L%3'nߚ, !؟)[zM1rpnV* pev/톅kS%6+mrۋ IwC=>1Zo.^b˧ =}p"rEk's]EE`k9 OMġHE+WʃcumUT sM=@g+Pk;e 2 Kc=`) %V}P}~JzM;QAk}Ns.7FyVw.O_?˺c;=G_Kp#uۍ 'u#\}>{tZ;?*ݻѣG,&"W1PE\)(K8 J+/ĕ#%IeQJ\B]^6>sI4<%99fh_g) 7U]X1M_I EuQ[GEV;h϶D"̨V[Qd IrLa 02m"iI<8 ,9#5|ZܗOE٧hOIiG};_5Hj0usYd/OKh;~$dtm))[ñ5ol; {,*FN5M@.px @ WND /d/P3J,3"Pþ8ScN]N'/ XZF(p{rL:bS/l$'0v6%^g4*DN8L6Nqe\|Y!3Sסv͢5zÊSeMۅ ZT+S)fhrO錞z["Bg~'{EϗiK6tx"4F/_?66`Th͞ o|1RVsrJZ*7[Um 4|| oNT@'{aeu "{gmĄF/l[yytE/+=QYy1>B̯Y '!D9P>rDE3").HӫP+±쮾-:9ypnHy.:/ۣ}Opt;wX ]1aQ&>ѳ'cf"2D_nDH]3}Z)(س?fFc2]{퓦G`q^!\[};;u7{<rTT7;MP_oP0`l-Xo;WMq>0VW##J\.y[|6_m~D{o!GszC4/ƍ] XA_%\ӥ)r2WvNumID75@#ع.{c Tq 4r?.PV¤ChhF M;Nt:9~OXRg5"v|=S20,>O_197SXt' /Dmi2QrT`h NNa;!bLԪx,뭙w{L%GƵu}}L-.cvFLQ *D̒7!'Zj7<3'^%9|tƤ)F@zqM.Df͙Xk飖^ 148[ :mLߗfpr &w=XAxr:? [c:YM1@4OSArN\Ϣ"-o~ IH|SPTZNw~t=L#<'nunӞ SKN~'m\hhْM`Ԫz蝪roH&!YOKB'q?a | .cN7~VN:ӌ վ~Gא]`[>(ZW+cF=G縹j:}_Ft+g6r-͌n܂u}!ɱO>p|lܱzv<&EZ/<kwn\UK$n  KSVlRF*H%@> ̇) IDATNhCqIv;JaȮcfCԑ|a[?D_ۚ/K]/>]!,c҆X9oyvfTQ9^_jLf%b5wAr E}ף1eUE>w{UAP H6-Y.WUn6`_M (DПqJٻ˴oFXH:eSpە!E%瑩E7I} |8~$[pSۡTl]D&;I΃9t Bo7ڠ$e m7f\h]Sr^EEqbv ᤱpS;njEL zknC~to?BG];j:"g'$/R~u*_d)1!F80^9z5EAIzpϣFf,Կ_l_V2ڋ%76_ܻ;(/')jסX-eKFU`FUtqxw"TP9Ih`hf|(-ўwWzPSr+䰖dR_CH#`Ffm [*_m%ŴL L%Cr ,\JϢ yܹ{wf<|ϙ;HY໌.^MB{w' g26g_8hͶ3ڻDDgΛ'ʆA8o5=K+tmmo#08HDtFn׮ F$?R: C޸! EevMڭtV1p `OyT91uRtpPm%940}L {2E^FZdJqBZSd%p gC0-_8tot_`ɤ8{y}%xSn {Zw$Elڵ?<GOU0=&ttN\{(y_=8ΏD.>Dvҋ7;Qt,MZdzpp߇38K o+PҺ8JU6*7rtb>7ӺU9wXZ8 /qV4-Ha_?ue{qmѧL^?[{8O%cŚH]yNdݴn3?"y6&xGdQHhd5U,gFu4=-~p>/{ͺF})Za-9zDC\w ^x~BhY=)b! \C"|cK4n 1}p/*ܾM=MDvʜ%K ПFc3?8X:ҵA:>^lT/!ZrbFCVF>+Hy?748tM+evpsk-A*WSyxdb0:F!wGQG6222w/TTԸW\e2#rW ӏWc[y^&uG믱6i4s8 pyDs6x{7UM.)RF##蕼m^#G}5=08}-n95B&rvmMсOŸˊz cgLqʝik(6`yMhqĉ }RϘ:ڵT>ҋB;D&GΏ* k '=:&>sդC;c^՘mѓ2DžқHF!\/1M/X61BŴ^LV3Nbc+^ Ν98UN3\igjz8Ga\BDeVbeN]q:LGci'bYM.X|^z@/J7i\Q\pG3b%nhd^0o,_Q@ٌ15 h[i8p @;}zhYt)]VC'g":H. :kvviCyŞ=`ԉDO?-Vp2꼔Q +%u2OtnxDзohp(|z\p\8wyWKZÀ(L]ӷbl%+E8Z2b/ 3U-PAP +&:?8w y&B[jS`tgs?愣iI,{鎪[5Bk!-?+WK䮴}i99t$e}Mn>YX1ѩQ @8;=,GvdHM;j֕o:6u,f\W ڡGu.E򣓩%̆ yzCWńHR#h&c58 ^@R*b\$4n_[+-NAT<5ɇc_LuNڵUOH>Pgl[wTlZDCd!uovrFj;յVe/}T+cƋke_t ,06,_QS8!bOTҖ+,{T牢2F̖1WLd7[H+MIC37e|,yvp0MGڒ:o,\{)bޒ;S_iխ?hL.UΏGFo =/MimLoݔ<1)& gph߿` ZƹU\S|*s#F%d"GSDyj`@yR8[y < :vĮ2Vq;c4(.~S) {;JkHWUe5[MOzݒZqV.K:U'ء J)~݂[~#]Nb!}5&/[HS,dVXDo)6?Tc #Ck_fgnlf,=NL^jmRZ رcl gGӏ{֫zul~ nړz4^<6!cG- RSM=QjTdSZ=A GL߆AoOJw\="Y/ShVEmCFضc=:Y(;;gOVNkC$:jd?k:7(I_4'5oCSim4U缇U0!Pg3ȡӨj_eNTuUX5/*ZZXei w'uhUuA'DCjʛ]vuMFǏU+عԾHj^1k1?t4Պ°L6}_GnCǼbDtzC=ؖ-ڹ?|'owZ;׫yza]b٘Ƶ d`L 0J@xxxH[M/Cbm5]ZJ6Tڽ;8sg8//?(/9Wp^m(`L 0& qΧFCWqAq5df!L 0&`LxZWEUg: ݧ7\vm s¿>3.Iu`L 0&Z"B7 ÑLɂqNƕwTy, 0&`L T9>֕ȩٿKK~qjs cL 0&`9%DC61Dt|70%j2&`L XCGNTܹm7IBF: L 0&`LJqR%A} - wxԤsL 0&`IuU'`o/>Ȏ 0&`L >lԾ:30Ln瞃pdL 0&`5O5Kډ0: GdL 0&`5'56t3f2&`L 0GOztK`L 0&j9aՕS4bu`L 0&@̹0&`L 0&`XT={,9?&`L 0dfZ"rT"#' `L 0&xFTCu+Q]c5\w6wr*q"e9bɥB"O{CjŒs0W]52tpTJʹt8en]Y~ >);|m{ q5j\ke 30%.Zjz Ѷ@ӥ5RH:1#߆7w琴sl!W =R_ߣ^;q-:Y/thK\<ȵr<; sE)X69+W5@? Ϲ .q">+^-˶TmIu랳Q.S0Cj)&FZVGnDIlhԢ'D3mЀ5 ښ֜_׶=I[{ڞ̓iB[wڼhA[o66چ6h{6^-6Wh{7pΡR[C"N˳y3o{ϧJmbccPtӌ!CYJM92yCeY qDwt6ɛN[q/])4ja9{tCkƂR Qzqb*wAY=),fiݬ`I҈ZƛNS@{׊r,"[yyM)ԕI)n?ySRZ/\̂z.%&\A!ruYm{ԕz΋r.ڥ9%^J*u9dΡX߲p.f]Ue={ȲLL?ӸN,}Ujy*^Ue[ҽy[o{aVlg)*KLL,[EwޥMoE?WwEWE?XEXE?YEYE?ZEZE?[E=m._.碟../_///-8MgOPUm.݅#va׮-^378iXk*(7#2V/ g.y]d `Q-L/th.wN!]7P(|g, ,x.4hcA`L,9[cQk\xL)aU sv{wbٌ!qF9>Ғr#3BK9WqG~Ю8g=#EܼvdH$H-Osi!471j-qVT deYՉk8[7vsEMSR%;KzrTھ^*?4W)JWUٖJRɼ-%TVldq@5`㤚׼DM2r,* =ixD_8' CS6&^Cb1%@Y{YY/%yvb(/QCdG>7è,Zqdsq짨<ơ/Ɇgȿ ^I'J ܹ\ `F R9G?iPvW\̕,*8rB={(/ھd|`a :T/$(&0ڍv<"9kh(v]Ғ6ڕPjy7gg]6k"pAׁhDz.pSF!v>馗;uhܬBc#zD=CB$Ed!)y) ONZn )Б "[㤰Q2 )\,|1ӡ\j(/ P0Kq=iEәBP/-OBBN)RGR]-GbkrdMՑ\Ik~ Rۡv2AK2_DqN$IiB#cx-Qu8ڦb%Ӕ*ԢxiYKo:aNnv}MǶskNԩɰ<:R[,׶]e uG%+LkŤ#hjmSlxXZ2aXQjOlPx.&=K FNJiTWA֪RGf:^wCt, KLқ2ES?\*M3_)M,wHMPw)߀J*]5Y`r:ryMsHi^UˆyF理+bc{gӌDu3SɖUקX{p7S6dAikϞ.7CjJ,k Kt  . N"ò4퍦zUk{eq' &J,Mں?d`iʠhwnY:9bn2znR76iNG6, ]EnYɥkT"MSv\k$5:" E^L}6ҕ?BR_{{Ht+u) .,,Mi*)JhNV9f}uQa M_R|W~]l۟A>)}h^] K |2_} dSYԮk6Oa PzW<-߶-]ʼnlںOWS3MMvovUBꗭ\i]<K1{'x @述AQ6eā&%Ab.+ɔdfBwO/ qsɽ;Bc-Сq3:{|0:52 Ksdm/=ovuXI'*hф!Jb I#rĢI)ހƋd ^.zPE\ l;lmwH ,/iΗ"g2E5ho4M(صv:q5o 呵)IDPߋ=r^%93O[7Pn肝4q)eܱm0ʐXB(M7*)FzLv"۶mn w C',-8FJ. ?ߞmF0\l< Gbѷ+8ė[;grq&+|Eb (qs7`'M/{G;z(O$t(ZGd":b^pӋәtWXFt]nt"͠rCQZ:ZuGNSCW'DP],̢ ] .pRN IDAT&{[4EܲU(.8sAkp 3,mԸ~WN'LT)Hz3oΣ'^y$Oݿmj ˮzt6,]+JmA\jmRmdʴ#&P[ Zsբ杖 :Rg`[&s}L]¦柅a4{ݗX|D|Kg_@dVXܹ~HZ!nٍ!zk͜"ǡSvBHW,ۡu !K1+騼ހ8}3b h͐Lo*-j׉uhD\I߆oV 2u j5[]zzu^üumOwn|'_d?ln nlVڔ'DT}5HFO[ż ҲpY>}/faH9YwDH{8BH[ͮ3de}SGŸF(.F%[Fk/'y:lM'5صxzpdQ.ۛk>em& 44!ACjF2+N?zJkjpְ' |-E5n^#8+^%c\hKΨDH~xݛz7@ӂ@obƵvu:ڙyw"pB$m‚"ݘ.,^ZS|aCG!la<i=Lb&qI Oeꨞ-=R{tw1dY=Fzuy۝Jڧ<_'jLMx)TTM ~ ]fQګlHʺrוkE|mnf`o&PqRjt ;>!NFt]BJԛTI4M3I0ғ֮pwwEt1% Tuyo^ż'r~Blh|@>F]21L0ciJf1[@Ӂ;9?>v!-L.cyE4i׿+.O)Qx:^Aaz ͢xӑNo];p"\*qUN޳wǶ֧D5OE҆;x&R7(K> (""t74UQN;xyϽ&Cʗ"* xvt濰rf|4w&{ q]zSM9Wb0BBGkZ"<MhwXX(לg=Az/H? q|9)xK:rkIM8h,Q}M YB>r};>d|p.Z !H7L罍le}chOu9ZuPJ{C:I)J;BtEFQeڧ*26w1R_փ_ѽBŞJ4{zkۼE/rmZ).b̴]+6rS&P+ qR+jvWIjEK.o5럱3:y68}kWqlH7yItUyIk,KiNҏ[-23uN6㨅zqz`'%ql)`qJ_c0=?.Bı<XͤpoϾ0eH9)WZ.=!ҡ^9Y {0r[%mpؓ xWGEd<}+z 3ψW彝?\&MD@4z@\:xIƬqLm~ه]xguF -ɢ50@{fJ/K# y;e?k6%!yW p  iEά)H* ^@/_pq3h% *R?5m>(|LHϬA#J") 9#n^g%>ݧtN/d`h ZE6tT#KOw`ұ4rb-?m9; .KKOzA5{Xh2 s<2n;4Z9+K׊)ʹ]-խN60Gc:"kӋ#Go\{sx"X͔0q1+qAlr凡ӊ';F3{ FOsrr vLɓ历+CCO itrrI ybJӢd<] u2ob&}9M1v.E9Z-V ZŅz|{i }Zg^E*eR㼥kAZLTX^Zj-Dۥ/m )6uIlv/71Qs%^mPPı ?XٓW셟p{6Oa/Qt>ee\и ;ɦhվX}26BڔY4%Qn0[Eu ?bۢOYSGd@VAMQ[o) (XheQqEV-ׇΆyhGCdi m4TMىZ~`v Vp+)J?o&F蟬7LD"SMZrc۵`*[XGc'z6_1hZV յsµb+61Awҭ֐#2& 4FLlMܤ"GuAh6@"b[u³Fjr`5'5:,)4z6ūF,%ͺL1&piAi3*f=6vL 0Kĺ vSpv7V+ҸiJj(`L 0&P##'jtjJؓEĿÉJ{18戓~N3"h_\eL 0&`.- 0&`L *#W ڣ/Z6fb]s r>}P##a9FN~-0X%ǐz|sskZW%4!%-iRjrkhXl^zf+'E~>ʩŠ=Ur0m,ږ\%aIi[;roG#0zoPGRk%y[ZWLO49徟05u9z=⚘<Ⅾ-k<+fUci{̘1i|K&tKOOϖwz@u$Ă45'2h6)]gԿJκ$ >&ۛ'Df,db$M$H=QÑ;3%DtE|p=|A<#vLgN98obþKŸϬ',T9ʨUf)0LEOsƬD6ZbID|yr'6`a!Rr޿|j-|ʫ W̒LZ554~|1w!:"n*{ô׬b9KHƠ)dTqK.ĀQFOy ,۱f׿L*A+9c9~^f%GԙG/jح[@ɣ'%7aGOU>|~,Z#R/[q00;R&:zE(N*X&&"[h*Nߋ7=/ 䫅E՜-&1ӧ%GuF>99E?K:13yZ' P/9yv8o|!Bc yx꣖%r+PT-̠ 9!4mu*W ;u f K]^gE0N'%NNFf4t!˷aƓ ʼn?ן1&}ZԁCU5ueWgiB}ʳN=}]> w5'u-b\by?c"Ѹqc4-tNxgȰcJ,菄c"Ԕ+ƞyw dV_a4jaSdPn͊Œ#{!Q[JI:{]L1զIapL'Μ;.9gO7hK8C9yߡ*D5n Zys9jP3nz4EK LQ \0N"d4׏`y8m'ɺМP +&Gmx1Ԯohbz$:&I<:h&|n4yH B)\Ӹ8ۧ9L_|rcauRz[5[^JkJ/v$7se#-6bt&dHd' nP$+~QJ#vgu^:F0k+ 4 Y+{ǭe+-JJ[OٌTrX^PeE7c C۔ 3]h/CΩPuj +W} I1<2ҳG82^?|@ѥ>JO4w+>πpEŁ:`O͆w&Maw2p ZAD:1dd:Xݕ@&]YhVN;\.{؝ L#+cTyH\_j-`m0ağq+X Dzn&|jyAirDx u4WڑBܽTj£ay Q~ %ƀҔdPKGlZ|&zJ~cd8TሞIĨhU}T:R[x @']k4%,< m?qN&tkmPO mWka30YAJy4ȭA~9n̖%J^c"fD3l"F8ryH!?F٪хjM/MM']P>)r_:fAv!VzPfSLB8~,P#byB M ;5m{ܮ٪m2m,mlmywpNv.GM!Jʷs3h 4 ^;#:?%e+~QjPsB0gzxt͂㻰z+t8C/ jfz Go-9 #t r3VLl&Xq#nYY!gtR>Yk1xB.>[%Ni*+7&7c7Щ^xL>m>Ę>dT/~\'= t|=4NIy?ƒx֩?H8EVXS o,ibw{gmGȬp. >w#'-"+~X*^.> *b/O8ӹ_~2U7Ym]W_ܴa|zr%+yYy+f[L\B(YhШ45؄f$:>Ae7I;~g΍\:q"CqpLtC W1g%9(5A=8up>WqyPrrϹ>Q={ԕY_^CehpKـ SbrkBx,| *\jx M?bd=+MĺS%ʆID2R.ByǗRZ5wޣ f١mn^:SΝ;!}wuywmv.R/oY2=9)e~uc,OK |uĘk|8T cbif$1ln=i~2J'oM'yTĕ&d0K?J_a/۱} 4 =wUW|?ZhєLB`X;(ߊLzN1W '@p_]1˧[V4l"}U)ea^Iy8ˁѯ n X-6GC7MD▋ ŤM3:`G[F?K(/k xGG-"kYDǭ;{mcܬp6/oAFR}XUob؉$zdJ+G906 O?GrЪ~CpmC$F*_$u4F}]:@}2 IDAT}"On6V@}Wô~#IoДnGF<d`ӃڽvdzTJ|@cLVfbN켱bgעxRZfVaY9"ЎJ:& DW4ytDg-Z=cƺciT>۠{L9 ;PuGj'Sx"LLjO(QPUg ~@a ӥ+8{9ōP0^Jֻ^I\D!W#ЦMGYϺ9њFm¸jOt%PD# )|̺\ yk^2ŲBsmYuO͓8=h(k:@Tx8~<1WWAS};Щ!f)gWWPo`vLjzemeG4e+HFѱ4DQ+"i^肻ttt,D`/1'h.Ȼ#i(rպ8JMWΫws Kz&%}nuY{O@TG-]&US2* MARdic 'wS-Ug Ld,K/*!֍~585,3OO}y7ih̊i\^o\wȹdo>|] ##{I1PZ=J\Z|g2@~1C >Z:rytl>(}*m}L FKF`h~{{^/HSeU'q?Ϗ8iO*>\_c?0m 毯h1ĉ }Rfarޟ'Los 0A&3YQ^)2S)bؚ-FhD ][Zԁ[8 #.xxWXSRd35;Fj+Q~FNʜ9ܺK?w40Wk0K[ W.ڧ5FoB^%ɾK s[1~M=턞OrX89H(=LMNaU\E ◰B3C'ape\B0IEk^D^ϒUxd@ &V,s2#|\7ķMewB//!E]='<=.~'ѢE3ԣ\DZ99R'{Xp'7&U36NxME<Ƕ}"; HyvE1[gte\8.͚{/{"ݴ(iqf1;75u87筠Ī|Zql^X&􉙀έ& |Oٚ({È#v٨W(@4 2zeO@ryaL\5\KV)e+6_[ ZW ? p,1kJYv  tصEV{yblNExq$boA8@0Zy;3'[h Iݤ7}-P=SqMbhۚؑ,הSHJB_©!a8/xyQoN@BqsKA_=,ue V\_t P[\AG߿!*(^V!ѓ7L,5ֳ6x\/eOA|$Ŗo#CWлH'*i9ԇN/V~(@Koݴ +4zM!`쨑H#&[#rLc8uM#mT  ;CD<uh^jjaBsp#rҏEeϏ ]__U㈶]mݛF)DN݆!#/6]RbP~ȩH$EOAI3Soh{Hx .xf݇(Ӏ>L%{5xD!q67p:4u:e'<8Y#R|ݮ^e&8:=2gẒ{SYyolyD_O8Il߾]:~饗t~PW<~ű&8ʱrUҋM J8V6+{⊽x=?9Fq $ :aLmӔVOF|`s赥}bG ==]L -DSX,#ӸFd>6^ޘb<@ qRy(^ =rl4z՘?g`LptsÇC[%բqC C^,:ԄHY:ӧEJJϋ߃ؐlGz9w E\rtj5"k`L 081ױAmtE'w"l`c4n,yF +>qCxq61–D68SfOx /*>1hQ^Y?l!M?9m6ɝq'(< *r̥EO|`5@ nyAI#ԆX(381ӹ=Ǝb{02b1443hs}OM+HNDTWLE@l"L<Ȗ@&d޽죸#8I2dH 8qq$>k.AH>U䨥VO` 0&PS d#SEF,Z?L邿[CJ^MV㖤˥nxvlpJՄ.X}TZY_Gk5^uaN qRkxM{ wfOCpkW$O}Ff7ޚMӾ'"tҔ{~>V[~~:PM2vI2:K?C();k>=q97Fѕ4U䨥yKziGL 0I*:aWawR:)Ż;+ӁbㄕqVώ~Gȼߵ>ݭf",Ɔ}bB\ð~0HG˥]լ_aB *9ۣp3:g&k9X<8y4¥_ɓK7 //c>cΥ9OG<<Ю]K'Bo4խquҽ[px )L1h$??dI&.]ف F֮:bFZ2ʑi=P3&j.FpWi+.RkpN;b]y>|5[K4[_߅_#Q)S`͸plYߨ'l2 )yepd!yjm8끾sh7x%n?BB*m`&$ŇUZ!Bdb%Jj>*53sr;s)5y~}Ν{sEүؾFk y,_A8s`=!⫫fu|D9X~/o$.̩Sd( NAR(s2VA|ЪuKo-A=tD>t蔳L 0_YKWOe~J30kz K%ǀaq4odJGKɽ0!#^$n8|@-m=4ꃤ`?4i}JrM+7nc7{%[˿qnnFDa>'mܼKE]EɱU*8oF:ah?./ͮ\T/Z%G1wREX١0;:ᅉoyr\eյm+S2F8 K4׻wcģ7 pa'`Ul`UhS0kr$^(u¾Ǡc4aTd$:͑ +_ė Ɉ[oY)/LzD'Ar)Ew8NZFOz>lBhV1%w+̈)L w6xm.–NhjYx#gK( Oc-9ɉvXjxxMS%yͲxi2h3C=0yi(ȟ$hlŬ3ۗ!!r2鱖C_&f\Zc1=33:Mߛ0 t zr Ѧi4wL 0jMV IDATp;mi O 4?CNZ-ǧB0w+gp4U#N>vH4/_ʹ|z0˛#in&r87Ѳ}zͅ’/p84t~Eu9;6[23B;u-}7 G=B T|nLcܷ7,mBf6ۨ-Kjӫ^)Sɔ:o[44ߟ.ۄțU#[ l|Z𲮚J)iH11⦟nʨ:0NTe:mH+FۘHJZ-R(jQ R4p4`Lу9ɡAny%L(Egs:W}d"}ۋC3r n=~PG"S[3JqG񦇞[O9X>m0%GRHnúfz-:ZhmP6Rn\ehrZ6RL8%f"Ʒ KyGO]7<7\&7žqm8PocRt@{HN"ʬ.fu9F> dJvr0/%xԿ 6+*qD#Pa[!{a'[}  k00tM4T bi#`"hi^ʁپA3r2UQ Ȿz<z˘((ZIO(5wh7xl>Ytύ}\!Y쵻C< a_|Ab+׌Ts1vC4UefhVʛ"|zu-kʼhV:|4L Gl~d%,ܿ_(eP{eFěo"^}ĉ&)ib>%M+y{%_F 3*'2geeIMt`^^^93&o^iDS/O0ܾt׽^z]呧UV['ZbL0\hɖӦ">8934oܠ]u^6jI0D+uS .5ej l?Gd%a&[ 6,6 :д*u-GjʴInSjS5i"FD8P8΅dܨ('֭[Æ s$ xM*CٸM̕)yc\ɫ{M8 J8V6+{򊽈AJCJ,2&`.uꡁccrUW[9:h+5+l2"bC0Qy_G8;Y>嘈ZgvCNL9&B TMf,AhCMM%q/I@.p`L 0& W:޾Z?ځF'2 &P.x`L 0&P!rei~rt&PMI5i6 0&`Վ;#P;'U0&`Lr ѯvܭjQcSp-V]ƾ[?~#O.]bI3aiXp-N?y<3A|X sRcL 0&C]DjF%9$Ez=Xu 6"LLoiZdS|?&(V%:Eј4q$~5Y)x_c3'5P&`L hޗ_ox-&D_! Pͺaax}; cP4F1Zݻÿ IR\ܨқhǮ$|{YCskY:#vn>MBn =O69#: :w<c{kp]< p|o ImW$8BޝJ䞠kgܽQBl`L 0&po'h6z<_c9&u{<^N3 (.!=q~lemBƹ .f[иQ/QIrz!jdox;?yYl`1 $sHp܃""= rw"[Ye>0ӟ+޽i<{G$| ؝,Ak[9} jvNjZL 0&A#JƵo)G;MkP.{8CεXƵ`^޽V!riiFM1PxFz|D˳˸Iz@2@t"Ioi2j!i*tJy~s00$*[xJBP(F5`L 0 vINa{ˤ8bzZIyr4B@bV'ixʏb}) gGy-j$͔)ݦYWxP|bHbd֏;m+ $HoJv]}]Ύ1w5;'5D&`L 8JgA wY)l*{?N'D|$ƆzKg(0кZйn%Tlb*LBF0nCv]JϜ;'H9ƭ毑#D)g x6x+"BuՔb;`L 0&Gӫ# cs2[nGtS*^peeLxT r:,ޮ%9\k=[7NmǯޝB|tRq8&K16ڡSkvNʁ+3'zV`L 0 $LlZ D>ݲ/ף 4 BX40A{s3e|X~4;1ȧqqVڨ#fHj,GEtJ(ͦ$[e=:`PK*r6€Ѳ2]?)K"-qP0ˠ 7D\{MI&cѷ4qQ<~s*"g tȜ啩ӊ`L &F{%w'k" wnf3j{ȝ;4;A2Q)MBV GԻ۴戨-k" 8i˒6GEE9]v֭RaÆ9]oRĪ91W%6*yc\ɯ{M8 J8V6+{򊽈AJCgNT@ 0&`51.=L}j;3jy:Չx^K>$ձ_]`L 0& s7`L 0& &`L 0&vNE3L 0&*>ϭr`L 7V-G7/ǕIʤ˲`L ă7o-`LzzdXa9 7>W 0&~6l˗/CRgQ~͵s1tΞ=+rgJ*᪤ͺ`L T!zA8('O׫P3b՟76jn-Iuk 0&@h߾=4hӧO_~3&b)1aǤzvNgUL 0&*@p &*?sRpY4`L 0&``qV 0&`L 0J$I%eL 0&`L 8NYqN&`L 0&*;'E3&`L 0&8vNg9`L 0&DT"\`L 0&wNgU%9D+aL 0&`ՍϜTa{`L 0&oϜT f9L 0&<+W*oM3'5^&`L 0&+%3'҆կV v$mwf+ ? >nVq4m3I, "x{^Z|X^@c> {!Pcpo /F =%瑶f-ṽϓx(6RWZN= Pf́~h/..{=bBQZyewOE4h= FOw6Fʚ,\*<bXޭ304pi4)_5%6jۆ܂[p{i[l?|$;bG!ȧJ*~Tj^]yL 2VOC_{ AblS} W?] 3xY V|="&6uo526䝲=Ȟ[ U:*ie`1YB\+vLuY@? Y@#ܟ4h-tsZpc[cZ`Z_b!~/F][anj"$xRIzG/ؗƽ>eC.GL)BWê{J¬k͙+FyVw.}uYt:_-K2wҪxFy#LKݪ[Je tYIrhGƽ8Vo<ʱR^6((iXDr)J+"N{(qr1#;phرI dIp4<\-o5D*PЕStd'9&䌜‚iV.?7(6m,ٳZDk{t Z0\Ůuƺs:aKrq-,ud~h{MTf 'E۰DJ ˉV>=1k INNkX BA&12U?v=14^ba"j!HɓbQtZ6GD vY WPR767`"50j~ EU0oPpnT|Ą vXH f!>JG\ Fںvsuq?Л-n"Zea%CN)i57E_ -)ݻwGOf7GcRZS4p 1ީy tʥn?;H1 ]`PW_E2M%ٹؽ.kF <هpSbD]7: a+5ii`wBɭ'z?m@lOBvW"}cip6j6&h;s-Vl~OG<=g1"&p{<[fqv"~l0;7eWJ#UѮݻWia'VOl)51E}qTTDTyAܪuߦeyljۥHR%A8XdrA)U>\R2Rp.tD6R3CWOR;5ݽGCC1vdgOt[7m+i2dwo5Zr5{[yYK9:᠘̡A]qܨXSWѫ^Q]p",, pltm$[&N!{%FDD ?]"ˢdpH3铰vt l[$xIhMrǽkI D1qsgQT #fvZ6;$5b %Nv]BB\ IK\:6&"Xi.GŃ~VѲm@de)BnV)F?-[}P&& ww:,<%tovQ3(ZcU?ם넯yi|pHEi (ĺqø>gRKeMA.A\E9Ksg{8ٔI7aAm.B汋^])q*ezVCJ΃`WCҳplF.v#yY'7 zXuYU @-cĊw1/ gYѾk8cgоe<1t2%ggY:QOcW5/ƾ/'$IUҮqB46DGԘ džbДĒWO.nQM"<:t}ldIx%ܼrN%顏!=hH|8>hҳ>d<ٛg/YӦ!eZf4ƖN=lK%Dx4ʤ,cO1ap%"TWl,cN!u)el);q+`RB7G9=h13H}`j8*C&wW.T-:@l;u 'N¹sXJci;Cqȷ0ö1n2sոq; رhG,A܆lZie锜 T):c6֩CmOM:{F"F[8I6`wӚQZB(a_AYp8/ ^zuEءsAG216xE—K^B|}>Rw0o?r~V8R׈nJ3#uSFzv:bIrMCSr'gaHJZ+RAow^ c$GtSձ\].ɡOw77J q\op99bRBoO#mLi;0B,q.o0qun3_K"6tbF~=ccl$'r eVF[;eKQe"#uJ*ax]h@ ̉!w`(OywO7#gȑyWI,T$Wzw_텫!qp'd ~cֱF0`χ)~ ^;_^hժ+OGHz:? 囎̣y3Tzѻx:,;0]iiZpBy)8_Ri ?0OOO\V.=Ug$t%DFF2miXsit~Q2VcdSVwt(HGiL^Zi9#SćBcY1v0yiZ!,yFΦu6)Gczx:66^,^{qܪp9+J߼i7^c4{H!mhwWO0j>n@V]{֥@[:Xt'mm֖;yzFbRL ƌALL8Zy\Zaq}NҋbGG!* 7󕗏휌.JtAvӓ$CF!}6dS131?) WEu3otY&gclKդd1LK_R'ϕ~gcό8!39;SXm]$Ysz0=ԿoG3ͥNR)|TYZvˡew8{,@ˮCs_'}S>ڏBr|O}{ѭ %\}Жf+3T5x :;:Ȱ#K$ӫ< Jtzwe(#r|05ncH8b]k=4 MIk'+'ײ@fH) :O5ں*KSK6 =ڽ1ǯ<I!?.P*'S!Bt `qi(R%GGgaVCh=SXA*ěթ\|\ZҬs;i󎺅i/.TL18eMiQDij240]Ko vi56@z^d4HܳvM+cھ3MGDGq#%!uGR9V~ZyU4u[$}^3H]%`d/ƶt ˟ߵ'#p GBJOObUe9\\M~o)Q$lvO`Ȑ!\W$ }k @,߲ u| F0x?7e __iE^ogOQG5*dEQ#m;e;e84ANZ[9 %(ʻx6m9%kө{ӭ)r^5C.S k (NZoGJBp%EK˔L^uUֳ^Tm@/\.%1wlc!{6iƒ.rQ{eTy.&qF4jٰhm֩uLmܻ =Zlc£4Ɵ,oS#6?Fc\<Ѩlkݡ VcqXѷ!I;i$[vF #VKsD(˞~.aeO!pN#xcePrr"UXWn=;. F-ȘSu5oK+Y#h) c"MeL?tB k{Uskiƺzzi? СCsR]DoB:.J.U>윔_n\M:~P>rCHO4.g@҇\oE /<Ь곚}_AܔS#G[܅ TfTQRe᳔M(û -:ٮ PUY(;N:[qփK/mԨwA&nx1st|OUm5h~v8To!zmUdfU뫢j&`>~.py[.jrr MYsRZ jE/WCjkkT5X&`L Έx=77OB|$IMhV׆}<#jBJy<(.LQ*62&`LA6˔wrgԯ"~pMhȻ77>uC%8Y)/?(yqo,ԄVd`L 0&`|O_Y1;R|ߞǥ;t|2N^TC &`L 0&Pf誰`ٖ7\.1C!kލqp8˳'U 0&`L2IePhB \+Wp}yMEeyL 0&`L I.::pçC6x Y &`L 0&+ 3'5>Ԁ,<Ԭ>5vLjH뱙L 0&`G(U<7aUv63H46 0&`L TvN*cg@{&ϚTtV`L 0&PxYWUҮd]?N:3&`L 0!Ipr1;vrݬ 0&`L T^U+IFYK3&1ٳe8#`L 0&N9Neܸq>eL 0&`^۶\3&`L 0&PI5k,ǗrU3&`L 0&P.`OX,#gۭbj~,=cbcѣbdjJrc̼hzij`wzl }{a؈px۫ 9ؼa2/?m5,}}CбrtuPب4S&gI÷W! LruՒHz{--~ B`N{6Aڇbg!\.<`Ș18304p4]kH7EKlԜ+@ ׏m?h%O\5+߁ .XYKw2|̤Ix'YN/]Ud`/cl2H_JK'?Sۮ[n/M+@>;Oy9\MGTTr\?%G_(q 9R~ >0U$,gsbGCɆcX=)󭀧8BV]r DBNOΉx_/M-fL쀗 qS6c4gLEv,k'HgKNLlԹ8:g*b t^AbT'Ȑ?e$ك=zezuTʼ/Ax$hoq`[rl¸:'B-ce,x#fɫipP 4&ɂI 5m9Wny?Dg)x5oglw&-sgť*G?rjϏ᜔=oM]A^ϓs⤼_5ʹ]Wn]Ή/%uT.V~윔a i,/-1(ƚ8G( u\\ٿErLՋ>'8Prf7&GР_OK3&j5)9&dH'2ԽZ !ٸ&{θ!m qlA\q?۾ ;[/zC,*lMW<)Sip쇄%.%Hw S]S$oR{uNa59|\|"޳g%'(웋ƅzCLŸ/c`J*zK&:zXV/{WfTQ枵ח|dKI\)j8۝ɫk&.ЯThvϖr Yx_t|ͤdOLZiT۰oݺv-ٶani/?kIiJ=ҪO*ee&ϜݯK %VUڌ 3ѨQ#4-fvS#JIGDP]A س- g>3kOޙI'ŽeTNR>$o*V7*]/MY+( -v8oY))}I0uz+kF <rtu܄˹եo5AOUA/g\жsw<={$D?ݟ@-J_`~S'H}Ƥʡ4OF#v1;DII-r0í"Q]uuC&1ͭSq1g- 45xp_AzL5QHڼY,b@| hյXFg4v~">KFC{L9'}{/*jͰ&E%he/:(&f C8R̮y5ǸCiLטF"fQ~]:1?MjƶFsP-#!Sp Zf*%Ox_LLCʢr[~P 5uf"/>wN^J٦Mxޗf=?\p/Rp* 8r]Q޾1_ɶf-wWM|۔mkoY6⣤ٲ28.|9 Cwe`h?M-LKΥd 9ҷeo^c?40%BKN'`Vi1K٢'֌ /ZYgXߏө,Ҫ0V/MWH0(V1lvdE ,3"ސ3io4|a ԈnHӲ[ˁ8Z( $L ۻ/-ٕȹv 7i@K)6gtu ģ$L/ s{`L~On5[8LѾ(}nպ/Ҳ"ͬieV$ O&*n Fϡ^DK,MGc֌K.R_WMׯ7SM2vmV_?(M؜ Զt#etz-$!-/8JKu<0FqHcH?ХlT=В͸PX^e'$Y#hϒKR?L/RA?thadP73V@פpyG0ohkOV}^ےߡn{~>6C-d۱Cj0E9n  ֬ۯ浴c$v9vMR Z;ȗi =OkKFLlYurg{K˱4>Ԗf[xoZ8:zwbvjuk(/q)Q<$襙e?Du0@" l;L: YM2IGtǬYK9:~!1긹,k:uuP~zIʪTܕ-iXr=hZR FY=wSHR0]5JZGuĂ3TyEAdN;dCm?OcR.È rZoDƯ$5,g\_ib\O\Jch1{b,|^tt`1sby&lۀXڵH°B;KZP=۷o7n`nJ]ֶwڊ{ëC͸gbzviPJ)7wf{(-h<:y4KEZ$wN{w;`_yi|I*(S@Jč\c$=Y}./btݐ7e]η\⿍]g Ppa)X^K׿3iHL;UcA#"w]<Тm ZZ*J~+?7{g^j(Pϸ\Hjχ]6&sV*a&۲X^l]gK%@rE<5 J0OtM3kᣵnfjMjcQ⟑\}`&ߔzmR&JىÜ-d'.v]tAX%$$de*}co3zR+Q sRz'T4&5.PF1.3GҥRz6FnFK&~3vݽ#HnW#FCڿ/9KA[|qY{{y9ك/gejz:%¯E/ltLS&:twhO!8C{Rު5SwӪE[ /+J&,JD8~L=hض3xF~.4i/IH%׿a]ؚqc- Lx?퍁>"ntWWy+0R^)n=;r|k 5- h{ޢ7^[1FF}<e ln `81qTZ,8+1qP({aQOrT! CyHɫ;dܽt`|ӧrr-,e 2]+1JWړf蔠 |` E3] *׫:J`&qi޶t( {m0iw:,y`s9/Of{X8vMd}-T Ւ;'ղY(kB]Ċ&-?||Wol:vD &`8 lѶ-ۢEx.&鵭_OޣOK걓G; 4CPz:^:㿧'48|KcoқLO~OZD\K.ZtȹChbMݻ{wƁc¥+iN,zH .Iz?-G+!VwtUΦln,CawތėG/ޝV2!r.yF[`,)IHa/G›893}ۊD'[yΨGgWuCZbS݆hXy钻!cVwzǚ#{**ζZ[Jc=cF !*'3=}2ғ0K:UyoЁ>2f`ֲ$z@'1붗(g:^3c'+y7cy^m,Yfա4Lq6mVҠVhE^㕳<FHW:)e˘F/ HiV)i{՞JYCNB$ OE.0>۹ThE]DE^}]lRcLs;xzۤSelPzNA-jv԰Ҳq9*QJ[ZR3u|XsRM$:5:"J+-Cy szj:xwBt^`Uv]dZ]&Hkg|WWw8NZE]`{4m\qK(/Πm-K= ѩ7¦Fܚ}&w+ʵx(LXC%`` CXDl9A*9::v5qXMIw [D]GaVai=K|;r<}]͘2'I-hxͭo4K7 Y;]k -/_M#;7xYy0 -{_qxo 7#2,SAc;#uxV8SWy ?Eo[6>r&ty.SN$vjo>9vt4= >Fv6A*oE/&&J+2^^j֔I7/OrzB]= #-grf?k۬䧶5.m̾4g6'e\RADT? E0uxZߵ4iY# cuW7kK^}՟1{oK 4COMڬp6+:g^T4NUrWѣMO&kkbiP0ˠ#7>W^keL{r"^+y{%_F 3*'2geeryyy*G6fCI1iySÆLNDڒwf2$duie8!e? uTᄪg5:UţA֔SIs󀇛ATENU҂9^/6|a]Ҳk ()51cRACORY+vºuى*K46o-m7P~r<,ȩe^} }4rP3ׯӅԅ^5!Ϫo2ąހ׭ңFC?z z uP.z%X(8b@/Bζ4glն elYqkZ6$_^bEnݺU6luIY}{l܋c&&<ʱrUʋ&%M+S=EIy^ĉރ|%NΡ_h>6Zo[Z> #:~A8=)Nf{oUYyˉDEV{t9"[SQryeOp0PPa$1Vl}6LnHZ*ZWihVXYN h2#. {]Vz-ѷJ1£YkZLKh%4^c""K/$R3@Nζsu붅ejE2sֳQ.%8(בkiYs'I3/f2ѱn2S-cW\BqaH ?قkHX9φȠׇMcj{ S'tA5ε:#3 ݅-wwxuꍈ?u*B5`IIjesR˩Q4og>]/oz)\I`L5hYq`UEE"ch* TV*R!Pc!Kk ~YcgC`L 0&9ѣS]~8MNލ~1;m sGl`L 0&(9)-8pz x^x!g7nDᅪ51&`L 0 IePppqp cZ!o W`L 0&@`ʑAa?LuNZE21z#N.L.`L 0&vNY4~:u nKwM߇+pf)dL 0&`5?_# h3S^Ĺq拸KjD L 0&` ̉}F"[PqWi0 B!;&բm&`L 0!3'ñҥ~_e}]%cGgJW `L 0&@`礊@[My(Jx֤HY`L 0&@"˺W{C=OKfL 0&`vN~)W8&AwKfqL 0&`Lj𲮪\&-?p91c"pF&`L 0&PsRZCeKTT*O`L 0&/-׌ 0&`L (6qz9xm!hDyS(o5aʪNGe&ziLN!q޿pٽ֩m|nРUvI绸 ^ u/A!`k!u򟖜Fʚ,\*<bXޭlN=>6l6&:W]vQn߾G7HQ9 =R3G%ؾ6Q2V~}W}5uKX'#a]c@$p}mdfi[-&}bm^|SD]160vy؟eS]_!K-͔;׬X Y*H-MbJ}e!&kitYe/gn߷tS+~ce۲.1e' [b+x/99mb|+ƹb+ƽb+b<,b|,b,b,b<-b|-b-hp1r1>t1^v1~x1z1|1~1W|7P|)Ml&{~s<x؁;!FY}!Ugިkam('iXir'/<%w`{'9,^Y6P+A!Z}(<>*PЕStd'H 6‚iV.y?7S K(v݉}X LpԂtګC/MmԀ*)N{3wo)!kqf*#`c4 9=61YU{wjWw[C/L>y< o!>M$N ѵLpˀdxd>t3[2,l]9ctť@= ̡*m.mhB}SIS_L6:yK*=T<ȴ;Ooh-aL~N9D*M/K{TuXoS3hۦXJ~ia+ #P7Ba(NͨS5N'~Tx.&J|"1fNq nSM].-JM/J^)?L-MK̖LW}.iMgIyyR=~k%6I-Z>^^hs9CQQR{B>EǦ+3Y.Ǵh| +?T1(!2(rS#qD{jXVDv#(6*R>VKcʬِoW᪡vvy[yE]<{hWTO}WeOEG~Qp}BBeXXZ(jG* \./% -%4(hb E}O- ʲD?Iǧh|T2鱺Mf%dN^֧S:5(鈲Z6g|ўdq >ҲAȤShSs"5Z&" E^L}yEk.7.)3S>fX]mKIТrRܐҙTD;>T]XtDhH{mdYLgyEf/]k"tY*hKŢ\O+9$S8+}AH==o YcРD7ż8АSьfjv0[&ZkvrZ{ކOFhֲEn4,7 5_* gE+Qojiٜ4wjޝ  ,3k  mJQi)Ė̈'/?l[KWEKc30;]F._< o38+)fT:ZLOAO` Ep3aRܩ:N3uy6)p9rŠ[H?rRcVpt![D8pV12_+|FSb Uf.Z^2{(O${(*a{Q{3H9WoƇt)OHZ:_ʰM%V#fNˈe-cg@N1a;kd"" ҂.q$7FvRml)cr9f}~tn!N7Ej0KK?m˘}| q IwR:j8cim0*#3U)^>2U ^UZBƁT_n@( m*58o6,_Klv6_Yܹvъ-l " j & Gn N}`1 >]\hSoKi^3. nr_7%SHn_CX@gS.\1yb0n>-ѠQ[!w2p(b૞tR9q=+0q89| ņT[;d6Rpti fcgш'R,! ͤhdVzMYnkOy% Vk};H6ɇz ^3mMQ2Xx\gqRyR~4#G!_l+?݋sp?Ȣ:)RUöd>*;'UboB{.eКɸ6i3DT\<{gΜŋnRk>9; fvqȷu+8xnx?qH~|\L%9Pɱ,DfZO=65/rbO(,t놶MߝY a$ET? L_QIeA7Izuemf_A#!^H {zH+#7K$퇡3>" IjI+,*RB%MUb{A : u}MrE6jo}UGj;$~h evDua*6ܞG_f!r'Lh_tnk1*Xa[3aR1pfď7쪪91W6#XmO-bMwƦR]QT.6ҏ6Рx67wO1G7N'mLR7bN卶\9WU҇F7FYf}kIS &>Kuc%{EG_|C}EEvXa*mKlcnNW]*,6FXn/N_+o4V gwINEͽ J*k&U*G6іc mP7r-CLJ}V:-iņy*m;[;U(J5WUTӾ2 ,{u6Uز@v eVvVW]߄VTq}5C|QQ=5mcVBcʵȰsy4~:Ə_x@Oobi77gm߹티ޟ /{e"}]:aБѭtʣdS7iSjyC-2:\^Ja^e)|S)7סnTnheBz+;[z%CzOB.G Zԇ&dm#vb:?D>gζЖ$t5Ϻ̮mi6~K^j _nώ_v{k>w+F@x=κ JmJ\[{6 +V_o B,YرcTa%H4,iO_[ĥJմJGp2 <󴈋 hEPG1)ɔVa9pr7Eb5k+bũH,YIrP,x0əh#Pޚ<2Gx4.U::Y.-Er7ng쫣m*Չ)m-iE?[WC_gKT'[J5~ 6+32,ysp=;(|.NoQbowLD%[8+ {:+ӑգ+sDa*1TƱZ%ЦF|h4ZFr~N7s= f #P|pC7h4lmPhO.M00ti62(:0@BJyO4oūAgׯoګT>ǁ`-4툐)"@ÎAX@?#C@Pexo6ƝJkUr~]egEF`F`=xDRԟm_Mx#'5m솋+#0#0#P:xtUll/?\Yy:\Ex! > *V0#0#<9y;øW\F/⹸!>FSN.2CF`F`F`!/@?๤HN Ës%}FO'WaF`F`*TN<gGƕ{Grĵ(q`F`F`:!JWaxviS_gsuWqtUd%F`F`#3'1ξHsNH)~Ta%F`F`9)8M U8_o8/`0#0#TTe}w+\gM )3`F`F\ePj֬Y&\`F`FxXs/g1-ڴiSΜ#0#0#P1𲮊TR~?zbD8&]vu2#0#0 vN*SkX2~xN2#0#0.m[`F`FRI%k#GT2XF`F`Fb0#0#0x@]Y"Y#0#Pظq#:uTdFlIڌ#0#0#PNI9Y 9v h \" p.N% r?6|ڸOM.c~;/ -{^5C[kH޸]F}n>*'/[n9hZ|4d^; _~5j0.kk $3qL&>:͗'|Wf&m'8jI:c Έ@jNC&feFDo1"s""= zƣ[?D#1A䜘ܢ6 spbNF`Ka.[vT   pJ#Ȭ: im:'ذRƯ$:xl$E7bٜ *=v)6){+ד_z|+i<[:0C Ftl$A^@HI9_xaz e6l荟YXdV;[$39`;xMmֺ3:3SMkeT":bpWg*G,kwf[ [u`hfRwR (Urv1"m_ (Pp>o\:n_̌LjȄtLkmѤ81s}k6ⓗ%9&ʣ;DSSo $>¥̰3=; YYzcB$y'S$\VEN?M/O]L2FjJhxOBWPM>f S8?-* j-uSϫ:PL)F/cxG q8<~y7rf~|_O?LJ=iRz|+uIo°V32?/* NbF^}gӷc2q;d)G¢a]2uZ ]56{safuB}Y3ұ"yn+ E(f&z&А~B$ǦLW+,Xw\ 7ƾ9fFkX|G@|2[3m 1ʥYk^U7i6ql}xN\;O2$|4|ms0Vx1蘈Z7CIZD0ۨD,Rҏ$G|͔hיӊ 8GEqZ~ܡ7~V)sз}"fϞ(1w/SuAȑ(Yn[[>dRK`"viN Q,r_G@}a3,QQ¾~S B1 #(7]PZ S3->UѮ3& HO`#WVطd<"'.+Cqip:qт@̂ZW{45EOݩBUvo4p5jqb-Uqd36̉+4@{2e n-Evr4]`=zLNiž -<2+Ju?]nTJ23v uCe$RIe`r2 )1nzĝKх94~ap6,L#T|ۘDF /[j2E,V=ᇫ$,"0wwdbT-5mxȻ \~u?O1Lб)y){nM[o.C Zb,Pt'$L&16qfq^9G;j41pT?3)rKk!m0LSQFq>&fJs\hdO\عAN흦ۇ&4?["6˙8Tb`1Ҡ~~EyB >3oׇn9_W3 qm/:=5߁ՂWV5k N<覙iDlayסUj2"](v ֤瑵#^= a e:6e1kpa;}zz) @L:^L+"d2wmbehCY jN^x% vm'I93_1;M^ߎ1گ9gt=,؎23ߖI݁#r^DuҸe>䎯ˎPI]EK_vm=h {g d4i/Q\Z x.=_ rTrm~'|" ڗN @v[1R[jUs'i6$2+6ТuylS o?_\ W mZ|Tíkȸ&ޔO P,˔9.AH?Gojѱ+1sгC̾&R,D֧#mN h&ڻ糑}C=@} fy+@Ç[ BEH؊tkFQR.my)񤍲c fQ˝Tw,ь3V4J6U7(NǮ]ap )z4.4/Mzj|m3 .V%Kcܳ?">jK~Y3  1 *8L=Y{/  SD˹`POz ހcYC w]\qJK_9duU*5v,| :dDČyy?}K/6ȁGgW+B'_C {u+=Ji)3v &the?=|׶WjQ<=[ 4U_9)9ݟ4!*6ťzcwɸ?r"B1جrY1 ^ޮmk~>!9&s32b3輤`O{ IDATzRh$CJ?i`\jm?.Cz߱7#l;GLôG҉pА|o)Gq`2̫rߐ@*z{S+ C/)Mœƿ}.>o"cכ*ˁ~Ϥ-o4kL1f6},[R_5_Hp۞f}!z} vF3*.Jһ!$LtrT|F{S#¤0M wfN%|G+5C!Œ*+eB.SM ĭߏk9=R7GP$6n-иq;Zz˕:bKyސG̜O<[ZQOr}WڬnM"-qޥ 9yc=&B}ilG_&λi$Qȵ`;ؿ?''0-%+ÊjU+EX^CSmz^GaDaQ0E^߷D{i,c|k}79sis mT<Ȟr?w1yuWδ?, !!a RԸ6_Jo ᴑDŽ9C{안韊G5Oϖ+;w`B_ܬEt,uojj:nɢp 'Xp=$b JB930^e5Щcm+tfyx. Rb1[qLD=K;;S u&T7юC%Z5h2=Emå\qvur h˗Z$[;a:s0/ٟlǙ pfL6,@ ͣ|;$rɁzM{f\YP*:Q|A\6w4d?U"k3]p0"=Тf-<ӃD<(yQO'&}d ?#TgW#rsdІuI2;' xeWG<Ƕc"' HqNu8GkhO[@m{{"ċCu3̽+Xڵct Պ^gb74A-s,,)aF }ǠmG!rAX}/ĿӋ_d&>FcMG6McDjGW&jV4VlF9{> yzvLMvԘ^JSG&f} ?|oh_5R⢥'10cnWVNx]˩`&'n\8ѷ&!bmBppk}jFOZh Ml>esU8|NZrG:{ma+OT,DNRB" Bw_z|0ga77(F(".NxKkXh,#pŦ}QAx\m|HXj4zBHH4ѿ,٫kgUNx З2FTHk|X9MY:ᥱs9$ph.^G`؛ @̲sookz(Kw6 qs&N0bKx)fL4eP0ڼ?IOB^ZV0K/W&47/%MTiRTaȰ֤kst@՚$M(EzHe]%aG?``7> R[daTKusǡLJ̫_%xn1 fi5n}Toi5O~Ք2q"|Wi*wЬ%CeN: >r<==K\/##âރcUY@OhG&Q 2m;k i"Ioߛ)4F%YjRZC;և˹JN`(:9;T//zb*BPVS!ڜmަrE[ڤ(uJKyW."dJEjуfIrrP6ύ2@ۀ99ɨe':3n|vHR1{-;wapuRȽM8jFb >~#aþ~. ե2mއĤBhW-; ֒4FSքQ 'GX/;լYG*ۢ1Q8fciSd׮[W1\;vHÇа]B_[BQjZU닣O8 j?#eI(D>|5OVR8H" am݀Ki-~MnekKΈ9*o?DD'0a:WyԓW2?2g$K7x}ngJUhI֑`F֭[K2@ظQyf9pE-xω2)?*wB{U.o;o$bTUVTf]F`F`"II{(l~ 珣ߦX!^Á`F`F𲮪Ѐ-:צ+[n#.]4E}Y#0#0@UFgNB F9}?^UnCFOl.IUhE֑`F`FI5$32K3) ;&>KaF`FxB`.T Aڒ]r쬙#0#0#P)`R4Jc ]-$1 #0#0@UBuUֲk}zW-^F`F`;'Ulj,rdF`F`*;PL'Ǖ3&1qS2#0#0vN*QcXliF`F`FEu=Mˆ1#0#0U vNV{#0#0#/zdxcF`F(;eg vN LjO&#0#06K.aF`F` D E1#0#06hc%#0#0#P E1#0۷o#''wů0T`@@7 jԨvڕB'VvN,#0#H!p ܼy...[.{G>6( 9u;FUV%δ/Y#0#03&1quuc0ZeV&IzPzudff"++2Ǻp7`F`QR.1cRZGB6(bDsΕz`s 23s>2c(WŘ.cH̃~̟L[fQaB=LspwsP?rH61" 'FuInne:<&d rŲh|֨ZwĦ3yd`+Wt4NPp#fອ= -x@2t{2,ހ+%D. Q4Z&b}=/҄ ˻D0 tvN*g<0\:!aSp ltAF7r#P\o_~+BоxgWY .K'u]4x~wLO 3ňQ@Ϛa͆~>g/GcNaXXn)<-u=l{ ]av[JzP&z$`lckX E AV8$iQ`'9=ٽ^G!(4mᾘM>b)&E(џ%up;J҃4V+Z V65L=ޥom=v$aD*BłNuhhaAhGJ._4U+e wѽ|+nlT Їh-Zt/^⏦J=-S%8nG=ٿu_b\7 E9<$ó'ܥo3Wr^ٕܿ!+Nsxl>)?C%X[1qXyfTT[mʑP1 m?0Dt_Q+Qkn\>^ǧ/Gadh=5Yx KȾweh{D+?}rA (ql-ZGTGLLz Dݼw";-ڋi^lfHPat.;s%#% E<$-ueWe:RE9P)ԏ_D$D 9 ڎzѫN+nֺr(hR"z3Mn Yx5ؽ{3]B pũ1ڴ8ڽ'N\AҬ4m رc]邭_n: '5X;r`ѺɻehE#٨jw}+-*Rc(A&hPL/ԑ:M(q-2e\ygJULۺ!sQГL= Jhex^6p9/Oo~sٴD@WOKRݔ6:zo奛\TYKbB30{dw?Wl؞f@#qba94;eu3R!S)EvԑYS/QJb*S(GJ.B^^hm!k@iH,]ɉiCTrmm1)nhBq&iL/ D4kr63;15ФkVLGֳMG-c-]ɹ-ᨯyv M4 =kk3>: I23]=sSiӹZҶ6~pECg;i0-L,0`*6瞴I.nWٕe*e61gga>͌΢= BqqNJkƐCS ,Yl3x ӌ3Z|T~cigǵ~}&'r#6D8ռ$:H7PFc%q1 ]tuߔd;ԧ2,PcGg+jtljױG=x"|KwK4CjNCM_$bɳM%4R\ IDAT10ÉwoAfc0* nG=HBd]ώΖpV wiٗ;8H&NC?Qt[)/fy=;69|cbU:iOj11qГ[1:93򱅈zzڮ'ہ2[n*s6#PiHKKAs2V& e5nGO&cӡ(,]+ѳ?pb nڏ?>r^<9j5)G=9Dmzn7ӰlZ0%GRH og`*!v6u 3uZ`UOKgii>; sѼ]O3pv_W:W`_B\xU z lfh)SXl{f܍Q :=[Kۆz<%}t8Yg|C"^MHEj˚UZuC{Md{Ty@b#Ti2S@,Z/wi; [Y f ?ϑ7+ƃg{ՁZߊNҶ.fPWbҁKME+F-9RxHW(q:#":扣Ol)ehZ&*QuDW0cLީSG^XҊWR9L0#𿁀 q׮]oYxՖC/iɯic,s%[6t)m@O{ڗ{h oߦ]5.LҧkPD+upfiMZN RŒ0|Pħdh\ M[І<$5iE0`pK6n_\DcK\R4y_[\JմJGp2W"OGʒhQ`}jLa[N2#0SڨXLj!BGz&u@`x_l89c5c"q8f1򡃟M prIo 4W6MM[І<+X6-Ήs&bv#0#0.N|xҰ]F?ᶉ*q~JմJGp2W"OGʒhQ`}jLa_ 90#0#<"aO i#zIL!f?d2K"T)򞚒eʃ]0#0#0CG{𨪫 ]AȥZx -`о""-"&V"xZ\D"rHDuάɞs$sfk9gs 9O@ (%PJ@ (&PJ@ (%(tsR&NB (%@ \zު%L]vY_7[^tsRt5PJ@ (̙3k%P6 ;vXj/Q">:u% ԨQpnnEO.|СCϜFJCJpi־PJ@ "+Aٽ{7N}yH@Obѯ>/7Mb]y;9%d+*zpgwthR)s y{W 8 T=֋wp>nۋohR{'/:ll #mŖ\\}Ly疻w#,p ( n~:5Y0Z'}xS\Je~2yX5xspoNQeL'~Xb>utὸ^ȿ0Տ:hPNCGKP1D܁ayݮqYyκRbZ~Sfܰa4iW_7{ q8k]. Ox}%a'>Kf#17({ kOmBs^"ېVfq;;~>*y0C <Ӆƿ,rA>;gl=T OeϤ#› ''WhQ~w<1(dK2$Kz*)qjS"N]އxR p{cg-q|:kcOb'0ZxܷD?u'Uk.Sp|0\6vnD/5+gN\?AM:ƍKwҷo߸;^dӦO>qef:㛐d>6Ҟ.DI&'%۸a^EG*zO^M˖aٲuJL:>*#ƨ#k 1/8Rdm.8oL8*A>#QblLxa9y:v<9c&8yfQ!}k>[oa:LppƄl[Ƅ|{6`“c٭mق>(~<_R9kr]:T\R0}ZlXks*`gV{0WJyKkEs1,:}ԇMׇxohcEwF5ަ+r {p ]<ѳW!~ɚ]GS,]>s۶=6z*?y/]k4m\IRV}.o0 W?sn^}m7^MCbd]1;S?6Xz8=[7A&0l2ӢCMDfÅ& 1G COIt^‚.#1)[5~m0|/m]\pmF8s &^rI<4~Ty{̙GZWf^?+tLJF1_yP QqFUK@EKFc:lYh߾=:158ضclڷ {>8Tߕqo,d*JnNJ uHL KsbQ3;fbϱud"5S&TY==0wt:cܲ o+ 1?]嘑8ݟSV:댑18V_@^ -gaN,?o?ob\I#geJ _EDp2it ݱ4 p;_k"Yk۝Eawbٮ?1Qq rr=4N;Av]>q'p[q bs{F|?w& v}Fһ =9撃9>yੜ?s?$3;b)hߓ'֡u!O8w-Gȏث.]m'P 4-n[E#P>~^hkocG;Pݏ ?o:0_hꯐMs{#㦱x?_Ƌw 4/<uj?1O0}G·gvzu4SωX7'ꈳOF7S_7+!Ǐ[? ZXڶwf:#^aDZ@քׇplyE1qCH|Dn; MYYl V`.!]ߴ^v<_#~,9oa6'O7S"u0j/pro7vs1gD#hA#IT(*&L %g"?dsw0ox,7`5*0wœF{h3z34k;ku߅i3egȽx3ߔ9p2Qq\8OD~5пN/V&2O /]CkUV>q֋ rh%.N_l[ŋup+ƍ"v&.A:OUX>J2n)=:n;1nʝydOWIwR mܙ=tf"|vpndku﹯AZi~;nse ƆSٙ馬?8 8jf0vQWy|v>,p#}q :e Hwj60LYjOѵC^2MMAd۵8v}!:^478&OвE>PħkfY{YwZtsR]_] 6 IDATZ;d^4[~:ϮSܬmD$_4L"6.AǙX}&Z_uńߦGLPX`NqBI yQONxܱa({jj#qVt'+t\JuV 1.t kLzCQD;Gq,^YCOqO&z(Q7_ZwVѯe`6>bk"G87B-u)Fb%q4.>U}ٿD9:D\(Y6t {Jb)hLGίBEfMU74:sS|{n@fA :8m8s)סVxnqE広_SoF3>Ɂc̓˹Zf[<9a /~+cng*I>'juK>۳to|:,y{6ݔw{ԹBrmO#t.Cַ;W&>ڱkaNmFuKvwf$!|A䙜EGR~qrر` z{;5 b?6a--h:> 잇4cǺbѦTjƖU29Թ.g㑵 -cЫk8[-RX{ΝEi DQB}3q{)d0԰`5k:OsDitKYBv'>_:_ B[ S\ʭW]~AI'*B ٵ} %{wK`?u,c=_}O[ԉp~lc.n sN+s|:|1o#wgsW!'O?!QNdUҶ j%Eݻ;EC\uoDC#;P/W'J*#^B~S~yLAg p]ZEdӗ""[?kr*]ɟ.G˫pȦi}QC~F|kԈ~bk#{:|-ōm;?Df^eYiS ['8̧~`O+~x^y.yjկ4}D^.>>wEsd>)u>&p?^ʑU661zZ ѣdQ<,S yk'{9oL{MaL7 |i zh3ܻGhxZ?!E_><~~I Ckzw< '_hv~' ߥqZw7>4g:ϕg)} xɎ)T8=, yOjv xm=NwϚW,飡ht; nn.uٻK@7'%x Oypwgj1c13Ԫ"yqۊCQs_[/Io0~eZ4MʽE\K3z^: |vf#6-fx>V!30ױK|p^ OֿZ!%u$O_'O 9J`Ԭ!lx%k$:Ν;snmVZ0hA>)zDFg@ 5k"0-]O{Ovh[knZΡ_,QSЗ_xaHN/oXdi/tnMsuz>z;w@SAmI-M9`c5aHo[@܃}9npZ:=.m':fMm,%3ݹ-#`A0ٮS[eYsPDRޫ]" gw`,*:t~!b\Izn*;-3Bj<0d-)tWFj:/?Mm{/rE xW_qR;Ǒ~ r>ҥO/mɪX*/-~ͷ9jބ_^za௞?u˗ѓ@pzW$r)n=(5݇FsWu'gJhco UO}&9>ϥgk g{;+œ0a x~LO1ߵR;eVz~N䓪D=ApG̐?"L&"Q}uS}_R\:_HĜsŠ>';/ǐu^Iޠ' ./;Oh^8Wq-9\>qa^ާ^ a|>m:ބvZWچOЏ99T+qE&q>x%Rҹ7繉m*wXcO୷BͫAJ(\;_@,_é/'^?atEQ#&Qv0zOCIU(@IUQ3py߬ftOŌ0XD782p؉q&%#'1㟨>FA5K6N_I! ^ J慷TX\Yrq$b4IK]ݐdCAKhl}6n_Gv鮂_q*c 7hA _qm#4k >=92o4F4V"PJw%S K7A[q4K]tGQz%59`֟ƍnxo//4KthxcDT{pħjvB x{;X8Q7c"S_q:/4@ ,-Z`%8sRTnNOBݫqqckIZr5[uW}y^g4R$pZ+;5Aj)mЋ~+6V7cW(1*%PJ AiժsDz^mƌeoPȈÉ<ϰ$Cyϰ4AvUdtjԡ!}߄JD*%yK-l\1>ӻ'xB+%PJ@ ( wNJjs tרD[SGo;xN~$_ͧPJ@ (%J9)EE6:$bWNo݋k(ZPJ@ (%@@X4/q6#W֩F׍I99{:L%PJ@ (X蝓X(3c%c?tJ@ (%PJ !ts|W8wMJvPJ@ (%PҤ]}}*VX½hz%PJ@ (%P2tsR2\K=+oL<͛7/C%PJ@ (%XW"(P6ĜIbnJ@ (%PJ,IY:XlYPJ@ (%.\Xׅ{nufJ@ (%PJ\;'etm\el:%PJ@ (%P,zXPJ@ (%P"wNE2Ay4iLF (%PJ$.%AͩwNJfVJ@ (%PJ z$XNhVΚ ڷ0yj<ɉE0pxWILN,G?1p 4 +6(VΟ ѧO46}ݲ.rc_5^Zžz> 3*MAtӇ$&^~?G\49:5{xw# AQÚySGÆk GDKD%og,_ OUA?C6o>ncFk-b=*"MxmON#}X'nLt{5G}Nz894f|ylEY2Kb_vVE@"1zO￟tv9dL{cHKHvLeбlw,-zE+Yi|V(w4Dn#<$y3'1E^FFkuاH;pxv9M11 #?^KǴiX_%Lb…?;hI+CWLAJoG'sV%zo@y=6b-}<œ\c@)I)/{rJOڱs2Ff͚MGԥ`lm4H 0籰+fӝ^y,6b۷rzRGNV#0Gݮ ~Gw@u5N\r;\+`T?oy[Int7潜;C%W="2OpN3R =2Vdzx'Tţ#fy-ZD:Z~|F6mHEoD 9 \QjU ;}$h=Y[0൱@@Op:"O>ݱazc3FσZ&0MPG!Z~<8[bjau>Wv`gb!])ЬN mvש/mfӣPO۰dDʱg#s@tG׿ԾOqgt'&>I .E;!t>맅w{ۗfw^hɞh޸%MR,0XK ~9Z6 U}L&lNGsbKel~+3<}.G:gbtƈG<|GcĪtڢZq1SPm/;0s C)onMp沐s;{TBIKe|wc2*y͂Ӏ^>~uGrO|/|W؜4&yt,]4t|Qc¾xq/촱M9mRQgwzd`ѾOn,Y"~կچYt&oevw@ע3E6t5}Lwc¬2Va#qE&&d'N;t$7!{yebr[?#\3s4o>ݡtJGҹb5=ťVF&BGY|9/>G>9s'cz5^׀?{|ק}z|u?'Qρ1~%gs?5^.#\ztx]źv=V0 Ք@Y% 鸾SP!o4e?\qoqSMmVLqs|.'mahQrlR*c~Nc;GEZMjc&tahR~}N.>/CmۭO#2M FG/cθc#U~q;.~ŪWA6 =7Jc[ۅK> IDATqKfZ 9wUQ~Ȥ\h;Tmy^֨aTu8nhnau_[ iuwN܍m/ҵ1Gs3>ɽs xoSx8!/*26$8$<0#U1t‹+~mWDqYUhacڸy\٣j;]PL69p̡Nz4 ݵLUFۤnM.Z$5}sW \ ·θ1 ;s :'WxШ?FJfɬZ$w{z'D3z}Dbˠq9nݶ +R#Hk;TQe9)L<xxP? 4zD$b)Yߺ+X^K*g uşxu=u _G`/A{z<YxqXݠEbML"IY |ts]/#}˒?VZuufy $IH<,S yfyj,p; iӏ(L~?zgUk鴪>QE7E'zߵwp*/gҗSalNt_ 37[iV̖6$Q(HVZs$;D]Vp}ԼIP|QAx|J,N^2aϵ]bݜsR#ʋ#RIIu-@nd=G@-o獡Oq}AO͠sD[zіx53WvFJ=nhzՙW.*JF"b&OhQ1zQ/ :Kxi+oJA*-Š#0{h4 L'LU;Yg0}p,.=RS x)a Aщ*ek\WuV 4Vͦ'e6-[ DL!63*$׈qS.~W&5쎜(F8w;1Ҽ0 1:L5=<>znغe8_L i +6 ΃LUn}nO‰L?Я}A|iXkblq;٧GGi0{bM|Z h _8-+x'C m.~w%NіѾuhIZ8uG=+%(7_X:^飷󷒔.I}`|}=n{ho`ˠq;{+{k;h>[%P\*F趔M̓v]l,B>+0nv%ƖӪ'U冷k.va4i$v;whce۷o͊OǛjpEJb4ʷoTdlhOvwDzֽw؍am|VFSp&T" #4bWd LT4Լ'T~$}d^wmGR2KψbOɓ>xε48Qk+2k8ys6N/yO'CO>vcnC7Wf n-* -c}i} :Gί_Q h{AxGC8C>`vKwgUO1z]5ג%KhY;j₩㛐d>xu!1K]b=K7 c].LN,Kq%h!67z-ANzaR EOQg땯0w?I?_ڱ:1gg} /1y^ ,Q}W}_d@&2Ey.?s8ڇ\ KWи,6"OA t# t|+ um?dg6'}쾣L?VΧV%P ՙ+:H^-qo|e1rrM{_4ZE]9(%;7cXwl{T Z܂w pށF*%@iIiNH?U)qVz\5kCe3U-;cZP~\ PPJ@  -7pw#?r3zPJ@ (%"wNߵ_2}M>w34Ou-ee:%PJ@ (%P4zhJէ=} ǹӹps#쭷p@G{SJ@ (%P%A@7'%A59?CG)U>Y?EE_!D;ԄJ@ (%PJ ԑÚE􅓺㖷עQ΋EkS(%PJ@ (2F@7'ex|,i?rzj?tp8JJ@ (%PJ\/ė~4=3o= _ #] PJ@ (%;'Nmh{q6#1=82qntJ@ (%P!wNñij ʛ<￶Kc@ (%PJ@ ݜbwsc ӻ&F PJ@ (%}lb&PBrhc%PJ@ (%]wE>Hq ά销PJ@ (%@ǺJsz5xd oLRRRbnJ@ (%PJ,IY:XkYPJ@ (%.\Xׅ{nufJ@ (%PJ\;'et͟?HPJ@ (%J9)ڋPJ@ (%PQ蝓(JݤIE (%PJ@ \xuJ@ (%PJ I<):$%PJ@ (%p1xuJ@ (%PJ I<):$%PJ@ (%p1xuJ@ (%PJ I<):$%PJ@ (%p1xuJ@ (%PJ I<):$%PJ@ (%p1I . _u d֔J@ (%P@~~3$ΡnNÞ/PJ@ (%FΔW~M-aIP$+qI|FՔPJ@ (%.ZgΜ'|kh9DnN*~z|&E*HmPJ@ (rN:|07(5j__gUrÿxygKвeKO?9#ժPJ@ (%pm݆K/-R_ז)v9M)R*UBnݰk.gsxɗJu ڙPJ@ (%wF1GI16&2s+Ol2]DzmkCqZ狯iӦQkgJ@ (%Pmv8/["SJJl^`lf[ՕPJ@ (%(Lk{,`)͉ļTPRi^%PJ@ (%PRJ{mn/1o^+Ή~ܙJ7mPJ@ (%#_z6h+Dsڥ$A7'%1p-m@~۴ϩv%PJ@ (%P *qkgǑ""ԯ=V9Ihv2Xqf[ֿ4g/O|i¨i"%PJ@ (%PJv+^(ؼ_T[/ / fO8,͏[] yʵjAZWJ@ (%PeC^z9++k7-c|XtL;/|m8?^ҴߙeT11\il l]bϒJtԤ82Nu;KɒRL]l*PJ@ (%7s-7)qq<vκΑ7&gCv=tig#RLɺyP5b|8άsE9.eIaưnGMcܨH]|^9_ ѢPJ@ (%paŹYR֠4Qsc`v-[^RX6Xl{LnNSsSg@𛔗ߴ:˶eN#zQyQJ@ (%({̵d=CfKpѽWNlkmRԮXȃPʹn}n7rCڊOPJ@ (%K\nJփ^gMS'vci7mn0k.zIoNd< MnfmL?_yIr;}Aa]PJ@ (%`PtSwĻ1x.^.RbE,"v&.Ȓڜ6#2h/0}a5mcͺ~X "h.R (%PJ kK)^{J=ܿ϶ Krx7'<,ԽM̴.@0뢛iE狂ג)e#"~/m %PJ@ ( x2ף6+~~>L;\11K݌3mbmM.QŻ906im/Jٴp_C_HMoZX(%PJ@ \$dݔɈ/qAoi/6v/ėL'b5]$Y7b3۳_s]DJ٘H,&b8(%PJ@ \dȳݔanLL]"|S)cRLm^u&H#.e6'< sc!6κu)b/.99Yc\ҟ̾E>H&mU*%PJ@ f䙈nJy=i۸.Rl"gN6\̶`~ui'~SJ^͉W<@s1Խ|2A.b3˒O1NfEڰ\rpl+]nE (%PJsyM(Eb&KSJؼ&RbM3\L饛1N&m%9IF[t 8IeRN"/4cʆԥ-۸B<^>8 K%-:U (%PJ<0tsm/6ͺi$K.bB*Dݜ|K{J=qT7}ݱM,>oK{mFl3c9/k^b3ٰ5}UJ@ (%RMi\Cڙu1|=]bM)}QzV-VݎͳȞinND It'f:i'Br1Ol&ykQ'uVb^)cbU8_1}.^6lN<Ÿ N|f,%Թ:̪ Svl3uER?sJ\RWPJ@ (%P =XǰTHݖv7um2YJa1ĈM]1DnNNy0)>)`0c8oIg9Xr1}t# ŮR (%PJn#uYdHSgؽGxmbM4 HV"zQ6'<8Y:(icK9q[7۲.Y 'sx"H[qum(%PJ@ {F:T|R Yn6>.>n'Bڳxv#8^:"(%PJ@ {f"H.];Ks3ᥳM:.>cvu.-MPԗDmNb_uSJ{3'Aq9VNusS6)ܖ}\.>/v]b̺1%ZPJ@ (%.ln%fe6o'~[7c'OrݚgxW*6'1\R7mҗHd;oPD]W$DgŖ}iS] (%PJ|0ו2ue* %\vcbvu.)6N"'dQ7'fro.>ԥΒ H6d!6y||u.+ur9~i/Ҵ΅}\D _d֔PJ@ (%^X֥.)9ץͬ/>^~NM#6>)l"H2g1oNr L`9ML!~>fs"vIn6_bYr;ΐKJ%PJ@ (M׉RLm\.6e)vS_!u-:%CvӲ[\IDAT&qNⒼA̛rǼxȂnnIHipyŌ;Kn#.}p[ـ͇7ܶ"/f%NPJ@ (%@%kFu֥nJI^ϊKݖef_v<璼,/6{IūSz7'^"ݔgLL\X`&Fl|u.lR39lo%/KHӦPJ@ (%@& kQsb3%~u p%֬M,E{Pc̃"9Nt^67^9ƻ6ۈnJic K..uI `]l.ISH]$Ea!A%PJ@ (rO׉vKS8v&vs!~d"uٺcŬ69A8c/p\q6'$셸 _|f9a򆁋Kqud.3Nu%PJ@ (A@֡~\[ )kW:"MĊ˺%s]r.A>'6/s6'hKi3u:?K) S6´s,g9}DrرFn')R uǩ/J@ (%P,s*HYǘ6^bccE7K/α|p1}5m.1,į#,Mevg0e!:Ke褆7b|,Cl6.ҧm1bc]PJ@ (%E\׊nK^rav]H'qtS4K).bDoNx^toǚ~,ps,wLDgAN1}4}N+uJ@ (%P埀=e&f]t/iX:z,R6"Nt\X϶s9s6ux7q؜dnv.v[JD8/:ڠ`nǺCi'y%VAu3^u%PJ@ (Ikm:ϔmb8s"h }٥2^b ՋH'Iԝ,:dg`f9]b$l>($x'vMb9HO1K[kQJ@ (%A/]ldRl;wHٺ&Cno)>n&nY;'ܓlBbu0cL_o3޴9mݎIJ%PJ@ ( 07~:`m]H]d]blml׹ݭEG|(]N;'2XSeeH:Kp>.җY;l\".R~"mR (%PJ%.Y~Y1mn摶_lWүf $ŻsEJ[nܞmb5KNsiX">iwE (%PJ\z2nEi;K.~Es;-~uoKL/c]<r¬B^|v]8'&)M]4}Ō1X+%PJ@ A v?iݖ<{u?.9u.֢׋HwR͉/w9f~1P7uijDX۱gc%ūmwC/fiW] (%PJ#`/eOXI;Fu/+^>Sqk"K.p729$s;>.>E 8IoK+mYJi='1*PJ@ (%5 V~a^v/#I'%9Iij8IK]p<$ޮ{ٹ#m\$i7u1^E|nM_PJ@ (%.T^>fMHݖ‹^>.ylf.Sb&㍏/Oc]'+ܛ gR7f y^~vTJ@ (%p-Kd{ll//t9IB/ ݜp΀ǻw_S؋wiMٗEJfԽf>LJ@ (%P{l]clm)tb3s6n瑺WLؗȻ&4']_<9%%Mic]J4ĉ4ŦR (%PJ&`oh1.MtÒmݯg|?О wV"'q7(N~1lD˯n9޴WdJ%PJ@ (B&Lnǚq%W[m{IlL8qILȖ2A{eg'1S|bv{K,ݶKKJ[/b#*PJ@ (%Xց^3EK3Խ;w$'D*YX(j!84x&I._RM.//$zߟ,%+Pߚkmkm_5G j?_ϟc=>^k$pi8YxV@(Jk5ʸݷ\1}fG @^+P {/ݳ_[}sTkSgipy8&@>?Ubl>F @hZ VM?4Κ_z^mI~I:#,eZ͗zj㨞-K= @IDATxuxWJ=A`ݥBiz@@ hP J )TXq-\@I HwM6J y KؗU_mB!B{J;4}q-% oE_z !B!)n}i/>V B!B!$+M0_u}]P]̰,jYa*jB!Bk_ཨ}^X}-UraiϢRTB!B[ũd2 Ep_e+-B!BV /,h/z{% Ke~Z9!B!Oq2[ۮ׹*b2yA.jȭ8 KtU!B!(m}Aւ!oZ܋j_{ї4/2kϭzdB!B/"^a% HwYAA~Cof8~Q}Qt̂U✛B!B_Y /NR|kZ`yI KvAZsB!BSq{k6<ྰ?w{ _p_X{]&A~YK`/B!Kq Zm;6}]${~]`73/gB!B/|{T?w}oϽ5&_ץ սB!B!$C ؛%_,֖tu% s7w}$B!BܻnUbZܛ;zVyf/,^i K=vyya˄B!BT\ET^ysEQ,^/nlZP⽂^X}Qs 7Le=FAlO!B!=7\́96/[+/o`睓w] E&ٳ07}8ϋͷv*=B!B!ۃ_>o`3wYyT]P\|k}I ]/k]!B!DS} {^ذ}y T5sʽڎ/hyAM&NNNB!B!Ajj*y3֋7}='8Ir?Dw*iϒ6B!}RRR8|/^,愈7.-*(zs/8B!B($Dzٽ#nRq8{ۂ]fAy7*}k/=B!BQϢ/dB!B$dD6rWR8{#Mq)Rk,9@ c4) KLl&Új+ FCLL K/Q@ŶQQQoj^N-zqYBCC@ocC*iٲB焟& xOĈE o),Ne:ކ hڴ)˷nJpp0{L&֯__ƍF5 m/D&MJ\fdggq7i>/_&44 RJ>2ŋرcyW@;v 887ٿY/^$99ƍw!&hDl23{& ǁ?d8ƌ10~;W{nнzm2h`\\]PD6#Gֽ/;FE/#-+defđÇٿo*Wϯߒc_/JOSQ?/*\yǘ?>]tX /0}t|KߘhO?U_=z5j)S3hРYr%G~(-[ƥK4s(vF Ryws4 |'[-oǒʍq-<=:xbgk(ؠBB|Qظ@>E2:}i{oy_ecccуȇ~HΝe]veߵkn~vX0c O? @:uʻ v_|O_!-cK.߿?=Xќ:uƍs镩h^xf̘qW^zfļ7)љ͛ëk3^z%4h@Fxw";v,6m̙3 6u[q_~Em<ԫWN:1uT˻Ǚ8q"գcǎZJ]{nH:uxg0aKLL' 88O?W_}UwŴiӆZjser @ݺuyW lׅ 2uTϟ|O>Iڵر#vߕ+W=z4 4N:1B_v|5jмysf͚e30|z"ϧ߭Ӷm[jԨAnؾ}Z^AB!n{0.^W_}ō7Xh^^^? |' cڴie$''sitŋr7\xu[HBBDDDXߧ( aaaܸqC]ABBdeeYz*׮](+111/^Truut ۍ7 +2HIIŋVWߴ4'55U=2ymm͇}|>VFaRT83kk,'`=U$o<ޓ;xs+N6*% mmmiߡ=nj݋>裏0z8j׮ =!!!xdg^ӛ}ЭGwWCQzuFÓO=E~ر<?( 5BZqӦw_*wF5Bs?/pFAV駟x-III_|]v?߳e> gٳo?>_~%?<| ,gԩ\x+V`mٳo[^~"""HII!11ÇӸqcvM0azqr 2]2tPRRR:t(:tL0~ӧOsӯ_?[o͛Yj7ofϞ=deeOLeڶmO˖-WhРZw5nF`Ws)hy7?9i8šɬ<ċyY&>CriQ!'+~ʕDPݺ &n]*Uf7oK:u\uU9::G4n҄5jl>>>T T?9.ެ41x^%NXX*fhZ Ybb"7'NnݺjՊqƱh"uQFD֭]6}iӦ4nܘʕ+~222_yz7ŋG)q8p xzz#'Ww:t(ݺuSԯ]Føqh4w}oߞ~ [[[lllSAdzeY`^jϟ>S>36mڄ-PeggLTT.\`={#GV6[nz_~oooFA֭Yd 7oŅ'x___L=sU~ݺuL4*Uпu릖;| @fͰeĉ;wcǎclllx'cʔ)N\ҢE }Q|||6lXyM+:Zj-NbԬYSNѺuB[e۹x"ǏhBwKN| !ĝ_~Cnݚ}RnY`z=z?p9z)BBBXf #F`,]T'**~!_^~sαvZk.]ʲe˨Y&3glݺU9v7n̑#G3g.\`j'N?^ĉ\pPn]N8::yfZh'|S0""W^y;wn1,%%Yf1x`vM ;w.FQF… /9x /oLL  bddd0gVZœO>ɡC8vXndxmP?}ݙ^L[mgzXOмH#ӱkBbHx=+^fmߒ*v_XO}_i53fX7ONFF9}l۶BYxx8Z۴iիWtEiذ!aaaz5f/_f͚5O>xyyqu.\@fm݋=W}dt&db9oI:uxǩW/($k ;~Z- .ԩStڕ6mڰ`d?_Bq'Um۶%**@VZEKTFpp0Zغu+F_|-Zojٰa߿?5j԰(kŊrt:?#ݛ{ҹsgƏA>>>|XmuYʠAسg[lϏ'|$ N<EϫSNl޼E1vXnܸY*TjرcԬY6mXgeeqI #'NPۛ~آ'yŊt҅@c }!e<ӇCyfZnn̙39u~-{)rOaShח?PqLK[;%w-[GsyƌsSYwy &ɢ,RjU1cSEDDp)58u]x}]4_O]7=P{=-Ūd"!!AKp5IMMhtbbbbbbHII)Ü!&&IlL c0㦦r5VW^%5RRRԩVPddd}$''w|~III)33 g4V\zy)-]E(hʠ@&M7_~)iӦ _}F&N/Iq{'~ԩ}{O>?ܹstڕ,Y(Э[7 |s֭ߟիGΝK};={F_g޼y=FN+r}nQQQ4oޜ#GBݱ-;͌f]HKKGDFF#G?бcG:vȍ7駟HHH?WAz>fϞ͵kشi7oVקO.]灜}!%%ڵk!D:e!##LڵknBaKڵ+5k,aaSVjj*={dΝxyy1`jETyn6dxvɷ~{Sek>c6no{\v5kRR%{5}8y$'O&66^z ȹ(_R%z!-++Xu|gر RR%7nl|+ۤ$tΕ+Wh4_I&@=pttoa֭<3F9j*~W͛Ǿ}۷o;J*>ȴ ט- oFFzTfn:&wٶ^,:G㓾~Yr$㯌 oWs煋Xb.Xȼ߲jJP(~Yンnw߳p|ݛ}?or|wjj*c?pB/]Ʒ믾fݤrVZ 7[~/+Vh$D(˗-HޘĖ[oXx K9_y8zEQ8v(իVbccYb;Z;**w^8ŋ]L(N\80 J_5O=cǎ|G%.g<3JzԞhҤ Gc_2yd|M<<<5kEr :0d^xVZ_+ᅬ^gĈ[vر\x+Wi&ڴi=oBg믙9s&:zѣGok}c| <GGGw?,<<\g6sLq̙ɓ:u*F)SЫW/ g[oŻK޽^:vvvL6'ҡCjԨANԿ/cƌ… t\]]/pwwݝo_~^zjժwx6lt:&:u*=M4!33"Gv>{ɓ1\~ &РABwKNBώ;߿?UT)U95kd+1GGGMF޽&tСC<ӷo_t?_͈#xWHHHc}7651Y|ϏA9_NAiWrmZmFm/ tbzLd,z1b/"Ӏ DXXoj`U7iF֖ƍӺmE!=-cǎ{n|||Q&3JڵkD_ϟa;"`0gnN>Czԫ_^ObBΝCѠh d(S9z(ףQH߼lZz&%%5puZiNGczQ=}kjѐTP&h\CVעqpp7X81uqis.4>w?sѨ,a`­C=%f9-O>>>(Bll\∎Vgf00jr4K\~Y󇡠!]E-)) 2VZ̽ȹ?C׮]So9CBBBhӦ +V{jɓ'cccc:++$S EƍVו@RR:'/|wkYe!^TT_|EΧ߭X<<<ቹ+v <<t#ӷ?*Uĉټy3:wAߡ4nҘSFuvիoj݊-ZX|=r:<:^/a|9V0cUL?$ <==ˤ77R;F)Ugu/V-vD yxx0a}YXl*URmٲ+W2|pΝ;_e%rk4[Cg öm4hPϧ߭>o !?0&\Urz}^ւҜҀEp`/i 4p-z:FQ; /]NǘF^zTVM.33r9 dffL-r.]IӦxαǨ]6x BRqqq89:w3-op3gqrrۛ*Upy6o^- RT(Jz*wyYfB;_Xj/&$$3gx /,YB*UXtizw˗ӳgOyBqK >֭[h{(hZ<==ӯ/nnnj₝ҨQ#ZlAdd${vzlR~ʙg~Bө#&Ο;GHb2HLL$+3[[BCZZ&FNrr2#(t=}Qk&;;7np)-.@h4zq/scY s[+W _p{w Z /7///ƍǸqʻe4wKB!Fu-\8tlll+ttVՕUAjj*Ǐ왳4hEQ~:Ѵhќ:AA(Bbb"sխ>~~;{;;{ԩF%!!ӧNhhݺ:*(yj9ʾ={0fgSJ>t___^O֭iq2$WPvmڶmǏhZpwi-jy˞oG=>>E={VMgNg-^${M&+ioA}0) 7ey7W㋵kc#|48ۡ(h4w^GEER7eLqNh?u{BVV,{D&!iB! pW-.3ϓDD%cNRj4Vra8&3ąp[n$ ܧNͫзo_ܣ}/jhZ4h 4AOE(9M޽IOO\I? 5kboo_ާO ..RUPB!7o#m~W{ʻ:w=Э~ ]l{DdžԪU ѨLj4m4{gvv6;r?? ???[*WDJj*/ǏU˖6e 9sW^~ݺ1o<:ď?_ERR]vwAy&%W}V/ǏXɔI`0 )G*,͏Va]ӃokS[Dd㢮B!Vm@X+C'sCz՘-=d֓1S`4)<;)N6~_y?DcpǙ}Xyy\+}g-86:4Lj~v &6ĄHI7lNfм ӣm5}gE\-~|Q='{>aO\+6jh422D; 95!BQ΢GD}yź.tnQQn Oޔۄ`Ao}ʸ:Iz"}|vOƾ73\Q]?6$7EbzAnXk^|r'mœ֑f`'غ2dѫ9cFkq'w7ӹeUF_f :VN̚isٳ={vZEg(  ++ Fu!::N=3k׮?Vߢv\pC鈎RJh4Z ZݭIK;.S%gx~ rhڛ}m_>O{-~놝7ޣ{Plc64jgشs..|l$MV8pGP.mvҌ`(>Fa&B!D9Y,5|x[j #B`keH6`8*9T͓.e_Dݠ7.N9fԙ_"*6Fu3r@ '@lS%:.'?'!9KW۱D2B^܁~Z3g&y o czZy޾Ni44m7ΧSN$$Ѹ^cjR ٲz)JN{}hT8})V}߇duԫKutwɫ14߼>toW@wG` \fXlu8tw zebP&:4NV5Hf뾋 lpARן̬lNf(@!vJ?CMX%'s*Sh̹II3ۆA3][` ǧ3}B{Ʀ?iYJZ64X&Y;z&,niO-3M̝ދ ؙX]0) '](+)% O7nJlme@XR%~7^x-ZDj8w͚5Cӯ_?N8Aiܸ1qqq\R-(kZ5ט0aM6nݺpBܼO֭:uϏ6m0c ֭[-K6L07x࿄Z6:z+>17W7-6[.^K.j i amdƆu^wNh2Z畑Kg[.vvGho9<ث!:Iߜ~y6c4gaCy닍,^uT]6qL*ƓtnQO7uoSZ]v<+A߮}h4h߃_oP!hְcQv=^cxyx+kۮ,c }Q[/Î};t ̷sgTdgg+IC`r|7]!UX#n !BSl\:~^Vr!,ts2S 縢PM- ܜrԌB6j{,2zDeu{`^|{~q}{,JUJTF^vYom8^/t}^Ύ7U?Q*|OoSNuou݋ګR2rNCR.DP'ԅ|ru9N\Ԭkw߹Sz=$B!(]2zP}S4?R{{߲C \pS\(6JGkHF_ғAR7'f53 [&F6lu [_2hٺաBED%_WBE߹E1;~_ƫ1q25B!(N( lsLɜwc޶~{hޠ2Z^!n$XO\yW㞗a=d{C] Q I}'Qo٨ N6l}'?ȿW?YKL\ ^lTWrE!B!(=Mvvy{2L&hTZ{dggۻoʷ^Z%w"0dڹ+u:]O„B!Bq~V}ޟZVhԟ3ѿ&.^-vǷB!BG9V!B!(k|!B!"_!B!$B!B!* B!B @|!B!_!B!nm.yB!B!DM FUhPÃLoB!BOjjm=]kDvUe__!B!. }HTk2&B!Bo!/$njpoÐ65nB!B;]EoaQ Ip/B!Bu{KDA wԗ^!B!2r ^]!B!tW$vQ !B!+zB!BQ8 B!B @|!B!sKF_!B!|!B!_!B!6y2F_!B!(k҃/B!BT !B!B!B!Dp |!B!IB!BQH/B!BT !B!B!B!D B!BQ,F_!B!({?_!B!(s2D_!B!$B!B!* B!B @|!IOO̙3wU*i$N>MJJ-'(:DBBBy6=+!!CUUB D?{l fӦM]!egg3c ի 8;;o{}ʻYTvKKK'z긹VR>2٧ &^zѦM/F'''xgK6yrxg,y"##6mзo_E) !Rhrs1f v3o޼rPiXڵkǼyXɤIxGoz,YǏ3x`pׯ'--4,XPKr9re˖wBuO !O<hӦ ?+W~ 6ܖL0n"~= !C_ٳgfKf͚ڧ zK5?ErJJ /.poc2ʻ:B+pȑ#ԨQ:u 6,,ӧOӠAVJzz:7nr*_!kŊ_=zflll߿?m۶eܸqL:8RZhTfqsFff&4nX=` ::Z .322rr $33Fbbb///RSSٷo4h6"%%{RR%hWv[v-z @֭IOO`۶m۷~ŋxzzҥK|F#?AAADDDܹs 9=G!;;-Zok׮VRJ벳v ȑ#Gz*Zʕ+Ӹqc(gGGGٿ?ԯ_w({Jzz:m۶ήsvGU??n Ν;ɓ'YdLeB , ((J*ѷo_իK,ɷmll,FӇ@ϒ%KZ*UVܹs._!(>w l̘1|l޼m۶˟yTvv<<<\]>sLuСAAAٓвeKVp=zUb0ؼy3UVSˉgxxxжm[t邗?u۷/UV駟fΜ9xxxЭ[7BBBhԨ111̞=zASN|}}^rꫯr%bcc1cMS>}X zo^ ?ΠA8tZE}t_z%VJʕ9źYܬZ SF Zh߿?M6^zGFF7m9lw}W{'V,\cǪA+7n`Ĉ|?:{{{Xz5/b/BƆVZ[hxڵk=sNׯC ÃhFX+Lbb"={dʕbgg4k֌|Y{:uPF N$''k.ׯousj1bGV͝;77ndȑ:uꐝ̓>o'|R}`u| }|2OgϞEff&&MU03'N@!?hJ;v,&5jj*YjիW`ڴi9sȹR}v gVXXgΜaʕIiWKZBQŋTDWsȧLªUXl7owތ=WҼys>}I8p=aaa1a8/R㧦ɓ')7n\tI Ǹ֭[7>3`<44O>5jcǎǚ#VokXz5ݻwRJ ?oSgΜ9åK߿;uDpp0Yan֭[>|*UPrel®]k׮:uJ"[BB۷o;w@u}Xp ŋōDՑ SNŋ\|_03ׯ_7E!ʃi&5O5B`ccί669ﮮ|K%,eĉ@H ˝iڴ)$vלm'O[oѰaCuٓ7>y縃t#G yeeeo`` #F@;c^0cjo.Ӻuk֮]˕+WhӦ 7n`ʕddde%%%+o߾ttȹ(c7mڤ7ߤr;XnY|gt888ٴiS" B;yggfǁfݻw>((B! bggGjՀ௠LE,!+p^u^u[yxxz$fuԱZQFoo߶m[ϟW_aÆx{{3p@k~ꅟٳge)3-SG,6$$ooo-EFF-y!Dy?Y|s_e!fnz !1_LVoW С|`6wp^PPꫯ}vy|||ѼL6zzxx=yAsrZv[xx8ƍO>v5C#o^} \ug۶m } {={=~uC) MWpsOOO eرcّ;KChݺ5f"<ɝX/oЙ>(( XAAAojT\Y?X]_;rHuoFQE9}bgg.wttTURWٳ-3gT׹*;wVlll,>s{QEQe'N(g„ 꺨(uI,TՕEQ`0(m۶U9;;+~~~iӦe->CP܊|m۶);wT٣8p@9|rqɓʙ3g+.]R"""H%**JQ_) JRR*iiiJzzdff*YYYjcm۶e޼yjnhtž={́aÆ <888puvMFFk~W1c|d{'''֬YO?mŅ'Z=n~~~߿{,_n ޽{-fh@-P3[3n8ܹs:<--zcrcߪU+7nl_fرh4رc}aΝ6[̜9sϯt~zuD^g˖-mݺ]J\\$tue4Ms G||<ԪU%r qqqԨQR.]ޞn ш/qqq,[푅bzt:]ZVhԟcJ^~QmF.]T;wr=zI5G!4:v?ömԩSyW瞵}v:wFg!_ߤ6mڨ^J5pppe˖j&w})B <<|q}L>]{!|M)w.;;;֭[dz>/ш#͚5cҥ1)B W^hт_k׮wuIW^eҥ4hЀ{#*m?J@@saΜ9 5wO!46oLrr2]{'8;;i!Y?lll$B!-"yˑ=*U*j!D>2_!B!_!KM< B2AAA<]B!]/>`4_}n.Bqo˻ w/BT@|MyW#""B!D¼y8rHu3f`8::,}] tܙ͛QΝc?T"BT҃/BT0cȐ!xyybcc;w.:7n,^OzX`NNN{Ѻu>MF#qqqİb Z!B!Db0={6&MXޥKvVeԯ_"j<ø3d^|E/233ٺu+gϞCTR`>s2yꩧ W^!((Cb BBBz̙3{aԩìYx"5bĉn!"_!@,YBVP FJJ ڵk899Qzulllx c֭|$$$ۿ`ϼy=z4͚5c<|7DEE~zfΜŋU-Zp5233f޼y,X"BT$}MyBQ!)G}d58 cƌܹ~1x`ZjU'MF!&&gyF 𳳳Y~=:YYYL&K^HOO篿8;;ӤI>Vǰxbزe [lVZ1X0 ,\qqQlll.B!DErdB!MYz54j(ߺjժzjׯʕ+ *q< -ZRJǍY|9NCQpvv 11f͚jy&Lzyӧ,Z"/]BD !ć~ȫjuFiӦ4l[[_v|}jj*'N`Сxyym6vޭ桇bɒ%k^zqt?СCŮ74k֬D"BT$OI&;#{nԩSAF k׮rayNNNL8jiڴ)dܸq\-[f/^Lyghr7|H|}}qppE!I/BT.;::~ѢEqa?Η_~i^ߒ .B!$sBq`2߿?T3 !H~m0p +5<<< LOVffgfef?|/$<<=Qo}իWim4RrnR!e{t޽!BThW&Ea9$''M`j ><_M6y'hƲz*9(r^/!MӼys|}}svYq$iB!B-$''ӴY3<=uI˜={K2-u7haVOMM_~E\\էjxyxOԵk?{uz`WZ=빹x/]$jUw/fWWnN!넇sQ:wl5]I޽2+/7EQt}QOOvB!DER~O}ԮSb(̘6/OVJuǏGFxONLdu}\tjB!;w?7nлwo2MzI~F#SNeܸq׏3gC{~qqqY]K\\\y7BqW=R !˨@pp]Zl>6koΐU+Vyu:-:[xWx`胴kۆ9ϋo[ڞB!,}G :tzhdڵ<|DEEg_m6}Q΂ HJJbڵԯ_3f`oo{0cƌ/""뼽,0B!(=ӃVjZxovEq&6o yk%>Bpp FL/9Or|(`?p v:f5z3|o'C9}4M6ͷAÆ<2QeIǎ-bڵl޸OЪu2oK!=s<#|7pϟȑ#ӧ㧟~駟fܹ9ɫ__>C̜9+V0h fΜɛo^_iii̘1usYΎ|Ү]nN!sS~lАVl9H/Op6: #ky鏋&SWۣxxYR3MWCkcl`p 5YtCzs%⚓-?:*h4d2hB󭳵>g B!nbggiiidffˆOHHYtw5h4L>3fpqN<Ë] BCCqwwǽ\0AAA\p˗/wS !w{ٖ?h+/Xz}}ÂYϝ NDAx:ۖx{|p:qdF.:õ$]븩# n֡ tI}mjTǏv EE]e V kЀjժ9ٕ?Гԭ_???|}}IJHRX8'NjiR !4{lڶmK͚53g-[dL:QFQvm^ٳ4h﫯o߾ԭ[~SNY}2dfΜV[>OOOV\رc?8qbmF#|NFݔB!] lu>ZNw.<=B4Ȧ ! \L'X4%>Nt1 pJ2A,Y9,;r'#[vLW C 2rzavcuUhզMɿr%+W" 6,{> =qC.;w|Ϻ^g{=&_Ϸ^Ve5n%~Ie?^iִiSdgg奾nب 5ryKRR"xy{kۂi׎-Zn^7fƌOIJJ7$7dԩDFF#lll?>gd28~ٲeL6)\Eqss+0OHH(tB!vkqB?#7_O6D4p?/13pyY|JF ]*1g5̝/ybsuiY͵ޞcx0+W.sBaI t:{޽Yvv6+رW_}uԩիW筷R>|qq}w !w۟daO w.\\ wyڣ( 2U^TR& 6 jMbrhJH^!]8}4111R Qa@mDZ}_eI2'B!ݓK'ɚgRIaꊋ: Q\B#[ r͑]t,66>Z߆n!B!w{.ނ}Ѽ%Vrt> Iزpt]Wvcg2jYV#,D= IL"OzLY-h4r5z=V3őo#ſk@dd4 *U*~IIƒcy FU &&EF*Ztì,bccӾ֧pL&ק#B!%q&o pkPunkZtK72iʏR6s=YtCOH]paDs_x3zY>zQ)-JB󈋏Ņ`ze`;{%Xى*UPF z쉮ٙL&|1t\]ΌBod2ؿw/֮W_Wu4nNGRb"sf)V;5m5?}$˗Mo[?;a ;ZkӲeKvyчS߄luj;C<4oo Ν9q='NT׹{%wW7Zo.( ׯsYN>C||<#Fz#8z(M4mWs⥋8;9ѹk*Ka_șSHOYfөKg0 lܸ VNOMF#⍳66kRRRg{ #RGƦ޽3gc_РA"""hܸ1/^F1 !B! wg/ ÛnGl.u}Mv r_U;?Ѵ᢮n'K4X>-[R^=eׯ_dBLF>}uf B=[ls.l۲-7/\t;vЩKT۫2d:==] {d$6:۴aNo~V`]8;9QQCM[xa~  8('S%B!pL~NazCFkx:M_Y\q/o|}apsw… \LÆ ߿?$<2ϝvsILL1fL1rB߬p.;ޞzzݽtzEVؿwO޸;*f/kB!bg|(xUp+%J(IbR-7OԵk|'IH ;thu-7е{wlllҹ3+WbM/60ףN(&m[iߡ.4nҘ#m6xK/B!{=AD.nc4INn2>8.ݺw'n|z"wW78u^^h4N:իW-2ʻ)rꑙ wp۷n~ &%%}{FϞ=-eggr!꾾TRW"Ō52_>ȯJ(^4Df+7`@ ?==GGƎ.?<Pz5ZjeO\\7nb-tܩB!Bq+Hח~yek=;w`0СcGuosqlbO>C\ exyzINIё.PN2?7[[[=7nɓ4kbbct3 **JhuKN}^%SGp 8@֭رc܈Z/EQ۷mxwB!d"#=]/Ĝiw҅{u5E 1j(c[5+ i_vm9q8{vcǎ'qzv߫XgogGӿ/...VN7a @Rr2Vi lrM  d+/n:<Ī+-uqv{n[ONёV@h4ڶm˪X~=4EQH7'8q6lf?B!B{(q_ ^~FaܸdrL& +XkT{;<777:qunܸ-nxyzy_{'''’ׯP%z???FСC~: q 88ꊏO>q ҲU+կoqLEQ6lXEB!$t:+W.~~[쌳s988Y[[[*Udi8s|șfPTZUGpssXjK!Rш^/RQaB!ĝD뗒9Bq'zwd„ ]ٽ{7t9E( -Z`ݺuwuB|>MB!UJJ ηnƌ,EQ1cSLaѢE[o1eWu߱c?<■m|"gŊTVM{!w, B f޼y 2///uYll,sEqƍbh0^իBvv6'e^W^y&Mܶh4}vΞ=KZZVyWJx!FSB!`00{l&MdK.tVé_>*}TR:E޽ f͚\x@@@cƌ!>>^ٳtЁ*UnQuѣM6eʔ)X^:sQ׽Ԯ]iӦ|r6mg>vIDATݻEQfM|رVK+B!҃/BT K,}TVbyhh(Æ #%%zq5]nDD~-~-+VPgddзo_ZjťK8}4;VƆ0n|@BB۶mGe,X$֮]{n}QX~=3gdL6~Mf̘ƍz*ќ?!CNzB $ɞBQA(G}1c vI~Yf ={$--'N0tPX~=wVѣ_}}nݺO:uJ]߫W/^|E{4hРL|OOOu/_fǎ|wefB!ĭ"0quuEӕwUDe4%2L$$$a;IOOPA(888MHHwr1{nԩS( /.]''dĈܸqKtRƏɓ1Lt:~i4 NNNL8jiڴ)dܸq\{G ;viӦ7Pz!BCCUu!,,&M0}t:wd͚5ٱsN?S&LFB!d Cբj%(A``ƍ]M2|p*WsC xwvF\y۷/=zͬYʼ\Fcѣpݻw',,(lmm-n[o1yd nnn1|fϞd=ӧo/m۶vuqq'B!ʊBQBoFxx8&M[Xц;;;Lݺuҥ .$&&Çckk[F,ܭ\U(ѱ}sϻF30cƌ~L!*J+]?u+V 22eٳXn۽{7+Vp1 lذWcνфǏ'22 6`0-B!~JJ  _XpB T}2ڬY4hׯ_/*zAݕ'( ĵk8x }{&5^E~& [[[v&!B{^,eddcjժ'F231LW1)(&wՕڵkӬY3fΜns7?0 x{ySNoNFFFy5B!< 5l0u_M5Z*g.pݻwӷo_<<<?GQrR)«JHHlْիW[۬YwaQǿw"M "`ް+{1&Ƙ[4Xcl)5F]ctؗ(y9؝۝ۻiXXXеkW^zq߿OΝqrrёVZLݛڵkvZʖ- _}=::^zammMɒ%8q"Z0ˋ7yyy1r1&&PdIݻ^˄9sPD J(O?Dzڵk5..///_x&I <|t: FMbR񤤤jh5hZt:vvv\v_YfqujuFFj8F4_ѐB||\W(xxx#ϪPغukOXXX=p@駟+ٱcGHضm[߳Çftܿ% |@}_ ȑ#L6vڡjٳgOW\Yf=z:j>|8ӧO~c֬Y3rHBBB0`Znݺ57nܠO>z{fsNJ`` ;wd̙ ɓ̘1~affƜ9s8rc͚5tԉ&MܹsqssCղn:KHH6l@iViѢ˖-|rJ5kVe۶m|Wҷo_͛ѣGs9N#44OB^#I(i6hHNN$IBVciiI"E(VjڵkrJ*W̾}x~)~~~1ot˗/3M?hwV?<ӏjYr%saѢE\2{-[FLL K.eҥcddČ3$޽{s5-ZD:u(QO̎;XbaaaTT;vT*ٷo >|R_E@@'Oƍ߿ӧOcaaRd֬Y 2ryeI^i* JEѢE >>^4nܘ~e:͛7TR~z:uܼ@㝟M6-ƍSq̏'Og.^‚G ; "9JF>mP"E譯Z*5j2 _ 4RR lyժU㒶;wzjq%((n߾-soJg###֭˃xϟQfM9s& mۖի3|^|IvrLrK]]]'gϞw3t¦T*)R$%%t|)R -[ӧOY~ܲ(}D-Jrr2fffr3/^еkW.\M&MP*qIJ,Iz~:ѤIڵkԩSܹs 觝kZZ%{ ԫWkkk֭[G`` s 3p@._1 zJ뉈DZ V͛eƍ̟?<ΝcQN\\\X|9*Ubܸqmۖ:uУGx۷onݺzd7#Gлwok>}ʂ 8zh,_Ν;sam=;vd$&&] >}::t3fVիWx"ݻw端;O4>A2x]7oΪUhРmڴ֭[޽GGGj֬v|g,YH3m۲d Ɲ;wػw/111 :Tɒ/">> `nnŋDDDd˗/A&&&ԭ[C}v0`{f( ZnͲe055F4nܘI&T*iӦMǨV...7Rti177g <aÆm}AAA߿ 8|0J@LBǎ166LJ3fh"J%qqq/^I&΅ חKj$$$ͫ+Z(pD!vKHHիW~!ڳgsP(PW^՛@P`bbi>yxxȚ5kغu+xzz˗ٿ?666̚5 3336nH9~8*UpU'1 3dgΝ;˅FsN/.003u :t(ݻw`ѢE8::r9WFa޽|7rKӧOӴiS RdÆ 8::R.7OƌÐ!C ӹsgk4MA!'_c ,s΄2sLlB 믿022 [n] Ĺs:ti5kիh4 6{2x`y1cN6m=zҥKڲzj 7n/^GښoPjUBCCP7n@V9.\HJ2d| 5bx֮]CCC5j ɊGחٳg3sL|||عs'&&&4jԈ^n4 <}={ЫW/QTr}Z+ά~˗/166dt:bbbŋ+V,Ø#/'ZH~w6moqޮ%K0h ޽KY|9:u˴mۖ͛-Pl Y&}7os1g~7jԨApp|ܸq___.]Jǎ9v]v3f… y!>>>t-Ǹmڴ!Cw^*UīW4iM4y@j7`bcciҤ ;iӆP֮]Kҥ駟?>!!!( \\\ ֖{Ҷm[/e-,,h]vwqĉLw __\MG+_=ov̖׻|E2H* }$ˮ6J~FFFZ WV2{8@`` ŋnݺ\t >ȈҥKSL6nH~д8S妵LVlmm3]ߚ,HD\\6lL2.]@QBޕ)Se˖3x`hذ!k׮E/_@j5Ϟ=nݺ0p@&N(gԨQ|G[z5={dΝjJ(W'F>ח;꽿st '''lmm嫯N:$&&f>{#*&MPn]6lȋ/(Z(X[[ӨQ#zI@@sԭ[$J.ͶmÇS|yJ%~~~iӆ~}v:ļy󈍍H?}n3ek>AAȋT ~vΝKXXB۱c7nٳgӶmL9Q/mgϞaccCXXÇ׏%J```C}hx...4i77< 5Hϛ7o奷n˖-nݚsp?Mttt[iZ>}sKkCj[{Cʕ+Glll۽Yd jz+A5?߆^QOhժZ*h144Օ&Mp)~Qe˖k?ZBBB8uQQQQF \]]E=b``F{ CUճ}Gؿ?N"::OJyf*MPdY711y4ˉjՊ+Vc$$$0x`T[  PH077ݝk׮qamۆFwB hԨJJHk"IDEEѻOzcF˗اMH?J%/_ѣzT*=z_0F  ( NNHı244֖bŊQLHHH )))(f*Ebbbfffb{!S+V>}zaG罢R_:### ;j ?{"mnoQޖ1GS*ShQlllI>`i k  G _0ގ̐ o*Y6 bG0q%իW ŝdȑ#ǎ;x% *':˗/slmmV<7ݻwv޽Za?UTUjvMÆ 133رc$%%QR%r۶mV*+V yǏsyZh^ȑ#n:Cޝ:u۷oSlYjԨG`ύƍS`9r$'NxqL?yGt{>ko޼Iz ҧO}[֮]˔)S ;4>-Z(s| m۶}'}׭[ǜ9sv;vРA|\z gΜΎ}rQ~GXpf͌9R{1NovZK۶my!fbРA~ 'ӡCF+Woz^:'۶m#00;mۖQFw1qDz#Z[ҦM {h׮޺GGGOΉ':t(*UŋoիymÆ TT ;;;޻g7ncƌk?_Nٲeqww~e˖3v\֭[Ԯ]7o%K'<90vXJ(#9sF;ǏgĈ8;;˗/Z  /1cL0%Js/NGPPL65kн{w.^HVU.]777%C )t{СC^:=:WyjݝХK6<矩^:kfܹxxx0mڴ%$$ɓ' ̙Ä 2e^dNR^=6mJ~m۶*]Ϝ9C`` ={>}xbϟ/X@Æ 9~>/_NZQG#GdذaTT͛纰<*nۗݻws ʗ/ϔ)Sr|O^=&7Ľ{|h4Zj"%''KIIIRbb KRLL-EEEIϟ?"##ѣGRxxt}Ν;RHHtuʕ+Rppt9ԩSǥÇKe[ܹsҹstRÆ zI:N$I}djj*mݺ5_,  FYO}RJ}f„ Rq KamzҖ-[ |.]7?uddd$ݸqC$I讀5kۋ/.m߾=}ԩgB:$I$IrRڵ}J(rw}ұc֍?^$ID266_.pႤR{S{NIG|}}wm߭[\\\իWKR^ʕ+KFڽ{Txqi׮]F;&)SF_$ICI666ҥK˗/KC i߾}r:y{{yEKRչ{#GHjZ/_e||#ݼy3)SF[7b^zǏ%V+-_\*^I$IJAAA4o<)""BڹsVhE8q-K]v4h Oj߾)m߾]*_|GVKׯ_[RRR;wHvvvRddԯ_?rӧO%JH111noiӦIŋJҵkrnݒLLL(I$)%%E*Y:tHPk.R@@TR\;,,L_%;;;i̙ү*-_\ձsܹsG J111ҠA &:]NZho>o߾RRRj%IÇKwܑ$IVZ%hB~o||H58 _^N*I$-_\QFIΝO.IW^-<.nx4eTRɓ^IS)q}sV?.:uJ:w,]rE~"ݹsG.=zH"##ϟKQQQRtt#JRBB(%%%IRJJ\h4_P(߸p $ѷo_vJ6mᆪ\r8;;_O~'Z[n o|j?~L&M(VJbĉHġCU^w}ӳ|ʕ+Y~=+}W\XT><< ?PD ʖ-qqqF8p ӴwE:tv1o<ʗ/+Æ G_x1_5Z֖-[ry?k֬iӦ/^-Zp] q|W_饁$I|bkkKvxIk.TBbpuu{٪U+fG ,`DFFү_?>|Z`*Tk_[[[FɅ DL:UNvpppʊVZ!^^^reYf^^^ρ2ۏ>H> /o[n/^ *pl??kذ! :)Sd{3mڴaɒ%۲ehڴ)}իnݺBmJ퍕 .]/BѢEŋgҥrS111$&&Fӧ, oΜ9̜9ҥK Ǐgذavq( C{h"ܹùsٳ}Z/-MLL5 ʪU(Y$ӧOѣGt:T*100`Ĉ 6 Zh}8n8,,,(Q3grRdҪU+"##fM f̌7r]J%RbE6lnnnܾ}@-YZo9r]RѳgO*U3z-q[nOO\}ҥ?͛S~}f͚.cҿ,,,ܹN9}VJ%nnn <sssv`7o?`ժU$&&2w\LMM?~qqq̚5ʕ+dpRB`ɒ%4lؐN:1e/^,Yʕ1c+WfѴhт˗#IGΐ?<&sC})fM1!o+_osaܸq|DDD0w\ uÇi&6l={?~<ϟ?~u떼m|'̜9SSSc~7.]Ǐc͛lj'͛9rHm·pBׯ{tBvٳ'f"66&MРAݻȑ#ѣ׮]#%%Cq5Ξ=Kvh߾=ϟԩSnZnLHH^{5BCC;w.˖-8qɓ'ٳgӬY3ܹ'}k_2d\"SRRxÇKM6̭[HIIt'OЮ];ƏӧOYx1ӧOܹs@j5..N3"""ɉӧOs7n3׮]/[nM244Yfflٳ۷//f˖-L>]o߾sMN<Ç7o^|VrGGGӼysTBHH۷w.\v^^rz._JkH/tRv͟IHH$e-ςV{̚5ϟӯ_?z^ުT*BCCiذ!!!!2hРl??ۺu+NNN|9ރ^ϴn:NCM/^\SSSHNN0"|AަRfP(L4ɓ's_N.]2?&&&=_~888_q!3L9_ *UҥK˲ehܸ^%Kfxorr2fffz]eLMM144,mEf:~ *ЬY3oNPP**FFF@Li/t*O<Ν;zݻwh4r-w6b?0bĈ\ؘW^>WnEPdz-$Jf钛R ,obŊqWJBPL޽9qk׮p^zǷO/m$Iܽ{7C/%8p`A }N8ԪU"EХK֮] ZajjJ͚5}O"E022Ąm۶P(OQ(lْ}W%Ib„ 888УG=z4...e9F.]Y& 0?CVdI>3,,,7nW^,_:жm[\\\5kwܑkZNJ˖-qqqK"EŞ={h4lٲg9Om۶(Jlmm{pB)J mۆ&L֖~Qvm/_.gРA+WZjQlYڵkGժU\2raoܹ|XXX```'?ΐ "Epn߾ͧ~QTzy^n 5j`ѻwoݻϏ9JSSSr<i:acc#a%AfN:Ŗ-[MG]p!昛̙37o޵}e9=y\ %BڹԨQ#qiҤ 昚Ǐ7n^SSS~W&Ma쁰0JqmC?rU={6UV%((~MnAc~Gڶm d^ZfҥܸqCoicoߞo6C!5$$;;;J*->>WұcG9|0'O,s ݻk׎]ҢE rՇADDDzj$I"))3fEر#QFѣG\jtꫯؼy޲i&lmm $nǰٳgT*4-4isaѢE|WyN Y VZ69}VD۶mQ 6 :wL=֭Ɯ}JHH}Z8pu֑Ğ={XnZBTaÆ y>cƌ\=7qoolْJ*q ƌNK3b\\\8x`+ϽW:wLRν{PTz?ԩ˗/妛6ڰ3fEΝO>FӇ7իիWIzʕ+닯/zOpO*WZyP8N:ժUݻu۬)]4ozﳱKKTRDLרQ#&MĬYpttI&HLMM9p+VQ$OܻwZj鍨_N9Rkʗ//odd$?1}AAAX[[ӡCBBBr|z *WqZd.N.uwܡJ* om֤ʕ+e=!v333On}uUT-[ɓ'3yd\\\jĉ޽[^ƌfsΜ:uSNcׯ_cnڴIo \[&OLΝtRdN:Ņ x/^̴DÆ ӧ}ѻOey] %&&MX}Oݺuaʕl۶ 333zLJX"eʔf͚򃎡CRV-|||a֭ѯ_?CRhQ:v!E 2Ç|3gڴiC~8{,nݢdɒr uĉԚ) ggg.] ->>>rA,--z*nnnرnݺw6oĉ)Y$NNN?~͛7T*9s&/_kFADD:tU^={sNZjҽ{wnܸ7|%?3!!!0lذ7N7K5kɓ?L0ׯ4FbԨQЗ]ܫWΞ={ ԩSL4IN{ĉ 2ҥK͙3gP*9;Jnݸy&&L@ЫW/?at:oZlڵk3߶m[qppCCCZYZZLjը^:,X@޺uk֯_dʔ)VD5s<;i?8V[9S9p*Ukiq}7^!>A[|.C U$gggI$iRm{m]tXRll"ڵKƌ#o/WeR =_[xTdIA""" O &-[$R8߸qCR(0$IҎ;$I$___i֬Ye˖I$RjUy˗/%J%KҨQmt ͛z\qqqǏ%I+WH]tʔ)6l IǏ4$Idkk+mڴI$IX~z9^zI?ܹsҥKM6_|!)oۯqF)..N233ϟ/zJ$I2d|-?ǻwyKzyl2zq.\v~KzKviݷo_7o,Rrrr۲,h4޽{$IҳgϤQR(҅ 2 _9M&uQޖg>RJI=(M&-[VΰmСrz {=zN>-IRV3I2du9 w- =aۑ#GE*d2^zT\9U裏Y R&2|Hez H$i4),,LJNNtW`z]V2 ☞Zr,Ubbbp^WO KڵB 4n8Gf͚T*֭[dzgfzNNNr=x]v/&&dZhظq#ΝJLL$99SX1زeo*9רQ#ذa'No.pMKzKviĆ 8qw'm}Z*Ɔ:`llJr'd'|fsC T)Q͚5رc$''#-Zuioߞi"E믿_M&9yzKڠ̛7-[ʟ۸8ȑ#ce077_eӦMzW\ɚ5kꫯy&W2d,BeVJkc+V,ùh4֬YÜ9s8z(Y@:=ܜ%J{I{{Ǵ>իWko;Dn啯}_| &0tPƎK޽|lBudvr䇡4;6669x ɬX;wmKHHӄbŊ\OsWY-yay&޹nq}uPWcy{V^͕+W-,,Xh;v {{{\\\rUI3uT._+vvvj y{=}Ν{Qw)))ܼyH&A(HΎ;ӧOaGݹs>7oʃ>IHH‚jժq,gʒBߦ[r[e??ĽW/S}3[t:~jkfF:?Q\3@ ҋ/011U9)VX!Iި:FŊ 0BdVQhZIO<>_ODcǎu֨jM>`֯_3'))\:gϞeTRk򍌌2ߴ}ӋI$9ovryɗe/Yɓ':pݻwɓ'nK/Bdd$VVVj벻'd'ON{<{ 337g߾}Ypa"?HLL$...{HNq,h$c %KA-:.>#G```J٢T*B_3[ %I&QȮj~ 8i2aɒ%lذ~e=)! O,ollmAhѢYV(Y̛rJys]Bm:/) #*|Nܜovryɗe/Yu\\}aHԩSOsܖ^vyhi+9{Ne'7agŋTX1My'7q,h BobA wA~!8}:7ѣGӽ{ o5_~eaG_GAAwQoŋ ; *P6mZ%ڷoOMAATx)-RG B$$?;P   *-~E –Px 6ō񴡈ezy  P>p5Ƥ!<- E'@PdN5yŅ󗰶lIi7>--  Bk#^ɅI"q̿%$(I=1PIwmj߷\/kyaۇ|ewނ   _"unŽKS_Paۇ|ewނ   BnKLZx]I]y  P>|AAAA/x|E>!OlӭeÙ5@OFeկ}EL S|˘dU-A4w%>(4$З,   Q qʖb=ʳ5v9g,:ۙpB m>띜yCHh[?7WItb+f&ђJd]@hMq   |HD? qt`dڋތCjald3*Z TҘgQ 5}?qj6}'èL.TvqM7>_#TEQOmڝ7w"-QOoD2{S[ϙὫr3mť[rќ_g.>I^4ᆙ!/G0y|^pX}k:|E>sK/.A˘$L\ֳ ExxG>nP˘$~YQ_y{w+VJe(byQUt0mBl|ƖY]#U+:'"̊,*q󏒐o>I26≮Ha o$IhZ WB w}_Mkbg9p*OS ;Vb xЦ;ac=f_>$gDj ~/ӗrL ;CLl2};8ښұiY>#w`fbH`@L=r@u/8FѻmvqY75$'1d>zE󺥱-n 1ET';3LN`h3_J˷1k0ki:|ӗ3nNhU Ͱi0.jkainDQ;R+[ߢ;(bI:2 }èsN$ jX*#?C4e-ZTxo,[u}gΜa֭رV$ BN(q7A5W]-) `Z߅gjEG.\Jȇ"652gkowEPP6qiTÍWe")Z9Nn¹Zr 4Z/EObq3#VIt: [kM[c#Uuuw,:~+_NrHj˅GS JWs<{HL| Wo?KIJe"g>4} ˹Or9):NJNdwt_|%K|Vˑ#Gu $&&f6<A׉~/9E:QɑBGQŒ˷q3龉!18ؚr9ŌI>:6f &.+ L!Fk ϩ0*{Ss_8:gge[q~^LxD JUl2V&(q',,sKoh:V*x#Ks#k9sc5 ~H3=lZсˠ_Sar2M߷vKj9W.oϽt_mL16Jm>_#'eGvHn,|מRP%09s%Z~(XLL'Z͏?ȗ_~~4hRI.](_<9OTҵkW,--i߾=_|[n%99Cp-j׮ ^^^̛7Oo/_dСCF'.\`۶mHɒ%駟ruYfqo&L 8}&44eί&Ő/3g&L`ʔ)DGG:wsӧYz5Kff :6 ^&2o9 L8S>COD#~rA}Vё1>k<"04P3yhm\͙qcIpNi/9u1?e DJ⧵25.A X:)Iv&QKzO_$pcК/t3=8~ᛏkҵE9z-=$1e VLkK .-j%Ok/|jsEQXQw^ |ՏOb9|CiPݍ߷>nx;fvA*|Zs=xŶMܜ2&fǽF6 aux̙+i΁Sal=pWcO EWAx֭[GZpsrt5-ZĘ1c(W EZR%&&Eɒ%044dԬYϟK>}`ܸq$&&rJ.^1bJ U\rߛ֧~ `̊A*Q(n_LJJ cժU4mڔD<<?Rf}ߥWKngu$&|k^Ν;quuʹ Ν;)_<۷o32dUTI~ѥK/h޼{l|||ԩ111g $ JB;^D'wnJ8CROq :ʬDA]o#w%x_dwނ fΜԩS3ݦP(B ڿ{}|||8˗ޞ9sЦMٳgBW_}ŶmP( 2DnNةS'H2eTL0A}NzŽ{pssƆTޫ4i33gd֬Y8;;SJO8!CPti9s J<<özArȽ{hժ-ֶ$ PRI-[kqмM 1: 0yZr?-/-FѨQŽ  ||n|6}aGCכ   ;/ 9aaalݺ7ndֿO?ɓ'y۶m#<<ɓ'ٶm^zǺq۷o'%%Vϟ?GVX$q=u:A>b+AAܾ} 0w ێ?Nttt͛7166fŊTP'O0uT֮]Nѣ||o˗ӧ>2֭[ɉӧO8wܡtL}Ky+(_<4lؐǏϞ=4n???ƌ# %%cRD  ̙39~8#FdѢE8;;ݻھQQQg=QQQot AAA_.!!zammͺu dΜ9za˗166&!!A^RX~=L>UVjټy3lܸ100ܹsl޼### oƙ3gXz5w ))-ZPZ5߿͛7ILLo߾rJ.y cڴiÇӣGtʕ+78q3g# Dfx)ǎbŊۗ%Jpyϟy7<<˗/7xv2 ( ڳgsP(PW^%))IP(011AlÃ@֬Yg}&+$88˗/~lll5kffflܸի@޽X"EرcsYÑ$~ŋl2j51k,Ν;)/^xbzɀX`[nZf͚ot:SN(J 1b EyJ1c`mmMvׯ񘚚q%$$0ydСC ׹sgk4 C )FA |_A Ttt4vvvz}/}1ŋ?0b J4k֌۷J{X`ff&]hQ?z||#ʗ/7An0*Tn/*A_Ih$I$)EɯV+fh4 ̹H_ʕ+vz {cɒ%rrFCdd$NNN͛7~ilB֭9wθk)Rkk ۞?%N˲){ll,899R :ߪsrʕ,[]x{{djժUQAx^7:rT -JR~M( 5RAAa``F{ C ((@U/GG,d3cnn'ueʔ),YoV^RJMA_@4AA(D+WWTу0A A!+_AYXXdȈŽ / 1    8D_AAA>/   QAAA(   @AAA |,oAbb"!!!$&&$AAAh4Ltgҥ`u$@BB)))aaa:+}:DEEݻi޼9 .=-tAAɠ# 4gPF 5۶m? 66?ФI>)7i][v2/R j={sNZ-ƍ?̌Ew$&&beeŴi)Y9yAAAD۶mݻƍk. hժ5k֤_~;V.GEEɵ...Z-caaw۷oJrr2TTI>ZӧH@RR>t?jϓLŊpn`ll59sQ*Siqi+h2x` șqvvϓ'Ot|E7ϟ?իWO>Ç8;;g(Q///KIIڵk<} *]n999:t(jĉDEEqYW!ܨQHLL,öwɓ~r}0o<>,2d%JDh4y}XX~ԩ;wPvm<== uTZ%J/]D%P?(QB˗iӆŋSfMׯ5ڵӧzqoѢ%JO>᧟~x4l*VHdd$?#ŋqƔ/_&gݻW^ >i߾=4k֌*U`iiܹsYӧ3gΔoݺ5%J ))I/Z?֖f͚퍯/ i&y(Q5jd_ 95ϋNIA\?oz   P05oАjժeخP(6lC\t KKKjժӧݛ+W丏W^ȹs022 99-[p\6׮]lذ˓~:˗ŋ)SW^s޽K^+RJBpuu%>>/^_ϸq8m,Y$ITRG+WOٽ{7RCT*|2OZjܽ{7C+hZbbb9x ;wR[nytOAAAkuNk7l?~̥K3f ;v`ӦM?4k֌޽{c*WLJJ܊y椤0}tKp?tPBCC >H̜9k׮quY/8p w/_@>FV'Oy&Jϝ;SSS~w`7vXݻǃ `ټ|2lݺ)S8qBn2Bȑ#={{QlY uyIh4ry;;;޽˥K8qℜsu~=z ,,,Օ޽{Jb޼y/^J _y&ϛ^   ~}Z-7O9mkGMz2e ܹӧSbE r<PX1fϞ̞=[fnH" >E-oK[off:E_Z-Z'''077wmÆ ?`Ϟ=y|駨T*4h"YGRR 2tUrjr޽ @vpssf͚rM6Q+VAqqy̆RP|@f(R5k~ϵ^0f^ѵkWN> @۶mjoݺ%ネ 666t]^ѣgkҷjzj9666rˊģjժ?M6QBbccjժo|>o+ y&ϻAț)SdCJɓŽ '{zzr}4<뼽qpp]v >-'ork@܋cҥ\x1öɓ'3bvIIIモ/^zQre >ϟ?g|oeSLaȑr+Mn۶ 777v f:w,7#>KK\Oݼ9;w.?#ر#ÏRJqeRRR駟(S ,;)) {{<3#ٮ\2+W> emm͊+hԨ$1g7oNƍo+Ң$7OA_ KҾ}{uϞ=֖ŋ3j(^x=++W#F'PHMÇ7>d>dݺuoj*z%OgΜɬYe 7ѧOjԨȦMسg{r_i@t`i&ͩ\<؛_~\{ikk+O+l>z􈘘yڱzH޽|2/_wrˁ9ߦ͛73b 9pk׮0>#=ӧO'&&NGqpp^{eW-[8u.\SS7q֠A*?hР&(|Ȅ 0a{zhڴ)ʊm.k &L`ʔ)DGGsGETRvARk!/_'C4k֌+WKڷo/N:rMapqqΎgϞe nӦ UT`T?T|\| y~ qF*UDJ*UĄ z^Z.\jZFAn޽8q]RfM-[3NNNr| "f%--v튛?S|J%=RfMJ.MժUjX[[3v7Jӧq}JŊ;vl?o֬M4711!***qi۶-˗GTr}h׮vvvot&&&,_\~3g._\`iYPPy>OIia.44ɓ'sq֭[ٳg/͛Svm "5 {aÆYٺu+?3Ӈ^zҵk:u*6lL2l޼9W3eׯObŘ0a˗/ZcܸqXXXPD fΜÇtJEϞ=Tr1 >(([[[Oi޼|T*qsscӵkWy߮ :wLӧOFm^zPZn]W >Rh4)$I.:N~MhZ5EdxtޭEիȭGޔqOhh(e˖ Uo' ْ%K))v… ٹsg$qEz*y-fTR'''muԡK.t3337o_M-HIITRZCٲe3f '""={S(TXQohZ9x`[ɓ's y]TTNNN\|OOOf͚ERR~-_}|'\t޽{g:`aNq>mڴʕ+:ucc@jw;v"7yڻwo4h@>}Aܿё#G000@RexlQ*kEPȯ-T5 ?XOK(//\!uJ2eeRG¯Xb{HL2=߂3^^^R555_W/t7˓A3gdԨQnS(>0PBuwwPիtkkk>ɓ'Ek׮tԉu1zh6l ooڴ)/^~tڕ;;wrJM6̘1ϟ]߂HJJADDDzjy3f-*;(׮]o4ɪUr=_}Ny=7m a4Aɓ'h4ԭ[@nݢATXF#o755e/_{{{̙C6mׯd|̙|Wl۶ B!Cם:ub)SJ*amm̈́ r=/ ʕo߾mۖE͛8q"%KɉǏyfJ%.]b֬Y̛7'O?믿2a ;;;vʫWrnݺqM&LFW^?~\o‰'2dJ.7gΜt 3g}YA> Dv#_` ¿][lښ:uJ\Pչ*lْ-[2dyFѣGE\\)))Y{)FFFXZZIJJ4$Uo5jTSA(l~ޛ/ APPP?V^Mhh(\rYoA"ntot~FFFeMP(ML<) D}AA:GGGt:Z  w^*NAԨQ#5jTAAAA( &,,[{$11~'Oƶmɓ' tIĽ{t:߿_A EA\}6 ,`ܹ?~|7227obll̊+Po?GS;wPt ҫW/WNJJJSA5Q/ ƍӯ_L\y&*U~ׯ_ON8<Ӹqc||| ,#G׷dԨQ+V護ѣx?  K/ ҳgO*VH24E_d xzzyVwww @.]pwwۛgϞD`` ӦMc͚5tޝ/ҪU+z*AAA1x`?.#$$VZ䄋  ŋ={иqc3fO&MN駟pwwrt\OTTTSU( o  ի5֭#009s8p /_ؘyJbDDD0}tVZVeڲqFϟsαyfyn;|ri֬ZW^ѸqcVʍ78y$ tÇӣGtʕ+~z^xĉO)RK,AϘpCA4y  ={h;w. *pU0 L f>3n݊?seߏ f̌7Rzu:t(ݻw`ѢE8::r9=zqPTXXX0sLJ,Ixx8/gϞ 0 uV9nVVV >ӧf6nHٲe\r&!!ɓ'geΝ;_h2dHag  h/ r/^x1b/^ ?#*ЬY3oNPP*JaAajjJBBɘRDtt^ͺJXbzq/طo7odʔ)rm~n$%%q5,--2#j+WACA_nݺ\|kעhp[QV-̘={6J5k닗קcǎh4FEY:&IDAT=?rU={6UVADDDzj$I"))3f;7fɒ%\zZҥK3LWX1N֭ VVVl߾Uy,-ZÇpNAA7QA2eʰl2>ch߾= 6dڵlٲ[nQdIvu9CMQ5jG[zjzΝ;iժ^K+Vo>[.666\m۶aff7ofĉ,Y'''?͛Q* :Zjネ [nϏ~+gȐ!>=777óF  ;+Aፈ> H.22'''~wy{hhh ڵkr4'00sQzum}O>HDLL za4h;wx)FFFzM tY6ߺu+۷w!"~tttx ¿A\ϯ z길d^Bm!>|b2vaVXI(WZ6_Un]lɓ'$$ЫW/_AG＀/&A!߿͛7Oʕ>zU*=z ,, 33>]AAx#  ﭴ‚ƍ322"00OSA h/   w_/ 1IIIܹs0Q*t:$IVPȣSK -0G~ILLH"(L#7mbbBx{D  6B}#Wo$xn߾͓'OUS&a^/%˗/177/¸Nɓ'h4jʗ/(  o/oIrr2`meMŊ155ӧOB|KiS]v,--144ԴOQAA %ܺu ###֫^pS#p݆$P|!Lj)H[V144ԫo UF\\7@r!  o( [jɓ'6+?5gZAQ&}!mGՠQQ)y%5|j_r-J*>__Z-eʔ?Ƴ'* AAAxD_VZZ$IxK+}4-\^dV¤/~^*4 Z65_˫=~SbE-½NCajjVҒNAӉ  ֈ~>IĹs011ۻ@K.]DJJ >>>888yׯ_ NǏQո㥤$IZ|BN?Abb" EbooOҥ?\&&] d;[z8LZ.ӱ;w.w_~aѸyk 99CCCAAm|5kGϏ .Ѿ4 _~%?#|ȁӚfrmmf5 Ȟt:eʔ_elF~$O H7ś_[a>KZ ^VĉZ ]vJrO$4 :CCCJ%Z6  PD?6n7|S`6m ˗/'00N6m8~xI)T{M||;CHki % IhР:-[2p@K?@& Бϛä))VR0[Z2)) ͛IJJRk_εk(_<+V̰Fɓ' LJRJLvDEEq bccY&%K6rS>ɬ~näS000̰Аcc+@j Ԧ?$H+'''g  P/NE>ūWؿ?RJq ܹ?'>>^.kZƎKiҤ nnn4hЀǏg܄nݺRN\\\XhݻwСCl޼Mz=Pvmlll=ztXV-ʖ-K۶mSN$&&x:>H~ڵkqqqF~)qƸSjUJ('0#GKZNPѤk45Iҡ֤nÇۣѨst֍ 6жm[ZlZs:t@~ض} `tڕS'O:ugҤI,X GQߒ"B0 ~k$IHHDIIN b+P(HHJ"!>HJJ5  ;!̌SNl2 l'NؘeRZ5ߏNXh"f͚Ś5kЯ_Lڵ#!!cǎ͘1c/y;w$00]`'Odȑ,\h?g}̙3 4^?#<}gϞq /wK.ѧO:v{.͚5cǎܾ}[vZ= bʔ)YB@RM&&iurII+… y-[Daiisc̛7˗/sMy??.\`۶m^Gʃ?JH贩- 8rI&L4 F-GKj7`\8x r0jujF~NI]R֥jj4 ~$ R(  oݻ/+y_TV[lYΟ?ϬY055~I&r!9ܜ9shӦ ]tАƏϞ={ C:?@@@JO?9sȵ9qttdӦMJEb޽;@- 4 III\v NG͚5 [n$K,AT2{l?Z[2ydlllppp࣏>KM_gyRJkӚ˃)r +WХkX`AAA >REbRP(Iݑ?J*^2X-ZP*9q<]P;#<<ǏQ(P/] aҶI[&-rt韫0O-+_۟AA=aeeW_}W_}Ebb"b4i҄SlYBCCILL xl>$$y}rrrTXQ[P0x\ǻdɒj&NիW uf۶m4lkkkw|w@B 4)KSA/( (J *EPDAb""J&Co'.{w{%2k_w3;;;wyy_?:vX,iٲ%ʾ2e[cu\ҥy`+dkM&iڴ)O=׷Kt:vɷ~˩SHHHnEz*4iDӢ5̙3 dqet qqaˣ: AX/y2~9lӤ+=== tҷ˓$̒`@BR/(nX⧾8a %ٳg;v,SLZjұcGZnMXX?֡CwnW΃>hYvgv׮]v͛i׮M4}Kиqc덗/_={uV~֬YCNxx饗z^&00*8`A|Βo+ccc3fUy~FɈ#x yz<<<,<<<2 88/jp,L"|aW\yl t: Y~}wN֭Ē0 J :u* >r I=+˗/>D ,N:XK]/§~jf20͔+W*Uĉ'ڵUT;veu;WF#uaqG|GԪU?'ҦMΟ?_˗ӲeK}]:DW,Q۶m֭[Vo> [e,d'~y[t) 4`ԫWOkҥKSbEvܩl2|TPAY-22??? ͺG-ɣnuc[luFff& ҲeḴ֭Wyy@%XIMMeѢE.mʔ)V(0L4q1n8f̘;zi9bԩdeei%$$t9ŝv[z5B 9p;v,gϞfܸq닧'u駟d޼y\z[ni&i+myꬾ>w8:_qcLJzCΝiѢ*T+[-ձbѢE<.]Zwu>S ne0([,-"66???ƍgπ˗sUʹx曒n6Mn3f_/* >F2e .dΝуzѯ_?J.ͮ]ǔ3>}:˗YfT^]ne˖QJtB2eزe ˖-#((sI5j0tPZhAݺu)U}aTPݻwk֫o߾ <_|???4i?̙3UVe͚5ڵڵkӰaCٰanƍ.h0˭vBSqw$F_}U*T@vܹ3==cxzzү_?/_N|2Ç ((H)k޼y 4{SfM&L@JJCUg,<dQo;"u Fڵyˣȑ|||L6M9yL8 6ٳ_N>|gҥKf@ "\"@իE8;..^{J*€x裏J)*}dˣ{ќ7nD$.\ի b߾}\v˗X;g=x ֭{,^'Op%͛Gnܪk19sSOw^U]pgy ]'A IA땹ܒ$o>>,\pF]A$lz=קN: /(RZlY妦裏OddT\ׯO?4z"""0ׯѣyGX"'O;zM߾}W”ܹsԫWʕ+sI ۗ8&Měo5jу%ʊ+ }̙݊#AQS_ԭ[+W̴ &t#N/ʕVZ |AsUe5$ @;"&&ݻw0IN~:7nЌc1o<{=233\|MƏŋ)_}ǎVy?nyΝru 5*X @ b)y͛7IMM-27}A GzBBB׆޽{IWe`SNGҥ{{{kGfuD`` 22eJ+A~&%tP|yapO @ (  !@ AQ""> @ @p ~>y&Nd2j7o~ʕ+*ѣܺu)$CrJΜ9SdOIIѣ|7ot5A.9|MIW!!!'|̐!C8rHIW鮪A8w\I7=CQsXzuol߾e˖駟z۹"..ÇyxVZŪUxbIWG}c6nXջk?X6mPlYbcc o-PF_~PڴiCǎ #111OeժUUVرH2¾N^{uoZ H1[n~E---jՊ*UVZ`:vXW_-VXdClٲ&M`4Yvm]n]v#""`z)^{5vaR*ߝ8p*{RRdffr5СCڵ+Oǎ#>>^3-!!۷}۷Cc)))]'X(]͛7^:ׯ_W$IԩSvV,$Yd$IڵkdffZ߼y;w=޽{ٷoy.\y=F?X nݺv]vF#ɓvqλA (iΞ=KՉ>J>}:ժUcҤITXuZ '|f͚_мys~aΝlʕ+ԬY &AXx 2e ̙3I&1uTM ^ҥiٲ%AO?1|4i&MbJz۶m婧࣏>"66 rjԨ믿ȑ#W;vr>}]Nxx8=;u)ƍgM8t8q"+VT޽{7ժUI&;wΝ;xlegg3~x*VHxx8͚5c׮]iӦT^*UX;vsUwMRBB.\Hll,ժU… nߏΝsڧ_~%lݺ:͛|?֬Yڵk[s֮GUcΝ;ψ/k׮ԭ[!Cvjݏ~u֧999 0VZQF ֭˸qj7Çӽ{w|A^|EVm۶TRٓ6mievF3g~z]mF^~ejժEǎѣ]Һuk ~ѣ<VGj1bM4|;VIw}AeZjԫWOXe˖+WjߩSԩ+W>}Xybɒ%</_G}m۶Y/\N:V@7w%K cƌaΝ̛7Ooˍa?;c^|9;v૯bԩ,XӧS|yz-b6b>;X~"## ""(*V"**(ÕD&O K/ .$&&c2k,|}}Yx1Z}9rL:uDƍ9s qqqddd0`<-[(tէ-[pQz)忛v5k={/ ##:P^= @ٲeg֭hтKZQG})_<(du-Z@LL?Xb+W/2`VX… ٻw/?Gp_~%F8ps)#kN\2g+fw\2?3W\a;J͛7:u*֭c߾}|no>[7 < ~E};v_g$%%Ù1cgϞլ׉'֭]vٳ\rr1rHc_gqM6mč7ݻ:瞣gϞ9sSNѡCzi5믿O>_1ªz)׸pBQιm6O;w.sU~:qqql۶ k5p@>SΦwJ9wׯ_gkH~^,B]t֭[ܸqW^y#G*e?͛ٳD.\ܹs/\M``￷;}7sL>3RSS_پ}2HoWA>|VOرc W4N… yGիSNUw^gTT "((~As)hժݻw',,A1h +wP^y}]^: 6TְaCONÆ ;v,:u/`ݜ?I={6}!!!]V#*Ifjqz+V裏M-IJXx1./^l6e7oĉyWo={6M6pYwWVt:~YxzzZ {^gۼJ FbРA4k֌ŋsqh{/~lҤ CߦYfL2Ṻ#xg_> ,ɓٳ@5 rt֍ڵkz=~4nXi5j͗<<< ^zDFFҮ];U۶9 =?INNfT\(VZegrFjj*3gΤaÆ,\KI \rߟcr%֬Y lt|'% u<>>Rre*WLVXf qΞ=k^^^VtbbbsW\?{ Ο?hN|cǎ)e;߿5kZ?t\~Ν;[#>v?UڿK˖-W)S~:/Aqҥ 7no_W2@<֭[n{#2eӠ %DVV111f߲e [V^Ł>]67oXt]~yҘ?>C `0_rk;vVZ4mڔt+T3/Bǎ1LT\g*Uol/>`彀y'o 4ٳ;)S("ח;Һuk矕:h>mo~Y~![Q͛7Ӯ];4iBy饗Phc7B(#Hڎ*#1Z#\/;t:f-U~~~looo;vŋ]_%K駟c1chF}㊼;Ah۶-G%55I?>ٳ3fpAź3f /_橧R &22ƍs-t‡~X=cDEEK6mXb/V MJpp0/2֭#11{]:s͍7h޼) eG^1c&D"##xyy1sLf3m۶%##> oooZjsI$CR߾}'ׯ/fe/ƍ5,%$$X&|RΝi,WtR駟ۿl2_tYK.I ^y%99Y:d4ߺuK$˳uSwg#F&L`?~wUݏ:t,YxgK.]8(nj );;[JMM.]Tv+䊤$y|?#ғO>Ydv;}n4dyo 9 X,GaϞ=:upiN8$I޽[ hIKK?~ &ТE "##yٸq#3g$11+V0l0ڶmȑ# 2GrzdR.?lْ~3fj*6mK.uN rrrX~s>>>9r_~ÇΚ5kʢaÆ4hЀG}9sb Yr%?bq7>>>zON:Y#&NW_}ycӦMdeed˾;Zt.]ڡٳ|'Kū6-[Xd o5kִ2JOOgΝ;v%Kpu t%ҾJbŊV ᶇSXXuZ$pB8~ NpppU^U\ݏGmF+̙_edى'p+˖-s-(wݝv.AAAZܹs̛7ԩSrŅ}n0\'w= (+NR||/XL@ *T&(~f3&I٤z^ w(N׻t*UTpc0좭}B~` b@ @ (E_ @ {!@ @ _ @ {+x@ @ |@ @ @ @|@ @ /@ A#,@ @ _@ @ (|_ @ {!@ @ _ @ {!@ $ XAt@P2y"̞@pwc6kp<\  AeCj2r +`렔?@H0)aaZʕB4N<+0uTBCC>|xIW֭[lٲU)R$I⡇_|%]@ % $Af&?GNcp<.@j*`̹IdgȠڴ>{ "+CPTmBʀ^8 HMMeѢE߿.mʔ)3???2L:liٲ%5SN_.-!!/QFk;]r~=z0vb=waN^h!G|@&\ Xߓ`qtoV!e@7dk|Lp\lQ ڍ~soalYhO<KV]~0>Sx a0([,&Mbƌ3n8jԨ ܮyg5-|7.W?^,Lҧ3f`̙%]e@ 1&܏Lp% OC?oI6aƝjanX̞ !`p2h{NK*u mpβx1999̛7W_}j֭iӦ z޽{e˖a2/e֭tЁX6o cǘ2e ̙3I&1uT駟?>L4I&xb:XzQlYjԨjՊ3p@BCC֭ϟS߿Fĉ:dA/лwobccUdgg3~x*VHxx8͚5c׮]J͚5#66m۶1f"##Z*7ot_^Es E|~h#garh6 gށ%k )J*}aZx&l%KX>as}ϟŋhܸ1Ν|vضm/f׮]|嗜}6mZgN: ʕeʕ5x0o$,KuqI|ċWd,3g5:.Ь<U<&֮]KTT"VDGGvZx~gEKpp0oK.|嗼kt:%tJeeed/((jfy;3f /"Çg̙3GIKOO'&&ʕ++>sڴicUfJT_wt֬Y3U"E_ W0yxK[B,m7țbfUVJNfĉu#:uP]s WVx"Zl&uz~kL- 3foht:|Aj׮x=JXXgƍHą Xz1AAA۷k׮|re]`;FFFdݺutޝŋ+n.]b޼yt֭ӝs7oޜ{=z=M6UڵkǩSѣ}SNX(sէ.\௿g)A |]>6@lpGEo+ec>lݺҧtr:EkqMOʁcga$_s;vh4ҲeB-755G}x"## N:<~{AΝ_>G… J9'OfذaT\Zjk.ŵ?::hʖ-K>}u^^zԩS*UдiS%^߾}cҤIF϶m\^۞={x9s&{~cҥ;Ǐ<ooa̵k nݺDEEi&9|0ѬY}IϞ= ̙,r@p3V$l6+d2)Zh{}u~"|:& 6,ҳa!vI^Nc~g>gs7G[oy9ExZ$e:X6sAJ2T yp{I<~z@`h<2+^86 .\駟(]4@aEr5 UGdq@<.& ~0YTp@޾z_#|wDȺ f `xHR+@ atf8t^ƵZ-IujժEn]F7lDI_̰t9h]ƙ^sDY7a X}Yi%@ /\O@a1˔vU˴lyM&f̘Ne0f!fS>:kCKe:+ѯu),+:CVL%v@  @p'?A0cqx])VwE}>F0[z/m*0vmL#GbzIyF/ytͪq lzR۾?o)j3$$$Ob62dG)*xoݺի9>& d +(VZŬY8u/xر78c_uoβeO 6nȎ; ;U/IHV$& c.>+#;Pà ~… :t:j8s[OW9+ZANfI)C=ʙ3gSN%++a'7n&LPIHHpkYbݺuzmFjj& wY%IbɌ7;w}+Wo_t)۶m#))XN㏌7NSH[۷kŋ>|L6o\hnڴ^z+Ww^4WϷݻws N>͉'WXqT.߃w %u/#@p_G3Aw+{7KJGA+8L&HI7@aۖWĻ&ͫROy\@ ={6Ǐ/._W:L믿ؼy3۷' *->>R|y([lIWIUN};vV^/ȉ^zzNw -B$7onm۶;[lY>,ѫZ(na۹z)f̙3TѣGZ;ݩoֽ@|  {-3=?:<3bcc/ڵ+ueȐ!$$$_֭[С5۝>Y&kV>FfΜɟeόXj֬9~85jԠjժ_.zj֭Kxx8*U⣏>R~'-Z?eʔ߶}\̒%Khٲ%͛7g޼yH?Cjh۶-JgϞiӆH~=zO;/xxxATT+V˭zQQQDEEw$&&2yd^z%Xp!111;Yfŋv233ԩ7̙3ő'&&FsPСCħzF8|0ga.iӆIJeK,{Fcٳ'.AAAkҿ:u?O^\[Aq7KwG>< AZ6hzMⶲ߫?۾4Cޅ"^g `L`[@g-VpL+ }\Ytp4H`΄ps/4YAՋfOOOf]^gر3`n޼IHHzN… \ь?F|4h3f駟&:::OunժAAA[A٥+W_Szu6l`aÆ o> ź*Ig,"?'''C$e=z^^^zVX1 /_Nlf˖-Ջ͛3qD6l@LL gϦ~zڭ0hڴ)>gN:ea֭ƲtRGǎh޼9#F`ɒ% :UҮ];+ΪUhР"\^Ã1c0d:uTh׭Ӽz=ъA>}6mn05j'u%""{Ҹqc2===] ҧzs1BBB4뭷hݺ5Gd2tRVݿkUƦMشiUTaʕW#[l[p]Q}'(/Ĉ#W5 rt֍ *ၯ] |sW_}2eн{wjժ){{Vu|+ ڷo_AIp%FoN$z@WH->w6 z_p0 @* 9?eun^ $'1rAXxqfw4^K;JK [C! w">>>V<<|8gfΜ9nLJ͛AW'# ĨNs]*h:;VZmۖ?L}YSlY>>|2s5Ξ=kwNwCξ B]'MQv- *Uİa(S]{x6dee`5'`={dر↓_^z)MW}n/g$$&&m{}7nv[˽31Țo?>w f;햓_~mRSSyw Tvf͚믿 / :M6 :/gy,O̳ȑ#O_?۷oOe̘1|Eͻ'& Sf2<'sS3u+?sg*7w S`+8 6 BBx{RAP_7xv4L] `URBn[ݱڻJs0/}s*}IpS i۶-̘13gC=38x {,._GH7nL&MT\ATc=FTTUV% [ ɓ'3l0*WLZصkVhy)[,}[Joذa;wNK.|wDDD0x`NJ.] g̘1TT(ڶmKff2Š ̚5HRRR$22K*1׮]#,,uŦM ##=zӲeKϰaܪ;V'((Jg}fΜɞ={Xt)cǎߟ^xzQNTBӦMV \Çf͚5ۗHeα#GpUF'qq*UDdd$Ge˖DFF*]߾}cҤIF϶m۬ڵ+bŊ_5kO?޽{sԯ_ѣG+ ڧDGGSLΝk=^2/]mwU^z1x`T L4S#8.jgyN#**X3g`ƌ̙3m۶/{|DFFҢE _"##X"wV_;*U OOO>ӧbʔ)dggsϱyf͛GYr%'ORJDDDm6V\iUҴiSMfƍԫWOqf h4Jyf6Wf2Wh4ڽ^J.m*Ϸ:r$X|^?9X,f,lLM&<6 < *:7 aU)@EE`pn?d}|y]업Vg۴rC@PT,\P\233T/;"-- ooo$Iƍ ŋ?fgee)-[ƺuo/_۷+qe(]t+DDDPNNN&00ׯP,vs_~@2FQOyd2qEʗ/U;..N.n0o<&Nȹsk׮5G}i$r֧;vwNݺu ___v~: 6СCveSwŋ)[wUɮzg7w믿4hǏLɷGիWv6.\ 44TӅ }zիW[X+IO<<<0 vZ^W^՛NS^6L's&Occ<{5nsٺ4L>^ Cи*%.SDzuz.ap~/d%NXmIXB/!fI@M6Œ%K shq5R9gϞO>g,ooo}[l̙3L:c2Ν;9vK,QF]KݍF^*UJ3HlZ7;/uj7w$Eqy>=z8z@%;|96mįJINNn=<<$МWV^7nv:0Pwr9MZ"S }GZ%AQjqi0;j"̹WL < >oNbADU?{W@I ۵ZZſHv:AK k C<}jt*Ypu/ryWkp7T[]@ %O |*WI3kgaޕȷ"ۼG5xqIj=aG=s %]mĽ"/¹#5(@ CX ؒ#K(2!A%x9vw->`:} tI@ B|Ͱ:̾RAT a מd 0tK}Tc!ˀ<~"7Z`^ҭ @ G(&ܡHI m^K7`nk ,V{B1<}}w:|\VH 洒n@ =@ |!2aeHGe3OeJg.б,("c(m ZMw;~ӿi`6t @ r:U#<A#]{>kKߛ=hʵL{( {vCwXY@ A~H7k/ϩw m>P;m/=^k[օC㲋 >O? GAr@ ]P A^1܂8tϳwuhy /+)S+`A͙_Ƀt\ @p"@W6f`󎢲i)=7< t| n3༛]K@ w!B yF$A3 sG>{`p%X¼Koz,ߊy E_};@ < @.9)pL^9Rkyփ^kCGI_@&Z~U,S' #V^ ǁHI_@ .C|]΀o-ൄ6?OPV_CI_VPx N3ؼwej:i%}@ ,|o %9Y4gjoDø)N&T]~E~^άWib<@ _F`B&\-}a o^lB{LM^:x=V=-ޭ>6ssr_ \2Q58ϺJ3lԣP6tɷ-:܋eׁjf=aP @p!@ x 'Ԗ{Gj{{3$h^ GA)bj-t7>E 経<>ډzǻ6qN*|yYs7!$3=a@ _ pĿf'/ZmV|*^YE>#xujGgw<4e]q]}vTn00Aosml%gYx31I @b⯩LC2 {Wsm`4D敃jNU-Z!%' QU}Ω>E}uz] AK[u֢u>@ a40o~:tplwI߉KJkM;QHt,f]y:<瀹#n3wa{d% @ ,&Ȝmfo\> g;w_&>,'ǩypn`W+L˒gy* &vy{: 03 SĽ 6|h @ A_ %{;dXԫ,uJ >뽷yCdd2QJn !,V9`6L;rۿ/7N #_k8 u- WUK]x-Pۑ۽A l=?S0 3.Zޑ~*?1Ϻ rrr{d2ٳgTyyy)u: *yP@o$a61dgg&44 Ew+A+"?33Lʖ-KPPb jA.mȠL2/5`69w%\ B _Xg-WGޙ۾/]&M [gVVzq~w;kKiæ 4Emrsd۝ t$Θ3˥\ $1嘗 yYYY=zILJʕ+SL|||˟NSʐ MR}NN9s^h\rxzz:<T\x"I999<__||<֭cȐ!%w%B {A%Ľ3}7s 2BۉV[krH\k`;^>'vVlkN/pr^;+*uD>"0q]Srn,&~Œy-:t$4Ҹz*AAA닗hOMJ g`/ҋ?]鲫:^Ovv6xxx% Z{ق/Ϗ222HOONܹ~:wlw.2?[l'I&uLOO3… /<nZA[Wr˾#AVx8<#yǪ kA)fM?Rx_kY} ,OpMff&zu+W<==1$$$1 V %n4?;`h4N_ OL&bȞ\_rr2ˋs7p1Z/Iׯ_O?eӇhyNff&n_Z܇t3ߵ &2n=W XYЗ-`岳5 j M>MQD|͋wC@z>;ǺjWkuٗIf1fdkUDS \?݉<>==]{yy>>>x{{c7mkœ.[妌F#FQ;D1_ 3 VsB]7rCh"ro޼i/%%EsVV8pSV-eΝ_UĽ$,kBE_'*)C99|9X[-k h*WZqw`>rms:! "EU|xd;gKD2 "ʫ7ɔ/_^꼲Dzɤ{zz*^egg+4LVV>>>B P |i@J os\///syzzjW?kbbbxꩧT] wY~7+q/!/Z&sŗ'i0DBrT";wsGjU=G]]˵N|٬}^X|uV6S& ԃ쮯\2[| |uۦqTQ OOOŊ/ |OOOBCCr kV,^^^_vWISh7^|jkJiQtiE }G>rl+kƞ={HII-zRJOC))Y,_^/%  ,ײgN|RssuKZO2IDATWK$tWY\mr{wRM&6*"^Ѓ@nZvM=hN*joI\;!Sd/ >ٌ?111l߾'NP^=+|///zbU/ͦH/tu >9$Ixyy!I'N '' eZثdCFFիWW,C9#jϛV,c#m# b 뺜& y+>N5XJSO?POTuʻl:`u~% @%M)G:L+_ betԫWǏsiԨ2֕ە[H/tB|1.\@J }z &++ҥKSZ5;m;-ۛ}j*UJ3P_({yAH牊*馾+)~/{ $ Vmvi< T\Pr+{ 3ju]jr_|}?:f߫y8׊/h芎L˗Wړ_8E'ZSpw Pv,[,[fÆ lٲk׮Qn]*UDPPPIW[233\~J*[ {{(ONN j֬q+jGb;H-m.|",)^{>YuGYQT |:TEj+NdȢ/ϻWkͳt:UzMyA+KjՠA5%Jo{M.Բm%cqϛ43l>Dcg2,TZ}qqKZZYYYM}wၯ/DDDPF zo0?V+lFRRR&&&PKܹs{PmW>y1_p_r-zG}}@GQ,7Ȟ]v?܇*\}n&}0<9 [mw"ԭRŪNA Ges@у| Ak۟(^* lPDEGGʥKy&V/?^B߹===%00`  T ٨E†/[,JBӑQ(K9>++j@TTegA_p_zI^rNSҽ {!W2wݼz~rm+N5ļ5^uu]LV]5,|l7W|+i|(נ9H vZlH6]Oaޱ}[0ow Gضm[IWA I*|@3gIc,m >hFηǹd38`7 mfeך{_no5 ]z4"ЅLwTϑ?B߇\MH[DA_Y8{1>=Ab%]Ϣw7wk\ _PrH$[ՖETYw\}u%e^rp\thӴ#yvM^뜪*M&ţ_z5^hOrNr(h/LXqe$Q"1wa9K:ZUa*;u]w5 nkCWS 嬵w4^i0>(pU6'j7 EV]`=4d/+חWϷ0RKBn zz`vy,ցRPO9l'qt-Sp')%]R-O{o;u]w5 nkC|}EQ2Z_-=| "lN W\Evs Y92hAʯeAW-gmy{<6ײ;zN,m#u( {LSm%浬78\Duiȑ\;u]w5 nk& JCZ%3W~(XD=j^O_9V-j]^k փfRV紊P/vG"v@pxړ@Aݦe_=`%@g]y {:@ '‚/H=a^e6Mm߿N,nF[-k`RyVU.6$?KYg;>w3۞{k؝G>*r^A1RTDŽf/pmp"@ (:>é I?{ibKӾy I,[u$[- Pҗ|Gե(,@ rL/L 8B +n~:|(ڸS\YJOvڏ AoF ׃,sv`,Z{[}u~گ0zum]AQQjHxbʃwfŇLҹD΂{8=$IL࣯uo|IWQqR5*^ǹK,[}.t De?W4K|FSzDw;i$T :fn9[}bKSB"=H"p39L)qpP.. kAlT0߶-j ""m}p.@ FV6;;*v}m| :.S n۠ztUb.Vye~в̫]U4lTt ?"1BiVso-mӓ9-@ae1m⣯)j9`P4(tye\ltV&OZE'˦wuܪ2׋jO|)GN&E~cBIJЉb6оg>>r=q>zѻSQؗ>oOCIWI B +n֞/4߫?<(W"]&ObklZ"r޽KjC咯~UGW]k޶Hf-+1˞߬ '`lP@URσ>]eޠ{[Wr`B} &)%?+g :]Wp%?_Osr99lu?dh\'z&0?>д~6 5#}9=Y?Ւ\b^1tp39?\ڴoåk,qoD'&BZF> ~jB9x:~^Oǃ/țv "iѰ k籦Ѽ4w"0vp"61w^vlW_o^hUpZ ^Viu61iXsʖ㋷;u t&L#ڼfwEvoLksuzW}GDU&dY=x*DAu2/4%ߋYd+80%֋`?1KߨNyĠ'2z&|:f6c20rۛdo6+:97TA~stnRkg{?O:̏N0ݍ9|'VU{vQnKѳ}u~?TYoqk]5ZeDmY/y} _<31#Ȩw62x|AR2*==haټZ˗C?v-_<rF3p/zu5icHJɢϘx5.mbIu2&b's.la^;W*]7hڮy >cV3ܶ i%=#wML#'8{17fok$h]i ,W)/0@/6WLaѦIUQ{Iw }^чxz|w#߮'Uwr,|=~t"QT f8v& A ,kh@Y>h[<\VX gg]dw{kk1o% _@21kkXߕ9W|.G^(-L:F@/9@e6~$Zgfʗ"㯽*8O򥸒JbKja:.^Ma'@nޠ9?_O~zRF2x{ЯK-t:u)Xz{ЪQmUbЛjhh @u$B}r }n+!ʖ#0?m Ukk$8|"ᰍ[}lu3.%sA%ݭЪQy([گW)L;-2WS uzO;JV&_f]2].@ ?B 2ErV^ZOF5_S;ayn^M>f5kPWsy@Oufu*OooE0GRݍZ]r6:EZ_Y5edtjY*Y3m9ͦ]jjT-/た;_$95ƭ : 3uvJeTl/ߜ{[Ӳyt/4d(˕if3$dkOX63/MI eÎs2P:< zUfQ6@ݺ UCvݿ\V$u&FJp~UݓQYFf/MrZb뗿Nذ,= 0i\uq]۽Wh`Y+FdzŽ>;]v6: -ʅ_v7.]Ϭvŗ[6o/Wj4I~r՗f&15K*|Gx} $/U˔Hlf|qL/ɩ;s <~ǯ+^~>to8x:ޘ%Iɟ@rj6A[AzͿLCz[-IJ=&3e3>|Yq{%jǖȩα3iίI}͙Y&vD/Oh^;nס40V)DIsT[hXyGi+7ۭ,B,@:ldl=.8Wgd GuR2ofD@ (\݂/亠H#+{ԬJ.vQYՑmkZ[m|p٪o(W xg(/7\}|n-\˽Y} w@үq-Jƹ/O9Մ!gsυblwf|g#?ԗS$e}Et$X`Z?mxgu2?l8΄f'jb&$1uvӉ\b۾qV37 f 4K}$j z ysh3Vg."5=sK z.ٖ>ަˬz)#Z^ImcOy畖<ٶ:ʗ/b֘j ^Ԙ>zcgnp-%Q]lcL}nde>ƿq|'G=89юڜ3E{]JZv6q%!:/p_.%_޷ޏpFIv!$Is3ʫ] *9f `~%d*yr?;zn=a=ۖ{r ;T|y_ Kl{oVocL%/b ʂn8?g,,E Цe \IHs['r:5; IYߙ@4%F gݝT籭;յ4Zd^ 1I{*6C |/(!َ#+xq;j妟k=^<.V}lױ;rv򀀍{Cσ4-Y5``5!Gۗ76Q`M~ FtDrl?‚G'wn@ w‚/o0n5R i8U" :Vc@@ YjY+_Y3oeu$A+9f[vzj*ʯBQtyJɘ% N^tM/y3iQֳqt]w5 nkC|}CVyn );znjNg%7y-s6ٷͧqn W/ryZrlm{~u $UbBD1q+2DEŒ[ O=3~;u]w5 nkC| f,K&/IV% ٌd"hh2)[{1}GQ)NM) AA? (v;= { RDiJG! !mdٙ-$y?}w7g~uA dg8x5݆ mw[plv_c66{].Wz߱|MVpȋ!uߎ=쬞5g9U?nuo-gQ_ؔJ =(ίP6[÷\v33A/oʺt[zl.o?ukKx c?bo܏Z1Th RڷJE)aXtT24nJ\pi'qU>nuo- "/#p@U,~=V !(c t Boqy+^:i:h2˯YW2{l^sXscԾ\3IVB}|7) B-\7W o2Dv`ڭ¼:6_H<o i|xzǕ[VA4bSwj\]enU}U /k4.=j{c^[2}VKQ_DDDީ>RCS!支bo[>GϮ ~$dzGP|oygႹ]7^ 06W9`Xa|td#.+sZ]dС[,""""GU^I˄KKxe 6AǁU֠o`㙺OLγ gII}}aL /;v7%J,""""G|W22aïCxT/(aǚk15.a|ouUq;{3pVME܋,Mp7[n/"""R/)K2:ׅ[V}.XnEpm 6{0U:轾s/T${.\,;\wsh7sfTz1Ņx>w*?[Uks ̷{q_zS *`wWq ¾6mpXtՇ*颿eaW{C}''Vz;EDDDv԰d-_¡|HnPy4|lC]c ` V3sg^o{[]*mo3@E o~8DayoWQkEDDDH ;G>* Kf1Ncj|Mh|,ÿXk₱lYpTo7({ü-to%TDDDDj |:?~r= Ǵ*WnM)㵞X/`4pB?i=a_}m3sE\q7W-*]Mc9neO%lax^(@BSDDDDj|z 7U{ܯ`46' mUwKm7fCpۅ?q?& RoݏD>ͪYt*GA6# QLp0V˞m{* PYyp* NJjV Ro90|X:>({pЦ}gd]6]ܙMۃYgC5=e?+cUe+sC8vCU;ҕH/s۠oWz6 S_X|pjݬvǷky]sUPR:E:9͟ӰvC+6yO7ޠ!p{bpDDDDvSziKp2b=pߡiͅu*ڍyU/xZg>:S 9n>roC Bi_ {&?A;l }ce4Um""""R)KpÏ_VCX{޹zq_cr@@p BL3?=0n bu!&|Ѕ c!`6~oy ]g'׮l,DXnjڮrownnny9T{*.B^[NgX_P0"+Ԁvxtp*画]""""R#u8K6< y[vy`ۯkSQbZ.z-{}Jboaٿ׋˼\0/_{<_-1>^/.nZvnw6ǃl߲Ǵr{n'`7n~~XX=&F-bnsvkjOnl_e+&p{_{<Anf}'̿tk< /b'tf`.Ї @i2+KgE__h.|[\XjlBŲ:" j)baw yPm6^@zԩ D6m/^Y o@47WL~UA#9"j/ "&F1'Os#oPvu~ o aU3ްi]u>=|6Zn у2heQ/l|1."XVq8֭N:m|L^C|cj9.;b"j/ "&qq;avE =Yg| _[1*>!tuPBŀud^5`0=`~m|G~f͚ٳټy3))) 0Lg7)vU!t|߽8Q񈈈XQ0l<>Y;C,;?zi'۷8DVѱoXT`Y44 ~VU{~nNw_5kƧ~ʽˆ (.*b1< 6tsRHAT^DDDDl)XgBnnpo[7W p=Eɺ x{nxv2͕qa`w<„PopЬysf̘W_M^n.NM͛0a]woɸpq2qo.pCWz'zڧav8Ԅ={á=[6? 6l722>7ߧtl{mou{ߛ|kw$ Xo{A6kqN;3&7'((zIHH[n<3ڵ>/^VW7~?tgvϥtCj>Kro [ O~½)G;X=<J<=r-V?cA$$$0w\6ln4oޜkӧA, OPH'Ҵ$DDDD)<XCP0O TGISJݣm۶81x 7|b lW|#kOADDDDj cB2v3G0p9`ҋ w_/UA;ɓ'c=݂4j`=k>Y%T#$枊"""""/Vl,<0jM!ӡN(ocoUӟX իٶmECr)I?ҝn5uH-/ᑇ!6*"<> }#B_L^8y衇ؿ+9H<+>eWylfWPN:z""""1|]<^H9|]CMgsa L('t㏳sN.OΚ5kxqdNo[=M>Y&["XoJ1Р E4_$Bqq2XqbJ+@JrMyL>_իW姌wdo1 ~ ه@ԚSÆ +ꪫ{?g* pxB=6/q?uHN> zao5\۴ #}6O]?SJp&~d%:q3Y:̋0}xkH- HN:X}J誽uϔ=N~9(<{ SӟK.wonJ+òJG41(-hV]DDDDj)UE!9~!Y^{c`vPUE&2B $4wq GGZCԼL74oJ'׋`|m*\?}T7Ǚ~UP4\ƅҸ{jr >`%Yx_JM?ؕ4%#E*A\s=\sσ3<<X.vzɡXH&r =-yȤMM""""RhЧH%i J`җw9`ʯflXhZȑ_'bSyN3ϼ0[굡 StCDDDD|JԨ!/M``: K gH )f9Y@KQYw0mNx #yhLr}q""""RN" 'U/-Pٍwyx`o~,qH {"d&@hWʔH!SoB(.oJ}yBf9 >Xs HBUJPf:wíe3G̚o[Bo̾z` lσAL $Br41ZCz @c'4tBb,}Kr񐃗@1(7(w Dv.$|ړKc$G-DDDDD*C|upTGxcw>oi7gaS>v; wC ]'Ɩ^-][zS]ƃPD "0v3燺M9u?Ite.jWKDDDD1UEjHr"vn|~"}V=Beh[1m:J~I9r[4]#K2D+.N'U"""""#A1N8hp nsg>ԺrNP$tfUpF#rBu8DSjl{9"(dkˠy#d Do'"=<*"3CbJDDDD "GxD6 wPh>GRl}c4oHWh(+'iT.MҖEDDDD.q0}vA0nȗ$xn~z./WHԷT!?sŅi?T1GhD[ߤzCC xw""""rDV$u/M#ü9J'勢\yk\~P'_@g3 """"rS_tBxGXc!khva*Үvܷ͝=K#kCsRH-gt ϰhhsoW7 $ gA\An/miS{e?}Ej pAO>O- """"R/RK%=xn9oGy!t^f}$E~yj|H~s5ݸ4=H/R%0 ʆ`w 歺cڼ/7o=W4 :qmHDDDD*HՈ| a^G#P#pC'R:҅bƟHP_q8 5. c;^0?VC T`Ⱥ81$N ЗdQF).rq@ǟlk ae(U%[QiEDDDDDDĖ*"""""""uH/""""""R( """""""u@ϢIEDDDDDD**"""""""uH/""""""R(?ɞft^W^DDDDDD/""""""R( """""""uH/""""""RT,F_DDDbci]Lf.$xHHKֳU'y8C4Npqޚnr """"(6Eqt֓;_MJ6gΜj=_ |Ob{({4dODDDujV@n=EDR)T :лCM7EDDFq@W{t5_DDDDDD򩋾H/""""""R( """""""u@ϢYDDDDDDD**"""""""u@WUt5P)?lٺ2k9"G UEDDDDDD|:@_DDDDDD|rro>iii[nΦ(񋊋IOO'%%%h[AA'/7t6m\ݱc1]M֭k+ 䉈H]zy˳ݧ]\tEj*`ܹswaq7,s~]+^׿>66MqTߣ0`͚5+=Ϝ̟?/y4ia H9ǓH^^'#=ͿǶ?Xw>vmT[lA^,O|BB^xӣGOڶoKFZܵ~_}Mvu֜rclܰ6Үm[vz=)/"""""R N 4ʿO9򨋾T릯gΆ\qF'YZ[WMYOXs7ذڰ~O>L HgdT侯>-y#>|EݻѰq.m kO$%%/6&Ĥ 1QyYr%;mcΝ#]6A[eߧEDDDDJ{z{.dm!^ۅԤ8zLa9絕<~vG.Լ?s~~w=yEn.ߔ6ͭ363}RbxxLf=)#FxWYj%k֬_~A{͟]8;Yzz:C Z_\\_d P!TѭSo.Yp +X9_ܕX'??݀㩴s8g'c^G~Gw;`w^ gKPկL Ζ{ΈpX_hx<3y2y99AIJ, ?HkόkzsG$S_Z+vedTA$.a^ەrXoc0K*c;kٕ[°.= *jɢ_زibΝ,m9t|Ν;ͷJ\%Ջ?E^n={мys5kFlڼ+Vt:8Pc#|1>3Z66s55-?5Z%3oGqݘȗVθtoyv0~Zmˣk$&Ff|l/7}BNh0'@yJJ(.,`,i׶ ;.~~ٌ۶mg۶hݺ-{2ݧ7%[Qѣ<@^n^?EDDDDZ]=%][$qu<ڝt"=%]m፟vqڋy.+-c#E]HIGFsEGvsWnHOaƖGArݻOz~,rssHII!I2 9p18cb*Ȣ/"""""nhTQ5|lɵu:yjobܔ1+c=rƫ+)tyIsd{||I?yJ,o^ҍ=^$бc۲e aƶBiݺu|v9h=9k*l;k*zl_vQY}`yaO1i׈Z^"Gj=C=CzRxg-/IzR/˖\F< 8GWYWSq _PV}mՁ |j?g]9%5T:UEDDDDZm.dԋ|~z4O⛿fpf*SV_OjqIIldqcgdԹ(q{r:v+^/toрoڇ?ujĒ?2_Y&ڵH}ӦބacD{8PP•S1gC.-3n:B:cCko./VgK+tiWڥ%șnm36rYlKyvٵkX5k|SPP>99Ͽ}{Z}yʢ-ZX۶XѦm[سg%%C 6mJ||{8ݻZa@\\͚Yx<ܹx6kS[i}R.{>Hu]8Oiu~ͮ|.}g-1]#޼+Uyۥ%b~F܍:6$&jA-p8x؟maÆtޝ0_wkiӆ;2rHblngxx(((qFp!AMJJ];X{4111sG={_j}4&_ ڷ?ewr`~gԹ3,;;'ݻq_b>}:[7oac8eĈcʕ,[Gaʕ\xᅼ;u*PEDDDDJ]Z^}6tiwbzW>7oʿHB\ޛA7/ƓoV2n o}u|7E|L|IbR"dÀcФ_XXk/oo7|[ۥ6j̱'_zڻukױfZ-ϽlR/\~Wk6ҠCD-)*,dlٴPXP@HHLO' %)) wI }7#N[' {8Z^IIn@\\ŚKV^8yhт9l޼-6_ ,\_^v{챬;5lX}G3W^lݺ>72e*SuP*uрy]h_ߵY2'f6΍઻7hKI8w7:6okg7ѫUrT영ѣG{yV<Ng1117.dڲe ~_OM,=@bb"]wm;.X@AAv* / _rhX+|IzUeEUQ*g+W.q ,߳s.9ÁҀ?OC,7vqС|nfP߸q#ڵwnkGΝmfˉӰQ#{4˖.cٌ9*mm/"""""Rڪ%]teIC-qv=`߽{7|2]u zϞ={Xb%S\\իIpz*v0~IqqM(*A=-]l:evd};mڴae̛7JBBB]W(T ǎ N֭[z<3lܸf-ZX{?r 7W^z9h3gޡcGn݊v!'''ECL6mބ뵭xhРAz-lظ ]PPy6|X(ߥT.805sA~^\ps=K6YfjӚ"L :fڴi+CfLRSsN3^o>7}zghߡ}>唓,nw̎4!5k1xǼ;e yQRR!C8a}=+/g֬Y3_} xoÔ<|8#O??~ڵXtp88o8o_zob V,_a}zWp\^_kxƩd6Yٳg%%iӦ,`n޽{9Iɉ4lԈM}:t[.Ν;,̌9sKLL e?l Z$!` """""RGкugWiڬiкRRRB/)))l{iժULP: IIImۖmۆ/---셓ƍӸquN\?QV/"""""oy Tiz</;W(+Tf*+X\)?T46_DDDDDDH2qe*@/""""""*rN'"""""""U#*nPʾ}֙T"""""""S:o>݉ """"""]&ؽu}Á yBPDDDDDDfb>)GE?z/""""""]yqWhh秐/"""R<~_TTĻC֭۷/|l߾=}III\xᅶO>|8 6ܾ|r֮]СCiڴ>|2tPlϷk.fϞ;}5j:t_~!11>}'))޽{~ 8sq:rrr9s&wZx<|w4i҄~{~ǎuQ|.~F1hРmYYY̚5={Z~2|N;ѴiSO-*sNW^… JIIaРAm۶B:oVV?gqFصkK,aԨQg͚ŋIKKcСtܹBdzjif[>3G6m'p%Xb ̙C-9rd:s kወ.˿7ޠ_~ 67ҽ{w&Owرc9x`.]m?Ν;SOqQGQTT9sիsaaZPPرcy饗,Ϸ{n*ΝٳyWիf*;o;w.saڴitޝI&\Ff/ ;w h5kCYn_7vɬYv),, 2+'x" o 2N>dϟ߲eap0|p,X_ͅ^iӦ];ٓcҵkW֬Y@Ϟ=9ӹW_?x==wqgy&G}4wqwuO?4P:$UV\z 4; ~3f s%Kx'7o^g*..fAöm0`mڴ!%%72{l?=cX|9,]2}to|~|Alrssq\[ЩS'شim[8ĉ.=nvʥ^J=?sgr5лwom;ĉѣ"w^:v%\͛y7oO>$?3CJ/ <#Gr'PǷB x7JΝ =z4#F`{x}hٲe1Vy:ẅ#lU,}-o޼vߢE޽{t| ӦMcٲe/\{<;8fϞŋٽ{7_~9SL3ydP)**bJoݸqǼy! J%KXz5,X .c=?Z _4@fٳ'3fJڵ7rg0m4\.|lڴm۶ѰaCFٳ9묳l'''{ƍ7n ##]vٶOdȐ!agҥ ]t!##O>{(?i$nʂ [xWO>a̜9nm۶N}S'N^㦛nn㪫 hy/9s&_~%?ܹsyWظq#fbȑ,\oaÆq}wbŊ,^]vNll,}}͛7g<ønJXt)6mb̞=;~ov֭[ǺuXd}9G}4| ˖-#==CEԎH|r˹$(/LM6+ MgnH/"""r䉏K/e :N8-[9tƍ㭷+^{m@6+q:;mۖ'GbժUa+].e?66^BפIg{3f{ǎKynZO>,^QFg --&*|r߿?guV@Nw_߿?;v(G[n_ڵc4i҄.~L2dM4rСCɡCL0G}bnfZn Vy5jDNNN Jm҈F||<| 筷bȑ,X3f_Wh"x FAff&Gs y';;Ep8hҤ 'NOolcccy7裏xgYt)%%%\..\Ȉ#߶<… ;=~(v̙3yoY`^x;<}].rl5{ݹsgrss9r$=3k%99¿'F 4jԈ{g+S$Y2{P^oq`}A!_DDDHSRRBll,8PqQRRx#G$!!QFqiqWD5Qػ˪Ucׯ6}֭[\صkZbΝ;w~|AǍ駟NVXj}aa!EEE`bwq~~_ԩSx<?޿OJJJй7oN^^gQPPJ}Ç믿o>222С:u"==lRSS;ԩmڴppиqcZliܸc1i$~ڵk@- ~tرܟpӱcGzAJJ ۷oйsgʠoƌ\>믿뮻_!կ_?^~eC߿oᦛn1###Ӂ(((=fFFF–-[HNN㎳<3gcѼys.b?|ضmZ /,, w8m9x`s1γt:zt߻?dРA̟?.կ_?.\G_ȑ#/.vG~}$!.iH? yx? /@fIJJb~<쳼ٳ'o_~%ӧOM> 䐓C6mXt)Ç'??k0bϟφ ())aĉ9 `>I&QPP;-];m۶O'Of̙3㫯b޽@iwc={_۷ƍ?믿梋. ۶mKff&SNrK/2Z9c;vHzz:O>$~;߿O?#Gΐ!C6mP`֭ۗ;ロロ-Zo3m4͛P:SOOPGѶm[ۉ˫I&N9Xx1;wN`ݺu#CeŊǷӭ[7^|Ef̘@_ӠAZj\)Sp?Ozz?ܹ3`z-ߎ~n#G+ХK6o {ᮻ_~`߾}r-W^]qyۉՌVWB5N_DDDoqӰaC b{s׳w^^~e/^%N֭yǸ1bDرco駟ҷo_NJFhԨǏsδhтT>#̙CϞ=c[hAϞ=INN&---g|yGt!CpRPPW\w#p5РAbccywk9s8cq\<+E] /;6me &uր7|3y'3f =111L:B>ٓ>X6mM7D.]ڵ+qqqhт/аaC ju҅s9J޽i߾=6lw\tԉ;u]ǖ-[9s&<2e ]tAtM 6vڴiu]㉋E|W8N?3c :usꫯ?~xFA^HII `|Zno\ԩS۷/?'8p`:묀>,zjΝ;9餓xꩧr1zhy~'p9'xbT?Py8T.ov\./zmlpg=E%WXZ:k)iݺ5۷ofU\\Laa!5 ߁HII -ێ墠 _:tԀjܹѸqqx^|MƏdۗmsaa!nϑ/PڅI&*ݻ7\U]hz߿?hb~f$66?Qqq1EEEkY8@Æ j㇒OIII<ɖwI}oV;* I&Lk yͥAAkѢE[bZ=|CNp#l?Ts޷l7nꤾq"""""->>>d&TZp3_~'++SN9%y3goÉ6؅x@ܓ=Ep8,gM/wjf5߂鴽EqjrH^~v[FV=Dw^{0ZƠ*C͏d{qg P}JH뮻j k4wN.6x`D\~駟Xz5o&}'rD;vlM7!"LxE:`v{ˡ}|;jW})e˖uǷo\]EAI"?V]57]NoulgVAS )>|@{[YuweBDDDDDDdP4jn>.g* TCm 5Knw8ܫ/""""""u_4U7U?zi# /""""""EQ; nMh q콏M%_DDDDDD>؞U${`]Hj ~$>CDDDDDDqٞ8 v-il>=L*W݄{V'j""""""R_[Fa;}H }a{_{<'r$:]̟l9EDDDDDn$$*n?r$:]>gl[?yP3;N<o\68q>FzVNDDDDDDH%o=޷.T4gX{}}sY Px{Opoz-l!C{UX*af+ `o|6|s|*""""""bi߷\~nvmfAINt:X7tcߪUk~^_DDDDDv6Z͆.Gkˀi7V}ު*o V։Ho|m&GC;XB(v?P_ޙm#\PV߸i/o7cUNgڰo G{;}ʵo4'ڷTGׅ)hBty9Ӧr|(_TrjzX&ՙ%tEXtdate:create2011-04-28T14:51:55-04:00 p%tEXtdate:modify2011-04-28T14:51:55-04:00ҋIENDB`rt-4.0.19/docs/images/global-lifecycle-group-rights.png0000664000175000017500000013417012262650742022010 0ustar chmrrchmrrPNG  IHDRNBIiCCPICC ProfilexYw<wq]+{,۵GB(BI(E%HY)J$)*F4D!7~m|@q6vx )^^KKG2DB69OgWhh6>`1G?XIc??_!1|<țo|ّyc6s@03ebLNۼ9{5C2@2b-l54B0*ҨXbb?#"<^?"fۆma!-e?~c}sGSͰ_~a5cG}|2@ X`H; ? >//=H@QG`:/ GڥP|A,"oxe/#1x:ٍ$vaXS1V/((;Y 1._{T1p{v}e ZGkjfEs)"ZAk mj?R~;sc}0xXhhW <"MCN ]$0.>{yjs@C @m8GZH t PbCo0ȩF4 2~y 4.08 @2HY A"A @?#` L)0ރeCh!&⃄!IHR!#\ O bd AeYA/O`fe`UX}? 'p>\ Wf<S{xP4(V?J 2@Y\Q~( **AUQwQQS%4̈́&_Ht 0 }݌~F/ah1I: a0% &Lf 3bYXd`ISzlv8p8-5 ]uFqs5**>*y*c*W0tKT]TTT> ۩RQx->/__ШҤҔ4ܣA`$H { 1|B 𕖖VV֕666+5"QhF! ďtttzttt%t-SӋ{ѧЗӷ?_a`bcfe8pa#Qшч16,IɀtS3Yٌ99 02 #"#K!+d: ajaUwWEDEDe5M}!F+#)V%D+*,~J|DP(x( K*KJ| KmWخ]ORzRRuRҬҖ-ed\e eU =';)(g...E^B,_.DVXBgEIE_ӊϔ)*m*(S*/xTEI@`A!0p؈hQ+cc:e%$SiS33Yٲ~; {2K KelenUlb-̺MM[m[;9dL;;8Lבqc㪓SӔ~AN@VW7#ns{f'/~߀;{{uO% /k*o3 e1_-"y?-"wZ :%KeL*VkBBCB=CÂLJ?ȊT<L\EF3#APXLftvlyZcxDI$rRo2rZ~gS2̥^Lç=HM/Jv`{OFjlIf]1ơltv`pBɜ_>dJ6?"wV_prأaG u /1%[7#=Œ1'J-K[O v_~ˠ`PMU?|53z'fOv=3ާS|{Dd ̋ܗ/K^qz-~Jyspzh~fr_ ch.*)W8sr,J܁/$Ba$@#QKLmRqRMPWi ZT3 YX Y?qJsQ;xiI҄E6Tă$NI"" k*&_9Q%HMR]KCVS@EJi1]׍jKMM],L-UDwX>op8'1E 9;ݫ=r=ýOofCA!ta-.Ⱥ:M1ek?('=Mߟz`OazA L笰CΝu;_hTѢޖ'KOږU\>5r6U} ]yFj+]Aƾ&얻mvߺEzo%}XB=}A!îFe\~c|&Q/_ R}m9?]=Ftmwwז?|r[N=-aܡx$RcR8RKKH;7%-PLvfNIG W/18a^j{ҥ̻<ӗ+|N87rA&%˓W^5*_ϻYPv3]ݥ={n7'57@hxi' nM| ^N׼ɚ]lH9{}iikDwV8 IˑRA z~@&W?h(RqJNA$w:7_P\(=T( 5ArlO$#kE0bt0a1,6bpb8\ nJ*ڕ2;i4a4UZ*Z +9N>~!WȌCYOɰfwc_(|=sW"e[ p)T($b,*,F[]tLl\| +*hU5Au) 9MY- m.IoR۠0(DTƌלefl{zf{Nl΢.jVnI7 o"Y__lf0cDtTx5:gB,gU|FBwd)SnTh2;4s(|݂bZ'Nƕ:CRvnʧk7Ze ;\{b{S{?ds8outq畓o_M͌Ig//|kʇ5;H t7 R p2d' 7Q($gwAe^iS%]~rLw:%6{YpTT^jV~ >?GcNN$TҲ&bt.E@d8(XϤ4ʂebcabbH*6A3&HUQBBk"-gNJK** ${O"2Y%_S퓆V.~qɠ\2[6vh{V=.NQ.W]>cu,#Wr:Q8!Iɏ..N%3!/5i~?[فi3ee=fq=T~|A!{QxqْRɜrBӢwV5^pmBvC|wM5-mR_:ڻ{,{n5M0pQc'y'D^@/g^OQ+D?\<맕U?y+79 rl!NB}WXCj8-RqF-&Ӊ`E(!9j*xK| i} "1ޚ3C 6)f{Z9l9)\zLyyeDDD9Hjd:e4)JW?*jiehյk148՞Ӝux ߥ}aJ1ñm'˺+4O5WbX=^ }Yj._&^r-q|hmkۑ۩Vw>н_7 jףˏǝ?KW|%gguiUWy' (~aCGK/|k뷽+`kkm?Xyx]tw}cm̯-mG) uHHW$(`pkkjkkI6^X]b${ pHYs   IDATx\9zWDDTP1*"I{-J&![T41* V, Q@P1`C@:;hvw͛7ٽ}fvWh @@@@-6086K^Z4 @@@8ȁ4ڣ++7YM_Q)<-0ң)/j[^V𪼬f6WN^Q^QC^IG^QMPSSSAAڌO]=$h"_OcnD5k5ԑSszjyuP?OG)[YT'&o;usހLLLTUU$kTqqqzz:\ףR  &@y{K/⒋J^[E)(gkO0CK'O{v&um˗vE7ݻw߾}6z.//W/hx}tܖ~[mϣͤ ͼeW,d|OwGY{Km>^ZlQ/$OϣάyC>sPzӖdsui:**zYέyܶ47QVVnn:wFR&C˗/eʹ2w508/77/OHxSrdݕ9ES$E5dǴ޵Mab >pd0mi/+iyd`YluuKo1#Ld s ?NnZֳmia;4qUѲicE~$k/@Z3>*)HZq!b^j7y%RnWdٲe?́9ev+Fˬ~ѧytV_斮}i/ck?Gj/ZmTe5'{97pϣ;#*zlu_U"﷞֫zn^q1ՓgLIL+Mȁ@[!e8 =O K|~3<2%7hN{=Q#AmUey{~m%W2 S.-̺_ObTvT`s…Rwϓľ0t #;6o+#R|Y=DZcf8tS&8uxׯŧ]{X[IUK;ר;V7PL1sּWJJw\ۧ6mT^ʠ@0pԪ]X;orBTC,'וi=ۅeSCW"J&~;j}lIKETIf3_x])}K 3gtsj'#dz!jr:X> WcI<%}KHX76hJG;}9Ztn\E&)Rt?;=AwLbsH\ϾV h;\)񒼒nx: P']Tȶ^"-*&(ȫj0nEY™_Zt2Jʟ g/g,}_ HCkX5gR~ sVd#Wi"qT=!vpp6ש&Z-n0ϺwRa~ǂ*qf{gLa݉NE_WKC=+O>wgkOmS?nݪ8]_{:rOP!A+\;kp_ZݍKC./N&ki6n}7yT$|󮏎\{ 4wE|Զ"#БsnR06Px 5ELO>/KO]e02c'ޏn}}#{CI%ycX[<r*JK \_3ΊZcqq޹}ܷD=縛uܫWĦ6zK2bi3HC|p8PzhĪ|^J%;ίEd[߷vO~kߡ:q'o|&ݎBjZ]=mAsU" 3|6G?%C{} IfǧTV^Q(+}AVD؎?jY3i->cb%^cqذalAI6IMyh#[?uI?ao+u2 8&c0eiyʑ'm9}aQKՃ?~h6o?L~JBd;~JY5¸5 h-z $b=iaQ H^8{BH8sGM*}]٥Bw cz/-0\dEKx;(+1`zo^VFgSmUZ6\\HK*$ŮtYpyjPP]T5xܻ gl_{vNqwrՍI΍@`-^] =݁º9if=-Q]SSA*ԩCenyegf(;{1yuO4sTL *X}mL% 펃G%2`   2%]^l8&¢`l@ }\[F;qtpܼ ?;tZT&soyL.;ީV-yt47#~uʉר:)>mއ P]q^7JT!VKWXW3"7VWY2ArJʉG ' Mwv_e$dFK4 )5⼒ܘj:Ԃ^^h{:ôea!{UXэzz4H$(Md};ӟߢƙH=BEe1^9{YsZ<3- Ɉ6ّKWL}Wi7`D q\~᳇/Vgwmg!]_3EFy+S{|w>ufR~3!P3aBR^8Xl*IK{J59ӞKBbBo% 3y"?Ju ,ϋ…yGt _=sy=|IZZLv?c]jaNs1RR9M);w#?QZm#*#^6D~kZ"FWՅ )cE̕&E $x57ұ2Vb]Xh׷,6p^e.]K>q>ЁxH4^v-NIz|:Ȝ?| U$6+ʥft],#Sɤ3o{Süt~){j+'r{ aR飘O\Oz|1uӹs-z& 3X}W+*.7$Z8;"R~,>cbb|||>IOq͚T|V~<ŀ!ݏpnwER~|(mT1mSCYؑU$DK%;(4S">Up1V֟ۿJO7]j|?c:v-QzN=w 9?. D9>ўq5ʽ sb(Gz W ;+B`VŢt9tY/N%Jx)Z[<ٴdۄ.\/WxuNd:X[QMx4`jm H尛Q?Q*v4n(.%"6(##NruhXՔ  "R<+ž/m֯o~XsA'wYA;,&@ Ґ{ tpd{!&=l n=q餯KrȺrk`[wee9\QZ){&|p Hv*~GǞt}+d d43kIE;u9j~QH93~|Q .,xc3=mll̍ĕWLbU+&щp2oC/ɷspX 2d̘1:::˪8uU87#%=zLQU5 fŝRn;w߿CHo7||W;cz2R^tȢjfI7cw V(e2㓛1)xݖT 8b~lI}(m}Xg.ͣEi <U|j_\+»:'hw.[">bu[[06WMVaږcCіֵOo0CZ[BJ&Rw3D=/љQ~/G؝c+3';|#DF`@EHHY)%SFt\ɤ97"ӥE_H}/凞TGl?V:b;TOmG9z|c#tuŧ#9؇ޙz+~r6s(;9jId|y9f7\R6qLMRR-ꚹ|I)?vkdvi0RrO߷}oGv#K[m:9‚~JNԣe4Q9IaQyOYwƙ2_WeV#4ȝn@`ώ7'ާjw~ݼbڀK$Gb򜋱12R9/^̡ǁDPY"DNRԽܙ1עrOF<.ǢK7-Yi󑤩Vh.s {/U#֠Dt 쪫jJ6Coo&> 4Qn-8zTg 4 b" PjUW*Qu7S{[ Fq B3DH ?q"p>#'T@ pQU-0 NWy#iB<?._ #%RM|gxO gxREAڋoOHDܕ_wRW' &͝&o ͑ yY$ա?:)nH?]A6D ߈nT*dFD7'Td5~_˞y)pյWN D}alI>ϳ5Q}s :-O(Q?鄼ŋ˒P;mx؊/~^\\%j*,|E}\ %>T-qQJ_,YVnE#+))3hOV */JDI+]9_Yj?JͧX#Vr6Caƨjf|:QT745 sj[<>'|p7AH*.aÕ3¶_ ՉξjMbFCLʾtx+ˍj RAX?kVHQ6++ _bg!ݦfLaȮee~(NfȖ kl%\Axf7}?oĥ<=-^Ѣ/~AheN\bUVzY CgV$ -( ʢE''*a<ᮌln 3fvScϫ+$GeokA=?jJY`Ǻgem> @òU5tD~PTe<6n*USQ]U[fNIѵ"_ mI4%SM7B|w3fs+ǐJЃIC\w14(^l/ $-:j;Ӕѯn;厎LեZEDe'#AeGxwcX^Q灢WK"Z&*-kY_kYuY[GvjGJ1DG-;m3xQwd[KEJR[/^^[Ҟ9O"ƿo{*MV@fʋnsR ebvѕyEͿ\[0ӓ>z{RVo;k+//OO!4Vգ]}I?sVݫ]٬+OZ|DhOt_1Cl޶)x^?ńTLOX:R4o]&p 9]eTʪ~3gN _(L+Sc5쟳{ixܸIȨZWLOfRYXnƎ#7 /iQEQE2.km`S|0 ,:>>=>ʬ?cHcX4#wJ5:ꨔ1 kϣ4WG[/{e򎫽yOCFReNO!]Ϭ5׳\[ϧXdWl9rh)tʣYW!E捱GQ!Sv?f>ޡa~Y(%ØAܲzUŽ݋Y L{`\;')g#9seqǮa>f*pjS v<1ԖuGGSm1~4ӮІgq9V.tt$m%k9Efhvh߼jGvJ)CfݺG2ObRnʵYKT)3VK[E3<#nRsmL51O6.?GU#b <-T-F+y%\{mU~i7-O\e kzݭHAA@[+edVU_]SS!׮>s30hP(?"UzTlڬ+na;TK /5Ϟ`J×>pk-gekQ(yDjPLUa2mB{jdnL*+.dd&d|tF]+ob~nIy_->[}ۂy'v}WAt}{N˧GYb6:J8OA'MDW=}''K +OhyyWձ~^=g;a`4a|5gZ^EnvG] ;%Dq;$Fj5(gȟm J-    l'ԣMV*   -@3ߖ!I._JbSx] t'gߛTs_*oтg9`1Q~6%!6ɕ(oZa,ma2]~i%   -\Is(p8ͱoC||e/9*%/9e ʙ)ᆺz>Ub@@@@) +U)IooyCihlT%W(Q=)uh9굜%    52PC^ X   L^#:h9굜%    ;pF@@@@z@@@@z@Ҍkž%F !]:w>|*эk~h<8Z:U4+#c`#/]n<>"f]N5%{n|7Lzoiꇝ(uKshwU{{yٓ`_7&ʐcV uUP>pWR@ܚٽ $࠯f,{I>'EB UU]ԁ86-U*b #BNϛpMWkH}ںU0( DVtRZ    EeE ׮KʪIO4LW/Mptٓ"g/'g2{l9_G \G3'\@}E| ?>]x'l_.l\-M;os$ l>K@`w1u 2eUtyv?f܄'YHyljx0"%ԅ@CE=d{"_Ayyg55k.Olo%')hx+w+oF%SO+dw=Vݙhz.ĂѺaH8pᾟ}n'_}.'oHVZ_ZL2 9zp$LL+a{=L]" p((V0u 5y<Ю[['#Uˍ\gגMWĬTPP>@@@@~Z.uXi`.#A1^]/9LKSPR# ٢; IP}WfLb>#+/# 4t$ٺ?$dbabȘ(*Bn@@@>'W> Or/\D')* ױ1ޒ;_1(Vc|wIi[gAz Bte9~I2(|?yl3NIʓc8nTxY׬t\XBĪD]՗_9nk Kg1`܂ȍI*ԝ(rToRw}65Hm.-?X2:K(~ݒ+9n?eV/Jw/+&32cz|s.6/l}UK*T?}C,Y6׷]d]!@i̐0k\jxO0|oΡ}fn#f ec@' g:*H?~Jsen:ǧN2{~} ni$ŶR.b\Ru^UiiqI ,"R@5u\i͂L "@-mfk^QF/ږ.u/    o?ĉ{TE=VC-9;ҎM& @}>u0 "    MD/Fk"Ш@@@@CohzQ#@ ի#(@#W,:WGPG^3X    u$W    \g@@@H^AA @@@Zi;p[_a1xzPvG/Fkw]~-hw굻.GA@@zRvG^r4@@@~-hw굻.GA@@zRvG^r4@@@~-hwvh0@!FKA@@ ර.GA@@\i+Z    z\D^{m@@@:hO굧F[A@@zZs v{I~\ޟV4O_hlr&"W@&#aW#~#TYP",*@@@PF6@`RHzYYa΃%N,r^'8I. QA @@zMIYPW[8.?F~۟.e Jrx ]L | ڵY^~ٓiZ}߹DF~'~EɹLޘ'W6.,Pӏ WG&Ta   O@b!9vvvRuM;%q(iX9diHYW%)  6DJ]V#z}Z)(E/qʤq5Ck["ڥh:p2#Twa]S3v5A0 VAi9[CԈ+5ӭINut` LO"͊jAvO'Ϭ uQe[40D)Ҵ[UsijHjk$U zسk.XwC\   P?cH_Wx1Yp(ճ 6{RlPaV؃jJ嬒% ynDye@.gxaD6A94iwy zz']w^ ??5"=W2ÅG!y'\tJIiY+$!199BǠj|%Qp֪CA1cX WߡGf.gb*hQצ ЮX§[pytEJI{JK5ߛ7TKH8haccq$%&h*11D=F^]97TGHQ2Eu=SIv׳,Ӂ7H?k]5z OK?F -Xћ%FGnǺz ;R1QB   PWz.r]lpRBԶ6FrLG>.]ٻ#j)%.!s%aÒdGJ.L 4sWn]C=M`f]>ɤw5Lx*o0/v]65NN,_E<<]?}45(S_~eFO"D_P@@@HQ]=Bl'FO8 .\$s`ͶwBͥbVlV CaMURC߫}2Ԫbzb:mne+F~yӜ ohM99L,{P7gmf5tmEb*+1|!)}33ɦGNJXC=JUd=+(ՠAQRPB-9}>&QNTa*hL;jZr 'xqtt${e_M *8::}R+o*[n}jDʖ_XQ]} ELO9qKnV)3hHD+b @@K@WߢU xya$ȏq1vկj5MUJTH s5o0+j' r Go3u?+}l2 픀au*k)~#4jU^!"9K}p.`;%n"ʬkJ<ܮ⢱22Y+Fb)k@hDOǐUy    ЦYEAabb4Z ҩy_*;:\f!0    :4m9?LH\߉:T$O;XkO_5xl>xj܀\BS3ѬVW$l}fb-o? 83o5Sv2bwnާv3.Fujj +A@@@@ %dt/.W] vj=D?VT"!ؤKWl0#ny!s+޳dVgq7)J=SO@vz^8^liJ yr̺\c(ԟ@:Uv؏sxMp<~!׏"nCMѦzَE$9"}1 ?J8]>v1B, n cG0~L]K,TJm/*ޑE͕ɮi    @sF:T!aw|"$g:'a<!g$$;!/6uUԊ5hxڌanR?NʈxWkV1d+gn',Gǚ xKvn ؚJ<(QQRQubm/]gygI91?m8K[jCF.M\=6![ $RWq#qc&ݡvZ튝W|H^ξ*-Ed+8osbqG"}uuu_6DG+'1.>|@k" #X޽+iT~ ZjΝanMuˀJQGYKM=JYBFs(++{IQQQyyysꖗWSSҥq-FV@ͱme3 Ϟ=**.Ν;ب7f{4:y7)K[vJ?QAVeTQ"f&@=4uМlfo/_So / j$P~^TT䯵`"@<ӄi8;;7׶ϩjш7KR x?ѻ"`)^ UڍYB5zxz?nM #_R:ڪz5Q28xУFl-浀feevSv7%Q1Cmik*jSs5odnڍn=.% #ZTT/s+_+vVQ@=7,&zVC+zh?aQP&Dmiv|.sx~kBtbc5k֨Ub2TTx#R*:z3zSjz/^[Dv ı1fd}Hӌ}I]Jn_0K$meMgx+bV!B0r}?DtYӭ..QE44&꯳&L{ͩ5ꄟvq)ğZ[(&YCK.2#XbPM_s[,ќދGSj{w GxEm_#eb6eC9W:M 1Ɓ_S.#d |<6Yxk'ޢMAb3$wg~dB+M^̱wiQ$Y [;#ACXZyco?28r":X믾R3B&ϡԔ\˟^H'JfJI4{Ԯ'Cnlvq\w~ɸ3v~V^=WSG`I gM~MqYz2NPem-"s,dM5 9Edr|#F/anٱlG/~qN)Uw VBBj4R#׌/FoPL/xAu-)ک@o'zp҄!jt^ڱFkvo)_#fU}EЭspW*J\f~EwWLH>1U~rŽSx[s&8N#N"H'77~VN $=#Pqs'_?_'f-(+N[ӭuYtnf}/Eŋ}߳D&ȥcb D&,$]vc=cSW;L|RBtl.]FPfvĤ lxTky?kSXWԔLAdU#{L)썷`w`}cg'{|s?t}( |s_J*FvyMw?^'njn=VX]vme&/ {B Q|굵GudO[S,>}xKOb=]37@Ezꢙ0O-JO-sj8r"HV]@숦>[ 3Ӓ q:@ N|DHPe]ы}?pgcM_=O{¯'}} ˑ -v3H8uaڰ-_Z(~!~-)q|-!דR #-ZG|9g;J=7!TbKYlgvTV|h (-0uRL-Ip5%&p?%Nַ3ٿ[cu#e[i}nfͻ´̡RC7Pv ƹ#mj4] `{.n"IHO݊r+L?s Z݃bt #qWqڗ~HV>6dW=R!/^\9H]g} fXiD|yq!OyA\ѓĸ͝y+djˋ?IIBtjt}ڐsq<@/XʗS%WU94E9shsbmj'6mZXDc>AYM1&NYp;y  uz՜"2%):$pu86٪n9x!tvxGye߰N I~ ϟ԰ ˘!!s_b%|h1sHvdlm!{_Gۏ_ttt3~Se^Iv: @ӰG`F*UcS xOC:{T?=Ndt#yVZ鹻K :G;^[L΃˗Ͼۋws}of317zυ CWXrft*`iԏؑ}!CSSi n5'MO}FyZ r|,wjs`ϳ‰ r/~`?z'w}-#ImZJh-ҟ2RRIγ72E$I <)!Az"fACiW4TC{1xK 0W*J˕Fn F^EsS#GJh[TO7C.|=eNOrkѣ[&y%GW#o"yb0ݯFO.}>$dV^ dKP뎴 -%omgu,=GK l*y)HJn=z%4!Gm!Nή#{iJuL(e ##mM?z8}x FIyURBk,c56`vhJ~I1WrgI7=ߍ[$cB7ųx_yRQ; F-|Zt%s晰LU^13sg_gm'Rk $/8,'r7maa*/AI=azFd2EyZ9.ϭ(R#PvuTULo'&^=BLTX7''oPbJ^W-ECz*hѪ+W~߾4qd=5'?)jsDT7\SW Z߯$\=)̲N ] ? Gc`1 8)S^NݸnvTױuS$*&P.VWhN8ӟ2od@]JrE^Qߵ}'ϸ[ 4Hns1NAox?0S+n)ߝ;KOP-.,L;s`_NŢ~TD6q|T4Ӡ^b jDQSo?4o˖]Tڲ%`'p"sie0(>~@ e"Ңҿ2"E- Ui'PiͿ ?0PV!aCS 9y :IQ*:|~t L`Y/^x9Roz#щ}̼{`-RQɷR%XZ6Jx/@i1"6Er1Vy8ZTڶq}>sҝ%t{Pw`I e03$2,'@gԤ ^2Ԉ,%14^Uzle# 1dOZGv8~ jY݆],1wi'L-f'j?D$\ovF@ؤwP49Vp~] 7(*k,%[.)yr-bWpf@Tٚd0|x.%%&d}D6UYL'W[rj 3"N]$=>\?khʿmY5)v"$'-fIKX4-Wh#n$n#T0ūǷCF>5,3b1h)M8K,/;O]PR2")^ЎH}Z꘍Vu# :l;A I4 JUV2nt7fFbb Cs'x]\4l u*Ym+WX&i& vF '7:;tldVQ5GwKu(l2O dhOϑٴp쭆zocxT ED$5x{I+uwk-|LeY%0T4Y9XЕSR L$UsB IDATu w)+0X*pK{]^P#C{]Ox⣛J>s[%;ws3U=>rF LAS{ku5P(W a;(Fc^+էUb6`TQ;k~2cErA*ݑn;Du̿^8'?XbH߸XȡJ0a~\wsmoQ51@DDwZS-'_AXW![5?{f_;pBc|S(¼|r D #u т|=_>[ .5| -ro'P2 ?_| 9[V9w=t5b2qٌcaa{2MϰwCINW2lH?Q1q09nΜ~5p~{bbyh-7lae'SP|!dف\`W+ӱ<9)U0.+VGìC9\=#U{\=Y:99&tv:і8/t7~r,,Lvlj'nDF$i9;Bݷxzzz_*XWVkTzERMH^^^Mn$y5y>U&; =~W  {0v |c ^G~չT[bɷ VijӪVy{__=}tO_kqKH^!$ 5C:~Em!yQ@G6+H $@o!} ,ो 4;jT"aB!$Q@ߑ@H $^ʻIi^MuRM6w0S6:-K}]2xRGdWzjÆ5`s^Gگ-$/Jh@'=2kScw];vxĢٮ#0<~^z{%ָb+s# 'Z ő@H $J:ˉ *=A=%JM"*fSwAL;J]eɴQ!VE/+e`~{Bnf4!pFX?^-n'TImb/WFRБlB^4԰ i%۷ɲy"n $@H351@}gJ0O(䏳o0ԎTX +WVHt֮ɧb 6ZQ]YG~s+ WyR(qTFZ.-UO_^c03tU|AH $@'1ݸt7u&DZ: +9݃|PyaEt|hoYMG0V T{H`HM׀{H $x:iC@<;s!ϯ' @aEI _"ZStH^Ҁlbcȫ(ZGc&{M֣BʚL2Z楒,y¤ӞHa $@BB=b>ΔT]\`s+IWl_6VMh֥JeS_Hܬh>=BLTX7''oP"R4GrKC(K=9IQ 2l* 3 $@H0:kQF?Kvrdibj FR`a`W{ّ_TxF = /Va9e_zg6FdZCg *ylw#;v-S g)z,kWz 8H!:1!$@H ș}v@caa!15e0Xeh( B;j?8/) *jĭ,yj597+^1B}ʎ4rxRSVa4T;pU7( 7P-@H ƟfëYT"xnW@dJjQO[hU'nDFpS貑qdٴZHttFQ&,[rCV}8\.ьc- uTja3^JX$$vnHxH VhݩQ _.FfQDzW9| ,lٌm#JQϤu13Oν%s܏&/E . =LKdd旴Iɽ qOf/o#n[ܛ6kd57EH \`)hkI-vSeqRmgݺu uh_*Λx2- )32KCLMBԕdlnޱxܔ-i>]6%DG٬ d꠸إ*PER4a@H>!׊(@g:/k˪kʪjyOКU+U6Hn]Qh2*!AZF;ZX>g?A5B΅oq6w˫]IBl !q<}#bͦi"|;Ӛ;vlF6]dz>[x^9׏mtZ;{DHű%$o j9#&S(3o#}#Em)Cԭ>"'Z[j=_e^RnuNk q6$p+ L7;@-%P[pĉ?)̹ԬV>qLA-/mR .GطҾzZ݌'N$4'֌6CDG9I'VF+BC;98<ZQKJ+6o xcǎ0̞"/n?s*VzC DTaUk7|?#39lڒߨ(n¤n{ ü>LGNuW+/Xa%CWqveϭ^'999I\{w~?#f>POEj=788į]p%`2~> ΰDeS^uArfB(\4|S¨H]0cOLSҝ3E$2XRNʑ:|mAT*99v[XYje!ЋH @}yt'-%Н'R[ՖQ^OjJIBg1(3參d5UԔV\V# H@&)2u55K^k/X^VGں:Y3pӻImGXQ9lh=Lv^{LaCN´!ʉ) s .j,~ dC쥩Ժ'dbs\)1A*|6-F0@s 6}ݺy9p2#9HOߩR_rŔΎoO_jkVvq^."˔KƅQ-!(^2[:@u]=?Swq[㰤9> dHr ,!a->!=YS1hymȳd9m1IrQQQ%T+}ByT2q2YS.%ו~K؍v>i}l .W\1}?UGutηvka~BkJJ3{;OAsZlY?{)-f&]:w=$&j׫JR{EbS)&v^{E3RStTlłtLzhGkq/^߮^ }|jeh=KtS D;ƱO^>o#Ljv$NRn9 -җ{sC,׾d=A?W,D5a @#˽q9Zj**>r svvd5Ơ{ϡ.,lz*~.%y ?n}4ep\Y#yS.F9~K2pƧ#z4T^'U'OC{PX@/Jr*05G=sF]T>L(z/=xA qg;Pl\'jYFjT_ԃEEb| IfC"5M>ڒ9X\\o UzL'1!s'Ħ٩_9!)x+=e7(M"v4OsG |HQVKM>K|dO!G@i۲rCCHUpBUb%qAA?kW1G*1# 4cTJ4]b>$*!RͮԉAEfLXN8CO!vvʼnolջ__\ }e |_>u0.T&d,ݾ_; a&5Ǘ(3E3?i~Mb90O\^..zn<,ǔOH6a_O?tv* ph1f2;w=a^:218aƤ^QEi*$1%'7xLJZ8;pX&9Ms   )h)Lˏ_#?j y 7(mB2Jw W"hjR`6\OKJok4\.rBtQ\uRttهv65{@!vz$ig𩙰b^?0RbQ/~Cz6CpQb:Yk u  !+A4 YܒL7$^} {5L߆wSo ~"G 7sطUf%ȇJ4e*L?6osSmQ*'&O&ɓ³&y\LŸ^=,-3GmwBG W]=b]䫲)b~xBSsqױkO8\A|鴂  ںLmkoLYIdM ϟa4u>#b+ÎoN{iꛯ7\Ó_}ŵ}_ZL%'.ooLHu]{'NILBpڥE(&P"e4Dly^seMadׄѬ*4aeOQ"M ԕ\bJK guRVKeɋzvm"! \#jfO gz^NBJo䍽JCcOQxŚyy J+ t)ISz#P3'dH $KMla$a F~*/}?~a1$r$Rƭ+H !߶|Tޭ_/`1!{yc?YH"p $@ %K/숼EC|wpdC%+Or.鷃Ǵ $@H=%1|]a׊<t+n9|ܻՠ񟺚oގd ]F~CU.*cדBڛ@eee{D}H $JswlxZFyU5X&*d `w?9C9s.,?#K& jXBQVZ 7*'H/`yraUȸ[qK݀p#œ>oWT&$@H :"rrr}[͗| :*$ϱSIIeCI*wVtU֗rr|}9`?J@H $+5z~6ȯ>>e%17`PS (7UK3'|@G:Qd//H $x 8( U&HnyI =,$^k.ᔗTSJj]԰?O6wl;\j6_VV&VCCCWWPISV*tշ1֢--MCe>Lkp,F3߹4++MQnmW'aVśYD(;F7W?s2O} K'> JX 'lA:bĈ^$;wu)%-=m禳0!MYr1d4"K͆7boGR;-]_&%?ҭEUdFzgxO C,"@H H'-a.x <|pTQ*p~˦d ]8uxv}ꊨ~wpȩ.fԚ[J/+LZuSpʟ~eS_1zyi"u>۽{I3! + ҝaʐܛE7.X )FYP.Qi o_p,VSSCK7OQIP|KoLxBIO/7足e=t5eT&<kcѭ17]nTQ7}'|G$P酭u7Hatׇo;p!ESsrV7%en{L<^|)$]dwkD1p~'zCG57f?R m͑[-ӏ*gC-m>&«GQ?$ڛ  ㇫=ޔ@(QԺ!:iŚ\gJLrێi;8mB,xlthɊ CT"@NRҔ u1%OoOa #ڎ-:}E΄BtWV6dt/5n<lۣgǐKū>Vy=XS 1hE ut,g 2 &5IW.**j1TG%qӌϖG܊ coA)aY-L&B#t2w&Oe=MWL9t(_Lq CE6@79( 4q3֖w蟷Ժ3AP}P#݇y:4nhedmʓ?BNwwiy|;TSJ9f:uogyq%wq/")~In9Gl04Kvd-89*3wr֔K(+mN2Zڬ AA," x !y%D4&dZ|r]O,Q޸Pfd3akE7ƶDf*'f  &5De菿u0xd߇߼} iPڌ3 [~8ʭDEŷȕf2"2,-~,$AksD%6~7Ų@E:eUG>ekF%.2Z6Q_B7"$B/,&G 7q+{Kp:ẁ+mYN[Z:9-R1#J-&9nYNҕ+w T~%5G氖D%nYꕤrG~رij˴.w@`>D(Sy>v '0孈[}a!6:'<N9:$."D{,/4N~v~u-ېr]go߽n,%?^0 ˹LgDd`+WKHW`>M Q3ȳٔdCG)P-d Tu:~jNnΞ0;M7Wa3ќ-](5@$:45JX䧰a(AFNhiDW¾/%=sNY!S>1uѝ\6diA/;PEG-֫ǭ|+=V:Inҵ"Bt#:f慈,YΈȰ>#A[&fe?|)b+\Ї>&>k.ef% r UDrOY 򖴴atc+~>,"FD<6(-$'P}uB޽76 Bo>S]<^ꤼITԠB1y꺔ʠ.dޕdܯ{q\Y~DK ±CC8AY05bED)0D6eä}7/]} k\qNG3J]?"@e@U&@ko^~<~cLU[m萕ǬaBm ]1\8/33d״k5PS .[ 4SN7 b Nc--lvg@O*WjD2$vx@GXWzT drl7S,JGco`.RJ[EۖFOYk_85ڗ.pP~S̆r&SE$ae}<^I)!ۖJbղٛfOph"M-0_ 1t i ٠Y^Wfu bpc)$qEمT{*e#=SUjW:_ #DjbQֲXvPEBZֱǃ+#O) hY[hH7y e%{XlQVDjTk]na}cˬ^p %'ƴUdeej?fllܥGp*J9\`NIDw+JK *}-hy:wpҁti { bnEiXVՔyqTTpq9TYYΈ,UMIU.1%[ZZ4UzEa8#MkQܘ5Vd\nH]$2Oѝp 㿴VH9y fݹ;Y޿e`7cm\ r/@'.UPJgv!0)pK*UTKI J1u򜩐}$:1`CܹЋ8n`1:vQ95쭋RCa*Vw40"QL&EP$*7)՚ JFm;hDžn 'FD5 <ʂ, 2Z(U9TĔfsKRښofɏ;M Sc' f" z>`0΃*&u/3nݳdFCf<6tH3 ($f S3TGD )H $@g`vpuzYmy Vl2tP8:B|dj3iMT.xh`aEHbPPXL|J,&=/J=4wl0!$@o y>-f1.w#qCkGAaMՎ'Ems}mm;{ egⓒg#`~x0o$vНUj!v굍8FH $:C:̫Tl$y].x]8!iv,aϟPFAՆ:Aנ*AAǣCizn }¶BWҦM]' -/H1b@H 9zvwkX*bᠸHj*軗H>*2 @mkKIH $ڑ@IE h* tv< $@M蔹zMEH $@FCvC@H $PM;"@H $ڍz!$@HM#ޛvD$@H z0Z5!$@H "z`>@H $z@H Y:e9iEUuL͞CGv&ˢH $x' 0\gˏ pKYX:ΰBH $xtV^Tg?1* -cnetfb;10Z5ڑ@H v?sm1tIE]K>z8J~ɂqTab^i3_6J_l=zQ}$>ی@:Mq+,(qiбvȎʩao]B]f//2$ `ff{ط'H $v<_sB=Br)xS!Ć|+)`B \Ƶ0 $Lm?~g-~vRG c칈MЎc[u5~MDH $:s_=2YPX*l {Sa&K,:jF $@HE ԓX ,I Jld Sb1Pq L=4wl都 q $@H@|OS76ڐӫW/vU`T}j5Vm㫑{wF!~AS$׻[ݩm߮2$@H ><,_|CD~'t<[pe= >S zewϬ ɣM*[e2B$@H]'ЙmMeK,E5"5ee(P;*Cl@H $1$1ҤVE &b!@H $@'>@H $@蜛tlP;@H $MiZIDATC= $@H%x{gaÐ@H $F^7sH $h  B"$@H&tsIENDB`rt-4.0.19/docs/images/action-decline.png0000664000175000017500000003771312262650742017046 0ustar chmrrchmrrPNG  IHDRb iCCPICC ProfilexYw<wq]+{,۵GB(BI(E%HY)J$)*F4D!7~m|@q6vx )^^KKG2DB69OgWhh6>`1G?XIc??_!1|<țo|ّyc6s@03ebLNۼ9{5C2@2b-l54B0*ҨXbb?#"<^?"fۆma!-e?~c}sGSͰ_~a5cG}|2@ X`H; ? >//=H@QG`:/ GڥP|A,"oxe/#1x:ٍ$vaXS1V/((;Y 1._{T1p{v}e ZGkjfEs)"ZAk mj?R~;sc}0xXhhW <"MCN ]$0.>{yjs@C @m8GZH t PbCo0ȩF4 2~y 4.08 @2HY A"A @?#` L)0ރeCh!&⃄!IHR!#\ O bd AeYA/O`fe`UX}? 'p>\ Wf<S{xP4(V?J 2@Y\Q~( **AUQwQQS%4̈́&_Ht 0 }݌~F/ah1I: a0% &Lf 3bYXd`ISzlv8p8-5 ]uFqs5**>*y*c*W0tKT]TTT> ۩RQx->/__ШҤҔ4ܣA`$H { 1|B 𕖖VV֕666+5"QhF! ďtttzttt%t-SӋ{ѧЗӷ?_a`bcfe8pa#Qшч16,IɀtS3Yٌ99 02 #"#K!+d: ajaUwWEDEDe5M}!F+#)V%D+*,~J|DP(x( K*KJ| KmWخ]ORzRRuRҬҖ-ed\e eU =';)(g...E^B,_.DVXBgEIE_ӊϔ)*m*(S*/xTEI@`A!0p؈hQ+cc:e%$SiS33Yٲ~; {2K KelenUlb-̺MM[m[;9dL;;8Lבqc㪓SӔ~AN@VW7#ns{f'/~߀;{{uO% /k*o3 e1_-"y?-"wZ :%KeL*VkBBCB=CÂLJ?ȊT<L\EF3#APXLftvlyZcxDI$rRo2rZ~gS2̥^Lç=HM/Jv`{OFjlIf]1ơltv`pBɜ_>dJ6?"wV_prأaG u /1%[7#=Œ1'J-K[O v_~ˠ`PMU?|53z'fOv=3ާS|{Dd ̋ܗ/K^qz-~Jyspzh~fr_ ch.*)W8sr,J܁/$Ba$@#QKLmRqRMPWi ZT3 YX Y?qJsQ;xiI҄E6Tă$NI"" k*&_9Q%HMR]KCVS@EJi1]׍jKMM],L-UDwX>op8'1E 9;ݫ=r=ýOofCA!ta-.Ⱥ:M1ek?('=Mߟz`OazA L笰CΝu;_hTѢޖ'KOږU\>5r6U} ]yFj+]Aƾ&얻mvߺEzo%}XB=}A!îFe\~c|&Q/_ R}m9?]=Ftmwwז?|r[N=-aܡx$RcR8RKKH;7%-PLvfNIG W/18a^j{ҥ̻<ӗ+|N87rA&%˓W^5*_ϻYPv3]ݥ={n7'57@hxi' nM| ^N׼ɚ]lH9{}iikDwV8 IˑRA z~@&W?h(RqJNA$w:7_P\(=T( 5ArlO$#kE0bt0a1,6bpb8\ nJ*ڕ2;i4a4UZ*Z +9N>~!WȌCYOɰfwc_(|=sW"e[ p)T($b,*,F[]tLl\| +*hU5Au) 9MY- m.IoR۠0(DTƌלefl{zf{Nl΢.jVnI7 o"Y__lf0cDtTx5:gB,gU|FBwd)SnTh2;4s(|݂bZ'Nƕ:CRvnʧk7Ze ;\{b{S{?ds8outq畓o_M͌Ig//|kʇ5;H t7 R p2d' 7Q($gwAe^iS%]~rLw:%6{YpTT^jV~ >?GcNN$TҲ&bt.E@d8(XϤ4ʂebcabbH*6A3&HUQBBk"-gNJK** ${O"2Y%_S퓆V.~qɠ\2[6vh{V=.NQ.W]>cu,#Wr:Q8!Iɏ..N%3!/5i~?[فi3ee=fq=T~|A!{QxqْRɜrBӢwV5^pmBvC|wM5-mR_:ڻ{,{n5M0pQc'y'D^@/g^OQ+D?\<맕U?y+79 rl!NB}WXCj8-RqF-&Ӊ`E(!9j*xK| i} "1ޚ3C 6)f{Z9l9)\zLyyeDDD9Hjd:e4)JW?*jiehյk148՞Ӝux ߥ}aJ1ñm'˺+4O5WbX=^ }Yj._&^r-q|hmkۑ۩Vw>н_7 jףˏǝ?KW|%gguiUWy' (~aCGK/|k뷽+`kkm?Xyx]tw}cm̯-mG) uHHW$(`pkkjkkI6^X]b${ pHYs   IDATx}xUIizIԪhӵчH *JHwݦj3-k.Z]H6uMՙtaΈt!!). `Bs}K49|=7}/of"Xò,b bxGo  A !BA.C/ ) l'=Nf ս^/G dбgUfBy#]m2CDMȓ * !'k >S']Fz￿uVz <ށ:t w*:1PrH9N)ckābWCg\駟N!xFQ)ޡDT"crNrnF=QTw:ŮZTVsZ駟=q 1vx5WSg\\Qpo&)応r"魩۱Uэ;@W#BZ(﩯GFG:T6]BjF ~5XeGo!(鋯}(`ŰY.bg%o$sرJY^EZ( ${vjVFLשZ!cv rv?Y`ˠX6nۦқ *( Q+u}IufI 6xd7qbщY:ʹYUFJ!*ƱUSB hĐmFעO7L4mii`b8sѣGʶʹ],,@@dT5lv>n泸)ax@.Fpw*o5<)4XIY;mEB:+5q}bS>gL=Rz,DZV/ NV6F*jZxz!| `TO0^8$oQVV6m/Ce˄uca¾PŊIpi6\ LMʅ5EԥpF԰],7wO%;"Fh*sjS nE-*~~Geҁ|Z > Hڊ'&:癲>}YLPC̅ ?|צe:99} %Ln~뵺'S^d%l$\BQGi{ޫ:Ǎ:TdDŽ.\#m1lFԻ4g]vazF5F^KX?Z@֎)sD蛘@,pÇt_ɤo߆r8'~05Pdc0?ڲi|` [O#zS9m/_/7?X4oSKKJ_Q6),yuNj7`ƺ_ޮ!JLLXwG]G>}<)@`͟|ɥK`]K^©3o^yj{Y ʵyq#7 bP25nRU'jSժ|K ~^ֿlh QMڌ?ę$װ5M`+k} ?Ub7م7j- m{Kٕv$J 7T8G#1t.Bǯ8O9 :Q|077W(½F|p</Ox pM nI.U5% O@,Z%H R4 9gx,0y/[^OTe^ꂂp;v?8r>}:!軌X M[C7O@ G좓"v[?22C ǣ!< KF<Z01H2u2ecԓ9#9!Kw "G8^Ȧ2^3=9ΣndҷC&Y20Z7!4x#Ҝ8DpbiNϥC( Щ~"I)GyNs{'Q[e'j #s\XwEE%@>ꦽWmh%M uVt\/dZiHKԨvyFVU-/8Zݗ9zྊU6y @DLWS3ع˸B|&8-4qA*Mm SnUY~תf* s Q(r‘,Xt)Ku6:T#>"HXsM@k I+#O@O9c p[-.Q!nv =%; /Qq恃wdg-C. diم6=0dmw mS7t4X2݀IR[Y3V.]2lTz%uN^F,Ai*jy[$Z&ǞUKoSV(AJO6 `C >׹Q싿5%3dZ`MBd"A^0} :X6':vD=I!#Cś"LV3Qe ܀<#9UrF%5 C\!af%3u KnvdHeqYywG"h#{Y6xwG9!)%!RvhF0xi:!+J"5fn"17vO^stm=ڦp8 @Jdq8!GNzO ǚSΩ )9cpKv_p6/sa:&vLdM~ 8z<>t8Q[Jo_/@?ltq?oBEEpWֶG!wM\9Bd" Ww_|{jM2,.)Tj.T0Љs+*1Ɵ=F*{+xH=S`Q*5~8-Dl HE5 02rS{&U>@ {)CF,1J{pV ~ ܼIE_'7]RiFl864vqlk}HdQv1RCD*ih8`< xz޲mXzt1R}ZBBY;mX̉n.XMlumϣz |BL '=$.#6'9s%c%$w;Q'KFdd1y0]iCD7N&r+;Ou&{y:pM ÉY/SGUt$x^/~ =B{t/GFv;&9  = CpY)))RyiJpXxCaxH_Muj;et\=T.4Y_9 T[h;AmPH Ip[EHu1HG;;q wٲ "vѲv ;݇nݦ9up (qFevugĉ,X>{{ږ67t;:#e)O,Mm۩0 r̦©rEk!ȖkQ0 ANf6h&;665(X ˀoT.YȉcFUOsGCCVP^ 'y|Q!^B15B)(\A?q唨NR$_~e@>%T׉$_|ߕֵ 4F '6= I2ǷlY%Qmn@PXf"|"ȿ[VV31Ђgv Ę1?i!JlxRx㦅MB~ȝm!Fu6ڴ&'gd1ts zXH |n\ʭmB$|AN=5Ѿ5|NmV\P*'e niI@ 33@u|Gt@1 rj₼/+3@uNߜs.tO<|.e#ty>%pq/+*]*kɵ<O 10g%?ab I<,f%cmHeC̲S;/ob2rKibRV3o޼ -[y^w H^ңgwm=Ǘ\>X_qkL~{ԙoqfkW> YsHMj[`!B 9/кQsc 'yNC`?(uT?U#%b~ݲ{.^C(?c)g'BO|qtg {~X;f ݹ8-l;=u^a=f7=lϏMB`?vy5ll c!|4yޮ7<ށYN-7-.])_7WҽkUwҥ?oBa N.Gg٬f_j8(cr fJF9N {&N%5ͤaQ*{W ˁd=;z hoG}uZcnij n:>N>:Es$n3hRHxQ/FŅBޣQ>.<}#t?9+~O0oeܠ{mE>JBYmWQ㋽yIAnX΃, vNm"Vv A@/->Tj)fY]Q(܄_}< \Ka ~zj5g66>ا?5Li}+@}gc,&jN8֣ld )Lzzcpm6iM+iLN]ae`:6 9S1Ǒvq6b,mCDĬlx]V%Ċل׷UuB!$h) V{w^_]tJVKzT[ Z|džY=Qpx)(ӧr@A?عQ gcZF2g?0]xH}8}Q.S&d,9-́Wq!yyM e*OvnF'\y(Jw$[9ؼJج2E+ZD!n9FO*Kf#O%O6Vq*dpa< J g*g !0&Ox0E"ypE>X= #ns !ے?O`| ի!xYj(1,KZ?"CKv! Jd| 7' ䷌tљΙq CNVt~؛)KE p4GK d>l{Dm>$V3x#)ޡՅ;b@,nАxJ YӠ8 g)!^ ғYb N)応Fzkjv;ow2VX{x)FTʙKN蝀|"|~wBzU-Wor_>4\nZݾI/k@nrWNBOY566vwΎ9h瀯X7 XCkb2|69}0@0~Ѵd>L*M_/G8.+@[:{ڵ+W)0l l0##c@RPh#Kxj*`$~݀K(E p'6Z?`Z`rޮokF#܂[|a/goJ!H'u^;H_{ _?ڲi eo z\cݯooXQCnDw0[0hvH*P`xh/*7?/窶`ƹ&Г5 % IifGEk!޵?]>հ~rm@x| n+/__$ͫ'Jya|b c K|{+~G֯!)p$!e(sOT<4SH}Ԑo`Xʽ6C|ԮqҡHfz[T UZx\YxQ٪? cQP(Q8>*f`?>|)K}ܿdD {H iP|ז]j 9٫=g68NEJgb ɄRlǃ NoE9MCv\hl,pƷXqP]N#6`J!9Ӿ\|oK23q/R2l'B-lgA;EhCo}ڢ5OIYޱccJlώ\[RPDE@d/Y$vG{O MQkO>,ׂכϏXp$3 Ko\NSa5Wo[\q\L@2(*-hLZ˳~(VE>˸}çIDAT!kj4&[/[4ݑ,LMGC3!2hcQ"Ce eȔEO@PCtb*ct&F@qw,8t$2&3N2CdGK"e2xM2Cdгkq{C&3K=ǭhZKHyZ!2pܣ`q vtVG"ªO-bmp'&\pm8S:iz_9񃪺'TXr: kDHkDZy?\.%ST^ЊJ಼DO*{ >c >'Sͫ?0wFOJll /W1@NEUw]8+@.svOP\F3v#t[5Z_o\C6Hx/DƏ~݇PW hd3R~R\ p-Rܼw_oQ FdmvZ_K!8<~WZ.-vn84/BV Nv I(N,gN]S{ʊr&Z8.bŪ}:j94md\|@x=5Ѿ5|NC^U3%zۉ{6l/n}υdw;'Neo"Nn>lg̸̘ iH7Y2fdtkL"Ftf2ffk=I^:vc:#`g72IENDB`rt-4.0.19/docs/web_deployment.pod0000664000175000017500000002037012262650742015725 0ustar chmrrchmrr=head1 Setting up the web interface As of RT 3.9, RT's web interface speaks PSGI (L) which lets you use RT with any PSGI-supported web server (which includes Apache, nginx, lighttpd, etc). =head2 Standalone The standalone RT web server is backed by a pure-Perl server engine (L). This standalone server is appropriate for development and testing, but is not appropriate for production use. You should not run this server against port 80 (which is the default port) because that requires root-level privileges and may conflict with any existing listeners. So choose a high port (for example 8080) and start the standalone server with: /opt/rt4/sbin/rt-server --port 8080 You can also run C with any other PSGI server, for example, to use L, a high performance preforking server: /opt/rt4/sbin/rt-server --server Starman --port 8080 B: After you run the standalone server as root, you will need to remove your C directory, or the non-standalone servers (Apache, etc), which run as a non-privileged user, will not be able to write to it and will not work. =head2 Apache B: Both C and C are known to break RT. C will cause RT's CSS and JS to not be loaded, making RT appear unstyled. C will cache cookies, making users be spontaneously logged in as other users in the system. =head3 mod_fastcgi # Tell FastCGI to put its temporary files somewhere sane; this may # be necessary if your distribution doesn't already set it #FastCgiIpcDir /tmp FastCgiServer /opt/rt4/sbin/rt-server.fcgi -processes 5 -idle-timeout 300 ### Optional apache logs for RT # Ensure that your log rotation scripts know about these files # ErrorLog /opt/rt4/var/log/apache2.error # TransferLog /opt/rt4/var/log/apache2.access # LogLevel debug AddDefaultCharset UTF-8 Alias /NoAuth/images/ /opt/rt4/share/html/NoAuth/images/ ScriptAlias / /opt/rt4/sbin/rt-server.fcgi/ DocumentRoot "/opt/rt4/share/html" Order allow,deny Allow from all Options +ExecCGI AddHandler fastcgi-script fcgi =head3 mod_fcgid B: Before mod_fcgid 2.3.6, the maximum request size was 1GB. Starting in 2.3.6, this is now 128Kb. This is unlikely to be large enough for any RT install that handles attachments. You can read more about FcgidMaxRequestLen at L Most distributions will have a mod_fcgid.conf or similar file with mod_fcgid configurations and you should add: FcgidMaxRequestLen 1073741824 to return to the old default. ### Optional apache logs for RT # Ensure that your log rotation scripts know about these files # ErrorLog /opt/rt4/var/log/apache2.error # TransferLog /opt/rt4/var/log/apache2.access # LogLevel debug AddDefaultCharset UTF-8 Alias /NoAuth/images/ /opt/rt4/share/html/NoAuth/images/ ScriptAlias / /opt/rt4/sbin/rt-server.fcgi/ DocumentRoot "/opt/rt4/share/html" Order allow,deny Allow from all Options +ExecCGI AddHandler fcgid-script fcgi =head3 mod_perl 2.xx B B: Due to thread-safety limitations, all timestamps will be presented in the webserver's default time zone when using the C and C MPMs; the C<$Timezone> setting and the user's timezone preference are ignored. We suggest the C MPM or FastCGI deployment if your privileged users are in a different timezone than the one the server is configured for. B: RT 3.8 and below suggested use of C; this is incorrect for RT 4, and (starting in RT 4.0.11) RT will refuse to start, to prevent difficulties sending mail from RT. Change to C, as the example below uses. ### Optional apache logs for RT # ErrorLog /opt/rt4/var/log/apache2.error # TransferLog /opt/rt4/var/log/apache2.access # LogLevel debug AddDefaultCharset UTF-8 DocumentRoot "/opt/rt4/share/html" Order allow,deny Allow from all SetHandler modperl PerlResponseHandler Plack::Handler::Apache2 PerlSetVar psgi_app /opt/rt4/sbin/rt-server use Plack::Handler::Apache2; Plack::Handler::Apache2->preload("/opt/rt4/sbin/rt-server"); =head3 mod_perl 1.xx B To run RT using mod_perl 1.xx please see L for configuration examples. =head2 nginx C requires that you start RT's fastcgi process externally, for example using C: spawn-fcgi -u www-data -g www-data -a 127.0.0.1 -p 9000 \ -- /opt/rt4/sbin/rt-server.fcgi With the nginx configuration: server { listen 80; server_name rt.example.com; access_log /var/log/nginx/access.log; location / { fastcgi_param QUERY_STRING $query_string; fastcgi_param REQUEST_METHOD $request_method; fastcgi_param CONTENT_TYPE $content_type; fastcgi_param CONTENT_LENGTH $content_length; fastcgi_param SCRIPT_NAME ""; fastcgi_param PATH_INFO $uri; fastcgi_param REQUEST_URI $request_uri; fastcgi_param DOCUMENT_URI $document_uri; fastcgi_param DOCUMENT_ROOT $document_root; fastcgi_param SERVER_PROTOCOL $server_protocol; fastcgi_param GATEWAY_INTERFACE CGI/1.1; fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; fastcgi_param REMOTE_ADDR $remote_addr; fastcgi_param REMOTE_PORT $remote_port; fastcgi_param SERVER_ADDR $server_addr; fastcgi_param SERVER_PORT $server_port; fastcgi_param SERVER_NAME $server_name; fastcgi_pass 127.0.0.1:9000; } location /NoAuth/images { root /opt/rt4/share/html; } } =head2 lighttpd server.modules += ( "mod_fastcgi" ) $HTTP["host"] =~ "^rt.example.com" { alias.url = ( "/NoAuth/images/" => "/opt/rt4/share/html/NoAuth/images/", ) $HTTP["url"] !~ "^/NoAuth/images/" { fastcgi.server = ( "/" => ( "rt" => ( "port" => "9000", "bin-path" => "/opt/rt4/sbin/rt-server.fcgi", "check-local" => "disable", "fix-root-scriptname" => "enable", ) ) ) } } =head1 Running RT at /rt rather than / First you need to tell RT where it's located by setting C<$WebPath> in your F: # Important: don't include a trailing slash here. Read `perldoc # etc/RT_Config.pm` for more information. Set($WebPath, "/rt"); Then you need to update your Apache configuration to match. Prefix any RT related C, C and C directives with C. You should also make sure C is B set to C, otherwise RT's source will be served from C. For example: if you're using the sample FastCGI config above, you might change the relevant directives to: Alias /rt/NoAuth/images/ /opt/rt4/share/html/NoAuth/images/ ScriptAlias /rt /opt/rt4/sbin/rt-server.fcgi/ # Set DocumentRoot as appropriate for the other content you want to serve DocumentRoot /var/www ... If you're using the sample mod_perl configuration, you only need to change the C directive. If you're not using Apache, please see L or the web server's own documentation for configuration examples. rt-4.0.19/docs/security.pod0000664000175000017500000000656412262650742014570 0ustar chmrrchmrr=head1 RT Security =head2 Reporting security vulnerabilities in RT If you believe you've discovered a security issue in RT, please send an email to with a detailed description of the issue, and a secure means to respond to you (such as your PGP public key). More information is available at L. =head2 RT's security process After a security vulnerability is reported to Best Practical and verified, we attempt to resolve it in as timely a fashion as possible. Best Practical support customers will be notified before we disclose the information to the public. All security announcements will be sent to C, which includes C and C. As the tests for security vulnerabilities are often nearly identical to working exploits, sensitive tests will be embargoed for a period of six months before being added to the public RT repository. =head2 Security tips for running RT =over =item * Protect your RT installation by making it only accessible via SSL. This will protect against users' passwords being sniffed as they go over the wire, as well as helping prevent phishing attacks. If you use SSL, you will need to install some additional Perl libraries so that C can connect. You can use the C<--enable-ssl-mailgate> command to configure to automate the installation of these dependencies. This is documented further in step 10 of the README. You should use a certificate signed by a reputable authority, or at very least a certificate signed by a consistent local CA, which you configure your local systems to trust. If your SSL certificate is self-signed, it does little to prevent phishing, as users are trained to accept the unauthorized certificate. See also the C<--no-verify-ssl> flag to C. =item * Be sure to change the password for the C user of RT. The default password is C. This can be changed via the RT web interface at: Preferences > About me =item * Be sure to protect your F file if it contains database credentials or other sensitive information. This file only needs to be readable by RT and your web server. One way to accomplish this is to make the file readable only by root and the group that RT runs as, and then make sure your web server is a member of that group. Advanced configuration may be required if other users have the ability to run CGIs or access the server where RT is running. =item * Be sure to protect your database. If it does not need to talk to the world, then don't allow it to listen for remote connections. With MySQL this can be accomplished via C. If you use your database for other things and must allow remote connections, be sure to use a strong, hard to guess password for RT. =item * Apache, lighttpd, and most other web servers support name based virtual hosts. When possible, configure RT as a name based virtual host to raise the bar against DNS rebinding attacks. If you see RT when you visit http://your.servers.ipaddress.here, it means you are likely not getting this additional protection. =item * Use groups to organize RT permissions. Granting permissions per-user makes them, in general, more easily over-granted and forgotten, and more likely to diverge from each other, forming a maintenance hassle. =back =cut rt-4.0.19/docs/full_text_indexing.pod0000664000175000017500000001427612262650742016613 0ustar chmrrchmrr=head1 NAME Full text indexing in RT =head1 LIMITATIONS While all of the below solutions can search for Unicode characters, they are not otherwise Unicode aware, and do no case folding, normalization, or the like. That is, a string that contains C followed by C will not match a search for C. They also only know how to tokenize C-ish languages where words are separated by whitespace or similar characters; as such, support for searching for Japanese and Chinese content is extremely limited. =head1 POSTGRES =head2 Creating and configuring the index Postgres 8.3 and above support full-text searching natively; to set up the required C column, and create either a C or C index on it, run: sbin/rt-setup-fulltext-index If you have a non-standard database administrator username or password, you may need to pass the C<--dba> or C<--dba-password> options: sbin/rt-setup-fulltext-index --dba postgres --dba-password secret This will also output an appropriate C<%FullTextSearch> configuration to add to your F; you will need to restart your webserver after making these changes. However, the index will also need to be filled before it can be used. To update the index initially, run: sbin/rt-fulltext-indexer --all This will tokenize and index all existing attachments in your database; it may take quite a while if your database already has a large number of tickets in it. =head2 Updating the index To keep the index up-to-date, you will need to run: sbin/rt-fulltext-indexer ...at regular intervals. By default, this will only tokenize up to 100 tickets at a time; you can adjust this upwards by passing C<--limit 500>. Larger batch sizes will take longer and consume more memory. Care should be taken to ensure that multiple instances of C are not run at the same time. =head1 MYSQL MySQL does not support full-text indexing natively. However, it does integrate with the external Sphinx engine, available from L. Unfortunately, Sphinx integration (using SphinxSE) does require that you recompile MySQL from source. Most distribution-provided packages for MySQL do not include SphinxSE integration, merely the external Sphinx tools; these are not sufficient for RT's needs. =head2 Compiling MySQL and SphinxSE SphinxSE requires MySQL 5.0 or 5.1; later versions of MySQL have not been tested at this time. Sphinx version 2.0.1 has been tested to work, but version 0.9.9 may work as well. Compilation and installation instructions for MySQL with SphinxSE can be found at L. =head2 Creating and configuring the index Once MySQL has been recompiled with SphinxSE, and Sphinx itself is installed, you may create the required SphinxSE communication table via: sbin/rt-setup-fulltext-index If you have a non-standard database administrator username or password, you may need to pass the C<--dba> or C<--dba-password> options: sbin/rt-setup-fulltext-index --dba root --dba-password secret This will also provide you with the appropriate C<%FullTextSearch> configuration to add to your F; you will need to restart your webserver after making these changes. It will also print a sample Sphinx configuration, which should be placed in F, or equivalent. To fill the index, you will need to run the C command-line tool provided by Sphinx: indexer rt Finally, start the Sphinx search daemon: searchd =head2 Updating the index To keep the index up-to-date, you will need to run: indexer rt --rotate ...at regular intervals in order to pick up new and updated attachments from RT's database. Failure to do so will result in stale data. =head2 Caveats Sphinx only returns a finite number of matches to any query; this number is controlled by C in F and C<%FullTextSearch>'s C in C, which must be kept in sync. The default, set during C, is 10000. This limit may lead to false negatives in search results if the maximum number of matches is reached but the results returned do not match RT's other criteria. Take, for example, the instance where Sphinx is configured to return a maximum of three results, and tickets 1, 2, 3, 4, and 5 contain the string "target", but only ticket 5 is in status "Open". A search for C may return no results, despite ticket 5 matching those criteria, as Sphinx will only return tickets 1, 2, and 3 as possible matches. After index creation, altering C in C is insufficient to adjust this limit; both C in F and C<%FullTextSearch>'s C in C must be updated. =head1 ORACLE =head2 Creating and configuring the index Oracle supports full-text indexing natively using the Oracle Text package. Once Oracle Text is installed and configured, run: sbin/rt-setup-fulltext-index If you have a non-standard database administrator username or password, you may need to pass the C<--dba> or C<--dba-password> options: sbin/rt-setup-fulltext-index --dba sysdba --dba-password secret This will create an Oracle CONTEXT index on the Content column in the Attachments table, as well as several preferences, functions and triggers to support this index. The script will also output an appropriate C<%FullTextSearch> configuration to add to your F. =head2 Updating the index To update the index, you will need to run the following at regular intervals: sbin/rt-fulltext-indexer This, in effect, simply runs: begin ctx_ddl.sync_index('rt_fts_index', '2M'); end; The amount of memory used for the sync can be controlled with the C<--memory> option: rt-fulltext-indexer --memory 10M Instead of being run via C, this may instead be run via a DBMS_JOB; read the B chapter of Oracle's B for details how to keep the index optimized, perform garbage collection, and other tasks. =cut rt-4.0.19/docs/automating_rt.pod0000664000175000017500000002454312262650742015573 0ustar chmrrchmrr=head1 Automating Tasks in RT As RT tickets are created, worked on, and resolved, there are sometimes updates or notifications that have defined rules and could be automatic. These might include increasing ticket priority over time so tickets don't get lost, resolving old tickets that haven't had any activity for a period of time, or sending email notifications based on some ticket criteria like being 3 days old and still having a status of new. The tool for automating RT tasks is L. It's designed to be run from the cron scheduler and accepts a set of parameters that define what RT objects it should operate on and what it should do. The sections below describe some common L tasks as examples of the different ways you can automate tasks. All of the options for L are documented with the tool itself: $ perldoc bin/rt-crontool and on the Best Practical web site. =head2 Running C As you'll see in the examples below, this tool gives full access to RT. To manage the scope of changes that could be performed by the tool, we recommended creating a dedicated unix user with limited privileges for this purpose. Then create a user in RT with just enough access to perform the changes you need to automate, and set the "Unix login" field of the RT user to the username of the unix user you created. See the L documentation for more information. =head2 Testing Tips When setting up a new automated crontool job, keep in mind that you might be modifying a large number of tickets, especially the first time you run it. Changes to tickets can trigger scrips just like the same change made via the user interface. For example, changing the status to resolved will trigger the 'On Resolve' scrips, which often means sending email. Depending on the modification, you could end up sending a lot of email or triggering other actions. You can test your TicketSQL search queries in the RT web interface (using the Advanced tab of ticket search), and use bulk update if you want to prepare things for your new automated job. You can also disable scrips which you wish to avoid, or turn off outgoing mail with the L option. This can be useful if you want to clean up older tickets without sending notifications to requestors for tickets that were resolved years ago. To help with debugging, the C<--verbose> option will give you more output. The C<--log> option accepts all of the valid log levels for RT and allows you to change the logging level just for the automated job. While testing, it's often convenient to set: --log debug to see what's happening. =head1 A Simple Search Starting with a simple example, this command performs a search and displays output, but doesn't do anything to the returned tickets. This can be useful for safely testing search criteria. bin/rt-crontool --search RT::Search::FromSQL \ --search-arg "Owner = 'root'" \ --action RT::Action \ --verbose \ --log debug The C<--search> argument sets the search module RT should use, in this case L which processes TicketSQL. The second argument, C<--search-arg>, is the search query to use. These are the same queries you create in the RT search interface, so can use the RT web UI to refine your queries before setting up your job. The C<--action> argument is set to L which is the base class for RT actions. Since this class doesn't perform any action itself, this command will just output the results of the TicketSQL search. =head1 Auto-resolve Aged Tickets You can auto-set status based on any criteria you can define in a TicketSQL statement. For example, this command will resolve all active tickets that haven't been acted on in a month or more: bin/rt-crontool --search RT::Search::FromSQL \ --search-arg "(Status != 'resolved' AND Status != 'rejected') \ AND LastUpdated <= '1 month ago'" \ --action RT::Action::SetStatus \ --action-arg resolved The search is similar to the previous example with a slightly more complicated search argument. Note that since LastUpdated is treated as a timestamp (which increases over time) C means "the timestamp when it was updated is before the timestamp one month ago" and not "updated less than a month ago." The C<--action> in this case uses the L module with an C<--action-arg> of C. For each of the tickets returned from the search query, the status is set to resolved. When setting up automated tasks, you can use actions provided as part of RT, actions available from extensions, or actions you create yourself. As noted previously, the normal RT rules apply when running actions with L, so for this example applicable 'On Resolve' scrips will run. If a ticket has unresolved dependencies, it will log an error since tickets can't be resolved until dependencies are resolved. Also, the status argument must be valid for the lifecycle of the selected tickets, and the transition must be allowed. =head1 Commenting and Corresponding on a Ticket The following command records a comment on all tickets returned from the query -- in this case, tickets that are new and unowned after 3 days. bin/rt-crontool --search RT::Search::FromSQL \ --search-arg "Owner = 'Nobody' AND Status = 'new' \ AND Created < '3 days ago'" \ --action RT::Action::RecordComment \ --template 'Unowned tickets' The L action does just that, it records a comment just like replying to a comment email or commenting in the RT UI. It uses the global RT template defined by C<--template>, so you could put whatever you like in that template. For example: Subject: {$Ticket->id} new and unowned RT-Send-Cc: support-backup@example.com Ticket {$Ticket->id} is still new and unowned after 3 days! You can set up a similar command to send a reply rather than a comment using the L module. =head1 Sending Notifications While the example above sends notifications as a side-effect of recording a comment, you can also send notifications directly. bin/rt-crontool --search RT::Search::FromSQL \ --search-arg "(Status != 'resolved' AND Status != 'rejected') \ AND Queue = 'Project Work'" \ --condition RT::Condition::Overdue \ --action RT::Action::NotifyGroup \ --action-arg 'project-manager@example.com' \ --template 'Overdue task' This example shows the C<--condition> argument and the L module, which returns true if the current time (the time the cron job is running) is past the Due date on the ticket. Like the C<--action> argument, you can use conditions provided with RT, added from extensions, or conditions you have created. L, despite the "Group" in the name, can accept a bare email address or list of addresses as the action argument and it will send mail to them. A combination of email addresses and group names separated by commas also works. RT usernames are valid unless they conflict with group names. The action sends email, but unlike comment and correspond above, it doesn't record a transaction in the ticket history. =head1 Escalating Priority RT has a built-in ticket priority system with priority values from 0 to 99. Depending on how you configure your queues, you can set 1 as the top priority with lower numbers meaning more important, or 99 can be the top priority with higher numbers meaning more important. You can set this in your queue configuration at Tools -> Configuration -> Queues. On the queue configuration page, set "Priority starts at" and "Over time, priority moves toward". Whichever scheme you choose, RT's L can escalate the priority over time so tickets that are closer to their due date and are still not resolved have priority escalated automatically. This command escalates tickets in a designated queue: bin/rt-crontool --search RT::Search::ActiveTicketsInQueue \ --search-arg "General" \ --action RT::Action::EscalatePriority The C<--search-arg> is the name of the queue in which to escalate tickets. As shown in previous examples, you can also set your criteria using a TicketSQL query as well: bin/rt-crontool --search RT::Search::FromSQL \ --search-arg "(Status='new' OR Status='open') AND Due > 'Jan 1, 1970'" \ --action RT::Action::EscalatePriority This example will find new and open tickets in all queues, but will skip tickets with no explicit due dates set. Maybe you only want to bump the priority on tasks that have to be done by a certain date. L is an alternative escalation module that handles the "Due date not set" condition for you. It also offers some configuration options to control whether a transaction is recorded on the ticket and whether LastUpdated is modified. =head1 Transactions Many actions and conditions are also used in RT in scrips and may require a transaction in addition to a ticket. For such cases, L provides a C<--transaction> argument to designate a transaction. Valid values are C, C, and C and these are relative to the current ticket being processed. C and C are the first and last transaction on the ticket. Be careful with the C option since it will run the action on all transactions for the ticket. Since actions and conditions can be used in different contexts, you may need to provide a transaction object even if it doesn't seem necessary for your automated job. If you're seeing errors about a missing transaction, setting C<--transaction> to C or C is usually safe and will resolve the error. You can also target specific transaction types with C<--transation-type>. This argument accepts one or more transaction types as a comma-separated list. Using these options together, you can set up a command that sets the appropriate transaction object for your conditions and actions. For example, if you had an action you wanted to perform based on the content of the last reply on stalled tickets, you could do something like: bin/rt-crontool --search RT::Search::FromSQL \ --search-arg "Status = 'stalled' AND Queue = 'General'" \ --action RT::Action::CheckLastCorrespond \ --transaction last \ --transaction-type Correspond =cut rt-4.0.19/docs/customizing/0000775000175000017500000000000012262650742014555 5ustar chmrrchmrrrt-4.0.19/docs/customizing/approvals.pod0000664000175000017500000001455712262650742017304 0ustar chmrrchmrr=head1 RT Approvals Some types of change requests processed through RT can require an approval before being fulfilled. You can configure RT to set up such an approval workflow for tickets in queues you select. This document walks through the steps to set up a "Change requests" queue with approvals. You should try this in a test instance first. If you don't have a test RT instance, you should read through the entire document first, change the details as needed for you approval scenario, and then set up approvals. =head2 Overview The approvals solution in RT involves using a special queue, called ___Approvals, to hold approval requests. Scrips and templates automatically create the necessary tickets and process the approval or rejection. =head2 Change Management Queue Since this example will use a change management queue as the queue where tickets need approval, first we'll set up the queue. Login into UI as the 'root' user. Go to Tools -> Configuration -> Queues and create a new 'Change requests' queue. When you set up this queue, do not select the "approvals" Lifecycle. That selection is for the ___Approvals queue itself, not for queues that need tickets approved. =head3 Change Management Template Once the Change Management queue is created, select Templates -> Create in the queue configuration menu. Enter the Name 'create approval', leave the default Type as Perl and in the content area enter the following: ===Create-Ticket: Manager approval Subject: Manager Approval for {$Tickets{TOP}->Id} - {$Tickets{TOP}->Subject} Depended-On-By: TOP Queue: ___Approvals Owner: root Requestors: {$Tickets{TOP}->RequestorAddresses} Type: approval Content-Type: text/plain Due: {time + 3*24*60*60} Content: Please approve me. Thanks. ENDOFCONTENT All of the text should be against the left side of the textarea with no spaces. Click create. You'll now use this template when you create the scrip. =head3 Change Management Scrip Now you need a scrip. On the queue configuration page, select Scrips -> Create. For the Description, enter 'Create an approval on ticket create', select the 'On Create' condition, 'Create Tickets' action, and select the template you just created. Click create. =head3 Testing You can already test your first workflow with approvals. Create a ticket in your new 'Change requests' queue. You're logged in as 'root' and the owner of the approval is root (based on the template), so it's your job to approve or deny the request. Select Tools -> Approvals in the RT main menu. You should see your first approval request. Select the 'Deny' radio button, write 'too expensive' in the notes area and click Go! You just rejected the approval request. If you open the ticket you created for testing then you will see that it's rejected as well and has the correspondence: Greetings, Your ticket has been rejected by root. Approver's notes: too expensive You may need to search for the ticket since the rejected state means it's no longer 'active'. Where did this message come from? From templates in the ___Approvals queue. =head2 ___Approvals queue ___Approvals is a special queue where all approvals are created. The queue is disabled and is not shown in until you search for it. Go to Tools -> Configuration -> Queues, leave "Name is" in the search area and enter ___Approvals into the search field. Check 'Include disabled queues in listing.' and click Go! You should now see the ___Approvals queue configuration page. You may want to change the name of the ___Approvals queue, but parts of RT expect it not to change. The name normally isn't shown to users, however, so it will be largely invisible. =head2 Approvals' templates From the ___Approvals queue configuration page, click 'Templates' in the page menu. You should see templates that are used after actions on approvals. For example if you click on the 'Approval Rejected' template in the list, you will see the template that generates the correspondence mentioned above. =over 4 =item * New Pending Approval Owners of new approval requests get this message. =item * Approval Passed Recorded as correspondence on the ticket when it's approved by an approver, but still requires more people to approve. =item * All Approvals Passed Recorded when no more approvals are required. =item * Approval Rejected Recorded when the approval request is rejected (denied). =item * Approval Ready for Owner Sent to the Owner of the ticket when it's approved and no more approvals are required. =back You can customize these templates to meet your needs. However, note that there is just one ___Approvals queue for the system, so make sure changes work with all queues that use approvals. =head2 Approvers Navigate back to the template used to create approvals. It has the following line: Owner: root With this code you set the owner of the approval request to root. Approvals, as well as tickets, have Ccs, AdminCcs and Requestors. For example the following line copies requestors from the Tickets to the approval request: Requestors: {$Tickets{TOP}->RequestorAddresses} Let's create a group 'Change Approvers' and let any user of this group approve 'Change Requests'. Create the group, and add root as a member. Open the 'create an approval' template, and replace the 'Owner:...' line with the following: AdminCcGroup: Change Approvers Note that this line only works in RT 4.0.5 and newer. Create another test ticket, and you as root still should be able to see the newly created approval, but now because of the group membership. You can accept or deny it. Any member of the group can accept/deny without consulting the other members, which is useful with more complex multistep workflows. =head2 Approvers' Rights Since the ___Approvals queue is a regular RT queue, you need to grant rights to allow your approvers to operate on approval requests. As root, you have super user rights and haven't needed specific rights for this example. It's wise to grant rights via roles as there is only one queue for all approvals in the system. To grant rights to your Change Approvers group, go to the queue configuration page for the ___Approvals queue. Click on Group Rights in the page menu. Grant ShowTicket and ModifyTicket rights to the Owner and AdminCc roles. This should be enough for most cases. Now members of the 'Change Approvers' group can act on approvals even if they have no SuperUser rights. rt-4.0.19/docs/customizing/styling_rt.pod0000664000175000017500000001435212262650742017464 0ustar chmrrchmrr=head1 Customizing the Look of Your RT While the default RT color scheme nicely matches the Best Practical colors, you may want to personalize your RT instance to make it better fit with your company colors. =head1 Selecting a Theme The fundamental look of RT comes from the selected theme. Different RT versions have a default, and the RT admin can set the system-wide theme with the C<$WebDefaultStylesheet> configuration value in the F file. RT 4.0 comes with the following themes: =over =item web2 An approximation of the 3.8 style =item aileron The default layout for RT 4.0 =item ballard Theme which doesn't rely on JavaScript for menuing =back If you have granted the ModifySelf right to users on your system, they can pick a different theme for themselves by going to Logged in as -> Settings -> Options and selecting a different theme. =head1 RT Theme Editor RT has some built-in controls to manage the look of the theme you select. To use the Theme Editor, log in as a SuperUser (like root), and navigate to Tools -> Configuration -> Tools -> Theme. =for html RT theme editor, defaults =for :text [RT theme editor image at F] =for :man [RT theme editor image at F] =head2 Logo and Colors From there you can upload a logo and pick colors for the various page sections. RT will automatically pick out the six most frequent primary colors from your logo and offer them as options next to the color wheel. In less than a minute, you can upload a logo and set a few colors. Until you click "Save", color changes are temporary and are only shown to you. When you find the color scheme you want, click Save to make it the new theme for the entire RT instance. If you ever want to wipe the slate clean, you can use one or both of the "Reset to default" buttons. =head2 Basic CSS Customization The theme editor lets you do a bit more if you know your way around CSS or have a web designer who does. By writing your own styles in the Custom CSS box, you can quickly customize the RT look and feel pretty extensively. The primary RT elements are stubbed out for you in the edit box. After making CSS changes, click Try to see how they look, and click Save when you're done. =head1 Advanced CSS Customization If you're more ambitious and good at CSS, you can go even further and create your own theme. As with all modifications to RT, it's a bad idea to just change the CSS for one of the standard RT themes in place. When you upgrade, if you protect your modifications from being over-written, you may miss out on updates that are required for new features. In the worst case, an upgrade might wipe out all of your changes. Below are a few approaches to customizing RT's CSS. =head2 Additional files RT allows you to conveniently include additional CSS files after the default CSS styles, via the C<@CSSFiles> configuration option. To add an extra CSS file, for example F, create the local overlay directory: $ mkdir -p local/html/NoAuth/css/ And place your F file in it. Finally, adjust your C<@CSSFiles> in your F: Set( @CSSFiles, ('my-site.css') ); This technique is preferred to callbacks (below) because CSS included via this way will be minified. It is also included across all styles, unlike the callback technique. If you are writing an extension, see L for how to simply and programmatically add values to C<@CSSFiles>. =head2 Callbacks RT's CSS files are also Mason templates and the main CSS file, conveniently called C, has a C and C callback allowing you to inject custom CSS. To create an End callback, create the callback directory and an End file in that directory: $ mkdir -p local/html/Callbacks/MyRT/NoAuth/css/aileron/main.css $ touch local/html/Callbacks/MyRT/NoAuth/css/aileron/main.css/End You can use any name you want for the C directory and the theme directory should correspond with the theme you want to change. RT will now evaluate the contents of that file after it processes all of the C<@import> statements in C. =head1 Designing Your Own Theme The above approaches work well if you need to change the look of part of RT, but you may want to design your own RT theme and leave the standard RT themes available to users unmodified. In this case, you'll want to create your own CSS directory. As shown above, the C directory is the place to put local modifications to RT. Run the following commands in your C directory (or wherever your RT is installed) to get started: $ mkdir -p local/html/NoAuth/css/localstyle $ cp -R share/html/NoAuth/css/aileron/* local/html/NoAuth/css/localstyle/ You can call your "localstyle" directory whatever you want and you don't have to copy the aileron theme to start from, but it's a good place to start off for RT4. Now set C<$WebDefaultStylesheet> in RT_SiteConfig.pm to the new directory name you selected, for example: Set( $WebDefaultStylesheet, 'localstyle' ); If you restart your RT it should look just the same (assuming you copied your current default theme), but if you go to your Options page you'll see that the system default theme is now your new "localtheme." If you look at the CSS being loaded, you'll also see that the main css file is now being loaded from your local directory. But you'll also see that files are still being loaded from the main RT css directories as well. Why? The place to start understanding the loading order of RT's CSS is the C file. You'll see it first loads C<..base/main.css> which are the base styles for RT along with styles for other tools RT uses like jQuery. After loading all of the base styles, C then imports a theme-specific version with overrides and new style elements for the selected theme. So as long as you follow the CSS precedence rules and use the correct specificity, you get the last chance to modify things. You can start modifying things by editing the CSS files in your new localstyle directory. When you upgrade RT, you'll want to look specifically at any changes to the style you started from to see if there are any new styles you want to merge into your new style. rt-4.0.19/docs/customizing/templates.pod0000664000175000017500000000617312262650742017266 0ustar chmrrchmrr=head1 Templates Each template is split into two sections. A block of headers and a body. These sections are separated by a blank line. Templates are processed by the L module. This module allows you to embed arbitrary Perl code into your templates. Text wrapped in curly braces, C<{...}> is interpreted as Perl. See L for more information. =head2 Headers Your template may specify arbitrary email headers. Each header is a name, a colon, then a value. So, for example, to specify a subject, you can use: Subject: Thanks for your bug report. =head3 Special Headers =over =item Content-Type: text/html The special header "Content-Type: text/html" tells RT that the template should be parsed as HTML. RT will automatically make the outgoing message multipart. That way, recipients who can read only plaintext email will receive something readable, while users with clients which can display HTML will receive the full experience. Please be aware that HTML support in mail clients varies greatly, much more so than different web browsers. We welcome contributions of HTML-ization of builtin templates. =back =head2 Template Types Templates have a Type which dictates which level of code execution is allowed. Templates of type C are evaluated using L which allows arbitrary code execution. Only users which have the global C privilege may write templates of type C. Prior to RT 4.0, this was the only type of Template available. Templates of type C permit only simple variable interpolation. No special privilege beyond C is needed to write C templates. For both types of templates, text between curly braces C<{ ... }> is interpolated. For C templates, this text can be any code (see L). For C templates, only simple variables are permitted; for example C<{ $TicketSubject }>. =head2 Variables =head3 Perl templates The variables that your templates may use include: =over 4 =item C<$Transaction> The transaction object. =item C<$rtname> The value of the "rtname" config variable. =item C<$Ticket> The ticket object. This is only set during a ticket transaction. =item C<$Requestor> This is not an object, but the name of the first requestor on the ticket. If this is not what you need, inspect C<< $Ticket->Requestors >>. =item C A localization function. See L. =back =head3 Selected Simple template variables Since method calls are not allowed in simple templates, many common method results have been placed into scalar variables for the template's use. Among them: =over 4 =item $TicketId =item $TicketSubject =item $TicketStatus =item $TicketQueueName =item $TicketOwnerName =item $TicketOwnerEmailAddress =item $TicketCF(Name) For example, C<$TicketCFDepartment>. =item $TransactionType =item $TransactionField =item $TransactionOldValue =item $TransactionNewValue =item $TransactionData =item $TransactionContent =item $TransactionDescription =item $TransactionBriefDescription =item $TransactionCF(Name) For example, C<$TransactionCFLocation>. =back =cut rt-4.0.19/docs/customizing/timezones_in_charts.pod0000664000175000017500000000601612262650742021333 0ustar chmrrchmrr=head1 INTRODUCTION Every date in RT's DB is stored in UTC format. This affects charts grouped by time periods (Annually, Monthly, etc.), in that they are by default shown in UTC. To produce charts that are in a specific timezone, we have to use database-specific functions to convert between timezones; unsurprisingly, each DB has very different requirements. =head1 CONFIGURATION This code is experimental; you can enable it using the C<$ChartsTimezonesInDB> configuration option. =head1 DATABASE SPECIFIC NOTES =head2 mysql The time adjustment cannot simply be converted using a numeric time shift, as this shift value depends on the daylight saving time properties of the time zone. mysql since 4.1.3 supports named timezones, but you have to fill special tables with up-to-date timezone data. On modern systems, this is usually a simple case of: mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql mysql's doc recommends you restart server after running this; you can read more about mysql's timezone support at L =head2 PostgreSQL PostgreSQL uses your operating system's functions to convert timezones. Thus, you don't need to do anything in particular except to make sure that the data in F is up to date. On some systems this may mean upgrading a system package. =head3 Note for users of Pg 7.2 and older or users upgraded from those You should be sure that timestamps in RT DB have no TZ set. The TIMESTAMP column type in PostgreSQL prior to Pg 7.3 had timezone info by default; this has been removed in more recent versions. If your RT database has this embedded timezone info, you will need to alter the columns to remove them before enabling this feature. =head2 Other databases There is no implementation for Oracle or SQLite at current. =head1 FOR DEVELOPERS =head2 PostgreSQL We use the timestamp type for all datetime fields. It either has timezone info or not, since by default Pg 7.3 and above have no timezone. Conversion is kinda tricky: timezone('Europe/Moscow', timezone('UTC', column_without_tz_info)) timezone('to_tz', timezone('from_tz', column_without_tz_info)) This function flips the HAS_TZ flag on the argument, and moves the timestamp to UTC. The first call makes no conversion, but flips the HAS_TZ flag; the second call flips it back and does actual conversion. For more information, See L and L =head2 mysql Once timezone information is loaded into tables on the server, we have all the same set of named timezones in the system and DateTime (DateTime project has copy of the TZ data in a module). CONVERT_TZ(TS, from, to) exists since mysql 4.1.3. Note that it takes a timestamp, so it only supports limitted date range (usuall 1970-2038). =head2 Oracle Look at FROM_TZ function. =head2 SQLite Has no apparent timezone support. =cut rt-4.0.19/docs/customizing/lifecycles.pod0000664000175000017500000004150112262650742017404 0ustar chmrrchmrr=head1 Ticket Lifecycles By default, RT comes with ticket statuses that work for many types of workflows: new, open, stalled, resolved, rejected, and deleted. But there can be any number of workflows where these status values don't completely fit. RT allows you to add new custom status values and define their behavior with a feature called Lifecycles. This guide demonstrates lifecycles using an order fulfillment system as a real-world example. You can find full lifecycles documentation in L. As with all RT custom configuration, if you are customizing the RT lifecycle, make your changes in your C file, not directly in C. If you are adding a new lifecycle, you can add a new entry with: Set(%Lifecycles, my_new_lifecycle => { ... } ); The detailed configuration options are discussed below. Once you add it and restart the server, the new lifecycle will be available on the queue configuration page. If you want to modify the default lifecycle, you can copy it from C, paste it into C and make your changes. =head1 Order Processing Example To show how you might use custom lifecycles, we're going to configure an RT lifecycle to process orders of some sort. In our order example, each ticket in the queue is considered a separate order and the orders have the following statuses: =over =item pending The order just came in untouched, pending purchase validation =item processing The order is being looked at for transaction processing =item delivery The order is out for delivery =item delivered The order was successfully delivered to its destination =item refunded The order was delivered but subsequently refunded =item declined There was an error in the process validation and the order was denied purchase =back In this particular example, the only status an order can start with is 'pending.' When a process coordinator chooses to take this order, it goes into processing. The order can then either be delivered or denied processing. Once denied, the lifecycle for that order ends. If it is delivered, the order can still be refunded. The following sections walk through each part of the configuration. You can find the full configuration at the end in case you want to see the exact syntax or use it to experiment with. =head2 Defining Status Values Every queue has a lifecycle assigned to it. Without changing any configuration, you are given two lifecycles to choose from: "default" and "approvals." The approvals lifecycle is used by the internal approvals queue, and should not be changed or used by other queues. Do not modify the approvals lifecycle unless you fully understand how RT approvals work. =for html Lifecycle choices =for :text [Lifecycle choices F] =for :man [Lifecycle choices F] In RT 4.0, the C<@ActiveStatus> and C<@InactiveStatus> configurations which were previously available are gone. The logic defined by those options is now a subset of RT's lifecycle features, as described here. A ticket naturally has three states: initial (I), active (I and I), and inactive (I, I, and I). These default settings look like this in the C file: default => { initial => [ 'new' ], active => [ 'open', 'stalled' ], inactive => [ 'resolved', 'rejected', 'deleted' ], The initial state is the default starting place for new tickets, although you can create tickets with other statuses. Initial is generally used to acknowledge that a request has been made, but not yet acted on. RT sets the Started date on a ticket when it is moved out of the initial state. Active tickets are currently being worked on, inactive tickets have reached some final state. By default, inactive tickets don't show up in search results. The AutoOpen action sets a ticket's status to the first active status. You can find more details in L. Now we want to set up some statuses appropriate for order fulfillment, so we create a new top-level key called C and add our new status values. Set( %Lifecycles, orders => { initial => [ 'pending' ], active => [ 'processing', 'delivery' ], inactive => [ 'delivered', 'returned', 'declined', 'deleted' ], # ..., }); We still use the initial, active and inactive categories, but we are able to define status values that are appropriate for the workflow we want to create. This should make the system more intuitive for users. =head2 Transitions The typical lifecycle follows the path initial -> active -> inactive. Obviously the path of a ticket can get more complicated than this, which is where transitions come into play. Transitions manage the flow of a ticket from status to status. This section of the configuration has keys, which are the current status, and values that define which other statuses the ticket can transition to. Here are the transitions we define for our order process. Set( %Lifecycles, orders => { # ..., transitions => { '' => [qw(pending processing declined)], pending => [qw(processing declined deleted)], processing => [qw(pending declined delivery delivered deleted)], delivery => [qw(pending delivered returned deleted)], delivered => [qw(pending returned deleted)], returned => [qw(pending delivery deleted)], deleted => [qw(pending processing delivered delivery returned)], }, # ..., }); If a ticket is in the delivered status, it doesn't make sense for it to transition to processing or declined since the customer already has the order. However, it can transition to returned since they could send it back. The configuration above defines this for RT. The C<''> entry defines the valid statuses when a ticket is created. Deleted is a special status in RT that allows you to remove a ticket from active use. You may need to do this if a ticket is created by mistake, or a duplicate is created. Once deleted, a ticket will never show up in search results. As you can see, the system will allow you to transition to deleted from any status. =head2 Rights and Access Control Your workflow may have several people working on tickets at different steps, and for some you may want to make sure only certain users can perform certain actions. For example, the company may have a rule that only the quality assurance team is allowed to approve (or decline) an order for delivery. You can apply labels to transitions and assign rights to them to allow you to apply this sort of access control. This is done with a rights entry: Set( %Lifecycles, orders => { # ..., rights => { '* -> declined' => 'DeclineOrder', '* -> delivery' => 'ApproveOrder', }, # ..., }); This configuration tells RT to require the right DeclineOrder for a transition from any status (C<*>) to C. The ApproveOrder right is similar, but for C. These rights take the place of the standard ModifyTicket right, not in addition to it, so keep that in mind when creating and assigning new rights. Once these rights are configured and loaded (by restarting the web server), they can be assigned in the web UI to groups, queues, and users. The rights show up on the rights pages in a Status tab alongside the standard RT rights tabs. =for html Lifecycle group rights =for :text [Lifecycle group rights F] =for :man [Lifecycle group rights F] After a status transition right is granted, users with the right will see the status in the drop-down, and possibly any related actions (see L). =head2 Default Status There are interfaces to RT from which it isn't possible to define a status, like sending an email to create a ticket, but tickets require a status. To handle these cases, you can set default status values for RT to use when the user doesn't explicitly set a value. Looking at the defaults section in the standard RT configuration, you can see the events for which you can define a default status. For example, 'on_create' => 'new' automatically gives newly created tickets a C status when the requestor doesn't supply a status. We can do the same for our process. Set( %Lifecycles, orders => { defaults => { on_create => 'pending', }, # ..., }); Only a small number of defaults are needed because in practice there are relatively few cases where a ticket will find itself without a status or in an ambiguous state. =head2 Actions To customize how transitions are presented in RT, lifecycles have an C section where you can customize how an action (e.g. changing status from new -> open) looks and functions. You can customize the action's label, which is how it appears to users, and the type of update, either comment or reply. As an example, in the default RT configuration the action "new -> open" has the default label "Open it" and an update value of C. Using the lifecycles configuration, you can change the label to anything you like. You can set the update option to C or C, which tells RT to process the action as a comment (not sent to requestors) or a reply (sent to requestors). This part of the lifecycles configuration replaces the previous C<$ResolveDefaultUpdateType> configuration value. To mimic that option, set the update type to C for all transitions to C. Here is an example of a change we might make for our order process: Set( %Lifecycles, orders => { # ..., actions => [ 'pending -> processing' => { label => 'Open For Processing', update => 'Comment', }, 'pending -> declined' => { label => 'Decline', update => 'Respond', }, # ... ], # ... }); Alternatively, supplying no update type results in a "quick" action that changes the status immediately without going through the ticket update page. RT's default "Delete" action is a "quick" action, for example: # from the RT "default" lifecycle 'new -> deleted' => { label => 'Delete', }, If the transition has an associated right, it must be granted for a user to see the action. For example, if we give a group the DeclineOrder right as shown in the earlier example, members of that group will see a Decline option in their Actions menu if a ticket has a pending status. The L at the end shows other action entries that make the Decline option available in more cases. =for html Action menu decline =for :text [Action menu decline F] =for :man [Action menu decline F] =head2 Mapping Between Queues As we've demonstrated, each queue can have its own custom lifecycle, but in RT you sometimes want to move a ticket from one queue to another. A ticket will have a status in a given queue, but that status may not exist in another queue you want to move the ticket to, or it may exist but mean something different. To allow tickets to move between queues with different lifecycles, RT needs to know how to set the status appropriately. The lifecycle configuration has a C<__maps__> entry to allow you to specify the mappings you want between different queues. Sometimes statuses between queues don't or can't match perfectly, but if you need to move tickets between those queues, it's important that you provide a complete mapping, defining the most sensible mapping you can. If you don't provide a mapping, users will see an error when they try to move a ticket between queues with different lifecycles but no mapping. Set( %Lifecycles, orders => { # ... }, __maps__ => { 'default -> orders' => { 'new' => 'pending', 'open' => 'processing', # ..., }, 'orders -> default' => { 'pending' => 'new', 'processing' => 'open', # ..., }, # ..., }, # ..., }); In the example above, we first define mappings between the default queue and our new orders queue. The second block defines the reverse for tickets that might be moved from the orders queue to a queue that uses the default lifecycle. =head2 Full Configuration Here is the full configuration if you want to add it to your RT instance to experiment. Set(%Lifecycles, # 'orders' shows up as a lifecycle choice when you create a new # queue or modify an existing one orders => { # All the appropriate order statuses initial => [ 'pending' ], active => [ 'processing', 'delivery' ], inactive => [ 'delivered', 'returned', 'declined', 'deleted' ], # Default order statuses for certain actions defaults => { on_create => 'pending', }, # Status change restrictions transitions => { '' => [qw(pending processing declined)], pending => [qw(processing declined deleted)], processing => [qw(pending declined delivery delivered deleted)], delivery => [qw(pending delivered returned deleted)], delivered => [qw(pending returned deleted)], returned => [qw(pending delivery deleted)], deleted => [qw(pending processing delivered delivery returned)], }, # Rights for different actions rights => { # These rights are in the default lifecycle '* -> deleted' => 'DeleteTicket', '* -> *' => 'ModifyTicket', # Maybe we want to create rights to keep QA rigid '* -> declined' => 'DeclineOrder', '* -> delivery' => 'ApproveOrder', }, # Actions for the web UI actions => [ 'pending -> processing' => { label => 'Open For Processing', update => 'Comment', }, 'pending -> declined' => { label => 'Decline', update => 'Respond', }, 'pending -> deleted' => { label => 'Delete', }, 'processing -> declined' => { label => 'Decline', update => 'Respond', }, 'processing -> delivery' => { label => 'Out for delivery', update => 'Comment', }, 'delivery -> delivered' => { label => 'Mark as delivered', update => 'Comment', }, 'delivery -> returned' => { label => 'Returned to Manufacturer', update => 'Respond', }, 'delivered -> returned' => { label => 'Returned to Manufacturer', update => 'Respond', }, 'returned -> delivery' => { label => 'Re-deliver Order', update => 'Respond', }, 'deleted -> pending' => { label => 'Undelete', update => 'Respond', }, ], }, # Status mapping different different lifecycles __maps__ => { 'default -> orders' => { 'new' => 'pending', 'open' => 'processing', 'stalled' => 'processing', 'resolved' => 'delivered', 'rejected' => 'declined', 'deleted' => 'deleted', }, 'orders -> default' => { 'pending' => 'new', 'processing' => 'open', 'delivered' => 'resolved', 'returned' => 'open', # closest matching we have in 'default' 'declined' => 'rejected', 'deleted' => 'deleted', }, }, ); Here is an example history of a ticket following this lifecycle: =for html Lifecycle history =for :text [Lifecycle history F] =for :man [Lifecycle history F] rt-4.0.19/docs/customizing/articles_introduction.pod0000664000175000017500000001512412262650742021673 0ustar chmrrchmrr =head1 Articles Articles are a way of managing stock answers or frequently asked questions. Articles are a collection of custom fields whose values can be easily inserted into ticket replies or searched and browsed within RT. They are organized into classes and topics. =head2 UI The user interface to Articles is available from the Tools -> Articles menu. Admin functionality can be found under Tools -> Configuration -> Articles. Once configured, articles will become available for searching on the Reply/Comment page on tickets. There are L to make Articles available on ticket creation. =head2 Basics You will need to make some decisions about how to organize your articles. Articles will be organized into one Class and multiple Topics. They will use Custom Fields to store their article data. These Custom Fields can be configured on a Class by Class basis. Classes can be made available globally or on a per-Queue basis. =head2 Organization =head3 Classes Classes are equivalent to RT's queues. They can be created by going to Tools -> Configuration -> Articles -> Classes -> New Class. Articles are assigned to one Class. When you create Custom Fields for use with Articles, they will be applied Globally or to a Class, like Custom Fields are applied to a Queue in RT. A common use for Articles is to store frequently used replies for requestors, like troubleshooting steps or how to sign up for a new account. When you insert Article text, you may or may not want to include the Article name and summary, in addition to the content, when inserting the Article in a reply. You can control this behavior on the Class configuration page. Classes need to be Applied, just like a Custom Field, by using the Applies To link on the Modify Class page (Tools -> Configuration -> Articles -> Classes, select the class to modify). You can apply them globally or on a queue-by-queue basis. =head3 Topics You can also use Topics to organize your Articles. While editing a Class, there is a Topics tab for Class-specific Topics. You can create global Topics from the Global tab under Tools -> Configuration. When editing Topics, type the name (and optionally description) of the Topic, and then click the button at the appropriate location in the Topic hierarchy. This should allow you to build a tree of Topics. This tree of Topics should show up when creating or modifying articles in the class. These can be arbitrarily nested. Global Topics will be available for all Articles, regardless of their Class. Articles can belong to both global and Class-specific Topics. Article topics can be set from the Modify screen for the article -- simply select as many topics as you desire from the list at the bottom of the screen. =head2 Custom Fields Articles don't have a single "body" section for each article. Everything is a custom field (except for name, summary and some other basic metadata). So to put information on an Article, you need to create some custom fields to hold the Article body and other data. When you create these new Custom Fields, set the Applies To field to Articles. Once you've created your Custom Fields, go into your Classes, click on Custom Fields, and add the Custom Fields you want to each Class. Alternatively, use the Applies To link from each Custom Field. =head2 Creating Articles You can create an Article from scratch by going to Tools -> Articles -> New Article and then picking which Class to create the Article under. You must have a Class to assign the new Article to. The Summary, Description and Custom Fields will all be searchable when including an Article and you can control what Custom Fields end up in your Ticket from the Class configuration page. =head3 Extracting an Article You can extract the body of a ticket into an article. Within RT, you should now see an "Extract to article" button in the upper right hand corner of RT's UI when working with tickets. When you click that button, RT will ask you which Class to create your new Article in. Once you click on a Class name, the Ticket's transactions will be displayed, along with a set of select boxes. For each transaction, you can pick which Custom Field that transaction should be extracted to. From there on in, it's just regular Article creation. =head2 Including an Article When replying to or commenting on tickets or creating tickets, there is a UI widget that lets you search for and include Articles in your reply. (They're editable, of course). Articles can be included by searching for them, knowing the Id of the article, using the Article Hotlist and using the Queue-specific dropdown. =head2 Queue-Specific List of Articles You can use Topics to organize a set of Queue-specific Articles. Simply create a global Topic called 'Queues' and then create Topics under Queues named after each of your Queues. Within each Queue-named Topic, create some Topics and then assign Articles to those sub-topics. This creates a hierarchy like this: Queues \-> General \-> Topic 1 \-> Topic 2 If you are replying to a Ticket in the General Queue you will be offered a choice of Topic 1 and Topic 2 along with the searching. After choosing Topic 1 or Topic 2, you will be given a list of relevant articles to choose. Alternately, you can now implement this by applying a single Class to your Queue and using the L feature described below. =head2 Article Hotlist The Modify Class page has a checkbox labelled "All Articles in this class should be listed in a dropdown of the ticket reply page". If you select this for a Class, a dropdown will be available on the Ticket Create or Update page which allows users to quickly include Articles in this Class. The Class needs to be set up and Applied for the dropdown to appear (see L). =head2 SelfService Interface If you grant the Unprivileged user group the right ShowArticle, they will get a Search box at the top of their interface. This allows users to look through your Articles for answers to questions before creating a Ticket. =head1 Configuration Options =head2 ArticleOnTicketCreate Set this to a true value to display the Article include interface on the Ticket Create page in addition to the Reply/Comment page (Create.html in addition to Update.html). =head2 HideArticleSearchOnReplyCreate On Ticket Reply (and Create if you set the above config var) RT's Article system normally displays a search box and an include box (for inputting an article id) and configurable dropdowns of Articles. These can be configured using Global Topics or on the Class page. If you set this to a true value, RT will only display dropdowns and hide the search boxes. =cut rt-4.0.19/docs/UPGRADING-2.00000664000175000017500000000042112262650742013737 0ustar chmrrchmrr=head1 UPGRADING FROM 2.x The core RT distribution does not contain the tool to upgrade RT from version 2.0; the tool, can be downloaded from CPAN at http://search.cpan.org/dist/RT-Extension-RT2toRT3/ Further instructions may be found in that distribution's README file. rt-4.0.19/docs/hacking.pod0000664000175000017500000002542512262650742014322 0ustar chmrrchmrr=head1 Development of RT RT's source code is stored in a C repository. If you are not familiar with git, see L, below, for a short tutorial which will give you enough information to get started submitting patches to RT. The rest of this document details conventions and tips surrounding the organization of RT's version control, source code conventions, and how to submit patches. =head1 Organization of rt.git The RT source repository is available via git from GitHub; you can browse it at L or obtain a local copy via: git clone git://github.com/bestpractical/rt.git The bleeding-edge development happens in the C branch. When a major release is anticipated, a "trunk" branch will be branched from this -- for example, C<4.0-trunk>. This will allow the trunk to stabilize while feature development continues on C. Additionally, as a release is impending for a particular series, a release engineering branch will be created, named, for example C<4.0.0-releng>. New feature development should always be based off of the C branch. Branches to fix bugs should be based off of whichever trunk the bug was first found in. If you found the bug in your RT 4.0.0 install, you'd branch from 4.0-trunk. Branches should be named based on the trunk they are branched from -- which is to say, the earliest branch they might be merged into. For example, a bugfix branched from C<4.0-trunk> might be named C<4.0/fail-taint-mode-early>. A feature branched from C when there exists a C<4.0-trunk> but no C<4.2-trunk> might be named C<4.2/rename-LogToScreen>. For consistency, branches should use dashes, not underscores, to separate words. Branches which are destined for 4.2, but which are branched from 4.0 (to provide for easy extraction as a 4.0 extension) should be named 4.2-on-4.0/branch-name. Branches should be reviewed by another developer before being merged. Reviewers should make sure that the branch accomplishes what it claims to, and does not introduce any unwanted behavior in doing so. Commit messages explain the B as much as the B of each commit, and not include extranous changes. =head1 Code conventions The RT codebase is more than ten years old; as such, there are sections which do not (yet) conform to the guidelines below. Please attempt to follow the guidelines, even if the code surrounding your changes does not yet. RT also includes a F<.perltidyrc> in its top-level which encodes many of the conventions. =over =item Indentation Each level of indentation should be four spaces; tabs should never be used for indentation. =back =head1 Internationalization RT has been translated into several dozen languages. We use Launchpad ( https://translations.launchpad.net/rt ) to crowdsource our translations into C files. RT uses L to localize its user interface. Your first stop on this magical journey of internationalization is L, which explains the whys of L. RT uses most of the features developed in that article. Strings that are displayed to users should be passed through the C function or the C<< <&|/l&>... >> Mason template. C and C both take parameters, which are used in place of string interpolation (much like C). It's acceptable to use HTML in C calls, especially for bold and emphasis. However, you should limit the amount of HTML that translators must keep exactly correct, which means avoid including tags that wrap the entire translatable string, especially C<<

>>.

<&|/l, $button &>Do not click [_1]

# ok <&|/l, $button &>

Do not click [_1]

# not ok In a few places in RT we also pass HTML as parameters to C so that translators do not have to reproduce it exactly, and we can also change it more freely. For example: <&|/l, '
', '', &>Distributed under [_1]version 2 of the GNU GPL[_2]. F looks for C and C<< <&|/l&>... >> in our source code to pick out translatable strings, clean them up, and put them into F files. We use our C<.po> files not only to populate L's lexicons, but also to sync new translatable strings and translations with Launchpad. This Launchpad sync is typically done early during the freeze of RC releases to give our volunteer translators time to translate all the new strings which, because of the RC freeze, won't continue changing. Because C and C are used to generate strings for human eyes, they generally must be used "close to the browser". These are directly in Mason templates, or in functions that return text that will be passed through Mason. However, in many places in RT we have hardcoded strings which need translations. For example, the C<$RIGHTS> hash in F maps rights' names (which must be translatable) to their descriptions (which also must be translatable). However, when we're declaring such structures, we do not want to translate them straight away. RT uses English internally, including in its web forms, so we do not want to localize rights' names except for display, otherwise things might break weirdly when you check if a user has the "Superusuario" right. Furthermore, when we're declaring such data structures at compile time, there is no current user to select which language to use for localization. Thus, we cannot call C when declaring C<$RIGHTS> and other similar places. For this reason, F lets you denote translatable strings with comments. That's what the C<#loc_pair> comments in the C<$RIGHTS> hash in F indicate. Since we have those comments, our toolchain will put the rights' names and descriptions into F files, which enables translation by our lovely volunteers. Later on, when RT displays information about rights in the web UI, we'll pass the right's name through C, and L will then be able to find our "Superusuario". So although we never used a literal C, we still get its effects thanks to the C<#loc_pair> comments and using C. C<#loc_pair> is used for declaring that the both the key and value of a particular C<< key => value >> pair are translatable. There are other markers that you can use. C<#loc> is used for declaring that a particular string is translatable. Its parsing is pretty strict so you can use it to declare that only the value of a particular C<< key => value >> pair is translatable. C<#loc_left_pair> is used for declaring that the I of a particular C<< key => value >> pair is translatable. This is of very limited usefulness. C<#loc_right_pair> does NOT exist. C<#loc> works in such cases since its parser does not extend beyond the string at the end of a line. =head1 Development tips =head2 Setting up a development environment =head2 Test suite RT also comes with a fairly complete test suite. To run it, you will need to set environment variables to a database user and password which can create and drop databases: export RT_DBA_USER=root export RT_DBA_PASSWORD= You'll need to configure RT and make sure you have all the dependencies before running tests. To do this in place without installing: ./configure.ac --with-my-user-group --enable-layout=inplace --with-devel-mode make testdeps make fixdeps Adjust the relevant database options as necessary if you want to test on Postgres, Oracle, or SQLite. The default is MySQL. To run the test suite: make test If you have multiple processors, you can run the test suite in parallel, which will be significantly faster: make test-parallel The C<*-trunk> and C branches are expected to always be passing all tests. While it is acceptable to break tests in an intermediate commit, a branch which does not pass tests will not be merged. Ideally, commits which fix a bug should also include a testcase which fails before the fix and succeeds after. =head1 git quickstart =over =item 1. You will first need to obtain a copy of git; this is accomplished via C in RedHat and derivatives, or C for Debian or Ubuntu. =item 2. Next, obtain a copy of the RT source from git: git clone git://github.com/bestpractical/rt.git cd rt =item 3. Configure git to know your name and email address; git uses these when it makes commits. git config user.email your.email@example.com git config user.name Examp L. Name =item 4. Switch to the appropriate point to base your work on; this is generally C followed by the major version, followed by C<-trunk>. For example, if your bug was observed in version 3.8.9, you would choose C; if it was in 4.0.0, you would choose C. New features should be based on C. git checkout --track origin/4.0-trunk =item 5. Give your branch a name based on what you are attempting to accomplish. We suggest that branch names be lower-case and separate words with dashes, but this branch name is purely for your own reference. git branch -m gnupg-encryption =item 6. Edit the source tree to make your changes. A few commands you may find useful in doing so are listed below. To see what files you have changed: git status To see a line-by-line list of changes: git diff To revert a file to the original version: git checkout path/to/file To revert only individual parts of a file: git checkout -p path/to/file See L for more tips for working with the RT codebase. =item 7. Check that you have no extraneous changes using C, then commit your changes: git commit -a You will be prompted to type your commit message. The first line should be a short (E 80 character) summary of the changes, followed by a blank line, followed by a longer description, if necessary. The commit message should not simply restate the diff of which lines were added and subtracted, but should rather explain B those changes accomplish, and B they are desired. If your changes are easily split into multiple components, you may wish to split your changes into more than one commit; simply return to step 6 and repeat the with the next related change. If your changes are B related to each other, you should submit them separately; finish step 9, then start over from step 4. =item 8. Save your commits to patch files: git format-patch @{u} This will print out the names of the files as it creates them. =item 9. Attach these files to an email using your standard email client, and send it to C. =back If you have another bug or feature to implement, simply restart the process at step 4. =cut rt-4.0.19/docs/UPGRADING.mysql0000664000175000017500000000703512262650742014616 0ustar chmrrchmrrIf you did not start by reading the README file, please start there; these steps do not list the full upgrading process, merely a part which is sometimes necessary. This file applies if either: =over =item 1. You are upgrading RT from a version prior to 3.8.0, on any version of MySQL =item 2. You are migrating from MySQL 4.0 to MySQL 4.1 or above =back If neither of the above cases apply, your should upgrade as per the instructions in the README. These changes are necessary because MySQL 4.1 and greater changed some aspects of character set handling that may result in RT failures; this will manifest as multiple login requests, corrupted binary attachments, and corrupted image custom fields, among others. In order to resolve this issue, the upgrade process will need to modify the schema. =over =item 1. If you are moving the database and/or upgrading MySQL =over =item 1a. Dump the database; with MySQL 4.1 and greater be sure to pass the mysqldump command the --default-character-set=binary option. This is necessary because the data was originally encoded in Latin1. =item 1b. Configure the new MySQL to use Latin1 as the default character set everywhere, not UTF-8. This is necessary so the import in the next step assumes the data is Latin1. =item 1c. Import the dump made in step 1a into the new MySQL server, using the --default-character-set=binary option on restore. This will ensure that the data is imported as bytes, which will be interpreted as Latin1 thanks to step 1b above. =item 1d. Test that your RT works as expected on this new database. =back =item 2. Backup RT's database using --default-character-set=binary Furthermore, test that you can restore from this backup. =item 3. Follow instructions in the README file to step 6b. =item 4. Apply changes described in the README's step 6b, but only up to version 3.7.87. =item 5. Apply the RT 3.8 schema upgrades. Included in RT is the script etc/upgrade/upgrade-mysql-schema.pl that will generate the appropriate SQL queries: perl etc/upgrade/upgrade-mysql-schema.pl db user pass > queries.sql If your mysql database is on a remote host, you can run the script like this instead: perl etc/upgrade/upgrade-mysql-schema.pl db:host user pass > queries.sql =item 6. Check the sanity of the SQL queries in the queries.sql file yourself, or consult with your DBA. =item 7. Apply the queries. Note that this step can take a while; it may also require additional space on your hard drive comparable with size of your tables. mysql -u root -p rt3 < queries.sql NOTE that 'rt3' is the default name of the RT database, change it in the command above if your database is named differently. This step should not produce any errors or warnings. If you see any, restore your database from the backup you made at step 1, and send a report to the rt-users@lists.bestpractical.com mailing list. =item 8. Re-run the `make upgrade-database` command from step 6b of the README, applying the rest of the upgrades, starting with 3.7.87, and follow the README's remaining steps. =item 9. Test everything. The most important parts you have to test: =over =item * binary attachments, like docs, PDFs, and images =item * binary custom fields =item * everything that may contain characters other than ASCII =back =item 10. If you were upgrading from MySQL 4.0, you may now, if you wish, reconfigure your newer MySQL instance to use UTF-8 as the default character set, as step 7 above adjusted the character sets on all existing tables to contain UTF-8 encoded data, rather than Latin1. =back rt-4.0.19/docs/UPGRADING-3.00000664000175000017500000000116512262650742013746 0ustar chmrrchmrr=head1 UPGRADING FROM 3.0.0 AND EARLIER =head2 Installation We recommend you move your existing /opt/rt3 tree completely out of the way before installing the new version of RT, to make sure that you don't inadvertently leave old files hanging around. =head2 Rights changes Now, if you want RT to automatically create new users upon ticket submission, you MUST grant 'Everyone' the right to create tickets. Granting this right only to "Unprivileged Users" is now insufficient. =head2 Web server configuration The configuration for RT's web interface has changed. Please refer to docs/web_deployment.pod for instructions. rt-4.0.19/docs/UPGRADING-3.60000664000175000017500000000367712262650742013766 0ustar chmrrchmrr=head1 UPGRADING FROM 3.6.0 AND EARLIER As there are a large number of code changes, it is highly recommended that you install RT into a fresh directory, and then reinstall your customizations. The database schema has changed significantly for mysql 4.1 and above; please read UPGRADING.mysql for more details. The configuration format has been made stricter. All options MUST be set using the Set function; the historical "@XXX = (...) unless @XXX;" is no longer allowed. The RTx::Shredder extension has been integrated into core, and several features have been added, so you MUST uninstall it before upgrading. A new interface for making links in text clickable, and doing other arbitrary text replacements, has been integrated into RT. You can read more in `perldoc docs/extending/clickable_links.pod`. A new feature has been added that allows users to forward messages. There is a new option in the config ($ForwardFromUser), new rights, and a new template. New global templates have been added with "Error: " prefixed to the name to make it possible to configure error messages sent to users. You can read about the new GnuPG integration in `perldoc lib/RT/Crypt/GnuPG.pm`. New scrip conditions 'On Close' and 'On Reopen' have been added. =head1 UPGRADING FROM 3.5.7 AND EARLIER Scrips are now prepared and committed in order alphanumerically by description. This means that you can prepend a number (00, 07, 15, 24) to the beginning of each scrip's description, and they will run in that order. Depending on your database, the old ordering may have been by scrip id number -- if that is the case, simply prepend the scrip id number to the beginning of its description. =head1 UPGRADING FROM 3.5.1 AND EARLIER The default for $RedistributeAutoGeneratedMessages has changed to 'privileged', to make out-of-the-box installations more resistant to mail loops. If you rely on the old default of redistributing to all watchers, you'll need to set it explicitly now. rt-4.0.19/docs/initialdata.pod0000664000175000017500000003620212262650742015174 0ustar chmrrchmrr=head1 Summary of initialdata files It's often useful to be able to test configuration/database changes and then apply the same changes in production without manually clicking around. It's also helpful if you're developing customizations or extensions to be able to get a fresh database back to the state you want for testing/development. This documentation applies to careful and thorough sysadmins as well as extension authors who need to make database changes easily and repeatably for new installs or upgrades. =head1 Examples RT ships with many initialdata files, only one of which is used to configure a fresh install; the rest are used for upgrades, but function the same despite being named differently. etc/initialdata etc/upgrade/*/content The upgrade "content" files are meant to be incremental changes applied on top of one another while the top level initialdata file is for fresh RT installs. Extensions may also ship with database changes in such files. You may find some in your install with: find local/plugins -name initialdata -or -name content =head1 What can be in an initialdata file? initialdata files are Perl, but often consist primarily of a bunch of data structures defining the new records you want and not much extra code. There's nothing stopping you from writing a bunch of code, however! The basic template of a new initialdata file should look something like this: use strict; use warnings; our @Queues = ( # some definitions here ); our @Groups = ( # some other definitions here ); 1; The C<@Queues> and C<@Groups> arrays are expected by RT and should contain hashref definitions. There are many other arrays RT will look for and act on, described below. None are required, all may be used. Keep in mind that since they're just normal Perl arrays, you can C onto them from a loop or C out definitions based on conditionals or generate their content with C, etc. The complete list of possible arrays which can be used, along with descriptions of the values to place in them, is below. =head2 C<@Users> push @Users, { Name => 'john.doe', Password => 'changethis', Language => 'fr', Timezone => 'America/Vancouver', Privileged => 1, Disabled => 0, }; Each hashref in C<@Users> is treated as a new user to create and passed straight into C<< RT::User->Create >>. All of the normal user fields are available, as well as C and C (both booleans) which will do the appropriate internal group/flag handling. For a full list of fields, read the documentation for L. =head2 C<@Groups> push @Groups, { Domain => 'UserDefined', Name => 'Example Employees', Description => 'All of the employees of my company', }; Creates a new L for each hashref. In almost all cases you'll want to follow the example above to create a group just as if you had done it from the admin interface. B omit the C<< Domain => 'UserDefined' >> line. Additionally, the C field is specially handled to make it easier to add the new group to other groups. C may be a single value or an array ref. Each value should be a user-defined group name or hashref to pass into L. Each group found will have the new group added as a member. Unfortunately you can't specify the I of a group at this time. As a workaround, you can push a subref into C<@Final> which adds members to your new groups. An example, using a convenience function to avoid repeating yourself: push @Final, sub { add_members('My New Group Name' => qw(trs alex ruslan)); add_members('My Second Group' => qw(jesse kevin sunnavy jim)); }; sub add_members { my $group_name = shift; my @members = @_; my $group = RT::Group->new( RT->SystemUser ); $group->LoadUserDefinedGroup($group_name); if ($group->id) { for my $name (@members) { my $member = RT::User->new( RT->SystemUser ); $member->LoadByCols( Name => $name ); unless ($member->Id) { RT->Logger->error("Unable to find user '$name'"); next; } my ($ok, $msg) = $group->AddMember( $member->PrincipalObj->Id ); if ($ok) { RT->Logger->info("Added member $name to $group_name"); } else { RT->Logger->error("Unable to AddMember $name to $group_name: $msg"); } } } else { RT->Logger->error("Unable to find group '$group_name'!"); } } =head2 C<@Queues> push @Queues, { Name => 'Helpdesk', CorrespondAddress => 'help@example.com', CommentAddress => 'help-comment@example.com', }; Creates a new L for each hashref. Refer to the documentation of L for the fields you can use. =head2 C<@CustomFields> push @CustomFields, { Queue => 0, Name => 'Favorite color', Type => 'FreeformSingle', LookupType => 'RT::Queue-RT::Ticket', }; Creates a new L for each hashref. It is the most complex of the initialdata structures. The most commonly used fields are: =over 4 =item C The name of this CF as displayed in RT. =item C A short summary of what this CF is for. =item C May be a Name or ID. The single queue or array ref of queues to apply this CF to. This does not apply when C does not start with C. =item C One of the following on the left hand side: SelectSingle # Select one value SelectMultiple # Select multiple values FreeformSingle # Enter one value FreeformMultiple # Enter multiple values Text # Fill in one text area Wikitext # Fill in one wikitext area BinarySingle # Upload one file BinaryMultiple # Upload multiple files ImageSingle # Upload one image ImageMultiple # Upload multiple images Combobox # Combobox: Select or enter one value AutocompleteSingle # Enter one value with autocompletion AutocompleteMultiple # Enter multiple values with autocompletion Date # Select date DateTime # Select datetime IPAddressSingle # Enter one IP address IPAddressMultiple # Enter multiple IP addresses IPAddressRangeSingle # Enter one IP address range IPAddressRangeMultiple # Enter multiple IP address ranges If you don't specify "Single" or "Multiple" in the type, you must specify C. =item C Labeled in the CF admin page as "Applies to". This determines whether your CF is for Tickets, Transactions, Users, Groups, or Queues. Possible values: RT::Queue-RT::Ticket # Tickets RT::Queue-RT::Ticket-RT::Transaction # Transactions RT::User # Users RT::Group # Groups RT::Queue # Queues Ticket CFs are the most common, meaning C is the most common C. =item C Only valid when C is "Select". Controls how the CF is displayed when editing it. Valid values are: C %1" msgstr " %1" #: NOT FOUND IN SOURCE msgid " %1" msgstr " %1" #: etc/initialdata:215 msgid "A blank template" msgstr "Een leeg sjabloon" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Omdat er geen wachtwoord gezet is, kunt u niet inloggen" #: NOT FOUND IN SOURCE msgid "ACE Deleted" msgstr "ACE Verwijderd" #: NOT FOUND IN SOURCE msgid "ACE Loaded" msgstr "ACE Geladen" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE niet gevonden" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEs kunnen allen gecreëerd of verwijderd worden." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "EN" #: NOT FOUND IN SOURCE msgid "Aborting to avoid unintended ticket modifications.\\n" msgstr "Afbraak om ongewenste ticket aanpassing te voorkomen.\\n" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Over mijzelf" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Toegangscontrole" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Actie" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Actie %1 niet gevonden" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "De handeling \"%1\" bestaat niet" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Actie uitgevoerd." #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "De handeling is uitgevoerd.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Handeling is een verplicht argument" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Actie voorbereid..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Acties" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "Actieve tickets" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Voeg toe" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "%1 toevoegen" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Voeg AdminCc toe" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Bladwijzer toevoegen" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Voeg Cc toe" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Voeg kolommen toe" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Criterium toevoegen" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Voeg Meer Bestanden Toe" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Voeg aanvrager Toe" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Waarde toevoegen" #: NOT FOUND IN SOURCE msgid "Add a Scrip to this queue" msgstr "Voeg een Scrip toe aan deze queue" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Voeg een scrip toe dat voor alle queues zal gelden" #: NOT FOUND IN SOURCE msgid "Add and Search" msgstr "Toevoegen en zoeken" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Voeg commentaar of reacties toe aan geselecteerde tickets" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Voeg groep toe" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Voeg leden toe" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Voeg nieuwe toeschouwers toe" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Deze termen toevoegen" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Deze termen toevoegen en zoeken" #: NOT FOUND IN SOURCE msgid "Add these terms to your search" msgstr "Voeg dit criterium toe aan de zoekopdracht" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Voeg gebruiker toe" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Waarden toevoegen" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Maatwerkvelden voor objecten toevoegen, verwijderen en aanpassen" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: NOT FOUND IN SOURCE msgid "AddNextState" msgstr "VoegVolgendeStaatToe" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Hoofdgebruiker toegevoegd als %1 voor deze queue" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Hoofdgebruiker toegevoegd als %1 voor dit ticket" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adres" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Adres 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adres1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adres2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Beheerder Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Beheerder Commentaar" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Beheerderscorrespondentie" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Beheerder queues" #: NOT FOUND IN SOURCE msgid "Admin users" msgstr "Beheerdergebruikers" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Beheerder/Globale configuratie" #: NOT FOUND IN SOURCE msgid "Admin/Groups" msgstr "Beheerder/Groepen" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "Beheerder/Queue/Basis" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "BeheerderCCGroep" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "BeheerderCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "BeheerderCCs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: NOT FOUND IN SOURCE msgid "AdminComment" msgstr "BeheerderCommentaar" #: NOT FOUND IN SOURCE msgid "AdminCorrespondence" msgstr "BeheerderCorrespondentie" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "Beheerder custom field" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: NOT FOUND IN SOURCE msgid "AdminCustomFields" msgstr "BeheerderSpecifiekeVelden" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "BeheerderGroep" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "BeheerderGroepLidmaatschap" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "BeheerderBezitPersoonlijkeGroepen" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "Beheerder queue" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "BeheerderGebruikers" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administratieve Cc" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Beheerderswachtwoord" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Geavanceerd" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "Uitgebreid Zoeken" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Geavanceerd zoeken" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "Leeftijd" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Aggregator" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Alle Gegeven Goedkeuringen" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Alle queues" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "" #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Alle wachtrijen waarop de zoekcriteria van toepassing zijn" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Reeds versleuteld" #: NOT FOUND IN SOURCE msgid "Always sends a message to the requestors independent of message sender" msgstr "Stuurt altijd een bericht naar de aanvrager ongeacht de verzender van het bericht" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "En/of" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Heeft betrekking op" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Doorvoeren" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Doorvoeren van de wijzigingen" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Autorisatie" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Goedkeuring #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Goedkeuring #%1: Notities niet bewaard vanwege een systeem fout" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Goedkeuring #%1: Notities bewaard" #: NOT FOUND IN SOURCE msgid "Approval Details" msgstr "Goedkeuring Details" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "" #: NOT FOUND IN SOURCE msgid "Approval diagram" msgstr "Goedkeuring diagram" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Goedkeuring" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Notities van de goedkeurer: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Apr" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Ggk." #: NOT FOUND IN SOURCE msgid "April" msgstr "April" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Oplopend" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Oplopend" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "WijsSpecifiekeVeldenToe" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Toevoegen" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Hecht bestand aan" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Aangehecht bestand" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Bijlage" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Attachment '%1' kon niet geladen worden" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Attachment gecreëerd" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Attachment bestandsnaam" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Attachments" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Attribuut Verwijderd" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Aug" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Aug." #: NOT FOUND IN SOURCE msgid "August" msgstr "Augustus" #: NOT FOUND IN SOURCE msgid "AuthSystem" msgstr "AuthenticatieSysteem" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Automatisch-antwoord" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Automatisch-antwoord aan aanvragers" #: NOT FOUND IN SOURCE msgid "AutoreplyToRequestors" msgstr "Automatisch-antwoord aan aanvragers" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Beschikbaar" #: NOT FOUND IN SOURCE msgid "Available Columns" msgstr "Beschikbare Kolommen" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Terug" #: NOT FOUND IN SOURCE msgid "Bad PGP Signature: %1\\n" msgstr "Ongeldige PGP Signature: %1\\n" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "Ongeldig attachment id. Kan attachment '%1' niet vinden\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "Ongeldige data in %1" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "Ongeldig transactienummer voor attachment. %1 zou %2 moeten zijn\\n" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Basis" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Bcc" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Zorg ervoor dat u uw veranderingen bewaard" #: NOT FOUND IN SOURCE msgid "Begin Approval" msgstr "Begin Goedkeuring" #: etc/initialdata:214 msgid "Blank" msgstr "Blanco" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Berichttekst" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Vet" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Bladwijzer" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "URL voor deze zoekopdracht, geschikt als bookmark" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Korte koppen" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Bulk update" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Bulk ticketherziening" #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Kan systeemgebruikers niet wijzigen" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Kan deze hoofdgebruiker deze queue zien" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Kan geen custom field toevoegen zonder een naam" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Kan geen bewaarde zoekopdracht vinden om mee te werken" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Kan geen bewaarde zoekopdracht vinden om mee te werken" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Kan een ticket niet koppelen aan zichzelf" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "Kan niet samenvoegen met een reeds samengevoegd ticket. U zou deze boodschap nooit mogen krijgen" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Kan deze zoekopdracht niet opslaan" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Kan niet zowel basis als doel specificeren" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Kan gebruiker %1 niet aanmaken" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categorie" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Wijzigen" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Wijzig wachtwoord" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Allemaal markeren" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Vink hokje om te verwijderen" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Vink hokje om de rechten te verwijderen" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Afstammelingen" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "" #: NOT FOUND IN SOURCE msgid "Choose a date" msgstr "Kies een datum" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Stad" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Wissen" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Allemaal wissen" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Sluit window" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Gesloten" #: NOT FOUND IN SOURCE msgid "Closed requests" msgstr "Gesloten verzoeken" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Selecteer of voer meerdere waardes in" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Combobox: Selecteer of voer één waarde in" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Combobox: Selecteer of voer tot %1 waarden in" #: NOT FOUND IN SOURCE msgid "Command not understood!\\n" msgstr "Commando niet begrepen!\\n" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Commentaar" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Commentaar Adres" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "" #: NOT FOUND IN SOURCE msgid "Comment not recorded" msgstr "Commentaar niet bewaard" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Commentaar op tickets" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "Commentaar op ticket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Commentaar" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Commentaar (Wordt niet verstuurd aan aanvragers)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Commentaar (Wordt niet verstuurd aan aanvragers)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "Commentaar over %1" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Opmerkingen over deze gebruiker" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Commentaar toegevoegd" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: NOT FOUND IN SOURCE msgid "Compile Restrictions" msgstr "Compilatie Restricties" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Voorwaarde" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Voorwaarde komt overeen..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Voorwaarde niet gevonden" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Configuratie" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Bevestig" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "" #: NOT FOUND IN SOURCE msgid "ContactInfoSystem" msgstr "ContactInfoSysteem" #: NOT FOUND IN SOURCE msgid "Contacted date '%1' could not be parsed" msgstr "Contact datum '%1' kon niet ontleed worden" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Inhoud" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Inhoudstype" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "" #: etc/initialdata:283 msgid "Correspondence" msgstr "Correspondentie" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "Correspondentieadres" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Correspondentie toegevoegd" #: NOT FOUND IN SOURCE msgid "Correspondence not recorded" msgstr "Correspondentie niet bewaard" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "Kan het nieuw custom field niet toevoegen voor dit ticket. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. %1 " msgstr "Kan het nieuw custom field niet toevoegen voor dit ticket. %1 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "Kan de nieuwe waarde voor dit custom field niet toevoegen " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "Kan het nieuwe custom field niet toevoegen. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Kan de eigenaar niet wijzigen. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Kan custom field niet creëren" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Kan de groep niet creëren" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Kan het sjabloon niet creëren: %1" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Kan het ticket niet creëren. Queue niet ingesteld" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Kan de gebruiker niet creëren" #: NOT FOUND IN SOURCE msgid "Could not create watcher for requestor" msgstr "Kan toeschouwer niet creëren voor aanvrager" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not find a ticket with id %1" msgstr "Kan geen ticket vinden met id %1" #: NOT FOUND IN SOURCE msgid "Could not find group %1." msgstr "Kan groep %1 niet vinden." #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Kan deze gebruiker niet vinden of creëren" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Kan deze hoofdgebruiker niet vinden" #: NOT FOUND IN SOURCE msgid "Could not find user %1." msgstr "Kan gebruiker %1 niet vinden." #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Kan custom field %1 niet laden" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Kan groep niet laden" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Kan deze hoofdgebruiker geen %1 maken voor deze queue" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Kan deze hoofdgebruiker geen %1 maken voor dit ticket" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Kan deze hoofdgebruiker niet verwijderen als %1 voor deze queue" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Kan deze hoofdgebruiker niet verwijderen als %1 voor dit ticket" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Kan gebruikersinformatie niet toewijzen" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Kan gebruiker niet toevoegen aan groep" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Kan geen transactie creëren: %1" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "" #: NOT FOUND IN SOURCE msgid "Couldn't figure out what to do from gpg's reply\\n" msgstr "Kan niet bepalen welke actie te ondernemen aan de hand van gpg's antwoord\\n" #: NOT FOUND IN SOURCE msgid "Couldn't find group\\n" msgstr "Kan de groep niet vinden\\n" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Kan de rij niet vinden" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Kan deze hoofdgebruiker niet vinden" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Kan die waarde niet vinden" #: NOT FOUND IN SOURCE msgid "Couldn't find that watcher" msgstr "Kan die toeschouwer niet vinden" #: NOT FOUND IN SOURCE msgid "Couldn't find user\\n" msgstr "Kan gebruiker niet vinden\\n" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Kan %1 niet laden uit de gebruikersdatabase.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Couldn't load KeywordSelects." msgstr "Kan KeywordSelects niet laden." #: NOT FOUND IN SOURCE msgid "Couldn't load RT config file '%1' %2" msgstr "Kan het RT configuratie bestand niet laden '%1' %2" #: NOT FOUND IN SOURCE msgid "Couldn't load Scrips." msgstr "Kan de scrips niet laden" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "" #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Kan de groep %1 niet laden" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Kan de link niet laden" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Kan het object %1 niet laden" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Kan de queue niet laden" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Kan de queue %1 niet laden" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "" #: NOT FOUND IN SOURCE msgid "Couldn't load scrip" msgstr "Kan het scrip niet laden" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "" #: NOT FOUND IN SOURCE msgid "Couldn't load template" msgstr "Kan het sjabloon niet laden" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "Kan de gebruiker (%1) niet laden" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Kan ticket '%1' niet laden" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Land" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Creëer" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Creëer Tickets" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Creëer een custom field" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Create a new Custom Field" msgstr "Creëer een niuew Specifiek Veld" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "" #: NOT FOUND IN SOURCE msgid "Create a new global Scrip" msgstr "Creëer een nieuw globaal Scrip" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Creëer een nieuwe groep" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Creëer een nieuwe persoonlijke groep" #: NOT FOUND IN SOURCE msgid "Create a new queue" msgstr "Creëer een nieuwe queue" #: NOT FOUND IN SOURCE msgid "Create a new scrip" msgstr "Creëer een nieuw scrip" #: NOT FOUND IN SOURCE msgid "Create a new template" msgstr "Creëer een nieuw template" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Creëer een nieuw ticket" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Creëer een nieuwe gebruiker" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Creëer een queue" #: NOT FOUND IN SOURCE msgid "Create a queue called" msgstr "Creëer een queue genaamd" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "Creëer een verzoek" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Creëer een scrip voor queue %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Creëer een sjabloon" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Maak een ticket aan" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create failed: %1 / %2 / %3 " msgstr "Creatie mislukt: %1 / %2 / %3 " #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Creëer nieuwe tickets gebaseerd op het sjabloon van dit scrip" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Creëer ticket" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Creëer tickets in deze queue" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Creëer, verwijder en wijzig custom fields" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Creëer, verwijder en wijzig queues" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Creëer, verwijder en wijzig de leden van persoonlijke groepen" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Creëer, verwijder en wijzig gebruikers" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "Creëer ticket" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Gecreëerd" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Custom field %1 gecreëerd" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Aangemaakt in een tijdvenster" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created template %1" msgstr "Sjabloon %1 Gecreëerd" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Aanvrager" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Huidige Relaties" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Huidige Scrips" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Huidige leden" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Huidige rechten" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "Huidige zoekcriteria" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Huidige toeschouwers" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Custom fields" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Custom fields voor %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Specifieke actie opruim code" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Specifieke actie voorbereidings code" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Specifieke voorwaarde" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Specifiek veld %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Specifiek Veld %1 is niet van toepassing op dit object" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Specifiek veld %1 heeft een waarde." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Specifiek veld %1 heeft geen waarde." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Specifiek veld %1 niet gevonden" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Specifiek veld niet gevonden" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Specifiek veld waarde %1 kon niet gevonden worden voor custom field %2" #: NOT FOUND IN SOURCE msgid "Custom field value changed from %1 to %2" msgstr "Specifiek veld waarde veranderd van %1 naar %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Specifiek veld waarde kon niet verwijderd worden" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Specifiek veld waarde kon niet gevonden worden" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Specifiek veld waarde verwijderd" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Custom field" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "" #: NOT FOUND IN SOURCE msgid "Data error" msgstr "Data fout" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Data" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Dec." #: NOT FOUND IN SOURCE msgid "December" msgstr "December" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "" #: NOT FOUND IN SOURCE msgid "Default Autoresponse Template" msgstr "Standaard Auto-antwoord Sjabloon" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Standaard queue" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Standaard aanvrager" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Standaard admin commentaar sjabloon" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Standaard admin correspondentie sjabloon" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Standaard correspondentie sjabloon" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Standaard transactie sjabloon" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standaard: %1/%2 verandered van %3 naar %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delegeer rechten" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delegeer specifieke rechten die aan u verleend zijn." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegeerRechten" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegeren" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Verwijderen" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Verwijder tickets" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "VerwijderTicket" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "Het verwijderen van dit object zou de referentiële integriteit kunnen ondermijnen" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Het verwijderen van dit object zou de referentiële integriteit ondermijnen" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Het verwijderen van dit object zou de referentiële integriteit ondermijnen" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity." msgstr "Het verwijderen van dit object zou de referentiële integriteit ondermijnen" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Wijs af" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Afhankelijkheid van" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "Afhankelijkheid voor" #: NOT FOUND IN SOURCE msgid "Dependencies: \\n" msgstr "Afhankelijkheden: \\n" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Is afhankelijk van" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "Afhankelijk van" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Aflopend" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Aflopend" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Omschrijf onderstaande kwestie" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Omschrijving" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Details" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Toon" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Toon de toegangscontrole lijst" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Toon de kolommen" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Toon de scrip template voor deze queue" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Toon de scrips voor deze queue" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Toon de modus" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Toon de bewaarde zoekopdrachten voor deze groep" #: NOT FOUND IN SOURCE msgid "Display ticket #%1" msgstr "Toon ticket #%1" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Gedistribueerd onder versie 2 van de GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Doe iets en alles" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ververs deze pagina niet" #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "Toon zoekresultaten niet" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Download" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Download als een met tabs gescheiden bestand" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Verwacht" #: NOT FOUND IN SOURCE msgid "Due date '%1' could not be parsed" msgstr "Verwachte datum '%1' kon niet ontleed worden" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "FOUT: Kan ticket '%1' niet laden: %2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Wijzig" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Wijzig custom fields voor %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Wijzig Relaties" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Wijzig Zoekopdracht" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Wijzig zoekopdracht" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Wijzig systeem sjablonen" #: NOT FOUND IN SOURCE msgid "Edit templates for %1" msgstr "Wijzig sjablonen voor %1" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "WijzigOpgeslagenZoekopdrachten" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Bezig met wijzigen van de configuratie voor queue %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "Bezit met het wijzigen van de configuratie voor gebruiker %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Bezit met het wijzigen van custom field %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Bezit met het wijzigen van lidmaatschap voor groep %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Bezit met het wijzigen van lidmaatschap voor persoonlijke groep %1" #: NOT FOUND IN SOURCE msgid "Editing template %1" msgstr "Bezit met het wijzigen van sjabloon %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Of basis of doel moeten gespecificeerd zijn" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-mail" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "E-mailadres in gebruik" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "E-mail adres" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "E-mailCodering" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Actief (Het uitzetten van dit vinkje deactiveert dit custom field)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Actief (Het uitzetten van dit vinkje deactiveert deze groep)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Actief (Het uitzetten van dit vinkje deactiveert deze queue)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Actieve queues" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Actieve status %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Voer meerdere waarden in" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "" #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Voer één waarde in" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "" #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Vul tickets of URIs in om deze tickets aan te koppelen. Scheidt meerdere elementen met spaties." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Fout" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Fout in paramaters naar Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DelWatcher" msgstr "Fout in paramaters naar Queue->DelWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Fout in paramaters naar Ticket->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Ticket->DelWatcher" msgstr "Fout in paramaters naar Ticket->DelWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Iedereen" #: bin/rt-crontool:356 msgid "Example:" msgstr "Voorbeeld:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "Uitgebreide status" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "" #: NOT FOUND IN SOURCE msgid "ExternalAuthId" msgstr "ExternAuteurId" #: NOT FOUND IN SOURCE msgid "ExternalContactInfoId" msgstr "ExternContactInfoId" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Extra informatie" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Kan de gebruikers pseudogroep 'Privileged' niet vinden." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Kan de gebruikers pseudogroep 'Unprivileged' niet vinden." #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Kan module %1 niet laden. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Feb." #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Bestandsnaam" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Vul meerdere tekst velden" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Vul meerdere wikitekst velden" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Vul één tekst veld" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Vul één wiki tekst veld" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Vul dit veld met een URL" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Vul tot %1 tekst velden" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Vul tot %1 wiki tekst velden" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Uiteindelijke prioriteit" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "Uiteindelijke prioriteit" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Zoek groepen waarvan" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "Zoek nieuwe/open tickets" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Zoek mensen waarvan" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Zoek tickets" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: NOT FOUND IN SOURCE msgid "Finish Approval" msgstr "Beëindig Goedkeuring" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Eerste" #: NOT FOUND IN SOURCE msgid "First page" msgstr "Eerste pagina" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Aap Noot Mies" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Aap!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formaat" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Gevonden Object" #: NOT FOUND IN SOURCE msgid "Freeform" msgstr "Vrije vorm" #: NOT FOUND IN SOURCE msgid "FreeformContactInfo" msgstr "Vrije vorm contact informatie" #: NOT FOUND IN SOURCE msgid "FreeformMultiple" msgstr "VrijevormMeerdere" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Vr." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Volledige Kop" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Vul sjabloon vanuit bestand" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: NOT FOUND IN SOURCE msgid "Getting the current user from a pgp sig\\n" msgstr "Bezig met het ophalen van de huidige gebruiker middels een pgp handtekening" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Aan %1 gegeven" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Globaal" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Globaal custom fields" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Globaal sjabloon: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Ga" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Ga!" #: NOT FOUND IN SOURCE msgid "Good pgp sig from %1\\n" msgstr "Goede pgp handtekening van %1\\n" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "Ga naar pagina" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ga naar ticket" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Groep" #: NOT FOUND IN SOURCE msgid "Group %1 %2: %3" msgstr "Groep %1 %2: %3" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Groeps rechten" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Groep heeft al een lid: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Groep kon niet gecreërd worden: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Groep gecreërd" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Groep heeft geen lid onder die naam" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Groep niet gevonden" #: NOT FOUND IN SOURCE msgid "Group not found.\\n" msgstr "Groep niet gevonden.\\n" #: NOT FOUND IN SOURCE msgid "Group not specified.\\n" msgstr "Groep niet gespecificeerd.\\n" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Groepen" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Groepen kunnen geen leden zijn van hun leden" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Groepen waar deze gebruiker deel van uitmaakt" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "Bevat lid" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Hallo!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hallo, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Geschiedenis" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "ThuisNummer" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Startpagina" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Uren" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Ik heb %quant(%1,betonmixer)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identiteit" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Als een goedkeuring afgewezen is, wijs het origineel af en verwijder goedkeuringen die in behandeling zijn" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Indien geen aanvrager is gespecificeerd, maak dan de tickets aan met deze aanvrager" #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Creëer tickets in deze queue indien geen queue is opgegeven." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Als dit gereedschap setgid zou zijn, zou een kwaadwillende lokale gebruiker dit gereedschap kunnen gebruiken om administratieve toegang te verkrijgen tot RT" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Als u een van de bovenstaande elemented ververst heeft, zorg dan dat u" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Illegale waarde voor %1" #: NOT FOUND IN SOURCE msgid "Image" msgstr "Afbeelding" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Niet-wijzigbaar veld" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Neem inactieve groepen op in de weergave." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Neem inactieve queues op in de weergave." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Neem inactieve gebruikers op in de zoek opdracht" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Pagina toevoegen" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "Incomplete query" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "Incomplete query" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Initiële prioriteit" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "Initiële prioriteit" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Invoer fout" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Interne Fout" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Interne Fout: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Ongeldig Groep Type" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Ongeldig Recht" #: NOT FOUND IN SOURCE msgid "Invalid Type" msgstr "Ongeldig Type" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Ongeldige data" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "Ongeldige eigenaar. Val terug op 'nobody'." #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Ongeldig patroon: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Ongeldige queue" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Ongeldige recht" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Ongeldige waarde voor %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Ongeldige waarde voor custom field" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Ongeldige waarde voor status" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Het is ontzettend belangrijk dat onbevoorrechtigde gebruikers geen toestemming hebben om dit gereedschap te gebruiken." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "We stellen voor dat u een onbevoorrechtigde unix gebruiker aanmaakt met het juiste groep lidmaatschap en RT toegang om dit gereedschap te gebruiken." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Het accepteerd meerdere argumenten:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "" #: NOT FOUND IN SOURCE msgid "Items pending my approval" msgstr "Zaken die wachten op mijn goedkeuring" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Jan." #: NOT FOUND IN SOURCE msgid "January" msgstr "Januari" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Sluit u aan of verlaat deze groep" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Jul." #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Jumbo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Jun." #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: NOT FOUND IN SOURCE msgid "Keyword" msgstr "Sleutelwoord" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "Taal" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Taal" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Laatste" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Laatste Contact" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Laatste contact" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "Laatste bericht" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Laatste aanpassing" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "Laatste aangepast door" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Over" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Geef deze gebruiker toegang tot RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Geef deze gebruiker rechten" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: NOT FOUND IN SOURCE msgid "Limiting owner to %1 %2" msgstr "Eigenaar wordt gelimieteerd tot %1 %2" #: NOT FOUND IN SOURCE msgid "Limiting queue to %1 %2" msgstr "Queue wordt gelimiteerd tot %1 %2" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Koppeling bestaat al" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Koppeling kon niet gecreëerd worden" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Koppeling gecreëerd (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Koppelink verwijderd (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Koppeling niet gevonden" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Koppel ticket #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Link waarden aan" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "Gekoppeld aan" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Koppelingen" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Laden" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Laad opgeslagen zoekopdracht:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "Laad opgeslagen zoekopdracht" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Laad perl modules" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "Geladen zoekopdracht %1" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Locatie" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written.\\n RT can't run." msgstr "Log folder %1 niet gevonden of niet toegankelijk.\\n RT kan niet starten." #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Aangemeld als %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Aanmelden" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Afmelden" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Lookup type komt niet overeen" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Maak Eigenaar" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Maak Status" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Maak verwachtingsdatum" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Make oplossingsdatum" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Maak startdatum" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Maak datum gestart" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Maak datum gemeld" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Maak prioriteit" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Maak queue" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Maak onderwerp" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Beheer van custom fields" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Beheer van groepen" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Beheer van eigenschappen en configuraties die betrekking hebben op alle queues" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Beheer van queues" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Beheer van gebruikers" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Maa." #: NOT FOUND IN SOURCE msgid "March" msgstr "Maart" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mei" #: NOT FOUND IN SOURCE msgid "May." msgstr "Mei." #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Lid toegevoegd: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Lid verwijderd" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Lid niet verwijderd" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Lid van" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "Lid van" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Leden" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Samenvoeging Succesvol" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Samenvoeging mislukt. Kan EffectiefId niet instellen" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Voeg samen in" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Samengevoegd tot %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Bericht" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Bericht inhoud niet weergegeven omdat het te groot is of niet in platte tekst" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "bericht kon niet opgeslagen worden" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Bericht opgeslagen" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Berichten over dit ticket worden niet verzonden aan..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuten" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Mist primaire sleutel?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobiel" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "MobieleTelefoon" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Wijzig Toegangs Controle Lijst" #: NOT FOUND IN SOURCE msgid "Modify Custom Field %1" msgstr "Wijzig Specifiek Veld %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Wijzig custom fields die betrekking hebben op %1 voor alle %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Wijzig custom fields die betrekking hebben op alle %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Wijzig groep rechten" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Wijzig leden" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Wijzig rechten" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Wijzit Scrip sjabloon voor deze queue" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Wijzig Scrips voor deze queue" #: NOT FOUND IN SOURCE msgid "Modify Template %1" msgstr "Wijzig Sjabloon %1" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Wijzig een Specifiek Veld voor deze queue %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Wijzig een scrip voor deze queue %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Wijzig een scrip die betrekking heeft op alle queues" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Wijzig objecten geassocieerd aan %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify dates for # %1" msgstr "Wijzig data voor # %1" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Wijzig data voor #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Wijzig data voor ticket # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Wijzig globale groepsrechten" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Wijzig globale groepsrechten" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Wijzig globale gebruikersrechten" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Wijzig globale gebruikersrechten" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Wijzig groepsmetadata of verwijder groep" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Wijzig groepsrechten voor custom field %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Wijzig groepsrechten voor groep %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Wijzig groepsrechten voor queue %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Wijzig lidmaatschap rooster voor dze groep" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Wijzig uw eigen RT" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Wijzig mensen gekoppeld aan queue %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Wijzig mensen gekoppeld aan ticket #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Wijzig scrips voor queue %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Wijzig scrips die betrekking hebben op alle queues" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Wijzig sjabloon %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Wijzig sjablonen die van toepassing zijn op alle queues" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Wijzig de groep %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Wijzig de toeschouwers van de queue" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Wijzig de gebruiker %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Wijzig ticket # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Wijzig ticket #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Wijzig tickets" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Wijzig gebruikersrechten voor custom field %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Wijzig gebruikersrechten voor groep %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Wijzig gebruikersrechten voor queue %1" #: NOT FOUND IN SOURCE msgid "Modify watchers for queue '%1'" msgstr "Wijzig toeschouwers voor queue '%1'" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "WijzigACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "WijzigEigenLidmaatschap" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "Wijzig queue toeschouwers" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "Wijzig scrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "WijzigZelf" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "WijzigSjabloon" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "WijzigTicket" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Ma." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Meer over %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Meerdere" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Specificeren van 'Naam' attribuut verplicht" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Mijn %1 tickets" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Mijn Goedkeuringen" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mijn goedkeuringen" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mijn bewaarde zoekopdrachten" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Naam" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Naam in gebruik" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Need approval from system administrator" msgstr "Goedkeuring benodigd van de systeem beheerder" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Nooit" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Nieuw" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nieuwe Relaties" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nieuw wachtwoord" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Nieuwe wachtende goedkeuring" #: NOT FOUND IN SOURCE msgid "New Query" msgstr "Nieuwe zoekopdracht" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nieuwe zoekopdracht" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Nieuw custom field" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Nieuwe group" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nieuw wachtwoord" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Bericht voor nieuw wachtwoord verzonden" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Nieuwe queue" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "" #: NOT FOUND IN SOURCE msgid "New request" msgstr "Nieuw verzoek" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nieuwe rechten" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Nieuw scrip" #: NOT FOUND IN SOURCE msgid "New search" msgstr "Nieuwe zoekopdracht" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Nieuw sjabloon" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nieuw ticket" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Nieuw ticket bestaat niet" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Nieuwe gebruiker" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Nieuwe gebruiker genaamd" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nieuwe toeschouwers" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "Nieuwe venster instelling" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Volgende" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Volgende pagina" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "Volgende pagina" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Bijnaam" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Bijnaam" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Geen Klasse gedefinieerd" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Geen custom field" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Geen custom field gedefinieerd" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Geen Groep gedefinieerd" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Geen Zoekopdracht" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Geen queue gedefinieerd" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Geen RT-gebruiker gevonden. Raadpleeg uw RT-beheerder.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Geen Sjabloon" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "Geen ticket gespecificeerd. Ticket afgebroken " #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket modifications\\n\\n" msgstr "Geen ticket gespecificeerd. Ticket wijzigingen afgebroken\\n\\n" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Geen actie" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Geen kolom gespecificeerd" #: NOT FOUND IN SOURCE msgid "No command found\\n" msgstr "Geen commando gevonden\\n" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Geen commentaar ingevuld over deze gebruiker" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "Geen correspondentie aangehecht" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Geen omschrijving voor %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Geen groep gespecificeerd" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Er zijn geen groepen gevonden die voldoen aan het zoek criterium." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Geen bericht toegevoegd" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Geen wachtwoord ingesteld" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Geen rechten om queues te creëren" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Geen rechten om tickets te creëren in de queue '%1'" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Geen rechten om gebruikers te creëren" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Geen rechten om dat ticket te tonen" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Geen rechten om verversing ticket te bekijken" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Geen hoofdgebruiker gespecificeerd" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Geen hoofdgebruikers geselecteerd" #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Geen queues gevonden die aan de zoekcriteria voldoen" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Geen rechten gevonden" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Geen rechten toegekend" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Geen zoek opdracht om uit te voeren." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Geen onderwerp" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "" #: NOT FOUND IN SOURCE msgid "No ticket id specified" msgstr "Geen ticket id gespecificeerd" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Geen transactie type gespecificeerd" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: NOT FOUND IN SOURCE msgid "No user or email address specified" msgstr "Geen gebruiker of email-adres gespecificeerd" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Geen gebruikers gevonden die aan de zoekcriteria voldoen" #: NOT FOUND IN SOURCE msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" msgstr "Geen geldige RT gebruiker gevonden. RT cvs behandelaar losgemaakt. Neemt u alstublieft contact op met uw RT beheerder.\\n" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Geen waarde gestuurd naar _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Niemand" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Nietbestaand veld?" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Niet aangemeld." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Niet gezet" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Nog niet geïmplementeerd." #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "Nog niet geïmplementeerd...." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Notities" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Bericht kon niet verstuurd worden" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Informeer AdminCcs" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Informeer AdminCcs als Commentaar" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Informeer Ccs" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Informeer Ccs als CC" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Bericht Andere Ontvangers" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Bericht Andere Ontvangers als Commentaar" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Bericht Eigenaar" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Bericht Eigenaar als Commentaar" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Informeer de eigenaar over hun geweigerde ticket" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "Informeer de eigenaar als hun ticket is geautoriseerd door de approvers" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "Informeer de eigenaar als hun ticket is geautoriseerd door een aprover" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Informeer Eigenaars en AdminCcs over nieuwe zaken welke wachten op hun goedkeuring" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Informeer aanvragers" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Informeer aanvragers en Ccs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Informeer aanvragers en Ccs als CC" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Informeer aanvragers, Ccs en AdminCcs" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Informeer aanvragers, Ccs en AdminCcs als CC" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Nov." #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Object kon niet gecreëerd worden" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Object gecreëerd" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Okt." #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "" #: etc/initialdata:143 msgid "On Comment" msgstr "Bij Commentaar" #: etc/initialdata:115 msgid "On Correspond" msgstr "Bij Overeenkomst" #: etc/initialdata:104 msgid "On Create" msgstr "Bij Creatie" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Bij Eigenaarwijziging" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Bij queue wijziging" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "" #: etc/initialdata:178 msgid "On Resolve" msgstr "Bij Oplossing" #: etc/initialdata:149 msgid "On Status Change" msgstr "Bij Statuswijziging" #: etc/initialdata:109 msgid "On Transaction" msgstr "Bij Transactie" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Toon alleen goedkeuringen voor verzoeken gecreëerd na %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Toon alleen goedkeuringen voor verzoeken gecreëerd voor %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Toon alleen de custom fields voor:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Open" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Open" #: NOT FOUND IN SOURCE msgid "Open requests" msgstr "Open verzoeken" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "Open tickets (van lijst) in een nieuw venster" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "Open tickets (van lijst) in een ander venster" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Open ticket bij correspondentie" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Opties" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sorteer op" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "Ordening en sortering" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organisatie" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Voortgekomen uit ticket: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Naar mate de tijd vordert, verschuift de prioriteit richting" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Eigen tickets" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "EigenTicket" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Eigenaar" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Eigenaar veranderd van %1 naar %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Eigenaar gedwongen veranderd van %1 naar %2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "Eigenaar is" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Naam van de eigenaar" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "Pagina %1 van %2" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Pieper" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Pieper" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Ouders" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Wachtwoord" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Wachtwoord Herinnering" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "Wachtwoord te kort" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Wachtwoord: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:463 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Mensen" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Verricht een gebruiker gedefiniëerde actie" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl-configuratie" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Toestemming Geweigerd" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Persoonlijke Groepen" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Persoonlijke groepen" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Persoonlijke groepen:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefoonnummers" #: NOT FOUND IN SOURCE msgid "Placeholder" msgstr "Plaatshouder" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Instelingen" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: NOT FOUND IN SOURCE msgid "Prefs" msgstr "Voorkeuren" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Bereid Plaatshouder Voor" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Vorige" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "Vorige pagina" #: NOT FOUND IN SOURCE msgid "Pri" msgstr "Pri" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Hoofd %1 niet gevonden." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioriteit" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioriteit begint bij" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privacy:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Gerechtigd" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Gerechtigde status: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Gerechtigde gebruikers" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: NOT FOUND IN SOURCE msgid "Projects" msgstr "Projecten" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudogroep voor intern gebruik" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Zoek criteria" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Queue" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Queue %1 niet gevonden" #: NOT FOUND IN SOURCE msgid "Queue '%1' not found\\n" msgstr "Queue '%1' niet gevonden\\n" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Queue Naam" #: NOT FOUND IN SOURCE msgid "Queue Scrips" msgstr "Queue Scrips" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Queue bestaat al" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Queue kon niet aangemaakt worden" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Queue kon niet geladen worden." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Queue aangemaakt" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "" #: NOT FOUND IN SOURCE msgid "Queue is not specified." msgstr "Queue is niet gespecificeerd" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Queue niet gevonden" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "Naam van de queue" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Queues" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Queues die ik beheer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Queues waarvan in een AdminCC ben" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Snel zoeken" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Snel een ticket aanmaken" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 voor %2" #: NOT FOUND IN SOURCE msgid "RT %1 from Best Practical Solutions, LLC." msgstr "RT %1 van Best Practical Solutions, LLC." #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n" msgstr "RT %1. Copyright 1996-%1 Jesse Vincent \\n" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT Beheer" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Authentication error." msgstr "RT Authenticatie fout" #: NOT FOUND IN SOURCE msgid "RT Bounce: %1" msgstr "RT Doorgestuurd: %1" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Configuration error" msgstr "RT Configuratie fout" #: NOT FOUND IN SOURCE msgid "RT Critical error. Message not recorded!" msgstr "RT Kritieke fout: Bericht niet bewaard!" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT Fout" #: NOT FOUND IN SOURCE msgid "RT Received mail (%1) from itself." msgstr "RT Ontving mail (%1) van zichzelf." #: NOT FOUND IN SOURCE msgid "RT Self Service / Closed Tickets" msgstr "RT Zelfbediening / Afgesloten Tickets" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT Variabelen" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT in een oogopslag" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan content van een andere webpagina toevoegen wanneer dit custom field wordt weergegeven." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan deze custom field waarden omzetten in hyperlinks naar andere services." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: NOT FOUND IN SOURCE msgid "RT couldn't authenticate you" msgstr "RT kon u niet authenticeren" #: NOT FOUND IN SOURCE msgid "RT couldn't find requestor via its external database lookup" msgstr "RT kan de aanvrager niet vinden in zijn interne database" #: NOT FOUND IN SOURCE msgid "RT couldn't find the queue: %1" msgstr "RT kon de queue %1 niet vinden" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "" #: NOT FOUND IN SOURCE msgid "RT couldn't validate this PGP signature. \\n" msgstr "RT kon deze PGP signatuur niet valideren. \\n" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT voor %1" #: NOT FOUND IN SOURCE msgid "RT for %1: %2" msgstr "RT voor %1: %2" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "RT heeft uw commando's verwerkt" #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. Het is gedistribueerd onder Versie 2 van de GNU General Public License." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: NOT FOUND IN SOURCE msgid "RT thinks this message may be a bounce" msgstr "RT denkt dat dit bericht onbestelbaar zou kunnen zijn" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "Standaard zoekt RT in de ticket onderwerpen" #: NOT FOUND IN SOURCE msgid "RT will process this message as if it were unsigned.\\n" msgstr "RT zal dit bericht verwerken als of het ongesigneerd is.\\n" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT zal %1 en %2 vervangen met het record id respectievelijk de custom field waarde" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT zal __id__ en __CustomField__ vervangen met het record id respectievelijk de custom field waarde" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: NOT FOUND IN SOURCE msgid "RT's email command mode requires PGP authentication. Either you didn't sign your message, or your signature could not be verified." msgstr "RT's email commando modus vereist PGP authenticatie. Of u heeft uw bericht niet gesigneerd, of uw signatuur kon niet geverifieerd worden." #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Echte naam" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "EchteNaam" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Naar gerefeerd door" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "Verwezen vanaf" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Refereert aan" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "Verwijst naar" #: NOT FOUND IN SOURCE msgid "Refine" msgstr "Verfijn" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "Verfijn Zoekopdracht" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Ververs deze pagina elke %1 minuten." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Herinneringen" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Verwijder AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Verwijder Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Verwijder aanvrager" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Antwoord" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Antwoord naar adres" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Antwoord naar aanvragers" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Antwoord op tickets" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "Antwoord op ticket" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Rapportage" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Aanvrager" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "Aanvrager email adres" #: NOT FOUND IN SOURCE msgid "Requestor(s)" msgstr "Aanvrager(s)" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Aanvragers" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Verzoek is terug verwacht" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Verplichte parameter '%1' ontbreekt" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Herstel" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Woonplaats" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Los op" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Los ticket #%1 (%2) op" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Opgelost" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Opgeloste incidenten per eigenaar" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Opgelost in het tijdvenster" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "Antwoord aan aanvragers" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultaten" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "Resultaten per pagina" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Herhaal het wachtwoord" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Herstel" #: NOT FOUND IN SOURCE msgid "Right %1 not found for %2 %3 in scope %4 (%5)\\n" msgstr "Recht %1 niet gevonden voor %2 %3 in bereik %4 (%5)\\n" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Recht Gedelegeerd" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Recht Toegekend" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Recht geladen" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Recht kon niet afgenomen worden" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Recht niet gevonden" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Recht niet geladen" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Recht ingetrokken" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Rechten" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Rollen" #: NOT FOUND IN SOURCE msgid "RootApproval" msgstr "RootGoedkeuring" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Rijen per box" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rijen per pagina" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Za." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Bewaren" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Bewaar wijzigingen" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Bewaar instellingen" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Bewaar wijzigingen" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Opgeslagen zoekopdrachten" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip aangemaakt" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Script verwijderd" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "Scrips voor %1\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scrips die betrekking hebben op alle queues" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Zoek" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: NOT FOUND IN SOURCE msgid "Search Criteria" msgstr "Zoek Criteria" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Zoeken naar autorisaties" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Zoeken naar tickets" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address. RT will look for anything else you enter in ticket bodies and attachments." msgstr "Zoeken naar tickets. Voer het id nummer, de queue naam, de naam van de eigenaar of het e-mail adres van de aanvrager in. RT zal zoeken in de ticket inhoud en attachments." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Zoek opties" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "" #: NOT FOUND IN SOURCE msgid "Searches can't be associated with that kind of object" msgstr "Zoekopdrachten kunnen niet met dat type object geassocieerd worden" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Het doorzoeken van de gehele tekst van alle tickets kan lang duren, maar als dit nodig is, dan kun je ieder woord in de volledige ticket history opzoeken door het typen van fulltext:woord." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "Veiligheid" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "" #: NOT FOUND IN SOURCE msgid "See also: %1" msgstr "Bekijk ook: %1" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Bekijk custom fields" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Bekijk de uitgaande mail en haar ontvangers" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Bekijk ticket" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Bekijk ticket samenvatting" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "Bekijk custom field" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "Bekijk groep" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "Bekijk queue" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Selecteer een custom field" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Selecteer een groep" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Selecteer een queue" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Selecteer een queue voor je nieuwe ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Selecteer een gebruiker" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Selecteer custom field" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Selecteer custom fields voor alle gebruikers groepen" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Selecteer custom fields voor alle gebruikers" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Selecteer custom fields voor tickets in alle queues" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Selecteer custom fields for transacties op tickets in alle queues" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Selecteer de groep" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Selecteer meerdere waarden" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Selecteer één waarde" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Selecteer de queue" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Selecteer de queues die weergegeven worden op de \"RT in een oogopslag\" pagina" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Selecteer het scrip" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Selecteer de template" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Selecteer tot %1 waarden" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Selecteer de gebruiker" #: NOT FOUND IN SOURCE msgid "SelectMultiple" msgstr "SelecteerMeerdere" #: NOT FOUND IN SOURCE msgid "SelectSingle" msgstr "SelecteerEnkele" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "" #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "Zelfbediening" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Stuurt mail naar alle toeschouwers" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Stuurt mail naar alle toeschouwers als een \"commentaar\"" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Stuurt mail naar alle aanvragers en Ccs" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Stuurt mail naar alle aanvragers en Ccs als een \"commentaar\"" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Stuurt een bericht aan de aanvragers" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Stuurt mail aan expliciet genoemde Ccs en Bccs" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Stuurt mail aan de administratieve Ccs" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Stuurt mail aan de administratieve Ccs als een \"commentaar\"" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Stuurt mail aan de eigenaar" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Sep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Toon" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "Toon autorisaties" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Toon kolommen" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Toon Resultaten" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Toon goedgekeurde verzoeken" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Toon beginselen" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Toon afgewezen verzoeken" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Toon details" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Toon verzoeken die in behandeling zijn" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Toon verzoeken die wachten op andere goedkeuringen" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "Toon ticket privé commentaar" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "Toon ticket samenvattingen" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "ToonACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "ToonUitgaandeEmail" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "ToonOpgeslagenZoekopdrachten" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "Toon scrips" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "Toon sjabloon" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "Toon ticket" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "Toon ticket commentaar" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Schrijf in als een ticket aanvrager of ticket of queue Cc" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Schrijf in als een ticket of queue AdminCc" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Ondertekening" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Zoeken" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Enkel" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Omvang" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Sommige browser laden alleen content als het afkomstig is uit hetzelfde domain als de RT server." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sorteren" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "Sorteer sleutel" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "Sorteer resultaten op" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "SorteerVolgorde" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Stadium" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: NOT FOUND IN SOURCE msgid "Stalled" msgstr "Is blijven steken" #: NOT FOUND IN SOURCE msgid "Start page" msgstr "Start pagina" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Gestart" #: NOT FOUND IN SOURCE msgid "Started date '%1' could not be parsed" msgstr "Startum '%1' kon niet ontleed worden" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Begint" #: NOT FOUND IN SOURCE msgid "Starts By" msgstr "Begint op" #: NOT FOUND IN SOURCE msgid "Starts date '%1' could not be parsed" msgstr "Begindatum '%1' kon niet ontleed worden" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Provincie" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Status" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Status veranderd van %1 naar %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: NOT FOUND IN SOURCE msgid "StatusChange" msgstr "StatusVerandering" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Steel" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Steel ticket" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "SteelTicket" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Gestolen van %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Gestolen van %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stijl" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Onderwerp" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Onderwerp veranderd naar %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Uitvoeren" #: NOT FOUND IN SOURCE msgid "Submit Workflow" msgstr "Registreer Workflow" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Gelukt" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Zo." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "Super gebruiker" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "" #: NOT FOUND IN SOURCE msgid "System" msgstr "Systeem" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Systeem configuratie" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Systeem Fout" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systeem tools" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Systeem fout. Recht niet gedelegeerd." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Systeem fout. Recht niet toegekend." #: NOT FOUND IN SOURCE msgid "System error. Unable to grant rights." msgstr "Systeem fout. Niet mogelijk om rechten toe te kennen" #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Systeem groepen" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SysteemRolgroep voor intern gebruik" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRING" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Neem" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Neem ticket" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "NeemTicket" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Genomen" #: NOT FOUND IN SOURCE msgid "Task" msgstr "Taak" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Sjabloon" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Sjabloon verwijderd" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Sjabloon niet gevonden" #: NOT FOUND IN SOURCE msgid "Template not found\\n" msgstr "Sjabloon niet gevonden\\n" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Sjabloon ontleed" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Sjablonen" #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "Sjablonen voor %1\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "Tekst" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Dat is al de huidige waarde" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Dat is geen waarde voor dit custom field" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Dat is de zelfde waarde" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Deze hoofdgebruiker heeft reeds dat recht" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Deze hoofdgebruiker is reeds een %1 voor deze queue" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Deze hoofdgebruiker is reeds een %1 voor dit ticket" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Deze hoofdgebruiker is geen %1 voor deze queue" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Dexe hoofdgebruiker is geen %1 voor dit ticket" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Die queue bestaat niet" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Dat ticket heeft onopgeloste afhankelijkheden" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "Die gebruiker heeft dat recht reeds" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Die gebruiker is al eigenaar van dat ticket" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Die gebruiker bestaat niet" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Die gebruiker is al gerechtigd" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Die gebruiker is reeds ontrechtigd" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Die gebruiker is nu gerechtigd" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Die gebruiker is nu ontrechtigd" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Die gebruiker mag geen eigenaar zijn van tickets in die queue" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Dat is niet een numeriek ID" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "De Beginselen" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "De CC van een ticket" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "De administratieve CC van een ticket" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "Het commentaar is bewaard" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Het volgende commando zal alle actieve tickets in de queue 'general' vinden en hun prioriteit op 99 zetten als ze meer dan 4 uur niet aangeraakt zijn:" #: NOT FOUND IN SOURCE msgid "The following commands were not proccessed:\\n\\n" msgstr "De volgende commando's zijn niet verwerkt:\\n\\n" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "De waarde is gezet." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "De eigenaar van een ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "De aanvrager van een ticket" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Dit commentaar is gewoonlijk niet zichtbaar voor de gebruiker" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Dit custom field is niet van toepassing op dat object" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Dit onderdeel is alleen beschikbaar voor systeembeheerders" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "" #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Dit bericht zal verstuurd worden aan..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: NOT FOUND IN SOURCE msgid "This ticket %1 %2 (%3)\\n" msgstr "Dit ticket %1 %2 (%3)\\n" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dit gereedschap stelt de gebruiker in staat arbitraire perl modules te gebruiken vanuit RT" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Het lijkt erop alsof deze transactie geen inhoud heeft" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "De %1 tickets met hoogste prioriteit van deze gebruiker" #: NOT FOUND IN SOURCE msgid "This user's 25 highest priority tickets" msgstr "De 25 hoogste prioriteit tickets van deze gebruiker" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Do." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Ticket #%1 Jumbo actualisering: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Ticket #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Ticket %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Ticket %1 aangemaakt in queue '%2'" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "Toclet %1 geladen\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Ticket %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Ticket custom fields" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Ticket Historie # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "Ticket Id" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Ticket Opgelost" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Ticket Transacties" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "Ticket attachment" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Ticket inhoud" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Ticket inhoud type" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Ticket kong niet aangemaakt worden vanwege een interne fout" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "Ticket aangemaakt" #: NOT FOUND IN SOURCE msgid "Ticket creation failed" msgstr "Ticket aanmaken gefaald" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "Ticket verwijderd" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "Ticket id niet gevonden" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Ticket metagegevens" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "Ticket niet gevonden" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Ticket status gewijzigd" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "Ticket toeschouwers" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Tickets" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Tickets %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Tickets %1 door %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "Tickets van %1" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Tickets afgesloten na" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Tickets afgesloten voor" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tickets welke afhankelijk zijn van deze goedkeuring" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Geschatte Tijd" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Resterende tijd" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Gewerkte tijd" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Resterende tijd" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tijd om te tonen" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Gewerkte tijd" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "Resterende tijd" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "Gewerkte tijd" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Titel" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "Om een verschil van deze uitvoering te genereren:" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "Om een verschil van deze uitvoering te genereren:\\n" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Voor vragen over support, training, bedrijfsspecifieke software-ontwikkeling of licentieovereenkomsten, gelieve contact op te nemen met %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Verteld" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Tools" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Totaal" #: etc/initialdata:249 msgid "Transaction" msgstr "Transactie" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transactie %1 gezuiverd" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transactie Gecreëerd" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Transactie custom fields" #: NOT FOUND IN SOURCE msgid "Transaction->Create couldn't, as you didn't specify a ticket id" msgstr "Transactie->Creëer kon niet, aangezien u geen ticket id gespecificeerd heeft" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transactie->Creëer kon niet,aangezien er geen objectttype en -id gespecificeerd is" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transacties zijn onwijzigbaar" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "" #: NOT FOUND IN SOURCE msgid "Trying to delete a right: %1" msgstr "Tracht een recht te verwijderen: %1" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Di." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Type" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Niet geïmplementeerd" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix login" #: NOT FOUND IN SOURCE msgid "UnixUsername" msgstr "UnixGebruikersnaam" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Onbekende InhoudCodering %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ongelimiteerd" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Onbenoemde zoekopdracht" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Ongerechtigd" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Vrij" #: NOT FOUND IN SOURCE msgid "Untitled search" msgstr "Naamloze zoekopdracht" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Ververs" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "Ververs ID" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Ververs Type" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "Ververs al deze tickets in eens" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "Ververs email" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Ververs meer dan één ticket" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "Ververs naam" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Verversing niet opgeslagen." #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "Ververs geselecteerde tickets" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "Ververs signatuur" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Ververs ticket" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "Ververs ticket # %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Ververs ticket #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Ververs ticket #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Verversingstype was noch correspondentie, noch commentaar" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Ververst" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Gebruik andere administratieve RT tools" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "" #: NOT FOUND IN SOURCE msgid "User %1 %2: %3\\n" msgstr "Gebruiker %1 %2: %3\\n" #: NOT FOUND IN SOURCE msgid "User %1 Password: %2\\n" msgstr "Gebruiker %1 Wachtwoord: %2\\n" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "" #: NOT FOUND IN SOURCE msgid "User '%1' not found" msgstr "Gebruiker '%1' niet gevonden" #: NOT FOUND IN SOURCE msgid "User '%1' not found\\n" msgstr "Gebruiker '%1' niet gevonden\\n" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Gebruiker Gedifiniëerd" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "GebruikersID" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "Gebruiker Id" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Gebruikersrechten" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "De gebruiker vroeg om een onbekende aanpassing van custom field %1 voor %2 object #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Gebruiker kon niet aangemaakt worden: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Gebruiker aangemaakt" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Door gebruiker gedefiniëerde groepen" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Gebruiker opgehaald" #: NOT FOUND IN SOURCE msgid "User notified" msgstr "Gebruiker verwittigd" #: NOT FOUND IN SOURCE msgid "User view" msgstr "Gebruikers aanzicht" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Door gebruiker gedefinieerde groepen" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Gebruikersnaam" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Gebruikers" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Gebruikers die voldoen aan de zoek criteria" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Geldige Zoekopdracht" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validatie" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "Waarde van queue" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Waarden" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Schouw toe" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "SchouwToeAlsAdminCc" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "" #: NOT FOUND IN SOURCE msgid "Watcher loaded" msgstr "Toeschouwer geladen" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Toeschouwers" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "WebCodering" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Wo." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "Wanneer een ticket goedgekeurd is door alle goedkeurders, voeg correspondentie toe aan het orginele ticket" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "Wanneer een ticket goedgekeurd is door een goedkeurder, voeg correspondentie toe aan het orginele ticket" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Wanneer een ticket is aangemaakt" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Wanneer een goedkeuringsticket is aangemaakts, verwittig de Eigenaar en de AdminCc van het onderwerp dat op hun goedkeuring wacht" #: etc/initialdata:110 msgid "When anything happens" msgstr "Wanneer iets gebeurt" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Wanneer een ticket is opgelost" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Wanneer de eigenaar van een ticket verandert" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Wanneer de queue van een ticket verandert" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Wanneer de status van een ticket verandert" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Wanneer een door de gebruiker gedifiniëerde voorwaarde gebeurt" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Wanneer commentaar binnenkomt" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Wanneer correspondentie binnenkomt" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Werk" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "WerkTelefoon" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Gewerkt" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "U bent al eigenaar van dit ticket" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "" #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "U bent geen geauthorizeerde gebruiker" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "U kunt alleen tickets opnieuw toebedelen die van u zijn, of van niemand" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: NOT FOUND IN SOURCE msgid "You don't have permission to view that ticket.\\n" msgstr "U heeft geen toestemming om dat ticket te bekijken" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "U vond %1 tickets in queue %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "U bent afgemeld bij RT" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "U heeft geen toestemming om tickets aan te maken in die queue." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "U mag geen verzoeken aanmaken in die queue" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "U mag zich weer aanmelden" #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "Uw %1 verzoeken" #: NOT FOUND IN SOURCE msgid "Your RT administrator has misconfigured the mail aliases which invoke RT" msgstr "Uw RT beheerder heeft de mail-aliasses welke RT aanroepen verkeerd geconfigureerd" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "Uw verzoek is goedgekeurd door %1. Er zijn wellicht nog andere goedkeuringen in behandeling." #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "Uw verzoek is goedgekeurd." #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "Uw verzoek was geweigerd." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Uw gebruikersnaam of wachtwoord zijn onjuist" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Postcode" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "Na"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "zoals gegeven aan %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "Voor"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "chart"
msgstr "grafiek"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "gesloten"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "bevat"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "inhoud"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "inhoud-type"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "correspondentie (waarschijnlijk) niet verstuurd"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "correspondentie verstuurd"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dagen"

#: NOT FOUND IN SOURCE
msgid "dead"
msgstr "dood"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "verwijder"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "verwijderd"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "voldoet niet aan"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "bevat niet"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr ""

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "gelijk aan"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "bestandsnaam"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "groter dan"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "groep '%1'"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "opgedeeld in"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "uren"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "is"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "is niet"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "minder dan"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "voldoet aan"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minuten"

#: NOT FOUND IN SOURCE
msgid "modifications\\n\\n"
msgstr "wijzigingen\\n\\n"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr "maanden"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr ""

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "nieuw"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "geen"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "niet gelijk aan"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "Op"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "open"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "persoonlijke groep '%1' voor gebruiker '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "queue %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "geweigerd"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "opgelost"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr ""

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sec"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "geparkeerd"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr ""

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "systeem %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "systeem groep '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "het aanroepende component specificeerde niet waarom"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "ticket #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "onbeschreven groep %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "gebruiker %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "weken"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "met sjabloon %1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "jaren"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr ""

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/es.po0000664000175000017500000126250112262650742013750 0ustar  chmrrchmrr#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:19+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:12+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " no existe la clave pública!"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " no confiable!"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: NOT FOUND IN SOURCE
msgid "#%1"
msgstr "#%1"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "Añadido %1 %2"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "Hace %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 ha cambiado a %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 eliminados"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 eliminado."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 renombrado a %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 guardado."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 actualizados."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 con la plantilla %3"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 este caso\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) por %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Sin cambios)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (del panel %2)"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "%1 - %2 mostrados"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ajustar la opción de configuración LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Un parámetro para pasar a %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - El estado de la salida actualiza STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Especifique el id del patrón/template que desea usar"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Especifique si desea usar 'primera','última' o 'todas' las transacciones"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Especifique el nombre o id de la(s) plantilla(s) que quiere utilizar"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Especifique el módulo de acción que quiere utilizar"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Especifique la lista de tipos de transaciones separados por coma que desea usar"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Especifique el módulo de condición que quiere utilizar"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Especifique el modulo de búsqueda que quiere utilizar"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Cuadros de Mando"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 ScripAction cargado"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 añadido como un valor de %2"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on"
msgstr "%1 alias requieren un identificador de caso en el que trabajar"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on "
msgstr "%1 alias requieren un identificador de caso en el que trabajar "

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on (from %2) %3"
msgstr "%1 alias requieren un identificador de caso en el que trabajar (de %2) %3"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 ya existe y tiene las tablas de RT en su lugar, pero no contienen los metadatos de RT. Mediante 'Initializar la base de datos', más adelante puede insertar los metadatos en esta base de datos preexistente. Si es aceptable, presione 'Personalizar lo Basico' abajo para seguir personalizando RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 ya existe, pero no contiene las tablas ni los metadatos de RT.  El paso de 'Initializar la base de datos' mas adelante puede insertar los metadatos adentro de este base de datos ya existente.  Si es aceptable esto, presione 'Personalizar lo Basico' abajo para seguir en personalizar RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 parece ser un objeto local, pero no se encuentra en la base de datos"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 parece estar ya personalizado. No tenemos que crear las tablas ni los metadatos de RT,  pero puede seguir en personalizar RT por presionar 'Personalizar lo Basico' abajo."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 por %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 ha cambiado de %2 a %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 cambiado desde «%2» a «%3»"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "diagrama %1 por %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 copiar"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 configuración principal"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 no se ha podido fijar a %2"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't init a transaction (%2)\\n"
msgstr "%1 no pudo iniciar una transacción (%2)\\n"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 no pudo fijar el estado a resuelto. La base de datos de RT podría ser inconsistente."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 creado"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 eliminado"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 deshabilitado"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 no existe"

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 habilitado"

#: NOT FOUND IN SOURCE
msgid "%1 grouped by %2"
msgstr "%1 agrupado por %2"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 casos de mayor prioridad que poseo"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "Los %1 tickets de mayor prioridad que poseo..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "Los %1 casos de mayor prioridad que he pedido"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 es una herramienta para actuar sobre los casos con una herramienta de planificación externa, como cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 es una utilidad, hecha para ser ejecutada a partir de cron, que reparte las notificaciones diferidas de RT como un resumen por usuario"

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 es una dirección en la cual RT recibe correo. Añadirla como un '%2' podría crear un bucle de correo"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 ha dejado de ser un %2 para esta cola."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 ha dejado de ser un %2 para este caso."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 ya no es un valor para el campo personalizado %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1 no es valido el ciclo de vida"

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 no es un identificador de Cola válido."

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 articulos mas actualizados"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "Artículos más recientes de %1"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "Los %1 pedidos más recientes sin propietario"

#: NOT FOUND IN SOURCE
msgid "%1 not shown"
msgstr "%1 no mostrado"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objetos"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 privilegios"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 configuración del sitio"

#: NOT FOUND IN SOURCE
msgid "%1 succeeded\\n"
msgstr "%1 exitoso\\n"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 actualizado: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 actualizado: Sin cambios"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 actualizado"

#: NOT FOUND IN SOURCE
msgid "%1 was created without a CurrentUser\\n"
msgstr "%1 se creó sin CurrentUser\\n"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 resolverá todos los miembros de un grupo de casos resueltos."

#: NOT FOUND IN SOURCE
msgid "%1 will stall a [local] BASE if it's dependent [or member] of a linked up request."
msgstr "%1 pondrá como pendiente una BASE [local] si es dependiente [o miembro] de una solicitud ligada."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1's %2 objetos"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 objetos"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1's GnuPG llave"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1's contraseña actual"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Cuadros de mando de %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "búsquedas guardadas de %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: ningún archivo adjunto especificado"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Nuevo caso en%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%quant(%1,article)"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1, hora)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' es un valor inválido para el estado"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "«%1» no es un identificador de clase válido"

#: NOT FOUND IN SOURCE
msgid "'%1' not a recognized action. "
msgstr "'%1' no es una acción reconocida. "

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "'Roles'"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'Sistema'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'Grupo de Usuarios'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'Usuarios'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Marque la casilla para completar"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete group member)"
msgstr "(Marque la caja para borrar al miembro del grupo)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(Marque la caja para borrar la acción)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Marque la caja para borrar)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Marque las cajas para borrar)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Marque las cajas para deshabilitar notificaciones a los receptores listados)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Marque las cajas para habilitar notificaciones a los receptores listados)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Ingresar los numeros id o los URL de los casos, separados por espacios)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Si se deja vacío, pasará por omisión a %1)"

#: NOT FOUND IN SOURCE
msgid "(No Value)"
msgstr "(Sin Valor)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(No hay campos personalizados)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Sin miembros)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Sin acciones)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Sin plantillas)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Ninguno)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Envía una copia oculta de esta actualización a una lista delimitada por comas de direcciones de email. NO cambia quien recibirá futuras actualizaciones)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Envía una copia oculta de esta actualización a una lista de direcciones de correo delimitada por comas. No cambia a quien recibirá futuras actualizaciones.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Envía una copia oculta de esta actualización a una lista delimitada por comas de direcciones de email. No cambia quien recibirá futuras actualizaciones.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Envía una copia oculta de esta actualización a una lista delimitada por comas de direcciones de email administrativas. Estas personas recibirán las futuras actualizaciones.)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Envía una copia de esta actualización a una lista delimitada por comas de direcciones de email administrativas. Estas personas recibirán futuras actualizaciones.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Envía una copia oculta de esta actualización a una lista delimitada por comas de direcciones de email.NO cambia quien recibirá futuras actualizaciones."

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Envía una copia de esta actualización a una lista de direcciones de correo delimitada por comas. No cambia quien recibirá futuras actualizaciones.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Envía una copia de esta actualización a una lista de direcciones de correo delimitada por comas. No cambia quien recibirá futuras actualizaciones.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Envía una copia de esta actualización a una lista de direcciones de correo delimitada por comas. Estas personas recibirán actualizaciones futuras."

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Envía una copia de esta actualización a una lista de direcciones de correo delimitada por comas. Estas personas recibirán futuras actualizaciones."

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Usar estos campos cuando se selecciona 'Definido por el usuario' para una condición o acción)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(No se enviará un correo)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(cualquiera)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(vacío)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(no hay nombres listados)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(sin nombre)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(¡no hay clave pública!)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(sin asunto)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(sin valor)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(sin valores)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(sólo un caso)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(pendiente %quant(%1,otro caso))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(pendiente de aprobación)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(pendiente de otra Recopilación)"

#: NOT FOUND IN SOURCE
msgid "(pending other tickets)"
msgstr "(pendiente de otros casos)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(requerido)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(confianza: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(sin título)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(¡no confiable!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id es un argumento desaprobado (deprecated) y no se puede utilizar con --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "el argumento de --transaction sólo puede ser 'first', 'last' ó 'all'"

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I own..."
msgstr "Los 25 casos de mayor prioridad que poseo..."

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I requested..."
msgstr "Los 25 casos de mayor prioridad que he solicitado..."

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ticket->Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "<%$Action%> here"
msgstr "<%$Action%> aquí"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Todos los feeds de iCal incluyen un token secreto que le identifica y autoriza. Si la URL uno de sus fees iCal se ve expuesta al mundo exterior, puede conseguir un suevo secreto, rompiendo todos los feeds de iCal existentes debajo.

" #: NOT FOUND IN SOURCE msgid "%1 - %2s" msgstr "%1 - %2s" #: etc/initialdata:215 msgid "A blank template" msgstr "Una plantilla en blanco" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "No se estableció contraseña, así que el usuario no podrá logarse" #: NOT FOUND IN SOURCE msgid "ACE Deleted" msgstr "ACE Borrado" #: NOT FOUND IN SOURCE msgid "ACE Loaded" msgstr "ACE Cargado" #: NOT FOUND IN SOURCE msgid "ACE could not be deleted" msgstr "ACE no se pudo borrar" #: NOT FOUND IN SOURCE msgid "ACE could not be found" msgstr "ACE no se encontró" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE no encontrado" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEs solo pueden ser creadas o borradas." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "Y" #: NOT FOUND IN SOURCE msgid "Aborting to avoid unintended ticket modifications.\\n" msgstr "Abortando para prevenir modificaciones no intencionadas al caso\\n" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Acerca de mí" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Control de acceso" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Acción" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Acción %1 no encontrada" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "No se encuentra la acción '%1'" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Acción realizada." #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Acción realizada.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "La acción es un argumento obligatorio" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Acción preparada..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Acciones" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "Tickets Activos" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Añadir" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "Añadir %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Añadir AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Añadir Marcador" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Añadir Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Añadir Columnas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Añadir Criterio" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Añadir más archivos" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Añadir solicitante" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Añadir Valor" #: NOT FOUND IN SOURCE msgid "Add a keyword selection to this queue" msgstr "Añadir una seleccion de palabra clave a esta cola" #: NOT FOUND IN SOURCE msgid "Add a new a global scrip" msgstr "Añadir una nueva acción global" #: NOT FOUND IN SOURCE msgid "Add a scrip to this queue" msgstr "Añadir una acción a esta cola" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Añadir una acción que se aplicará a todas las colas" #: NOT FOUND IN SOURCE msgid "Add and Search" msgstr "Añadir y Buscar" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Añadir comentarios o respuestas a los casos seleccionados" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Añadir grupo" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Añadir miembros" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Añadir nuevos observadores" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "Añadir derechos para este %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Agregar estos términos" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Agregar estos términos y Buscar" #: NOT FOUND IN SOURCE msgid "Add these terms to your search" msgstr "Añadir estos términos a tu búsqueda" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Añadir usuario" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Agregar valores" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Añadir, borrar y modificar los valores de campo personalizado para objetos" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "Añadir, modificar y borrar los valores campos modificados para los objetos" #: NOT FOUND IN SOURCE msgid "AddNextState" msgstr "AddNextState" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "Añadido %1 a miembros de %2 para este queue" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Principal ha sido añadido como %1 para esta cola" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Principal ha sido añadido como %1 para este caso" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Dirección" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Dirección 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Dirección 1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Dirección 2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Admin Comment" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Admin Correspondence" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administración de colas" #: NOT FOUND IN SOURCE msgid "Admin users" msgstr "Administración de usuarios" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administración de la configuración global" #: NOT FOUND IN SOURCE msgid "Admin/Groups" msgstr "Administración de Grupos" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "Administración de una cola" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdministrarTodosGruposPersonales (AdminAllPersonalGroups)" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGroup" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: NOT FOUND IN SOURCE msgid "AdminComment" msgstr "AdminComment" #: NOT FOUND IN SOURCE msgid "AdminCorrespondence" msgstr "AdminCorrespondence" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminCustomField" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: NOT FOUND IN SOURCE msgid "AdminCustomFields" msgstr "AdminCustomFields" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGroup" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGroupMembership" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminOwnPersonalGroups" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminQueue" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "Tema Admin" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminUsers" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Cc Administrativa" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Contraseña administrativa" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avanzado" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "Búsqueda avanzada" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Búsqueda avanzada" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "Edad" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Agregador" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Todas las Aprobaciones Superadas" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Todos los articulos en esta clase deberian estar listados en un dropdown (menu hacia abajo) del la pagian de respuesta al ticket" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "Todas las clases" #: NOT FOUND IN SOURCE msgid "All Custom Fields" msgstr "Todos los Campos Personalizados" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "todos los dashboards" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Todas las colas" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "Todos los tickets" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Todos los feeds de iCal incluyen un token secreto que le identifica y autoriza. Si la URL uno de sus fees iCal se ve expuesta al mundo exterior, puede conseguir un suevo secreto, rompiendo todos los feeds de iCal existentes debajo." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Todas las colas coincidentes con el critero de busqueda" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Todos los tickets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Todos los tópicos" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "Permitir la creación de búsquedas guardadas" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "Permitir carga de búsquedas guardadas" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Ya encriptado" #: NOT FOUND IN SOURCE msgid "Always sends a message to the requestors independent of message sender" msgstr "Siempre envía un mensaje a los solicitantes independientemente del remitente del mensaje" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Y/O" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Cualquier campo" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Aplicado" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Aplica a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Aplica a todos los objetos" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplicar" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Aplicar globalmente" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Aplicar cambios" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Aprobación" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Aprobación #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Aprobación #%1: No se han guardado las notas debido a un error del sistema" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Aprobación #%1: Notas guardadas" #: NOT FOUND IN SOURCE msgid "Approval Details" msgstr "Detalles de la aprobación" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Aprobación superada" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Aprobación lista para el propietario" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Aprobación rechazada" #: NOT FOUND IN SOURCE msgid "Approval diagram" msgstr "Diagrama de la aprobación" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Aprobar" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Notas del aprobador: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Abr" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Abr." #: NOT FOUND IN SOURCE msgid "April" msgstr "Abril" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "¿Está seguro de querer eliminar este artículo?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "Artículo #%1 eliminado" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "Artículo #%1: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "Artículo %1" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "Artículo %1 creado" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administracion de Articulos" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "Artículo eliminado" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artículo no encontrado" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "Artículos" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "Artículos en %1" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "Artículos que coinciden con %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artículos sin tópicos" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Asc" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Ascendente" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Asignar y borrar campos personalizados" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "AsignarCamposPersonalizados" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Adjunto" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Adjuntar archivo" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Archivo adjunto" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Adjunto" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Archivo adjunto '%1' no pudo ser cargado" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Archivo adjunto creado" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Nombre del archivo adjunto" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Archivos adjuntos" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "La encriptación de adjuntos está deshablitada" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Atributo borrado" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Ago." #: NOT FOUND IN SOURCE msgid "August" msgstr "Agosto" #: NOT FOUND IN SOURCE msgid "AuthSystem" msgstr "Sistema de autenticación" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Respuesta automática" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Respueste automática a los solicitantes" #: NOT FOUND IN SOURCE msgid "AutoreplyToRequestors" msgstr "AutoreplyToRequestors" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Disponible" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "BCC" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Atrás" #: NOT FOUND IN SOURCE msgid "Bad PGP Signature: %1\\n" msgstr "Firma PGP incorrecta: %1\\n" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "Identificador de archivo adjunto erróneo. No se puede encontrar el archivo '%1'\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "Datos incorrectos en %1" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Privacidad errónea para atributo %1" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "Número de transacción incorrecta para el archivo adjunto. %1 debe ser %2\\n" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Básicos" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Bcc" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Asegúrese de salvar sus cambios" #: NOT FOUND IN SOURCE msgid "Begin Approval" msgstr "Begin Approval" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC corporate logo" #: etc/initialdata:214 msgid "Blank" msgstr "Vacio" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Cuerpo" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Negrita" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Marcador" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "URL para guardar esta búsqueda en sus marcadores" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Casos Marcados (Bookmarked)" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Encabezados breves" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Actualización en bloque" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Actualización de varios tickets en bloque" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Comprar soporte" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Por defecto, RT usará la zona horaria de sus sistema. Esto le permite establecer un valor por defecto al modo en que se muestran las fechas y horas en RT. Sus usuarios pueden elegir una zona horaria diferente en sus preferencias." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CCGroup" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "No puede cargar la busqueda salvada \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "No se pueden modificar los usuarios del sistema" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Puede este principal ver esta cola" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "No puede agregar un valor de campo personalizado sin nombre" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "No se puede encontrar una clase de recopilación para '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "No se puede encontrar una búsqueda guardada para trabajar" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "No se puede relacionar un caso consigo mismo" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "No se puede fusionar dentro de un caso ya fusionado. Nunca deberia recibir este error" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "No se puede salvar %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "No se puede grabar esta búsqueda" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "No se puede especificar origen y destino al mismo tiempo" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "No es posible crear casos en una cola deshabilitada" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "No se puede crear el usuario: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Las categorías se basan en" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoría" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Categoría con valor eliminado" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccs" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Cambiar" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Cambiar el caso de aprobación a estado abierto" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Cambiar contraseña" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "Gráfico" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "Propiedades de gráfico" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Seleccionar Todo" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Verifique la conectividad de la base de datos" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verificar las credenciales de la Base de Datos" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Seleccione la casilla para borrar" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Seleccione la caja para quitar el permiso" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Verifique las credenciales de la base de datos" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Hijo" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Elija motor de base de datos" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Elija un motor de base de datos" #: NOT FOUND IN SOURCE msgid "Choose a date" msgstr "Elije una fecha" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Ciudad" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "Clase" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nombre de la clase" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "Clases" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Limpiar" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Borrar Todo" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Haga click en \"Finalizar instalación\" debajo para terminar este asistente" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Haga click en \"Inicializar base de datos\" para crear la base de datos de RT e insertar los metadatos originales. Esto podría tardar unos momentos" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Cerrar ventana" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Cerrado" #: NOT FOUND IN SOURCE msgid "Closed requests" msgstr "Solicitudes cerradas" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Casos cerrados" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Seleccione o ingrese múltiples valores" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Combobox: Seleccione o ingrese un valor" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Combobox: Seleccione o ingrese hasta %1 valores" #: NOT FOUND IN SOURCE msgid "Command not understood!\\n" msgstr "No se entendió el comando!\\n" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Comentario" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Dirección de comentario" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Dirección de comentario" #: NOT FOUND IN SOURCE msgid "Comment not recorded" msgstr "Comentario no grabado" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Comentar sobre los casos" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "CommentOnTicket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comentarios" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Comentarios (no se envían a los solicitantes)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Comentarios (no se envían a los solicitantes)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "Comentarios acerca de %1" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Comentarios acerca de este usuario" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Comentarios añadidos" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Acción realizada" #: NOT FOUND IN SOURCE msgid "Compile Restrictions" msgstr "Compilar restricciones" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Condición" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Condición '%1' no encontrada" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Condición es un argumento obligatorio" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "La condición coincide..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Condición no encontrada" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Condición, Acción y Plantilla" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "El archivo de configuración %1 está bloqueado" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Configuración" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Confirmar" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Conexión exitosa" #: NOT FOUND IN SOURCE msgid "ContactInfoSystem" msgstr "Información de contacto" #: NOT FOUND IN SOURCE msgid "Contacted date '%1' could not be parsed" msgstr "Fecha de contacto '%1' no pudo ser leida" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Contenido" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipo de contenido" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "ContentType" #: NOT FOUND IN SOURCE msgid "Coould not create group" msgstr "No se pudo crear grupo" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "Copiar" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Dirección de correspondencia" #: etc/initialdata:283 msgid "Correspondence" msgstr "Correspondencia" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "Dirección de corresponencia" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Correspondencia agregada" #: NOT FOUND IN SOURCE msgid "Correspondence not recorded" msgstr "Correspondencia no guardada" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "No se pudo añadir un nuevo valor de campo personalizable para el caso. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. %1 " msgstr "No se pudo añadir un nuevo valor de campo personalizable para el caso. %1 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "No se pudo añadir nuevo valor de campo personalizado. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "No se pudo añadir nuevo valor de campo personalizado. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "No fue posible agregar el valor del campo personalizado: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "No se pudo cambiar el propietario. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "No fue posible cambiar el propietario: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "No se puede crear un CampoPersonalizado" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "No se pudo crear CampoPersonalizado: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "No se pudo crear el grupo" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "No se pudo crear la plantilla: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "No fue posible crear un pedido en la cola deshabilitada \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "No se pudo crear el caso. Cola no seleccionada" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "No se pudo crear el usuario" #: NOT FOUND IN SOURCE msgid "Could not create watcher for requestor" msgstr "No se pudo crear un observador para el solicitante" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not find a ticket with id %1" msgstr "No se pudo encontrar un caso con identificador %1" #: NOT FOUND IN SOURCE msgid "Could not find group %1." msgstr "No se pudo encontrar el grupo %1." #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "No se pudo encontrar o crear el usuario" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "No se pudo encontrar ese principal" #: NOT FOUND IN SOURCE msgid "Could not find user %1." msgstr "No se pudo encontrar el usuario %1." #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "No fue posible cargar el atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "No se pudo cargar CustomField %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "No se puede cargar el grupo" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "No se pudo cargar objeto para %1" #: NOT FOUND IN SOURCE msgid "Could not load search attribute" msgstr "No se pudo cargar atributo de búsqueda" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "No se pudo hacer ese principal un %1 para esta cola" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "No se pudo hacer ese principal un %1 para este caso" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "No se pudo quitar ese principal como un %1 para esta cola" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "No se pudo quitar ese principal como un %1 para este caso" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "No se pudo establecer la información del usuario" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "No fue posible agregar adjunto" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "No se pudo agregar el miembro al grupo" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "No se pudo aplicar el campo personalizado a un objeto que ya es global" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "No se pudo crear la transacción: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "No se pudo crear el registro" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "No fue posible borrar el cuadro de mandos %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't figure out what to do from gpg's reply\\n" msgstr "No se pudo averiguar que hacer a partir de la firma gpg de la respuesta" #: NOT FOUND IN SOURCE msgid "Couldn't find group\\n" msgstr "No se pudo encontrar el grupo\\n" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "No se pudo encontrar la fila" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "No se pudo encontrar una traducción adecuada, omitiendolo" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "No pudo enconcontrar ese principal" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "No se pudo encontrar ese valor" #: NOT FOUND IN SOURCE msgid "Couldn't find that watcher" msgstr "No se pudo encontrar ese observador" #: NOT FOUND IN SOURCE msgid "Couldn't find user\\n" msgstr "No se pudo encontrar el usuario\\n" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "No se pudo cargar %1 desde la base de datos de usuarios.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "No se pudo cargar Class %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "No fue posible cargar el campo personalizado #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "No se pudo cargar el CustomField #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "No se pudo cargar CustomField %1" #: NOT FOUND IN SOURCE msgid "Couldn't load KeywordSelects." msgstr "No se pudo cargar KeywordSelects" #: NOT FOUND IN SOURCE msgid "Couldn't load RT config file '%1' %2" msgstr "No se pudo cargar el archivo de configuración de RT '%1' %2" #: NOT FOUND IN SOURCE msgid "Couldn't load Scrips." msgstr "No se pudieron cargar las acciones." #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "No fue posible cargar la copia del pedido #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "No fue posible cargar el cuadro de mandos %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "No fue posible cargar el cuadro de mandos %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "No fue posible cargar el grupo #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "No se pudo cargar el grupo %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "No se pudo cargar el enlace" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "No se pudo cargar objeto %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "No se pudo cargar o crear al usuario: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "No se pudo cargar la cola" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "No fue posible cargar la cola #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "No se pudo cargar la cola %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "No fue posible cargar la cola '%1'" #: NOT FOUND IN SOURCE msgid "Couldn't load scrip" msgstr "No se pudo cargar la acción" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "No fue posible cargar la acción #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load template" msgstr "No se pudo cargar la plantilla" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "No fue posible cargar la plantilla #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "No se pudo cargar ese usuario (%1)" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "No se pudo cargar el caso '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "No fue posible cargar la transacción #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "No se pudo cargar al usuario" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "No fue posible cargar al usuario #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "No se pudo cargar al usuario #%1 ni al usuario '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "No se pudo cargar al usuario '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "No se pudo desglosar la dirección desde la cadena de texto '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "No fue posible reemplazar el contenido con la información desencriptada: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "No fue posible reemplazar el contenido con la información encriptada: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "No se pudo resolver base '%1' en una URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "No se pudo resolver base '%1' en una URI" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "No se pudo resolver el destino '%1' en una URI" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "No se pudo enviar el correo electrónico" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "No se pudo establecer %1 observador: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "No se pudo establecer clave privada" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "No se pudo desconfigurar la clave privada" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "País" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Crear" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Crear Casos" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "Crear una clase" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Crear CampoPersonalizado" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Crear un campo personalizado para la cola %1" #: NOT FOUND IN SOURCE msgid "Create a CustomField that applies to all queues" msgstr "Crear un campo personalizable que se aplique a todas las colas" #: NOT FOUND IN SOURCE msgid "Create a new Custom Field" msgstr "Crear un nuevo campo personalizable" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "Crear un artículo nuevo" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Crear un artículo nuevo en" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Crear un nuevo cuadro de mandos" #: NOT FOUND IN SOURCE msgid "Create a new global scrip" msgstr "Crear un nueva acción global" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Crear un nuevo grupo" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Crear un nuevo grupo personal" #: NOT FOUND IN SOURCE msgid "Create a new queue" msgstr "Crear una nueva cola" #: NOT FOUND IN SOURCE msgid "Create a new scrip" msgstr "Crear una nueva acción" #: NOT FOUND IN SOURCE msgid "Create a new template" msgstr "Crear una nueva plantilla" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Crear un nuevo caso" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Crear un nuevo usuario" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Crear una cola" #: NOT FOUND IN SOURCE msgid "Create a queue called" msgstr "Crear una cola llamada" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "Crear una solicitud" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Crear una acción para la cola %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Crear una plantilla" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Crear un caso" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Crear un artículo" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Crear cuadros de mandos para este grupo" #: NOT FOUND IN SOURCE msgid "Create failed: %1 / %2 / %3 " msgstr "Creación fallida: %1 / %2 / %3 " #: NOT FOUND IN SOURCE msgid "Create failed: %1/%2/%3" msgstr "Creación fallida: %1 / %2 / %3" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Crear nuevos casos basados en la plantilla de esta acción" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Crear cuadros de mandos personales" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Crear cuadros de mandos del sistema" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Crear caso" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Crear casos en esta cola" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Crear casos fuera de línea" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Crear, borrar y modificar campos personalizados" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Crear, borrar y modificar colas" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Crear, borrar y modificar los miembros de cualquier grupo personal de usuario" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Crear, borrar y modificar los miembros de los grupos personales" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Crear, borrar y modificar usuarios" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "CrearCuadroDeMandos" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "CrearCuadroDeMandosGrupo" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "CrearCuadroDeMandosPersonal" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "CrearBusquedaSalvada" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "CrearCaso" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Creado" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Creado por" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "CampoPersonalizado %1 creado" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Creado por" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Creados en rango de fechas" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created template %1" msgstr "Plantilla %1 creada" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Pedidos creados en el período, agrupados por estado" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CreadoPor" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CreadoRelativo" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Creador" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Criptografía" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Enlaces Actuales" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Acciones actuales" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "Búsqueda actual" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Miembros actuales" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Permisos actuales" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Búsqueda actual" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "Criterio de búsqueda actual" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Observadores actuales" #: NOT FOUND IN SOURCE msgid "Custom Field #%1" msgstr "Campo personalizable #%1" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Campos Personalizados" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Campos Personalizados para %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Código de limpieza de acción personalizada" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Código de preparación de acción personalizada" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Condición personalizada" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "El campo personalizado #%1 no se aplica a este objeto" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Campo personalizado %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "El campo personalizado %1 no se aplica a este objeto" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Campo personalizado %1 tiene un valor." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Campo personalizado %1 no tiene un valor." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Campo personalizado %1 no encontrado" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Campo personalizado '%1'" #: NOT FOUND IN SOURCE msgid "Custom field deleted" msgstr "Campo personalizable borrado" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Campos personalizados ya se aplicaron al objeto" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Campo personalizado no encontrado" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "El valor del campo personalizado %1 no pudo ser encontrado para el campo personalizado %2" #: NOT FOUND IN SOURCE msgid "Custom field value changed from %1 to %2" msgstr "Valor del campo cambiado de %1 a %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "El valor del campo personalizado no pudo ser borrado" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "El valor del campo personalizado no pudo se encontrado" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Valor del campo personalizado borrado" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPersonalizado" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "ValorCampoPersonalizado" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Personalizar" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personalizar Básico" #: NOT FOUND IN SOURCE msgid "Customize Database Details" msgstr "Personalizar detalles de la base de datos" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personalizar dirección de correo electrónico" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Configurar correo electrónico" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Contraseña del administrador de la base de datos" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Nombre del usuario para el Administrador de la Base de Datos" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Resumen diario" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Cuadro de mandos" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "No fue posible crear Cuadro de Mandos: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "No fue posible actualizar Cuadro de Mandos: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Cuadro de Mandos actualizado" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Cuadros de Mandos" #: NOT FOUND IN SOURCE msgid "Data error" msgstr "Error de datos" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Host de la base de datos" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nombre de base de datos" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Contraseña de la base de datos para RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Puerto de la base de datos" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo de base de datos" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Usuario de la base de datos para RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Formato de fecha" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "DateTime no soporta format_cldr, debe actualizar la versión para usar esta característica" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Falta el módulo de fecha y hora" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "DateTime::Locale no soporta date_format_full, debe actualizar para usar esta caracteristica" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Falta el módulo DateTime::Locale" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Fechas" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dic" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Dic." #: NOT FOUND IN SOURCE msgid "December" msgstr "Diciembre" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Desencriptar" #: NOT FOUND IN SOURCE msgid "Default Autoresponse Template" msgstr "Plantilla de autorespuesta predeterminada" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Plantilla de respuesta automática predeterminada" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Cola predeterminada" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Solicitante predeterminado" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Plantilla de comentario de admin predeterminada" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Plantilla de correspondencia de admin predeterminada" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Plantilla de correspondencia predeterminada" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Cola predeterminada" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Plantilla de trasacciones predeterminada" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Predeterminado: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Por omisión: %1/%2 ha cambiado de %3 a %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "FormatoPredefinido" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delegar permisos" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delegar permisos especificos que le han sido concedidos" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegarPermisos" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegar" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Borrar" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Borrar Plantilla" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Borrar cuadros de mando de este grupo" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Borrado fallido: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Borrar cuadros de mandos personales" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Borrar acciones seleccionadas" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Borrar cuadros de mando del sistema" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Borrar casos" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Borrar valores" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "BorrarCuadroDeMando" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "BorrarCuadroDeMandoDelGrupo" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "BorrarCuadroDeMandoPersonal" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "BorrarCaso" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Eliminado %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Cuadro de mando %1 fue borrado" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Consultas borradas" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Búsqueda salvada, eliminada" #: NOT FOUND IN SOURCE msgid "Deleted search" msgstr "Búsqueda borrada" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "Al borrar este objeto, se puede romper la integridad referencial" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Al borrar este objeto, se romperá la integridad referencial" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Al borrar este objeto, se violará la integridad referencial" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity." msgstr "Al borrar este objeto, se violará la integridad referencial." #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity. That's bad." msgstr "Al borrar este objeto, se violará la integridad referencial. Eso es malo." #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Denegar" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Dependen de este caso" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "DependeDePor" #: NOT FOUND IN SOURCE msgid "Dependencies: \\n" msgstr "Dependencias: \\n" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Dependencia para %1 añadida" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Dependencia para %1 borrada" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Dependencia en %1 añadida" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Dependencia en %1 borrada" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "DependienteDe" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Depende de" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "DependeDe" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Desc" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Descendente" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Describa el problema debajo" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descripción" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Detalles" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Dirección" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Deshabilitado" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Despliegue" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Mostrar Lista de Control de Acceso" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Mostrar Columnas" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Mostrar plantillas de acciones para esta cola" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Mostrar acciones para esta cola" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Modo de despliegue" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Mostrar búsquedas guardadas para este grupo" #: NOT FOUND IN SOURCE msgid "Display ticket #%1" msgstr "Despliega caso #%1" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuído bajo la versión 2 de GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Hacer cualquier cosa y todo" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Nombre de dominio" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "No incluya http://, sólo algo como 'localhost' o 'rt.ejemplo.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "No actualizar la pagina principal." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "No actualizar los resultados de la busqueda." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "No recargar esta página" #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "No mostrar los resultados de la búsqueda" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "No confiar nunca en esta llave" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Descargar" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Descargar como fichero delimitado por tabuladores" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Descargar archivo de volcado (dump)" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Esperado" #: NOT FOUND IN SOURCE msgid "Due date '%1' could not be parsed" msgstr "La fecha esperada '%1' no pudo ser leída" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "DueRelative" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ERROR: %1" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "ERROR: No se pudo cargar el caso '%1': %2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Actualice de un modo simple sus casos abiertos" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Editar" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Editar campos personalizados" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Editar campos personalizados para %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Editar Campos Personalizados para todos los grupos" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Editar campos personalizados para todas las colas" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Editar Campos Personalizados para todos los usuarios" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Editar Campos Personalizados para casos en todas las colas" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Editar enlaces" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Editar Consulta" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Editar Búsqueda" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Editar plantillas para la cola %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit keywords" msgstr "Editar palabras clave" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Editar búsquedas guardadas para este grupo" #: NOT FOUND IN SOURCE msgid "Edit scrips" msgstr "Editar acciones" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Editar plantillas del sistema" #: NOT FOUND IN SOURCE msgid "Edit templates for %1" msgstr "Editar plantillas para %1" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "EditarBusquedasGuardadas" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Texto editable" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Editando configuración para la cola %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "Editando configuración para el usuario %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Editando campo personalizado %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Editando los miembros del grupo %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Editando los miembros para el grupo personal %1" #: NOT FOUND IN SOURCE msgid "Editing template %1" msgstr "Editando plantilla %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "IdEfectivo" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "La base o el destinatario deben ser especificados" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Usted no tiene los permisos necesarios para ver la búqueda guardada %1 o el identificador es incorrecto" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Correo" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "Dirección de correo electrónico" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "Configuración de correo electrónico" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Resumen por e-mail" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "La dirección de correo ya está en uso" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Envío por e-mail" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Plantilla para notificaciones periódicas por e-mail" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "CorreoElectrónico" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "Codificación para el correo" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Habilitado" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Habilitado (Desmarcar esta caja deshabilita este campo personalizado)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Habilitado (Desmarcar esta caja deshabilita este grupo)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Habilitado (Desmarcar esta caja, deshabilita esta cola)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: NOT FOUND IN SOURCE msgid "Enabled Custom Fields" msgstr "Campos Personalizables Habilitados" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Colas habilitadas" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Colas habilitadas que coincidan con los criterios de búsqueda" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Estado %1 habilitado" #: NOT FOUND IN SOURCE msgid "Enabled status: %1" msgstr "Estado habilitado: %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Codificar" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Codificar por defecto" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Codificar/Decodificar" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Codificar/Descodificar transacción #%1 del caso #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Codificación deshabilitada" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Codificación habilitada" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Introducir multiples valores" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Introduzca los valores múltiples con autocompletado" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Introduzca objetos o URIs a los que enlazar los objetos. Separe las entradas múltiples mediante espacios." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Introducir un valor" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Introduzca un valor con autocompletado" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Introduzca colas o URIs a los que enlazar las colas. Separe las entradas múltiples mediante espacios." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Ingrese los números de caso o las URI que enlazan a casos. Separe multiples entradas con espacios" #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Introduzca hasta %1 valores" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Introduzca un máximo de %1 valores con autocompletado" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Error" #: NOT FOUND IN SOURCE msgid "Error adding watcher" msgstr "Error añadiendo observador" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Error en los parámetros para Cola->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DelWatcher" msgstr "Error en los parámetros para Queue->DelWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Error en los parámetros para Cola->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Error en los parámetros para Ticket->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Ticket->DelWatcher" msgstr "Error en los parámetros para Queue->DelWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Error en los parámetros para Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Error en propietario de RT: clave pública" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Error: cuadro de mando extraviado" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Error: datos GNUPG erróneos" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Error: no hay clave privada" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Error: clave pública" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Escalar casos" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Estimado" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Todos" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Examinar casos creados en una cola entre dos fechas" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Examinar casos resueltos en una cola entre dos fechas" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Examinar casos resueltos en una cola, agrupados por propietario" #: bin/rt-crontool:356 msgid "Example:" msgstr "Ejemplo:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Expirar" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "EstadoExtendido" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Autenticación externa habilitada" #: NOT FOUND IN SOURCE msgid "ExternalAuthId" msgstr "ExternalAuthId" #: NOT FOUND IN SOURCE msgid "ExternalContactInfoId" msgstr "ExternalContactInfoId" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Información extra" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Extraer Etiqueta del Asunto" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extraer etiquetas del asunto de una transacción y añadirlas al asunto del caso." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Falló al conectar a la base de datos: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Falló la creación del atributo %1" #: NOT FOUND IN SOURCE msgid "Failed to create search attribute" msgstr "Fallado en crear atributo de búsqueda" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Problema para encontrar el pseudogrupo de usuarios 'Privilegiados'" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Problema para encontrar el pseudogrupo de usuarios 'No Privilegiados'" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Falló al cargar %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Fallo al cargar %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Error al cargar el modulo %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Error al cargar objeto para %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "No pudo cargar la plantilla" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "No se pudo analizar la plantilla" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "feb" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Feb." #: NOT FOUND IN SOURCE msgid "February" msgstr "Febrero" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Origen del valor del campo:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "NombreDeArchivo" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nombre de fichero" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Argumentos de relleno" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Rellenar cajas con color usando" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Rellenar en multiples areas de texto" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Rellenar en multiples areas wikitext" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Rellenar en un area de texto" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Rellenar en un area wikitext" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Completar este campo con una URL" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Rellenar en hasta %1 areas de texto" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Rellenar en hasta %1 areas wikitext" #: NOT FOUND IN SOURCE msgid "Fin" msgstr "Fin" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Prioridad Final" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "FinalPriority" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Encontrar todos los usuarios cuyo" #: NOT FOUND IN SOURCE msgid "Find group whose" msgstr "Encontrar grupo que" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Encontrar grupos cuyo" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "Encontrar casos nuevos/abiertos" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Encontrar usuarios que" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Encontrar casos" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminar" #: NOT FOUND IN SOURCE msgid "Finish Approval" msgstr "Aprobación final" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Primero" #: NOT FOUND IN SOURCE msgid "First page" msgstr "Primera página" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forzar cambio" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formato" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Reenviar" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Reenviar mensaje" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Reenviar mensaje y retornar" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Reenviar Caso" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Reenviar mensaje" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Reenviar mensaje(s) a tercera(s) persona(s)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Reenviar caso #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Reenviar transacción #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "ReenviarMensaje" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Mostrando %quant(%1,caso)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Objeto encontrado" #: NOT FOUND IN SOURCE msgid "FreeformContactInfo" msgstr "FreeformContactInfo" #: NOT FOUND IN SOURCE msgid "FreeformMultiple" msgstr "FreeformMultiple" #: NOT FOUND IN SOURCE msgid "FreeformSingle" msgstr "FreeformSingle" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frecuencia" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Vie" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Vie." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Viernes" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Encabezados completos" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "General" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Crear plantilla desde fichero" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Cómo empezar" #: NOT FOUND IN SOURCE msgid "Getting the current user from a pgp sig\\n" msgstr "Obteniendo el usuario de la firma pgp" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Dado a %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Global" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Campos Personalizados Globales" #: NOT FOUND IN SOURCE msgid "Global Keyword Selections" msgstr "Selección de palabras clave globales" #: NOT FOUND IN SOURCE msgid "Global Scrips" msgstr "Acciones Globales" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuración de Campos Personalizados Globales" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Portlet global %1 salvado." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Plantilla global: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG error. Contacte al administrador" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Integración GnuPG está deshabilitada" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "Asuntos GnuPG" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "Clave(s) privada(s) GnuPG para %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "Clave(s) privada(s) GnuPG para %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Ir" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "¡Ir!" #: NOT FOUND IN SOURCE msgid "Good pgp sig from %1\\n" msgstr "Firma pgp correcta de %1\\n" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "Ir a página" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ir al caso" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propiedades de gráfico" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Diagramas de gráficos no están disponibles." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Grupo" #: NOT FOUND IN SOURCE msgid "Group %1 %2: %3" msgstr "Grupo %1 %2: %3" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Permisos del Grupo" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "El grupo ya tiene un miembro: %1" #: NOT FOUND IN SOURCE msgid "Group could not be created." msgstr "El grupo no se pudo crear" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "El grupo no se pudo crear: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Grupo creado" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Grupo deshabilitado" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Grupo habilitado" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "El grupo no tiene este miembro" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Grupo no encontrado" #: NOT FOUND IN SOURCE msgid "Group not found.\\n" msgstr "Grupo no entontrado\\n" #: NOT FOUND IN SOURCE msgid "Group not specified.\\n" msgstr "Grupo no especificado\\n" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Permisos del grupo" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupos" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Los grupos no pueden ser miembros de sus propios miembros" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupos coincidentes con el criterio de búsqueda" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Grupos de los que el usuario es miembro (cuadro de verificación para eliminar)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Grupos de los que el usuario no es miembro (casilla de verificación para añadir)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Grupos a los que este usuario pertenece" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "TieneMiembros" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Encabezado de un caso reenviado" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Encabezado de un mensaje reenviado" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "¡Hola!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hola, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ayúdenos a establecer algunos valores por defecto útiles para RT" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historial" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Historico del grupo %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Historico de la cola %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Historico del usuario %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Inicio" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Intervalo de refresco de la página de inicio" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Tel Casa" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Inicio" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Hora" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Horas" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Tengo %quant(%1,concrete mixer)." #: NOT FOUND IN SOURCE msgid "I have [quant,_1,concrete mixer]." msgstr "Tengo [quant,_1,concrete mixer]." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "Estoy perdido" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identidad" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Si una aprobación es rechazada, rechazar la original y borrar las aprobaciones pendientes" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Si no se especifica ningún Solicitante, crear casos con este solicitante." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Si no se especifica ninguna cola, crear casos en esta cola." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Si esta herramienta estaba setgid, un usuario hostil local podría usar esta herramienta para conseguir acceso administrativo a RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Si usted ya tiene un servidor de IM de trabajo y base de datos, deberían aprovechar esta oportunidad para asegurarse de que su servidor de base de datos se está ejecutando y que el servidor de IM puede conectarse a él. Una vez que hayas hecho esto, detener e iniciar el servidor de IM. " #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Si usted ya tiene un servidor de IM de trabajo y base de datos, deberían aprovechar esta oportunidad para asegurarse de que su servidor de base de datos se está ejecutando y que el servidor de IM puede conectarse a él. Una vez que hayas hecho esto, detener e iniciar el servidor de IM. " #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Si ha cambiado el puerto en el que se ejecuta RT, tendrá que reiniciar el servidor en poder acceder a él" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Si ha actualizado algo más arriba, no olvide" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Si su base de datos preferida no está listada en el desplegable de abajo, significa que RT no pudo encontrar un driver de base de datos para ella, instalado localmente. Podría remediar esto utilizando %1 para descargar e instalar DBD::MySQL, DBD::Oracle ó DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Valor ilegal para %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Campo inmutable" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Incluir campos personalizados deshabilitados en el listado." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Incluir grupos deshabilitados en el listado." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Incluir colas deshabilitadas en el listado" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Incluir usuarios deshabilitados en la búsqueda" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Incluir página" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "Consulta Incompleta" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "Consulta incompleta" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Mensajes individuales" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informar al propietario RT que el(los) usuario(s) tiene(n) problemas con las claves públicas" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informar al usuario de que el cuadro de mandos al que había suscrito está desaparecido" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informar al usuario de que un mensaje que ha enviado contiene datos no válidos GnuPG" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informar al usuario de que tiene problemas con la clave pública y no podrá recibir contenido cifrado" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Informar al usuario de que su contraseña ha sido reinicializada" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informar al usuario de que hemos recibido un correo electrónico codificado y no tenemos las claves privadas para descifrar los" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Prioridad inicial" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "PrioridadInicial" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initializar la Base de Datos" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Error de entrada" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Entrada debe coincidir con %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Instalar RT" #: NOT FOUND IN SOURCE msgid "Interest noted" msgstr "Interest noted" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Error interno" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Error interno: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Invalido %1: '%2' no parece una dirección de e-mail" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Inválido %1: se espera un número" #: NOT FOUND IN SOURCE msgid "Invalid %1: that doesn't look like an email address" msgstr "Inválido %1: no parece una dirección de e-mail" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Tipo de grupo no válido" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Derechos inválidos" #: NOT FOUND IN SOURCE msgid "Invalid Type" msgstr "Tipo inválido" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Datos no válidos" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Objeto no válido" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Propietario del objeto no válido." #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "Propietario inválido. Estableciéndolo a 'nobody'." #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Patron inválido: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Cola no válida" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Permiso no válido" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Permiso no válido. No se pudo hacer canónico el permiso '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Sintaxis no válida para la dirección de correo electrónico" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Valor inválido para %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Valor no válido para el campo personalizado" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Valor inválido para el estado" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "No está encriptado" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Es increiblemente importante que los usuarios sin privilegios no puedan ejecutar esta herramienta" #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Es recomendable crear un usuario unix sin privilegios que pertenezca al grupo correcto y que tenga aceso a ejecutar esta herramienta" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Tiene varios parámetros:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Cursiva" #: NOT FOUND IN SOURCE msgid "Items pending my approval" msgstr "Items pendientes de mi aprobación" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Ene" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Ene." #: NOT FOUND IN SOURCE msgid "January" msgstr "Enero" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Unirse o abandonar este grupo" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jul" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Jul." #: NOT FOUND IN SOURCE msgid "July" msgstr "Julio" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Todo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jun" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Jun." #: NOT FOUND IN SOURCE msgid "June" msgstr "Junio" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Mantenga 'localhost' si no está seguro. Deja en blanco para conectar a nivel local sobre un socket" #: NOT FOUND IN SOURCE msgid "Keyword" msgstr "Palabras clave" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "Leng" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Idioma" #: NOT FOUND IN SOURCE msgid "Language." msgstr "Idioma" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Último" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Último contacto" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Último contactado" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "Se le notifico por ultima vez" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Actualizado por ultima vez" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Última Actualización Por" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Última actualización por" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "LastUpdated" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "LastUpdatedBy" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "LastUpdateRelative" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Dejar en blanco para enviar a su dirección actual de correo (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Dejar vacío para usar el valor por defecto para su base de datos" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "No rellene esto si quiere utilizar el usuario dba por defecto de su tipo de base de datos" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Queda" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Leyendas" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Longitud en caracteres; uso '0 'para mostrar todos los mensajes en línea, independientemente de la longitud de" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Permitir a este usuario acceder a RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Dar a este usuario permisos adicionales" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "¡Vámonos!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: NOT FOUND IN SOURCE msgid "Limiting owner to %1 %2" msgstr "Limitando propietario a %1 %2" #: NOT FOUND IN SOURCE msgid "Limiting queue to %1 %2" msgstr "Limitando cola a %1 %2" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Enlace" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "El vínculo ya existe" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "El vínculo no pudo ser creado" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Vínculo creado (%2)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Vínculo borrado (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Vínculo no encontrado" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Vincular caso #%1" #: NOT FOUND IN SOURCE msgid "Link ticket %1" msgstr "Enlazar caso %1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Vincular valores a" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Enlazado" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "LinkedFrom" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "LinkedTo" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Enlace. Permiso denegado" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Enlaces" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Cargar" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Cargar búsqueda guardada:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "LoadSavedSearch" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Cargado %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Se cargó la búsqueda original salvada \"%1\"" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Modulos perl cargados" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Se cargó la búsqueda salvada \"%1\"" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "Búsqueda cargada %1" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Local" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LocalizedDateTime" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Dirección" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written.\\n RT can't run." msgstr "El directorio del log %1 no pudo ser encontrado o no se pudo escribir en él.\\n RT no puede ejecutarse." #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Autenticado como %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Desconectado" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Entrar" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "TextoAltLogo" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Salir" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "No coinciden los tipos de búsqueda" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Correo electrónico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Tipo principal de vínculos" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Hacer propietario a" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Establecer estatus" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Establecer fecha de plazo" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Establecer fecha de resolución" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Establecer fecha de inicio" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Establecer fecha de inicio" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Establecer fecha de último cambio" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Establecer prioridad" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Establecer cola" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Establecer título" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Hacer este grupo visible al usuario" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gestionar campos personalizados y valores de campos personalizados" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administrar grupos y miembros" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Administrar propiedades y configuración que se aplique a todas las colas" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administrar colas y propiedades especificas" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Gestionar gráficos guardados" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administrar usuarios y contraseñas" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mar" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Mar." #: NOT FOUND IN SOURCE msgid "March" msgstr "Marzo" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Marcados todos los mensajes como se ha visto" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Orden de búsqueda de template de Mason" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "ValoresMax" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Longitud máxima del mensaje en línea" #: lib/RT/Date.pm:95 msgid "May" msgstr "May" #: NOT FOUND IN SOURCE msgid "May." msgstr "May." #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Miembro" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Miembro %1 añadido" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Miembro %1 borrado" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Miembro añadido: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Miembro borrado" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Miembro no borrado" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Miembro de" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "MiembroDe" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Miembros" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Pertenencia a %1 añadida" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Pertenencia a %1 borrada" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Pertenencias" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Pertenencias del usuario %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Fusión exitosa" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Fusión fallida. No se pudo establecer el EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Unión fallida. No se pudo establecer el Estado" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Fusionar dentro de" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Unido en %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Mensaje" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "El cuerpo del mensaje no se muestra porque el remitente pidió no incluirlo en línea." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "El cuerpo del mensaje no se muestra porque no es texto plano." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Cuerpo del mensaje no mostrado porque es muy largo o no es texto plano." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "El cuerpo del mensaje no se muestra porque es demasiado grande." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Altura del cuadro de texto" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Ancho del cuadro de texto" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Mensaje no pudo ser grabado" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Mensaje al usuario" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Mensaje grabado" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Mensajes acerca de este caso no serán enviados a..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Longitud mínima de la contraseña" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutos" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: NOT FOUND IN SOURCE msgid "Mismatched parentheses" msgstr "Parentesis no coincidentes" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "¿Falta una clave primaria?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Móvil" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "TelefonoMovil" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Modificar lista de control de acceso" #: NOT FOUND IN SOURCE msgid "Modify Custom Field %1" msgstr "Modificar el campo personalizable %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Modificar Campos Personalizados que aplican a %1 para todo %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Modificar Campos Personalizados que aplican a todo %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all queues" msgstr "Modificar los campos personalizables que se apliquen a todas las colas" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Modificar Permisos de Grupo" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modificar Miembros" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Modificar Permisos" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Modificar plantillas de acciones para esta cola" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Modificar acciones para esta cola" #: NOT FOUND IN SOURCE msgid "Modify System ACLS" msgstr "Modificar ACLs de sistema" #: NOT FOUND IN SOURCE msgid "Modify Template %1" msgstr "Modificar plantilla %1" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Modificar Permisos del Usuario" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Modificar un campo personalizado para la cola %1" #: NOT FOUND IN SOURCE msgid "Modify a CustomField that applies to all queues" msgstr "Modificar un campo personalizable que se aplique a todas las colas" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Modificar una acción para la cola %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Modificar una acción que se aplique a todas las colas" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Modificar objetos asociados para %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Modificar valores de campo personalizado" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Modificar los cuadros de mando para este grupo" #: NOT FOUND IN SOURCE msgid "Modify dates for # %1" msgstr "Modificar fechas para # %1" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Modificar fechas para #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Modificar fechas para caso # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Modificar campos personalizados globales" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Modificar permisos de grupo global" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Modificar permisos de grupo global" #: NOT FOUND IN SOURCE msgid "Modify global rights for groups" msgstr "Modificar privilegios globales para grupos" #: NOT FOUND IN SOURCE msgid "Modify global rights for users" msgstr "Modificar privilegios globales para usuarios" #: NOT FOUND IN SOURCE msgid "Modify global scrips" msgstr "Modificar acciones globales" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Modificar permisos de usuario global" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Modificar permisos de usuario global" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Modificar metadatos del grupo o borrar grupo" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Modificar permisos de grupo para campo personalizado %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Modificar permisos de grupo para %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Modificar permisos de grupo para la cola %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Modificar lista de pertenencias de este grupo" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Modificar la propia cuenta RT" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Modificar personas relacionadas con la cola %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Modificar personas relacionadas con el caso #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Modificar los cuadros de mandos personales" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Modificar acciones para la cola %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Modificar acciones que se aplican a todas las colas" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Modificar los cuadros de mando del sistema" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Modificar plantilla %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modificar plantillas que se aplican a todas las colas" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Modificar el cuadro de mandos %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Modificar la vista por defecto de \"RT de un vistazo\"" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Modificar el grupo %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Modificar las consultas del cuadro de mandos %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Modificar los observadores de la cola" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Modificar la suscripción al cuadro de mandos %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Modificar el usuario %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Modificar el caso # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Modificar el caso #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Modificar casos" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Modificar derechos de usuario para campos personalizados %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Modificar permisos de usuario para el grupo %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Modificar permisos de usuario para la cola %1" #: NOT FOUND IN SOURCE msgid "Modify watchers for queue '%1'" msgstr "Modificar observadores para la cola '%1'" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "ModificarACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "ModificarCampoPersonalizado" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "ModificarCuadroDeMandos" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "ModificarCuadroDeMandosDeGrupo" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "ModificarCuadroDeMandosPersonal" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "ModificarPropiaPertenencia" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "ModificarObservadoresCola" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "ModifyScrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "ModificarASiMismo (ModifySelf)" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "ModificarPlantilla" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "ModificarCaso" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Módulo" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Lun" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Lun." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Lunes" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "De lunes a viernes" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Más" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Más acerca de %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Mover hacia abajo" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Move hacia arriba" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Múltiple" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Se debe especificar un nombre" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Mis casos %1s" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Mis aprobaciones" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Mi día" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mis aprobaciones" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mis cuadros de mandos" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mis búsquedas salvadas" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "NUEVALINEA" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Nombre" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Nombre en uso" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Need approval from system administrator" msgstr "Se necesita aprobación del administrador del sistema" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Nunca" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Nuevo" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nuevas relaciones" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nueva contraseña" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Nueva pendiente de aprobación" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nueva búsqueda" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Casos nuevos y abiertos de %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Nuevo campo personalizado" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Nuevo tablero de instrumentos" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Nuevo grupo" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nuevos mensajes" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nueva contraseña" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Notificación de nueva contraseña enviada" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Nueva cola" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Nuevo recordatorio:" #: NOT FOUND IN SOURCE msgid "New request" msgstr "Nueva solicitud" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nuevos permisos" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Nueva Acción" #: NOT FOUND IN SOURCE msgid "New search" msgstr "Nueva búsqueda" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Nueva plantilla" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nuevo caso" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "El caso nuevo no existe" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Nuevo usuario" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Nuevo usuario llamado" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nuevos observadores" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "Establecer nueva ventana" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Siguiente" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Siguiente Página" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "Siguiente página" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Alias" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Alias" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "No" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "%1 no cargado" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "No existe Class definida" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "No hay campo personalizado" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "No existe CustomField definido" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "No hay grupo definido" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "No existe Consulta" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "No hay cola definida" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "No se encontró el usuario. Por favor consulte al administrador.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Sin asunto" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "No hay plantilla" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "No se especificó el ticket. Abortada la transacción " #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket modifications\\n\\n" msgstr "No se especificó el caso. Abortando las modificaciones al caso\\n\\n" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Sin acción" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "No se ha especificado ninguna columna" #: NOT FOUND IN SOURCE msgid "No command found\\n" msgstr "Comando no encontrado\\n" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "No hay comentarios sobre este usuario" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "No hay ningún archivo adjunto" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "No hay cuadros de mandos" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "No hay descripción para %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Sin detalles" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "No hay grupo especificado" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "No existen grupos que coincidan con el criterio de búsqueda." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "No existe clave adecuada para la encriptación" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "No existen claves para esta dirección" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Mensaje no adjuntado" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "No se introdujo nombre" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "No es necesario encriptar" #: lib/RT/User.pm:851 msgid "No password set" msgstr "No hay contraseña definida" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "No tiene permisos para crear colas" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "No tiene permisos para crear casos en la cola '%1'" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "No tiene privilegios para crear usuarios" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "No tiene permiso para ver el caso" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Sin permiso para grabar búsquedas a través del sistema." #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Sin permisos para establecer preferencias" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Sin permisos para ver la actualización del caso" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "No hay un principal especificado" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "No hay principales seleccionados" #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Sin clave privada" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "No hay colas que concuerden con los criterios de búsqueda" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "No se especifican permisos" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "No se encontraron permisos" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Sin permisos concedidos" #: NOT FOUND IN SOURCE msgid "No search loaded" msgstr "No hay búsqueda cargada" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "No hay búsqueda sobre la que operar" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Sin asunto" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Clave inexistente o no es apropiada para firmar" #: NOT FOUND IN SOURCE msgid "No ticket id specified" msgstr "No se especificó el identificador del caso" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "No se encontraron casos" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "No se especificó el tipo de transacción" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Sin claves utilizables." #: NOT FOUND IN SOURCE msgid "No user or email address specified" msgstr "No se especificó email o usuario" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "No se encontraron usuarios que concuerden con los criterios de búsqueda" #: NOT FOUND IN SOURCE msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" msgstr "Usuario no encontrado. El manejador cvs está deshabilitado. Por favor consulte a su administrador.\\n" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "No se envió ningun valor a _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Nadie" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Ninguno" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "¿Campo no existente?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "No establecido" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "No encontrado" #: NOT FOUND IN SOURCE msgid "Not logged in" msgstr "No autenticado" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "No autenticado." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "No establecido" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "No se ha implementado." #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "No está implementado..." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Notas" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "La notificación no se pudo enviar" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Notificar AdminCcs" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Notificar AdminCcs como comentario" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Notificar Ccs" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Notificar Ccs como Comentarios" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Notificar otros destinatarios" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Notificar otros destinatarios como comentario" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Notificar al propietario" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Notificar al propietario como comentario" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Notificar al Propietario de su caso rechazado" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notificar al Propietario de que su caso ha sido aprobado y está listo para que se actúe sobre él" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "Notificar al Propietario de que su caso ha sido aprobado por todos los aprobadores" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "Notificar al Propietario de que su caso ha sido aprobado por algún aprobador" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notificar al Propietario de que su caso ha sido aprobado por algunos o todos los aprobadores." #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Notificar Propietario, Solicitantes, Ccs y AdminCcs" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notificar Propietario, Solicitantes, Ccs y AdminCcs como Comentario" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Notificar a los Propietarios y AdminCcs de que tienen items esperando su aprobación" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notificar al Solicitante si su caso ha sido aprobado por todos los aprobadores" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Notificar al Solicitante si su caso ha sido aprobado por algún aprobador" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Notificar solicitantes" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Notificar solicitantes y Ccs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Notificar solicitantes y Ccs como comentario" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Notificar solicitantes, Ccs y AdminCcs" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Notificar solicitantes, Ccs y AdminCcs como comentario" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Notifiqueme si hay mensajes no leídos" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Nov." #: NOT FOUND IN SOURCE msgid "November" msgstr "Noviembre" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Número de resultados de búsqueda" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "O" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objeto" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "No se pudo crear el objeto" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objeto no pudo ser borrado" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objeto creado" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objeto borrado" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objeto de tipo %1 no puede llevar campos personalizados" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Tipos de objetos no compatibles" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "La lista de objetos está vacía" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Oct" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Oct." #: NOT FOUND IN SOURCE msgid "October" msgstr "Octubre" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Desconectado" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Ediciones fuera de línea" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Carga fuera de línea" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "El %1, %2 escribió:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Al cerrar" #: etc/initialdata:143 msgid "On Comment" msgstr "Al comentar" #: etc/initialdata:115 msgid "On Correspond" msgstr "En caso de Correspondencia" #: etc/initialdata:104 msgid "On Create" msgstr "Al crear" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Al cambiar de propietario" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Al cambiar de prioridad" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Al cambiar de cola" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Al Rechazar" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Al reabrir" #: etc/initialdata:178 msgid "On Resolve" msgstr "Al resolver" #: etc/initialdata:149 msgid "On Status Change" msgstr "Al cambiar de estado" #: etc/initialdata:109 msgid "On Transaction" msgstr "Al hacer transacción" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "BCC sólo esta vez" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "CC sólo esta vez" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Mostrar sólo aprobaciones para solicitudes creadas despues de %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Mostrar sólo aprobaciones para solicitudes creadas antes de %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Solo mostrar campos personalizados para:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Abierto" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Casos Abiertos" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Abrir URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Abrirlo" #: NOT FOUND IN SOURCE msgid "Open requests" msgstr "Solicitudes abiertas" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Casos abiertos" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "Abrir casos (del listado) en una nueva ventana" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "Abrir casos (del listado) en otra ventana" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Abrir casos al recibir correspondencia" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opción" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Opciones" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ordenar por" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "Ordenación y clasificación" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organización" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Caso originario: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Email saliente acerca de un comentario grabado" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Email saliente grabado" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Correo de salida" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Pasado el tiempo, la prioridad se mueve a" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Casos propios" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "OwnTicket" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Propietario" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "El propietario '%1' no tiene permisos para poseer este caso" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Propietario cambiado de %1 a %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "El Propietario no pudo ser establecido." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Propietario cambiado forzosamente de %1 a %2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "El propietario es" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Nombre_del_Propietario" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Página" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "Pagina %1 de %2" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Página 1 de 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Página no encontrada" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Buscapersonas" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Buscapersonas Tel." #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Padres" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Contraseña" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Recordatorio de contraseña" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Contraseña cambiada" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "No se ha establecido contraseña." #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "La Contraseña necesita ser al menos de %1 caracteres de longitud" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Contraseña establecida" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "Contraseña demasiado corta" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Contraseña: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Contraseña: Permiso Denegado" #: etc/initialdata:463 msgid "PasswordChange" msgstr "CambioContraseña" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Las Contraseña no coinciden" #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Las Contraseña no coinciden. Contraseña no cambiada" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Ruta de sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Personas" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Realizar una acción definida por el usuario" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Configuración de Perl" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Orden de búsqueda de librería Perl" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Permiso denegado" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Permiso denegado" #: NOT FOUND IN SOURCE msgid "Permissions denied" msgstr "Permisos denegados" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Cuadros de Mandos Personales" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Grupos personales" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Grupos personales" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Grupos personales:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Números de teléfono" #: NOT FOUND IN SOURCE msgid "Placeholder" msgstr "Placeholder" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Por favor, verifique la URL e intente nuevamente." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Por favor introduzca su contraseña actual correctamente" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Por favor introduzca su contraseña actual" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Búsquedas posiblemente ocultas" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Preferencias" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Preferencias %1 para el usuario %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Preferencias guardadas por %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Preferencias guaraddas para el usuario %1." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Preferencias guardadas" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Llave preferida: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Llave preferida" #: NOT FOUND IN SOURCE msgid "Prefs" msgstr "Prefs" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Preparación cortada" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Ant." #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Anterior" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "Página Anterior" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "Página anterior" #: NOT FOUND IN SOURCE msgid "Pri" msgstr "Pri" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "No se encontró el principal %1" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Imprimir los mensajes resumidos a STDOUT, no enviarlos por mail. No marcarlos como enviados" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Imprimir este mensaje" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioridad" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "La prioridad empieza en" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privacidad" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privadas:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Clave Privada" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilegiado" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Estado privilegiado: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Usuarios privilegiados:" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Procesando sin transacción, algunas condiciones y acciones podrían fallar. Considere usar el argumento --transaction" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudogrupo para uso interno" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "La clave pública '0x%1' es necesaria para verificar la firma" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Consultas" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Consulta" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Constructor de Consulta" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Consulta:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Cola" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Cola %1 no encontrada" #: NOT FOUND IN SOURCE msgid "Queue '%1' not found\\n" msgstr "Cola '%1' no encontrada\\n" #: NOT FOUND IN SOURCE msgid "Queue Keyword Selections" msgstr "Selecciones de palabras clave de la cola" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Nombre de la cola" #: NOT FOUND IN SOURCE msgid "Queue Scrips" msgstr "Acciones de la cola" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "La cola ya existe" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "La cola no se pudo crear" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "La cola no se pudo cargar" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Cola creada" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Cola desactivada" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Cola activada" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Id de Cola" #: NOT FOUND IN SOURCE msgid "Queue is not specified." msgstr "No se especifico ninguna cola" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Cola no encontrada" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Permisos de cola" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Clave de la cola" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "ColaAdminCc" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "ColaCc" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "NombreCola" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "ObservadorCola" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Colas" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Colas que administro" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Colas en las que soy AdminCc" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Búsqueda rápida" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Creación rápida de caso" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 para %2" #: NOT FOUND IN SOURCE msgid "RT %1 from Best Practical Solutions, LLC." msgstr "RT %1 de Best Practical Solutions, LLC." #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n" msgstr "RT %1. Derechos reservados 1996-%1 Jesse Vincent \\n" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administración de RT" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "E-mail del administrador de RT" #: NOT FOUND IN SOURCE msgid "RT Authentication error." msgstr "Error de autenticación en RT" #: NOT FOUND IN SOURCE msgid "RT Bounce: %1" msgstr "Rechazo del RT: %1" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "Configuración RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Configuración de RT" #: NOT FOUND IN SOURCE msgid "RT Configuration error" msgstr "Error de configuración del RT" #: NOT FOUND IN SOURCE msgid "RT Critical error. Message not recorded!" msgstr "Error crítico en RT. El mensaje no fue grabado!" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "Error del RT" #: NOT FOUND IN SOURCE msgid "RT Received mail (%1) from itself." msgstr "RT recibió correo (%1) de sí mismo." #: NOT FOUND IN SOURCE msgid "RT Recieved mail (%1) from itself." msgstr "RT recibió correo (%1) de sí mismo." #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "Autoservicio RT" #: NOT FOUND IN SOURCE msgid "RT Self Service / Closed Tickets" msgstr "RT AutoServicio / Casos cerrados" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Tamaño de RT" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT de un vistazo" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT de un vistazo para el usuario %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT puede comunicarse con sus usuarios acerca de los nuevos casos o nueva correspondencia en casos existentes. Establezca la ubicación del ejecutable sendmail (o un binario compatible, tal como el que proporciona postfix). RT también necesita conocer a quién notificar cuando alguien envía un email no válido. Debe tratarse de una dirección que no retroalimente a RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT puede incluir contenido de otro servicio web al mostrar este campo personalizado." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT puede convertir los valores de este campo personalizado a hipervínculos a otro servicio." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Variables del núcleo de RT" #: NOT FOUND IN SOURCE msgid "RT couldn't authenticate you" msgstr "RT no te pudo autenticar." #: NOT FOUND IN SOURCE msgid "RT couldn't find requestor via its external database lookup" msgstr "RT no pudo encontrar el solicitante a través de una búsqueda a la base de datos externa" #: NOT FOUND IN SOURCE msgid "RT couldn't find the queue: %1" msgstr "RT no pudo encontrar la cola: %1" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT no pudo almacenar su sesión." #: NOT FOUND IN SOURCE msgid "RT couldn't validate this PGP signature. \\n" msgstr "RT no pudo validar esta firma PGP. \\n" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT para %1" #: NOT FOUND IN SOURCE msgid "RT for %1: %2" msgstr "RT para %1: %2" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "RT ha procesado tus comandos" #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT es © Copyright 1996-%1 de Jesse Vincent <jesse@bestpractical.com>. Es distrbuido bajo la version 2 de la licencia GNU GPL (General Public License)." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT es un sistema de seguimiento de problemas de uso empresarial, diseñado para permitirle gestionar de forma inteligente y eficiente tareas, problemas, peticiones, defectos o cualquier otra cosa similar a una \"acción a tomar\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT es utilizado por compañías de la lista Fortune 100, negocios personales, agencias gubernamentales, instituciones educacionales, hospitales, ONGs, bibliotecas, proyectos de código abierto y todo tipo de organizaciones de los siete continentes (Si, incluso en la Antártida)" #: NOT FOUND IN SOURCE msgid "RT thinks this message may be a bounce" msgstr "RT cree que este mensaje puede ser un mensaje rebotado" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT se conectará a la base de datos con este usuario. Será creado para usted." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT creará un usuario llamado \"root\" y establecerá esto como su contraseña" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT buscará por cualquier otra cosa en los asuntos de los casos." #: NOT FOUND IN SOURCE msgid "RT will process this message as if it were unsigned.\\n" msgstr "RT procesará este mensaje como si fuera uno no firmado\\n" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT reemplazará %1 y %2 con el id del registro y el valor del campo personalizado, respectivamente" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT reemplazará __id__ y __CustomField__ con el id del registro y el valor del campo personalizado, respectivamente" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT utilizará esta cadena de texto para identificar de forma unívoca su instalación, y la buscará en el asunto de los correos para decidir a qué caso corresponde un mensaje. Se recomienda que establezca esta cadena con el valor de su dominio de internet (por ejemplo: ejemplo.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT funciona con gran número de bases de datos diferentes. MySQL, PostgreSQL, Oracle y SQLite están soportadas." #: NOT FOUND IN SOURCE msgid "RT's email command mode requires PGP authentication. Either you didn't sign your message, or your signature could not be verified." msgstr "El modo de comandos por correo de RT requiere autenticación PGP. Ya sea que no haya firmado su mensaje, o que su firma no pueda ser verificada." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT/Admin/Editar el grupo %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "La opción RTDireccionRegexp de la configuración no coincide con %1" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Nombre real" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "NombreReal" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Destinatario" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Grabar todos los cambios" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Miembro recursivo" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Referencia para %1 añadida" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Referencia para %1 borrada" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Referencia para %1 añadida" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Referencia para %1 borrada" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Referenciado por" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "MencionadosEnEl" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Hace referencia a" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "SeRefiereA" #: NOT FOUND IN SOURCE msgid "Refine" msgstr "Refinar" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "Refinar la búsqueda" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Recargar" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Refrescar la página principal cada 10 minutos" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Refrescar la página principal cada 120 minutos" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Refrescar la página principal cada 2 minutos" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Refrescar la página principal cada 20 minutos" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Refrescar la página principal cada 5 minutos" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Refrescar la página principal cada 60 minutos" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Refrescar los resultados de la búsqueda cada 10 minutos" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Refrescar resultados de la búsqueda cada 120 minutos." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Refrescar resultados de la búsqueda cada 2 minutos." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Refrescar resultados de la búsqueda cada 20 minutos." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Refrescar resultados de la búsqueda cada 5 minutos." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Refrescar resultados de la búsqueda cada 60 minutos." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Refrescar esta página cada %1 minutos" #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Recordario '%1' añadido" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Recordatorio '%1' completado" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Recordatorio '%1' reabierto" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Recordatorio caso #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Recordatorios" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Recordatorios para caso #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Quitar AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Eliminar marcador" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Quitar Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Quitar solicitante" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Responder" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Direccion de Respuesta" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Responder a solicitantes" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Responder a los casos" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "ReplyToTicket" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Informes" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Solicitante" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "Dirección de correo del solicitante" #: NOT FOUND IN SOURCE msgid "Requestor(s)" msgstr "Solicitante(s)" #: NOT FOUND IN SOURCE msgid "RequestorAddresses" msgstr "RequestorAddresses" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "GrupoSolicitante" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Solicitantes" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Las solicitudes entran en vencimiento en" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Parámetro requerido '%1' no especificado" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Borrar" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Resetear token de autenticación secreto" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Restaurar a valores por defecto" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Residencia" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Resolver" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Resolver caso #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Resuelto" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Resuelto por propietario" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Resuelto en rango de fechas" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Casos resueltos en el período, agrupado por propietario" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Casos resueltos, agrupados por propietario" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "ResolvedRelative" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Responder" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "Responder a los solicitantes" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultados" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "Resultados por página" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Devolver el caso" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Confirmar contraseña" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Revertir" #: NOT FOUND IN SOURCE msgid "Right %1 not found for %2 %3 in scope %4 (%5)\\n" msgstr "Privilegio %1 no encontrado para %2 %3 referente a %4 (%5)\\n" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Permiso delegado" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Permiso otorgado" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Permiso cargado" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "No se pudo revocar el permiso" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Permiso no encontrado" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Permiso no cargado" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Permiso revocado" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Privilegios" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "No se pudieron conceder los permisos a %1" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "No se pudieron revocar los privilegios de %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Roles" #: NOT FOUND IN SOURCE msgid "RootApproval" msgstr "RootApproval" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Filas" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Filas por caja" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Filas por página" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite es una base de datos que no necesita un servidor ni configuración especial. Los autores de RT la recomiendan para pruebas, demostraciones y fase de diseño, pero no es suficiente para un servidor RT en producción con un alto volumen de datos." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sáb" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Sab." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Sábado" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Guardar" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Guardar Cambios" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Guardar Preferencias" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Guardar como Nuevo" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Guardar cambios" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Guardado %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "No se encontró la búsqueda guardada %1" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Gráficas salvadas" #: NOT FOUND IN SOURCE msgid "Saved search %1" msgstr "Búsquedas guardadas %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Búsquedas guardadas" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Acción #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Acción creada" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Campos de Acción" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Acción borrada" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Acciones" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Acciones y Destinatarios" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "Acciones para %1\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Acciones que se aplican a todas las colas" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Búsqueda" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: NOT FOUND IN SOURCE msgid "Search Criteria" msgstr "Criterios de búsqueda" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Preferencias de Búsqueda" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Buscar aprobaciones" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Búsqueda de casos" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Búsqueda de casos. Ingrese número de id, nombre de colas, Dueños por Nombre de usuario y solicitantes por dirección de correo electrónico." #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address. RT will look for anything else you enter in ticket bodies and attachments." msgstr "Búsqueda de casos. Entrar números id, colas por nombre, Propietarios por usuario y Solicitantes por dirección email. RT buscará por cualquier otra cosa que entres en cuerpos y adjuntos de casos." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Opciones de búsqueda" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Resultados de búsqueda agrupados por %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Intervalo de refresco de los resultados de la búsqueda" #: NOT FOUND IN SOURCE msgid "Search update: %1" msgstr "Búsqueda actualizada: %1" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Las busquedas por texto completo en cada caso puede llevar mucho tiempo, pero si necesita hacerlo, puede buscar por cualquier palabra en el histórico completo de casos escribiendo: fulltext:palabra." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Token de autenticación secreto" #: bin/rt-crontool:350 msgid "Security:" msgstr "Seguridad:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Vea también:" #: NOT FOUND IN SOURCE msgid "See also: %1" msgstr "Ver tambien: %1" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Ver valores de los campos personalizados" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Ver campos personalizados" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Ver mensajes email salientes exactos y sus receptores" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Ver comentario privado de caso" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Ver sumarios de caso" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "VerCamposPersonalizados" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "VerCuadroDeMandos" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "VerGrupo" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "VerCuadroDeMandosDelGrupo" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "VerCuadroDeMandosPersonal" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "VerCola" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Elegir" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Seleccione tipo de base de datos" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Seleccionar un Campo Personalizado" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Seleccione un grupo" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Seleccione una cola" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Seleccione una cola para su nuevo caso" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Seleccione un usuario" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Elegir otro idioma" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Seleccionar un campo personalizable" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Elija campos personalizados para todas las colas" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Seleccionar campos personalizados para todos los grupos de usuarios" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Seleccionar campos personalizados para todos los usuarios" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Seleccionar campos personalizados para casos en todas las colas" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Seleccionar campos personalizados para transacciones de casos en todas las colas" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Elegir tablero de instrumentos" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Seleccione grupo" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Seleccionar valores múltiples" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Seleccionar un valor" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Seleccionar cola" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Seleccionar colas para ser mostradas en la pagina \"RT de un vistazo\"" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Seleccionar acción" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Seleccionar plantilla" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Seleccionar hasta %1 valores" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Seleccionar usuario" #: NOT FOUND IN SOURCE msgid "SelectMultiple" msgstr "SelectMultiple" #: NOT FOUND IN SOURCE msgid "SelectSingle" msgstr "SelectSingle" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Campos Personalizados Seleccionados" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "La clave elegida no es de confianza o ya no existe" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Objetos Seleccionados" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Selecciones modificadas. Por favor grabe sus cambios" #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "Autoservicio" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Correo enviado correctamente" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Enviar mail a todos los observadores" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Enviar mail a todos los observadores como comentario" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Enviar correo al propietario y todos los observadores" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Enviar correo al propietario y todos los observadores como comentario" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Enviar mail a los solicitantes y Ccs" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Enviar mail a los solicitantes y Ccs como comentario" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Envia un mesaje a los solicitantes" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Envia correo a los Ccs y Bccs listados explicitamente" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Enviar correo a los Ccs" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Enviar correo a los Ccs como comentario" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Envia correo a los AdminCcs" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Envía correo a los AdminCcs como comentario" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Enviar correo al propietario" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Sep" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Sep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "Septiembre" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Configuración" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "¿Desea que RT le envíe un correo por cada actualización de caso que usted realice?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Mostrar" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "Mostrar Aprobaciones" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Mostrar Columnas" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Mostrar resultados" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Mostrar Propiedades de Casos en nivel %1" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Mostrar peticiones aprobadas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "También mostrar" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Mostrar lo básico" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Mostrar solicitudes denegadas" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Mostrar detalles" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Mostrar descripciones de enlace" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Mostrar primero el historial más antiguo" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Mostrar solicitudes pendientes" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Mostrar solicitudes esperando otras aprobaciones" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "Mostrar caso en un comentario privado" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "Mostrar resumen del caso" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "ShowACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "MostrarPestañaAprobaciones" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "MostrarPestañaConfiguracion" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "MostrarEmailDeSalida" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "MostrarBusquedasGuardadas" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "MostrarAcciones" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "MostrarPlantilla" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "MostrarCaso" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "MostrarComentariosCaso" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Trituradora" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "La trituradora necesita un directorio en el que escribir la basura. Por favor, chequee que tiene %1 en su servidor web, y que tiene permisos de escritura en él." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "La trituradora necesita un directorio en el que escribir la basura. Por favor, chequee que tiene %1 en su servidor web, y que tiene permisos de escritura en él." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Barra lateral" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Firmar" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Firmar por defecto" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Validarse como solicitante de caso o CC del caso o cola" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Validarse como AdminCc del caso o cola" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Firma" #: NOT FOUND IN SOURCE msgid "Signed in as %1" msgstr "Validado como %1" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "No está habilitado el uso de firmas" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Uso de firmas habilitado" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Búsqueda simple" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Sencillo" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Nombre del sitio" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Tamaño" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Saltar Menu" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Saltando usuario deshabilitado" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Pequeño/a" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Algunos navegadores solamente podrán cargar contenido del mismo dominio que su servidor RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Algo fue mal. Contacte al administrador del sistema." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordenar" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "Clave de ordenación" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "Ordenar resultados por" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "Ordenamiento" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Orden" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Origen" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Especifique si se ejecutará diaria o semanalmente." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Hoja de cálculo" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Fase" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: NOT FOUND IN SOURCE msgid "Stalled" msgstr "Pendiente" #: NOT FOUND IN SOURCE msgid "Start page" msgstr "Página de inicio" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Comenzado" #: NOT FOUND IN SOURCE msgid "Started date '%1' could not be parsed" msgstr "La fecha de inicio '%1' no se pudo leer" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "StartedRelative" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Comienza" #: NOT FOUND IN SOURCE msgid "Starts By" msgstr "Comenzado por" #: NOT FOUND IN SOURCE msgid "Starts date '%1' could not be parsed" msgstr "La fecha de inicio '%1' no se pudo ser leer" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "StartsRelative" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Estado" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Estado" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Cambio de estado" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Estado cambiado de %1 a %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: NOT FOUND IN SOURCE msgid "StatusChange" msgstr "StatusChange" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Robar" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Robar casos" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "RobarCaso" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Paso %1 de %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Robado a %1" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Estilo" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Asunto" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Etiqueta de Asunto" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Asunto cambiado a %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "SubjectTag" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "SubjectTag cambió a %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Enviar" #: NOT FOUND IN SOURCE msgid "Submit Workflow" msgstr "Submit Workflow" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Suscribir" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Suscribirse al cuadro de mandos %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Suscribirse a cuadros de mandos" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "SuscribirCuadroDeMandos" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Suscrito al cuadro de mandos %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Subscripción" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "La suscripción no pudo crearse: %1" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Completado" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Datos exitosamente desencriptados" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Datos exitosamente encriptados" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Dom" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Dom." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Domingo" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "Superusuario" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Suspendido" #: NOT FOUND IN SOURCE msgid "System" msgstr "Sistema" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Configuración del Sistema" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Cuadros de Mandos del Sistema" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Predeterminado del Sistema" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Error del sistema" #: NOT FOUND IN SOURCE msgid "System Error. Right not granted." msgstr "Error de sistema. Derecho no concedido" #: NOT FOUND IN SOURCE msgid "System Error. right not granted" msgstr "Error de sistema. Derecho no concedido" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Error del sistema: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Herramientas del Sistema" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Error del sistema. Permiso no delegado." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Error del sistema. Permiso no otorgado" #: NOT FOUND IN SOURCE msgid "System error. Unable to grant rights." msgstr "Error de sistema. Incapaz de conceder permisos" #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Grupos del sistema" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Permisos del sistema" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "GrupoDeRolesDeSistema de uso interno" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRING" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Coger" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Coger casos" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "CogerCaso" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Cogido" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Díganos algo sobre como encontrar la base de datos que RT utilizará" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Plantilla" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Plantilla #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Plantilla #%1 eliminada" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "No se encontró la plantilla '%1'" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Plantilla borrada" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "La plantilla está vacía" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "La plantilla es un argumento obligatorio" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Plantilla no encontrada" #: NOT FOUND IN SOURCE msgid "Template not found\\n" msgstr "Plantilla no encontrada\\n" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Plantilla procesada" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Error sintactico de Plantilla" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Plantillas" #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "Plantillas de %1\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "El archivo de texto no se muestra porque está deshabilitado en las preferencias" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Ese es el valor actual" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Ese no es un valor para este campo personalizado" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Este es el mismo valor" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Ese principal ya tiene ese derecho" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Ese principal ya es un %1 para esta cola" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Ese principal ya es un %1 para este caso" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Ese principal no es un %1 para esta cola" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Ese principal no es un %1 para este caso" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Esa cola no existe" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Ese caso tiene dependencias sin resolver" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "Ese usuario ya tiene ese privilegio" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Ese usuario ya posee ese caso" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Ese usuario no existe" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Ese usuario ya es privilegiado" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Ese usuario ya es no privilegiado" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Ese usuario ahora es privilegiado" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Ese usuario ahora es no privilegiado" #: NOT FOUND IN SOURCE msgid "That user is now unprivilegedileged" msgstr "Este usuario ya no tiene privilegios" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Ese usuario puede no poseer casos en esa cola" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Ese no es un identificador numérico" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Lo básico" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "El CC de un caso" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "La contraseña del administrador de la base de datos para la base de datos" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "El CC administrativo de un caso" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "El comentario ha sido grabado" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "El nombre del dominio de su servidor de la base de datos (como 'db.example.com')." #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "El siguiente comando encontrará todos los casos activos en la cola 'general' y pondrá su prioridad a 99 si no han sido tocados en 4 horas:" #: NOT FOUND IN SOURCE msgid "The following commands were not proccessed:\\n\\n" msgstr "Los siguientes comandos no han sido procesados:\\n\\n" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Las siguientes consultas han sido eliminadas y serán borradas del cuadro de mandos una vez que su panel sea actualizado." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Las siguientes consultas podrían no ser visibles para todos los usuarios que pueden ver este cuadro de mandos." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "La clave ha sido deshabilitada" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "La clave ha sido revocada" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "La clave ha expirado" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "La clave es totalmente confiable" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "La clave es fundamentalmente confiable" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Ha sido establecido el nuevo valor" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "El propietario de un caso" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "La página solicitada no se encuentra" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "El solicitante de un caso" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Las configuraciones que ha elegido se almacenan en %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "El sistema es incapaz de firmar los mensajes de correo salientes. Esto normalmente indica que la frase de paso (passphrase) está mal configurada, o que el agente GPG está caído. Por favor, alerte a su administrador de sistemas inmediatamente. Las direcciones problemáticas son:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Existen varias claves adecuadas para encriptación." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Hay mensajes sin leer sobre este caso" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Hay una confianza marginal en esta clave" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "No hay claves disponibles para cifrado." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Existe una clave disponible, pero el nivel de confianza no está establecido." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Estos comentarios generalmente no están visibles para el usuario" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Estas opciones de configuración cubren algunas de las bases necesarios para hacer funcionar RT. Es necesario que proporcione el nombre de su instalación RT y el nombre de dominio en el que se incluye RT. También necesitará configurar una contraseña para su usuario administrador por defecto." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Este campo personalizado no se aplica a este objeto" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Esta característica está sólo disponible para administradores del sistema" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Esto podría significar que el directorio '%1' no tiene permisos de escritura o que una tabla de la base de datos está inaccesible o corrupta." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Este mensaje sera enviado a..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: NOT FOUND IN SOURCE msgid "This ticket %1 %2 (%3)\\n" msgstr "Este caso %1 %2 (%3)\\n" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Esta herramiento permite al usuario ejecutar módulos perl arbitrarios desde RT" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Parece que esta transacción no tiene contenido" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Los %1 casos de mayor prioridad de este usuario" #: NOT FOUND IN SOURCE msgid "This user's 25 highest priority tickets" msgstr "Los 25 casos de mayor prioridad de este usuario" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Jue" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Jue." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Jueves" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Caso" #: NOT FOUND IN SOURCE msgid "Ticket # %1 %2" msgstr "Caso # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket # %1 Jumbo update: %2" msgstr "Actualización Jumbo para el ticket # %1: %2" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Actualización Jumbo para el caso #%1: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Grafo de relaciones del caso #%1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Caso #%1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Caso #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Caso %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Caso %1 creado en la cola '%2'" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "Caso %1 cargado\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Caso %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Campos Personalizados de Caso" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Historial del caso # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "Id del caso:" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Caso resuelto" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Búsqueda de casos" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Transacciones del Caso" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "Archivos adjuntos del caso" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Contenido del caso" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Tipo de contenido del caso" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "No se pudo crear el caso debido a un error interno" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "El caso no pudo ser cargado" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "Caso creado" #: NOT FOUND IN SOURCE msgid "Ticket creation failed" msgstr "Falló la creación del caso" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "Caso borrado" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Visualizar caso" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "Id de caso no encontrada" #: NOT FOUND IN SOURCE msgid "Ticket killed" msgstr "Caso eliminado" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Metadata del caso" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "Caso no encontrado" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Estado del caso modificado" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "Observadores del caso" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "Modulo de búsqueda TicketSQL" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Casos" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Casos %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Casos %1 por %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Casos creados despues del" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Casos creados antes del" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "Casos de %1" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Casos resueltos despues del" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Casos resueltos antes del" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Casos que dependen de esta aprobación:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Tiempo Estimado" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Tiempo Restante" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tiempo Trabajado" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Tiempo restante" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tiempo para mostrar" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Tiempo trabajado" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "TiempoEstimado" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "TiempoRestante" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "TiempoTrabajado" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Zona horaria" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Título" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Para" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "Para generar una comparación de este cometido:" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "Para generar una comparación de este cometido:\\n" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Para consultas sobre soporte, formación, diseño a medida o licenciamiento, por favor contacte con %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Última actualización" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "ToldRelative" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Herramientas" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Total" #: etc/initialdata:249 msgid "Transaction" msgstr "Transacción" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transacción %1 limpiada" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transacción creada" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Campos personalizados de Transacción" #: NOT FOUND IN SOURCE msgid "Transaction->Create couldn't, as you didn't specify a ticket id" msgstr "Transaction->Create no pudo, ya que no especificó un ID de ticket" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create no pudo, ya que no especificó un tipo de objeto e ID" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Las transacciones son inmutables" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Confianza" #: NOT FOUND IN SOURCE msgid "Trying to delete a right: %1" msgstr "Intentando borrar el privilegio: %1" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Mar" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Mar." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Martes" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tipo" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "El tipo cambió de '%1' a '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Incapaz de determinar el id o el tipo de objeto" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "No es posible suscribirse al cuadro de mandos %1: Permiso denegado" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "No implementado" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Usuario en Unix" #: NOT FOUND IN SOURCE msgid "UnixUsername" msgstr "Usuario en Unix" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Desconocido (no hay valor de confianza asignado)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Desconocido (este valor es nuevo para el sistema)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Codificación de contenido desconocida: %1" #: NOT FOUND IN SOURCE msgid "Unknown field: $key" msgstr "Campo desconocido: $key" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Campo desconocido: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Quitar el limite" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ilimitado" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Búsqueda sin nombre" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "No privilegiado" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Campos Personalizados No Seleccionados" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Objetos No Seleccionados" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Quitar valor de clave privada" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "No cogido" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Actualizar" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Actualizar gráfico" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "Id de actualización" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Actualizar Caso" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Actualizar tipo" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "Actualizar todos estos casos al mismo tiempo" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "Actualizar correo" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Actualizar formato y buscar" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Actualizar múltiples casos" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "Actualizar nombre" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Actualización no grabada." #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "Actualizar casos seleccionados" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "Actualizar firma" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Actualizar caso" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "Actualizar caso # %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Actualizar caso #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Actualizar caso #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "El tipo de actualización no fue ni respuesta ni comentario" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "EstadoActualizacion" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Actualizado" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "búsqueda guardada actualizada \"%1\"" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Subir" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Subir múltiples ficheros" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Subir múltiples imágenes" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Subir un fichero" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Subir una imagen" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Subir hasta %1 ficheros" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Subir hasta %1 imágenes" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Subir cambios" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Modo de empleo: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "¿Utilizar SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Utilizar reglas de css para mostrar el texto monoespaciado con el formato perservado, pero envolverlo si es necesario. Esto no funciona bien con IE6 y debería utilizar la anterior opción" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Usar predeterminado (%1)" #: NOT FOUND IN SOURCE msgid "Use monospace font" msgstr "Usar fuente monoespaciada" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Usar otras herramientas administrativas de RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Utilizar predeterminado del sistema (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Utilice esto para proteger el formato del texto plano" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Usuario" #: NOT FOUND IN SOURCE msgid "User %1 %2: %3\\n" msgstr "Usuario %1 %2: %3\\n" #: NOT FOUND IN SOURCE msgid "User %1 Password: %2\\n" msgstr "Usuario %1 Contraseña: %2\\n" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "No se encontro el Usuario '%1'" #: NOT FOUND IN SOURCE msgid "User '%1' not found" msgstr "Usuario '%1' no encontrado" #: NOT FOUND IN SOURCE msgid "User '%1' not found\\n" msgstr "Usuario '%1' no encontrado\\n" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Usuario (Creado - expira)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Definido por el usuario" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Condiciones y acciones Definidas por el Usuario" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "ID de usuario" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "Id de usuario" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Permisos de usuario" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "El usuario solicitó un tipo de actualización desconocida para el campo personalizado %1 para %2 objeto #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "El usuario no pudo ser creado: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Usuario creado" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Grupos definidos por el usuario" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Usuario deshabilitado" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Usuario activado" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "El usuario tiene la dirección de e-mail vacía" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Usuario cargado" #: NOT FOUND IN SOURCE msgid "User notified" msgstr "Usuario notificado" #: NOT FOUND IN SOURCE msgid "User view" msgstr "Vista de usuario" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Claves GnuPG de usuario" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Grupos definidos por el usuario" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Nombre de usuario" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Formato para el nombre del usuario" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Usuarios" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Usuarios que concuerdan con los criterios de búsqueda" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Usando transacción #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Consulta Válida" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validación" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Valor" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "Valor de la cola" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Valores" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Variable" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Informes varios de RT" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Versión" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Ver cuadros de mandos de este grupo" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Ver cuadros de mandos personales" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Ver cuadros de mandos del sistema" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "Altura del editor WYSIWYG" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "Editor de mensajes WYSIWYG" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "¡Atención! ¡NO está firmado!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Aviso: usted no tiene registrada una dirección de correo electronico, así que no recibirá este cuadro de mandos hasta que la tenga." #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Observar" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "ObservarComoAdminCc" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Observador" #: NOT FOUND IN SOURCE msgid "Watcher loaded" msgstr "Observador cargado" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "GrupoObservadores" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Observadores" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Se pudo acceder a su base de datos como DBA. Puede pulsar en 'Personalizar lo Basico' para continuar personalizando RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Se necesita conocer el nombre de la BBDD que RT utilizará y dónde encontrarla. También es necesario conocer el usuario y la contraseña del usuario que RT utilizará. RT puede crear la BBDD y el usuario, y por ello le pedimos el usuario y contraseña de un usuario con privilegios de DBA (Administrador de BBDD). Durante el paso 6 del proceso de instalación, utilizaremos esta información para crear e inicializar la BBDD de RT." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Puerto Web" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "Codificación de Web" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Mié" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Mie." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Miércoles" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Resumen semanal" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "¡Bienvenido a RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Qué he hecho hoy" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "¿Qué es RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Cuando RT no pueda manejar un mensaje de correo, ¿dónde debería reenviarlo?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Cuando RT envía un email, configura las cabeceras \"De:\" y \"Responder-A:\" de forma que los usuario puedan adherirse a la conversación con tan sólo pulsar Responder en su cliente de correo. Utiliza diferentes direcciones para Respuestas y Comentarios. Esto se puede cambiar para cada una de sus consultas. Estas direcciones tendrán que ser configuradas para utilizar el programa rt-mailgate." #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "Cuando un caso ha sido aprobado por todos los aprobadores, añadir correspondencia al caso original" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "Cuando un caso ha sido aprobado por cualquier aprobador, añadir correspondencia al caso original" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Al crear un caso" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Cuando se crea un caso de aprobación, notificar al propietario y al AdminCc del item que espera su aprobación" #: etc/initialdata:110 msgid "When anything happens" msgstr "Cuando pasa cualquier cosa" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Cuando pulse en 'Chequear conectividad con BBDD' podría haber un pequeño retraso mientras RT intenta conectar con su BBDD" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Cuando un caso está cerrado" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Cuando un caso es rechazado" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Cuando un caso es vuelto a abrir" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Al resolver un caso" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Al cambiar el propietario de un caso" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Siempre que la prioridad de un caso cambie" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Al cambiar la cola de un caso" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Al cambiar el estado de un caso" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Siempre que ocurra una condición definida por el usuario" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Siempre que venga algún comentario" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Al recibir correspondencia" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Donde encontrar el programa sendmail" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Limpiar" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Trabajo" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "Tel Trabajo" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Trabajado" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Sí" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Usted ya es propietario de este caso" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Va a encriptar los correos salientes, pero hay problemas con las claves públicas de los receptores. Ha de arreglar los problemas con las claves, deshabilitar el envío de correo a receptores con problemas de clave o deshabilitar la encriptación." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Va a encriptar los correos salientes, pero hay un problema con la clave pública de un receptor. Ha de arreglar el problema con la clave, deshabilitar el envío de correo a ese receptor o deshabilitar la encriptación." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Usted no es un usuario autorizado" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Puede ir al primer mensaje sin leer ó ir al primer mensaje sin leer y marcar todos los mensajes como leídos." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "También puede editar la búsqueda predefinida en sí misma" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "No puede introducir la contraseña" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Sólo puede reasignar casos que posee o que no tienen propietario" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Sólo puede tomar casos que no tienen propietario." #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "No tiene permisos de Superusuario." #: NOT FOUND IN SOURCE msgid "You don't have permission to view that ticket.\\n" msgstr "No tiene permiso para ver ese caso.\\n" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Usted encontró %1 casos en la cola %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Se ha desconectado del sistema RT" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "No tiene permiso para crear casos en esa cola." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "No puede crear solicitudes en esa cola." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Debe introducir una contraseña administrativa" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Será redirigido a la página de ingreso. Podrá loguearse con el usuario de %1 y la contraseña establecida previamente." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Será redirigido a la página de ingreso. Podrá loguearse con el usuario de root y la contraseña establecida previamente." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Debería elegir la BBDD con la que usted o su DBA local estén más cómodos." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Está viendo esta pantalla debido a que comenzó en un servidor RT sin una BBDD funcional. Lo más probable es que esta sea la primera vez que ejecuta RT. Si pulsa ¡Vámos! más abajo, RT le guiará a través de la configuración de su servidor y BBDD." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Está viendo esta pantalla debido a que comenzó en un servidor RT sin una BBDD funcional. Lo más probable es que esta sea la primera vez que ejecuta RT. Si pulsa \"%1\" más abajo, RT le guiará a través de la configuración de su servidor y BBDD." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Es bienvenido a regresar en cualquier momento." #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "Sus solicitudes %1" #: NOT FOUND IN SOURCE msgid "Your RT administrator has misconfigured the mail aliases which invoke RT" msgstr "Su administrador del RT ha desconfigurado el alias de correo que invoca el RT" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Su contraseña actual" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Su contraseña no está establecida." #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "Su petición ha sido aprobada por %1. Otras aprobaciones pueden estar pendientes todavia" #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "Su petición ha sido aprobada." #: NOT FOUND IN SOURCE msgid "Your request was rejected" msgstr "Su petición ha sido rechazada" #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "Su petición ha sido rechazada" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Nombre o contraseña de usuario incorrectos" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Código Postal" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Abajo]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Arriba]" #: NOT FOUND IN SOURCE msgid "[no subject]" msgstr "[sin asunto]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ninguno/a]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "añadir la etiqueta  alrededor de los adjuntos de texto plano"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "Después"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "permitir la creación de búsquedas guardadas"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "permitir la carga de búsquedas guardadas"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "como priviligiado para %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "barra"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "Antes"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "de abajo a arriba"

#: NOT FOUND IN SOURCE
msgid "chart"
msgstr "tabla"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "marque esta casilla para aplicar este Campo Personalizado a todos los objetos."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "marque esta casilla para eliminar este Campo Personalizado de todos los objetos y ser capaz de elegir objetos específicos."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "marque para añadir"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "pulse para marcar/desmarcar todos los objetos de una vez"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "cerrado"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "conciso"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "contiene"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "contenido"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "content-type"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "configuración del núcleo"

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "Respuesta (probablemente) no enviada"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "Correspondencia enviada"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "campo personalizado '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "diariamente"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "diaramente a las %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "días"

#: NOT FOUND IN SOURCE
msgid "dead"
msgstr "muerto"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "borrar"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "borrado"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "mostrar adjuntos de texto plano envueltos y formateados"

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "no coincide"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "no contiene"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "no concuerdan"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "descargar"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "igual a"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "error: no se puede mover abajo"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "error: no se puede mover a la izquierda"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "error: no se puede mover arriba"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "error: nada a borrar"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "error: nada a mover"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "error: nada a conmutar"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "cada"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "plugin ejecutado con éxito"

#: NOT FOUND IN SOURCE
msgid "false"
msgstr "falso"

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "nombre de archivo"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "completo"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "mayor que"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grupo '%1'"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "agrupado por %1"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "horas"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "es"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "no es"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "clave deshabilitada"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "clave caducada"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "clave revocada"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "de izquierda a derecha"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "menor que"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginal"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "contiene"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "profundidad máxima"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minutos"

#: NOT FOUND IN SOURCE
msgid "modifications\\n\\n"
msgstr "modificaciones\\n\\n"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "mensualmente"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "mensualmente (día %1) a las %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "meses"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "nunca"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "nuevo"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "no"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "sin nombre"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "sin valor"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "ninguno"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "no igual a"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nada"

#: NOT FOUND IN SOURCE
msgid "notlike"
msgstr "notlike"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "Los objetos fueron borrados con éxito"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "en"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "el día"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "uno"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "abierto"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "abrir/cerrar"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "otro/a..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "grupo personal '%1' para usuario '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "Queso"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "el plugin devolvió una lista vacía"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "Cola %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "rechazado"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "resuelto"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "de derecha a izquierda"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "seg"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "vea la lista de objetos más abajo"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "mostrar pestaña de Aprobaciones"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "mostrar pestaña de Configuración"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "configuración del sitio"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "parado"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "style: %1"
msgstr "estilo: %1"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "columnas resumen"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistema %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "grupo del sistema '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "el componente que llama no especifica por qué"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "las direcciones por defecto que se listarán en las cabeceras De: y Responder-A: del correo de comentario."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "las direcciones por defecto que se listarán en las cabeceras De: y Responder-A: del correo de correspondencia."

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "caso #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "de arriba a abajo"

#: NOT FOUND IN SOURCE
msgid "true"
msgstr "verdadero"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "absoluta"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "grupo sin descripción %1"

#: NOT FOUND IN SOURCE
msgid "undescripbed group %1"
msgstr "grupo sin descripción %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "ilimitado"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "usuario %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "detallado"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "semanalmente"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "semanalmente (el %1) a las %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "semanas"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "en qué puerto escuchará su servidor web, p.ej. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "con encabezados"

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "con plantilla %1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "años"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "sí"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/sl.po0000664000175000017500000111516112262650742013756 0ustar  chmrrchmrr# Slovenian translation for rt
# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:09+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: Slovenian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (ni javnega ključa)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (brez zaupanja!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3 %2 %7 %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 dodan"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "pred %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr ""

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 pobrisan"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 pobrisan."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 shranjen."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 posodobljen."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 s predlogo %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) od %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (nespremenjeno)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (iz razdelka %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Nastavi 'LogToScreen' konfiguracijsko možnost"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - argument za %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Izpiši posodobitve stanj na standardni izhod (STDOUT)"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Določi ali želiš uporabljati 'first', 'last' ali 'all' transakcije"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Določi ime ali id predlog(e) ki jo/jih želiš uporabiti"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Določi modul za akcije"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Določi seznam transkacij ki jih želiš uporabljati - loči z vejico"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Določi modul za pogoje"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Določi modul za iskanja"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 pregledi"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "Naložen %1 akcijska skripta"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 dodan kot vrednost za %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 že obstaja in vsebuje tudi RT tabele, vendar ne vsebuje metapodatkov Korak 'Initialize Database' ki ga lahko izvedeš kasneje lahko vstavi metapodatke v to obstoječo bazo. Klikni 'Customize Basics' če je to sprejemljivo in prični s prilagoditvami."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 že obstaja in vsebuje tudi RT tabele, vendar ne vsebuje metapodatkov Korak 'Initialize Database' ki ga lahko izvedeš kasneje lahko vstavi metapodatke v to obstoječo bazo. Klikni 'Customize Basics' če je to sprejemljivo in prični s prilagoditvami."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 izgleda kot lokalen objekt, vendar ga ni možno najti v bazi"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 je polno inicializiran. Tabel ali metapodatkov nam ne bo potrebno ustvariti, lahko pa nadaljuješ s prilagoditvami RT-ja s klikom na 'Customize Basics' spodaj"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1, %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 spremenjeno iz vrednosti %2 na %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "Graf %1 po %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "Kopija %1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "Glavna konfiguracija za %1"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 ne morem nastaviti za %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 ni mogel nastaviti status resolved. RT-jeva baza je morda nekonsistentna."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 ustvarjena"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 pobrisan"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 onemogočen"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 ne obstaja."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 omogočen"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 mojih zadev z navišjo prioriteto"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 je orodje za delo z zadevami iz externega orodja za načrtovanje, kot naprimer"

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 je orodje, ki je naj bi bilo zagnano iz cron-a, le to pa pošlje vsa zakasnela RT obvestila kot skupek za vsakega uporabnika posebej."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 je naslov na katerem RT sprejema pošto. Če ga dodamo kot '%2' dobimo poštno zanko"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 ni več %2 za to vrsto."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 ni več %2 za to zadevo."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 ni več vrednost za prilagojeno polje %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 najnoveših zadev brez lastnika"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objektov"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 konfiguracija mesta"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 posodobitev: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 posodobitev: brez sprememb"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 posodobljeno"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 bo označil kot rešene vse člane rešene skupinske zadeve."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%2 objekti %1"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%3 objekti %1 %2"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Pregledi uporabnika %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Shranjena iskanja uporabnika %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: priponka ni bila določena"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Nova zadeva v%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hour)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' ni veljavna vrednost za status"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Označi polje za izbris)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Označi polja za izklop notifikacij za izpisane prejemnike)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Označi polja za vklop notifikacij za izpisane prejemnike)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Vnesi id zadeve ali URL-je, ločene s predledki)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Privzeta vrednost bo %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Ni prilagojenih polj)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Ni članov)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Ni skript)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Ni predlog)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Brez)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Pošlje cc e-pošto seznamu (ločenem z vejico) administranih e-poštnih naslovov. Ti ljudje bodo dobili tudi bodoče posodobitve.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Pošlje cc e-pošto seznamu (ločenem z vejico) e-poštnih naslovov.  Ti ljudje bodo dobili tudi bodoče posodobitve.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Uporabi ta polja ko izbereš 'User Defined' za pogoj ali akcijo)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Ne bo dobil e-pošte)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(karkoli)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(prazno)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(brez javnega ključa!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(brez vrednost)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(brez vrednosti)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(samo ena zadeva)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(čakajoč %quant(%1,other ticket))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(čakajoč odobritev)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(zahtevano)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(verovanje: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(neimenovano)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(neverovano!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id ni več veljaven argument in ga ne moreš uporabiti s --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transaction argument je lahko le 'first', 'last' ali 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Vsi iCal viri imajo vključen unikaten podatke za avtorazijo. Če je URL naslov iCal vira prišel v napačne roke, lahko dobiš nov naslov spodaj. Vsi obstoječi iCal viri bodo s tem postali neveljavni!

" #: etc/initialdata:215 msgid "A blank template" msgstr "Prazna predloga" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Geslo ni bilo nastavljeno, tako da se uporabnik ne bi mogel prijaviti." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE ni bil najden" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEs se lahko le ustvari ali pobriše." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "IN" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "O meni" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Kontrola dostopa" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Akcija" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Akcija '%1' ni bila najdena" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Akcija izvedena.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Akcija je obvezen argument" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Akcija pripravljena..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Dodaj administrativni cc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Dodaj zaznamek" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Dodaj Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Dodaj stolpce" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Dodaj pogoj" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Dodaj datoteke" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Dodaj pobudnika" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Dodaj vrednost" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Skripta ki bo vplivala na vse vrste" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Dodaj komentarje ali odgovore k izbranim zadevam" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Dodaj člane" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Dodaj opazovalce" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Dodaj te pogoje" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Dodaj te pogoje in išči" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Dodaj vrednosti" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Dodaj, pobriši ali spremeni prilagojena polje za objekte" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Za to vrsto je bil dodan uporabnik kot %1" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Za to zadevo je bil dodan uporabnik kot %1" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Naslov" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Naslov1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Naslov2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Administrativni Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Administrativni komentar" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Administrativno dopisovanje" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administracijske vrste" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administracijska/Globalna konfiguracija" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "Vse administrativne zasebne skupine" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "Administrativna cc skupina" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "Administrativni cc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "Administrativni cc-ji" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "Administrativno prilagojeno polje" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "Administrativna skupina" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "Administrativno članstvo skupine" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "Administrativne zasebne skupine" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "Administrativna vrsta" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "Administrativni uporabniki" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administrativni Cc" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administrativno geslo" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Napredno" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Agregator" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Vse odobritve uspešne" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Vse vrste" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Vsi iCal viri imajo vključen unikaten podatke za avtorazijo. Če je URL naslov iCal vira prišel v napačne roke, lahko dobiš nov naslov spodaj. Vsi obstoječi iCal viri bodo s tem postali neveljavni!" #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Vse vrste ki ustrezajo pogojem iskanja" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Že kriptirano" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "In/Ali" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Upoštevano" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Velja za" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Velja za vse objekte" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Shrani" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Shrani globalno" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Shrani spremembe" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Odobritev" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Odobritev #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Odobritev #%1: Opombe zaradi sistemske napake niso zabeležene" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Odobritev #%1: Opombe zabeležene" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Odobritev uspešna" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Odobritev je pripravljena za lastnika" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Odobritev zavrnjena" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Odobri" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Apr" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Nar" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Naraščujoče" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Dodeli in odstrani prilagojena polja" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "Dodeli prilagojena polja" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Priloži" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Priloži datoteko" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Priložena datoteka" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Priloga" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Priloge '%1' ni bilo možno naložiti" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Priloga ustvarjena" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Ime priložene datoteke" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Priloge" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Enkripcija za priloge je izklopljena" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Atribut pobrisan" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Avg" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Samodejno odgovori" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Samodejno odgovori pobudnikom" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Na voljo" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Bcc" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Nazaj" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Slaba zasebnost za atribut %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Osnove" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Shrani svoje spremembe" #: etc/initialdata:214 msgid "Blank" msgstr "Prazno" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Telo" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Krepko" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Zaznamek" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Zaznamovane zadeve" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Kratka glava" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Masovno posodabljanje" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Kupi podporo" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "RT bo privzeto uporabljajo časovno cono operacijskega sistema. S tem lahko nastavite globalno privzeto vrednost za izpis datumov in časov v RT-ju. Uporabniki si lahko izberejo drugo časovno cono v njihovih nastavitvah." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "Skupina za CC" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Ne morem naložiti shranjenega iskanja \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Sistemskih uporabnikov ni možno spreminjati" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Ali lahko ta uporabnik vidi to vrsto" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Ne morem dodati prilagojeneg polja brez imena" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Ne najdem shranjenega iskanja" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Zadeve ni možno povezati same s seboj" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Ne morem shraniti %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Tega iskanja ne morem shraniti" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Ne moreš specificirate tako base kot target" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "V onemogočeni vrsti ni možno ustvariti zadev" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Ne more ustvariti uporabnia: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategorije bazirajo na" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorija" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Nastavitve kategorije izbrisane" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Cc" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Spremeni" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Spremeni status zadeve za odobritev na odprto stanje" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Spremeni geslo" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Izberi vse" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Preveri povezljivost z bazo" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Preveri podatke za dostop do baze" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Označi polje za izbris" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Označi polje za preklic pravic" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Podrejene" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Izberi tip baze" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Mesto" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Počisti" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Počisti vse" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Klikni \"Finish Installation\" za zaključek tega čarovnika." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Za kreiranje baze in vnos začetnih metapodatkov klikni \"Initialize Database\". To lahko traja nekaj trenutkov" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Zapri okno" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Zaprto" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Zaprte zadeve" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Izbirnik: izberi ali vnesi več vrednosti" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Izbirnik: izberi ali vnesi eno vrednost" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Izbirnik: Izberi ali vnesi največ %1 vrednosti" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Komentar" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Naslov za komentarje" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Naslov za komentarje" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Komentiraj zadeve" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "Komentiraj zadevo" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Komentarji" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Komentarji (ki niso poslani pobudnikom)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Komentarji (ki niso poslani pobudnikom)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Komentarji o tem uporabniku" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Komentarji so bili dodani" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Commit Stubbed" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Pogoj" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Pogoja '%1' ni bilo možno najti" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Pogoje je obvezen argument" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Pogoje se ujema..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Pogoj, akcija in predloga" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Konfiguracijska datoteka %1 je zaklenjena" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Nastavitve" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Povezava je uspela" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Vsebina" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tip vsebine" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "Tip vsebine" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Naslov za dopisovanje" #: etc/initialdata:283 msgid "Correspondence" msgstr "Dopisovanje" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Dopisovanje dodano" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Vrednosti %1 za prilagojeno polje ni bilo možno dodati" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Lastnika ni bilo možno zamenjati: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Prilagojenega polja ni bilo možno ustvariti" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Prilagojenega polja %1 ni bilo možno ustvariti" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Skupine ni bilo možno ustvariti" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Predloge %1 ni bilo možno ustvariti" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Zadeve ni bilo možno ustvariti. Vrsta ni določena" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Uporabnika ni bilo možno ustvariti" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Uporabnika ni bilo možno najti niti ga ustvariti" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Uporabnika ni bilo možno najti" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Atributa %1 ni bilo možno naložiti" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Prilagojenega polja %1 ni bilo možno naložiti" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Skupine ni bilo možno naložiti" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Objekta za %1 ni bilo možno naložiti" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Tega uporabnika ni bilo možno določiti kot %1 za to vrsto" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Tega uporabnika ni billo možno narediti za %1 za to zadevo" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Tega uporabnika ni bilo možno odstraniti kot %1 za to vrsto" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Tega uporabnika ni bilo možno odstraniti kot %1 za to vrsto" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Uporabniških podatkov ni bilo možno nastaviti" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Datoteke ni bilo možno priložiti" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Člana ni bilo možno dodati v skupino." #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Prilagojenega polja ni bilo možno dodati k objektu, ker je že globalen" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Transakcije %1 ni bilo možno ustvariti" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Zapisa ni bilo možno ustvariti" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Pregleda %1: %2 ni bilo možno izbrisati" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Ne najdem vrstice" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Primerne transakcije ni, preskočim" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Tega uporabnika ni možno najti" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Te vrednosti ni možno najti" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Iz baze uporabnikov ni možno naložiti %1" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Razreda %1 n imožno naložiti" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Prilagojenega polja #%1 ni možno naložiti" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Prilagojenega polja #%1 ni možno naložiti" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Prilagojenega polja %1 ni možno naložiti" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Kopije zadeve #%1 ni bilo možno naložiti" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Pregleda %1: %2 ni bilo možno naložiti" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Pregleda %1: %2 ni bilo možno naložiti." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Skupine #%1 ni bilo možno naložiti" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Skupine %1 ni bilo možno naložiti" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Povezave ni bilo možno naložiti" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Objekta %1 ni bilo možno naložii" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Uporabnika %1 ni bilo možno naložiti ali ustvariti" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Vrste ni bilo možno naložiti" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Vrste %1 ni bilo možno naložiti" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Vrste %1 ni bilo možno naložiti" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Vrste %1 ni bilo možno naložiti" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Skripte %1 ni bilo možno naložiti" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Predloge %1 ni bilo možno naložiti" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Zadeve '%1' ni bilo možno naložiti" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Transakcije #%1 ni bilo možno n" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Uporabnika ni bilo možno naložiti" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Uporabnika #%1 ni bilo možno naložiti" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Uporabnika #%1 ali uporabnika '%2' ni bilo možno naložiti" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Uporabnika #%1 ni bilo možno naložiti" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Naslova ni bilo možno ugotoviti iz niza '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Vsebine ni bilo možno zamenjati z dekriptiranimi podatki: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Vsebine ni bilo možno zamenjati s kriptriranimi podatki: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "'%1' ni bilo možno razrešiti v URI" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Osnove '%1' ni bilo možno razrešiti v URI" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Cilja '%1' ni bilo možno razrešiti v URI" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "E-pošte ni bilo možno poslati" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "%2: ni bilo možno nastaviti kot %1 opazavalca" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Privatnega ključa ni bilo možno nastaviti" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Privatnega ključa ni bilo možno resetirati" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Država" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Ustvari" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Ustvari zadeve" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Ustvari prilagojeno polje" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Ustvari prilagojeno polje za vrsto %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Ustvari nov pregled" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Ustvari novo skupino" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Ustvari novo zasebno skupino" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Ustvari novo zadevo" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Ustvari novega uporabnika" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Ustvari vrsto" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Ustvari skripto za vrsto %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Ustvari predlogo" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Ustvari zadevo" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Ustvari preglede za to skupino" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Ustvari zadeve glede na predloge te skripte" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Ustvari zasebne preglede" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Ustvari sistemske preglede" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Ustvari zadevo" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Ustvari zadevo v tej vrsti" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Ustvari zadeve brez povezave" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Ustvari, izbriši in spremeni prilagojena polja" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Ustvari, izbriši in spremeni vrste" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Ustvari, izbriši in spremeni člane zasebnih skupin" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Ustvari, izbriši in spremeni člane zasebnih skupin" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Ustvari, izbriši in spremeni uporabnike" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "Ustvari pregled" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "Ustvari skupinski pregled" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "Ustvari svoj pregled" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "Ustvari shranjeno iskanje" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "Ustvari zadevo" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Ustvarjeno" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Ustvaril" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Ustvarjeno prilagojeno polje %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Ustvarjeno v obdobju" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Ustvarjene zadeve v obdobju, grupirane po statusu" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "Ustvaril" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "Ustvarjeno relativno" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Stvarnik" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kriptografija" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Trenutne povezave" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Trenutne skripte" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Trenutni člani" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Trenutne pravice" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Trenutno iskanje" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Trenutni opazovalci" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Prilagojena polja" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Prilagojena polja za %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Prilagojena koda za čiščenje akcije" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Prilagojena koda za pripravo akcije" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Prilagojen pogoj" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Prilagojeno polje #%1 ni dodano temu objektu" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Prilagojeno polje %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Prilagojeno polje %1 ni veljavno za ta objekt" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Prilagojeno polje %1 ima vrednost." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Prilagojeno polje %1 nima vrednosti." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Prilagojenega polja %1 ni bilo možno najti" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Prilagojeno polje '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Prilagojeno polje je že dodano temu objektu" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Vrednost prilagojenega polja %1 ni bilo možno najti za polje %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Vrednosti prilagojenega polja ni bilo možno izbrisati" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Vrednosti prilagojenega polja ni bilo možno najti" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Vrednost prilagojenega polja izbrisana" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Prilagojeno polje" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "Vrednost prilagojenega polja" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Prilagodi" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Prilagodi osnove" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Prilagodi e-poštne naslove" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Prilagodi e-poštno konfiguracijo" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Geslo za dostop do baze" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Uporabniško ime za dostop do baze" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Dnevni povzetek" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Pregled" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Pregleda ni bilo možno ustvariti: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Pregleda ni bilo možno posodobiti: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Pregled posoboljen" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Pregledi" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Podatkovni strežnik" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Ime baze" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Geslo za dostop do baze za RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Vrata podatkovne baze" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tip podatkovne baze" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Uporabniško ime za dostop do baze za RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Datumski format" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "DateTime ne podpira format_cldr, programsko opremo morate nadgraditi" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "DateTime modul manjka" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "DateTime::Locale ne podpira date_format_full, programsko opremo morate nadgraditi" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "DateTime::Locale modul manjka" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datumi" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dec" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Dekriptiraj" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Privzeta predloga za samodejni odgovor" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Privzeta vrsta" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Privzet pobudnik" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Privzeta predloga za administrativni komentar" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Privzeta predloga za administrativno dopisovanje" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Privzeta predloga za dopisovanje" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Privzeta vrsta" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Privzeta predloga za transakcije" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Privzeto: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Privzeto: %1/%2 spremenjeno iz %3 na %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Privzeta oblika" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delegiranje pravic" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delegiranje specifičnih pravic, ki so ti bile dodeljene" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "Delegiraj pravice" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegiranje" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Izbriši" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Izbriši predlogo" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Izbriši preglede za to skupino" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Izbris ni uspel: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Izbriši zasebne preglede" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Izbriši označene skripte" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Izbriši sistemske preglede" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Izbriši zadeve" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Izbriši vrednosti" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "Izbriši pregled" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "Izbriši skupinski pregled" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "Izbriši svoj pregled" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "Izbriši zadevo" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Izbrisan %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Izbrisan pregled %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Izbrisane poizvedbe" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Izbrisano shranjeno iskanje" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Brisanje tega objekta bi pokvarilo referenčno integriteto" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Brisanje tega objekta bi kršilo referenčno integriteto" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Zavrni" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Od tega so odvisne" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "Od tega odvisno" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Odvisnost od %1 dodana" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Odvisnost od %1 izbrisana" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Odvisnost do %1 dodana" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Odvisnost do %1 izbrisana" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "Odvisno od" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Odvisno od" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "Odvisen od" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Pad" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Padajoče" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Opiši zadevo" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Opis" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Smer" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Onemogočeno" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Prikaži" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Prikaži listo za kontrolo dostopa" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Prikaži stolpce" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Prikaži predloge za skripte za to vrsto" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Prikaži skripte za to vrsto" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Prikaži shranjena iskanja za to skupino" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuirano pod verzijo 2 GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Naredi vse in karkoli" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Ime domene" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ne vključi http://, le naprimer 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Ne osveži domače strani." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Ne osveži rezultatov iskanja." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ne osveži te strani." #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Ne verjami temu ključu" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Prenesi" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Prenesi kot datoteko ločeno s TAB" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Prenesi dumpfile" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Zadnji rok" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "Relativni rok" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "NAPAKA: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Enostavno posodabljanje tvojih odprtih zadev" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Spremeni" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Sprememni prilagojena polja" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Spremeni prilagojena polja za %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Spremeni prilagojena polja za vse skupine" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Spremeni prilagojena polja za vse vrste" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Spremeni prilagojena polja za vse uporabnike" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Spremeni prilagojena polja za zadeve v vseh vrstah" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Spremeni povezave" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Spremeni poizvedbo" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Spremeni iskanje" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Sprememni predloge za vrsto %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Spremeni shranjena iskanja za to skupino" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Sprememni sistemske predloge" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "Urejaj shranjena iskanja" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Spremenljiv tekst" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Spreminjanje konfiguracije za vrsto %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Spreminjanje prilagojenega polja %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Spreminjanje članstva za skupino %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Spreminjanje članstva za zasebno skupino %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "Efektivni id" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Osnova ali cilj morata biti določena" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Ali nimaš pravic za pregled shranjenega iskanja %1 ali pa je identifikator napačen" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-pošta" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "E-poštni naslov je že v uporabi" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "E-poštna dostava" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "E-poštna predloga za periodične povzetke obvestil" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "E-poštni naslov" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Omogočeno" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Omogočeno (odkljukanje tega okvirčka onemogoči to prilagojeno polje)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Omogočeno (odkljukanje tega okvirčka onemogoči to skupino)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Omogočeno (odkljukanje tega okvirčka onemogoči to vrsto)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Omogočene vrste" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Omogočene vrste ki ustrezajo iskalnim kriterijem" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Omogočen status %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Kriptiraj" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Privzeto kriptiraj" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Kriptiraj/Dekriptiraj" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Kriptiraj/dekriptiraj transakcijo #%1 zadeve #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Kriptiranje onemogočeno" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Kriptiranje omogočeno" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Vnesi več vrednosti" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Vnesi več vrednosti s s samodejnim zaključevanjem" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Vnesi objekte ali URI vrednosti ki jih želiš povezati. Več vnosov loči s presledki." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Vnesi eno vrednost" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Vnesi eno vrednost s samodejnim zaključevanjem" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Vnesi vrste ali URI vrednosti ki jih želiš povezati. Več vnosov loči s predledki." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Vnesi zadeve ali URI vrednosti ki jih želiš povezati. Več vnosov loči s presledki." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Vnesi največ %1 vrednosti" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Vnesi največ %1 vrednosti s samodejnim zaključevanjem" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Napaka" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Napaka v parametrih za Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Napaka v parametrih za Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Napaka v parametrih za Ticket->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Napaka v parametrih za Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Napaka za lastnika RT: javni ključ" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Napaka: manjkajoč pregled" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Napaka: neveljavni GnuPG podatki" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Napaka: ni privatnega ključa" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Napaka: javni ključ" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Eskaliraj zadeve" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Ocenjeno" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Vsi" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Pregled zadeve ustvarjene v vrsti med dvemi datumi" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Preglej zadeve rešene v vrsti med dvemi datumi" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Preglej zadeve rešene v vrsti, grupiraj po lastniku" #: bin/rt-crontool:356 msgid "Example:" msgstr "Primer:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Poteče" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "Razširjen status" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Eksterna avtentikacija omogočena" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Dodatne informacije" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Izvleči značko zadeve" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Izvleči značke iz subjekta transakcije in jih dodaj k subjektu zadeve." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Povezava z bazo ni uspela: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Ustvarjanje atributa %1 ni uspelo" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Iskanje 'Privileged' psevdo skupine ni uspelo." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Iskanje 'Unprivileged' psevdo skupine ni uspelo." #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Nalaganje %1 %2 ni uspelo" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Nalaganje %1 %2 ni uspelo: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Nalaganje modula %1 ni uspelo. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Nalaganje objekta za %1 ni uspelo" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Nalaganje predloge ni uspelo" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Branje predloge ni uspelo" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Feb" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Izvor za vrednosti polja:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "Ime datoteke" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Ime datoteke" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Izpolni argumente" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Napolni okvirče z barvo" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Izpolni več tekstovnih polj" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Izpolni več wiki-tekstovnih polj" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Izpolni tekstovno polje" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Izpolni eno wiki-tekstovno polje" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "V to polje vnesi URL" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Izpolni največ %1 tekstovnih polj" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Izpolni največ %1 wiki-tekstovnih polj" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Končna prioriteta" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "Končna prioriteta" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Najdi vse uporabnike katerih" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Najdi skupine katerih" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Najdi ljudi katerih" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Najdi zadeve" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Konec" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Prvi" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Brezpogojna sprememba" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Oblika" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Posreduj" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Posreduj sporočilo" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Posreduj sporočilo in se vrni" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Posreduj zadevo" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Posreduj sporočila tretjim osebam" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Posreduj zadevo #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Posreduj transakcijo #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "Posreduj sporočilo" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Najdenih %quant(%1,ticket)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Najden objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frekvenca" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pet" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Petek" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Polna glava" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Generalno" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Pridobi predlogo iz datoteke" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Za uvod" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Dana %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Globalno" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Globalna konfiguracija prilagojenih polj" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Globalni portlet %1 je bil shranjen" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Globalna predloga: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG napaka. Kontaktiraj administratorja" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG integracija je onemogočena" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG težave" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG privatni ključ(i) za %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG javni ključ(i) za %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Naprej!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Pojdi na zadevo" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Graf" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Lastnosti grafa" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Grafikoni niso na voljo" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Skupina" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Skupinske pravice" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Skupina že vsebuja člana: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Skupine ni bilo moč ustvariti: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Skupina ustvarjena" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Skupina onemogočena" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Skupina omogočena" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Skupina nima takšnega člana" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Skupina ni bila najdena" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Skupinske pravice" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Skupine" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Skupine ne morejo biti člani svojih članov" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Skupine ki ustrezajo iskalnim kriterijem" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Skupine katerih član je uporabnik (označi okvirček za izbris)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Skupine katerih uporabnik ni član (označi okvirček za dodajanje)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Skupine katerim pripada uporabnik" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "Ima člana" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Glava posredovane zadeve" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Glava posredovanega sporočila" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Pozdravljen!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Pozdravljen, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Pomagaj nam nastaviti nekaj uporabnih privzetih vrednosti za RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Zgodovina" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Zgodovina skupine %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Zgodovina vrste %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Zgodovina uporabnika %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Domov" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Interval osveževanja domače strani" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "HomePhone" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Domača stran" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Ura" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Ure" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Imam %quant(%1,concrete mixer)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identiteta" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Če je odobritev zavrnjena, zavrni original in izbriši odobritve na čakanju" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Če pobudnik ni določen, ustvari zadeve s tem pobudnikom." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Če vrsta ni določena, ustvari zadeve v tej vrsti." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Če bi to orodjo imelo setgid pravice, bi lahko napadalen lokalni uporabnik uporabil to orodje za pridobitev administrativnih pravic do RT sistema" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Če že imaš delujoč RT strežnik in bazo, svetujem da izkoristiš to priložnost da preveriš ali podatkovna baza deluje in da se RT strežnik lahko poveže nanjo. Ko to opraviš, ustavi in ponovno zaženi RT strežmnik.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Če že imaš delujoč RT strežnik in bazo, svetujem da izkoristiš to priložnost da preveriš ali podatkovna baza deluje in da se RT strežnik lahko poveže nanjo. Ko to opraviš, ustavi in ponovno zaženi RT strežmnik.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Če zamenjaš vrata na katerih teče RT, boš moral ponovno zagnati strežnik da bi se lahko prijavil." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Če si zgoraj karkoli spremenil, se prepričaj da" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Če tvoja zaželena baza ni v zgornjem seznamu, to pomeni da RT ni našel lokalno nameščenega gonilnika. To lahko popraviš z uporabp %1 za prenos DBD::MySQL, DBD::Oracle ali DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Neveljavna vrednost za %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Nespremenjljivo polje" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "V prikazu vključi tudi onemogočena prilagojena polja." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "V prikazu vključu onemogočene skupine" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Vključi onemogočene skupine v prikazu" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Vključi onemogočene skupine v iskanju" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Vključi stran" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Individualna sporočila" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Obvesti RT lastnika da imajo uporabnik(i) težave z javnim ključem" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Obvesti uporabnika da pregled, na katerega se je prijavil, manjka" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Obvesti uporabnika, da ima poslano sporočilo neveljavne GnuPG podatke" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Obvesti uporabnika da ima težave z javnim ključem in ne mora sprejemati" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Obvesti uporabnika da je bilo geslo ponastavljeno" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Obvesti uporabnika da je prejel kriptirano e-pošto, mi jo imamo, nimamo pa privatnih ključev." #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Začetna prioriteta" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "Začetna prioriteta" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inicializirajo bazo" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Napaka pri vnosu" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Vnos se mora ujemati z %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Namesti RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Notranja napaka" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Notranja napaka: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Neveljaven %1: '%2' ni videti kot e-poštni naslov" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Neveljaven %1: mora biti številka" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Neveljevan tip skupine" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Neveljvani podatki" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Neveljaven objekt" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Neveljaven lastniški objekt" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Neveljaven vzrorec: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Neveljavna vrsta" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Neveljvana pravica" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Neveljavna pravica. Ne morem posplošiti pravice '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Neveljavna sintaksa za e-poštni naslov." #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Neveljavna vrednost za %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Neveljavna vrednost za prilagojeno polje" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Neveljavna vrednost za status" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Ni kriptirano" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Neverjetno pomembno je, da nepriviligirani uporabniki ne smejo poganjati tega orodja." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Predlagamo da ustvariš nepriviligiranega unix uporabnika s pravilnimi skupinskimi pravicami in RT dostopom za zagon tega orodja." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Vzame nekaj argumentov:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Nagnjeno" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Pridruži se ali opusi to skupino" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jul" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Jumbo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jun" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Pusti 'localhost' če nisi prepričan. Pusti prazno, če se želiš povezati lokalno preko 'socket'-a." #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Jezik" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Veliko" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Zadnje" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Zadnji kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Nazadnje kontaktirano" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Nazadnje posodobljeno" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Nazadnje posodobil" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Nazadnje posodobil" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "Zadnja posodobitev" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "Nazadnje posodbil" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "Zadnja posodobitev (relativno)" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Pusti prazno če želiš prejeti na tvoj trenutni e-poštni naslov (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Pusti prazno če želiš uporabiti privzeto vrednost za svojo bazo." #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Pusti prazno če želiš uporabiti privzeto uporabniško ime za bazo za ta konkretno povezavo" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Levo" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legende" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Dolžina v znakih; Uporabi '0' za prikaz vseh sporočič 'in-line', ne glede na njihovo dolžino" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Ta uporabnik ima dostop do RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Uporabnik ima določene pravice (je priviligiran)" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Pojdimo!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Povezava" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Povezava že obstaja" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Povezave ni bilo moč ustvariti" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Povezave ni bilo možno najti" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Poveži zadevo #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Poveži vrednost z" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Povezano" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "Povezano od" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "Povezano na" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Povezujem. Zahteva zavrnjena" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Povezave" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Naloži" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Naloži shranjeno iskanje:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "Naloži shranjeno iskanje" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Naloženo %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Naloženo originalno shranjeno iskanje \"%1\"" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Naloženi perl moduli" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Naloženo shranjeno iskanje \"%1\"" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Regija" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "Lokaliziran datum in čas" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Lokacija" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Prijavljen kot %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Odjavljen" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Prijava" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "Alternativni logo tekst" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Odjava" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Poišči neskladje med tipi" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "E-pošta" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Glavni tip povezav" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Nastavi lastnika" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Nastavi status" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Nastavi končni datum" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Nastavi datum rešitve" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Nastavi datum pričetka" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Nastavi datum pričetka" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Nastavi datum 'Told'" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Nastavi prioriteto" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Nastavi vrsto" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Nastavi zadevo" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Naredi to skupino vidno uporabniku" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Urejaj prilagojena polja in vrednost" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Urejanje skupin in članstva" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Urejanje lastnosti in konfiguracije ki velja za vse vrste" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Urejanje vrste in vrsti specifične lastnosti" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Urejanje shranjenih grafov" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Urejanje uporabnikov in gesel" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mar" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Označi vsa sporočila kot videna" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Vrstni red iskanja Mason predlog" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "Maksimalne vrednosti" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Največja dolžina vključenega sporočila" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maj" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Član" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Član %1 dodan" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Član %1 izbrisan" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Član dodan: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Član izbrisan" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Član ni bil izbrisan" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Član" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "Član" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Člani" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Članstvo v %1 dodano" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Članstvo v %1 izbrisano" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Članstva" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Članstva uporabnika %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Spajanje uspešno" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Spajanje ni uspelo. EffectiveId ni bilo možno nastaviti" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Spajanje ni uspelo. Statusa ni bilo možno nastaviti" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Spajaj z" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Spojeno z %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Sporočilo" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Telo sporočila ni prikazano ker je pošiljatelj tako zahteval." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Telo sporočila ni prikazano ker ni navaden tekst." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Telo sporočila ni prikazano ker je preveliko." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Višina okvirja za sporočilo" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Širina okvirja za besedilo" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Sporočila ni bilo možno zabeležiti" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Sporočilo za uporabnika" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Sporočilo zabeleženo" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Sporočila glede te zadeve ne bodo poslana ..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minimalna dolžina gesla" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minut" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Manjkajoč primarni ključ?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobilna št." #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "Mobilni telefon" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Spremeni listo za kontrolo dostopa" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Spremeni prilagojena polja ki so veljavna za %1 za vse %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Spremeni prilagojena polja ki so veljavna za vse %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Spremeni skupinske pravice" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Spremeni člane" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Spremeni pravice" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Spremeni predloge skript za to vrsto<" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Spremeni skripte za to vrsto" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Spremeni pravice uporabnika" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Spremeni prilagojeno polje za vrsto %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Spremeni skripto za vrsto %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Spremeni skripto ki velja za vse vrste" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Spremeni povezane objekte za %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Spremeni vrednost prilagojenega polja" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Spremeni preglede za to skupino" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Spremeni datume za #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Spremeni datume za zadevo # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Spremeni globalna prilagojena polja" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Spremeni globalne skupinske pravice" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Spremeni globalne skupinske pravice." #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Sprememni globalne uporabniške pravice" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Spremeni globalne uporabniške pravice." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Sprememni metapodatke skupine ali skupino izbriši" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Spremeni skupinske pravice za prilagojeno polje %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Sprememni skupinske pravice za skupino %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Spremeni skupinske pravice za vrsto %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Spremeni članski pregled za to skupino" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Spremeni lastniški RT račun" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Spremeni ljudi povezane z vrsto %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Spremeni ljudi povezane z zadevo #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Sprememni zasebne preglede" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Spremeni skripte za vrsto %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Sprememni sistemske preglede" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Spremeni predlogo %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Sprememni predloge ki veljajo za vse skupine" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Sprememni pregled %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Sprememni privzeti \"RT na kratko\" pogled" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Spremeni skupino %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Sprememni poizvedbe pregleda %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Spremeni opazovalce vrste" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Spremeni naročnino pregleda %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Spremeni uporabnika %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Spremeni zadevo # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Spremeni zadevo #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Spremeni zadeve" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Spremeni uporabniške pravice za prilagojeno polje %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Spremeni uporabniške pravice za skupino %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Spremeni uporabniške pravice za vrsto %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "Spremeni ACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "Spremeni prilagojeno polje" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "Spremeni pregled" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "Spremeni skupinski pregled" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "Spremeni svoj pregled" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "Spremeni svoje članstvo" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "Spremeni opazovalce vrste" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "Spremeni skripte" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "Spremeni sebe" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "Spremeni predlogo" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "Spremeni zadevo" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pon" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Ponedeljek" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Od ponedeljka do petka" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Več" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Več o %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Dol" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Gor" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Več" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Atribut 'Ime' je potrebno določiti" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Moje %1 zadeve" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Moj dan" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Moje odobritve" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Moji pregledi" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Moja shranjena iskanja" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "Nova vrstica" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Ime" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Ime v uporabi" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Imenovani portleti v skupini rabi" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Nikoli" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Novo" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nove povezave" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Nove odobritve na čakanju" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Novo iskanje" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Nove in odprte zadeve za %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Novo prilagojeno polje" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Nova skupina" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nova sporočila" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Novo geslo" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Obvestilo o novem geslu je bilo poslano" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Novo obvestilo:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nove pravice" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Nova skripta" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Nova predloga" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nova zadeva" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Nova zadeva ne obstaja" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Nov uporabnik je poklical" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Novi opazovalci" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Naprej" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Vzdevek" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Vzdevek" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Ne" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "%1 ni bil naložen" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Razred ni definiran" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Ni prilagojenega polja" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Prilagojeno polje ni definirano" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Skupina ni definirana" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Ni poizvedbe" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Vrsta ni definirana" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "RT uporabnik ni bil najden. Kontaktiraj RT administratorja.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Ni zadeve" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Ni predloge" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ni akcije" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Stolpec ni specificiran" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Komentar o uporabnik ni vnešen" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Ni pregledov." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Ni opisa za %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Brez detajlov" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Skupina ni določena" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Skupine, ki bi ustrezale iskalnim kriterijem, niso bile najdene." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Primernega ključa za kodiranje ni" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Ključev za ta naslov ni" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Sporočilo ni pripeto" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Ime ni določeno" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Ni potrebe po kodiranju" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Gelso ni nastavljeno" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Ni pravice za ustvarjanje vrst" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Ni pravic za ustvarjanje zadev v vrsti '%1'" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Ni pravic za izpis te zadeve" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Ni pravic za shranjevanje sistemskih shranjenih iskanj" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Ni pravic za nastavitev preferenc" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Ni pravice za posodobitev zadeve" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Uporabnik ni specificiran" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Uporabniki niso bili izbrani." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Ni privatnega ključa" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Vrste ki bi ustrezale iskalnim kriterijem ni." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Pravice niso določene" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Pravice niso bile najdene" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Pravice niso bile dodeljene." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Ni iskanja na katerem bi delovali." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Brez zadeve" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Ni ključa ali pa ni primeren za podpisovanje" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Zadeve niso bile najdene." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Tip transakcije ni bil specificiran" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ni uporabnih ključev." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Uporabnikov ki bi ustrezali iskalnim kriterijem ni." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "No value sent to _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Noben" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Brez" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Neobstoječe polje?" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Nič nadjdenega" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nisi prijavljen." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Ni nastavljen" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Ni implementirano" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Opombe" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Obvestila ni bilo možno poslati" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Obvesti administratorje Cc" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Obvesti administratorje na Cc s komentarjem" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Obvesti ljudi na Cc" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Obvesti ljudi na Cc s komentarjem" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Obvesti ostale prejemnike" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Obvesti ostale prejemnike s komentarjem" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Obvesti lastnika" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Obvesti lastnika s komentarjem" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Obvesti lastnika o zavrnjeni zadevi" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Obvesti lastnika da je bila zadeva odobrena" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Obvesti lastnika da je bila zadeva odobrena" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Obvesti lastnika, pobudnike, ljudi na Cc in administrativnem Cc" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Obvesti lastnika, pobidnike, ljudi na Cc in administravinem Cc s komentarjem" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Obvesti lastnie, ljudi na administrativnem Cc o novih zadevah ki čakajo na potrditev" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Obvesti pobudnika da so bile njegove zadeve odobrene" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Obvesti pobudnika da so bile njegove zadeve odobrene" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Obvesti pobudnike" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Obvesti pobudnike in ljudi na Cc" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Obvesti pobudnike in ljudi na Cc s komentarjem" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Obvesti me o neprebranih sporočilih" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Št. rezultatov iskanja" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ALI" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekta ni bilo možno ustvariti" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objekta ni bilo možno izbrisati" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekt ustvarjen" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekt izbrisan" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objekt tipa %1 ne more imeti prilagojenih polj" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Neskladje pri tipu objekta" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Seznam objektov je prazen" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Brez povezave" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Urejanje brez povezave" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Nalaganje brez povezave" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "Dne %1 je %2 napisal:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Ob zaprtju" #: etc/initialdata:143 msgid "On Comment" msgstr "Ob komentarju" #: etc/initialdata:115 msgid "On Correspond" msgstr "Ob dopisovanju" #: etc/initialdata:104 msgid "On Create" msgstr "Ob ustvarjanju" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Ob spremembi lastnika" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Ob spremembi prioritete" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Ob spremembi vrste" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Ob zavrnitvi" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Ob ponovnem odprtju" #: etc/initialdata:178 msgid "On Resolve" msgstr "Ob razrešitvi" #: etc/initialdata:149 msgid "On Status Change" msgstr "Ob spremembi statusa" #: etc/initialdata:109 msgid "On Transaction" msgstr "Ob transakciji" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Enkratni Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Enkratni Cc" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Prilaži le odobritve za zahtevke ustvarjene po %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Prikaži le odobritve za zahtevke ustvarjene pred %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Prikaži le prilagojena polja za:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Odprte zadeve" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Odpri URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Odpri" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Odprte zadeve" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Odprte zadeve ob dopisovanju" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opcija" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Opcije" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Naročilo" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organizacija" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Izvorna zadeva: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Izhodna e-pošta o komentarju zabeležena" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Izhodna e-pošta zabeležena" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Izhodna e-pošta" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Skozi čas se prioriteta giba proti" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Lastne zadeve" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "Postani lastnik zadeve" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Lastnik" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Lastnik '%1' nima pravic da bi postal lastnik te zadeve." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Lastnik je bil spremenjen iz %1 na %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Lastnika ni bilo možno nastaviti." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Lastnik je bil na silo zamenjan iz %1 na %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Ime lastnika" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Stran" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Stran 1 od 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Strani ni bilo možno najti" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Pozivnik" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Št. pozivnika" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Nadrejene" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Geslo" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Opomnik za geslo" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Geslo je bilo spremenjeno" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Geslo ni bilo nastavljeno." #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Geslo mora biti dolgo vsaj %1 znakov" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Geslo nastavljeno" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Geslo: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Geslo: ni pravic" #: etc/initialdata:463 msgid "PasswordChange" msgstr "PasswordChange" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Gesli se ne ujemata" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Pot do sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Ljudje" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Izvedi uporabniško-definirano akcijo" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Konfiguracija Perla" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Iskalni vrstni red za Perl knjižnjice" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Ni pravic" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Ni pravic" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Zasebni pregledi" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Zasebne skupine" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefonske številke" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Preveri URL in poizkusi znova." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Pravilno vnesi trenutno geslo." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Vnesi svoje trenutno geslo." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Možna skrita iskanja" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Nastavitve" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Nastavitve %1 za uporabnika %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Nastavitve shranjene za %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Nastavitve za uporabnika %1 so bile shranjene." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Nastavitve so bile shranjene." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Zaželen ključ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Zaželen ključ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Prepare Stubbed" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Nazaj" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Nazaj" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Uporabnika %1 ni bilo možno najti." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Natisni povzetke sporočil na STDOUT; ne pošlji jih preko e-pošte. Ne označi jih kot poslana" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Natisni to sporočilo" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioriteta" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioriteta se prične pri" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Zasebnost" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Zasebnost:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Privatni ključ" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Priviligiran" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Priviligiran status: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Priviligirani uporabniki" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Procesiranje brez transakcije; nekateri pogoji in akcije lahko ne uspejo. Razmisli o uporabi --transaction argumenta" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudo skupina za interno rabo" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Javni ključ '0x%1' je potreben za preverjanje podpisa" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Poizvedbe" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Poizvedba" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Čarovnik za poizvedbe" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Poizvedba:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Vrsta" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Vrste %1 ni bilo možno najti" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Ime vrste" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Vrste ni bilo možno ustvariti" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Vrste ni bilo možno naložiti." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Vrsta je bila ustvarjena" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Vrsta je bila onemogočena" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Vrsta je bila omogočena" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Id vrste" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Vrste ni bilo možno najti" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Pravice za vrsto" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Vrstin ključ" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "Administrativni cc vrste" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "Vrstin cc" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "Ime vrste" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "Opazovalec vrste" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Vrste" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Vrste ki jih administriram" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Vrste na katerih sem naveden kot administrativni Cc" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Hitro iskanje" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Hitro ustvarjanje zadeve" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 za %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT Administracija" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Administracijski RT e-poštni naslov" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfiguracija" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT napaka" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "Samopostrežni RT" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Velikost RT" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT na hitro" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT na hitro za uporabnika %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT lahko s tvojimi uporabniki komunicira o novih zadevah in o novih dopisovanjih povezanih z zadevami. Povej nam kje lahko najdemo sendmail (ali kompatibilen program kot je naprimer postfix). RT mora tudi vedeti koga obvestiti ko nekdo pošlje neveljavno e-pošto. To ne sme biti naslov, ki kaže nazaj v RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT lahko vključi vsebino iz oddaljene spletne storitve pri prikazu tega prilagojenega polja." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT lahko naredi iz vrednosti prilagojenih polj tudi povezave do oddaljenih storitev." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Ključne RT spremenljivke" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT ne more shraniti tvoje seje." #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT za %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT je industrijski sistem za sledenje zahtevkom, ki je načrtrovan tako da omogoča inteligentno in efektivno upravljanje z nalogami, zahtevki, poizvedbami, napakami ali s čimerkoli kar izgleda kot \"naloga\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT uporabljajo Fortune100 podjetja, majhni obrtniki, vladne agencije, izobraževalne ustanove, bolnice, neprofitne organizacije... na vseh sedmih kontinentih. Da, tudi na Antarktiki." #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT se bo povezal na bazo s tem uporabnikom." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT bo ustvaril uporabnika \"root\" in nastavil to kot njegovo geslo" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT bo iskal karkoli vneseš v iskalno polje." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT bo zamenjal %1 and %2 z id-jem in prilagojenim poljem zapisa" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT bo zamenjal __id__ and __CustomField__ z id-jem in prilagojenim poljem zapisa" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT bo uporabil ta niz za unikatno identifikacijo te namestitve in bo to uporabil pri iskanju v e-poštnih sporočilih, da se bo lahko odločil h kateri zadevi sporočilo pripada. Predlagamo da nastaviš to vrednost na ime internetne domene. (npr: domena.si)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT deluje z različnimi bazami. MySQL, PostgreSQL, Oracle in SQLite so podprte." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT/Admin/Spremeni skupino %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "RTAddressRegexp opcija v konfiguraciji se ne ujema s %1" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Pravo ime" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "Pravo ime" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Prejemnik" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Zabeleži vse posodobitve" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekurzivni član" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Referenca o %1 je bila dodana" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Referenca o %1 je bila izbrisana" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Referenca na %1 je bila dodana" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Referenca na %1 je bila izbrisana" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Sklic od" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "Sklic od" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Se sklicuje na" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "Se sklicuje na" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Osveži" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Osveži domačo stran vsakih 10 minut." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Osveži domačo stran vsaki 2 uri." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Osveži domačo stran vsaki 2 minuti." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Osveži domačo stran vsakih 20 minut." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Osveži domačo stran vsakih 5 minut." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Osveži domačo stran vsako uro." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Osveži domačo stran vsakih 10 minut." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Osveži rezultate iskanja vsaki 2 uri." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Osveži rezultate iskanja vsaki 2 minuti." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Osveži rezultate iskanja vsakih 20 minut." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Osveži rezultate iskanja vsakih 5 minut." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Osveži rezultate iskanja vsako uro." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Osveži to stran vsakih %1 minut." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Opomnik '%1' je bil dodan" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Opomnik '%1' je zaključen" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Opomnik '%1' je bil ponovno odprt" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Opomnik za zadevo #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Opomniki" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Opomniki za zadevo #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Odstrani administrativni Cc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Odstrani zaznamek" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Odstrani Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Odstrani pobudnika" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Odgovori" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Naslov za odgovor" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Odgovori pobudnikom" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Odgovori na zadeve" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "Odgovori na zadevo" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Poročila" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Pobudnik" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "Skupina pobudnika" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Pobudniki" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Zahtevki bi morali rešeni v" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Zahtevan parameter '%1' ni bil specificiran" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Ponastavi" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Ponastavi skriven avtentikacijski žeton" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Ponastavi na privzeto vrednost" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Bivališče" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Reši" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Reši zadevo #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Rešeno" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Rešeno s strani lastnika" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Rešeno v obdobju" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Rešene zadeve v obdobju, grupirano po lastniku" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Rešene zadeve, grupirane po lastniku" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "Rešeno relativno" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Odgovori" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Rezultati" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Vrni se na zadevo" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Ponovi geslo" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Vrni v prejšnje stanje" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Pravica delegirana" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Pravica dodeljena" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Pravica naložena" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Pravice ni bilo možno odvzeti" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Pravice ni bilo možno najti" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Pravica ni bila naložena." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Pravica je bila odvzeta" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Pravic ni bilo možno dodeliti za %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Vloge" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Vrstice" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Vrstic na okvir" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Vrstic na stran" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite je baza ki ne potrebuje strežnika ali konfiguracije. Priporečena je za testiranje, ne pa za produkcijske namestitve." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sob" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Sobota" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Shrani" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Shrani spremembe" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Shrani nastavitve" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Shrani kot novo" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Shranjeno %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Shranjenega iskanja %1 ni bilo možno najti" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Shranjeni grafikoni" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Shranjena iskanja" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Skripta #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Skripta je bila ustvarjena" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Polja skripte" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Skripta je bila izbrisana" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Skripte" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Skripte in prejemniki" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Skripte ki so veljavne za vse vrste" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Išči" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Shranjene nastavitve" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Išči odobritve" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Išči zadeve" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Išči zadeve. id številke, vrste po imenu, lastnike po uporabniškem imenu in pobudnike po e-poštnih naslovih." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Opcije iskanja" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Rezultati iskanja grupirani po %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Interval osveževanja rezultatov iskanja" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Iskanje po celotnem tekstu zadeve lahko traja nekaj časa, vendar če je to potrebno, lahko iščeš katerokoli besedo v polni zgodovini zadeve tako da vpišeše fulltext:beseda." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Skrivni avtentikacijski žeton" #: bin/rt-crontool:350 msgid "Security:" msgstr "Varnost:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Poglej tudi:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Poglej vrednosti prilagojenih polj" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Poglej prilagojena polja" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Poglej točna izhodna e-poštna sporočila in njihove prejemnike" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Poglej zasebne komentarje zadeve" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Poglej povzetke zadev" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "Vidi prilagojeno polje" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "Vidi pregled" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "Vidi skupino" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "Vidi skupinski pregled" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "Vidi svoj pregled" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "Vidi vrsto" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Izberi" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Izberi tip baze" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Izberi prilagojeno polje" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Izberi skupino" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Izberi vrsto" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Izberi vrsto za novo zadevo" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Izberi uporabnika" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Izberi drug jezik" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Izberi prilagojena polja za vse vrste" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Izberi prilagojena polja za vse uporabnikove skupine" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Izberi prilagojena polja za vse uporabnike" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Izberi prilagojena polja za vse zadeve v vseh vrstah" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Izberi prilagojena polja za transakcije na zadevah v vseh vrstah" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Izberi skupino" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Izberi več vrednosti" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Izberi eno vrednost" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Izberi vrste ki naj bodo vidne na \"RT na hitro\" strani" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Izberi skripto" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Izberi predlogo" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Izberi do %1 vrednosti" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Izbrana prilagojena polja" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Izbrani ključ ni veljaven ali pa ne obstaja več." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Izbrani objekti" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Izbire so bile spremenjene. Prosim shrani svoje spremembe." #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Uspešno pošlji e-pošto" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Lastniku in vsem opazovalcem pošlji e-pošto" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Lastniku in vsem opazovalce pošlji e-pošto kot komentar" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Pobudnikom in ljudem na Cc pošlji e-pošto." #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Pobudnikom in ljudem na Cc pošlji e-pošto kot komentar" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Pobudnikom pošlji sporočilo" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Ljudem ki so eksplicitno naveden pod Cc in Bcc pošlji e-pošto" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Ljudem na Cc pošlji e-pošto" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Ljudem na Cc pošlji e-pošto kot komentar" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Ljudem na administrativnem Cc pošlji e-pošto" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Ljudem na administrativnem Cc pošlji e-pošto kot komentar" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Lastniku pošlji e-pošto" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Sep" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Nastavitve" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "Ali naj RT pošlje e-pošto za spremembe na zadevah ki jih narediš?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Prikaži" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Prikaži stolpce" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Prikaži rezultate" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Prikaži lastnosti zadev na nivoju %1" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Prikaži odobrene zahtevke" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Prikaži tudi" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Prikaži osnove" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Prikaži zavrnjene zahtevke" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Prikaži detajle" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Prikaži opise povezav" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Prikaži najstarejšo zgodovino najprej" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Prikaži zahtevke na čakanju" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Prikaži zahtevke ki čakajo na druge odobritve" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "Prikaži ACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "Prikaži zavihek Odobritve" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "Prikaži zavihek Konfiguracija" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "Prikaži izhodno pošto" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "Prikaži shranjena iskanja" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "Prikaži skripte" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "Prikaži predlogo" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "Prikaži zadevo" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "Prikaži komentarje zadeve" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Rezalnik" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Rezalnik potrebuje direktorij v katerega zapisuje svoje izločke. Preveri da %1 obstaja in da je v ta direktorij možno pisati." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Rezalnik potrebuje direktorij v katerega zapisuje svoje izločke. Preveri da %1 obstaja in da je v ta direktorij možno pisati." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Stranski stolpec" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Podpiši" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Podpiši (privzeto)" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Prijavi se kot pobudnik zadeve ali kot CC na zadevi oz. vrsti" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Prijavi se kot Admin CC na zadevi ali vrsti." #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Podpis" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Podpisovanje onemogočeno" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Podpisovanje omogočeno" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Enostavno iskanje" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "En" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Ime mesta" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Velikost" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Preskoči menu" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Preskakovanje je onemogočilo uporabnika" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Majhno" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Nekateri brskalniki lahko naložijo vsebino le iz iste domene kot je RT strežnik." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Nekaj je šlo narobe. Kontaktiraj sistemskega administratorja" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Razvrsti" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Razvrščanje" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Izvor" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Določi ali gre za dnevno ali tedensko zaganjanje" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Preglednica" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Stanje" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Pričetek" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "Relativni pričetek" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Prične se ob" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "Prične se ob (relativno)" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Stanje" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Status" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Sprememba statusa" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Status je bil spremenjen iz %1 na %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Prevzemi" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Prevzemi zadeve" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "Ukradi zadevo" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Korak %1 od %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Prevzeto od %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Prevzeto od %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Zadeva" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Značka zadeve" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Zadeva spremenjena na %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "Značka zadeve" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Značka zadeve spremenjena na %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Shrani" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Prijavi se" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Prijavi se na pregled %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Prijavi se na preglede" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "Prijavi se na pregled" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Prijavljen na pregled %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Prijava" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Prijave ni bilo možno ustvariti: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Podatki so bili uspešno dekodirani" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Podatki so bili uspešno kodirani" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ned" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Nedelja" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "SuperUporabnik" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Suspendirano" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Sistemska konfiguracija" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Sistemski pregledi" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Sistemske privzete vrednosti" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Sistemska napaka" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Sistemska napaka: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Sistemska orodja" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Sistemska napaka. Pravica ni delegirana." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Sistemska napaka. Pravica ni dodeljena." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Sistemske skupine" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Sistemske pravice" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup za interno uporabo" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Vzemi" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Vzemi zadeve" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "Vzemi zadevo" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Vzeto" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Povej nam kako naj najdemo bazo ki jo bo RT uporabljal" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Predloga" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Predloga #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Predloga #%1 izbrisana" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Predloge '%1' ni bilo možno najti" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Predloga je prazna" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Predloga je obvezen argument" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Predloga je bila prebrana" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Napaka pri branju predloge" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Predloge" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstovna datoteka ni prikazana ker je onemogočene v nastavitvah" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "To je že trenutna vrednost" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "To ni vrednost za to prilagojeno polje" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "To je enako kot vrednost" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Ta uporabnik že ima to pravico" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Ta uporabnik je že %1 za to vrsto" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Ta uporabnik je že %1 za to zadevo" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Ta uporabnik ni %1 za to vrsto" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Ta uporabnik ni %1 za to zadevo" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Ta vrsta ne obstaja" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Zadeva ima nerešene odvisnosti" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Ta uporabnik je že lastnik te zadeve" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Ta uporabnik ne obstaja" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Ta uporabnik je že priviligiran" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Ta uporabnik je že nepriviligiran" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Ta uporabnik je sedaj priviligiran" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Ta uporabnik je sedaj nepriviligiran" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Ta uporabnik ne sme biti lastnik zadev v tej vrsti" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "To ni numeričen id" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Osnove" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "CC prejemnik zadeve" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Geslo administratorja baze" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Administrativni CC zadeve" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Domensko ime podatkovnega strežnika (npr 'db.domena.si')" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Naslednji ukaz bo našel vse aktivne zadeve v vrsti 'generalno' in nastavil njihovo prioriteto na 99 če na njih bilo aktivnost v zadnjih 4 urah:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Naslednje poizvedbe so bile izbrisane in bodo umaknjene iz pregleda ko bo le ta posobljen." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Naslednje poizvedbe morda ne bodo vidne vsem uporabnikom ki lahko vidijo ta pregled." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Ključ je bil onemogočen" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Ključ je bil preklican" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Ključ je potekel" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Ključ je verodostojen" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Ključ je popolnoma verodostojen" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Nova vrednost je bila nastavljena." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Lastnik zadeve" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Stran ki jo iščeš ne obstaja" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Pobudnik zadeve" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Nastavitve ki si jih izbral so shranjene v %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Sistem ne more podpisati izhodnih e-sporočil. To običajno nakazuje da je geslo nastavljeno napačno, ali pa da je GPG Agent nedosegljiv. Prosim obvesti sistemskega administratorja. Naslovi ki povzročajo težave so:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Več ključev je primernih za kodiranje." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Zadeva ima neprebrana sporočila" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Ta ključ ima majhno verodostojnost" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Za kodiranje ni primernega ključa." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Obstaja en primeren kluč, vendar nivo verodostojnosti ni nastavljeno." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Ti komentarji običjano niso vidni uporanbiku" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Te nastavitvene možnosti obsegajo osnove da se RT postavi. Vedeti moramo ime RT instalacije in ime domene kjer se bo RT nahajal. Nastaviti boš moral tudi geslo za privzetega administrativnega uporabnika." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "To prilagojeno polje ne velja za ta objekt" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Ta lastnost je na voljo le sistemskemu administratorju" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "To lahko pomeni da v direktorij %1 ni možno pisati ali pa da manjka tabela v bazi." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "To sporočilo bo poslano..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "To orodje omogoča uporabnikom zagon poljubnih perl modulov znotraj RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Ta transakcija nima vsebine" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "%1 zadev z najvišjo prioriteto za tega uporabnika" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Čet" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Četrtek" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Zadeva" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Zadeva #%1 Jumbo posodobitev: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Relacijski graf zadeve #%1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Zadeva #%1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Zadeva #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Zadeva %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Zadeve %1 ustvarjena v vrsti '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Zadeva %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Prilagojena polja zadeve" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Zgodovina zadeve # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Zadeva rešena" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Iskanje zadev" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Transakcije zadeve" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Vsebina zadeve" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Vrsta vsebine zadeve" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Zadeve ni bilo možno ustvariti zaradi interne napake" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Zadeve ni bilo možno naložiti" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Izpis zadeve" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Medapodatki zadeve" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Status zadeve je bil spremenjen" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "Iskalni modul TicketSQL" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Zadeve" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Zadeve %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Zadeve %1 od %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Zadeve ustvarjene po" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Zadeve ustvarjene pred" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Zadeve rešene po" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Zadeve rešene pred" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Zadeve ki so odvisne od te odobritve:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Ocenjen čas" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Čas na voljo" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Porabljen čas" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Čas za izpis" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "Ocenjen čas" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "Preostali čas" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "Delovni čas" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Časovna cona" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Naslov" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Za" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Za vprašanja o podpori, izobraževanju, razvoju ali licenciranju, prosim kontaktiraj %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Povedano" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "Povedano (relativno)" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Orodja" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Skupaj" #: etc/initialdata:249 msgid "Transaction" msgstr "Transakcija" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transakcija %1 počiščena" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transakcija je bila ustvarjena" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Prilagojena polja transakcije" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create ni uspelo, ker nisi specificar tipa objekta in id-ja" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "Datum transakcije" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transakcije ni možno spremeniti" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Verodostojnost" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Tor" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Torek" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tip" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Tip je bil spremenjen iz '%1' v '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Ni možno določiti tipa objekta ali id-ja" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Na pregled %1 se ni možno naročiti: ni pravic" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Ni implementirano" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix prijava" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Neznano (verodostojna vrednost ni določena)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Neznano (ta vrednost je nova sistemu)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Neznano kodiranje vsebine %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Neznano polje: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Umakni omejitev" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Neomejeno" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Neimenovano iskanje" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Nepriviligirano" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Neizbrano prilagojeno polje" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Neizbrani objekti" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Nenastavljen privatni ključ" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Odvzeto" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Posodobi" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Posodobi graf" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Posodobi zadevo" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Posodobi tip" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Posodobi obliko in išči" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Posodobi več zadev" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Posodobitev ni zabeležena." #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Posodobi zadevo" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Posodobi zadevo #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Posodobi zadevo #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Posodobitev tipa ni bilo niti dopisovanje niti komentar." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "Posodobi status" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Posodobljeno" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Posodovljeno shranjeno iskanje \"%1\"" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Prenos" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Prenesi več datotek" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Prenesi več slik" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Prenesi eno datoteko" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Prenesi eno sliko" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Prenesi do %1 datotek" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Prenesi do %1 slik" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Prenesi svoje spremembe" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Poraba: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Uporaba SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Uporabi css pravila za izpis monospace teksta in z originalnim oblikovanjem. To ne deluje dobro v IE6 in svetujem uporabo prejšnje opcije" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Uporabi privzeto (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Uporabi ostala RT administrativna orodja" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Uporabi privzeto sistemsko nastavitev (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Uporabi to za zaščito oblike enostavnega besedila" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Uporabnik" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Uporabnika '%1' ni bilo možno najti." #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Uporabnik (ustvarjen - pretečen)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Uporabniško definirano" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Uporabniško definirani pogoji in akcije" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Uporabniške pravice" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Uporabnik je zahteval neznano posodobitev za prilagojeno polje %1 za %2 objekt #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Uporabnika ni bilo možno ustvariti: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Uporabnik je bil ustvarjen" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Uporabniško definirane skupine" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Uporabnik je bil onemogočen" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Uporabnik je bil omogčen" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Uporabnik ima prazen e-poštni naslov" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Uporabnik naložen" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Uporabnikovi GnuPG ključi" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Uporabniško definirane skupine" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Uporabniško ime" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Format uporabniškega imena" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Uporabniki" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Uporabniki ki se ujemajo s kriteriji iskanja" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Uporabljam transakcijo #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Veljavna poizvedba" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validacija" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Vrednost" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Vrednosti" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Spremenljivka" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Različna RT poročila" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Verzija" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Poglej preglede za to skupino" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Poglej zasebne preglede" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Poglej sistemske preglede" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "Višina WYSIWYG urejevalnika" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG urejevalnik" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Opozorilo! To NI podpisano!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Opozorilo: e-poštni naslov ni nastavljan, tako da tega pregleda ne boš dobil dokler ne bo nastavljen." #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Opazuj" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "Opazuj kot administrativni cc" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Opazovalec" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "Opazovalčeva skupina" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Opazovalci" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Bazo lahko najdemo in se povežemo z njo kot administrator. Klikneš lahko na 'Prilagodi osnove' in nadaljuješ s prilagoditvami." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Spletna vrata" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Sre" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Sreda" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Tedenski povzetek" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Dobrodošel v RT" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Stvari ki sem jih danes naredil" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Kaj je RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Kam naj posreduje e-pošto ko je RT ne more obdelati?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Ko RT pošlje e-pošto nastavi From: in Reply-To: glavo da se prejemniki lahko v diskusijo vključijo le z odgovorom na e-pošto. RT uporablja različne naslove za odgovore in komentarje. Ti se lahko spremenijo za vsako vrsto. Te naslove je potrebno nastaviti v rt-mailgate programu." #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Ko je zadeva ustvarjena" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Ko je odobritvena zadeva ustvarjena, obvesti lastnika in administrativni cc da zadeva čaka na odobritev" #: etc/initialdata:110 msgid "When anything happens" msgstr "Ko se karkoli zgodi" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Ko klikneš na 'Preveri povezvljivost z bazo' lahko pride do manjše zakasnitve" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Kadarkoli je zadeva zaprta" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Karadkoli je zadeva zavrnjena" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Kadarkoli je zadeva pononvno odprta" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Kadarkoli je zadeva rešena" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Kadarkoli se spremeni lastnik zadeve" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Karadkoli se prioriteta zadeve spremeni" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Kadarkoli se vrsta zadeve spremeni" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Kadarkoli se status zadeve spremeni" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Karadkoli se zgodi uporabniško definiran pogoj" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Kadar pridejo komentarji" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Kadar pride dopisovanje" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Kje naj najdem sendmail binarno datoteko." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Popolni izbris" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Služba" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "Službeni telefon" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Delal" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Da" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Si že lastnik te zadeve" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Izhodno e-pošto boš kodiral, vendar so problemi s prejemnikovimi javnimi ključi. Te probleme je potrebno rešiti, ali prejemnike umakniti ali pa poslati sporočilo brez kodiranja." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Izhodno e-pošto boš kodiral, vendar so problemi s prejemnikovimi javnimi ključi. Te probleme je potrebno rešiti, ali prejemnike umakniti ali pa poslati sporočilo brez kodiranja." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Nisi avtoriziran uporabnik" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Skočiš lahko na prvo neprebrano sporočilo ali na prvo neprebrano sporočilo in označiš vsa sporočila kot videna." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Urediš lahko tudi prednastavljeno iskanje" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Gesla ne moreš nastaviti." #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Prerazporediš lahko le zadeve katerih lastnik si (ali zadeve brez lastnika)" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Vzameš lahko le zadeve brez lastnika" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Nimaš SuperUser pravic" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Našel si %1 zadev v vrsti %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Iz RT-ja si odjavljen" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Nimaš pravic za ustvarjanje zadev v tej vrsti" #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Zahtevkov v tej vrsti ne smeš ustvariti" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Vnesi administrativno geslo" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Iti bi moral direktno na stran za prijavo. Prijavil se boš lahko z uporabniškim imenom %1 in geslom ki si ga nastavil pred tem." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Iti bi moral direktno na stran za prijavo. Prijavil se boš lahko z uporabniškim imenom root in geslom ki si ga nastavil pred tem." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Izberi bazo s katero si ti ali lokalno administrator najbolj domač." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "To vidiš ker si strežnik zagnal brez delujoče baze. Najverjetneje je to prvič. Če klikneš Let's go!, te bo RT vodil skozi namestitev RT strežnika in baze." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "To vidiš ker si strežnik zagnal brez delujoče baze. Najverjetneje je to prvič. Če klikneš \"%1\", te bo RT vodil skozi namestitev RT strežnika in baze." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Lahko se ponovno prijaviš" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Tvoje trenutno geslo" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Tvoje geslo ni nastavljeno." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Tvoje uporabniško ime ali geslo ni pravilno" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Pošta" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Dol]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Gor]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[brez]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "dodaj 
 element okrog navatnih tekstovnih prilog"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "po"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "dovoli ustvarjanje shranjenih iskanj"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "dovoli nalaganje shranjenih iskanj"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "kot dovoljeno %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "stolpični"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "pred"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "od spodaj navzgor"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "označi ta okvir za določanje tega prilagojenega polja vsem objektom."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "označi ta okvirček za ostranitev prilagojenega polja vsem objektom; potem lahko izbereš specifične objekte"

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "označi za dodajanje"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "klikni za označevanje/odznačevanje vseh objektov hkrati"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "zaprte"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "kratko"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "ključne nastavitve"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "prilagojeno polje '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "dnevno"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "dnevno ob %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dnevi"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "izbrisano"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "prikaži oblikovane tekstovne priloge"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "se ne ujema"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "prenos"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "enak"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "napaka: ne moreš dol"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "napaka: ne moreš levo"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "napaka: ne moreš gor"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "napaka: nič za izbrisati"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "napaka: nič za premakniti"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "napaka: nič za spremeniti"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "vsak"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "vtičnik izveden uspešno"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "polno"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "večji kot"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "skupina '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "ur"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "je"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "ni"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "ključ onemogočen"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "ključ pretečen"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "ključ preklican"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "od leve proti desni"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "manj kot"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "majhno"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "se ujema"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maksimalna globina"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minut"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "mesečno"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "mesečno (dan %1) ob %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "meseci"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "nikoli"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "novo"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "ne"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "brez imena"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "brez"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "ni enako kot"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nič"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "objekti so bili uspešno odstranjeni"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "na"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "na dan"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "en"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "odprte"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "odpri/zapri"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "ostalo..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "zasebna skupina '%1' za uporabnika '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "tortni"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "vtičnik je vrnil prazen seznam"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "vrsta %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "zavrnjeno"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "rešeno"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "od desne proti levi"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "poglej seznam objektov spodaj"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "prikaži zavihek Odobritve"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "prikaži zavihek Konfiguracija"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "konfiguracija mesta"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "na mestu"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "vrstice povzetkov"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistem %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "sistemska skupina '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "klicoča komponenta ni specificirala zakaj"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "privzeti naslovi ki bodo v From: in Reply-To: glavi"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "privzeti naslovi ki bodo v From: in Reply-To: glavi dopisne pošte"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "zadeva #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "od zgoraj navzdol"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "končno"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "neopisana skupina %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "neomejeno"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "uporabnik %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "detajlirano"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "tedensko"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "tedensko (na %1) ob %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "tedni"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "vrata na katerih bo poslušal spletni strežnik, npr. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "z glavo"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "leta"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "da"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/et.po0000664000175000017500000103467512262650742013762 0ustar  chmrrchmrr# Estonian translation for rt
# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:12+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: Estonian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (avalik võti puudub!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (mitteusaldatav!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1. %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %3 %2 %6 %4:%5"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3.%2 %7 %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "lisati %1 %2"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 eest"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1: %2 muudeti %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "kustutati %1 %2"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "kustutati %1 %2"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 nimetati ümber, uus %3"

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 salvestati."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 muudeti."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 malliga %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) saatja %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (muutmata)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (paneelilt %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Muuda LogToScreen konfiguratsioonivalikut"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - argument %2 jaoks"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - väljasta muutused standardväljundisse STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - määra soovitud malli id"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - kas soovid kasutada 'esimest', 'viimast' või 'kõiki' toiminguid"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - anna malli nimi või id, mida soovid kasutada"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - määratle, millist tegevusmoodulit soovid kasutada"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Määratle tegevustüüpide loetelu, mida soovid kasutada (kasuta eraldajana koma)"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Määratle tingimusmoodul, mida soovid kasutada"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 Määratle soovitud otsingumoodul"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Töölauad"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "Laaditi automaattegevus %1"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 lisati %2 väärtuseks"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 on juba olemas ja sisaldab RT tabelid, kuid ei sisalda RT metaandmeid. Järgnev 'Initialize Database' samm võib lisada metaandmed olemasolevasse andmebaasi. Kui see sobib, siis jätkamiseks kliki 'Customize Basics' allpool."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 näib olevat kohalik objekt, kuid seda pole andmebaasist võimalik leida."

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 näib olevat täielikult algväärtustatud. Me ei soovi luua tabeleid ega lisada metaandmeid, kuid võid jätkata RT kohandamist klikkides 'Kohanda põhiandmed'."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 - %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 muudeti väärtusest %2 %3-ks"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 diagramm %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 koopia"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 põhikonfiguratsioon"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 ei ole võimalik anda väärtust %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 ei ole võimalik seada olekut lahendatuks. RT andmebaas võib olla vigane."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "Loodi %1"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "Kustutati %1"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 keelatud"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 ei ole olemas."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 lubatud"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "Minu %1 tähtsaimat juhtumit"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 on töövahend, mis reageerib välisest allikatest pärit juhtumitele."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 on abiprogramm, mis saadab kõik edasilükatud RT sõnumid lühendatuna kasutajakohase ülevaatena"

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 on meiliaadress, mille kaudu RT leob meili. Lisades selle kui '%2' loob meilisilmuse."

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 ei ole enam selle järjekorra %2."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 ei ole enam selle juhtumi %2."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 ei ole enam välja %2 väärtus"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 uusimat omanikuta juhtumit"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objekti"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 koha konfiguratsioon"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 uuendus: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 uuendus: Muutusteta"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "Uuendati %1"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 lahendab kõik juhtumid rühmas."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1-i %2 objekti"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1 %2 %3 objekti"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1 töölauad"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1 talletatud otsingud"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: manused on määratlemata"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Uus juhtum%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hour)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' on oleku vigane väärtus"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Vali eemaldatavad)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Vali adressaadid, kellele keelata teadete saatmine)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Vali adressaadid, kellele lubada teadete saatmine)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Kirjuta juhtumite id-numbrid või URL-d tühikutega eraldatuna)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Kui jääb tühjaks, võetakse väärtus %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Väljad puuduvad)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Liikmed puuduvad)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Automaattoimingud puuduvad)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Mallid puuduvad)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Puudub)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Saadab uuenduse koopia haldurite komaga eraldatud meiliaadressidele. Need inimesed saavad tulevased uuendused.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Saadab sellest uuendusest koopia komaga eraldatud loetelus näidatud meiliaadressidele. Need inimesed saavad edaspidised uuendusteated.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Kasuta neid välju tingimuste ja toimigute jaoks, kui valid 'Kasutaja kirjeldatud'."

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Meili ei saadeta)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(iga)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(tühi)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(avalik võti puudub!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(väärtus puudub)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(väärtused puuduvad)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(ainult üks juhtum)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(ootel %quant(%1,muu juhtum))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(ootab kinnitust)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(nõutav)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(usalda: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(nimetu)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(mitteusaldusväärne!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id on mittesoovitatud võti ja seda ei saa kasutada koos --template võtmega"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--toimingu argument võib olla ainult 'first', 'last' või 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Kõik iCal etteanded sisaldavad salajast märki, mis volitab sind. Kui ühe iCal etteande URL paljastub, siis võid saada uue salajase märgi, mis katkestab kõik olemasolevad iCal etteanded allpool.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Tühi mall" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Parooli ei seatud, seega ei saa kasutaja sisse logida" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "Ei leia ACE-d" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEsid saab ainult luua ja kustutada." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "AND" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Enda andmed" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Juurdepääsu kontroll" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Toiming" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Ei leia toimingut '%1'" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Toiming sooritati.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Toiming on kohustuslik argument" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Valmistati ette toiming..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Lisa koopia adminile" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Lisa järjehoidja" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Lisa koopia" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Lisa veerud" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Lisa tingimus" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Lisa failid" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Lisa tellija" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Lisa väärtus" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Lisa kõigile järjekordadele ühine automaattoiming" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Lisa kommentaar või vastus valitud juhtumeile" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Lisa liikmed" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Lisa uued jälgijad" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Lisa need tingimused" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Lisa need tingimused ja otsi" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Lisa väärtused" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Lisa, kustuta ja muuda objektide erivälja väärtusi" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Lisati vastuaja selle järjekorra jaoks kui %1" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Lisati selle juhtumi eest vastutaja kui %1" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Aadress" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Aadress1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Aadress2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Koopia haldurile" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Halduri kommentaar" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Halduri vastus" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Haldusjärjekorrad" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Haldus-/üldine konfiguratsioon" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "Koopia haldurite rühmale" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "Koopia haldusele" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "Halduse koopiad" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminCustomField" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administratiivne koopia" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administratiivne parool" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Täpsem" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Koguja" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Kõik heakskiidud on saadud" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Kõik järjekorrad" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Kõik iCal etteanded sisaldavad salajast märki, mis volitab sind. Kui ühe iCal etteande URL paljastub, siis võid saada uue salajase märgi, mis katkestab kõik olemasolevad iCal etteanded allpool." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Kõik otsingukriteeriumile vastavad järjekorrad" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Krüpteeritud" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Ja/või" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Rakendatud" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Kehtib" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Rakendub kõigile objektidele" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Kehtesta" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Rakenda üldiselt" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Kehtesta oma muudatused" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Heakskiit" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Heakskiit #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Heakskiit #%1: märkusi ei talletatud süsteemi vea tõttu" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Heakskiit #%1: märkused talletati" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Kiidetud heaks" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Kinnitus omaniku jaoks on valmis" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Tagasi lükatud" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Nõustu" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Apr" #: NOT FOUND IN SOURCE msgid "April" msgstr "Aprill" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Kasvav" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Kasvav järjestus" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Omista ja eemalda eriväljad" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Kaasa" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Lisa fail" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Lisatud fail" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Manus" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Manuse '%1' laadimine ebaõnnestus" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Loodi manus" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Manuse failinimi" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Manused" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Manuste salastamine on välja lülitatud" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Atribuut kustutati" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Aug" #: NOT FOUND IN SOURCE msgid "August" msgstr "August" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Automaatvastus" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Automaatvastus tellijale" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Saadaval" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Pimekoopia" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Tagasi" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Põhitõed" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Veendu, et salvestad oma muudatused" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC ettevõtte logo" #: etc/initialdata:214 msgid "Blank" msgstr "Tühi" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Sisu" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Rasvane" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Järjehoidja" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Meeldejäetud juhtumid" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Lühipäised" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Hulkmuudatus" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Osta tugiteenus" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "RT kasutab vaikimisi süsteemi ajavööndit. Siin on võimalik seada üldist vaikeväärtust kuupäeva ja aja näitamiseks RT-s. Kasutajad võivad valida oma eelistustes erineva ajavööndi." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Ei saa laadida talletatud otsingut \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Ei saa muuta süsteemi kasutajaid" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Kas vastutaja näeb seda järjekorda" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Ei saanud lisada erivälja väärtust ilma nimeta" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Ei leia kollektsiooni klassi '%1' jaoks" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Ei leia salvestatud otsingut" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Juhtumit ei saa ühendada iseendaga" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Ei saa salvestada %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Ei saa salvestada seda otsingut" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Ei ole võimalik kirjeldada samaaegselt alust ja eesmärki" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Juhtumeid ei saa luua passiivsesse järjekorda" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Ei saa luua kasutajat: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategooriad põhinevad" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategooria" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Kategooria on eemaldatud" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Koopia" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Koopiad" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Muuda" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Muuda salasõna" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Märgi kõik" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontrolli andmebaasi ühendust" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Kontrolli andmebaasi volitused" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Märgista kustutamaks" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Märgista eemaldamaks õigust" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Kontrolli andmebaasi õigusi" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Järglased" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Vali andmebaasisüsteem" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Vali andmebaasimootor" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Linn" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Tühjenda" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tühjenda kõik" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Toimigu teostamiseks kliki allpool \"Lõpeta paigaldus\"" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Loomaks süsteemi andmebaasi ja lisamaks metaandmed kliki \"Alusta andmebaas\". See võib kesta mõne hetke." #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Sulge aken" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Suletud" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Suletud juhtumid" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Valik: Vali või sisesta mitu väärtust" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Valik: Vali või sisesta üks väärtus" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Valik: Vali või sisesta kuni %1 väärtust" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Kommentaar" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Kommentaari aadress" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Kommentaari aadress" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Kommenteeri juhtumeid" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "CommentAddress" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "CommentOnTicket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentaarid" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Kommentaar (ei saadeta nõudjale)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Kommentaar (ei saadeta nõudjale)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Kommentaarid kasutaja kohta" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Lisati kommentaar" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Peidetud Commit" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Tingimus" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "E leia tingimust '%1'" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Tingimus on kohustuslik argument" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Tingimus klapib..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Tingimus, toiming ja mall" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Seadistusfail %1 on lukustatud" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Seadistused" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Kinnita" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Loodi ühendus" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Sisu" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Sisu tüüp" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "ContentType" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Nõudja aadress" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "CorrespondAddress" #: etc/initialdata:283 msgid "Correspondence" msgstr "Kirjavahetus" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Lisati kirjavahetus" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Ei saa lisada uut erivälja väärtust: %1" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Ei saa vahetada omanikku: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Ei saa luua kohandatud välja" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Ei saa luua kohandatud välja: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Ei saa luua rühma" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Ei saa luua malli: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Ei saa luua juhtumit keelatud järjekorda \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Ei saa luua juhtumit. Järjekord on määramata." #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Ei saa luua kasutajat" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Ei leia või ei saa luua seda kasutajat" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Ei leia seda vastutajat" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Ei saa laadida %1 tunnust" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Ei saa laadida kohandatud välja %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Rühma laadimine ebaõnnestus" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Ei saa laadida objekti %1 jaoks" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Ei saa muuta vastutajat %1-ks selle järjekorra jaoks" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Ei saa muuta vastutajat %1-ks selle juhtumi jaoks" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Ei saanud eemaldada selle järjekorra vastutajat kui %1" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Ei saanud eemaldada selle juhtumi vastutajat kui %1" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Ei saanud seada kasutajainfot" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Ei õnnestunud lisada manust" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Liikme rühma lisamine ebaõnnestus" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Ei ole võimalik rakendada objektile kohandatud välja, kuna see on juba üldine." #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Tehingu loomine ebaõnnestus: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Kirje loomine ebaõnnestus" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Ei õnnestunud kustutada töölauda %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Ei leia rida" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Ei õnnestunud leida sobivat tõlget, jääb vahele" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Ei leidnud seda vastutajat" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Ei leia seda väärtust" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Ei leidnud %1 kasutajate andmebaasist.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Klassi %1 laadimine ebaõnnestus" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Ei õnnestunud laadida kohandatud välja #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Ei saanud laadida kohandatud välja #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Ei õnnestunud laadida kohandatud välja #%1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Juhtumi #%1 koopia laadimine ebaõnnestus" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Ei õnnestunud laadida töölauda %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Ei õnnestunud laadida töölauda %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Rühma #%1 laadimine ebaõnnestus" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Rühma %1 laadimine ebaõnnestus" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Lingi laadimine ebaõnnestus" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Objekti %1 laadimine ebaõnnestus" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Kasutaja laadimine või loomine ebaõnnestus: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Järjekorra laadimine ebaõnnestus" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Ei õnnestunud laadida järjekorda #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Ei õnnestunud laadida järjekorda %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Ei õnnestunud laadida järjekorda '%1'" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Skripti #%1 laadimine ebaõnnestus" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Ei saanud laadida malli #%1" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Ei saanud laadida juhtumit '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Ei saanud laadida toimingut #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Ei saanud laadida kasutajat" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Ei saanud laadida kasutajat #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Ei saanud laadida kasutajat #%1 või '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Ei saanud laadida kasutajat '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Ei õnnestunud lugeda aadressi sõnest '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Ei õnnestunud asendada sisu lahtisalastatud andmetega: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Ei õnnestunud asendada sisu salastatud andmetega: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Ei õnnestunud lahendada '%1' URI-ks" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Ei õnnestunud lahendada alust '%1' URI-ks" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Ei suutnud lahendada '%1' URI-ks" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Meili saatmine ebaõnnestus" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Ei õnnestunud seada %1 jälgijat: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Ei õnnestunud seada privaatvõtit" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Privaatvõtme eemaldamine ebaõnnestus" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Riik" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Loo" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Loo juhtumid" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Loo CustomField" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Loo CustomField järjekorra %1 jaoks" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Loo uus töölaud" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Loo uus rühm" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Loo uus isiklik rühm" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Ava uus juhtum" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Loo uus kasutaja" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Loo järjekord" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Loo juhis järjekorra %1 jaoks" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Loo mall" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Loo juhtum" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Loo töölauad selle rühma jaoks" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Loo uued juhtumid selle juhise malli alusel" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Loo isiklikud töölauad" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Loo süsteemi töölaud" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Loo juhtum" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Loo juhtumid sellesse järjekorda" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Loo juhtumid vallasrežiimis" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Loo, kustuta ja muuda kohandatud välju" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Loo, kustuta ja muuda järjekordi" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Lisa, kustuta ja muuda suvalise kasutaja isiklike rühmade liikmeid" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Loo, kustuta ja muuda isiklike rühmade liikmeid" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Loo, kustuta ja muuda kasutajaid" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "Loo töölaud" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "Loo rühma töölaud" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "Loo oma töölaud" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "Loo salvestatud otsing" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "CreateTicket" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Loodud" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Looja" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Loodi väli %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Loodi ajavahemikul" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Ajavahemikul loodud juhtumid rühmitatuna oleku järgi" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CreatedBy" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CreatedRelative" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Looja" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Krüpto" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Jooksvad lingid" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Jooksvad skripid" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Praeguse liikmed" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Praegused õigused" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Praegune otsing" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Praegused vaatlejad" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Omaloodud väljad" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Omaloodud väljad %1 jaoks" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Omaloodud toimingu lõpetuskood" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Omaloodud toimingu ettevalmistuskood" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Omaloodud tingimus" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Kohandatud väli #%1 ei ole rakendatud sellele objektile" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Omaloodud väli %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Kohandatud väli %1 ei kehti selle objekti kohta" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Kohandatud väli %1 omab väärtust." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Kohandatud väli %1 ei oma väärtust." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Ei leidnud kohandatud välja %1" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Kohandatud väli '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Kohandatud väli on juba rakendatud objektile" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Kohandatud välja väärtust %1 ei ole võimalik leida välja %2 jaoks" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Ei saanud kustutada kohandatud välja väärtust" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Ei leidnud kohandatud välja väärtust" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Kohandatud välja väärtus kustutati" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Kohanda" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Kohanda põhiandmed" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Kohanda meiliaadressid" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Kohanda meilikonfiguratsioon" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA parool" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA kasutajanimi" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Päevakokkuvõte" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Näidikulaud" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Ei õnnestunud luua näidikulauda: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Ei õnnestunud uuendada näidikulauda: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Näidikulaud uuendati" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Näidikulauad" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Andmebaasi host" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Andmebaasi nimi" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Andmebaasi parool RT jaoks" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Andmebaasi port" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Andmebaasi tüüp" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Andmebaasi kasutajanimi RT jaoks" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Kuupäeva vorming" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "DateTime ei toeta format_cldr, selle funktsionaalsuse kasutamiseks pead uuendama tarkvara" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Puudub DateTime moodul" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Puudub DateTime::Locale moodul" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Kuupäevad" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "dets" #: NOT FOUND IN SOURCE msgid "December" msgstr "detsember" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Dekrüpti" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Vaikimisi automaatvastuse mall" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Vaikimisi järjekord" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Vaikimisi nõudja" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Vaikimisi administraatori kommentaari mall" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Administraatori vaikimisi kirjavahetuse mall" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Kirjavahetuse vaikimisi mall" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Vaikimisi järjekord" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Vaikimisi toimingu mall" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Vaikimisi: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Vaikimisi: %1/%2 muudetud %3-st %4-ks" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delegeeritud õigused" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delegeeri teatud sulle antud õigused" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegeerimine" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Kustuta" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Kustuta mall" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Kustuta selle rühma näidikulauad" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Kustutamine ebaõnnestus: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Kustuta isiklikud näidikulauad" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Kustuta valitud skripid" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Kustuta süsteemi näidikulauad" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Kustuta juhtumid" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Kustuta väärtused" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Kustutati %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Kustutati näidikulaud %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Kustutati päringud" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Kustutati salvestatud otsing" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Selle objekti kustutamine lõhub viiteterviklikkuse" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Selle objekti kustutamine rikub viiteterviklikkuse" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Keeldu" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Sõltuv" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Lisati %1 sõltuvus" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Kustutati %1 sõltuvus" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Lisati sõltuvus %1-st" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Kustutati sõltuvus %1-st" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Sõltub" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Alanevalt" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Kirjelda juhtumit allpool" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Kirjeldus" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Suund" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Keelatud" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Näita" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Näita juurdepääsulist" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Näita veerud" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Näita selle järjekorra skripi malle" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Näita selle järjekorra skripid" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Näita selle rühma talletatud otsingud" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Levitatakse GNU GPL versiooni 2 all." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Tee midagi või kõike" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Doomeninimi" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ära lisa http://, vaid ainul hosti nimi nagu 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Ära värskenda kodulehte" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Ära värskenda otsingutulemusi" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ära uuenda (refresh) seda lehte." #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Ära usalda seda võtit üldse" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Laadi alla" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Laadi alla kui tabulaatoriga eraldatud fail" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Laadi alla tõmmisfail" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Tähtaeg" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "VIGA: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Sinu lahtiste juhtumite lihtne uuendamine" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Muuda" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Muuda erivälju" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Muuda %1 erivälju %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Muuda kõikide rühmade erivälju" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Muuda kõikide päringute erivälju" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Muuda kõikide kasutajate erivälju" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Muuda kohandatud välju kõigi järjekordade juhtumites." #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Linkide redigeerimine" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Muuda päringut" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Muuda otsingut" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Muuda järjekorra %1 malle" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Muuda selle rühma salvestatud otsinguid" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Muuda süsteemi malle" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Muudetav tekst" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Järjekorra %1 konfiguratsiooni muutmine" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Kohandatud välja %1 muutmine" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Rühma %1 liikmelisuse muutmine" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Isikliku rühma %1 liikmelisuse muutmine" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Kas alus või eesmärk peab olema antud" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Sule ei ole kas õigust vaadata salvestatud otsingut %1 või identifikaator on mittekorrektne" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Meiliaadress" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Meiliülevaade" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Meiliaadress on kasutusel" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Meili kohaletoimetamine" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Meili mall perioodiliste teadete kokkuvõtte jaoks" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Lubatud" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Lubatud (mittelubamine keelab selle kohandatud välja kasutamise)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Lubatud (mittelubamine keelab selle rühma kasutamise)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Lubatud (mittelubamine keelab selle järjekorra)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Lubatud järjekorrad" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Otsingukriteeriumile vastavad lubatud järjekorrad" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Lubatud olek %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Krüpti" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Krüpti vaikimisi" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Krüpti/dekrüpti" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Salasta / ava juhtumi #%2 toiming #%1" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Krüptimine on keelatud" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Krüptimine on lubatud" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Sisesta mitu väärtust" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Sisesta mitu väärtust automaatlõpetusega" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Sisesta objektid või URI-d, mis viitavad neile. Kasuta eraldajana tühikut." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Sisesta üks väärtus" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Sisesta üks väärtus automaatlõpetusega" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Sisesta järjekorrad või URI-viited, mida järjekorda ühendada. Eralda need tühikuga." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Sisesta juhtumid või URI-viited, mida juhtumitega ühendada. Eralda need tühikutega." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Sisesta kuni %1 väärtust" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Sisesta kuni %1 väärtust automaatlõpetusega" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Viga" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Viga Queue->AddWatcher parameetrites" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Viga Queue->DeleteWatcher parameetrites" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "VigaTicket->AddWatcher parameetrites" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Viga Ticket->DeleteWatcher parameetrites" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "RT omanikule: vigane avalik võti" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Viga: näidikulaud puudub" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Vigased GnuPG andmed" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Viga: puudub isiklik võti" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Viga: avalik võti" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Eskaleeri juhtumid" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Hinnanguline" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Kõik" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Vaata läbi järjekorda antud ajavahemikul loodud juhtumid" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Vaata läbi järjekorras juhtumid, mis on lahendatud antud ajavahemikul" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Vaata läbi järjekorras lahendatud juhtumid, rühmitus omanike kaupa" #: bin/rt-crontool:356 msgid "Example:" msgstr "Näide:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Määra aegumine" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Väline autentimine on lubatud." #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Lisainfo" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Võta välja teema lipik" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Võta välja lipikud toimingu teemast ja lisa need juhtumi teemale" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Andmebaasiga ühendumine ebaõnnestus: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "%1 atribuudi loomine ebaõnnestus" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Ei leia 'Privileged' kasutajate pseudorühma" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Ei leia 'Unprivileged' kasutajate pseudorühma" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Ei õnnestunud laadida %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Ei õnnestunud laadida %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Mooduli %1 laadimine ebaõnnestus. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Objekti laadimine %1 jaoks ebaõnnestus" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Malli laadimine ebaõnnestus" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Malli parsimine ebaõnnestus" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "veebr" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Välja väärtuste allikas:" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Faili nimi" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Täida argumendid" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Täida kastikesed värviga kasutades" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Täida tekstilahtrid" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Täida vikitekstilahtrid" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Täida tekstilahter" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Täida vikitekstilahter" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Sisesta välja URL" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Täida kuni %1 tekstilahtrit" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Täida kuni %1 vikitekstilahtrit" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Lõplik prioriteet" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Leia kõik kastuajad, kes" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Leia rühmad, mille" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Leia inimesed, kelle" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Leia juhtumid" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Lõpeta" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Esimene" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Sunni muudatus" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Vorming" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Edasi" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Edasta sõnum" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Edasta sõnum ja naase" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Edasta juhtum" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Edasta sõnumid kolmanda(te)le isiku(te)le" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Edasta juhtum #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Edasta toiming #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Leiti %quant(%1,juhtum)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Leitud objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Sagedus" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Reede" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Reede" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Täielik päis" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Üldine" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Võta mall failist" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Alustame siit" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Omistatud %1-le" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Globaalne" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Üldine kohaldatud välja konfigureerimine" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Üleüldine portlet %1 salvestati." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Üleüldine mall: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG viga. Võta ühendust administraatoriga." #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG integratsioon ei ole lubatud" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG probleemid" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG privaatvõti %1 jaoks" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG avalik võti %1 jaoks" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Mine" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Mine!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Mine juhtumi juurde" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagramm" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagrammi omadused" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Diagrammid pole saadaval." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Rühm" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Rühma õigused" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Rühmas on juba liige: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Rühma ei saa luua: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Rühm loodi" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Rühm keelati" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Rühm lubati" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Rühmas pole sellist liiget" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Rühma ei leitud" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Rühma õigused" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Rühmad" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Rühm ei saa olla oma liikme liige" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Otsingutingimusele vastavad rühmad" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Rühmad, mille liige kasutaja on (kustutamiseks ristita kast)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Rühmad, mille liige kasutaja ei ole (lisamiseks ristita kast)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Rühmad, kuhu kasutaja kuulub" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Edastatud juhtumi päis" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Edastatud juhtumi päis" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Tere!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Tere %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Aita meil seadistada mõned kasulikud RT vaikeväärtused" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Ajalugu" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Rühma %1 ajalugu" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Järjekorra %1 ajalugu" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Kasutaja %1 ajalugu" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Kodu" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "Kodune telefon" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Avalehe uuendamise intervall" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Avaleht" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Tund" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Tunnid" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "" #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identiteet" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Kui" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Kui nõudja pole antud, loo juhtumid selle nõudjaga." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Kui järjekorda ei ole antud, siis loo juhtumid sellesse järjekorda" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Kui see vahend oleks setgid, siis vaenulik kohalik kasutaja võiks kasutada seda vahendit RT administraatori õiguste saamiseks." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Kui oled muutnud RT porti, siis on vaja server taaskäivitada võimaldamaks sisselogimist." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Kui oled uuendanud midagi ülalpool, siis veendu, et" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Lubamatu väärtus %1 jaoks" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Muutumatu väli" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "Mitteaktiivsed juhtumid" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Kaasa keelatud kohandatud väljad loetellu." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Kaasa keelatud rühmad loetellu." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Kaasa keelatud järjekorrad loetellu." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Kaasa otsingusse keelatud kasutajad." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Lisa lehekülg" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Pane kaasa alamteemad" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Individuaalsed sõnumid" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Teavita RT omanikku, et kasutaja(te)l on probleeme avalike võtmetega" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Teavita kasutajat, et tema tellitud näidikute paneel puudub" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Teavita kasutajat, et tema saadetud sõnum on vigaste GnuPG andmetega" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Teavita kasutajat, et tal on avaliku võtmega probleem ning ta ei saa vastu võtta salastatud sisu." #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Teavita kasutajat, et tema salasõna lähtestati" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Teavita kasutajat, et saime salastatud meili ja meil ei ole lahtisalastamiseks salajast võtit" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Esialgne prioriteet" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Algväärtusta andmebaas" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "Sisendit ei ole võimalik ip-aadressina tõlgendada" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Sisestusviga" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Sisend peab vastama %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Paigalda RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Sisemine viga" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Sisemine viga: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Vigane %1: '%2' ei näe meiliaadressi moodi välja" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Vigane %1: see peaks olema arv" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Vigased andmed" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Vigane objekt" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Vigane omanikobjekt" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Vigane muster: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Vigane järjekord" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Vigane õigus" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Vigane õigus. Ei suuda normaliseerida õigust '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Vigane meiliaadressi süntaks" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Vigane '%1' väärtus" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Vigane kohandatud välja väärtus" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Vigane oleku väärtus" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Ei ole salastatud" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "See on erakordselt tähtis, et priviligeerimata kasutajatel ei oleks lubatud käivitada seda töövahendit." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "See vajab mitut argumenti:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kursiiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "jaan" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Ühine rühmaga või lahku rühmast" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "juuli" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Hiigelsuur" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "juuni" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Jära 'localhost', kui sa pole kindel. Jäta tühjaks ühendumaks lokaalselt soketi kaudu." #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Keel" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Suur" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Viimane" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Viimane kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Viimati kontakteerutud" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Viimati uuendatud" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Viimane uuendaja" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Viimane uuendaja" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Jäta tühjaks, et saata oma jooksvale meiliaadressile (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Jäta tühjaks, et kasutada andmebaasi jaoks vaikeväärtust" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Jäta see nii kasutamaks vaikimisi dba kasutajanime sinu andmebaasi jaoks" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Vasak" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Pikkus märkides; kasuta '0' näitamaks kõiki teateid vaatamata pikkusele" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Luba sellel kasutajal kasutada RT-d" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Lase käia!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Viit" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Viit on juba olemas" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Ei saa luua viita" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Ei leia viita" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Seo juhtum #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Seo väärtused" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Seotud" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Sidumine. Ei ole lubatud" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Viited" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Laadi" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Laadi salvestatud otsing:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Laaditi %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Laaditi algupärane \"%1\" salvestatud otsing" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Laaditi perli moodulid" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Laadi salvestatud otsing \"%1\"" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Keeleseadistused" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Asukoht" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Sisselogitud kui %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Väljalogitud" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Logi sisse" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Logi välja" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Otsingutüübi mittevastavus" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Kirjad" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Sidemete peamine liik" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Määra see kuupäev tähtajaks" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Määra see kuupäev lahendamise päevaks" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Määra see kuupäev alustamise päevaks" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Määra see kuupäev alustamise päevaks" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Määra prioriteet" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Tee järjekord" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Tee see rühm kasutajale nähtavaks" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Halda kohandatud välju ja nende väärtusi" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Halda rühmasid ja rühmade liikmeid" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Halda kõigile järjekordadele rakenduvaid omadusi ja konfiguratsiooni" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Halda järjekordi ja järjekorrakohaseid omadusi" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Halda salvestatud graafikuid" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Halda kasutajaid ja salasõnu" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "märts" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Kõik sõnumid märgiti loetuks" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Mason malli otsingu järjestus" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mai" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Liige" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Lisati liige %1" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Kustutati liige %1" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Lisati liige: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Liige kustutuati" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Liiget ei kustutatud" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Rühma liige" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Liikmed" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Lisati liikmelisus %1-s" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Kustutati liikmelisus %1-s" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Liikmelisused" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Kasutaja %1 liikmelisus" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Mestimine õnnestus" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Mestimine ebaõnnestus. Ei saanud seada EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Mestimine ebaõnnestus. Ei saanud seada Status" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Mesti" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Mestitud %1-sse" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Sõnum" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Sõnumi keha ei näidata, kuna see pole lihtne tekst." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Sõnumi keha ei näidata, kuna see on liiga suur." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Sõnumikasti kõrgus" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Sõnumikasti laius" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Sõnumit ei õnnestunud salvestada" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Sõnum kasutajale" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Sõnum salvestati" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Sõnumid selle juhtumi kohta ei saadeta..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Vähim salasõna pikkus" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "minutit" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Puudub peavõti?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobiil" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Muuda juurdepääsuloetelu" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Muuda rühma õigusi" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Muuda liikmeid" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Muuda õigusi" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Muuda selle järjekorra skripi malle" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Muuda selle järjekorra skrippe" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Muuda kasutaja õigusi" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Muuda järjekorra %1 kohandatud välja" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Muuda järjekorra %1 skrip" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Muuda skrippi, mis kehtib kõigi järjekordade suhtes" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Muuda %1 assotsieeritud objekte" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Muuda kohandatud välja väärtusi" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Muuda selle rühma näidikulaudu" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Muuda #%1 kuupäevi" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Muuda juhtumi #%1 kuupäevi" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Muuda üldisi kohandatud välju" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Muuda üldrühma õigusi" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Muuda üldrühma õigusi" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Muuda üldkasutaja õigusi" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Muuda üldkasutaja õigusi." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Muuda rühma metaandmeid või kustuta rühm" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Muuda kohandatud välja %1 rühmaõigusi" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Muuda rühma %1 rühmaõigusi" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Muuda järjekorra %1 rühmaõigusi" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Muuda selle rühma liikmete nimekirja" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Muuda tema oma RT kontot" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Muuda järjekorraga %1 seotud inimesi" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Muuda juhtumiga #%1 seotud inimesi" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Muuda isiklikke näidikuid" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Muuda järjekorra %1 skrippe" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Muuda kõigi järjekordade jaoks kehtivaid skrippe" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Muuda süsteemi näidikuid" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Muuda malli %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Muuda kõigi järjekordade suhtes kehtivaid malle" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Muuda näidikulauda %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Muuda vaikimisi \"RT esmapilgul\" vaadet" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Muuda rühma %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Muuda näidikulaua %1 päringuid" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Muuda järjekorra vaatlejaid" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Muuda tellimus näidikulauale %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Muuda kasutajat %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Muuda juhtumit #%1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Muuda juhtumit #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Muuda juhtumeid" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Muuda kohandatud välja %1 kasutajaõigusi" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Muuda rühma %1 kasutajaõigusi" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Muuda järjekorra %1 kasutajaõigusi" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Moodul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "E" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "esmaspäev" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "esmaspäevast reedeni" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Veel" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Rohkem infot %1-st" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Liigu alla" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Liigu üles" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Mitu võimalust" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Pead kirjeldama atribuudi 'Name'" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Minu %1 juhtumit" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Minu päev" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Minu kinnitused" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Minu näidikulauad" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Minu talletatud otsingud" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "reavahetus" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Nimi" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Nimi on kasutusel" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Mitte kunagi" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Uus" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Uued lingid" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Uus ootel kinnitus" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Uus otsing" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "%1 uued ja avatud juhtumid" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Uus kohandatud väli" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Uus rühm" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Uued sõnumid" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Uus parool" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Uue parooli teade saadeti välja" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Uus meeldetuletus:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Uued õigused" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Uus skripp" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Uus mall" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Uus juhtum" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Uut juhtumit pole olemas" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Uued vaatlejad" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Edasi" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Hüüdnimi" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Ei" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "%1 ei laaditud" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Klass on kirjeldamata" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Puudub kohandatud väli" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Rühm on kirjeldamata" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Päring puudub" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Järjekord on kirjeldamata" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Ei leia RT kasutajat. Võta ühendust RT administraatoriga.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Teema puudub" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Mall puudub" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Toiming puudub" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Veerg on kirjeldamata" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Selle kasutaja kohta kommentaarid puuduvad" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Näidikulauad puuduvad" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Kirjeldus puudub %1 jaoks" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Detailid puuduvad" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Rühm on kirjeldamata" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Otsingukriteeriumile vastavaid rühmi ei leitud." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Ei leia salastamiseks sobivat võtit" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Selle aadressi jaoks võti puudub" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Sõnumit pole lisatud" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Nime pole antud" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Pole vaja salastada" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Parool määramata" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Järjekorra loomise õigus puudub" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Puudub õigus luua juhtumit järjekorda '%1'" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Puudub õigus selle juhtumi vaatamiseks" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Puudub õigus talletada süsteemi ulatuses otsingut" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Puudub õigus seada eelistusi" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Puudub õigus juhtumi muudatuse vaatamiseks" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Vastutaja on määramata" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Vastutaja on valimata." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Privaatvõti puudub" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Otsingukriteeriumile vastavat järjekorda ei leitud." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Õigusi pole määratud" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Ei leitud õigusi" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "teemat pole" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Juhtumit ei leitud." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Toimingu liik on kirjeldamata" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Puuduvad kasutuskõlbulikud võtmed." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Otsingukriteeriumile vastavat kasutajat ei leitud." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Mitte keegi" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Puudub" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Olematu väli?" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Ei leitud" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Pole sisse logitud." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Pole määratud" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Pole veel teostatud." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Märkused" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Ei saanud saata teadet" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Teade AdminCc-dela kommentaarina" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Teavita Cc-d" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Teavita Cc-d kommentaarina" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Teavita omanikku" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Teavita omanikku kommentaarina" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Teavita omanikku tema tagasilükatud juhtumist" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Teavita omanikku, et tema juhtum on kinnitatud ja valmis edasi töötlemiseks" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Teavita omanikku, et tema juhtum on kinnitatud" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Teata omanikule, nõudjale, koopia ja admin koopia saajale kommentaarina" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Teata omanikele ja administraatoritele nende kinnitust vajavatest juhtumitest" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Teata nõudjale, et tema juhtum on kinnitatud kõigi kinnitajate poolt" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Teata nõudjale, et tema juhtum on kinnitatud mõne kinnitaja poolt" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Teata nõudjale" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Teata nõudjale ja koopia saajatele" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Teata nõudjale ja koopia saajatele kommentaarina" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "nov" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Otsingutulemuste arv" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "VÕI" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekti ei olnud võimalik luua" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Ei saanud kustutada objekti" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekt loodi" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekt kustutati" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "%1 tüüpi objekt ei saa omada kohandatud välju" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Objekti tüüp ei klapi" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektide loetelu on tühi" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "okt" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Vallasrežiimis" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Vallasmuudatused" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Vallasüleslaadimine" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "%2 kirjutas %1 kohta:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Sulegemisel" #: etc/initialdata:143 msgid "On Comment" msgstr "Kommenteerimisel" #: etc/initialdata:115 msgid "On Correspond" msgstr "" #: etc/initialdata:104 msgid "On Create" msgstr "Loomisel" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Omaniku muutumisel" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Prioriteedi muutumisel" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Järjekorra muutumisel" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Tagasilükkamisel" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Taasavamisel" #: etc/initialdata:178 msgid "On Resolve" msgstr "Lahendamisel" #: etc/initialdata:149 msgid "On Status Change" msgstr "Oleku muutumisel" #: etc/initialdata:109 msgid "On Transaction" msgstr "Toimingul" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Ühekordne pimekoopia" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Ühekordne koopia" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Näita kinnitusi ainult pärast %1 tehtud päringute kohta" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Näita kinnitusi ainult enne %1 tehtud päringute kohta" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Näita kohandatud välju:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Avatud juhtumid" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Ava URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Ava see" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Avatud juhtumid" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Kirjavahetusega seoses avatud juhtumid" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Valik" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Valikud" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Järjestatud" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organisatsioon" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Lähtejuhtum: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Kommentaari kohta registreeriti väljuv meil" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Registreeriti väljuv meil" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Väljuv meil" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Oma juhtumid" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Omanik" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Omanik muutus %1-st %2-ks" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Ei saanud seada omanikku" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Omanik muudeti jõuga %1-st %2-ks" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Lehekülg" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Lk 1/1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Lehte ei leitud" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Peiler" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Eellased" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Parool" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Parooli vihje" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Parool muudeti" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Parool pole määratud" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Parool peab olema vähemalt %1 märgi pikkune" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Parool määratud" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Parool: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Parool: ei ole luba" #: etc/initialdata:463 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Paroolid ei klapi." #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Sendmaili asukoht" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Inimesed" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Soorita kasutaja määratud toiming" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perli konfiguratsioon" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Perli teekide ostsingu järjestus" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Õigused puuduvad" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Õigused puuduvad" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Isiklikud näidikulauad" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Isiklikud rühmad" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefoninumbrid" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Kontrolli URL üle ja proovi uuesti" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Palun sisesta oma parool korrektselt." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Palun sisesta oma parool." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Võimalikud peidetud otsingud" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Eelistused" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Kasutaja %2 %1 eelistused" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Eelistused %1 jaoks talletati." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Kasutaja %1 eelistused salvestati." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Eelistused salvestati." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Eelistatud võti: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Eelistatud võti" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Eelmine" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Eelmine" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Ei leitud vastutajat %1" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Prindi see sõnum" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Tähtsus" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Tähtsus algab" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privaatsus:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Salajane võti" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Eesõigustatud" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Eesõigustatud olek: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Eesõigustatud kasutajad" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Sisemiselt kasutatav pseudorühm" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Allkirja kontrollimiseks on vajalik avalik võti '0x%1'" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Päringud" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Päring" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Päringu koostaja" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Päring:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Järjekord" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Järjekorda %1 ei leitud" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Järjekorra nimi" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Järjekord on juba olemas" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Ei saanud luua järjekorda" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Ei saanud laadida järjekorda." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Järjekord loodi" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Järjekorra id" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Järjekorrad" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Minu haldatavad järjekorrad" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Kiirotsing" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Juhtumi kiirloomine" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT haldamine" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "RT halduri meiliaadress" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT viga" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT suurus" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT esmapilgul" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT kasutaja %1 esmapilgul" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT %1 jaoks" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT/administreeri/muuda rühma %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Tegelik nimi" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Saaja" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Märgi üles kõik muudatused" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekursiivne liige" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Viide %1 kaudu lisati" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Viide %1 kaudu kustutati" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Viide %1-le lisati" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Viide %1-le kustutati" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Viidatud" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Värskenda" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Värskenda esilehte iga 10 minuti järel" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Värskenda esilehte iga 120 minuti järel" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Värskenda esilehte iga 2 minuti järel" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Värskenda esilehte iga 20 minuti järel" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Värskenda esilehte iga 5 minuti järel" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Värskenda esilehte iga 60 minuti järel" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Värskenda otsingu tulemusi iga 10 minuti järel" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Värskenda otsingu tulemusi iga 120 minuti järel" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Värskenda otsingu tulemusi iga 2 minuti järel" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Värskenda otsingu tulemusi iga 20 minuti järel" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Värskenda otsingu tulemusi iga 5 minuti järel" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Värskenda otsingu tulemusi iga 60 minuti järel" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Värskenda otsingu tulemusi iga %1 minuti järel" #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Meeldetuletus '%1' lisati" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Meeldetuletus '%1' valmis" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Meeldetuletus '%1' avati uuesti" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Meeldetuletusjuhtum #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Meeldetuletused" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Juhtumi #%1 meeldetuletused" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Eemalda AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Eemalda järjehoidja" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Eemalda Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Vasta" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Vastusaadress" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Vasta nõudjatele" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Vasta juhtumile" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Raportid" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Nõudja" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Nõudjad" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Kohustuslik parameeter '%1' on kirjeldamata" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Taasta" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Lähtesta vaikeväärtustele" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Elukoht" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Lahenda" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Lahenda juhtum #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Lahendatud" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Lahendatud omaniku poolt" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Lahendatud juhtumid, rühmitatud omanike kaupa" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Vasta" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Tulemused" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Sisesta parool uuesti" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Võta tagasi" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Õigus delegeeriti" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Rollid" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Read" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Laup" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "laupäev" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Salvesta" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Salvesta muudatused" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Salvesta eelistused" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Salvesta uuena" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Salvestati %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Ei leitud salvestatud otsingut %1" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Salvestatud otsingud" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Skrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Loodi skrip" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Skripi väljad" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Skrip kustutati" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Skripid" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Skripid ja adressaadid" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Skripid, mis kuuluvad kõigi järjekordade juurde" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Otsing" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Kinnituste otsing" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Juhtumite otsing" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Otsingu valikud" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Otsingu tulemused rühmitatuna %1 järgi" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Otsingutulemuste värskendusintervall" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Vaata ka:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Vaata kohandatud välja väärtusi" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Vaata kohandatud välju" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Vaata juhtumi varjatud kommentaare" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Vaata juhtumi kokkuvõtet" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Vali" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Vali andmebaasi tüüp" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Vali kohandatud väli" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Vali rühm" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Vali järjekord" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Vali uue juhtumi jaoks järjekord" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Vali kasutaja" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vali muu keel" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Vali kõikide järjekordade jaoks kohandatud väljad" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Vali kõikide kasutajarühmade jaoks kohandatud väljad" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Vali kõikide kasutajate jaoks kohandatud väljad" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Vali rühm" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Vali mitu väärtust" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Vali üks väärtus" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Vali järjekorrad \"RT ühe silmapilguga\" lehel näitamiseks" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Vali mall" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Vali kuni %1 väärtust" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valitud kohandatud väljad" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Valitud võti kas pole usaldatud või ei ole enam olemas" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Valitud objektid" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Valikud on muudetud. Palun salvesta muudatused" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Meil saadeti edukalt" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Saada meil omanikule ja kõigile jälgijatele" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Saada meil omanikule ja kõigile jälgijatele kommentaarina" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Saada meil algatajatele ja Cc-dele" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Saada meil algatajatele ja Cc-dele kommentaarina" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Saadab sõnumi algatajatele" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Saadab meili eraldi loetud Cc ja Bcc-dele" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Saadab meili Cc-dele" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Saadab meili Cc-dele kommentaarina" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Saadab meili administratiivsetele Cc-dele" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Saadab meili administratiivsetele Cc-dele kommentaarina" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Saadab meili omanikule" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "sept" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Sätted" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Näita" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Näita veerud" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Näita tulemused" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Näita kinnitatud nõuded" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Näita hüljatud päringud" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Näita üksikasju" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Näita lingi kirjeldused" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "" #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "" #: etc/initialdata:249 msgid "Transaction" msgstr "" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Teisipäev" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tüüp" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "" #: lib/RT/User.pm:262 msgid "User created" msgstr "" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:110 msgid "When anything happens" msgstr "" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "" #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr ""

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr ""

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr ""

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr ""

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr ""

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr ""

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr ""

#: lib/RT/Date.pm:346
msgid "hours"
msgstr ""

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr ""

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr ""

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr ""

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr ""

#: lib/RT/Queue.pm:83
msgid "new"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr ""

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr ""

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr ""

#: lib/RT/Date.pm:338
msgid "sec"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr ""

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr ""

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr ""

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr ""

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr ""

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "mis porti veebiserver kuulab, näiteks 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "päistega"

#: lib/RT/Date.pm:362
msgid "years"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr ""

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/zh_CN.po0000664000175000017500000134440112262650742014342 0ustar  chmrrchmrrmsgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:28+0000\n"
"Last-Translator: sunnavy \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " 已删除 %1。"

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 已更名为 %2。"

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 已保存。"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (没有公钥!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (不被信任的!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: NOT FOUND IN SOURCE
msgid "#%1"
msgstr "#%1"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: NOT FOUND IN SOURCE
msgid "$1"
msgstr "$1"

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$prefix %1"

#: NOT FOUND IN SOURCE
msgid "%*(%1,group ticket)"
msgstr "%*(%1) 件参与的申请单"

#: NOT FOUND IN SOURCE
msgid "%*(%1,ticket) due"
msgstr "%*(%1) 件限期完成的申请单"

#: NOT FOUND IN SOURCE
msgid "%*(%1,unresolved ticket)"
msgstr "%*(%1) 件尚未解决的申请单"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%4-%2-%3 %1"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%7-%2-%3 %4:%5:%6 %1"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%2 已创建为 %1"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2之前"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1已从%2改为%3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%2 已自%1删除"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2已删除"

#: NOT FOUND IN SOURCE
msgid "%1 %2 of group %3"
msgstr "%3 群组的 %1 %2"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 重命名为 %3"

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2已保存"

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2已更新"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "条件:%1 | 动作:%2 | 模板:%3"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 这份申请单\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) - %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (未更改)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (来自窗格%2)"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "显示第 %1 - %2 笔"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - 调整LogToScreen配置选项"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - 传递给%2的一个参数"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - 将更新状态输出到 STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - 指定要使用的模板编号"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify if you want to use either 'first' or 'last' tarnsaction"
msgstr "%1 - 指定要使用的更改为 'first' (第一项) 或 'last' (最后一项)"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - 指定你要使用第一个,最后一个还是所有事务"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - 指定您想在模板中使用的名字或者编号"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - 指定要使用的动作模块"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - 指定你要使用由逗号(,)分隔的transactions类型列表"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - 指定要使用的条件模块"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - 指定要使用的搜索模块"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify the type of a transaction you want to use"
msgstr "%1 - 指定要使用的更改类型"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 表单"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT%2版,%4 版权所有,1996-%3。"

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "加载脚本 %1"

#: NOT FOUND IN SOURCE
msgid "%1 Total"
msgstr "共 %1 笔"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "创建%1作为%2的值"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on"
msgstr "别名 %1 需要可用的申请单编号"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on "
msgstr "别名 %1 需要可用的申请单编号 "

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on (from %2) %3"
msgstr "别名 %1 需要可用的申请单编号以处理 %3(出自 %2)"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 存在并且已经有了RT的数据库表,但是其中没有RT的元数据。稍后的'初始化数据库‘步骤能够往里面加入元数据。如果这正是你想要的,点击下面的'自定基本项'继续自定RT。"

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 存在但是没有RT的数据库表。稍后的'初始化数据库'步骤能够创建数据库表并加入元数据。如果这正是你想要的,点击下面的'自定基本项'继续自定RT。"

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1是个本地对象,但却不在数据库里"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 已经完全初始化了。不需要再创建任何的数据库表或者加入元数据,点击下面的'自定基本项'继续自定RT."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 (%2)"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 的值从%2改为 %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 已由'%2' 改为 '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1由%2记录"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1复制"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 核心配置"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "无法将%1设定为 %2。"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't init a transaction (%2)\\n"
msgstr "%1 无法初始更新 (%2)\\n"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 无法将现况设成已解决。RT 数据库内容可能不一致。"

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1已创建"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1已删除"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1已停用"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1不存在."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1已启用"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "我拥有的前%1份待处理申请单"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "前 %1 份待处理申请单..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "前 %1 份送出的申请单..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets pending my approval..."
msgstr "前 %1 份待批准申请单..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1是从外部定时程序(如cron)来对申请单进行操作的工具。"

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1是一个由cron运行的工具,可以分派所有延期的通知生成每个用户的摘要。"

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1是RT接收邮件的地址,加到%2会导致邮件循环发送"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1已不再是此队列的%2."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1已不再是此申请单的%2."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1已不再是自定字段%2的值"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1 不是一个有效的生命周期"

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 不是一个合法的队列编号。"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1分钟"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 最近更新的文章"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 最新的文章"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "前%1份待认领的申请单"

#: NOT FOUND IN SOURCE
msgid "%1 not shown"
msgstr "没有显示 %1"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1对象"

#: NOT FOUND IN SOURCE
msgid "%1 recent tickets I own..."
msgstr "最新 %1 份待处理申请单..."

#: NOT FOUND IN SOURCE
msgid "%1 recent tickets I requested..."
msgstr "最新 %1 份送出的申请单..."

#: NOT FOUND IN SOURCE
msgid "%1 result(s) found"
msgstr "找到 %1 项结果"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1权限"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1站点配置"

#: NOT FOUND IN SOURCE
msgid "%1 succeeded\\n"
msgstr "%1 完成\\n"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1已更新: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1已更新: 没有改变"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1已更新"

#: NOT FOUND IN SOURCE
msgid "%1 was created without a CurrentUser\\n"
msgstr "%1 创建时未指定现行用户"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1会解决在已解决群组里成员的申请单。"

#: NOT FOUND IN SOURCE
msgid "%1 will stall a [local] BASE if it's dependent [or member] of a linked up request."
msgstr "如果 %1 起始申请单按赖于某个链接,或是某个链接的成员,它将会被延宕。"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1内的%2对象"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1内的%2的%3对象"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1 的 GnuPG 密钥"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1 的当前密码"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1的表单"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1的已存搜索"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1:未指定附件"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1创建申请单%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1字节"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k字节"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1 分钟"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1 秒"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%1 篇文章"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%1小时"

#: NOT FOUND IN SOURCE
msgid "%quant(%1,result) found"
msgstr "找到 %1 项结果"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' 不是一个合法的状态值"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' 不是一个有效的类型标识符"

#: NOT FOUND IN SOURCE
msgid "'%1' not a recognized action. "
msgstr "'%1'为无法辨识的动作。 "

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "'角色'"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'系统'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'用户群组'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'用户'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(标记要完成的项目)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete group member)"
msgstr "(标记要删除的成员)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(标记要删除的脚本)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(标记要删除的项目)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(标记要删除的项目)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(标记要停用通知的收件人)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(标记要启用通知的收件人)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(输入申请单编号或网址,以空白分隔)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(如果留白, 则默认为%1)"

#: NOT FOUND IN SOURCE
msgid "(No Value)"
msgstr "(没有值)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(没有自定字段)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(没有成员)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(没有脚本)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "没有模板"

#: NOT FOUND IN SOURCE
msgid "(No workflows)"
msgstr "没有流程"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(无)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(送出本份更新的密件抄送给名单上以逗号隔开的邮箱。这不会更改后续的收件者名单。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(送出本份更新的密件抄送给名单上以逗号隔开的邮箱。这不会更改后续的收件者名单。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(送出本份更新的密件抄送给名单上以逗号隔开的邮箱。这不会更改后续的收件者名单。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(送出本份更新的抄送给名单上以逗号隔开的管理员邮箱。这将会更改后续的收件者名单。)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(送出本份更新的抄送给名单上以逗号隔开的管理员邮箱。这将会更改后续的收件者名单。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(送出本份更新的抄送给名单上以逗号隔开的邮箱。这不会更改后续的收件者名单。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(送出本份更新的抄送给名单上以逗号隔开的邮箱。这不会更改后续的收件者名单。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(送出本份更新的抄送给名单上以逗号隔开的邮箱。这不会更改后续的收件者名单。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(送出本份更新的抄送给名单上以逗号隔开的邮箱。这将会更改后续的收件者名单。)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(送出本份更新的抄送给名单上以逗号隔开的邮箱。这将会更改后续的收件者名单。)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(当条件或动作设为‘用户自定’时,请填写这些字段)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(不会收到邮件)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(任意)"

#: NOT FOUND IN SOURCE
msgid "(default delegate)"
msgstr "(默认个人)"

#: NOT FOUND IN SOURCE
msgid "(delete)"
msgstr "(删除)"

#: NOT FOUND IN SOURCE
msgid "(displaying new and open tickets for %1)"
msgstr "(显示 %1 名下新创建及打开中的申请单)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(空白)"

#: NOT FOUND IN SOURCE
msgid "(new)"
msgstr "(创建)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(没有摘要)"

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(没有列出姓名)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(没有名称)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(没有公钥!)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(没有主题)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(无)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(没有值)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(仅能指定一份申请单)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(pending %quant(%1,other ticket))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(等待批准)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(等待其它集合)"

#: NOT FOUND IN SOURCE
msgid "(pending other tickets)"
msgstr "(等待其它申请单)"

#: NOT FOUND IN SOURCE
msgid "(requestor's group)"
msgstr "(申请人所属)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(必填)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "信任: %1"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(未命名)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(不被信任!)"

#: NOT FOUND IN SOURCE
msgid "(yyyy/mm/dd)"
msgstr "(yyyy/mm/dd)"

#: NOT FOUND IN SOURCE
msgid "*"
msgstr "★"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id 是可忽视参数并且无法和 --template 一起使用"

#: NOT FOUND IN SOURCE
msgid "--transaction argument could be only 'first' or 'last'"
msgstr "--transaction 的值仅能为 'first' 或 'last'"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transaction 参数 只能是 'first','last' 或者'all'"

#: NOT FOUND IN SOURCE
msgid ":"
msgstr ":"

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ticket->Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr "<% $field->{'name'} %>"

#: NOT FOUND IN SOURCE
msgid "<%$Action%> here"
msgstr "<%$Action%> 在此"

#: NOT FOUND IN SOURCE
msgid "<%$_%>"
msgstr "<%$_%>"

#: NOT FOUND IN SOURCE
msgid "<%$field%>"
msgstr "<%$field%>"

#: NOT FOUND IN SOURCE
msgid ""
msgstr "<留空>"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

所有的iCal种子都内嵌一个授权给您的密钥。如果您的某个iCal种子的URL暴露在外部世界,您可以获得一个新的密钥,断开以下所有已经存在的iCal种子

" #: NOT FOUND IN SOURCE msgid "%1 - %2s" msgstr "%1 - %2秒" #: etc/initialdata:215 msgid "A blank template" msgstr "空白模板" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "密码没有设定,因此该用户将无法登录。" #: NOT FOUND IN SOURCE msgid "ACE Deleted" msgstr "ACE 已删除" #: NOT FOUND IN SOURCE msgid "ACE Loaded" msgstr "ACE 已加载" #: NOT FOUND IN SOURCE msgid "ACE could not be deleted" msgstr "无法删除 ACE" #: NOT FOUND IN SOURCE msgid "ACE could not be found" msgstr "找不到 ACE" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "找不到 ACE 设定" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "只能创建或删除 ACE 设定。" #: NOT FOUND IN SOURCE msgid "ACLEquivalence" msgstr "ACLEquivalence" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "AND" #: NOT FOUND IN SOURCE msgid "Aborting to avoid unintended ticket modifications.\\n" msgstr "离开以免不小心更改到申请单。\\n" #: NOT FOUND IN SOURCE msgid "About Me" msgstr "个人信息" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "个人信息" #: NOT FOUND IN SOURCE msgid "Access Right" msgstr "系统使用登录权限" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "存取权限" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "动作" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "动作 %1 找不到" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "没有找到Action '%1'" #: bin/rt-crontool:228 msgid "Action committed." msgstr "动作执行完成。" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "动作执行完成。\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "动作为必填字段" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "动作准备完成..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "动作" #: NOT FOUND IN SOURCE msgid "Activated Date" msgstr "申请激活时间" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "活动的申请单" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "创建" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "添加 %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "创建管理抄送人" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "添加到收藏夹" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "创建抄送人" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "创建字段" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "创建条件" #: NOT FOUND IN SOURCE msgid "Add Entry" msgstr "创建列" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "创建更多附件" #: NOT FOUND IN SOURCE msgid "Add Next State" msgstr "创建下一项关卡" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "创建申请人" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "创建字段值" #: NOT FOUND IN SOURCE msgid "Add a Scrip to this queue" msgstr "创建此队列的脚本" #: NOT FOUND IN SOURCE msgid "Add a Scrip which will apply to all queues" msgstr "创建适用于所有队列的脚本" #: NOT FOUND IN SOURCE msgid "Add a keyword selection to this queue" msgstr "创建此队列的关键词" #: NOT FOUND IN SOURCE msgid "Add a new a global scrip" msgstr "创建全局脚本" #: NOT FOUND IN SOURCE msgid "Add a scrip to this queue" msgstr "创建一道脚本到此队列" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "创建一道用于所有队列的脚本" #: NOT FOUND IN SOURCE msgid "Add additional criteria" msgstr "创建搜索条件" #: NOT FOUND IN SOURCE msgid "Add and Search" msgstr "创建并开始搜索" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "创建注释或回复到指定的申请单" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "添加群组" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "创建成员" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "创建关注者" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "为 %1 添加权限" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "增加这些项" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "加入这些条件和搜索" #: NOT FOUND IN SOURCE msgid "Add these terms to your search" msgstr "将这些条件加进搜索内" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "添加用户" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "创建值" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "创建、删除及修改对象的自定字段值" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "添加、修改与删除对象的字段值" #: NOT FOUND IN SOURCE msgid "AddNextState" msgstr "创建下一项关卡" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "添加 %1 为 %2 该队列的成员" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "单位已创建为此队列的 %1" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "单位已创建为此申请单的 %1" #: NOT FOUND IN SOURCE msgid "Additional Hints" msgstr "额外提示" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "地址" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "地址 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "住址" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "住址(续)" #: NOT FOUND IN SOURCE msgid "Adjust Blinking Rate" msgstr "调整闪烁速度快慢" #: NOT FOUND IN SOURCE msgid "Admin" msgstr "管理员" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "管理员抄送" #: etc/initialdata:292 msgid "Admin Comment" msgstr "管理员注释" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "管理员回复" #: NOT FOUND IN SOURCE msgid "Admin Rights" msgstr "管理员权限" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "队列管理" #: NOT FOUND IN SOURCE msgid "Admin users" msgstr "用户管理" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "管理/全局设定" #: NOT FOUND IN SOURCE msgid "Admin/Groups" msgstr "管理/群组" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "管理/队列/基本信息" #: NOT FOUND IN SOURCE msgid "AdminAddress" msgstr "管理员 Email" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "管理所有个人群组" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "管理员抄送组" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "管理员抄送" #: NOT FOUND IN SOURCE msgid "AdminCc.EmailAddress" msgstr "管理员抄送: 电子邮件信箱" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "管理员抄送" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "管理类别" #: NOT FOUND IN SOURCE msgid "AdminComment" msgstr "管理员注释" #: NOT FOUND IN SOURCE msgid "AdminCorrespondence" msgstr "管理员回复" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "管理自定字段" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "管理自定字段值" #: NOT FOUND IN SOURCE msgid "AdminCustomFields" msgstr "管理自定字段" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "管理群组" #: NOT FOUND IN SOURCE msgid "AdminGroupDescription" msgstr "管理群组描述" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "管理群组成员" #: NOT FOUND IN SOURCE msgid "AdminGroupName" msgstr "管理群组名称" #: NOT FOUND IN SOURCE msgid "AdminGroupPermission" msgstr "管理群组权限" #: NOT FOUND IN SOURCE msgid "AdminGroupStatus" msgstr "管理群组状态" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "管理个人群组" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "管理队列" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "管理主题" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "管理用户" #: NOT FOUND IN SOURCE msgid "Administrative" msgstr "行政类" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "管理员抄送" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "管理员密码" #: NOT FOUND IN SOURCE msgid "Admins" msgstr "主管" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "高级" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "进阶搜索" #: NOT FOUND IN SOURCE msgid "Advanced Search Criteria" msgstr "进阶搜索条件" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "高级搜索" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "经历时间" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "结合方式" #: NOT FOUND IN SOURCE msgid "Alias" msgstr "执行其它流程" #: NOT FOUND IN SOURCE msgid "Alias for" msgstr "相当于" #: NOT FOUND IN SOURCE msgid "All" msgstr "全部" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "完成全部批准" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "本类型的所有文章都列于申请单回复页面的下拉列表" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "所有类型" #: NOT FOUND IN SOURCE msgid "All Condition" msgstr "所有条件" #: NOT FOUND IN SOURCE msgid "All Custom Fields" msgstr "所有自定字段" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "所有表单" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "所有队列" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "所有申请单" #: NOT FOUND IN SOURCE msgid "All Users" msgstr "全体员工" #: NOT FOUND IN SOURCE msgid "All done! Now you can proceed to %1." msgstr "处理完成!您现在可以继续进行 %1。" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "所有的iCal种子都内嵌一个授权给您的密钥。如果您的某个iCal种子的URL暴露在外部世界,您可以获得一个新的密钥,断开以下所有已经存在的iCal种子 。" #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "满足条件的队列" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "所有申请单" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "所有主题" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "允许创建已存搜索" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "允许加载已存搜索" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "允许在模板、脚本等处写 Perl 代码" #: NOT FOUND IN SOURCE msgid "Allowance Request" msgstr "福利补助申请" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "已经加密" #: NOT FOUND IN SOURCE msgid "Always sends a message to the requestors independent of message sender" msgstr "无论寄件来源为何,一律发送邮件给申请人" #: NOT FOUND IN SOURCE msgid "Amount" msgstr "数额" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "AND/OR" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: NOT FOUND IN SOURCE msgid "Any Condition" msgstr "任意条件" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "任何字段" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "已应用" #: NOT FOUND IN SOURCE msgid "Applies To" msgstr "套用于" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "应用于" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "应用到所有对象" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "应用" #: NOT FOUND IN SOURCE msgid "Apply Template" msgstr "引用模板" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "应用到全局" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "应用改动" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "批准请求" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "批准请求单 #%1:%2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "批准请求单 #%1:系统错误,记录失败" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "批准请求单 #%1:记录完成" #: NOT FOUND IN SOURCE msgid "Approval Details" msgstr "批准细节" #: NOT FOUND IN SOURCE msgid "Approval Due" msgstr "批准时限" #: NOT FOUND IN SOURCE msgid "Approval Notes" msgstr "批准意见" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "批准请求通过" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "为拥有人准备批准请求" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "驳回某项批准请求" #: NOT FOUND IN SOURCE msgid "Approval Result" msgstr "批准结果" #: NOT FOUND IN SOURCE msgid "Approval Status" msgstr "核准结果" #: NOT FOUND IN SOURCE msgid "Approval Type" msgstr "批准种类" #: NOT FOUND IN SOURCE msgid "Approval diagram" msgstr "批准流程" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "批准" #: NOT FOUND IN SOURCE msgid "Approver" msgstr "批准人" #: NOT FOUND IN SOURCE msgid "Approver Setting" msgstr "执行批准人设定" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "批准备注:%1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "四月" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "04" #: NOT FOUND IN SOURCE msgid "April" msgstr "四月" #: NOT FOUND IN SOURCE msgid "Are you sure to delete checked items?" msgstr "您确定要删除?" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "确定要删除该文章吗?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "文章 #%1 已删除" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "文章 #%1: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "文章 %1" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "文章 %1 已创建" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "文章管理页面" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "文章已删除" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "文章未找到" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "文章" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "%1 的文章" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "匹配 %1 的文章" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "无主题的文章" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "递增" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "递增" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "指派及移除自定字段" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "指派或移除队列自定字段" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "指派自定字段" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "附件" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "附加档案" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "当前附件" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "附件" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "无法加载附件 '%1'" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "附件创建完成" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "附件档名" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "附件" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "附件加密被禁用" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "已删除该属性" #: NOT FOUND IN SOURCE msgid "Attributes" msgstr "属性" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "八月" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "08" #: NOT FOUND IN SOURCE msgid "August" msgstr "八月" #: NOT FOUND IN SOURCE msgid "AuthSystem" msgstr "认证方式" #: NOT FOUND IN SOURCE msgid "AutoReject" msgstr "自动驳回队列" #: NOT FOUND IN SOURCE msgid "AutoResolve" msgstr "自动完成队列处理" #: NOT FOUND IN SOURCE msgid "Automatically suggested theme colors aren't available for your image. This might be" msgstr "对您的图片没有自动的主题色彩建议。可能是因为" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "对您的图片没有自动的主题色彩建议。这可能是因为当前的GD不支持您上传的图片类型,它支持的类型为: %1。您可以通过重新编译libgd和GD.pm来包含对其他图片格式的支持。" #: NOT FOUND IN SOURCE msgid "Automatically suggested theme colors aren't available for your image. This might bebecause you uploaded an image type that your installed version of GD doesn't support. Supported types are: [%1]. You can recompile libgd and GD.pm to include support for other image types." msgstr "对您的图片没有自动的主题色彩建议。可能是因为当前的GD不支持您上传的图片类型,它支持的类型为: [%1]。您可以通过重新编译libgd和GD.pm来包含其他图片格式的支持。" #: etc/initialdata:218 msgid "Autoreply" msgstr "自动回复" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "自动对申请人回复" #: NOT FOUND IN SOURCE msgid "AutoreplyToRequestors" msgstr "自动对申请人回复" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "可用" #: NOT FOUND IN SOURCE msgid "Available Columns" msgstr "可用的字段:" #: NOT FOUND IN SOURCE msgid "Available Rights:" msgstr "权限项目列表:" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "密送" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "返回" #: NOT FOUND IN SOURCE msgid "Back to Homepage" msgstr "回到首页" #: NOT FOUND IN SOURCE msgid "Back to Previous" msgstr "回上页" #: NOT FOUND IN SOURCE msgid "Bad PGP Signature: %1\\n" msgstr "错误的 PGP 签章:%1\\n" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "错误的附件编号。找不到附件 '%1'\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "%1 的数据错误" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "属性%1含错误的隐私项" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "附件的处理号码错误。%1 应为 %2\\n" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "基本信息" #: NOT FOUND IN SOURCE msgid "Batch Approval" msgstr "批量批准" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "密送" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "别忘了保存修改。" #: NOT FOUND IN SOURCE msgid "Begin Approval" msgstr "开始批准" #: NOT FOUND IN SOURCE msgid "Begin From " msgstr "起始日 " #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC 公司识别图案" #: NOT FOUND IN SOURCE msgid "Binary" msgstr "档案" #: NOT FOUND IN SOURCE msgid "Birthday" msgstr "生日" #: etc/initialdata:214 msgid "Blank" msgstr "空白模板" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "正文" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "粗体" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "书签" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "将搜索结果转为可放入书签的网址" #: NOT FOUND IN SOURCE msgid "Bookmarkable link" msgstr "可放入书签的网址" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "可添加为书签的该搜索链接" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "收藏的书签" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "已加入书签的申请单" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "精简邮件头" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "根据主题浏览" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "浏览该进程中的 SQL 队列" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "批量更新" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "整批更新申请单" #: NOT FOUND IN SOURCE msgid "Business Unit" msgstr "事业部" #: NOT FOUND IN SOURCE msgid "Business Unit:" msgstr "事业部:" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "购买支持" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "默认的,RT将使用您系统的时区。这让您在RT中为显示日期和时间设置了一个全局默认值。您的用户可以在他们的首选项中选择一个不同的时区。" #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "抄送组" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "加载\"%1\"失败" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "无法更改系统用户" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "该单位是否能查阅此队列" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "无法创建没有名称的自定字段值" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "找不到‘%1’的集合类型" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "找不到已存搜索" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "申请单无法链接自己。" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "无法整合进已整合过的申请单。这个错误不该发生。" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "无法保存 %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "无法保存此项搜索" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "无法同时指定起始申请单与目的申请单" #: NOT FOUND IN SOURCE msgid "Cancel" msgstr "取消" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "不能为编号添加链接" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "无法在一个禁用的队列中创建标签" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "无法创建用户:%1" #: NOT FOUND IN SOURCE msgid "Cannot login: Your system clock differs from server's by %1 seconds!" msgstr "您的系统时钟和服务器相差 %1 秒,无法登录!" #: NOT FOUND IN SOURCE msgid "Card No." msgstr "卡号" #: NOT FOUND IN SOURCE msgid "Categories" msgstr "分类管理" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "类型基于" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "分类" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "类型取消" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "抄送" #: NOT FOUND IN SOURCE msgid "Cc Type" msgstr "抄送类型" #: NOT FOUND IN SOURCE msgid "Cc.EmailAddress" msgstr "抄送: 电子邮件信箱" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "抄送" #: NOT FOUND IN SOURCE msgid "Chairperson's Office" msgstr "董事长室" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "更改" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "更改批准申请单的状态为已打开" #: NOT FOUND IN SOURCE msgid "Change Ticket" msgstr "修改申请单" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "更改密码" #: NOT FOUND IN SOURCE msgid "ChangeOwnerUI" msgstr "可否选择队列拥有人" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "图表" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "图表属性" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "选择全部" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "检查数据库是否可连接" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "检查数据库的连接设置" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "选择要删除的项目" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "选择要取消的权限" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "子申请单" #: NOT FOUND IN SOURCE msgid "Chinese Name" msgstr "中文姓名" #: NOT FOUND IN SOURCE msgid "Chinese/English" msgstr "中英文" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "选择数据库引擎" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "选择一个数据库引擎" #: NOT FOUND IN SOURCE msgid "Choose a date" msgstr "选择日期" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "从 %1 的主题选择" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "城市" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "类型" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "类型名称" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "类型id" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "类型已应用到全局" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "类型已应用到 %1" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "类型" #: NOT FOUND IN SOURCE msgid "ClassicUI" msgstr "传统接口" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "清空" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "全部清空" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "点击下面的\"完成安装\"来结束安装" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "点击\"初始化数据库\"来初始化。该过程可能需要一点时间" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "关闭窗口" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "已关闭" #: NOT FOUND IN SOURCE msgid "Closed Tickets" msgstr "已解决的申请单" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "已关闭的申请单" #: NOT FOUND IN SOURCE msgid "Code" msgstr "执行程序码" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "下拉文字区块:选择或输入多个值" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "下拉文字区块:选择或输入一个值" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "下拉文字区块:选择或输入最多%1个值" #: NOT FOUND IN SOURCE msgid "Command not understood!\\n" msgstr "指令无法辨识!\\n" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "注释" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "注释邮箱" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "注释地址" #: NOT FOUND IN SOURCE msgid "Comment not recorded" msgstr "注释未被记录" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "注释申请单" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "注释地址" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "注释申请单" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "注释" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "注释(不发送给申请人)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "注释(不发送给申请人)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "对 %1 的注释" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "该用户的注释" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "创建注释完成" #: NOT FOUND IN SOURCE msgid "Commit" msgstr "确认" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "消除改动完成" #: NOT FOUND IN SOURCE msgid "Company Name" msgstr "公司名称" #: NOT FOUND IN SOURCE msgid "CompanySpecific" msgstr "各公司独立显示" #: NOT FOUND IN SOURCE msgid "Compile Restrictions" msgstr "设定搜索条件" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "条件" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "条件 '%1' 没有找到" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "条件是必填字段" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "符合条件..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "未找到符合的现况" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "条件,动作和模板" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "配置文件%1被锁定" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "配置" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "队列 %1 的配置" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "确认" #: NOT FOUND IN SOURCE msgid "Confirm Password" msgstr "密码确认" #: NOT FOUND IN SOURCE msgid "Confirm Submit" msgstr "确定送出" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "连接成功" #: NOT FOUND IN SOURCE msgid "Contact System Administrator" msgstr "连络系统管理员" #: NOT FOUND IN SOURCE msgid "ContactInfoSystem" msgstr "连络信息系统" #: NOT FOUND IN SOURCE msgid "Contacted date '%1' could not be parsed" msgstr "无法解读联络日期 '%1'" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "内容" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "内容是无效的IP地址" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "内容是无效的IP地址范围" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "内容类型" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "内容类型" #: NOT FOUND IN SOURCE msgid "Coould not create group" msgstr "无法创建群组" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "复制" #: NOT FOUND IN SOURCE msgid "Copy Field From:" msgstr "要复制字段:" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "回复地址" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "对应地址" #: etc/initialdata:283 msgid "Correspondence" msgstr "回复" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "申请单回复地址" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "创建申请单回复" #: NOT FOUND IN SOURCE msgid "Correspondence not recorded" msgstr "未记录申请单回复" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "无法创建自定字段的值。 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. %1 " msgstr "无法创建自定字段的值。%1 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "无法创建自定字段的值。 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "无法创建自定字段的值。%1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "无法创建自定字段值:%1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "无法更改拥有人。 " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "无法改变拥有人: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "无法创建自定字段" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "无法创建自定字段:%1" #: NOT FOUND IN SOURCE msgid "Could not create Scrip" msgstr "无法创建消息通知" #: NOT FOUND IN SOURCE msgid "Could not create Template" msgstr "无法创建通知模板" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "无法创建群组" #: NOT FOUND IN SOURCE msgid "Could not create item" msgstr "无法创建项目" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "无法创建搜索: %1" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "无法创建模板:%1" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "无法创建申请单。队列未指定" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "无法创建用户" #: NOT FOUND IN SOURCE msgid "Could not create watcher for requestor" msgstr "无法为申请人创建关注者" #: NOT FOUND IN SOURCE msgid "Could not create workflow: %1" msgstr "无法创建流程:%1" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "无法删除搜索 %1: %2" #: NOT FOUND IN SOURCE msgid "Could not find a ticket with id %1" msgstr "找不到编号 %1 的申请单" #: NOT FOUND IN SOURCE msgid "Could not find group %1." msgstr "找不到群组 %1。" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "找不到或无法创建该用户" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "找不到该单位" #: NOT FOUND IN SOURCE msgid "Could not find user %1." msgstr "找不到用户 %1。" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "无法加载属性 %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "无法加载类新 %1" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "无法加载自定字段 %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "无法加载群组" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "无法为%1加载对象" #: NOT FOUND IN SOURCE msgid "Could not load search attribute" msgstr "无法加载搜索属性" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "无法将该单位设为此队列的 %1。" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "无法将该单位设为此申请单的 %1。" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "无法将单位作为%1从队列移除。" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "无法将单位作为%1从申请单移除。" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "无法设定用户信息" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "无法创建附件" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "无法创建成员至群组" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "无法应用自定字段到改对象因该字段已应用到全局" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "无法编译 %1 码块 '%2': %3" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "无法编译模板码块 '%1': %2" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "无法创建事务: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "无法创建记录" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "无法创建记录: %1" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "无法删除表单 %1:%2" #: NOT FOUND IN SOURCE msgid "Couldn't figure out what to do from gpg's reply\\n" msgstr "无法从 gpg 回函辨识出该采取的行动\\n" #: NOT FOUND IN SOURCE msgid "Couldn't find group\\n" msgstr "找不到群组\\n" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "找不到该行" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "找不到合适的事务,跳过" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "找不到该单位" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "找不到该值" #: NOT FOUND IN SOURCE msgid "Couldn't find that watcher" msgstr "找不到该关注者" #: NOT FOUND IN SOURCE msgid "Couldn't find user\\n" msgstr "找不到用户\\n" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "无法从用户数据库加载 %1。\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "无法加载类型 %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "无法加载自定字段 #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "无法加载自定字段 #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "无法加载自定字段 %1" #: NOT FOUND IN SOURCE msgid "Couldn't load KeywordSelects." msgstr "无法加载 KeywordSelects。" #: NOT FOUND IN SOURCE msgid "Couldn't load RT config file '%1' %2" msgstr "无法加载 RT 设定档 '%1' %2" #: NOT FOUND IN SOURCE msgid "Couldn't load Scrips." msgstr "无法加载脚本。" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "无法加载申请单%1的副本。" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "无法加载表单 %1:%2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "无法加载表单 %1:%2。" #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "无法加载群组 #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "无法加载群组 %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "无法加载链接" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "无法加载对象 %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "无法加载或创建用户: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "无法加载队列" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "无法加载队列 #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "无法加载队列 %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "无法加载队列 '%1'" #: NOT FOUND IN SOURCE msgid "Couldn't load scrip" msgstr "无法加载脚本" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "无法加载脚本 %1" #: NOT FOUND IN SOURCE msgid "Couldn't load template" msgstr "无法加载模板" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "无法加载模板 #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "无法加载该名用户(%1)" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "无法加载指定的单位" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "无法加载申请单 '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "在尝试删除的过程中无法加载主题成员" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "无法加载事务 #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "无法加载用户" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "无法加载用户 #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "无法加载用户 #%1 或用户 '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "无法加载用户 '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "无法从 '%1' 解析到地址" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "无法用解密的数据替换内容: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "无法用加密的数据替换内容: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "无法将 '%1' 分解为链接." #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "无法将‘%1’解析为网址" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "无法解析源 '%1' 到一个URI" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "无法解析目标 '%1' 到一个URI" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "无法发送邮件" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "无法设置%1关注者: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "无法设置私有钥" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "无法取消私有钥" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "国家" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "创建" #: NOT FOUND IN SOURCE msgid "Create Subgroup:" msgstr "创建子群组:" #: etc/initialdata:91 msgid "Create Tickets" msgstr "创建申请单" #: NOT FOUND IN SOURCE msgid "Create User:" msgstr "创建成员:" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "创建类型" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "创建自定字段" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "为%1队列创建自定字段" #: NOT FOUND IN SOURCE msgid "Create a CustomField that applies to all queues" msgstr "为 %1 队列创建自定字段" #: NOT FOUND IN SOURCE msgid "Create a new Custom Field" msgstr "创建自定字段" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "创建新文章" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "创建新文章于" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "创建一个新的表单" #: NOT FOUND IN SOURCE msgid "Create a new global Scrip" msgstr "创建全局脚本" #: NOT FOUND IN SOURCE msgid "Create a new global scrip" msgstr "创建全局脚本" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "创建群组" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "创建个人群组" #: NOT FOUND IN SOURCE msgid "Create a new queue" msgstr "创建队列" #: NOT FOUND IN SOURCE msgid "Create a new scrip" msgstr "创建脚本" #: NOT FOUND IN SOURCE msgid "Create a new template" msgstr "创建模板" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "创建队列 %1 的新模板" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "创建申请单" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "创建用户" #: NOT FOUND IN SOURCE msgid "Create a new workflow" msgstr "创建流程" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "创建队列" #: NOT FOUND IN SOURCE msgid "Create a queue called" msgstr "创建队列名称" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "提出申请" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "为队列%1创建脚本" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "创建模板" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "创建申请单" #: NOT FOUND IN SOURCE msgid "Create a workflow" msgstr "创建流程" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "创建文章" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "创建文章,类型为..." #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "在此类型中创建文章" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "为这个群组创建表单" #: NOT FOUND IN SOURCE msgid "Create failed: %1 / %2 / %3 " msgstr "创建失败:%1 / %2 / %3 " #: NOT FOUND IN SOURCE msgid "Create failed: %1/%2/%3" msgstr "创建失败:%1/%2/%3" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "创建群组表单" #: NOT FOUND IN SOURCE msgid "Create new item" msgstr "创建新项目" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "按据此脚本内的模版,创建申请单" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "创建个人表单" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "创建系统表单" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "创建申请单" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "创建申请单" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "在此队列中创建申请单" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "创建离线申请单" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "创建、删除及更改自定字段" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "创建、删除及更改队列" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "创建、删除及更改任何用户的个人群组" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "创建、删除及更改个人群组" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "创建、删除及更改用户" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "创建、修改与删除访问控制列表条目" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "创建、修改与删除访问自定字段" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "创建、修改与删除访问自定字段值" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "创建、修改与删除访问队列" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "创建、修改与删除访问已存搜索" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "创建、修改与删除访问用户" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "创建文章" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "创建表单" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "创建群组表单" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "创建个人表单" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "创建已存搜索" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "创建申请单" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "创建日期" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "创建者" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "自定字段%1创建成功" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "创建者" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "在指定日期范围内创建" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "已创建搜索 %1" #: NOT FOUND IN SOURCE msgid "Created template %1" msgstr "模板 %1 创建成功" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "在指定日期范围内创建的申请单,按状态分组" #: NOT FOUND IN SOURCE msgid "Created workflow %1" msgstr "流程 %1 创建成功" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "创建者" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "创建日期(相对值)" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "创建者" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "加密系统" #: NOT FOUND IN SOURCE msgid "Currency" msgstr "币别" #: NOT FOUND IN SOURCE msgid "Current Approval Info" msgstr "截至目前批准信息" #: NOT FOUND IN SOURCE msgid "Current Custom Fields" msgstr "当前自定字段" #: NOT FOUND IN SOURCE msgid "Current Groups:" msgstr "当前群组列表:" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "当前关系" #: NOT FOUND IN SOURCE msgid "Current Rights:" msgstr "当前权限:" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "当前脚本" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "当前搜索" #: NOT FOUND IN SOURCE msgid "Current Status" msgstr "目前状态" #: NOT FOUND IN SOURCE msgid "Current Templates" msgstr "当前模板" #: NOT FOUND IN SOURCE msgid "Current Watchers" msgstr "当前关注者" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "当前成员" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "当前权限" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "当前搜索条件" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "当前搜索条件" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "当前关注者" #: NOT FOUND IN SOURCE msgid "Custom Field #%1" msgstr "自定字段 #%1" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "自定字段" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "%1 的自定字段" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "队列 %1 的自定字段" #: NOT FOUND IN SOURCE msgid "Custom Fields which apply to all queues" msgstr "适用于所有队列的自定字段" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "自定动作后清理程序" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "自定动作前准备程序" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "自定条件" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "自定字段 #%1 没有应用到该对象" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "自定字段%1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "自定字段%1没有应用到该对象" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "自定字段%1已有值" #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "自定字段%1没有值" #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "找不到自定字段 %1" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "自定字段‘%1’" #: NOT FOUND IN SOURCE msgid "Custom field deleted" msgstr "自定字段已删除" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "自定字段已应用到该对象" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "找不到自定字段" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "无法从自定字段%2中找到%1这个值" #: NOT FOUND IN SOURCE msgid "Custom field value changed from %1 to %2" msgstr "自定字段值从 %1 改为 %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "无法删除自定字段值" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "找不到自定字段值" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "自定字段值删除成功" #: NOT FOUND IN SOURCE msgid "Custom.Ownership" msgstr "自定: 拥有状态" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "自定字段" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "自定字段值" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "自定" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "自定基本项" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "自定邮件地址" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "自定邮件配置" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "自定 RT 外观" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "数据库管理员密码" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "数据库管理员用户名" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "每日摘要" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "表单" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "无法创建表单: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "无法更新表单: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "表单已更新" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "表单" #: NOT FOUND IN SOURCE msgid "Data error" msgstr "数据错误" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "数据库主机地址" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "数据库名称" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT的数据库用户密码" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "数据库端口" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "数据库类型" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "RT的数据库用户名" #: NOT FOUND IN SOURCE msgid "DatabaseBindRemote" msgstr "容许外部联机" #: NOT FOUND IN SOURCE msgid "DatabaseName" msgstr "MySQL数据库" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "日期格式" #: NOT FOUND IN SOURCE msgid "Date of Departure" msgstr "出发日期" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "当前的DateTime版本不支持format_cldr, 请升级DateTime" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "无法加载DateTime模块" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "当前的DateTime::Locale版本不支持date_format_full, 请升级" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "无法加载DateTime::Locale模块" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "日期" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "十二月" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "12" #: NOT FOUND IN SOURCE msgid "December" msgstr "十二月" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "解密" #: NOT FOUND IN SOURCE msgid "Default Approval" msgstr "默认批准" #: NOT FOUND IN SOURCE msgid "Default Autoresponse Template" msgstr "默认自动响应模板" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "默认自动回复模板" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "默认队列" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "默认申请人" #: NOT FOUND IN SOURCE msgid "Default Value" msgstr "默认值" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "默认管理员注释模板" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "默认管理员回复模板" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "默认回复模板" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "默认队列" #: etc/initialdata:250 msgid "Default transaction template" msgstr "默认更改模板" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "默认值:%1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "默认:%1/%2 已自 %3 改为 %4" #: NOT FOUND IN SOURCE msgid "DefaultApproval" msgstr "默认批准" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "DefaultDueIn" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "默认格式" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "个人权限" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "将拥有的权限委托他人代理" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "委托权限" #: NOT FOUND IN SOURCE msgid "Delegated Approval" msgstr "代理批准" #: NOT FOUND IN SOURCE msgid "Delegated Queue" msgstr "代理队列名称" #: NOT FOUND IN SOURCE msgid "Delegated Queue:" msgstr "代理队列:" #: NOT FOUND IN SOURCE msgid "Delegated Type" msgstr "代理队列种类" #: NOT FOUND IN SOURCE msgid "Delegates" msgstr "个人" #: NOT FOUND IN SOURCE msgid "Delegates Enabled Status" msgstr "代理激活状态" #: NOT FOUND IN SOURCE msgid "Delegates Info" msgstr "个人信息" #: NOT FOUND IN SOURCE msgid "Delegates Period" msgstr "代理期间" #: NOT FOUND IN SOURCE msgid "Delegates Permission Setting" msgstr "代理权限设定" #: NOT FOUND IN SOURCE msgid "Delegates Permission:" msgstr "代理权限:" #: NOT FOUND IN SOURCE msgid "Delegates Setting" msgstr "个人设定" #: NOT FOUND IN SOURCE msgid "Delegates Status" msgstr "代理状态" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "委托权限" #: NOT FOUND IN SOURCE msgid "Delegation Groups" msgstr "个人群组" #: NOT FOUND IN SOURCE msgid "Delegation Rights" msgstr "个人权限" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "删除" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "删除模板" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "删除文章 #%1" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "删除该类型的文章" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "删除该群组的表单" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "删除失败:%1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "删除群组表单" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "删除被生命周期配置停用的操作" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "删除个人表单" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "删除指定的脚本" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "删除系统表单" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "删除申请单" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "删除值" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "删除文章" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "删除表单" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "删除群组表单" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "删除个人表单" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "删除申请单" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "已删除 %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "已删除表单 %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "已删除的队列" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "已删除的已存搜索" #: NOT FOUND IN SOURCE msgid "Deleted search" msgstr "已删除的搜索" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "删除搜索 %1" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "删除此对象可能破坏参考完整性" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "删除此对象会破坏完整性" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "删除此对象会破坏完整性" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity." msgstr "删除此对象会违反参考完整性" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity. That's bad." msgstr "删除此对象会违反参考完整性" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "驳回" #: NOT FOUND IN SOURCE msgid "Department" msgstr "部门" #: NOT FOUND IN SOURCE msgid "Department ID" msgstr "部门代码" #: NOT FOUND IN SOURCE msgid "Department Name" msgstr "部门名称" #: NOT FOUND IN SOURCE msgid "Department's" msgstr "部门之" #: NOT FOUND IN SOURCE msgid "Departure Details" msgstr "差旅明细" #: NOT FOUND IN SOURCE msgid "Departure From" msgstr "差旅起始日" #: NOT FOUND IN SOURCE msgid "Departure Request" msgstr "请假单" #: NOT FOUND IN SOURCE msgid "Departure Until" msgstr "差旅截止日" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "可连续处理的申请单" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "可连续处理" #: NOT FOUND IN SOURCE msgid "Dependencies: \\n" msgstr "附属性:\\n" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "已加入可连续处理的申请单 %1" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "已移除可连续处理的申请单 %1" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "已加入需先处理的申请单 %1" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "已移除需先处理的申请单 %1" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "需先处理" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "需先处理" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "需先处理" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "递减" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "递减" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "在以下字段描述主题" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "描述" #: NOT FOUND IN SOURCE msgid "Description of Responsibility" msgstr "经办业务说明" #: NOT FOUND IN SOURCE msgid "Description:" msgstr "描述:" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "RT设定的详细信息" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "细节" #: NOT FOUND IN SOURCE msgid "Direct" msgstr "直接" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "方向" #: NOT FOUND IN SOURCE msgid "Disability" msgstr "残障身分" #: NOT FOUND IN SOURCE msgid "Disability Type" msgstr "残障类型" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "停用" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "显示" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "显示权限控制清单" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "显示文章 %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "显示字段" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "显示此队列的模板" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "显示此队列的脚本" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "显示模式" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "显示此群组的已存搜索" #: NOT FOUND IN SOURCE msgid "Display ticket #%1" msgstr "显示第%1号申请单" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "以 %1GNU GPL%2 第二版发布。" #: NOT FOUND IN SOURCE msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "以 %1GNU GPL%2 第二版发布。" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "按 GNU 通用公共授权 第二版散布。" #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "允许一切操作" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "域名" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "不要包括“http://”,类似 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "不要刷新主页。" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "不要刷新搜索结果。" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "不要刷新此页面。" #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "不显示搜索结果" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "不信任该值" #: NOT FOUND IN SOURCE msgid "Done" msgstr "完成" #: NOT FOUND IN SOURCE msgid "Down" msgstr "下一页" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "下载" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "下载以Tab分隔的档案" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "下载 dumpfile" #: NOT FOUND IN SOURCE msgid "Dr." msgstr "博士" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "下拉列表" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "到期日期" #: NOT FOUND IN SOURCE msgid "Due Date" msgstr "截止日" #: NOT FOUND IN SOURCE msgid "Due date '%1' could not be parsed" msgstr "无法解读日期 '%1'" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "到期日期(相对值)" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "错误: %1" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "无法加载申请单 '%1':%2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "更新您已打开的申请单" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "提醒項目的便捷视图" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "编辑" #: NOT FOUND IN SOURCE msgid "Edit Conditions" msgstr "编辑前置条件" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "编辑自定字段" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "编辑%1的自定字段" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "编辑适用于所有群组的自定字段" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "为所有的队列编辑自定字段" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "编辑适用于所有用户的自定字段" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "编辑所有类型的文章自定字段" #: NOT FOUND IN SOURCE msgid "Edit Custom Fields for queue %1" msgstr "编辑队列 %1 的自定字段" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "编辑适用于所有队列内申请单的自定字段" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "编辑申请单关系" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "编辑搜索" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "编辑搜索" #: NOT FOUND IN SOURCE msgid "Edit Subgroups" msgstr "创建/维护子群组" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "编辑队列%1的模板" #: NOT FOUND IN SOURCE msgid "Edit Workflows for queue %1" msgstr "编辑队列 %1 的流程" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "编辑全局主题层次" #: NOT FOUND IN SOURCE msgid "Edit keywords" msgstr "编辑关键词" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "编辑此群组的已存搜索" #: NOT FOUND IN SOURCE msgid "Edit scrips" msgstr "编辑脚本" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "编辑系统模板" #: NOT FOUND IN SOURCE msgid "Edit system workflows" msgstr "编辑全局流程" #: NOT FOUND IN SOURCE msgid "Edit templates for %1" msgstr "编辑 %1 的模板" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "编辑 %1 的主题层次" #: NOT FOUND IN SOURCE msgid "Edit workflows for %1" msgstr "编辑 %1 的流程" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "编辑已存搜索" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "可编辑文本" #: NOT FOUND IN SOURCE msgid "Editing Configuration for Class %1" msgstr "编辑类型 %1 的配置" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "编辑队列%1的设定" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "编辑用户 %1 的设定" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "编辑自定字段 %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "编辑群组%1的成员信息" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "编辑个人群组%1的成员信息" #: NOT FOUND IN SOURCE msgid "Editing template %1" msgstr "编辑模板 %1" #: NOT FOUND IN SOURCE msgid "Editing workflow %1" msgstr "编辑流程 %1" #: NOT FOUND IN SOURCE msgid "Education" msgstr "最高学历" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "有效编号" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "需要指定源申请单或目标申请单" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "没有权限查看已存搜索%1或者标识符不正确" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "邮箱" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "电子邮件信箱" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "邮件摘要" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "邮箱已被使用" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "邮件投递" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "周期性发送邮件摘要的模板" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "邮箱" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "电子邮件文字编码方式" #: NOT FOUND IN SOURCE msgid "Embark Date" msgstr "外籍员工入境日" #: NOT FOUND IN SOURCE msgid "Embarked Date" msgstr "抵达日期" #: NOT FOUND IN SOURCE msgid "Embarked Location" msgstr "抵达地点" #: NOT FOUND IN SOURCE msgid "Enable Delegates" msgstr "代理激活" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "启用" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "启用 (不勾选将停用该类型)" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "启用(不勾选将停用此自定字段)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "启用(不勾选将停用此群组)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "启用(不勾选将停用此队列)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "启用类型" #: NOT FOUND IN SOURCE msgid "Enabled Custom Fields" msgstr "已启用的自定字段" #: NOT FOUND IN SOURCE msgid "Enabled Date" msgstr "启用日期" #: NOT FOUND IN SOURCE msgid "Enabled Date:" msgstr "激活日期:" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "已启用的队列" #: NOT FOUND IN SOURCE msgid "Enabled Status" msgstr "启用状态" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "已启用并满足搜索条件的队列" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "已启用状态 %1" #: NOT FOUND IN SOURCE msgid "Enabled status: %1" msgstr "启用状态: %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "加密" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "默认加密" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "加密/解密" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "加密/解密申请单#%2的事务#%1" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "已停用加密" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "已启用加密" #: NOT FOUND IN SOURCE msgid "End of Trial" msgstr "试用期满日" #: NOT FOUND IN SOURCE msgid "English Name" msgstr "英文姓名" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "输入与该文章相关的文章、申请单或其他URL" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "输入多个 IP 地址范围" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "输入多个 IP 地址" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "输入多个值" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "输入多个值(带自动补全功能)" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "输入要将对象链接到的对象或URI地址. 各项间请以空白隔开." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "输入一个 IP 地址" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "输入一个 IP 地址范围" #: NOT FOUND IN SOURCE msgid "Enter one or more conditions below to search for users" msgstr "输入下列单一或复式条件,搜索用户数据" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "输入一个值" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "输入一个值(带自动补全功能)" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "输入要将队列链接到的队列或URI地址. 各项间请以空白隔开." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "输入要将申请单链接到的申请单编号或URI地址. 各项之间请以空白隔开." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "最多可输入 %1 个 IP 地址范围" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "最多可输入 %1 个 IP 地址" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "输入最多%1个值" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "输入最多%1个值(带自动补全功能)" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: NOT FOUND IN SOURCE msgid "EntryBoolean" msgstr "是非填表" #: NOT FOUND IN SOURCE msgid "EntryDate" msgstr "日期填表" #: NOT FOUND IN SOURCE msgid "EntryExternal" msgstr "系统填表" #: NOT FOUND IN SOURCE msgid "EntryFreeform" msgstr "输入填表" #: NOT FOUND IN SOURCE msgid "EntryMultiple" msgstr "多选填表" #: NOT FOUND IN SOURCE msgid "EntryNumber" msgstr "数值填表" #: NOT FOUND IN SOURCE msgid "EntrySelect" msgstr "单选填表" #: NOT FOUND IN SOURCE msgid "EntryTime" msgstr "时间填表" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "错误" #: NOT FOUND IN SOURCE msgid "Error adding watcher" msgstr "创建关注者失败" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "队列->创建关注者的参数错误" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "队列->删除关注者的参数错误" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "申请单->创建关注者的参数错误" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "申请单->删除关注者的参数错误" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "发给RT拥有人的错误: 公钥" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "错误: 表单不存在" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "错误: 错误的GnuPG数据" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "错误: 无法改变当前搜索的隐私值" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "错误: 无法加载已存搜索 %1: %2" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "错误: 没有私钥" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "错误: 公钥" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "错误: 搜索 %1 未更新: %2" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "调整申请单优先等级" #: NOT FOUND IN SOURCE msgid "Estimate" msgstr "预计" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "预计" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "所有人" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "检查某一队列中于某一时期创建的申请单" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "检查某一队列中于某一时期解决的申请单" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "检查某一队列中已解决的申请单, 按拥有人分组" #: bin/rt-crontool:356 msgid "Example:" msgstr "范例:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "执行代码" #: NOT FOUND IN SOURCE msgid "Existing user renamed from %1 to %2" msgstr "当前用户 %1 已改名为 %2" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "过期" #: NOT FOUND IN SOURCE msgid "Export" msgstr "汇出" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "扩展状态" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "外部认证已启用" #: NOT FOUND IN SOURCE msgid "ExternalAuthId" msgstr "外部认证帐号" #: NOT FOUND IN SOURCE msgid "ExternalContactInfoId" msgstr "外部联络方式帐号" #: NOT FOUND IN SOURCE msgid "ExternalDatabaseDSN" msgstr "外部数据库连结字符串" #: NOT FOUND IN SOURCE msgid "ExternalDatabasePass" msgstr "外部数据库密码" #: NOT FOUND IN SOURCE msgid "ExternalDatabaseUser" msgstr "外部数据库用户" #: NOT FOUND IN SOURCE msgid "ExternalURL" msgstr "外部接口网址" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "备注" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "提取文章" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "提取主题标签" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "从申请单 #%1 提取新文章" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "从申请单 #%1 中提取文章至类型 %2" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "从某一事务的主题提取标签并加到申请单的主题" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "连接数据库失败: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "创建属性%1失败" #: NOT FOUND IN SOURCE msgid "Failed to create search attribute" msgstr "搜索属性创建失败" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "找不到‘内部成员’虚拟群组的用户。" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "找不到‘非内部成员’虚拟群组的用户。" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "加载%1 %2失败" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "加载%1 %2失败: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "加载模块%1失败. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "为%1加载对象失败" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "加载模板失败" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "解析模板失败" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "二月" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "02" #: NOT FOUND IN SOURCE msgid "February" msgstr "二月" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "馈送" #: NOT FOUND IN SOURCE msgid "Female" msgstr "女" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "字段" #: NOT FOUND IN SOURCE msgid "Field Content:" msgstr "字段内容:" #: NOT FOUND IN SOURCE msgid "Field Description" msgstr "字段描述" #: NOT FOUND IN SOURCE msgid "Field Name" msgstr "字段名称" #: NOT FOUND IN SOURCE msgid "Field Type" msgstr "字段类型" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "字段值来源:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "文件名" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "文件名" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "填写参数" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "用哪种颜色填充块" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "填写多个文字区块" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "填写多个 Wiki 文字区块" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "填写一个文字区块" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "填写一个 Wiki 文字区块" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "填写一个网址" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "填写最多%1个文字区块" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "填写最多%1个Wiki文字区块" #: NOT FOUND IN SOURCE msgid "Filter" msgstr "筛选" #: NOT FOUND IN SOURCE msgid "Filter people" msgstr "对象筛选" #: NOT FOUND IN SOURCE msgid "Filtered list:" msgstr "筛选列表:" #: NOT FOUND IN SOURCE msgid "Fin" msgstr "最终" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "最终优先级" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "最终优先级" #: NOT FOUND IN SOURCE msgid "Financial Department:" msgstr "财务部:" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "搜索用户满足" #: NOT FOUND IN SOURCE msgid "Find group whose" msgstr "搜索群组的" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "搜索群组满足" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "搜索/打开申请单" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "搜索人员的" #: NOT FOUND IN SOURCE msgid "Find queues whose" msgstr "搜索队列的" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "搜索申请单" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "指纹" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "完成" #: NOT FOUND IN SOURCE msgid "Finish Approval" msgstr "批准完成" #: share/html/Elements/Tabs:651 msgid "First" msgstr "第一项" #: NOT FOUND IN SOURCE msgid "First page" msgstr "第一页" #: NOT FOUND IN SOURCE msgid "First-" msgstr "一" #: NOT FOUND IN SOURCE msgid "First-level Admins" msgstr "一阶主管" #: NOT FOUND IN SOURCE msgid "First-level Users" msgstr "一阶主管员工" #: NOT FOUND IN SOURCE msgid "Fixed shift" msgstr "固定班" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "甲 乙 丙" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "甲!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "强制改变" #: NOT FOUND IN SOURCE msgid "Form Processing" msgstr "电子队列作业区" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "格式" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "转发" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "转发消息" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "转发消息并返回" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "转发申请单" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "转发信息至 RT 之外" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "转发消息给第三人" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "转发申请单#%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "转发事务#%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "转发消息" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "转发申请单至 %1" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "转发事务 #%1 至 %2" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "找到%1张申请单" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "找到对象" #: NOT FOUND IN SOURCE msgid "Fourth-" msgstr "四" #: NOT FOUND IN SOURCE msgid "Freeform" msgstr "输入" #: NOT FOUND IN SOURCE msgid "FreeformContactInfo" msgstr "联络方式" #: NOT FOUND IN SOURCE msgid "FreeformDate" msgstr "日期输入" #: NOT FOUND IN SOURCE msgid "FreeformExternal" msgstr "系统字段" #: NOT FOUND IN SOURCE msgid "FreeformMultiple" msgstr "多重输入" #: NOT FOUND IN SOURCE msgid "FreeformNumber" msgstr "数值输入" #: NOT FOUND IN SOURCE msgid "FreeformPassword" msgstr "密码输入" #: NOT FOUND IN SOURCE msgid "FreeformSingle" msgstr "单一输入" #: NOT FOUND IN SOURCE msgid "FreeformTime" msgstr "时间输入" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "频率" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "星期五" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "星期五" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "星期五" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "完整邮件头" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD被禁用或者没有安装。您可以上传图片,但是没有色彩的自动建议。" #: NOT FOUND IN SOURCE msgid "Gecos" msgstr "登录帐号" #: NOT FOUND IN SOURCE msgid "Gender" msgstr "性别" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "通用" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "一般权限" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "从文件中提取模板" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "准备开始" #: NOT FOUND IN SOURCE msgid "Getting the current user from a pgp sig\\n" msgstr "取得目前用户的 pgp 签章\\n" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "交给%1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "全局设定" #: NOT FOUND IN SOURCE msgid "Global Approval" msgstr "全局批准" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "全局属性" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "全局自定字段" #: NOT FOUND IN SOURCE msgid "Global Keyword Selections" msgstr "全局关键词选择" #: NOT FOUND IN SOURCE msgid "Global Rights:" msgstr "拥有全局权限列表:" #: NOT FOUND IN SOURCE msgid "Global Scrips" msgstr "全局脚本" #: NOT FOUND IN SOURCE msgid "Global Setup" msgstr "全局设定" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "全局自定字段设定" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "成功保存全局入口组件%1." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "全局模板:%1" #: NOT FOUND IN SOURCE msgid "GlobalApproval" msgstr "全局批准" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG错误. 请联系管理员" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG整合已停用" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG问题" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "%1的GnuPG私钥" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "GnuPG 私钥" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "%1的GnuPG公钥" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "执行" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "跳到用户" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "执行!" #: NOT FOUND IN SOURCE msgid "Good pgp sig from %1\\n" msgstr "%1 的 pgp 签章是正确的\\n" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "跳到申请单" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "到页面" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "跳到申请单" #: NOT FOUND IN SOURCE msgid "Grand" msgstr "上" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "图表" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "图标属性" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "图表已停用" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "群组" #: NOT FOUND IN SOURCE msgid "Group %1 %2: %3" msgstr "群组 %1 %2:%3" #: NOT FOUND IN SOURCE msgid "Group Admin" msgstr "群组管理员" #: NOT FOUND IN SOURCE msgid "Group Description" msgstr "群组描述" #: NOT FOUND IN SOURCE msgid "Group Management" msgstr "群组管理" #: NOT FOUND IN SOURCE msgid "Group Members" msgstr "群组成员" #: NOT FOUND IN SOURCE msgid "Group Name" msgstr "群组名称" #: NOT FOUND IN SOURCE msgid "Group Name:" msgstr "群组名称:" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "群组权限" #: NOT FOUND IN SOURCE msgid "Group Rights:" msgstr "拥有群组权限列表:" #: NOT FOUND IN SOURCE msgid "Group Setup" msgstr "群组设定" #: NOT FOUND IN SOURCE msgid "Group Status" msgstr "群组状态" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "群组内已有此成员: %1" #: NOT FOUND IN SOURCE msgid "Group could not be created." msgstr "无法创建群组" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "无法创建群组:%1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "群组创建完成" #: NOT FOUND IN SOURCE msgid "Group created: %1" msgstr "群组 %1 创建完成" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "群组已停用" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "群组已启用" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "群组里没有这个成员" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "群组名称 '%1' 已经被使用" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "找不到群组" #: NOT FOUND IN SOURCE msgid "Group not found.\\n" msgstr "找不到群组。\\n" #: NOT FOUND IN SOURCE msgid "Group not specified.\\n" msgstr "未指定群组。\\n" #: NOT FOUND IN SOURCE msgid "Group redescribed from %1 to %2" msgstr "群组描述 %1 已改为 %2" #: NOT FOUND IN SOURCE msgid "Group renamed from %1 to %2" msgstr "群组 %1 已改名为 %2" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "群组权限" #: NOT FOUND IN SOURCE msgid "Group with Queue Rights" msgstr "拥有队列权限群组" #: NOT FOUND IN SOURCE msgid "Group's" msgstr "群组之" #: NOT FOUND IN SOURCE msgid "Group:" msgstr "群组:" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "群组" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "群组不能设为其成员的成员" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "符合搜索条件的群组" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "用户所属的群组(标记以删除)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "用户不属的群组(标记以创建)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "用户所属的群组" #: NOT FOUND IN SOURCE msgid "Groups with Global Rights" msgstr "拥有全局权限群组" #: NOT FOUND IN SOURCE msgid "HRMSDefined" msgstr "组织架构" #: NOT FOUND IN SOURCE msgid "HTML Attributes" msgstr "HTML 属性" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "拥有成员" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "转发申请单的邮件头" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "转发消息的邮件头" #: NOT FOUND IN SOURCE msgid "Health Insurance" msgstr "健保补助身份" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "嗨!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "嗨,%1" #: NOT FOUND IN SOURCE msgid "Help" msgstr "说明" #: NOT FOUND IN SOURCE msgid "Help Desks" msgstr "各项业务窗口" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "帮助我们建立RT的默认值" #: NOT FOUND IN SOURCE msgid "Hidden" msgstr "隐藏" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "隐藏引用文本" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "默认隐藏申请单历史" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "历史记录" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "文章 #%1 的历史" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "群组%1的历史记录" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "队列%1的历史记录" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "用户%1的记录" #: NOT FOUND IN SOURCE msgid "Home" msgstr "主页" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "家庭电话" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "主页刷新间隔时间" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "家庭电话" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "主页" #: NOT FOUND IN SOURCE msgid "Hotel Expense" msgstr "住宿费" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "小时" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "小时" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "我有%1份固体搅拌器." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "我昏了" #: NOT FOUND IN SOURCE msgid "ID Number" msgstr "身分证号" #: NOT FOUND IN SOURCE msgid "ID Type" msgstr "身分类型" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "编号" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "身份" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "若批准请求单遭到驳回,则连带驳回原申请单,并删除其它相关的待批准请求单" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "若没有指定申请者,则以此用户作为申请者" #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "申请单若没有指定队列,则将它创建在此队列内" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "如果此工具程序为setgid, 恶意的本地端用户即能由此取得RT的管理员权限。" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "如果已经有了正常工作的RT,在这里您还可以确定数据库正在运行并且RT可以正常访问它。完成之后,请重启RT。" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "如果已经有了正常工作的RT,在这里您还可以确定数据库正在运行并且RT可以正常访问它。完成之后,请重启RT。" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "如果RT的端口发生变化,请重启RT" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "如果您改变了 RT 运行的端口,您需要重启服务器才能登录。" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "若已更新以上数据,请记得" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "如果你想用的数据库不再列表里,说明RT找不到数据库驱动。可以尝试使用%1下载并安装DBD::MySQL,DBD::Oracle或者DBD::Pg" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "%1的值错误" #: NOT FOUND IN SOURCE msgid "Image" msgstr "图片" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "此字段值不可更改" #: NOT FOUND IN SOURCE msgid "Import" msgstr "汇入" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "非活动的申请单" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "包括文章:" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "包括列表中停用的类型" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "包括停用的自定字段" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "包括停用的群组" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "包括停用的队列" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "包括停用的用户" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "引入页面" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "包括副主题" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "不完整的搜索" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "不完整的搜索" #: NOT FOUND IN SOURCE msgid "Indirect Employee" msgstr "直接/间接员工" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "单个消息" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "通知RT拥有人用户遇到公钥问题" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "通知用户其订阅的一个表单不存在" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "通知用户其发送的消息含有无效的GnuPG数据" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "通知用户其遇到公钥问题并且接收不到加密的内容" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "通知用户密码已被重置" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "通知用户我们收到加密的邮件但是没有可用的私钥来解密" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "初始优先级" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "初始优先级" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "初始化数据库" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "输入无法解析为IP地址" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "输入无法解析为IP地址范围" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "输入错误" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "输入必须符合%1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "安装RT" #: NOT FOUND IN SOURCE msgid "Interest noted" msgstr "登记成功" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "内部错误" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "内部错误:%1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "内部错误: %1" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "无效 %1" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "无效 %1 参数" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "无效的%1: '%2'不是邮箱" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "无效的%1: 必须是数字" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "无效类型" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "无效自定字段值来源" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "错误的群组类型" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "无效队列,无法应用类型: %1" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "无效渲染类型" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "无效的类型 %1 自定字段渲染类型" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "错误的权限" #: NOT FOUND IN SOURCE msgid "Invalid Type" msgstr "错误的类型" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "无效的数据" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid lifecycle name" msgstr "无效生命周期名称" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "无效的对象" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "无效的拥有人对象" #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "错误的拥有人。改为默认拥有人‘nobody’。" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "无效的样式:%1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "无效的队列" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "无效队列角色群组类型 %1" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "无效的权限" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "无效的权限. 不能规范化权限'%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "无效的邮箱" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "无效的%1的值" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "无效的自定字段值" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "无效的状态" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "没有加密" #: NOT FOUND IN SOURCE msgid "IssueStatement" msgstr "送出陈述" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "请不要让没有权限的用户执行此工具。" #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "建议您创建一个隶属于正确群组的低权限系统用户,并以该身份执行此工具。" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "它接受下列参数:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "斜体" #: NOT FOUND IN SOURCE msgid "Item Name" msgstr "品名" #: NOT FOUND IN SOURCE msgid "Items" msgstr "笔" #: NOT FOUND IN SOURCE msgid "Items pending my approval" msgstr "待批准项目" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "一月" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "01" #: NOT FOUND IN SOURCE msgid "January" msgstr "一月" #: NOT FOUND IN SOURCE msgid "Job" msgstr "职称" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "加入或退出群组" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "加入或离开此群组" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "七月" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "07" #: NOT FOUND IN SOURCE msgid "July" msgstr "七月" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "全部信息" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "六月" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "06" #: NOT FOUND IN SOURCE msgid "June" msgstr "六月" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "保持'localhost'如果你不确定的话。保持空白意味着通过本地socket链接" #: NOT FOUND IN SOURCE msgid "Keyword" msgstr "关键词" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "基于关键词与直观的搜索" #: NOT FOUND IN SOURCE msgid "LabelAttachments" msgstr "附件卷标" #: NOT FOUND IN SOURCE msgid "LabelContent" msgstr "内容卷标" #: NOT FOUND IN SOURCE msgid "LabelSubject" msgstr "主题卷标" #: NOT FOUND IN SOURCE msgid "LabelURL" msgstr "链接卷标" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "使用语言" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "语言" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "大" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "上次更新" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "上次联络" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "上次联络日期" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "上次通知" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "上次更新日期" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "上次更新者" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "上次更新" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "上次更新者" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "上次更新日期" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "上次更新者" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "上次更新日期(相对值)" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "保持空白意味着发送到您的当前邮箱 (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "保持空白意味着使用数据库的默认值" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "保持空白意味着使用数据库管理员的默认值" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "剩余时间" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "图例" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "字符长度;使用0意味着以inline方式显示所有消息" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "允许该用户访问RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "内部成员(具有个人权限)" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "开始" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "生命周期" #: NOT FOUND IN SOURCE msgid "Limiting owner to %1 %2" msgstr "限制拥有人为 %1 到%2" #: NOT FOUND IN SOURCE msgid "Limiting queue to %1 %2" msgstr "限制队列为 %1 到 %2" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "链接" #: NOT FOUND IN SOURCE msgid "Link a Queue" msgstr "申请队列连结" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "此链接已存在" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "无法创建链接" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "链接(%1)创建完成" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "链接(%1)删除完成" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "找不到链接" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "链接申请单#%1" #: NOT FOUND IN SOURCE msgid "Link ticket %1" msgstr "链接申请单 %1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "将值链接至" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "被链接" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "链接源" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "链接到" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "链接中. 没有权限" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "链接" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "列表" #: NOT FOUND IN SOURCE msgid "List All Users" msgstr "列出所有用户数据" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "加载" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "加载已存搜索" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "加载已存搜索" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "加载已存搜索:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "加载已存搜索" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "已加载%1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "已加载初始的\"%1\"已存搜索" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "已加载的Perl模块" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "已加载已存搜索\"%1\"" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "已加载搜索 %1" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "正在加载..." #: lib/RT/Config.pm:422 msgid "Locale" msgstr "本地" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "本地化日期" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "位置" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written.\\n RT can't run." msgstr "登录目录 %1 找不到或无法写入\\n。无法执行 RT。" #: NOT FOUND IN SOURCE msgid "LogToFile" msgstr "记录等级" #: NOT FOUND IN SOURCE msgid "LogToFileNamed" msgstr "记录档名" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "已登录" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "用户:%1" #: NOT FOUND IN SOURCE msgid "Logged in as %1" msgstr "以 %1 帐号登录" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "注销" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "登录" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "LogoAltText" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "注销" #: NOT FOUND IN SOURCE msgid "Long-term contractor" msgstr "长期契约员工" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "类型不符" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "邮件" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "链接的主类型" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "更改拥有人" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "更改状态" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "更改到期日期" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "更改解决日期" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "更改实际起始日期" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "更改应起始日期" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "事务日期" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "更改优先级" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "更改队列" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "更改主题" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "使此群组可见" #: NOT FOUND IN SOURCE msgid "Male" msgstr "男" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "管理自定字段及字段值" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "管理群组及所属成员" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "管理适用于所有队列的属性与设定" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "管理各队列及相关属性" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "管理已存图像" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "管理用户与密码" #: NOT FOUND IN SOURCE msgid "Manager" msgstr "经理" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "未完成队列生命周期之间的对映,请联系系统管理员。" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "三月" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "03" #: NOT FOUND IN SOURCE msgid "March" msgstr "三月" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "标记所有消息为已读" #: NOT FOUND IN SOURCE msgid "Marketing Department" msgstr "行销部" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Mason模板搜索顺序" #: NOT FOUND IN SOURCE msgid "Match Pattern" msgstr "符合样式" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "最大值" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "inline消息的最大长度" #: lib/RT/Date.pm:95 msgid "May" msgstr "五月" #: NOT FOUND IN SOURCE msgid "May." msgstr "05" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "我" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "成员" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "成员%1已创建" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "成员%1已删除" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "成员已创建: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "成员已删除" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "成员未删除" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "隶属于" #: NOT FOUND IN SOURCE msgid "Member since" msgstr "注册日期" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "隶属于" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "成员" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "已加入群组%1" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "已从群组%1移除" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "所属群组" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "用户%1的所属群组" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "整合完成" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "整合失败. 无法设定有效编号" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "整合失败. 无法设定状态" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "整合到" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "已整合到%1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "消息" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "由于信息过大,信息内容未显示" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "发送者要求消息不能inline,所以未予显示。" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "消息不是普通文本,所以未予显示。" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "信件内文不是纯文字,因此无法显示。" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "消息太大,所以未予显示。" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "消息框高度" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "消息框宽度" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "消息框包装" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "无法记录消息" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "给用户的消息" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "消息记录成功" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "此申请单的消息不会发送给..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "最短密码长度" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "分钟" #: NOT FOUND IN SOURCE msgid "Misc. Expense" msgstr "杂费" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "杂项" #: NOT FOUND IN SOURCE msgid "Mismatched parentheses" msgstr "未对齐的括号" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "缺少主键?:(%1)" #: NOT FOUND IN SOURCE msgid "Missing mandatory fields" msgstr "缺少必填字段" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "手机" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "移动电话" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "手机" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "更改" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "更改权限控制清单" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "更改适用于%1内所有%2的自定字段" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "更改适用于所有%1的自定字段" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all queues" msgstr "更改适用于所有队列的自定字段" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "更改群组权限" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "更改成员" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "更改权限" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "更改脚本模板" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "更改此队列的模板" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "更改脚本" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "更改此队列的脚本" #: NOT FOUND IN SOURCE msgid "Modify System ACLS" msgstr "更改系统权限清单" #: NOT FOUND IN SOURCE msgid "Modify Template %1" msgstr "更改模板 %1" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "更改用户权限" #: NOT FOUND IN SOURCE msgid "Modify Workflow" msgstr "更改流程" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "更改%1队列内的自定字段" #: NOT FOUND IN SOURCE msgid "Modify a CustomField that applies to all queues" msgstr "更改适用于所有队列的自定字段" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "更改%1队列内的脚本" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "更改适用于所有队列的脚本" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "更改文章 #%1" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "更改适用%1的对象" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "更改自定字段值" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "更改该群组的表单" #: NOT FOUND IN SOURCE msgid "Modify dates for # %1" msgstr "更改 # %1 的日期" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "更改#%1的日期" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "更改申请单# %1的日期" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "更改全局自定字段" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "更改全局的群组权限" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "更改全局的群组权限." #: NOT FOUND IN SOURCE msgid "Modify global rights for groups" msgstr "更改全局设定的群组权限" #: NOT FOUND IN SOURCE msgid "Modify global rights for users" msgstr "更改全局设定的用户权限" #: NOT FOUND IN SOURCE msgid "Modify global scrips" msgstr "更改全局脚本" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "更改全局主题" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "更改全局的用户权限" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "更改全局的用户权限." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "更改群组表单" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "更改群组成员名单" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "更改及删除群组" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "更改类型 %1 的群组权限" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "更改自定字段%1的群组权限" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "更改群组%1的群组权限" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "更改队列%1的群组权限" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "更改群组的成员名单" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "更改该类型的元数据与自定字段" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "更改个人帐号信息" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "更改或删除该类型的文章" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "更改链接到队列%1的人员" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "更改申请单#%1链接到的人员" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "更改个人表单" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "更改队列的关注者" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "更改队列%1的脚本" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "更改适用于所有队列的脚本" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "更改系统表单" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "更改模板%1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "更改队列 %2 中的模板 %1" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "更改适用于所有队列的模板" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "更改表单 %1 的内容" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "更改表单%1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "更改默认的‘RT一览’视图" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "更改群组%1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "更改表单的组件" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "更改队列关注者" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "更改表单 %1 的订阅" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "更改用户%1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "更改该搜索..." #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "更改申请单# %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "更改申请单# %1" #: NOT FOUND IN SOURCE msgid "Modify ticket status" msgstr "更改申请单状态" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "更改申请单" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "更改 %1 的主题" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "更改与该类型相关的主题层次" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "更改该类型的文章主题" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "更改类型 %1 的用户权限" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "更改自定字段%1的用户权限" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "更改群组%1的用户权限" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "更改队列%1的用户权限" #: NOT FOUND IN SOURCE msgid "Modify watchers for queue '%1'" msgstr "更改 '%1' 的关注者" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "更改申请单 #%1 的邮件接收者" #: NOT FOUND IN SOURCE msgid "Modify workflow %1" msgstr "更改流程 %1" #: NOT FOUND IN SOURCE msgid "Modify workflows which apply to all queues" msgstr "更改适用于所有队列的流程" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "更改权限清单" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "更改文章" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "更改文章主题" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "更改自定字段" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "更改表单" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "更改群组表单" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "更改个人表单" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "更改个人从属关系" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "更改队列关注者" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "更改脚本" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "更改个人帐号" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "更改模板" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "更改申请单" #: NOT FOUND IN SOURCE msgid "ModifyTicketStatus" msgstr "更改申请单状态" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "模块" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "星期一" #: NOT FOUND IN SOURCE msgid "Mon-Fri at %1" msgstr "每周一至周五 %1" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "星期一" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "星期一" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "周一到周五" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "更多" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "关于%1的进一步信息" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "关于申请者的更多情况" #: NOT FOUND IN SOURCE msgid "Morning Shift" msgstr "早班" #: NOT FOUND IN SOURCE msgid "Move" msgstr "移动" #: NOT FOUND IN SOURCE msgid "Move All" msgstr "全移" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "下移" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "上移" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "多个" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "必须指定'Name'的属性" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "我的%1申请单" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "我的批准单" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "我今天的工作" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "我的提醒项目" #: NOT FOUND IN SOURCE msgid "My Requests" msgstr "队列申请追踪" #: etc/initialdata:615 msgid "My Tickets" msgstr "队列处理" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "我的队列批准单" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "我的表单" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "我的提醒项目" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "我的已存搜索" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "(换行)" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "名称" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "帐号已有人使用" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "名称:" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "已命名和共享的入口组件" #: NOT FOUND IN SOURCE msgid "Nationality" msgstr "国籍" #: NOT FOUND IN SOURCE msgid "Need approval from system administrator" msgstr "需先由系统管理员进行批准请求" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "绝不" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "创建" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "新文章" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "新表单" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "创建链接" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "新的密码" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "新的待批准请求单" #: NOT FOUND IN SOURCE msgid "New Query" msgstr "创建搜索" #: NOT FOUND IN SOURCE msgid "New Request" msgstr "队列申请" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "创建搜索" #: NOT FOUND IN SOURCE msgid "New Watchers" msgstr "创建关注者" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "%1的新的和已打开的申请单" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "创建自定字段" #: NOT FOUND IN SOURCE msgid "New group" msgstr "创建群组" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "创建消息" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "新密码" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "已发送新密码通知" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "创建队列" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "创建提醒项目:" #: NOT FOUND IN SOURCE msgid "New request" msgstr "创建申请单" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "创建权限" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "创建脚本" #: NOT FOUND IN SOURCE msgid "New search" msgstr "重新搜索" #: NOT FOUND IN SOURCE msgid "New template" msgstr "创建模板" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "创建申请单" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "新申请单不存在" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "该队列的新申请单的状态不能为 '%1'." #: NOT FOUND IN SOURCE msgid "New user" msgstr "创建用户" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "新用户名字" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "新关注者" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "更新窗口设定" #: NOT FOUND IN SOURCE msgid "New workflow" msgstr "创建流程" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "下一项" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "下一页" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "下一页" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "昵称" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "昵称" #: NOT FOUND IN SOURCE msgid "Night Shift" msgstr "小夜班" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "否" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "%1没有加载" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "没有匹配 %1 的文章" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "尚未定义类型" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "没有找到匹配搜索条件的类型." #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "无自定字段" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "尚未定义自定字段" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "尚未定义群组" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "没有搜索" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "尚未定义队列" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "没有找到 RT 用户. 请咨询您的 RT 管理员." #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "找不到RT用户,请询问RT管理员。\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "没有标题" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "没有模板" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "未指定申请单。退出申请单 " #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket modifications\\n\\n" msgstr "未指定申请单。退出申请单更改\\n\\n" #: NOT FOUND IN SOURCE msgid "No Workflow" msgstr "没有流程" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "暂不处理" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "未指定字段" #: NOT FOUND IN SOURCE msgid "No command found\\n" msgstr "找不到命令" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "没有对这名用户的注释" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "没有附上申请单回复" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "没有表单" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "没有%1的描述" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "没有细节" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "未指定群组" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "找不到符合搜索条件的群组。" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "没有适合的密钥" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "没有这个地址的密钥" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "没有附上消息" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "没有提供名字" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "不许要加密" #: lib/RT/User.pm:851 msgid "No password set" msgstr "没有设定密码" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "没有创建队列的权限" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "没有在队列'%1'创建申请单的权限" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "没有创建用户的权限" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "没有显示该申请单的权限" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "没有更改文章的权限" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "没有保存全局已存搜索的权限" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "没有首选项设置的权限" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "没有查看文章的权限" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "没有视图申请单更新的权限" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "未指定单位" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "未指定单位." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "没有私钥" #: NOT FOUND IN SOURCE msgid "No protocol specified in %1" msgstr "%1 内未指定协议" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "找不到符合搜索条件的队列." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "没有指定的权限" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "找不到权限" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "没有授予权限" #: NOT FOUND IN SOURCE msgid "No search loaded" msgstr "尚未加载搜索" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "没有要进行的搜索" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "没有标题" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "没有密钥或者它不能做签名" #: NOT FOUND IN SOURCE msgid "No ticket id specified" msgstr "未指定申请单编号" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "没有找到申请单" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "未指定事务类型" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "没有可用的密钥" #: NOT FOUND IN SOURCE msgid "No user or email address specified" msgstr "未指定用户或邮箱" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "找不到符合搜索条件的用户." #: NOT FOUND IN SOURCE msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" msgstr "找不到合格的 RT 用户。RT cvs 处理器已停用。请向 RT 管理者询问。\\n" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "没有发送至 _Set的值!" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "_Set没有收到任何值!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "没人" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "从不" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "字段不存在?" #: NOT FOUND IN SOURCE msgid "Normal Users" msgstr "一般用户群组" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "未设定" #: NOT FOUND IN SOURCE msgid "Not configured to fetch the content from a %1 in %2" msgstr "未设定成从 %2 内撷取 %1" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "没有找到" #: NOT FOUND IN SOURCE msgid "Not logged in" msgstr "尚未登录" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "尚未登录" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "尚未设定" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "未使用移动浏览器?" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "尚未实现." #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "尚未完工..." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "备注" #: NOT FOUND IN SOURCE msgid "Notes:" msgstr "备注:" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "无法发送通知" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "通知管理抄送人" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "以注释方式通知管理抄送人" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "通知抄送人" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "以注释方式通知抄送人" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "通知其它收件人" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "以注释方式通知其它收件人" #: etc/initialdata:41 msgid "Notify Owner" msgstr "通知拥有人" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "以注释方式通知拥有人" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "通知拥有人申请单已驳回" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "通知拥有人申请单已被批准,可以进行下一步" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "通知拥有人申请单已完成全部批准" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "通知拥有人申请单已完成某项批准" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "通知拥有人申请单已被批准" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "通知拥有人,申请人,抄送人和管理抄送人" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "以注释方式通知拥有人,申请人,抄送人和管理抄送人" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "整理待批准请求单,通知拥有人及管理抄送人" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "通知申请者申请单已被所有批准者批准" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "通知申请者申请单已被某个批准者批准" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "通知申请人" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "通知申请人及抄送人" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "以注释方式通知申请人及抄送人" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "通知申请人、抄送及管理抄送人" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "以注释方式通知申请人、抄送及管理抄送人" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "通知我未读的消息" #: NOT FOUND IN SOURCE msgid "Notify people:" msgstr "通知对象" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "十一月" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "11" #: NOT FOUND IN SOURCE msgid "November" msgstr "十一月" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "搜索结果的数量" #: NOT FOUND IN SOURCE msgid "OIN104" msgstr "104eHRMS 接口" #: NOT FOUND IN SOURCE msgid "OK" msgstr "确定" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OR" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "对象" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "无法创建对象" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "无法删除对象" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "对象已创建" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "对象已删除" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "自定字段不适用于类型为%1的对象" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "对象类型不符" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "对象列表为空" #: NOT FOUND IN SOURCE msgid "Occupation Status" msgstr "在职状态" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "十月" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "10" #: NOT FOUND IN SOURCE msgid "October" msgstr "十月" #: NOT FOUND IN SOURCE msgid "Office Phone" msgstr "办公室电话" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "离线" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "离线编辑" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "离线上传" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "在%1时,%2写到:" #: NOT FOUND IN SOURCE msgid "On Change" msgstr "更改申请单时" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "关闭时" #: etc/initialdata:143 msgid "On Comment" msgstr "注释时" #: etc/initialdata:115 msgid "On Correspond" msgstr "回复申请单时" #: etc/initialdata:104 msgid "On Create" msgstr "创建申请单时" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "拥有人改变时" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "优先级改变时" #: etc/initialdata:172 msgid "On Queue Change" msgstr "队列改变时" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "驳回时" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "重新打开时" #: etc/initialdata:178 msgid "On Resolve" msgstr "解决时" #: etc/initialdata:149 msgid "On Status Change" msgstr "状态改变时" #: etc/initialdata:109 msgid "On Transaction" msgstr "事务发生时" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "一次密送" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "一次抄送" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "仅显示%1之后创建的申请单" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "仅显示%1之前创建的申请单" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "仅显示适用于下列项目的自定字段:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "打开" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "打开申请单" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "打开链接" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "打开" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "打开的申请单" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "在新窗口打开(列表的)申请单" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "在另一个窗口打开(列表的)申请单" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "收到回复时即打开申请单" #: NOT FOUND IN SOURCE msgid "Opened Tickets" msgstr "已申请运行中队列" #: NOT FOUND IN SOURCE msgid "Opinion" msgstr "意见" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "选项" #: NOT FOUND IN SOURCE msgid "Option Description" msgstr "选项描述" #: NOT FOUND IN SOURCE msgid "Option Name" msgstr "选项名称" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "选项" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "甲骨文" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "排序方式" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "顺序与排序方式" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "组织名称" #: NOT FOUND IN SOURCE msgid "Organization:" msgstr "组织:" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "原申请单:#%1" #: NOT FOUND IN SOURCE msgid "Other comma-delimited email addresses" msgstr "其它e-mail帐号 (仅e-mail通知;多笔帐号请用逗号','区隔)" #: NOT FOUND IN SOURCE msgid "Out of range" msgstr "期限外" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "已记录发送的注释邮件" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "已记录发送的邮件" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "发送的邮件" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "优先级随时间增加调整为" #: NOT FOUND IN SOURCE msgid "Override current custom fields with fields from %1" msgstr "以 %1 队列的自定字段取代当前字段" #: NOT FOUND IN SOURCE msgid "Override global rights" msgstr "取代全局权限" #: NOT FOUND IN SOURCE msgid "OverrideGlobalACL status %1" msgstr "取代全局权限 %1" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "总览" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "拥有申请单" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "拥有申请单" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "拥有人" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "拥有人'%1'没有权限拥有此申请单" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "拥有人已从%1改为%2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "无法设定拥有人." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "强制将拥有人从%1改为%2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "拥有人" #: NOT FOUND IN SOURCE msgid "Owner's Phone" msgstr "拥有人电话" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "拥有人名字" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "页" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "第 %1/%2 页" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "第1页(共1页)" #: share/html/dhandler:48 msgid "Page not found" msgstr "找不到页面" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "寻呼机" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "寻呼电话" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "寻呼机" #: NOT FOUND IN SOURCE msgid "Parameter" msgstr "呼叫参数" #: NOT FOUND IN SOURCE msgid "Parent" msgstr "上级" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "父申请单" #: NOT FOUND IN SOURCE msgid "Park Space" msgstr "停车位申请" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "密码" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "密码提示" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "密码更改完成" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "密码未设定" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "密码长度至少为%1个字符" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "密码未打印" #: lib/RT/User.pm:861 msgid "Password set" msgstr "密码已设定" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "密码太短" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "密码:%1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "密码:没有权限" #: etc/initialdata:463 msgid "PasswordChange" msgstr "密码更改" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "两次密码不符." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "密码确认失败。您的密码并未改变。" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "sendmail的路径" #: NOT FOUND IN SOURCE msgid "Pelase select a queue" msgstr "请选择队列名称" #: NOT FOUND IN SOURCE msgid "Pending Approval" msgstr "等待批准" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "人员" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "与队列 %1 有关的人" #: NOT FOUND IN SOURCE msgid "People with Queue Rights" msgstr "拥有队列权限人员" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "执行用户自定的动作" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "Perl" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl设定" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Perl库的搜索顺序" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "永久删除 RT 的数据" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "没有权限" #: NOT FOUND IN SOURCE msgid "Permission Settings" msgstr "权限设定" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "没有权限" #: NOT FOUND IN SOURCE msgid "Permissions denied" msgstr "权限不足" #: NOT FOUND IN SOURCE msgid "Permitted Queues:" msgstr "拥有权限队列列表:" #: NOT FOUND IN SOURCE msgid "Personal" msgstr "个人群组" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "个人表单" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "个人群组" #: NOT FOUND IN SOURCE msgid "Personal Homepage" msgstr "个人首页" #: NOT FOUND IN SOURCE msgid "Personal Todo" msgstr "私人待办事项" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "个人群组" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "个人群组:" #: NOT FOUND IN SOURCE msgid "PersonalHomepage" msgstr "个人首页" #: NOT FOUND IN SOURCE msgid "Phase 1: Create/Rename Groups (%1)" msgstr "第一阶段:群组创建及改名 (%1)" #: NOT FOUND IN SOURCE msgid "Phase 2: Disable/Enable Groups (%1)" msgstr "第二阶段:群组停用及启用 (%1)" #: NOT FOUND IN SOURCE msgid "Phase 3: Create/Rename Users (%1)" msgstr "第三阶段:用户创建及改名 (%1)" #: NOT FOUND IN SOURCE msgid "Phase 4: Disable/Enable Users (%1)" msgstr "第四阶段:用户停用及启用 (%1)" #: NOT FOUND IN SOURCE msgid "Phone" msgstr "电话" #: NOT FOUND IN SOURCE msgid "Phone number" msgstr "电话号码" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "电话号码" #: NOT FOUND IN SOURCE msgid "Pick" msgstr "挑选" #: NOT FOUND IN SOURCE msgid "Place of Departure" msgstr "出发地点" #: NOT FOUND IN SOURCE msgid "Placeholder" msgstr "尚未完工" #: NOT FOUND IN SOURCE msgid "Please Select" msgstr "请选择" #: NOT FOUND IN SOURCE msgid "Please check items to be deleted first." msgstr "请先选中要删除的对象" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "请检查URL链接是否正确,然后再试." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "请输入您当前的密码." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "请输入您当前的密码." #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the %2search builder interface%3." msgstr "请注意,申请单需具有以下状态之一( %1 ),才会在此显示。 关于功能更加强大的搜索,请访问 %2搜索生成器界面%3." #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the Config->Get('WebPath')%>/Search/Build.html\">search builder interface." msgstr "请注意,申请单需具有以下状态之一( %1 ),才会在此显示。 关于功能更加强大的搜索,请访问 Config->Get('WebPath')%>/Search/Build.html\">搜索生成器界面." #: NOT FOUND IN SOURCE msgid "Please select a group" msgstr "请选择群组" #: NOT FOUND IN SOURCE msgid "Please select a queue's workflow" msgstr "请选择队列流程" #: NOT FOUND IN SOURCE msgid "Please select one of the category types above." msgstr "请从上面选择一项分类。" #: NOT FOUND IN SOURCE msgid "Please select role" msgstr "请选择角色" #: NOT FOUND IN SOURCE msgid "Policy" msgstr "经营规章" #: NOT FOUND IN SOURCE msgid "Position" msgstr "职务" #: NOT FOUND IN SOURCE msgid "Position Level" msgstr "职等" #: NOT FOUND IN SOURCE msgid "Position Name" msgstr "职务名称" #: NOT FOUND IN SOURCE msgid "Position Number" msgstr "职务代码" #: NOT FOUND IN SOURCE msgid "Position Rank" msgstr "职级" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "可能的隐藏搜索" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: NOT FOUND IN SOURCE msgid "Pref" msgstr "首选项" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "首选项" #: NOT FOUND IN SOURCE msgid "Preferences %1 for user %2 ." msgstr "用户 %2 的 %1 首选项。" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "%2的首选项%1" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "%1的首选项已保存." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "用户%1的首选项已保存." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "首选项已保存." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "首选密钥: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "首选密钥" #: NOT FOUND IN SOURCE msgid "Prefs" msgstr "个人信息" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "准备动作完成" #: NOT FOUND IN SOURCE msgid "Press 'Esc' to close this window." msgstr "按 'Esc' 键可关闭本窗口。" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "上一项" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "前一项" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "上一页" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "前一页" #: NOT FOUND IN SOURCE msgid "Pri" msgstr "优先级" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "找不到单位 %1。" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "输出摘要消息到终端; 不要发送也不要标记为已发送" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "输出此消息" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "优先级" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "优先级起始值" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "隐私设定" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "隐私设定:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "私钥" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "内部成员" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "内部成员状态:%1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "内部成员" #: NOT FOUND IN SOURCE msgid "Process Status" msgstr "处理状态" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "不用事务进行处理,一些条件和动作可能失败,请考虑使用--transaction参数" #: NOT FOUND IN SOURCE msgid "Project" msgstr "项目" #: NOT FOUND IN SOURCE msgid "Project Name" msgstr "项目名称" #: NOT FOUND IN SOURCE msgid "Projects" msgstr "项目" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "内部用的虚拟群组" #: NOT FOUND IN SOURCE msgid "Public Description" msgstr "公开说明" #: NOT FOUND IN SOURCE msgid "Public Info" msgstr "公开信息" #: NOT FOUND IN SOURCE msgid "Public Service" msgstr "公共事务区" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "需要公钥'0x%1'来核实签名" #: NOT FOUND IN SOURCE msgid "Purging stale data: %1" msgstr "移除过期数据: %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "组件" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "搜索" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "创建搜索" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "搜索:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "队列" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "找不到队列%1" #: NOT FOUND IN SOURCE msgid "Queue '%1' not found\\n" msgstr "找不到队列 '%1'\\n" #: NOT FOUND IN SOURCE msgid "Queue Keyword Selections" msgstr "队列关键词选择" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "队列名称" #: NOT FOUND IN SOURCE msgid "Queue Owner" msgstr "业务拥有人" #: NOT FOUND IN SOURCE msgid "Queue Priority" msgstr "优先等级" #: NOT FOUND IN SOURCE msgid "Queue Rights" msgstr "队列权限" #: NOT FOUND IN SOURCE msgid "Queue Scrips" msgstr "队列脚本" #: NOT FOUND IN SOURCE msgid "Queue Setup" msgstr "队列设定" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "队列已存在" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "无法创建队列" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "无法加载队列" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "队列创建完成" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "队列已停用" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "队列已启用" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "队列编号" #: NOT FOUND IN SOURCE msgid "Queue is not specified." msgstr "未指定队列。" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "找不到队列" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "队列权限" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "队列的密钥" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "队列的管理抄送人" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "队列的抄送人" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "队列名称" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "队列的关注者" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "队列" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "由我管理的队列" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "我作为管理员抄送人的队列" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "快速创建" #: NOT FOUND IN SOURCE msgid "Quick Search" msgstr "队列现况" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "快速搜索" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "快速创建申请单" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "%2: RT%1版" #: NOT FOUND IN SOURCE msgid "RT %1 from Best Practical Solutions, LLC." msgstr "RT %1 版,Best Practical Solutions 公司出品。" #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n" msgstr "RT %1。版权所有 1996-%1 Jesse Vincent \\n" #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-2002 Jesse Vincent \\n" msgstr "RT %1。版权所有 1996-2002 Jesse Vincent \\n" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT管理页面" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "RT管理者邮箱" #: NOT FOUND IN SOURCE msgid "RT Authentication error." msgstr "RT 认证错误。" #: NOT FOUND IN SOURCE msgid "RT Bounce: %1" msgstr "RT 退信:%1" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT设置" #: NOT FOUND IN SOURCE msgid "RT Configuration error" msgstr "RT 设定错误" #: NOT FOUND IN SOURCE msgid "RT Critical error. Message not recorded!" msgstr "RT 致命错误。消息未被记录。" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT错误" #: NOT FOUND IN SOURCE msgid "RT Received mail (%1) from itself." msgstr "RT 收到从自己寄出的邮件 (%1)。" #: NOT FOUND IN SOURCE msgid "RT Recieved mail (%1) from itself." msgstr "RT 收到从自己寄出的邮件 (%1)。" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT自助服务" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT大小" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT 的变数" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT一览" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "用户%1的RT 一览" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT能通过邮件和用户交流,您需要告诉我们sendmail的路径。RT也需要知道当有人发送无效的邮件时应该发送通知到哪个邮箱,这个邮箱不能和RT接收邮件的邮箱一样" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT可于显示此自定字段时引入其它网站的内容" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT 可将此自定字段的值视为连往其它网站的超链接" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT核心变量" #: NOT FOUND IN SOURCE msgid "RT couldn't authenticate you" msgstr "RT 无法认证您的身份" #: NOT FOUND IN SOURCE msgid "RT couldn't find requestor via its external database lookup" msgstr "RT 无法从外部数据库搜索找到申请人信息" #: NOT FOUND IN SOURCE msgid "RT couldn't find the queue: %1" msgstr "RT 找不到队列:%1" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT无法保存您的此次对话." #: NOT FOUND IN SOURCE msgid "RT couldn't validate this PGP signature. \\n" msgstr "RT 无法确认这个 PGP 签章。\\n" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "%1专用流程系统" #: NOT FOUND IN SOURCE msgid "RT for %1: %2" msgstr "%1 专用 RT 系统:%2" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "RT 已执行您的命令" #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT 版权所有 1996-%1 Jesse Vincent <jesse@bestpractical.com>。
本软体按 GNU 通用公共授权第二版 散布。" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT是一个企业级的问题跟踪系统,您可以有效地管理任务,议题,问题或者别的其他类似的事务" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT在100强公司,个人业务,政府代理,教育机构,医院,公益组织,NGO,图书馆,开源项目还有其他的各种组织里广泛使用,遍及七大洲(是的,甚至在南极洲)。" #: NOT FOUND IN SOURCE msgid "RT thinks this message may be a bounce" msgstr "RT 认为这可能是退信" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT将使用这个用户来连接数据库,它将会被自动创建" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT将创建一个\"root\"用户并且用它作为密码" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT会在申请单主题内搜索您输入的数据" #: NOT FOUND IN SOURCE msgid "RT will process this message as if it were unsigned.\\n" msgstr "RT 以未签章方式处理这封邮件。\\n" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT 会将 %1 及 %2 置换成记录编号及自定字段" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT 会将 __id____CustomField__ 置换成记录编号及自定字段" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT将使用此字符串来识别您的此次安装并在邮件的主题里搜索它以便确定该消息是属于哪个申请单的。我们建议您把它设置为您的域名。" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT可以使用多种数据库。MySQL, PostgreSQL, Oracle and SQLite全部都支持。" #: NOT FOUND IN SOURCE msgid "RT's email command mode requires PGP authentication. Either you didn't sign your message, or your signature could not be verified." msgstr "RT 的电子邮件命令模式须要 PGP 认证。您可能没有签章,或是您的签章无法辨识。" #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "管理群组%1" #: NOT FOUND IN SOURCE msgid "RT::Queue-Role" msgstr "队列运行角色" #: NOT FOUND IN SOURCE msgid "RT::System-Role" msgstr "系统运行角色" #: NOT FOUND IN SOURCE msgid "RT::Ticket-Role" msgstr "申请单运行角色" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "配置里的RTAddressRegexp选项不匹配%1" #: NOT FOUND IN SOURCE msgid "RT_System" msgstr "系统消息" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: NOT FOUND IN SOURCE msgid "Read Only" msgstr "只读" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "真实姓名" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "真实姓名" #: NOT FOUND IN SOURCE msgid "Really reject this ticket?" msgstr "您确定要驳回这张申请单吗?" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "收件人" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "收件人" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "记录所有的更新" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "递归的成员" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "参考" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "已加入%1为参考本申请单" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "已移除%1为参考本申请单" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "已加入参考申请单%1" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "已移除参考申请单%1" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "被参考" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "被参考" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "参考" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "参考" #: NOT FOUND IN SOURCE msgid "Refine" msgstr "在结果范围内搜索" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "调整搜索条件" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "更新" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "每10分钟刷新一次主页" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "每120分钟刷新一次主页" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "每2分钟刷新一次主页" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "每20分钟刷新一次主页" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "每5分钟刷新一次主页" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "每60分钟刷新一次主页" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "每10分钟刷新一次搜索结果" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "每120分钟刷新一次搜索结果" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "每2分钟刷新一次搜索结果" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "每20分钟刷新一次搜索结果" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "每5分钟刷新一次搜索结果" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "每60分钟刷新一次搜索结果" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "每%1分钟刷新此页面" #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: NOT FOUND IN SOURCE msgid "Reject tickets" msgstr "驳回申请单" #: NOT FOUND IN SOURCE msgid "RejectTicket" msgstr "驳回申请单" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "记住默认队列" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "提醒" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "已创建提醒项目'%1'" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "已完成提醒项目'%1'" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "已重新打开提醒项目'%1'" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "提醒项目#%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "提醒项目" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "申请单#%1的提醒项目" #: NOT FOUND IN SOURCE msgid "Remove" msgstr "移除" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "移除管理员抄送" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "移除书签" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "移除抄送" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "移除申请人" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "在该队列将 %1 的 %2 成员资格移除." #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "渲染类型" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "用文本框来替代所有者的下拉列表" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "回复" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "回复地址" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "回复申请人" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "回复申请单" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "回复申请单" #: NOT FOUND IN SOURCE msgid "Report to Duty" msgstr "上下班刷卡" #: NOT FOUND IN SOURCE msgid "Reported on" msgstr "到职日期" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "报表" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "申请人" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "申请人电子邮件信箱地址" #: NOT FOUND IN SOURCE msgid "Requestor's" msgstr "申请人所属之第上" #: NOT FOUND IN SOURCE msgid "Requestor's Dept." msgstr "申请人所属部门之" #: NOT FOUND IN SOURCE msgid "Requestor's Phone" msgstr "申请人电话" #: NOT FOUND IN SOURCE msgid "Requestor(s)" msgstr "申请人" #: NOT FOUND IN SOURCE msgid "Requestor.EmailAddress" msgstr "申请人: 电子邮件信箱" #: NOT FOUND IN SOURCE msgid "RequestorAddresses" msgstr "申请人地址" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "申请人群组" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "申请人" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "申请单处理期限" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "未指定必要的参数'%1'" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "重置" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "重置 RT" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "重置私密认证码" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "重置为默认值" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "住所" #: NOT FOUND IN SOURCE msgid "Resolution" msgstr "解决状态" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "解决" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "解决申请单#%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "已解决" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "已由拥有人解决" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "已在指定日期内解决" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "已在指定日期内解决,按拥有人分组" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "已解决的申请单,按拥有人分组" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "解决日期(相对值)" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "回复" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "回复申请人" #: NOT FOUND IN SOURCE msgid "Responsibility Type" msgstr "责任区分" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "结果" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "每页列出几笔结果" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "返回申请单" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "再次输入密码" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "复原" #: NOT FOUND IN SOURCE msgid "Right %1 not found for %2 %3 in scope %4 (%5)\\n" msgstr "在 %4 (%5) 的范围内找不到 %2 %3 的 %1 权限\\n" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "权限已委托" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "权限已授予" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "权限已加载" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "权限无法取消" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "找不到权限" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "权限未加载。" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "权限已取消" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "权限及个人" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "无法将权限赋予%1" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "无法取消 %1 的权限" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "管理员的权限" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "工作人员的权限" #: NOT FOUND IN SOURCE msgid "Role Members" msgstr "角色成员" #: NOT FOUND IN SOURCE msgid "Role Name" msgstr "角色名称" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "角色" #: NOT FOUND IN SOURCE msgid "RootApproval" msgstr "交由系统管理员批准" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "行" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "每格行数" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "每页行数" #: NOT FOUND IN SOURCE msgid "Run Approval" msgstr "批准执行" #: NOT FOUND IN SOURCE msgid "SMTPDebug" msgstr "SMTP 侦错记录" #: NOT FOUND IN SOURCE msgid "SMTPFrom" msgstr "SMTP 寄件地址" #: NOT FOUND IN SOURCE msgid "SMTPServer" msgstr "SMTP 服务器" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "SQL 查询" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite是一个不需要任何配置或服务的数据库,尽管如此,RT的作者们建议仅在测试,演示和开发时使用它,因为它不能胜任工作中高负载的RT服务" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "星期六" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "星期六" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "星期六" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "保存" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "保存更改" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "保存首选项" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "作为新的保存" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "保存更改" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "保存为新文件" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "保存该搜索" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "已保存%1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "找不到已存搜索%1" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "已存搜索" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "已存图表" #: NOT FOUND IN SOURCE msgid "Saved search %1" msgstr "成功保存搜索:%1" #: NOT FOUND IN SOURCE msgid "Saved search %1 not found" msgstr "未找到已存搜索 %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "已存搜索" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "脚本 #%1" #: NOT FOUND IN SOURCE msgid "Scrip Action" msgstr "消息通知动作" #: NOT FOUND IN SOURCE msgid "Scrip Condition" msgstr "消息通知条件" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "脚本已创建" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "脚本字段" #: NOT FOUND IN SOURCE msgid "Scrip Name" msgstr "消息名称" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "脚本已删除" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "脚本" #: NOT FOUND IN SOURCE msgid "Scrips " msgstr "消息通知 " #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "脚本和收件人" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "%1 的脚本\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "应用于所有队列的脚本" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "搜索" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "搜索 %1已更新" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "搜索文章" #: NOT FOUND IN SOURCE msgid "Search Criteria" msgstr "搜索条件" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "搜索首选项" #: NOT FOUND IN SOURCE msgid "Search attribute load failure" msgstr "搜索属性加载失败" #: NOT FOUND IN SOURCE msgid "Search for Articles articles matching" msgstr "根据文章匹配搜索文章" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "搜索文章匹配" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "批准请求单搜索" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "搜索文章" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "申请单搜索" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "申请单搜索。输入编号数字,队列名,拥有人名字和申请人邮箱" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address. RT will look for anything else you enter in ticket bodies and attachments." msgstr "搜索申请单。请输入编号队列名称、拥有人的用户名称、或申请人的邮箱。以上格式之外的文字,则会在申请单内文及附件内检索。" #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "搜索选项" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "搜索结果" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "搜索结果,按%1分组" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "搜索结果刷新间隔" #: NOT FOUND IN SOURCE msgid "Search update: %1" msgstr "更新搜索:%1" #: NOT FOUND IN SOURCE msgid "Searches can't be associated with that kind of object" msgstr "无法对此类对象进行搜索" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "对所有申请单的全文进行检索,可能会需要很久的时间。但如果您真的有需要,可输入fulltext:文字 来搜索申请单的所有记录。" #: NOT FOUND IN SOURCE msgid "Second-" msgstr "二" #: NOT FOUND IN SOURCE msgid "Second-level Users" msgstr "二阶主管员工" #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "私密认证码" #: bin/rt-crontool:350 msgid "Security:" msgstr "安全性:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "参见:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "在该类型搜索文章" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "查阅自定字段值" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "查阅自定字段" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "查阅送出的电子邮件及收件人" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "保证类型存在" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "查阅申请单内的私人注释" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "查阅申请单总览" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "查看类型" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "查阅自定字段" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "查阅表单" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "查阅群组" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "查阅群组表单" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "查阅个人表单" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "查阅队列" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "选择" #: NOT FOUND IN SOURCE msgid "Select All" msgstr "全选" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "选择所有类型文章的自定字段" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "选择数据库类型" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "选择类型" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "选择自定字段" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "选择段落的颜色" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "选择群组" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "选择队列" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "为您新的申请单选择一个队列" #: NOT FOUND IN SOURCE msgid "Select a queue to link to" msgstr "请选择要连结队列" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "选择段落" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "选择用户" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "从 %1 中选择文章" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "选择文章以包括" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "选择另一种语言" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "选择框" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "选择自定字段" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "选择应用于所有队列自定字段" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "选择应用于所有用户群组的自定字段" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "选择应用于所有用户的自定字段" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "选择应用于所有队列内申请单的自定字段" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "选择应用于所有队列内申请单之更改的自定字段" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "选择日期" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "选择时间" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "选择群组" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "选择多个日期" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "选择多个时间" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "选择多重项目" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "选择单一项目" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "选择队列" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "选择要在'RT 一览'页面显示的队列" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "选择脚本" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "选择模板" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "选择该文章的主题" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "最多可选择 %1 个日期" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "最多可选择 %1 个时间" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "选择最多%1个值" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "选择用户" #: NOT FOUND IN SOURCE msgid "Select workflow" msgstr "选择流程" #: NOT FOUND IN SOURCE msgid "SelectExternal" msgstr "系统选项" #: NOT FOUND IN SOURCE msgid "SelectMultiple" msgstr "多重选项" #: NOT FOUND IN SOURCE msgid "SelectSingle" msgstr "单一选项" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "已选择的自定字段" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "已选队列" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "选择的密钥不被信任或不存在." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "已选择的对象" #: NOT FOUND IN SOURCE msgid "Selected users:" msgstr "已选择的用户:" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "选择的项目已更改. 请保存您的更改" #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "自助服务" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "邮件已发送" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "发送邮件给所有关注者" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "以注释方式发送邮件给所有关注者" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "发送邮件给拥有人和所有的关注者" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "以注释方式发送邮件给拥有人和所有的关注者" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "发送邮件给申请人及抄送人" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "以注释方式发送邮件给申请人及抄送人" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "发送邮件给申请人" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "发送邮件给特定的抄送及密送人" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "发送邮件给抄送人" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "以注释方式发送邮件给抄送人" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "发送邮件给管理抄送人" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "以注释发送邮件给管理抄送人" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "发送邮件给申请人" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "九月" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "09" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "以空格区分多个条目" #: NOT FOUND IN SOURCE msgid "September" msgstr "九月" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: NOT FOUND IN SOURCE msgid "Setting %1's 'Disabled' property to %2" msgstr "%1 的‘停用’属性已设为 %2" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "设置" #: NOT FOUND IN SOURCE msgid "Shift Type" msgstr "班别属性" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "对于您对申请单的更新,RT是否给您发信?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "显示" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "显示待批准申请单" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "显示批准标签栏" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "显示字段" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "显示配置标签栏" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "显示结果" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "在%1级显示申请单属性" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "显示已批准请求的批准请求单" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "也显示" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "显示基本信息" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "显示已驳回的批准请求单" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "显示细节" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "显示全局模板" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "显示链接描述" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "对申请者显示无申请单" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "先显示最老的历史记录" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "显示待处理的批准请求单" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "显示引用文本" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "显示尚待他人批准请求的批准请求单" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Show the Requestor's 10 highest priority closed tickets" msgstr "显示申请者 10 个最优先的关闭申请单" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Show the Requestor's 10 highest priority open tickets" msgstr "显示申请者 10 个最优先的开放申请单" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "显示申请者 10 个最优先的申请单" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "显示申请单内的私人注释" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "显示申请单摘要" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "显示权限清单" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "显示批准请求单标签" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "显示文章" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "显示文章历史" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "显示设定标签" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "显示全局模板" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "显示发送邮件" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "显示已存搜索" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "显示脚本" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "显示模板" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "显示申请单" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "显示申请单的注释" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "粉碎机" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "粉碎机需要一个目录来保存信息. 请检查%1是否存在以及可被网页服务器执行写操作" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "粉碎机需要一个目录来保存信息. 请检查%1是否存在以及可被网页服务器执行写操作" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "工具栏" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "签名" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "默认签名" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "登记成为申请人或抄送人" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "登记成为管理抄送人" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "签名档" #: NOT FOUND IN SOURCE msgid "Signed in as %1" msgstr "用户:%1" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "签名已停用" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "签名已启用" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "简单" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "快速搜索" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "单一" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "网站名称" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "大小" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "跳过菜单" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "跳过已停用的用户" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "小" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "某些浏览器只允许加载和RT服务器同一个网域的内容。" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "出了问题,请联系系统管理员" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "排序" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "排序方式" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "结果排序方式" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "排序顺序" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "排序" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "源" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "指定是每天运行还是每周运行" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "电子表格" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "阶段" #: NOT FOUND IN SOURCE msgid "Stage Action" msgstr "关卡运行动作" #: NOT FOUND IN SOURCE msgid "Stage Condition" msgstr "关卡运行条件" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: NOT FOUND IN SOURCE msgid "Stalled" msgstr "延宕" #: NOT FOUND IN SOURCE msgid "Start page" msgstr "首页" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "实际起始日期" #: NOT FOUND IN SOURCE msgid "Started date '%1' could not be parsed" msgstr "无法解读起始日期 '%1" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "实际起始日期(相对值)" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "应起始日期" #: NOT FOUND IN SOURCE msgid "Starts By" msgstr "应起始日" #: NOT FOUND IN SOURCE msgid "Starts date '%1' could not be parsed" msgstr "无法解读起始日期 '%1" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "应起始日期(相对值)" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "州" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "状态" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "状态 '%1' 不是该队列申请单的有效状态." #: etc/initialdata:307 msgid "Status Change" msgstr "状态改变" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "状态从%1改为%2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "状态改变" #: NOT FOUND IN SOURCE msgid "StatusChange" msgstr "现况改变时" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "强制更换拥有人" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "强制拥有申请单" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "强制拥有申请单" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "%2的步骤%1" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "拥有人从%1强制更换" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "拥有人从%1强制更换 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "样式" #: NOT FOUND IN SOURCE msgid "Subgroup" msgstr "子群组" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "主题" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "主题标签" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "标题已改为%1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "主题标签" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "主题标签已改为%1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "提交" #: NOT FOUND IN SOURCE msgid "Submit Workflow" msgstr "送出流程" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "订阅" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "订阅表单%1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "订阅表单" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "订阅表单" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "已订阅表单%1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "订阅" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "无法创建订阅: %1" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "设定成功" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "已解密数据" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "已加密数据" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "摘要" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "星期日" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "星期日" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "星期日" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "超级用户" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "暂时搁置的" #: NOT FOUND IN SOURCE msgid "Sync now" msgstr "执行同步" #: NOT FOUND IN SOURCE msgid "Sync104HRMS" msgstr "自动同步104HRMS" #: NOT FOUND IN SOURCE msgid "Synchronizing HRMS data. This may take a while..." msgstr "正在同步化 HRMS 人事系统数据。请稍待..." #: NOT FOUND IN SOURCE msgid "System" msgstr "系统" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "系统设定" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "系统表单" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "系统默认" #: NOT FOUND IN SOURCE msgid "System Defined" msgstr "系统定义" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "系统错误" #: NOT FOUND IN SOURCE msgid "System Error. Right not granted." msgstr "系统错误。设定权限失败。" #: NOT FOUND IN SOURCE msgid "System Error. right not granted" msgstr "系统错误。设定权限失败。" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "系统错误:%1" #: NOT FOUND IN SOURCE msgid "System Rights" msgstr "系统权限" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "系统工具" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "系统错误" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "系统错误. 权限委托失败。" #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "系统错误. 权限授予失败。" #: NOT FOUND IN SOURCE msgid "System error. Unable to grant rights." msgstr "系统错误。无法设定权限。" #: NOT FOUND IN SOURCE msgid "System groups" msgstr "系统群组" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "系统权限" #: NOT FOUND IN SOURCE msgid "SystemInternal" msgstr "系统内部用" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "内部使用的系统角色群组" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRING" #: NOT FOUND IN SOURCE msgid "TabbedUI" msgstr "页签接口" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "受理" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "自行拥有申请单" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "自行拥有申请单" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "已受理" #: NOT FOUND IN SOURCE msgid "Task" msgstr "工作事项" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "更多有关RT数据库的信息" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "模板" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "模板#%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "模板#%1已删除" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "找不到模板'%1'" #: NOT FOUND IN SOURCE msgid "Template Content" msgstr "通知模板内容" #: NOT FOUND IN SOURCE msgid "Template Description" msgstr "通知模板描述" #: NOT FOUND IN SOURCE msgid "Template Name" msgstr "通知模板名称" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "模板编译" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "模板已删除" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "模板不包括Perl代码" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "模板为空" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "模板是必填字段" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "找不到模板" #: NOT FOUND IN SOURCE msgid "Template not found\\n" msgstr "找不到模板\\n" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "模板解析完成" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "模板解析错误" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "模板解析错误: %1" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "模板" #: NOT FOUND IN SOURCE msgid "Templates " msgstr "通知模板 " #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "找不到 %1 的模板\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "队列 %1 的模板" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "文字" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "首选项里停用,所以文本文件未予显示" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "已经是目前字段的值" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "不是该自定字段的值" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "同样的值" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "单位已经拥有该权限" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "单位已经是该队列的%1" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "单位已经是该申请单的%1" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "单位不是该队列的%1" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "单位不是该申请单的%1" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "队列不存在" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "申请单有尚未解决的附属申请单" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "用户已具有该项权限" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "用户已经拥有该申请单" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "用户不存在" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "用户已经是内部成员" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "用户属于非内部成员群组" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "用户已加入内部成员群组" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "用户已加入非内部成员群组" #: NOT FOUND IN SOURCE msgid "That user is now unprivilegedileged" msgstr "这名用户已加入非内部成员群组" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "用户不能拥有该队列里的申请单" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "这不是一个数字编号" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "基本信息" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "申请单的抄送人" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "标识为 %1 的文章类型不适用于当前队列" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "数据库管理员的密码" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "申请单的管理抄送人" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "注释已被记录" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "数据库服务器的域名" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "以下命令将在“一般”队列中找到所有活动的申请单,如果已经过期的话则将其优先值设为99:" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "下列命令会找到 'general' 队列内所有运作中的申请单,并将其中 4 小时内未处理的申请单优先程度设为 99:" #: NOT FOUND IN SOURCE msgid "The following commands were not proccessed:\\n\\n" msgstr "以下命令未被执行:\\n\\n" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "下列组件已被删除并且将会被从表单里删除" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "下列组件对某些可看见该表单的用户可能不可见" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "密钥已被停用" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "密钥已被注销" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "密钥已过期" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "密钥被完全信任(fully)" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "密钥被终极信任(ultimately)" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "新的字段值已设定。" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "申请单的拥有人" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "找不到请求的页面" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "申请单的申请人" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "设置保存在%1" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "系统不能对要发送的邮件签名,通常是因为密码错误或者GPG代理宕了。请立即联系系统管理员,出问题的地址是:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "主题" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "有好几个可用作加密的密钥" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "申请单有未读信息" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "密钥被部分信任(marginal)" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "有超过一个名为 '%1' 的群组。这将会造成部分管理界面的矛盾,因此建议您重命名有冲突的群组。" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "没有适合加密的密钥" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "没有该队列之间状态的绘图,请联系系统管理员。" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "有一个合适的密钥,但是信任等级没有设定" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "用户不会看见这些注释" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "这些配置选项包括运行RT的基本选项。我们需要知道此RT的名称和域名。您也将需要为您的管理员用户设置密码。" #: NOT FOUND IN SOURCE msgid "Third-" msgstr "三" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "该自定字段不能具有值列表" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "此自定字段没有应用于该对象" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "该自定字段没有渲染类型" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "此功能仅限系统管理员使用" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "此功能只适用于系统管理员。" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "可能是因为不能写入目录'%1',或者数据库的一个表丢失或损坏。" #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "此消息会发送给..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "服务器进程记录没有SQL查询." #: NOT FOUND IN SOURCE msgid "This ticket %1 %2 (%3)\\n" msgstr "申请单 %1 %2 (%3)\\n" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "此工具会让用户经由RT执行任意命令。" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "事务没有内容" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "用户 %1 最优先处理的 %2 张申请单" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "用户送出的前%1份优先处理申请单" #: NOT FOUND IN SOURCE msgid "This user's 25 highest priority tickets" msgstr "用户送出的前 25 份优先处理申请单" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "星期四" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "星期四" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "星期四" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "申请单" #: NOT FOUND IN SOURCE msgid "Ticket # %1 %2" msgstr "申请单 # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket # %1 Jumbo update: %2" msgstr "更新申请单 # %1 的全部信息:%2" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "更新申请单#%1的全部信息:%2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "申请单#%1关系图" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "申请单#%1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "申请单#%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "申请单%1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "申请单#%1成功创建于'%2'队列" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "加载申请单 %1\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "申请单%1:%2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "申请单的自定字段" #: NOT FOUND IN SOURCE msgid "Ticket Due" msgstr "队列处理期限" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "申请单处理记录#%1 %2" #: NOT FOUND IN SOURCE msgid "Ticket ID" msgstr "单号" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "申请单编号" #: NOT FOUND IN SOURCE msgid "Ticket Processing Due" msgstr "队列运行期限" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "申请单已解决" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "申请单搜索" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "申请单的事务" #: NOT FOUND IN SOURCE msgid "Ticket Type" msgstr "队列种类" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "申请单与事务" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "申请单附件" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "申请单构成" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "申请单内容" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "申请单内容类型" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "内部错误,无法创建申请单" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "无法加载申请单" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "申请单创建完成" #: NOT FOUND IN SOURCE msgid "Ticket creation failed" msgstr "申请单创建失败" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "申请单删除完成" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "申请单显示" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "找不到申请单编号" #: NOT FOUND IN SOURCE msgid "Ticket killed" msgstr "申请单删除完成" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "申请单的元信息" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "找不到申请单" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "申请单状态已改变" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "申请单更新" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "申请单关注者" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "TicketSQL搜索模块" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "申请单" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "申请单%1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "申请单%1(%2)" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "待处理的申请单" #: NOT FOUND IN SOURCE msgid "Tickets I requested" msgstr "送出的申请单" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "申请单创建起始日期" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "申请单创建截止日期" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "%1 的申请单" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "申请单解决起始日期" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "申请单解决截止日期" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "批准请求之后,可连续处理:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "预计时间" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "剩余时间" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "处理时间" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "剩余时间" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "显示时间" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "已处理时间" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "预计时间" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "剩余时间" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "已处理时间" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "时区" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "标题" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "到" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "产生这次更改的差异档:" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "产生这次更改的差异档:\\n" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "如果需要支持、培训、定制开发或许可,请联系%1。" #: NOT FOUND IN SOURCE msgid "Todo" msgstr "待办事项" #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "切换 %1 项查询" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "切换堆栈轨迹" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "告知日期" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "告知日期(相对值)" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "工具" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "主题名称" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "主题成员已添加" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "主题成员已移除" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "未找到主题" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "主题" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "总数" #: etc/initialdata:249 msgid "Transaction" msgstr "事务" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "事务%1被清除" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "事务已创建" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "事务的自定字段" #: NOT FOUND IN SOURCE msgid "Transaction->Create couldn't, as you didn't specify a ticket id" msgstr "未指定申请单编号,无法创建更改" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "未指定对象类型及编号,无法创建事务" #: NOT FOUND IN SOURCE msgid "TransactionBatch" msgstr "批量更改时" #: NOT FOUND IN SOURCE msgid "TransactionCreate" msgstr "创建更改时" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "事务日期" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "不可更改事务" #: NOT FOUND IN SOURCE msgid "Transfer to" msgstr "移交给" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "信任" #: NOT FOUND IN SOURCE msgid "Trying to delete a right: %1" msgstr "试图删除某项权限:%1" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "星期二" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "星期二" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "星期二" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "类型" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "在文章编号前输入a: ,在申请单编号前输入 t:" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "类型从'%1'更改为'%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "无法添加主题成员" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "无法删除 %1 主题的成员" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "无法确定对象类型或编号" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "无法加载文章" #: NOT FOUND IN SOURCE msgid "Unable to read image: %1" msgstr "无法读图像: %1" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "无法设置用户 CSS: %1" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "无法设置用户 Logo: %1" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "无法设置隐私id: %1" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "无法设置隐私对象或id: %1" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "无法设置隐私对象: %1" #: NOT FOUND IN SOURCE msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "无法订阅表单 %1: 权限被拒绝" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "无法订阅表单%1: 没有权限" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Uncheck boxes to disable notifications to the listed recipients 仅针对该事务不勾选以停止通知列出的收件人;在“人员页面”中进行永久取消的管理。" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "尚未实现" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "外部系统登录帐号" #: NOT FOUND IN SOURCE msgid "UnixUsername" msgstr "外部系统登录帐号" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "未知的(没有设定信任值)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "未知的(该值是新添加的)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "未知的内容编码%1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "未知的字段:%1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "不限制" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "全数显示" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "未命名表单" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "未命名的搜索" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "未分配的申请单" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "非内部成员" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "未选择的自定字段" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "未选中队列" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "未选择的对象" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "未设定主密钥" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "未被受理" #: NOT FOUND IN SOURCE msgid "Untitled search" msgstr "未命名的搜索" #: NOT FOUND IN SOURCE msgid "Up" msgstr "上一页" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "更新" #: NOT FOUND IN SOURCE msgid "Update All" msgstr "全部更新" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "更新图表" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "更新图表" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "更新编号" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "更新申请单" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "更新类型" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "整批更新申请单" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "更新电子邮件信箱" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "更新格式并搜索" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "批量更新申请单" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "更新帐号" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "更新未被记录." #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "更新选择的申请单" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "更新签章" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "更新申请单" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "更新申请单 # %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "更新申请单#%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "更新申请单#%1(%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "更新类型既非回复也非注释" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "更新状态" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "已更新" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "已更新已存搜索\"%1\"" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "上传" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "上传新logo" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "上传多个档案" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "上传多张图片" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "上传一个文件" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "上传一张图片" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "上传最多%1个文件" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "上传最多%1张图片" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "上传您的更改" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "使用情况:" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "使用: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "使用SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "使用两列的布局来创建与更新表单?" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "使用自动完成来寻找拥有人?" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "使用css规则等宽显示文本并且保留格式,但是如果有需要可以换行。此功能不能在IE6上工作,如果需要,您应该使用前一个选项" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "使用默认值(%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "使用其它的 RT 管理工具" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "使用系统默认值(%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "使用下拉列表菜单来选择您想要提取为新文章的申请单更新。" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "使用此项可以保护文本文件的格式" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "用户" #: NOT FOUND IN SOURCE msgid "User %1 %2: %3\\n" msgstr "用户 %1 %2:%3\\n" #: NOT FOUND IN SOURCE msgid "User %1 Password: %2\\n" msgstr "用户 %1 密码:%2\\n" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "找不到用户'%1'。" #: NOT FOUND IN SOURCE msgid "User '%1' not found" msgstr "找不到用户 '%1'" #: NOT FOUND IN SOURCE msgid "User '%1' not found\\n" msgstr "找不到用户 '%1'\\n" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "用户(创建-过期)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "用户自定" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "用户自定的条件及动作" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "用户 ID" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "用户 ID" #: NOT FOUND IN SOURCE msgid "User Number" msgstr "员工编号" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "用户权限" #: NOT FOUND IN SOURCE msgid "User Setup" msgstr "用户设定" #: NOT FOUND IN SOURCE msgid "User Shift" msgstr "员工班别" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "用户试图在%2对象 #%3 的自定字段%1上执行未知的更新操作" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "无法创建用户:%1" #: lib/RT/User.pm:262 msgid "User created" msgstr "用户已创建" #: NOT FOUND IN SOURCE msgid "User created: %1" msgstr "用户 %1 创建完成" #: NOT FOUND IN SOURCE msgid "User created: %1 (%2)" msgstr "用户 %1 (%2) 创建完成" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "用户定义的群组" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "用户已停用" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "用户已启用" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "用户的邮箱为空" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "已加载用户" #: NOT FOUND IN SOURCE msgid "User notified" msgstr "已通知用户" #: NOT FOUND IN SOURCE msgid "User renamed from %1 to %2" msgstr "用户 %1 已改名为 %2" #: NOT FOUND IN SOURCE msgid "User view" msgstr "用户私人数据" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "用户的GnuPG密钥" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "用户自定群组" #: NOT FOUND IN SOURCE msgid "UserDefined" msgstr "用户自定" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "用户名" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "用户名格式" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "用户" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "符合搜索条件的用户" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "使用事务#%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "有效的搜索" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "验证" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "值" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "选择队列" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "字段值" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "变量" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "各种各样的RT报表" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "版本" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "查看脚本模板" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "查看脚本" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "查看自定字段值" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "查看自定字段" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "查看群组表单" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "查看外送电子邮件信息及收件人细节" #: lib/RT/Group.pm:99 msgid "View group" msgstr "查看群组" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "查看群组表单" #: NOT FOUND IN SOURCE msgid "View log" msgstr "视图记录档" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "查看个人表单" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "查看队列" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "查看已存搜索" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "查看系统表单" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "查看申请单隐私评论" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "查看申请单摘要" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "警告: 保存搜索为用户层次隐私" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "所见即所得编辑器高度" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "所见即所得消息编辑器" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "警告!没有签名!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "警告:您没有设置邮箱,所以你将收不到这个表单直到邮箱已设置" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "关注" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "以管理抄送人身份关注" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "关注者" #: NOT FOUND IN SOURCE msgid "Watcher loaded" msgstr "成功加载关注者信息" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "关注者群组" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "关注者" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "可以用数据库管理员的身分连接到数据库。请点击'自定基本项'继续自定RT。" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "当类别以另一自定字段为基础时,我们当前无法渲染列表。请使用其他的渲染类型。" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "我们需要知道RT的数据库名称,RT用来连接数据库的用户名和密码。RT可以创建数据库和将来访问数据库所用的用户名,这需要数据库管理员的用户名和密码。在第6步时我们会使用这里的信息来创建和初始化RT数据库。" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "网站端口" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "网页文字编码方式" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "星期三" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "星期三" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "星期三" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "每周摘要" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "欢迎使用RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "今日工作一览" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "RT是什么?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "如果RT不能处理一封邮件,该把这封邮件转发到哪里?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "RT发出的邮件包含了适当的From:和Reply-To:邮件头,这样用户可以很方便地在邮件客户端里回复邮件。可以为每个队列指定回复和注释两种邮箱,使用rt-mailgate前应先设定好这些邮箱。" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "当申请单通过所有批准后,将此消息回复到原申请单" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "当申请单通过某项批准后,将此消息回复到原申请单" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "创建申请单时" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "批准请求单创建之后,通知应受理的拥有人及管理抄送人" #: etc/initialdata:110 msgid "When anything happens" msgstr "当任何事情发生时" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "WYSIWYG 编辑器未启用时,此设置将决定自动换行线是否发送至 RT。" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "当点击'检查数据库是否可连接'时,可能会有一点延迟(因为RT正在尝试连接数据库)" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "关闭申请单时" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "驳回申请单时" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "重新打开申请单时" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "解决申请单时" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "更换申请单拥有人时" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "申请单优先顺序改变时" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "申请单队列改变时" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "申请单状态改变时" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "用户自定的条件发生时" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "注释完成时" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "回复完成时" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "sendmail路径" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "清理" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "工作" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "工作电话" #: NOT FOUND IN SOURCE msgid "Work offline" msgstr "离线工作" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "工作电话" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "工作时间" #: NOT FOUND IN SOURCE msgid "Workflow #%1" msgstr "流程 #%1" #: NOT FOUND IN SOURCE msgid "Workflow Begin" msgstr "流程开始" #: NOT FOUND IN SOURCE msgid "Workflow End" msgstr "流程结束" #: NOT FOUND IN SOURCE msgid "Workflow deleted" msgstr "流程已删除" #: NOT FOUND IN SOURCE msgid "Workflows" msgstr "流程" #: NOT FOUND IN SOURCE msgid "Writable" msgstr "可读写" #: NOT FOUND IN SOURCE msgid "XXX CHANGEME You are not an authorized user" msgstr "XXX CHANGEME 您是未经授权的用户" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "是" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "您可以在RT编辑该表单您的订阅 to it in RT." #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "您已是这份申请单的拥有人" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "您选择了加密邮件,但是某些收件人的公钥有问题。您可以选择修复公钥,或不发送邮件给有问题的收件人,或者不加密。" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "您选择了加密邮件,但是某个收件人的公钥有问题。您可以选择修复公钥,或不发送邮件给有问题的收件人,或者不加密。" #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "您不是被授权的用户" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "您可以跳到首个未读消息或者跳到首个未读消息并且标记所有消息为已读" #: NOT FOUND IN SOURCE msgid "You can access it with the Download button on the right." msgstr "您可以按右方的‘下载’键来取得。" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "您也可以直接编辑预定义的搜索" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "您不能在申请单内容插入任何自由形式、文本或wiki字段" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "不能设置密码." #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "只能重新指派您所拥有或是没有拥有人的申请单" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "您只能受理尚无拥有人的申请单" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "您不能将改变状态 '%1' 至 '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "您没有超级用户权限" #: NOT FOUND IN SOURCE msgid "You don't have permission to view that ticket.\\n" msgstr "您没有看那份申请单的权限。\\n" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "您会在队列%2找到%1的申请单" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "您已注销." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "您已经启用 GnuPG 支持,但是没有为此队列设置评论地址" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "您已经启用 GnuPG 支持,但是没有为此队列设置一致的地址" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "您没有在该队列创建申请单的权限." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "您可以为文章添加 \"a:###\" 形式的链接,其中 j### 代表文章的数字" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "您无法在该队列中创建申请单。" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "必须输入管理员密码" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "您必须设置指令日志为真,以启用该队列的历史页面" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "您必须为该队列设定一个评论地址,以配置 GnuPG 私钥" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "您必须为该队列设定一个一致的地址,以配置 GnuPG 私钥" #: NOT FOUND IN SOURCE msgid "You need to restart the Request Tracker service for saved changes to take effect." msgstr "您必须重新激活 Request Tracker 服务,保存的更改才会生效。" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "将会跳转到登录页面,您可以以用户%1和之前设置的密码登录。" #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "将会跳转到登录页面,您可以以用户root和之前设置的密码登录。" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "您应当选择您或数据库管理员最顺手的数据库" #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "您看到这个页面是因为你启动了RT服务但是却没有可用的数据库。通常这是因为您第一次启动RT,如此,可点击Let's go,RT会指导您创建RT数据库和服务。" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "您看到这个页面是因为你启动了RT服务但是却没有可用的数据库。通常这是因为您第一次启动RT,如此,可点击\"%1\",RT会指导您创建RT数据库和服务。" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "欢迎下次再来" #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "您提出的 %1 申请单" #: NOT FOUND IN SOURCE msgid "Your RT administrator has misconfigured the mail aliases which invoke RT" msgstr "RT 管理员可能设错了由 RT 寄出的邮件收件人标头档" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "当前密码" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "密码未设置." #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "申请单已由 %1 批准请求。可能还有其它待批准的步骤。" #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "您的申请单已完成批准程序。" #: NOT FOUND IN SOURCE msgid "Your request was rejected" msgstr "您的申请单已被驳回" #: NOT FOUND IN SOURCE msgid "Your request was rejected by %1." msgstr "您的申请单已被 %1 驳回。" #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "您的申请单已被驳回。" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "您的系统支持自动色彩建议的图片类型为: %1" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "帐号或密码错误" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "邮政编码" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[下]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[上]" #: NOT FOUND IN SOURCE msgid "[no subject]" msgstr "[没有标题]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[无]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "自定字段" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "活动的" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "在纯文本附件周围增加
标签"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "晚于"

#: NOT FOUND IN SOURCE
msgid "ago"
msgstr "过期"

#: NOT FOUND IN SOURCE
msgid "alert"
msgstr "急讯"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "允许创建已存搜索"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "允许加载已存搜索"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr "与之前"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr "与否"

#: NOT FOUND IN SOURCE
msgid "approving"
msgstr "待批准"

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "权限同%1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "条形图"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "早于"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "主体"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "从下到上"

#: NOT FOUND IN SOURCE
msgid "chart"
msgstr "图表"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr "选中本框以在全部的队列应用该类型。"

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "标记此项以应用到所有对象"

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr "选中本框以移除该全局类型,之后即能为此类型选择特定的队列。"

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "标记此项以从所有对象移除,然后便可以选择指定的对象"

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "标记以增加"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "点击选择/不选择全部对象"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "已解决"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "简明的"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "包含"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "内容"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "类型"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "核心配置"

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "申请单回复(可能)未送出"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "申请单回复已送出"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "critical"
msgstr "严重"

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "自定字段'%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "每天"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "每天%1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "天"

#: NOT FOUND IN SOURCE
msgid "dead"
msgstr "拒绝处理"

#: NOT FOUND IN SOURCE
msgid "debug"
msgstr "侦错"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "删除"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "已删除"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "显示可换行和格式化的纯文本附件"

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "不符合"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "不包含"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "不符合"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "下载"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr "持续"

#: NOT FOUND IN SOURCE
msgid "email address"
msgstr "电子邮件信箱"

#: NOT FOUND IN SOURCE
msgid "emergency"
msgstr "危难"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "等于"

#: NOT FOUND IN SOURCE
msgid "error"
msgstr "错误"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "错误:无法下移"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "错误:无法左移"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "错误:无法上移"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "错误:没有可删除的对象"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "错误:没有可移动的对象"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "错误:没有可切换的对象"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "每"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "插件已执行"

#: NOT FOUND IN SOURCE
msgid "false"
msgstr "假"

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "档名"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "完全"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "大于"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "群组"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "群组'%1'"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "按 %1 分组"

#: NOT FOUND IN SOURCE
msgid "hide quoted text"
msgstr "隐藏引用文本"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "小时"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "编号"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr "在类型 %1"

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr "非活动的"

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr "包括 %1"

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr "索引"

#: NOT FOUND IN SOURCE
msgid "info"
msgstr "信息"

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "是"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "不是"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "密钥已停用"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "密钥已过期"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "密钥已注销"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "从左至右"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "小于"

#: NOT FOUND IN SOURCE
msgid "level Admin"
msgstr "层主管"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "部分"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "符合"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "最大深度"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "分"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "分钟"

#: NOT FOUND IN SOURCE
msgid "modifications\\n\\n"
msgstr "更改\\n\\n"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "每月"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "每月(第%1天%2)"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "月"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "从不"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "创建"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "否"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "没有名称"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "没有值"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "无"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "不等于"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "空的"

#: NOT FOUND IN SOURCE
msgid "notice"
msgstr "提示"

#: NOT FOUND IN SOURCE
msgid "notlike"
msgstr "不符合"

#: NOT FOUND IN SOURCE
msgid "number"
msgstr "号"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "对象已删除"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "在"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "第几天"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "一"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "打开"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "打开/关闭"

#: NOT FOUND IN SOURCE
msgid "opened"
msgstr "已打开"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "其它..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "用户'%2'的'%1'个人群组"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "饼图"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "插件为空"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "队列%1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "已驳回"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr "需要运行 rt-crontool"

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "已解决"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "从右至左"

#: NOT FOUND IN SOURCE
msgid "rtname"
msgstr "服务器名称"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "秒"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "显示对象列表"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "显示批准申请标签"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "显示设定标签"

#: NOT FOUND IN SOURCE
msgid "show quoted text"
msgstr "显示引用文本"

#: NOT FOUND IN SOURCE
msgid "sidebar"
msgstr "侧边栏"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "site配置"

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "电子表格"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "延迟"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr "指令"

#: NOT FOUND IN SOURCE
msgid "style: %1"
msgstr "样式:%1"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "摘要"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "摘要行数"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "系统%1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "系统群组'%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "呼叫组件未指明原因"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "默认的邮箱(将会被用作邮件里的From:和Reply-To:字段)"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "默认的邮箱(将会被用作邮件里的From:和Reply-To:字段)"

#: NOT FOUND IN SOURCE
msgid "ticket #%1"
msgstr "申请单 #%1"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "申请单#%1 %2"

#: NOT FOUND IN SOURCE
msgid "till"
msgstr "至"

#: NOT FOUND IN SOURCE
msgid "to"
msgstr "到"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "自上而下"

#: NOT FOUND IN SOURCE
msgid "true"
msgstr "真"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "终极"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "未描述的群组%1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "无限制的"

#: NOT FOUND IN SOURCE
msgid "unresolved"
msgstr "未处理"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "用户"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "用户%1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "用户名"

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "详细的"

#: NOT FOUND IN SOURCE
msgid "warning"
msgstr "警告"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "每周"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "每周(星期%1 %2)"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "周"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "网站端口"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "包括邮件头"

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "模板:%1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "年"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "是"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/de.po0000664000175000017500000117064612262650742013741 0ustar  chmrrchmrrmsgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:11+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " %1 gelöscht"

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 umbenannt nach %2."

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 gespeichert."

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (kein öffentlicher Schlüssel!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (unzuverlässig!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "Nr"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: NOT FOUND IN SOURCE
msgid "$1"
msgstr "$1"

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$prefix %1"

#: NOT FOUND IN SOURCE
msgid "$x"
msgstr "$x"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %3.%2.%4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1, %3.%2.%6 %4:%5"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3. %2 %7, %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 hinzugefügt"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "vor %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 geändert in %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 gelöscht"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 gelöscht."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 umbenannt in %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 gespeichert."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 aktualisiert."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 mit der Vorlage %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) von %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Unverändert)"

#: NOT FOUND IN SOURCE
msgid "%1 (day %2) at %3"
msgstr "%1 (Tag %2) bei %3"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (von Ansicht %2)"

#: NOT FOUND IN SOURCE
msgid "%1 (on %2) at %3"
msgstr "%1 (von %2) bei %3"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - LogToScreen Konfigurationsoption anpassen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Ein Argument zur Übergabe an %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Statusausgabe auf STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Bitte die ID der Vorlage angeben die benutzt werden soll"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Möchtest Du die 'erste', 'letzte' oder 'alle' Transaktionen nutzen"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Namen oder die ID der Vorlage/n angeben, die Sie verwenden möchten"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Gibt an, welches Action-Modul benutzt werden soll"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Kommagetrennte Liste der Transaktionstypen angeben, die Sie verwenden möchten"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Gibt an, welches Condition-Modul benutzt werden soll"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Gibt an, welches Search-Modul benutzt werden soll"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Anzeigetafeln"

#: NOT FOUND IN SOURCE
msgid "%1 Dashboards"
msgstr "%1 Anzeigetafeln"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Alle Rechte vorbehalten 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "ScripAction %1 geladen"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 als Wert für %2 hinzugefügt"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 besteht bereits und hat RT Tabellen aber keine RT Metadaten. 'Initialize Database' kann später diese Metadaten in die bestehende Datenbank einfügen. Wenn Sie das wollen, klicken Sie 'Grundlagen anpassen' und fahren mit der Anpassung des RT fort."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 besteht bereits und hat RT Tabellen aber keine RT Metadaten. 'Initialize Database' kann später diese Metadaten in die bestehende Datenbank einfügen. Wenn Sie das wollen, klicken Sie 'Grundlagen anpassen' und fahren mit der Anpassung des RT fort."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 konnte nicht in der Datenbank gefunden werden obwohl es ein lokales Objekt zu sein scheint"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 scheint vollständig initialisiert zu sein. Wir brauchen keine weiteren Tabellen oder Metadata einzufügen aber Du kannst mit der Konfiguration durch klicken auf 'Grundlagen anpassen' fortfahren."

#: NOT FOUND IN SOURCE
msgid "%1 at %2"
msgstr "%1 um %2"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 von %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 von %2 in %3 geändert"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 geändert von '%2' in '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 Diagramm von %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 kopieren"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 Core-Konfiguration"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 konnte nicht auf %2 gesetzt werden."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 konnte den Status nicht auf erledigt setzen. Die RT-Datenbank könnte inkonsistent sein."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 erstellt"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 gelöscht"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 deaktiviert"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 existiert nicht."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 aktiviert"

#: NOT FOUND IN SOURCE
msgid "%1 grouped by %2"
msgstr "%1 gruppiert durch %2"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "Ihre %1 Anfragen höchster Priorität"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 ist ein Tool um mit Tickets von externen Programmen zu arbeiten, wie zum Beispiel cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 ist ein Dienstprogramm, welches aus CRON gestartet werden soll. Es sendet alle aufgeschobenen RT Benachrichtigungen als benutzer definierten Auszug"

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 ist eine RT Mail Adresse. Das Hinzufügen als %2 würde eine E-Mail Schleife erzeugen."

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 ist kein %2 dieses Bereichs mehr."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 ist kein %2 mehr von dieser Anfrage"

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 ist kein Wert mehr für das benutzer definierte Feld %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1 ist kein gültiger Lebenszyklus"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 Min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 zuletzt aktualisierte Artikel"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 neueste Artikel"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "Die %1 neusten Anfragen ohne Besitzer"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 Objekte"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 Rechte"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "Site-Konfiguration"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 aktualisiert: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 aktualisiert: Nichts verändert"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 aktualisiert"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 wird alle Anfragen schliessen, die in Beziehung zu diesem Ticket stehen."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1's %2 Objekte"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 Objekte"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1s GnuPG-Schlüssel"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1s aktuelles Password"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1's Anzeigetafeln"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1's gespeicherte Suchanfragen"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: keine Anlage angegeben"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Neues Ticket in%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1 MB"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1 Sek."

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1, Stunde, Stunden)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' ist ein ungültiger Wert für Status"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "\"%1\" ist keine gültige Klasse-Kennung"

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "\"Regeln\""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "\"System\""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "\"Benutzergruppen\""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "\"Benutzer\""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Zum Vervollständigen Kontrollkästchen anklicken)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Auswahl wird gelöscht)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Zum Löschen Kontrollkästchen anklicken)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Benachrichtigung der markierten Empfänger wird unterdrückt)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Benachrichtigungen an markierte Empfänger aktivieren)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Geben Sie die Anfrage IDs oder URLs getrennt durch Leerzeichen ein)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Wenn das Feld leer bleibt, dann wird der Standardwert: %1 verwendet)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Keine benutzerdefinierten Felder)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Keine Mitglieder)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Keine Scrips)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Keine Vorlagen)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Nichts)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Sendet ein Blind Carbon Copy - BCC Update and eine mit Komma separierte Liste von Mail Adressen. Zukünftige Updates werden nicht übermittelt.)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Sendet ein Carbon Copy - CC Update and eine mit Komma separierte Liste von E-Mail Adressen. Zukünftige Updates werden ebenfalls übermittelt.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Sendet ein Carbon Copy - CC Update and eine mit Komma separierte Liste von Mail Adressen. Zukünftige Updates werden nicht übermittelt.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Sendet ein Carbon Copy - CC Update and eine mit Komma separierte Liste von E-Mail Adressen. Zukünftige Updates werden ebenfalls übermittelt.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Benutze diese Felder, für 'Benutzer definierte' Bedingungen oder Aktionen)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Erhält keine E-Mails)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(jeder)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(leer)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(Keine Zusammenfassung)"

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(kein Name aufgeführt)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(unbenannt)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(kein öffentlicher Schlüssel!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(kein Wert)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(keine Werte)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(nur eine Anfrage)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(abhängig von %quant(%1, anderen Abfrage, anderen Abfragen))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(wartet auf Freigabe)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(wartet auf andere Sammlung)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(notwendig)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(vertraue: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(unbenannt)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(unzuverlässig!)"

#: NOT FOUND IN SOURCE
msgid "(yyyy/mm/dd)"
msgstr "(jjjj/mm/tt)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id ist ein veraltetes Argument und kann nicht zusammen mit --template genutzt werden"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--Transaktions Argument kann nur 'erstes', 'letztes' oder 'alle' sein"

#: NOT FOUND IN SOURCE
msgid "1995-11-25 21:59:12"
msgstr "1995-11-25 21:59:12"

#: NOT FOUND IN SOURCE
msgid "1995-11-25T21:59:12Z"
msgstr "1995-11-25T21:59:12Z"

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ticket->Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "<%$Action%> here"
msgstr "Hier <%$Action%>"

#: NOT FOUND IN SOURCE
msgid "<%$_%>"
msgstr "<%$_%>"

#: NOT FOUND IN SOURCE
msgid "<%$field%>"
msgstr "<%$field%>"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Jeder iCal Feed enthält eine geheimes Kürzel, welches Dich authorisiert. Falls die URL deines iCal Feeds in falsche Hände gekommen ist, kannst Du hier ein neues geheimes Kürzel erstellen, welches alle bestehenden iCal Feeds unbrauchbar macht

" #: etc/initialdata:215 msgid "A blank template" msgstr "Eine leere Vorlage" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Es wurde kein Passwort gesetzt, der Benutzer wird sich nicht anmelden können!" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE nicht gefunden" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEs können nur erstellt und gelöscht werden." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "UND" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Über mich" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Zugriffskontrolle" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Aktion" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Aktion %1 nicht gefunden" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Aktion '%1' nicht gefunden" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Vorgang ausgeführt." #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Aktion durchgeführt.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Aktion ist ein Pflichtfeld" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Aktion vorbereitet..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Aktionen" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "Aktive Tickets" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Hinzufügen" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "%1 hinzufügen" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "AdminCC hinzufügen" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Lesezeichen hinzufügen" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "CC hinzufügen" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Spalten hinzufügen" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Kriterium hinzufügen" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Weitere Dateien anhängen" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Klient hinzufügen" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Wert hinzufügen" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Scrip erstellen, das auf alle Bereiche angewendet wird" #: NOT FOUND IN SOURCE msgid "Add additional criteria" msgstr "zusätzliches Kriterium hinzufügen" #: NOT FOUND IN SOURCE msgid "Add and Search" msgstr "Hinzufügen und Suchen" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Füge den ausgewählten Anfragen Kommentare oder Antworten hinzu" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Gruppe hinzufügen" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Mitglieder hinzufügen" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Neue Beobachter hinzufügen" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "Rechte für %1 hinzufügen" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Diese Werte hinzufügen" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Diese Werte hinzufügen und Suche starten" #: NOT FOUND IN SOURCE msgid "Add these terms to your search" msgstr "Diese Bedingungen zur Suche hinzufügen" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Benutzer hinzufügen" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Werte hinzufügen" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Hinzufügen, Löschen und Ändern von Werten benutzerdefinierter Felder von Objekten" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "Hinzufügen, Ändern und Löschen von benutzerdefinierten Feldwerten für Objekte" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "%1 von %2 Mitgliedern zur Warteschlange hinzugefügt." #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Rolle wurde als %1 für diesen Bereich hinzugefügt" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Rolle wurde als %1 für diese Anfrage hinzugefügt" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Anschrift 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adresse 1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adresse 2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin CC" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Admin Kommentar" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Admin Korrespondenz" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Bereiche administrieren" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Globale Einstellungen" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdminAllPersonalGroups" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCC Gruppe" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "AdminClass" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminBenutzerdefiniertesFeld" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "AdminCustomFieldValues" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGruppe" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGruppenZugehörigkeit" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminEigenePersönlicheGruppen" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminBereich" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminBenutzer" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administrativer CC" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administrator Password" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Erweitert" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Erweiterte Suche" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Operator" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Alle Freigaben genehmigt" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "Alle Klassen" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "Alle Dashboards" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Alle Bereiche" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "Alle Tickets" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Jeder iCal Feed enthält eine geheimes Kürzel, welches Dich authorisiert. Falls die URL deines iCal Feeds in falsche Hände gekommen ist, kannst Du hier ein neues geheimes Kürzel erstellen, welches alle bestehenden iCal Feeds unbrauchbar macht" #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Alle Bereiche auf die das Suchkriterium zutrifft" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Alle Tickets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Alle Themen" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "Erlaube das Laden gespeicherter Suchanfragen" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Erlaube das Verwenden von Perl in den Templates, Scripts, etc." #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Bereits verschlüsselt" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Und/Oder" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Jedes Feld" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Zugeordnet" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Gilt für" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Wird auf alle Objekte angewendet" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Anwenden" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Global anwenden" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Änderungen anwenden" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Freigabe" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Freigabe #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Freigabe #%1: Notiz wurde aufgrund eines Systemfehlers nicht gespeichert" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Freigabe #%1: Notiz gespeichert" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Freigabe genehmigt" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Freigabe bereit für Besitzer" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Freigabe abgelehnt" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Freigeben" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Notizen des Freigebenden: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Apr" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Apr." #: NOT FOUND IN SOURCE msgid "April" msgstr "April" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "Artikel wirklich löschen?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "Artikel #%1 wurde gelöscht" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "Artikel #%1: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "Artikel %1" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "Artikel %1 wurde erstellt" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Artikelverwaltung" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "Artikel wurde gelöscht" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artikel wurde nicht gefunden" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "Artikel" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "%1 Artikel" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "%1 gefundene Artikel" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artikel ohne zugeordnetem Themengebiet" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "aufsteigend" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "aufsteigend" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Zuweisen und Entfernen von benutzerdefinierten Feldern" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "BenutzerdefiniertesFeldZuweisen" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Anhängen" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Datei anhängen" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Dateianhang" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Anhang" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Anhang '%1' konnte nicht geladen werden" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Anhang erstellt" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Dateiname des Anhangs" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Anlagen" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Anhang Verschlüsselung ist deaktiviert" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Attribut gelöscht" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Aug" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Aug." #: NOT FOUND IN SOURCE msgid "August" msgstr "August" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Automatische Antwort" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Automatische Antwort an Klienten" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Verfügbar" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Bcc" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Zurück" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Schlechte Privatsphähre für Eigenschaft %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Grundlagen" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "BCC" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Änderungen speichern" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC Firmen Logo" #: NOT FOUND IN SOURCE msgid "Binary" msgstr "Binär" #: etc/initialdata:214 msgid "Blank" msgstr "Leer" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Nachrichtentext" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Fett" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Lesezeichen" #: NOT FOUND IN SOURCE msgid "Bookmarkable link" msgstr "Speicherbarer Link" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Markierte Tickets" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Kurze Kopfzeilen" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Nach Thema durchsuchen" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Massen Update" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Massen Anfrageaktualisierung" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Support kaufen" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Als Standard nutzt RT die Zeitzone des System. Damit wird ein Standard für die Anzeige von Datum und Uhrzeit gesetzt. Benutzer können in ihren Einstellungen eine andere Zeitzone wählen." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CC Gruppe" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: NOT FOUND IN SOURCE msgid "Calendar" msgstr "Kalender" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Kann gespeicherte Suche \"%1\" nicht laden" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Kann Systembenutzer nicht ändern" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Kann diese Rolle diesen Bereich sehen" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Kann kein benutzerdefiniertes Feld ohne Namen hinzufügen" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Es wurde keine Kollektion gefunden für '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Kann keine gespeicherte Suche finden" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Kann kein Anfrage auf sich selbst verweisen lassen!" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Konnte %1 nicht speichern" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Kann diese Suche nicht speichern" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Sie können Quelle und Ziel nicht gleichzeitig angeben" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "In einem deaktivierten Bereich können keine Ticktes erstellt werden." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Kann Benutzer nicht anlegen: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategorien basieren auf" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorie" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Kategorie nicht gesetzt" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccs" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Ändere" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Bestätigungsticket auf Status \"Offen\" setzen" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Passwort ändern" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Alle auswählen" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Überprüfe Datenbank Verbindung" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Datenbank-Anmeldeinformationen überprüfen" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Auswahl wird gelöscht" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Zum Entziehen einer Berechtigung anwählen" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Überprüfe Datenbank Berechtigungen" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Kinder" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Datenbank auswählen" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Wähle einen Datenbank Typ" #: NOT FOUND IN SOURCE msgid "Choose a date" msgstr "Datum auswählen" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Stadt" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "Klasse" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klassenname" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "Klassen-ID" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "Klasse wurde bereits auf %1 angewendet" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "Klassen" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Verwerfen" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Alles löschen" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Klicke \"Finish Installation\" um den Assistenten zu beenden." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Klicke \"Initialize Database\" um die RT Datenbank zu erzeugen und mit Metadaten zu füllen. Dies kann einen Moment dauern." #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Fenster schliessen" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Geschlossen" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Geschlossene Anfragen" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Selektiere oder gebe mehrere Werte ein" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Combobox: Selektiere oder gib einen Wert ein" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Combobox: Selektiere oder gib bis zu %1 Werte ein" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Kommentar" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Kommentar Adresse" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Kommentar Adresse" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Kommentiere Anfragen" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "Kommentar Adresse" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "AnfrageKommentieren" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentare" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Kommentare (werden nicht an Klienten geschickt)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Kommentare (werden nicht an Klienten geschickt)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Kommentare zu diesem Benutzer" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Kommentar hinzugefügt" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Commit Stumpf ausgeführt" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Bedingung" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Bedingung '%1' nicht gefunden" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Bedingung ist ein Pflichtfeld" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Bedingung trifft zu..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Bedingung nicht gefunden" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Bedingung, Aktion und Vorlage" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Konfig Datei %1 ist gesperrt" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Konfiguration" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "Konfiguration für Queue %1" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Bestätigen" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Verbindung erfolgreich" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Inhalt" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Inhaltstyp" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "Inhaltstyp" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "Kopie" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Antwort Adresse" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "Antwort Adresse" #: etc/initialdata:283 msgid "Correspondence" msgstr "Antwort" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Antwort hinzugefügt" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "Konnte keinen neuen benutzerdefinierten Wert hinzufügen " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "Konnte kein neuen benutzerdefinierten Wert hinzufügen. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Konnte den Wert: %1 nicht zu dem benutzerdefinierten Feld hinzufügen" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Konnte den Besitzer nicht ändern. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Konnte Besitzer nicht ändern: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Konnte benutzerdefiniertes Feld nicht erzeugen" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Konnte benutzerdefiniertes Feld nicht erzeugen: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Konnte Gruppe nicht anlegen" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "Suche konnte nicht angelegt werden: %1" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Konnte Vorlage nicht anlegen: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Konnte Anfrage nicht in deaktivierter Queue \"%1\" erstellen" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Konnte Anfrage nicht anlegen. Bereich nicht angegeben" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Konnte Benutzer nicht anlegen" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "Suche %1 konnte nicht gelöscht werden: %2" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Konnte diesen Benutzer nicht finden oder anlegen" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Konnte diese Rolle nicht finden" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Konnte Attribut %1 nicht laden" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Konnte benutzerdefiniertes Feld %1 nicht laden" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Konnte die Gruppe nicht laden" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Kann Objekt für %1 nicht laden" #: NOT FOUND IN SOURCE msgid "Could not load search attribute" msgstr "Kann Such Attribut nicht laden" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Konnte diese Rolle nicht zu einen %1 dieses Bereichs machen" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Konnte diese Rolle nicht zu einem %1 dieses Anfragen machen" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Konnte diese Rolle nicht als %1 dieses Bereichs entfernen" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Konnte diese Rolle nicht als %1 dieser Anfrage entfernen" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Konnte Benutzerinformation nicht speichern" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Anlage konnte nicht zugefügt werden" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Konnte Benutzer nicht der Gruppe hinzufügen" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Benutzerdefiniertes Feld konnte nicht an das Objekt gebunden werden, da es bereits global definiert ist." #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Konnte die Transaktion nicht anlegen: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Eintrag konnte nicht erstellt werden" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Anzeigetafel %1: %2 konnte nicht gelöscht werden" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Konnte Zeile nicht finden" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Keine passende Transaktion gefunden, übersprungen" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Konnte diese Rolle nicht finden" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Konnte diesen Wert nicht finden" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Konnte %1 nicht aus der Benutzerdatenbank laden.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Konnte die Klasse %1 nicht laden" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Konnte benutzerdefiniertes Feld #%1 nicht laden" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Konnte Benutzerdefiniertes Feld #%1 nicht laden" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Konnte benutzerdefiniertes Feld %1 nicht laden" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Konnte Kopie der Anfrage #%1 nicht laden" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Anzeigetafel %1: %2 konnte nicht geladen werden" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Anzeigetafel %1: %2 konnte nicht geladen werden" #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Gruppe #%1 konnte nicht geladen werden" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Konnte Gruppe %1 nicht laden" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Konnte den Verweis nicht laden" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Konnte Objekt %1 nicht laden" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Konnte Benutzer %1 nicht laden oder erstellen" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Konnte den Bereich nicht laden" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Bereich #%1 konnte nicht geladen werden" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Konnte den Bereich %1 nicht laden" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Bereich '%1' konnte nicht geladen werden" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Script #%1 konnte nicht geladen werden" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Vorlage #%1 konnte nicht geladen werden" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Konnte Anfrage '%1' nicht laden" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Transaktion #%1 konnte nicht geladen werden" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Konnte Benutzer nicht laden" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Benutzer #%1 konnte nicht geladen werden" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Konnte Benutzer #%1 oder '%2' nicht laden" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Konnte Benutzer '%1' nicht laden" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Konnte Adresse nicht aus '%1' Zeichenkette auslesen" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Konnte Inhalt nicht durch entschlüsselte Daten ersetzen: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Konnte Inhalt nicht durch entschlüsselte Daten ersetzen: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Konnte '%1' nicht als URI auflösen" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Basis '%1' kann nicht zu einer URI aufgelöst werden." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Ziel '%1' kann nicht zu einer URI aufgelöst werden." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Konnte E-Mail nicht senden" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Konnte nicht %1 Beobachter: %2 setzen" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Konnte privaten Schlüssel nicht setzen" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Konnte privaten Schlüssel nicht zurücksetzen" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Land" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Erstellen" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Erstelle Anfragen" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "Klasse anlegen" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Erstelle ein benutzerdefiniertes Feld" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Erstelle ein benutzerdefiniertes Feld für den Bereich %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "Neuen Artikel anlegen" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Neuen Artikel anlegen unter" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Neue Anzeigetafel erstellen" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Erstelle eine neue Gruppe" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Erstelle eine neue persönliche Gruppe" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Erstelle eine neue Anfrage" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Erstelle einen neuen Benutzer" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Erstelle einen Bereich" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Erstelle ein Scrip für den Bereich %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Erstelle eine Vorlage" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Neue Anfrage erstellen" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Artikel anlegen" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "Artikel in Klasse anlegen..." #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "Artikel in dieser Klasse anlegen" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Erstelle Anzeigetafeln für diese Gruppe" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Erstelle neue Anfragen basierend auf der Vorlage dieses Scrips" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Erstelle private Anzeigetafeln" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Erstelle System Anzeigetafeln" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Anfrage erzeugen" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "Ticket anlegen" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Erstelle Anfragen in diesem Bereich" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Erstelle Anfragen offline" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Erstellen, löschen und modifizieren von benutzerdefinierten Felder" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Erstelle, lösche und modifiziere Bereich" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Erstellen, löschen und ändern der Mitglieder der persönlichen Gruppen eines Benutzers" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Erstellen, löschen und modifizieren von Mitgliedern persönlicher Gruppen" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Erstellen, löschen und modifizieren von Benutzern" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "Erstelle, ändere und lösche gespeicherte Suchen" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "Erstelle, ändere und lösche Benutzer" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "ErstelleArtikel" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "ErstelleAnzeigetafeln" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "ErstelleGruppenAnzeigetafeln" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "ErstelleEigeneAnzeigetafeln" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "GespeicherteSucheErstellen" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "AnfrageErstellen" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Erstellt" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Erstellt von" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Erstelle ein benutzerdefiniertes Feld %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Erstellt in einem Zeitraum" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "Suche %1 angelegt" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Erstellte Tickets einer Periode, sortiert nach Status" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "Erstellt von" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "Erstellt Relativ" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Ersteller" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Verschlüsselung" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Momentane Beziehungen" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Aktuelle Scrips" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "Aktuelle Suche" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Aktuelle Mitglieder" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Aktuelle Rechte" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Aktuelle Suche" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Aktuelle Beobachter" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Benutzerdefinierte Felder" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Benutzerdefinierte Felder für %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Benutzerdefinierter Aktions-Aufräum-Code" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Benutzerdefinierter Aktions-Vorbereitungs-Code" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Benutzerdefinierte Bedingung" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Benutzerdefiniertes Feld #%1 ist nicht dem Objekt zugeordnet" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Benutzerdefiniertes Feld %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Benutzerdefiniertes Feld %1 gilt nicht für dieses Objekt" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Benutzerdefiniertes Feld %1 hat einen Wert." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Benutzerdefiniertes Feld %1 hat keinen Wert." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Benutzerdefiniertes Feld %1 nicht gefunden" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Benutzerdefiniertes Feld '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Benutzerdefiniertes Feld ist bereits diesem Objekt zugeordnet" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Benutzerdefiniertes Feld nicht gefunden" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Wert %1 des benutzerdefinierten Feldes %2 konnte nicht gefunden werden" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Wert des benutzerdefinierten Felds konnte nicht gelöscht werden" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Wert des benutzerdefinierten Feldes konnte nicht gefunden werden" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Wert des benutzerdefinierten Feldes gelöscht" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "BenutzerdefiniertesFeld" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "CustomFieldValue" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Anpassen" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Grundlagen anpassen" #: NOT FOUND IN SOURCE msgid "Customize Database Details" msgstr "Datenbank Details anpassen" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "E-Mail Adressen anpassen" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "E-Mail Konfiguration anpassen" #: NOT FOUND IN SOURCE msgid "Customize Global" msgstr "Allgemeines anpassen" #: NOT FOUND IN SOURCE msgid "Customize Global Defaults" msgstr "Allgemeine Standardwerte anpassen" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA Passwort" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA Benutzername" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Tägliche Zusammenfassung" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Anzeigetafel" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Anzeigetafel konnte nicht erstellet werden: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Anzeigetafel konnte nicht aktualisiert werden: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Anzeigetafel aktualisiert" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Anzeigetafeln" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Datenbank Host" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Datenbankname" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Datenbank Password für RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Datenbank Port" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Datenbanktyp" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Datenbank Benutzername für RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Datumsformat" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "DateTime unterstützt nicht \"format_cldr\", Du must es aktualisieren um diese Funktionen zu nutzen" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "DateTime-Modul fehlt" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "DateTime::Locale unterstützt nicht \"date_format_full\", Du must es aktualisieren um diese Funktionen zu nutzen" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "DateTime:: Locale-Modul fehlt" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datumsangaben" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dez" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Dez." #: NOT FOUND IN SOURCE msgid "December" msgstr "Dezember" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Entschlüsseln" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Standard Vorlage für automatische Antworten" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Standard Bereich" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Standard Klient" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Standard Vorlage für Admin-Kommentar" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Standard Vorlage für Admin-Korrespondenz" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Standard Vorlage für Korrespondenz" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Standard Bereich" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Standard Vorlage für Transaktion" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Standard: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standard: %1/%2 von \"%3\" auf \"%4\" geändert." #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "Standard Fällig in" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Standard-Format" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Rechte weitergeben" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Ihnen gewährte Rechte weitergeben" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "RechteWeitergabe" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Rechteweitergabe" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Löschen" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Vorlage löschen" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "Artikel #%1 löschen" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "Artikel in dieser Klasse löschen" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Lösche Anzeigetafel für diese Gruppe" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Löschen fehlgeshlagen: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Lösche private Anzeigetafel" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Ausgewähltes Script löschen" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Lösche System Anzeigetafeln" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Anfragen löschen" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Werte löschen" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "LöscheAnzeigetafel" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "LöscheGruppenAnzeigetafel" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "LöscheEigeneAnzeigetafel" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "AnfrageLöschen" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Gelöscht %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Gelöschte Anzeigetafel %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "gelöschte Abfragen" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Gelöschte gespeicherte Suche" #: NOT FOUND IN SOURCE msgid "Deleted search" msgstr "Suche löschen" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "Suche %1 gelöscht" # Are these three strings really different? #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "Löschen dieses Objektes würde die referenzielle Integrität verletzen" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Löschen dieses Objektes würde die referenzielle Integrität verletzen" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Löschen dieses Objektes würde die referenzielle Integrität verletzen" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Ablehnen" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Voraussetzung von" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "DependedOnBy" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Als Voraussetzung von %1 hinzugefügt" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Als Voraussetzung von %1 gelöscht" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Setzt jetzt %1 voraus" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Setzt %1 nicht mehr voraus" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "abhängig von" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Setzt voraus" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "abhängig von" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "absteigend" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "absteigend" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Beschreiben Sie hier das Problem" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Beschreibung" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Details" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Richtung" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Deaktiviert" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Anzeige" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Zeige Zugriffskontroll Liste (ACL) an" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "Artikel %1 anzeigen" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Spalten Anzeige" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Zeige Scrip-Vorlagen für diesen Bereich" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Zeige Scrips für diesen Bereich" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Anzeigemodus" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Gespeicherte Suchanfragen für diese Gruppe anzeigen" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Herausgegeben unter version 2 der GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Mache irgend etwas und alles" #: NOT FOUND IN SOURCE msgid "Do the Search" msgstr "Suche durchführen" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Domänenname" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Nicht 'http://' mit angeben, nur z.B. 'localhost' oder 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Startseite nicht aktualisieren." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Ergebnis Seite nicht aktualisieren." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Diese Seite nicht aktualisieren." #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Diesem Schlüssel überhaupt nicht vertrauen" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Herunterladen" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Als Tabulator separierte Datei speichern" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Export Datei runterladen" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Fällig" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "Fällig Relative" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "Fehler: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Offene Anfragen einfach aktualisieren" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Ändere" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Benutzerdefinierte Felder verändern" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Bearbeite benutzerdefinierte Felder für %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Benutzerdefinierte Felder für alle Gruppen ändern" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Benutzerdefinierte Felder für alle Bereiche ändern" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Benutzerdefinierte Felder für alle Benutzer ändern" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Benutzerdefinierte Felder von Anfragen in allen Bereichen ändern" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Bearbeite Beziehungen" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Bearbeite Suche" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Suche editieren" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Bearbeite Vorlagen für den Bereich %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Bearbeite gespeicherte Suchanfragen für diese Gruppe" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Bearbeite Systemvorlagen" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "GespeicherteSucheEditieren" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Veränderbarer Text" #: NOT FOUND IN SOURCE msgid "Editing Configuration for Class %1" msgstr "Konfiguration für Klasse %1 bearbeiten" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Bearbeite Konfiguration für den Bereich %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Bearbeite benutzerdefiniertes Feld %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Bearbeite Mitgliedschaft für die Gruppe %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Bearbeite Mitgliedschaft der persönlichen Gruppe %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "EffectiveId" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Es muss entweder eine Quelle oder ein Ziel angegeben werden" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Entweder hast du keine Rechte die gespeicherte Suche %1 anzuzeigen oder die Bezeichnung ist falsch" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Email" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "E-Mail-Adresse" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "E-Mail Konfiguration" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "E-Mail Zusammenfassung" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "E-Mail Adresse bereits in Gebrauch" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "E-Mail Zustellung" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "E-Mail Vorlage für periodische Zusammenfassungen der Nachrichten" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "E-Mail" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Aktiviert" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "Aktiviert (Abwahl deaktiviert diese Klasse)" # ## muss das überhaupt übersetzt werden??? #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktiviert (Abwählen deaktiviert dieses benutzerdefinierte Feld)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktiviert (Abwählen deaktiviert diese Gruppe)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktiviert (Abwählen deaktiviert diesen Bereich)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "aktivierte Klassen" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Aktivierte Bereiche" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Aktive Bereiche die den Suchkriterien entsprechen" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Status aktiviert: %1" #: NOT FOUND IN SOURCE msgid "Enabled status: %1" msgstr "Status aktiviert: %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Verschlüsseln" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Standardmässig verschlüsseln" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Entschlüsseln/Verschlüsseln" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Verschlüsselte/Entschlüsselte Transaktion #%1 von Anfrage #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Verschlüsselung deaktiviert" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Verschlüsselung aktiviert" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Gebe Artikel, Tickets, oder andere URLs an die mit diesem Artikel in Zusammenhang stehen." #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "Gebe mehrere IP-Adressbereiche ein" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "Gebe mehrere IP-Adressen ein" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Mehrere Werte eingeben" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Mehrere Werte eingeben mit automatischer Vervollständigung" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Gib Objekte oder URI's ein um zu anderen Objekten zu verlinken. Trenne mehrere Einträge mit Leerzeichen." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "Gebe eine IP-Adresse ein" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Einen Wert eingeben" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Einen Wert eingeben mit automatischer Vervollständigung" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Gib Bereiche oder URI's ein um zu anderen Bereichen zu verlinken. Trenne mehrere Einträge mit Leerzeichen." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Gib Anfragen oder URI's ein um zu anderen Anfragen zu verlinken. Trenne mehrere Einträge mit Leerzeichen." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "Bis zu %1 IP-Adressbereichen eingeben" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "Bis zu %1 IP-Adressen eingeben" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Gib bis zu %1 Werte ein" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Gib bis zu %1 Werte ein mit automatischer Vervollständigung" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Fehler" # Queue->AddWatcher ist ein Code-Teil, nicht übersetzen #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Fehler in den Parametern zu Queue->AddWatcher" # Queue->DeleteWatcher ist ein Code-Teil, nicht übersetzen #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Fehler in den Parametern zu Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Fehler in den Parametern zu Ticket->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Fehler in den Parametern zu Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Fehler zu RT Besitzer: öffentlicher Schlüssel" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Fehler: Fehlende Anzeigetafel" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Fehler: falsche GnuPG Daten" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "Fehler: Gespeicherte Suche %1 konnte nicht geladen werden: %2" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Fehler: kein privater Schlüssel" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Fehler: öffentlicher Schlüssel" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "Fehler: Suche %1 konnte nicht aktualisiert werden: %2" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Anfragen eskalieren" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Geschätzt" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Jeder" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Betrachte neu erstellte Anfragen eines Bereiches zwischen zwei Daten" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Betrachte gelöste Anfragen eines Bereiches zwischen zwei Daten" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Betrachte gelöste Anfragen eines Bereichs, gruppiert nach Besitzer" #: bin/rt-crontool:356 msgid "Example:" msgstr "Beispiel:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Ablaufdatum" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "Erweiterter Status" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Externe Authentifizierung aktiviert." #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Zusatzinformationen" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Extrahiere Betreffs Etikett" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extrahiere Etiketten eines Transaktionsbetreffs und füge diese dem Betreff der Anfrage zu" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Verbindung zur Datenbank fehlgeschlagen: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Konnte Attribut %1 nicht erstellen" #: NOT FOUND IN SOURCE msgid "Failed to create search attribute" msgstr "Such Attribut konnte nicht erstellt werden" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Konnte die Pseudogruppe 'Privileged' nicht finden." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Konnte die Pseudogruppe 'Unprivileged' nicht finden." #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Konnte %1 %2 nicht laden" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Konnte %1 %2: %3 nicht laden" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Konnte Modul %1 nicht laden. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Objekt %1 konnte nicht geladen werden" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Konnte Vorlage nicht laden" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Konnte Vorlage nicht analysieren" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Feb" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Feb." #: NOT FOUND IN SOURCE msgid "February" msgstr "Februar" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "Feeds" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "Feld" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Quelle des Feldwertes:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "Datei Name" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Dateiname" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Werte eintragen" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Fülle die Felder mit Farbe mittels" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Mehrere Textfelder füllen" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Schreibe mehrere Wikitext Bereiche" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Ein Textfeld füllen" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Schreibe einen Wikitext Bereich" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Fülle dieses Feld mit einer URL." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "%1 Textfelder füllen" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Schreibe bis zu %1 Wikitext Bereiche" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "End Priorität" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "EndPriorität" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Finde alle Benutzer, deren" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Finde Gruppen, deren" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Finde Leute, deren" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Anfragen finden" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "Fingerabdruck" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Fertig" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Erste" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Änderung erzwingen" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Format" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Weiterleiten" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Nachricht weiterleiten" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Nachricht weiterleiten und zurückkehren" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Ticket weiterleiten" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Nachricht weiterleiten" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Nachricht weiterleiten an dritte Person(en)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Ticket #%1 weiterleiten" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Verlauf #%1 weiterleiten" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "NachrichtWeiterleiten" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "Leite Ticket weiter zu %1" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "%quant(%1, Anfrage, Anfragen) gefunden" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Objekt gefunden" #: NOT FOUND IN SOURCE msgid "Freeform" msgstr "Freie Eingabe" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Häufigkeit" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Fr" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Fr." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Freitag" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Alle Kopfzeilen" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Allgemein" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Vorlage von Datei übernehmen" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Erste Schritte" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "An %1 übergeben" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Global" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Globale benutzerdefinierte Felder" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Konfiguration globaler benutzerdefinierter Felder" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Globales Portlet %1 gespeichert" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Globale Vorlage: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG Fehler. Administrator kontaktieren" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG Inegration ist deaktiviert" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG Belange" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG private Schlüssel für %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "Private GnuPG-Schlüssel" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG öffentliche(r) Schlüssel für %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Los" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Gehe zu Gruppe" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Gehe zu Benutzer" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Los!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Gehe zu Ticket" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Zeige Anfrage" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagramm" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagrammeigenschaften" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Grafische Diagramme sind nicht verfügbar" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Gruppe" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Gruppenrechte" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Gruppe hat bereits Mitglieder: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Gruppe konnte nicht erstellt werden: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Gruppe angelegt" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Gruppe deaktiviert" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Gruppe aktiviert" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Gruppe hat kein solches Mitglied" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "Gruppe mit Namen '%1' ist bereits in Gebrauch" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Gruppe nicht gefunden" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Gruppen Rechte" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Gruppen" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Gruppen können nicht Mitglied eines ihrer Mitglieder sein" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Gruppen auf die das Suchkriterium passt" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Gruppen in denen der Benutzer Mitglied ist (markieren zum Entfernen)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Gruppen in denen der Benutzer kein Mitglied ist (markieren zum Hinzufügen)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Gruppen zu denen der Benutzer gehört" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "hat Mitglieder" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Kopf des weitergeleiteten Ticket" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Kopf einer weitergeleiteten Nachricht" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Hallo!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hallo %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Helfe uns nützliche Standard Werte für RT zu setzen." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Verberge zitierten Text" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "Verberge den Ticketverlauf standardmäßig" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Verlauf" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Verlauf der Gruppe %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Verlauf von Bereich %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Verlauf des Benutzers %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Startseite" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "Telefon (Privat)" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Startseite Aktualisierungsintervall" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Zuhause" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Startseite" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Stunde" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Stunden" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Ich habe %quant(%1, Betonmischer)" #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "Ich bin verwirrt" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identität" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Wenn eine Freigabe abgewiesen wird, weise das Original ab und lösche wartende Freigaben" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Wenn kein Klient spezifiziert ist, dann generiere Anfragen mit diesem Klienten" #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Wenn kein Bereich spezifiziert ist, dann generiere die Anfrage in diesem Bereich" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Wenn dieses Programm setgid ist, könnte ein böswilliger lokaler Nutzer Administrator Rechte auf dem RT bekommen." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Wenn Du bereits einen funktionierenden RT Server und Datenbank hast, solltest Du die Gelegenheit nutzen und Dich vergewissern, dass der Datenbank Server läuft und RT sich damit verbinden kann. Wenn das erledigt ist, stoppe und starte den RT Server." #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Wenn Du bereits einen funktionierenden RT Server und Datenbank hast, solltest Du die Gelegenheit nutzen und Dich vergewissern, dass der Datenbank Server läuft und RT sich damit verbinden kann. Wenn das erledigt ist, stoppe und starte den RT Server." #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Wenn Sie den Port auf dem der RT läuft ändern, ist es notwendig den Server neu zu starten, damit Sie sich anmelden können." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Wenn Sie etwas aktualisiert haben, denken Sie daran hier zu speichern" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Wenn Deine bevorzugte Datenbank nicht in dem Dropdown Menü aufgeführt ist, konnte RT keinen Datenbank Treiber lokal finden. Das Problem kann gelöst werden indem von %1 entweder DBD::MySQL, DBD::Oracle oder DBD::Pg installiert wird." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Unerlaubter Wert für %1" #: NOT FOUND IN SOURCE msgid "Image" msgstr "Bild" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Unveränderbares Feld" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Zeige auch deaktivierte benutzerdefinierte Felder an" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Zeige auch deaktivierte Gruppen an." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Zeige auch deaktivierte Bereiche an." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Zeige deaktivierte Benutzer auch in der Suche an." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Seite einbinden" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "Unvollständige Suche" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "Unvollständige Anfrage" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Individuelle Nachricht" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informiere den RT Besitzer, das Benutzer probleme mit öffentlichen Schlüsseln haben" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informiere Benutzer das eine bestellte Anzeigetafel vermisst wird" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informiere Benutzer das seine gesendete Nachricht ungültige GnuPG Daten enthält" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informiere Benutzer über Probleme mit seinem öffentlichen Schlüssel. Es kann kein verschlüsselter Inhalt empfangen werden" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Informiere Benutzer über sein zurückgesetztes Passwort" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informiere Benutzer über eine empfange verschlüsselte E-Mail und dass wir keine privaten Schlüssel zum entschlüsseln haben" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Start Priorität" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "StartPriorität" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initialisiere Datenbank" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "Eingabe wird nicht als IP-Adresse erkannt" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "Eingabe wird nicht als IP-Adressbereich erkannt" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Eingabefehler" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Eingabe muss mit %1 übereinstimmen" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "RT Installieren" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Interner Fehler" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Interner Fehler: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "Interner Fehler: %1" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 ungültig: %2 sieht nicht wie eine E-Mail Adresse aus" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "%1 ungültig: es sollte eine Zahl sein" #: NOT FOUND IN SOURCE msgid "Invalid %1: that doesn't look like an email address" msgstr "%1 ungültig: das sieht nicht wie eine E-Mail Adresse aus" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "Ungültige Klasse" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Ungültige Gruppenart" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Ungültiges Recht" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Ungültige Daten" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Ungültiges Objekt" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Ungültiges Benutzer Objekt" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Ungültiges Muster: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Ungültiger Bereich" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Ungültiges Recht" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ungültiges Recht. Konnte das Recht '%1' nicht anerkennen" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Ungültige E-Mail Adresse" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Ungültiger Wert für %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Ungültiger Wert für das benutzerdefinierte Feld" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Ungültiger Statuswert" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Ist nicht verschlüsselt" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Es ist wichtig, dass nicht authorisierte Benutzer dieses Programm nicht starten können." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Es wird empfohlen einen nicht priviligierten Unix User mit korrekten Gruppenrechten anzulegen um dieses Programm zu nutzen." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Es verarbeitet verschiedene Parameter:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kursiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Jan." #: NOT FOUND IN SOURCE msgid "January" msgstr "Januar" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "betrete oder verlasse Gruppe" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Betrete oder verlasse diese Gruppe" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jul" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Jul." #: NOT FOUND IN SOURCE msgid "July" msgstr "Juli" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Alles" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jun" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Jun." #: NOT FOUND IN SOURCE msgid "June" msgstr "Juni" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Lassen Sie 'localhost' wenn Sie nicht sicher sind. Leer lassen um über einen Socket zu verbinden." #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Sprache" #: NOT FOUND IN SOURCE msgid "Language." msgstr "Sprache" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Groß" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Letzter" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Letzter Kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Zuletzt Kontaktiert" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Zuletzt Aktualisiert" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Zuletzt geändert von" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "zuletzt geändert" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Zuletzt aktualisiert von" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "Zuletzt geändert am" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "ZuletztBearbeitetVon" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "Zuletzt Aktualisiert Relativ" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Leer lassen um an die aktuelle E-Mail Adresse (%1) zu senden" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Leer lassen um den Standard Wert für Ihre Datenbank zu benutzen" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Dies leer lassen um den Standard dba Benutzernamen für deinen Datenbanktyp zu verwenden" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Links" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legende" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Länge in Zeichen; Nutze '0' um alle Nachrichten inline darzustellen unabhängig von der Länge" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Diesem Benutzer RT-Zugriff gewähren" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Diesem Benutzer Rechte zuweisen" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Los geht's!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Verknüpfung" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Beziehung existiert bereits" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Beziehung konnte nicht erstellt werden" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Beziehung erstellt (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Beziehung gelöscht (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Beziehung nicht gefunden" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Verweise auf Anfrage #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Verknüpfe Werte mit" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Verknüpft" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "verknüpft von" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "verknüpft zu" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Beziehung nicht erstellt: Zugriff verweigert" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Beziehungen" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Laden" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "Eine gespeicherte Suche laden" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Gespeicherte Suchen laden" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Gespeicherte Suchanfragen laden" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "GespeicherteSucheLaden" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Geladen %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Original gespeicherte Suche \"%1\" geladen" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Geladene Perl Module" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Gespeicherte Suche \"%1\" geladen" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "Geladene Suche %1" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "Ladevorgang läuft ..." #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Lokalisierung" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LocalizedDateTime" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Adresse" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "Angemeldet" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Angemeldet als %1" #: NOT FOUND IN SOURCE msgid "Logged in as %1" msgstr "Angemeldet als %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Abgemeldet" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Anmelden" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "Alternativer Logo Text" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Abmelden" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Suchtyp unpassend" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "E-Mail" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Hauptsächliche Beziehungstypen" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Besitzer festlegen" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Status festlegen" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Fälligkeitsdatum festlegen" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Erledigungsdatum festlegen" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Anfangsdatum festlegen" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Startdatum festlegen" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Eingangsdatum festlegen" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Priorität festlegen" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Bereich festlegen" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Betreff festlegen" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Diese Gruppe dem Benutzer anzeigen" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Verwalte benutzerdefinierte Felder und Werte" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Gruppen und Gruppenmitglieder verwalten" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Eigenschaften und Einstellungen für alle Bereiche verwalten" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Bereich und bereichspezifische Einstellungen verwalten" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Verwalte gespeicherte Diagramme" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Benutzer und Passworte verwalten" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mär" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Mär." #: NOT FOUND IN SOURCE msgid "March" msgstr "März" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Alle Nachrichten als gelesen markieren" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Mason Vorlage Such Reihenfolge" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "Maximalwerte" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Maximale interne Nachrichten Länge" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mai" #: NOT FOUND IN SOURCE msgid "May." msgstr "Mai" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "Ich" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Mitglied" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Mitglied %1 hinzugefügt" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Mitglied %1 gelöscht" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Mitglied hinzugefügt: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Mitglied gelöscht" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Mitglied nicht gelöscht" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Mitglied von" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "Mitglied von" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Mitglieder" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Mitgliedschaft in %1 hinzugefügt" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Mitgliedschaft in %1 gelöscht" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Mitgliedschaft" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Mitgliedschaft des Benutzers %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Vereinigung erfolgreich" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Vereinigung fehlgeschlagen. Konnte EffectiveId nicht setzen" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Vereinigung fehlgeschlagen. Konnte Status nicht setzen" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Vereinigen mit" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Vereinigt mit %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Nachricht" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Nachrichtentext nicht angezeigt, da der Absender es nicht Inline anzeigen lässt." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Nachrichtentext nicht angezeigt, weil es kein Klartext ist." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Nachricht nicht angezeigt da zu lang oder kein Text" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Nachrichtentext nicht angezeigt, da er zu groß ist." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Nachrichten Fenster Höhe" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Nachrichten Fenster Breite" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Nachricht konnte nicht gespeichert werden" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Nachricht für Benutzer" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Nachricht gespeichert" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Nachrichten über diese Anfrage werden nicht an diese Empfänger gesendet:" #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minimale Passwortlänge" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuten" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "Diverses" #: NOT FOUND IN SOURCE msgid "Mismatched parentheses" msgstr "Unausgeglichene Klammerung" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "%1: Fehlt ein Primärschlüssel?" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Handy" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "Telefon (Mobil)" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "Handy" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Bearbeiten" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Ändere Zugriffskontrollliste (ACL)" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Alle benutzerdefinierten Felder %2, die zu %1 gehören, ändern" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Alle benutzerdefinierten Felder, die zu %1 gehören, ändern" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Gruppenrechte ändern" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Mitglieder ändern" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Rechte ändern" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "Scrip-Vorlagen bearbeiten" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Ändere Scrip-Vorlagen für diesen Bereich" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "Scrips bearbeiten" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Ändere Scrips für diesen Bereich" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Ändern der Benutzerrechte" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Ändere ein benutzerdefiniertes Feld für den Bereich %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Ändere ein Scrip für den Bereich %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Ändere ein globales benutzerdefiniertes Feld" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Ändern der assoziierte Objekte von %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Werte für benutzerdefiniertes Feld anpassen" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Ändere Anzeigetafeln dieser Gruppe" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Ändere Datumsangaben für #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Ändere Datumsangaben für Anfrage #%1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Ändern der globalen benutzerdefinierten Felder" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Ändere globale Gruppenrechte" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Ändere globale Gruppenrechte." #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Ändere globale Benutzerrechte" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Ändere globale Benutzerrechte." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Ändere Gruppen-Metadaten oder lösche die Gruppe" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "Gruppenrechte für Klasse %1 bearbeiten" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Ändere Gruppenrechte für das benutzerdefinierte Feld %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Ändere die Gruppenrechte der Gruppe %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Ändere Gruppenrechte für den Bereich %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Ändere Mitgliedsverzeichnis dieser Gruppe" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Ändert den eigenen RT-Zugang" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "Artikel in dieser Klasse löschen oder bearbeiten" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Ändere Personen im Zusammenhang mit diesem Bereich %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Ändere Personen der Anfragen #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Ändere eigene Anzeigetafeln" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Ändere Scrips für den Bereich %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Ändere auf alle Bereiche angewandte Scrips" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Ändere System Anzeigetafeln" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Ändere Vorlage %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "Vorlage %1 für Queue %2 bearbeiten" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Ändere globale Vorlagen" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Ändere die Anzeigetafel %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Ändere die standard \"RT auf einen Blick\" Ansicht" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Ändere Gruppe %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Ändere die Suchen der Anzeigetafel %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Ändere die Bereichsbeobachter" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Ändere das Abonnement der Anzeigetafel %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Ändere Benutzer %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "Diese Suche bearbeiten" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Ändere Anfrage #%1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Ändere Anfrage #%1" #: NOT FOUND IN SOURCE msgid "Modify ticket status" msgstr "Ticket-Status ändern" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Ändere Anfragen" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Ändere Benutzerrechte für benutzerdefinierte Felder von %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Ändere Benutzerrechte für die Gruppe %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Ändere Benutzerrechte für den Bereich %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "ACLBearbeiten" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "BenutzerdefiniertesFeldBearbeiten" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "ÄndereAnzeigetafel" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "ÄndereGruppenAnzeigetafel" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "ÄndereEigeneAnzeigetafel" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "EigeneMitgliedschaftBearbeiten" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "BereichsBeobachterBearbeiten" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "ScripsBearbeiten" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "SelbstBearbeiten" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "VorlageBearbeiten" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "AnfrageBearbeiten" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Mo" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Mo." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Montag" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Montag bis Freitag" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Mehr" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Mehr über %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Hinunter verschieben" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Hinauf verschieben" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Mehrere" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Sie müssen eine Angabe bei 'Name' machen" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Meine %1 Anfragen" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: NOT FOUND IN SOURCE msgid "My Bookmarks" msgstr "Meine Markierungen" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Mein Tag" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Meine Freigaben" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Meine Anzeigetafeln" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Meine gespeicherten Suchanfragen" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "neue Zeile" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Name" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Benutzername ist bereits in Gebrauch" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Name:" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Benannte, gemeinsame Sammlung von Portlets" #: NOT FOUND IN SOURCE msgid "Named, shared collection of saved searches" msgstr "Namen gemeinsamer Sammlungen von gespeicherten Suchen" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Niemals" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Neu" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Neue Beziehungen" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Neues Passwort" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Neue wartende Freigaben" #: NOT FOUND IN SOURCE msgid "New Query" msgstr "Neue Suche" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Neue Suche" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Neue und offene Anfragen für %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Neues benutzerdefiniertes Feld" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Neue Anzeigetafel" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Neue Gruppe" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Neue Nachrichten" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Neues Passwort" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Neue Passworterinnerung wurde verschickt" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Neuer Bereich" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Neue Erinnerung" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Neue Rechte" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Neues Scrip" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Neue Vorlage" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Neue Anfrage" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Neue Anfrage existiert nicht" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "In dieser Queue kann ein neues Ticket nicht den Status '%1' haben" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Neuer Benutzer" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Neuer Benutzer aufgerufen" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Neue Beobachter" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Nächste" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Nächste Seite" #: NOT FOUND IN SOURCE msgid "Next: " msgstr "Nächste: " #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Spitzname" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Spitzname" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Nein" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "No: %1 geladen" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Keine Klasse definiert" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Kein benutzerdefiniertes Feld" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Kein benutzerdefiniertes Feld definiert" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Keine Gruppe definiert" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Keine Suche" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Kein Bereich vorhanden" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Kein RT-Benutzer gefunden. Bitte kontaktiere Sie Ihren RT-Administrator.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Kein Betreff" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Keine Vorlage" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Keine Aktion" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Keine Spalte angegeben" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Kein Kommentar zu diesem Benutzer angegeben" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Keine Anzeigetafeln" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Keine Beschreibung für %1 vorhanden" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Keine Details" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Keine Gruppe angegeben" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Keine Gruppe mit diesen Kriterien gefunden" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Kein passender Schlüssel für Verschlüsselung" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Keine Schlüssel für diese Adresse" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Keine Nachricht angefügt" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Kein Name angegeben" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Verschlüsselung nicht benötigt" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Kein Passwort gesetzt" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Keine Erlaubnis Bereiche anzulegen" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Kein Erlaubnis um Anfragen im Bereich '%1' anzulegen" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Kein Recht Benutzer anzulegen" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Kein Recht dieses Anfrage anzuzeigen" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Keine Berechtigung um System weite Suchen zu speichern" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Keine Berechtigung um Einstellungen zu speichern" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Kein Recht dieses Anfrage zu aktualisieren" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Keine Rolle angegeben" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Keine Rolle ausgewählt." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Kein privater Schlüssel" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Keine den Suchkriterien entsprechenden Bereiche gefunden" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Kein Recht angegeben" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Keine Rechte gefunden" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Keine Rechte gewährt." #: NOT FOUND IN SOURCE msgid "No search loaded" msgstr "Keine Suche geladen" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Keine Suche zu bearbeiten." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Kein Betreff" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Kein oder unbrauchbarer Schlüssel für Unterzeichnung" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Keine Anfragen gefunden" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Kein Transaktionstyp angegeben" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Keine brauchbaren Schlüssel" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Keine auf die Suchkriterien passende Benutzer gefunden" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Kein Wert an _Set geschickt!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Niemand" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Keine" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Nichtexistierendes Feld?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Nicht gesetzt" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Nicht gefunden" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nicht angemeldet." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Nicht angegeben" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Noch nicht implementiert." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Bemerkungen" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Benachrichtigung konnte nicht verschickt werden" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Benachrichtige AdminCCs" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Benachrichtige AdminCCs als Kommentar" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Benachrichtige CCs" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Benachrichtige CCs als Kommentar" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Benachrichtige andere Empfänger" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Benachrichtige andere Empfänger als Kommentar" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Benachrichtige Besitzer" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Benachrichtige Besitzer als Kommentar" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Besitzer über ihre abgewiesene Anfrage informieren" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Informiere den Besitzer, das Sein Ticket frei gegeben wurde und fertig für die Bearbeitung ist" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "Benachrichtige Besitzer, dass sein Anfrage von allen Entscheidungsträgern freigegeben wurde" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "Benachrichtige Besitzer, dass sein Anfrage von einigen Entscheidungsträgern freigegeben wurde" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Informiere den Besitzer des Tickets, dass seine Anfrage frei gegeben wurde." #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Informiere Besitzer, Klienten, CCs und AdminCcs" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Informiere Besitzer, Klienten, CCs und AdminCcs als Kommentar" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Benachrichtige Besitzer und AdminCCs neuer auf Freigabe wartende Anfragen" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Informiere den Klienten, das seine Anfrage von allen Approvern freigegeben wurde" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Informiere den Klienten, das seine Anfrage von einigen Approvern freigegeben wurde" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Benachrichtige die Klienten" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Benachrichtige die Klienten und CCs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Benachrichtige die Klienten und CCs als Kommentar" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Benachrichtige die Klienten, CCs und AdminCCs" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Benachrichtige die Klienten, CCs und AdminCCs als Kommentar" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Benachrichtige mich über ungelesene Nachrichten" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Nov." #: NOT FOUND IN SOURCE msgid "November" msgstr "November" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Anzahl der Suchergebnisse" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ODER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt konnte nicht erstellt werden" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objekt konnte nicht gelöscht werden" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekt erstellt" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekt gelöscht" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objekt vom Typ %1 kann keine benutzerdefinierten Felder haben" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Objekt Typ passt nicht" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objekt Liste ist leer" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Okt." #: NOT FOUND IN SOURCE msgid "October" msgstr "Oktober" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Offline" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Offline Bearbeitung" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Offline Upload" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "Am %1, %2 schrieb:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Beim Schliessen" #: etc/initialdata:143 msgid "On Comment" msgstr "Bei Kommentar" #: etc/initialdata:115 msgid "On Correspond" msgstr "Bei Korrespondenz" #: etc/initialdata:104 msgid "On Create" msgstr "Bei Erstellen" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Bei Besitzerwechsel" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Bei Änderung der Priorität" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Bei Änderung des Bereichs" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Bei abweisen" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Beim Erneut Öffnen" #: etc/initialdata:178 msgid "On Resolve" msgstr "Beim Erledigen" #: etc/initialdata:149 msgid "On Status Change" msgstr "Beim Ändern des Status" #: etc/initialdata:109 msgid "On Transaction" msgstr "Bei einer Transaktion" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Einmaliger Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Einmaliger Cc" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Zeige nur Freigaben für nach dem %1 erstelle Anfragen" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Zeige nur Freigaben für vor dem %1 erstellte Anfragen" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Nur Benutzerdefinierte Felder anzeigen für:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Offen" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Öffne Anfragen" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Öffne URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Öffnen" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Offene Anfragen" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Öffne Anfragen bei Korrespondenz" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Option" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Optionen" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sortiert nach" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organisation" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Ursprüngliche Anfrage: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Ausgehende E-Mail über einen Kommentar gespeichert" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Ausgehende E-Mail gespeichert" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Ausgehende E-Mail" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Mit der Zeit steigt die Priorität auf" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Anfragen Übernehmen" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "AnfrageBesitzen" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Besitzer" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Besitzer '%1' hat keine Rechte die Anfrage zu besitzen" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Besitzer wurde von %1 zu %2 geändert" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Besitzer konnte nicht gesetzt werden" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Besitzer mit Gewalt von %1 in %2 geändert" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Besitzer Name" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Seite" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "Seite %1 von %2" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Seite 1 von 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Seite nicht gefunden" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Pager" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Pager" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Eltern" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Passwort" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Passwort Erinnerung" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Passwort geändert" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Das Passwort wurde nicht gesetzt" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Das Passwort muss mindestens %1 Zeichen lang sein" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Passwort wird nicht angezeigt" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Passwort erstellt" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "Passwort ist zu kurz" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Passwort: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Passwort: Zugriff verweigert" #: etc/initialdata:463 msgid "PasswordChange" msgstr "PasswortÄnderung" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Passwörter verschieden" #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Passwörter verschieden, keine Änderung" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Pfad zu sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Personen" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Führe eine benutzerdefinierte Aktion aus" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Perl Include Paths (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl Konfiguration" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Perl Bibliothek Such Reihenfolge" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Zugriff verweigert" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Zugriff verweigert" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Persönliche Anzeigetafel" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Persönliche Gruppen" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Persönliche Gruppen" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Persönliche Gruppen:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefonnummern" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Bitte die URL überprüfen und erneut versuchen" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Bitte gib dein aktuelles Passwort korrekt ein." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Bitte gib dein aktuelles Passwort ein." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "eventuell nicht sichtbare Abfragen" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Voreinstellungen" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Voreinstellung %1 für Benutzer %2" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Voreinstellung für %1 gespeichert" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Voreinstellung für Benutzer %1 gespeichert" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Voreinstellung gespeichert" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Bevorzugter Schlüssel: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Bevorzugter Schlüssel" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Prepare Stumpf ausgeführt" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Zurück" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Zurück" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "Vorherige Seite" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Rolle %1 nicht gefunden." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Gebe die zusammengefassten E-Mails nach STDOUT aus. Nicht oer E-Mail versenden. Nicht als versendet markieren." #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Drucke diese Nachricht" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Priorität" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Priorität beginnt bei" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Datenschutz" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privatsphäre:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Privater Schlüssel" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilegiert" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Privilegierungsstatus: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Privilegierte Benutzer" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Bearbeitung ohne Transaktion, einige Bedinungen and Aktionen könnten nicht funktionieren. Erwäge die Nutzung des --transaction Argumentes" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudogruppe für internen Gebrauch" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Öffentlicher Schlüssel '0x%1' wird benötigt um die Signatur zu prüfen" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Suchen" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Suche" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Suche erstellen" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Suche:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Bereich" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Bereich %1 nicht gefunden" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Name des Bereichs" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Bereich existiert bereits" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Bereich konnte nicht angelegt werden" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Bereich konnte nicht geladen werden" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Bereich angelegt" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Bereich deaktiviert" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Bereich aktiviert" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Bereich Id" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Bereich nicht gefunden" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Bereich Rechte" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Bereichsschlüssel" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "Bereich AdminCc" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "Bereich Cc" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "Bereich Name" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "Bereich Beobachter" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Bereiche" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Bereiche die ich verwalte" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Bereiche in denen ich AdminCc bin" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Schnellsuche" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Schnelle Anfrageerstellung" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 für %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT Administration" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "RT Administrator E-Mail" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "RT Konfiguration" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT Konfiguration" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT Fehler" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT Selbstbedienung" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT Größe" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT Variablen" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT auf einen Blick" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT Übersicht für Benutzer %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kann Inhalte anderer Webservices anzeigen in diesem benutzerdefinierten Feld" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kann die Inhalte dieser benutzerdefinierten Felder in Hyperlinks zu anderen Diensten umwandeln." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT Kernvariablen" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT konnte die Session nicht speichern" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT für %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT wird für die Verbindung zur Datenbank diesen Benutzer verwenden. Er wird für Sie erstellt." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT wird einen Benutzer \"root\" erstellen und diesem dieses Password geben" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT wird nach allem suchen was in einem Anfragen Betreff steht." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT wird %1 und %2 mit der Record ID und dem Wert des benutzerdefinierten Feldes ersetzen." #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT wird __id__ und __CustomField__ mit der Record ID und dem Wert des benutzerdefinierten Feldes ersetzen." #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT arbeitet mit verschiedenen Datenbanken zusammen. MySQL, PostgreSQL, Oracle und SQLite werden alle unterstützt." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "Bearbeite Mitgliedschaft für die Gruppe %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "RTAddressRegexp Wert in der Konfiguration trifft nicht %1" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Echter Name" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "Vollständiger Name" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Empfänger" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "Empfänger" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Alle Aktualisierungen speichern" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekursives Mitglied" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Referenz von %1 hinzugefügt" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Referenz von %1 gelöscht" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Referenz auf %1 hinzugefügt" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Referenz auf %1 gelöscht" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Referenziert von" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "Bezogen von" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Bezieht sich auf" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "Bezieht sich auf" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Aktualisieren" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Startseite alle 10 Minuten aktualisieren." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Startseite alle 120 Minuten aktualisieren." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Startseite alle 2 Minuten aktualisieren." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Startseite alle 20 Minuten aktualisieren." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Startseite alle 5 Minuten aktualisieren." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Startseite alle 60 Minuten aktualisieren." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Ergebnis alle 10 Minuten aktualisieren." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Ergebnis alle 120 Minuten aktualisieren." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Ergebnis alle 2 Minuten aktualisieren." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Ergebnis alle 20 Minuten aktualisieren." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Ergebnis alle 5 Minuten aktualisieren." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Ergebnis alle 60 Minuten aktualisieren." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Seite alle %1 Minuten aktualisieren." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: NOT FOUND IN SOURCE msgid "Reject tickets" msgstr "Tickets Ablehnen" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Erinnerung '%1' hinzugefügt" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Erinnerung '%1' erledigt" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Erinnerung '%1' erneut geöffnet" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Erinnerung Anfrage #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Erinnerungen" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Erinnerung für Anfrage #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Entferne AdminCC" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Lesezeichen entfernen" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Entferne CC" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Entferne Klient" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Antworten" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Antwort Adresse" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Antwort an Klienten" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Antworte auf Anfragen" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "AnfrageBeantworten" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Auswertungen" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Klient" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "KlientenGruppe" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Klienten" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Anfragen sollten erledigt werden innerhalb von" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Benötigter Parameter '%1' nicht angegeben" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Zurücksetzen" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Geheimen Authentifikationstoken zurück setzen" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Zurücksetzen" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Zuhause" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Erledigen" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Erledige Anfrage #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Erledigt" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Gelöst durch Besitzer" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Gelöst in Zeitraum" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Erledigte Tickets in einer Zeitspanne, gruppiert nach Besitzer" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Erledigte Tickets, sortiert nach Besitzer" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "Erledigt Relativ" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Antworten" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Ergebnisse" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Zur Anfrage zurückkehren" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Passwort wiederholen" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Zurücksetzen" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Recht weitergegeben" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Recht erteilt" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Recht geladen" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Recht konnte nicht zurückgezogen werden" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Recht nicht gefunden" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Recht nicht gefunden." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Recht zurückgezogen" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Rechte" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Rechte für %1 konnten nicht gewährt werden" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "Rechte für %1 konnten nicht entzogen werden" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "Rechte für Administratoren" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Rollen" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Zeilen" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Reihen pro Fenster" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Zeilen pro Seite" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sa" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Sa." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Samstag" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Speichern" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Änderungen Sichern" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Einstellungen speichern" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Als neu speichern" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Änderungen Sichern" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Gespeichert %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Gespeicherte Suche %1 nicht gefunden" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Gespeicherte Grafiken" #: NOT FOUND IN SOURCE msgid "Saved search %1" msgstr "Gespeicherte Suche %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Gespeicherte Suchanfragen" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip angelegt" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Scrip Felder" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip gelöscht" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Skripte und Empfänger" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Auf alle Bereiche angewandte Scrips" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Suchen" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Sucheinstellungen" #: NOT FOUND IN SOURCE msgid "Search attribute load failure" msgstr "Suchattribut lade Fehler" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Suche nach Freigaben" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Suche nach Anfragen" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Suche nach Anfragen, geben Sie Id, Bereich, Benutzernamen oder Klienten Email Adressen ein." #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address. RT will look for anything else you enter in ticket bodies and attachments." msgstr "Suche nach Tickets. Eingabe id Nummer, Stapel nach Name, Besitzer nach Benutzername und Klienten nach Email Adresse. RT wird nach Deiner Eingabe in Tickets und Anhängen suchen." #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers,queues by name" msgstr "Suche nach Tickets. Eingabe id Nummer,Stapel nach Name" #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Such Optionen" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Suchergebnis gruppiert nach %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Ergebnis Aktualisierungsintervall" #: NOT FOUND IN SOURCE msgid "Search update: %1" msgstr "Suche erneuern: %1" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Die Suche nach Volltexten in jedem Ticket kann sehr lange dauern, aber wenn Du es benötigst, kannst Du nach jedem Wort in jedem Ticketverlauf suchen indem Du fulltext:Wort eingibst." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Geheimer Authentifikationstoken" #: bin/rt-crontool:350 msgid "Security:" msgstr "Sicherheit:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Siehe auch:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Werte von benutzerdefinierten Feldern sehen" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Benutzerdefinierte Felder anzeigen" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Anzeigen der gesendeten Nachricht und deren Empfänger" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Anzeigen von anfrage-privaten Kommentaren" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Anfrage Zusammenfassungen anzeigen" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "BenutzerdefiniertesFeldAnzeigen" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "Anzeigetafel anzeigen" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "GruppeAnzeigen" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "Gruppen Anzeigetafel anzeigen" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "Eigene Anzeigetafel anzeigen" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "BereichAnzeigen" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Auswahl" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Datenbank Typ wählen" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Wählen Sie ein benutzerdefiniertes Feld aus" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Wählen Sie eine Gruppe aus" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Bereich auswählen" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Wählen Sie einen Bereich für Ihre neue Anfrage" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Wählen Sie einen Benutzer aus" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Andere Sprache wählen" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Wählen Sie ein benutzerdefiniertes Feld" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Benutzerdefinierte Felder für alle Bereiche auswählen" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Wählen Sie benutzerdefinierte Felder für alle Benutzergruppen aus" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Wählen Sie benutzerdefinierte Felder für alle Benutzer aus" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Wählen Sie benutzerdefinierte Felder für Anfragen in allen Bereichen aus" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Wählen Sie benutzerdefinierte Felder für Transaktionen mit Anfragen in allen Bereichen aus" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Anzeigetafel auswählen" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Wählen Sie eine Gruppe aus" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Wählen Sie mehrere Werte aus" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Wählen Sie einen Wert aus" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Wählen Sie einen Bereich aus" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Wähle Bereiche aus, welche auf der Startseite angezeigt werden" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Wählen Sie ein Scrip aus" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Wählen Sie eine Vorlage aus" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Wählen Sie bis zu %1 Werte aus" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Wählen Sie einen Benutzer aus" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Ausgewählte Benutzerdefinierte Felder" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Ausgewählter Schlüssel ist nicht vertrauenswürdig oder existiert nicht mehr." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Ausgewählte Objekte" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Auswahl wurde geändert. Bitte speichere deine Änderungen" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "E-Mail erfolgreich versendet" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Schickt eine Nachricht an alle Beobachter" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Schickt einen Kommentar an alle Beobachter" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Sende eine E-Mail an den Besitzer und alle Beobachter" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Sende eine E-Mail an den Besitzer und alle Beobachter als \"Kommentar\"" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Sende eine E-Mail an die Klienten und CCs" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Sende eine E-Mail an die Klienten und CCs als Kommentar" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Schickt eine Nachricht an die Klienten" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Sendet eine E-Mail an ausdrücklich aufgeführte CCs und BCCs" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Sendet eine E-Mail an alle CCs" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Sendet eine E-Mail an alle CCs als Kommentar" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Sendet eine E-Mail an administrative CCs" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Sendet eine E-Mail an administrative CCs als Kommentar" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Sendet eine E-Mail an den Besitzer" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Sep" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Sep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "September" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Einstellungen" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "Soll RT Ihnen E-Mails für ihre eigenen Aktualisierungen senden?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Zeige" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "Zeige Freigaben" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Zeige Spalten" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Zeige Ergebnisse" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Zeige Anfrage Eigenschaften der %1 Ebene" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Zeige freigegebene Anfragen" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Zeige auch" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Zeige Grundlagen" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Zeige abgelehnte Anfragen" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Zeige Details" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Zeige Verknüpfung Beschreibungen" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Zeige ältesten Eintrag zuerst" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Zeige anhängige Anfragen" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Zeige auf andere Freigaben wartende Anfragen" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "ACLAnzeigen" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "FreigabeTabAnzeigen" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "KonfigurationsMenüAnzeigen" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "AusgehendeE-MailAnzeigen" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "GespeicherteSuchanfragenAnzeigen" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "ScripsAnzeigen" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "VorlageAnzeigen" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "AnfragenAnzeigen" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "AnfrageKommentareAnzeigen" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Reißwolf" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Shredder benötigt ein Verzeichnis für Export Dateien. Bitte prüfen Sie das %1 vorhanden ist und für den Webserver beschreibbar ist." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Shredder benötigt ein Verzeichnis für Export Dateien. Bitte prüfen Sie das %1 vorhanden ist und für den Webserver beschreibbar ist." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Seitenleiste" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Signieren" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Standardmässig unterzeichnen" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Als Klient einer Anfrage oder Anfrage- bzw. Bereichs-CC eintragen" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Als Anfrage- oder Bereichs-AdminCC eintragen" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "E-Mail-Signatur" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Unterzeichnung deaktiviert" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Unterzeichung aktiviert" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Vereinfachte Suche" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Einzelne" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Name der Website" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Grösse" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Überspringe Menü" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Überspringe deaktivierten Benutzer" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Klein" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Einige Browser können evtl. nur Inhalte der gleichen Domain wie die des RT Server anzeigen." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Irgendwas läuft falsch. Setze Dich mit dem System Administrator in Verbindung" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sortieren" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortierung" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Quelle" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Gib an ob dieses ein täglicher oder wöchentlicher Durchlauf ist" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Tabellenkalkulation" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Phase" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Begonnen" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "Begonnen Relativ" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Beginnt" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "Beginnt Relativ" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Staat" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Status" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Statusänderung" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Status von %1 auf %2 geändert" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Stehlen" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Anfragen stehlen" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "AnfrageStehlen" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Schritt %1 von %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Gestohlen von %1" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Darstellung" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Betreff" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Betreffskennzeichnung" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Betreff wurde auf %1 geändert" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "Betreff Tag" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Betreffskennzeichung geändert zu: %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Übermitteln" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Abonnieren" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Abonniere Anzeigetafel %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Anzeigetafel abonnieren" #: NOT FOUND IN SOURCE msgid "Subscribe to email dashboards" msgstr "Abonniere Email Anzeigetafeln" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "Abonniere Anzeigetafel" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Anzeigetafel %1 abonniert" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Abonnement" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Abonnement konnte nicht erstellt werden: %1" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Gelungen" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Erfolgreich entschlüsselte Daten" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Erfolgreich verschlüsselte Daten" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "So" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "So." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Sonntag" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "SuperBenutzer" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Eingestellt" #: NOT FOUND IN SOURCE msgid "System" msgstr "System" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "System Konfiguration" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "System Anzeigetafel" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemvorgabe" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Systemfehler" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "System Fehlerr: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "System Werkzeuge" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Systemfehler. Recht nicht delegiert." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Systemfehler. Recht nicht gewährt." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Systemgruppen" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "System Rechte" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup für internen Gebrauch" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRING" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Übernehmen" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Anfragen übernehmen" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "AnfrageÜbernehmen" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Übernommen" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Vorlage" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Vorlage #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Vorlage #%1 gelöscht" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Vorlage '%1' nicht gefunden" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Vorlage gelöscht" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Vorlage ist leer" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Vorlage ist zwingend erforderlich" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Vorlage nicht gefunden" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Vorlagen eingelesen" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Vorlagen Analyse Fehler" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Vorlagen" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "Text" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Text-Datei wird nicht angezeigt, weil es in den Einstellungen deaktiviert ist." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Das ist bereits der aktuelle Wert" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Dies ist kein gültiger Wert für dieses benutzerdefinierte Feld" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Das ist der gleiche Wert" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Diese Rolle hat dieses Recht bereits" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Diese Rolle ist bereits ein %1 dieses Bereichs" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Diese Rolle ist bereits ein %1 dieser Anfrage" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Diese Rolle ist kein %1 dieses Bereichs" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Diese Rolle ist kein %1 dieser Anfrage" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Dieser Bereich existiert nicht" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Diese Anfrage hat ungelöste Abhängigkeiten" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Diese Anfrage gehört bereits diesem Benutzer" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Dieser Benutzer existiert nicht" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Dieser Benutzer ist bereits privilegiert" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Dieser Benutzer ist bereits unprivilegiert" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Dieser Benutzer ist jetzt privilegiert" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Dieser Benutzer ist jetzt unprivilegiert" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Diesem Benutzer dürfen keine Anfragen aus diesen Bereich gehören" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Dies ist keine numerische ID" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Grundlagen" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Der CC einer Anfrage" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "DBA Datenbank Password" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Der administrative CC einer Anfrage" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Der Domain-Name des Datenbank Server (z.B. 'db.example.com')." #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Das nachfolgende Kommando findet alle aktiven Tickets in dem Bereich 'General' und setzt deren Priorität auf 99 wenn die seit 4 Stunden nicht bearbeitet wurden:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Die folgenden Abfragen wurden gelöscht und werden aus der Anzeigetafel entfernt, sobald die Seite aktualisiert wird." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Die folgenden Abfragen sind möglicherweise nicht für alle Benutzer sichtbar, die diese Anzeigetafel sehen können." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Der Schlüssel wurde deaktiviert" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Der Schlüssel wurde entfernt" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Der Schlüssel ist abgelaufen" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Der Schlüssel ist voll vertrauenswürdig" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Der Schlüssel ist ulitmativ vertrauenswürdig" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Der neue Wert wurde gesetzt." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Der Besitzer einer Anfrage" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Die angefragte Seite konnte nicht gefunden werden" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Der Klient einer Anfrage" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Die von Ihnen gewählten Einstellungen wurden in %1 gespeichert." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Das System kann ausgehende E-Mails nicht signieren. Normalerweise ist dies ein Hinweis auf ein falsches Passwort oder das der GPG Agent nicht läuft. Bitte informieren Sie umgehend den Systemadministrator. Die Adressen mit Problemen sind:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Design" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Es sind mehrere Schlüssel für die Verschlüsselung vorhanden" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Es gibt ungelesene Nachrichten für diese Anfrage." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Dem Schlüssel kann nur geringfügig getraut werden" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Es wurde kein passender Schlüssel für die Verschlüsselung gefunden" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Es wurde ein Schlüssel gefunden aber ohne Vertrauensstellung" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Diese Kommentare sind generell nicht für den Benutzer sichtbar" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Dieses benutzerdefinierte Feld passt nicht zum Objekt" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Dieses Feature ist nur für Systemadministratoren verfügbar" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Dieses könnte heissen, dass das Verzeichnis '%1' ist nicht schreibbar oder eine Datenbank Tabelle wird vermisst oder ist defekt." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Diese Nachricht wird an folgende Empfänger gesendet:" #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dieses Werkzeug erlaubt es Benutzern beliebige Perl-Module von RT aus aufzurufen." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Diese Transaktion scheint keinen Inhalt zu haben" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "Die %1 dringensten Anfragen dieses Benutzers" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Die %1 dringensten Anfragen dieses Benutzers" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Do" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Do." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Donnerstag" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Anfrage" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Anfrage #%1 Alles aktualisieren: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Anfrage #%1 Verbindungsdiagramm" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Anfrage #%1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Anfrage #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Anfrage %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Anfrage %1 wurde im Bereich '%2' angelegt" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Anfrage %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Benutzerdefinierte Anfrage Felder" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Geschichte von Anfrage #%1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Anfrage erledigt" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Anfragen suchen" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Anfrage Transaktion" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Inhalt der Anfrage" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Art des Inhalts der Anfrage" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Anfrage konnte aufgrund eines internen Fehlers nicht angelegt werden" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Anfrage konnte nicht geladen werden" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Anfragen Anzeige" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Anfrage Metadaten" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Status der Anfrage geändert" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "TicketSQL Suchmodul" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Anfragen" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Anfragen %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Anfragen %1 von %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Anfragen erstellt nach" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Anfragen erstellt vor" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Anfragen gelöst nach" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Anfragen gelöst vor" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Anfragen, die von dieser Freigabe abhängen:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Geschätzte Zeit" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Verbleibende Zeit" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Gearbeitete Zeit" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Verbleibende Zeit" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Zeit zum anzeigen" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Gearbeitete Zeit" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "GeschätzteZeit" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "VerbleibendeZeit" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "GearbeiteteZeit" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Zeitzone" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Spaltenüberschrift" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "An" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Kontaktieren Sie bitte %1 für Unterstützung, Schulung, angepasste Entwicklungen oder bei Lizenzfragen." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Eingegangen" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "LetzterKontaktRelativ" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Werkzeuge" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Summe" #: etc/initialdata:249 msgid "Transaction" msgstr "Transaktion" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transaktion %1 eliminiert" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transaktion erstellt" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Benutzerdefinierte Felder bei Transaktionen" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create fehlgeschlagen, da Objekttyp und ID nicht angegeben wurden" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "Verlauf Datum" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transaktionen sind unveränderbar" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Vertrauen" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Di" #: NOT FOUND IN SOURCE msgid "Tue Dec 25 21:59:12 1995" msgstr "Di Dezember 25 21:59:12 1995" #: NOT FOUND IN SOURCE msgid "Tue, 25 Dec 1995 21:59:12 -0300" msgstr "Di, 25 Dezember 1995 21:59:12 -0300" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Di." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Dienstag" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Typ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Typ geändert von '%1' nach '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Konnte Objekt Typ oder Id nicht feststellen" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Konnte Anzeigetafel %1 nicht abonnieren: Zugriff verweigert" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Nicht implementiert" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix Login" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Unbekannt (kein Vertrauenswert zugewiesen)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Unbekannt (dieser Wert ist neu für das System)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Unbekannte Inhaltskodierung (Content-Encoding) %1" #: NOT FOUND IN SOURCE msgid "Unknown field: $key" msgstr "Unbekanntes Feld: $key" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Unbekanntes Feld: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "nicht begrenzt" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "unbegrenzt" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Unbenannte Suche" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Unprivilegiert" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Nichtausgewähltes benutzerdefiniertes Feld" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Nicht ausgewählte Objekte" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Privaten Schlüssel zurück setzen" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Zurückgegeben" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Aktualisieren" #: NOT FOUND IN SOURCE msgid "Update All" msgstr "Alles aktualisieren" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Diagramm aktualisieren" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Anfrage Aktualisieren" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Aktualisierungtyp" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Format aktualisieren und suchen" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Mehrere Anfragen aktualisieren" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Aktualisierung nicht gespeichert." #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "Aktualisiere ausgewählte Anfragen" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Aktualisiere Anfrage" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Aktualisiere Anfrage #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Aktualisiere Anfrage #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Aktualisierungstyp war weder Korrespondenz noch Kommentar." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "Aktualisiere Status" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Aktualisiert" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Gespeicherte Suche \"%1\" aktualisiert" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Hochladen" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Hochladen mehrerer Dateien" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Hochladen mehrerer Bilder" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Hochladen einer Datei" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Hochladen eines Bildes" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Hochladen von bis zu %1 Dateien" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Hochladen von bis zu %1 Bildern" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Änderungen hochladen" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Benutzung: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "SSL benutzen?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Benutze Standard (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Benutze andere administrative RT Tools" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Benutze System Standard (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Nutzen Sie dies, um die Formatierung von reinem Text zu schützen." #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Benutzer" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Benutzer '%1' konnte nicht gefunden werden" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Benutzer (Angelegt - abgelaufen)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Benutzerdefiniert" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Benutzerdefinierte Konditionen und Aktionen" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Benutzerrechte" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Benutzer hat einen unbekannten Aktualisierungstyp für das benutzerdefinierte Feld %1 bei %2-Objekt #%3 verlangt" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Benutzer konnte nicht angelegt werden: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Benutzer angelegt" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Benutzerdefinierte Gruppe" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Benutzer deaktiviert" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Benutzer aktiviert" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Benutzer hat eine leere E-Mail Adresse" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Benutzer geladen" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "GnuPG Schlüssel des Benutzers" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Benutzerdefinierte Gruppe" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Benutzername" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Benutzernamen Format" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Benutzer" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Auf diese Kriterien zutreffende Benutzer" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Benutze Transaktion #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Gültige Suche" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validierung" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Wert" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Werte" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Variable" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Verschiedene RT Berichte" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Version" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Anzeigetafel dieser Gruppe anzeigen" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Eigene Anzeigetafeln anzeigen" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "System Anzeigetafel anzeigen" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "WYSIWYG Editor Höhe" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG Nachrichten Verfasser" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Warnung! Dies ist NICHT signiert!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Warnung: Sie haben keine E-Mail Adresse eingetragen. Sie werden diese Anzeigetafel nicht empfangen, bis Sie eine vergeben haben" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Beobachte" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "BeobachteAlsAdminCc" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Beobachter" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "Beobachter Gruppe" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Beobachter" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Web Port" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Mi" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Mi." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Mittwoch" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Wochenübersicht" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Willkommen im RT" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Was ich heute gemacht habe" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Was ist RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Wenn RT eine E-Mail nicht bearbeiten kann, wohin soll sie weitergeleitet werden?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "Wenn das Ticket freigegeben wurde von allen involvierten Personen, füge die Korrespondenz dem original Ticket hinzu" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "Wenn das Ticket freigegeben wurde von einer involvierten Personen, füge die Korrespondenz dem original Ticket hinzu" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Wenn eine Anfrage erstellt wird" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Wenn ein freizugebendes Ticket erstellt wurde, informiere den Besitzer und den AdminCc des Tickets über die anstehende Freigabe" #: etc/initialdata:110 msgid "When anything happens" msgstr "Wenn irgendetwas passiert" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Immer wenn ein Ticket geschlossen wird" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Immer, wenn ein Ticket abgelehnt wird" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Immer wenn ein Ticket erneut geöffnet wird" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Immer wenn eine Anfrage erledigt wird" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Immer wenn der Besitzer einer Anfrage wechselt" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Immer wenn sich die Priorität eines Anfragen ändert" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Immer wenn eine Anfrage den Bereich wechselt" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Immer wenn sich der Status einer Anfrage ändert" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Immer wenn eine benutzerdefinierte Bedingung auftritt" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Immer wenn ein neuer Kommentar eingeht" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Immer wenn neue Korrespondenz eingeht" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Wo befindet sich Dein sendmail" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "rauslöschen" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Arbeit" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "Work offline" msgstr "Offline arbeiten" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "Arbeit" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Gearbeitet" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Ja" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Sie sind bereits Besitzer dieser Anfrage" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Du willst ausgehende Nachrichten verschlüsseln, aber es gibt Probleme mit den öffentlichen Schlüsseln der Empfänger. Du musst das Problem mit den Schlüsseln beheben, deaktiviere das Senden von Nachrichten an Empfänger mit Schlüssel Problemen oder deaktiviere Verschlüsselung." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Du willst ausgehende Nachrichten verschlüsseln, aber es gibt Probleme mit dem öffentlichen Schlüssel des Empfängers. Du musst das Problem mit den Schlüsseln beheben, deaktiviere das Senden von Nachrichten an den Empfänger mit Schlüssel Problemen oder deaktiviere Verschlüsselung." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Sie sind kein autorisierter Benutzer" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Springe zur ungelesenen Nachricht oder springe zur ungelesenen Nachricht und markiere alle Nachrichten als gelesen." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kannst die vordefinierte Suche auch selbst editieren" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Du kannst kein Passwort setzen" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Sie können nur Anfragen zuweisen, die keinen Besitzer haben" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Sie können nur Tickets übernehmen die keinen Besitzer haben" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Sie haben keine b>SuperUser Rechte." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Sie haben %1 Anfragen im Bereich %2 gefunden" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Sie wurden von RT abgemeldet." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Sie haben kein Recht, Anfragen in diesem Bereich anzulegen." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Sie dürfen in diesem Bereich keine Anfragen erstellen" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Sie müssen ein Administrator Password eingeben" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Sie sollten eine Datenbank wählen, mit der ihr Datenbank Administrator vertraut ist." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Sie können sich gerne wieder anmelden" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Dein aktuelles Passwort" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Dein Passwort ist nicht gesetzt" #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "Ihre Anfrage wurde von %1 freigegeben. Andere Freigaben können noch ausstehen." #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "Ihre Anfrage wurde freigegeben." #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "Ihre Anfrage wurde abgewiesen" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Ihr Benutzername oder Passwort ist falsch" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "PLZ" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[runter]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[hoch]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[keine]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "nach dem"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "Erlaube Erstellung von gespeicherten Suchabfragen"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "Erlaube das Laden von gespeicherten Suchabfragen"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "wie an %1 gewährt"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "Balken"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "vor dem"

#: NOT FOUND IN SOURCE
msgid "belongs to"
msgstr "gehört zu"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "unten nach oben"

#: NOT FOUND IN SOURCE
msgid "chart"
msgstr "Diagramm"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "markiere diese Box um das benutzerdefinierte Feld an alle Objekte zu binden"

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "markiere diese Box um das benutzerdefinierte Feld von allen Objekten zu entfernen, danach können spezifische Objekte ausgewählt werden"

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "Auswählen zum Hinzufügen"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "Klicken zum markieren/demarkieren aller Objekte auf einmal"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "geschlossen"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "präzise"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "enthält"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "Core-Konfiguration"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "Benutzerdefiniertes Feld '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "täglich"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "täglich um %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "Tagen"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "gelöscht"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not belong to"
msgstr "gehört nicht zu"

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "enthält nicht"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "enthält nicht"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "enthält nicht"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "herunterladen"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "gleich"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "Fehler: Kann nicht hinunter verschieben"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "Fehler: Kann nicht nach links verschieben"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "Fehler: Kann nicht hinauf verschieben"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "Fehler: Nichts zu löschen"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "Fehler: Nichts zu verschieben"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "Fehler: Nichts zum Umschalten"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "alle"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "Plugin erfolgreich ausgeführt"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "voll"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "größer als"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "Gruppe '%1'"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "sortiert nach %1"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "Stunden"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "ID"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "ist"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "ist nicht"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "Schlüssel deaktiviert"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "Schlüssel abgelaufen"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "Schlüssel wiederrufen"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "links nach rechts"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "kleiner als"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "geringfügig"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "enthält"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maximale Tiefe"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "Min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "Minuten"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "monatlich"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "monatlich (%1. Tag) um %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "Monaten"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "niemals"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "neu"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "nein"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "kein Name"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "kein Wert"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "keine"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "ungleich"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nichts"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "Objekte wurden erfolgreich entfernt"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "am"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "an Tag"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "ein"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "offen"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "Öffnen/Schliessen"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "andere..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "persönliche Gruppe '%1' für Benutzer '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "Torte"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "Plugin lieferte eine leere Liste zurück"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "Bereich %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "abgewiesen"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "erledigt"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "rechts nach links"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "Sek"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "Siehe nachstehende Objekt Liste"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "Zeige Freigabe Tab"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "Zeige Konfigurationsmenü"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "Site-Konfiguration"

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "Tabellenkalkulation"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "zurückgestellt"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "style: %1"
msgstr "Darstellung: %1"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "Ergebnisreihen"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "System %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "Systemgruppe '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "die aufrufende Komponente gab nicht an warum"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "Die Standard Adresse die in From: und Reply-To: Kopfzeilen von Kommentar Mails eingetragen wird."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "Die Standard Adressen die in From: und Reply-To: Kopfzeilen von Antwort E-Mails eingetragen werden."

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "Anfrage #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "oben nach unten"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "ultimativ"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "unbeschriebene Gruppe %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "unlimitiert"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "Benutzer %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "Detaillierte Informationen"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "wöchentlich"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "wöchentlich (am %1) um %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "Wochen"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "Der Port des Webserver, z.B. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "mit Kopfzeilen"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "Jahren"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "ja"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/en.po0000664000175000017500000000133712262650742013740 0ustar  chmrrchmrr#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-05 21:42+0000\n"
"Last-Translator: Alex Vandiver \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:12+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "Home"

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr "Home"

rt-4.0.19/share/po/zh_TW.po0000664000175000017500000135077212262650742014404 0ustar  chmrrchmrr#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:31+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " 已刪除 %1。"

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 已更名為 %2。"

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 已儲存。"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " 無公共鑰匙!"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (不受信任的!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: NOT FOUND IN SOURCE
msgid "#%1"
msgstr "#%1"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: NOT FOUND IN SOURCE
msgid "$1"
msgstr "$1"

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$prefix %1"

#: NOT FOUND IN SOURCE
msgid "%*(%1,group ticket)"
msgstr "%*(%1) 件參與的申請單"

#: NOT FOUND IN SOURCE
msgid "%*(%1,ticket) due"
msgstr "%*(%1) 件限期完成的申請單"

#: NOT FOUND IN SOURCE
msgid "%*(%1,unresolved ticket)"
msgstr "%*(%1) 件尚未解決的申請單"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%7-%2-%3 %4:%5:%6 %1"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%2 已新增為 %1"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 之前"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 已從 %2 改為 %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%2 已自 %1 刪除"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 已刪除。"

#: NOT FOUND IN SOURCE
msgid "%1 %2 of group %3"
msgstr "%3 群組的 %1 %2"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 更名為 %3。"

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 已儲存。"

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2已更新"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "條件:%1 | 動作:%2 | 範本:%3"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 這份申請單\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) - %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (未更改)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (來自窗格%2)"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "顯示第 %1 - %2 筆"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - 調整LogToScreen配置選項"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - 傳遞給 %2 的一個參數"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - 將更新狀態輸出到 STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - 指定欲使用的範本編號"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify if you want to use either 'first' or 'last' tarnsaction"
msgstr "%1 - 指定欲使用的更動為 'first' (第一項) 或 'last' (最後一項)"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - 指定你要使用第一個,最後一個還是所有事務"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - 指定您想在範本中使用的名字或者編號"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - 指定欲使用的動作模組"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - 指定你要使用由逗號(,)分隔的transactions類型列表"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - 指定欲使用的條件模組"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - 指定欲使用的查詢模組"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify the type of a transaction you want to use"
msgstr "%1 - 指定欲使用的更動類別"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 表單"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 版,%4 版權所有,1996-%3。"

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "載入手續 %1"

#: NOT FOUND IN SOURCE
msgid "%1 Total"
msgstr "共 %1 筆"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "新增 %1 作為 %2 的值"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on"
msgstr "別名 %1 需要可用的申請單編號"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on "
msgstr "別名 %1 需要可用的申請單編號 "

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on (from %2) %3"
msgstr "別名 %1 需要可用的申請單編號以處理 %3(出自 %2)"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 存在並且已經有了RT的資料庫表,但是其中沒有RT的元資料。稍後的'初始化資料庫「步驟能夠往里面加入元資料。如果這正是你想要的,點擊下面的'自定基本項'繼續自定RT。"

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 存在但是沒有RT的資料庫表。稍後的'初始化資料庫'步驟能夠創建資料庫表並加入元資料。如果這正是你想要的,點擊下面的'自定基本項'繼續自定RT。"

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 看來是個本地物件,卻不在資料庫裡"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 已經完全初始化了。不需要再創建任何的資料庫表或者加入元資料,點擊下面的'自定基本項'繼續自定RT."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 (%2)"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 的值從 %2 改為 %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 已由'%2' 改為 '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1圖, 依%2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 複製"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 核心配置"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "無法將 %1 設定為 %2。"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't init a transaction (%2)\\n"
msgstr "%1 無法初始更新 (%2)\\n"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 無法將現況設成已解決。RT 資料庫內容可能不一致。"

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "已建立 %1"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "已刪除 %1"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1已停用"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 不存在"

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1已啟用"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "前 %1 份待處理申請單"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "前 %1 份待處理申請單..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "前 %1 份送出的申請單..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets pending my approval..."
msgstr "前 %1 份待簽核申請單..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 是從外部排程程式(如 cron)來對申請單進行操作的工具。"

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1是一個由cron運行的工具,可以分派所有延期的通知生成每個使用者的摘要。"

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1是RT接收郵件的位址,加到%2會導致郵件迴圈發送"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 已不再是此表單的 %2。"

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 已不再是此申請單的 %2。"

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 已不再是自訂欄位 %2 的值。"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1 不是一個有效的生命周期"

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 不是一個合法的表單編號。"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 分鐘"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 最近更新的文章"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 最新的文章"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "前 %1 份待認領的申請單"

#: NOT FOUND IN SOURCE
msgid "%1 not shown"
msgstr "沒有顯示 %1"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 物件"

#: NOT FOUND IN SOURCE
msgid "%1 recent tickets I own..."
msgstr "最新 %1 份待處理申請單..."

#: NOT FOUND IN SOURCE
msgid "%1 recent tickets I requested..."
msgstr "最新 %1 份送出的申請單..."

#: NOT FOUND IN SOURCE
msgid "%1 result(s) found"
msgstr "找到 %1 項結果"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1權限"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1站點配置"

#: NOT FOUND IN SOURCE
msgid "%1 succeeded\\n"
msgstr "%1 完成\\n"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 更新: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 更新: 沒有變動"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 已更新。"

#: NOT FOUND IN SOURCE
msgid "%1 was created without a CurrentUser\\n"
msgstr "%1 新增時未指定現行使用者"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 會解決在已解決群組裡成員的申請單。"

#: NOT FOUND IN SOURCE
msgid "%1 will stall a [local] BASE if it's dependent [or member] of a linked up request."
msgstr "如果 %1 起始申請單依賴於某個鏈結,或是某個鏈結的成員,它將會被延宕。"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1 內的 %2 物件"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1 內的 %2 的 %3 物件"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1 的 GnuPG 密鑰"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1 的當前密碼"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1 的控制面板"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1 的預存查詢"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1:未指定附件"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1提出申請單%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1 位元組"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k 位元組"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1 分鐘"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1 秒"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%1 篇文章"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%1 小時"

#: NOT FOUND IN SOURCE
msgid "%quant(%1,result) found"
msgstr "找到 %1 項結果"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' 不是一個合法的狀態值"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' 不是一個有效的類型識別字"

#: NOT FOUND IN SOURCE
msgid "'%1' not a recognized action. "
msgstr "'%1'為無法辨識的動作。 "

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "'角色'"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'系統'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'使用者群組'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'使用者'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(標記要完成的專案)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete group member)"
msgstr "(點選欲刪除的成員)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(點選欲刪除的手續)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(點選欲刪除的項目)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(點選欲刪除的項目)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(點選欲停用通知的收件人)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(點選欲啟用通知的收件人)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(鍵入申請單編號或網址,以空白分隔)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(如果留白, 則預設為 %1)"

#: NOT FOUND IN SOURCE
msgid "(No Value)"
msgstr "(沒有值)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(沒有自訂欄位)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(沒有成員)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(沒有手續)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "沒有範本"

#: NOT FOUND IN SOURCE
msgid "(No workflows)"
msgstr "沒有流程"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(無)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(送出本份更新的密件副本給名單上以逗號隔開的電子郵件位址。這不會更改後續的收件者名單。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(送出本份更新的密件副本給名單上以逗號隔開的電子郵件位址。這不會更改後續的收件者名單。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(送出本份更新的密件副本給名單上以逗號隔開的電子郵件位址。這不會更改後續的收件者名單。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(送出本份更新的副本給名單上以逗號隔開的管理員電子郵件位址。這將會更改後續的收件者名單。)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(送出本份更新的副本給名單上以逗號隔開的管理員電子郵件位址。這將會更改後續的收件者名單。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(送出本份更新的副本給名單上以逗號隔開的電子郵件位址。這不會更改後續的收件者名單。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(送出本份更新的副本給名單上以逗號隔開的電子郵件位址。這不會更改後續的收件者名單。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(送出本份更新的副本給名單上以逗號隔開的電子郵件位址。這不會更改後續的收件者名單。)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(送出本份更新的副本給名單上以逗號隔開的電子郵件位址。這將會更改後續的收件者名單。)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(送出本份更新的副本給名單上以逗號隔開的電子郵件位址。這將會更改後續的收件者名單。)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(當條件或動作設為「使用者自訂」時,請填入這些欄位)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(不會收到郵件)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(任一)"

#: NOT FOUND IN SOURCE
msgid "(default delegate)"
msgstr "(預設代理人)"

#: NOT FOUND IN SOURCE
msgid "(delete)"
msgstr "(刪除)"

#: NOT FOUND IN SOURCE
msgid "(displaying new and open tickets for %1)"
msgstr "(顯示 %1 名下新建立及開啟中的申請單)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(空白)"

#: NOT FOUND IN SOURCE
msgid "(new)"
msgstr "(新增)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(沒有摘要)"

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(沒有列出姓名)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(沒有名稱)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(無公開金鑰!)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(沒有主題)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(無)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(沒有值)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(僅能指定一份申請單)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(等待%1份其他申請單)"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(等待簽核)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(等待其他集合)"

#: NOT FOUND IN SOURCE
msgid "(pending other tickets)"
msgstr "(等待其他申請單)"

#: NOT FOUND IN SOURCE
msgid "(requestor's group)"
msgstr "(申請人所屬)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(必填)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(信任: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(未命名)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(未被信任的)"

#: NOT FOUND IN SOURCE
msgid "(yyyy/mm/dd)"
msgstr "(yyyy/mm/dd)"

#: NOT FOUND IN SOURCE
msgid "*"
msgstr "★"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id 是可忽視參數並且無法和 --template 一起使用"

#: NOT FOUND IN SOURCE
msgid "--transaction argument could be only 'first' or 'last'"
msgstr "--transaction 的值僅能為 'first' 或 'last'"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transaction 的參數只能是 'first', 'last' 或 'all'"

#: NOT FOUND IN SOURCE
msgid ":"
msgstr ":"

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ticket->Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr "<% $field->{'name'} %>"

#: NOT FOUND IN SOURCE
msgid "<%$Action%> here"
msgstr "<%$Action%> 在此"

#: NOT FOUND IN SOURCE
msgid "<%$_%>"
msgstr "<%$_%>"

#: NOT FOUND IN SOURCE
msgid "<%$field%>"
msgstr "<%$field%>"

#: NOT FOUND IN SOURCE
msgid ""
msgstr "<留空>"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

所有 iCal feeds 都內嵌了一個能驗證是你的秘密 token. 如果你有 iCal feeds 的 URL 被曝露在外面的險惡世界的話, 你可以在下面取得一個新的秘密 token, 並讓現存的 iCal feeds不再能用.

" #: NOT FOUND IN SOURCE msgid "%1 - %2s" msgstr "%1 - %2秒" #: etc/initialdata:215 msgid "A blank template" msgstr "空白範本" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "密碼沒有設定,因此該使用者將無法登入。" #: NOT FOUND IN SOURCE msgid "ACE Deleted" msgstr "ACE 已刪除" #: NOT FOUND IN SOURCE msgid "ACE Loaded" msgstr "ACE 已載入" #: NOT FOUND IN SOURCE msgid "ACE could not be deleted" msgstr "無法刪除 ACE" #: NOT FOUND IN SOURCE msgid "ACE could not be found" msgstr "找不到 ACE" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "找不到 ACE 設定" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "祇能新增或刪除 ACE 設定。" #: NOT FOUND IN SOURCE msgid "ACLEquivalence" msgstr "ACLEquivalence" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "AND" #: NOT FOUND IN SOURCE msgid "Aborting to avoid unintended ticket modifications.\\n" msgstr "離開以免不小心更改到申請單。\\n" #: NOT FOUND IN SOURCE msgid "About Me" msgstr "個人資訊" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "個人資訊" #: NOT FOUND IN SOURCE msgid "Access Right" msgstr "系統使用登錄權限" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "存取權限" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "動作" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "動作 %1 找不到" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "動作 '%1' 無法被找到" #: bin/rt-crontool:228 msgid "Action committed." msgstr "動作執行完畢" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "動作執行完畢。\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "動作為必填欄位" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "動作準備完畢..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "動作" #: NOT FOUND IN SOURCE msgid "Activated Date" msgstr "申請啟動時間" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "活動的申請單" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "新增" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "添加 %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "新增管理員副本收件人" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "加入書籤" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "新增副本收件人" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "新增欄位" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "新增條件" #: NOT FOUND IN SOURCE msgid "Add Entry" msgstr "新增列" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "新增更多附件" #: NOT FOUND IN SOURCE msgid "Add Next State" msgstr "新增下一項關卡" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "新增申請人" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "新增欄位值" #: NOT FOUND IN SOURCE msgid "Add a Scrip to this queue" msgstr "新增此表單的手續" #: NOT FOUND IN SOURCE msgid "Add a Scrip which will apply to all queues" msgstr "新增適用於所有表單的手續" #: NOT FOUND IN SOURCE msgid "Add a keyword selection to this queue" msgstr "新增此表單的關鍵字" #: NOT FOUND IN SOURCE msgid "Add a new a global scrip" msgstr "新增全域手續" #: NOT FOUND IN SOURCE msgid "Add a scrip to this queue" msgstr "新增一道手續到此表單" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "新增一道用於所有表單的手續" #: NOT FOUND IN SOURCE msgid "Add additional criteria" msgstr "新增查詢條件" #: NOT FOUND IN SOURCE msgid "Add and Search" msgstr "新增並開始查詢" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "新增評論或回覆到指定的申請單" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "添加群組" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "新增成員" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "新增視察員" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "為 %1 添加權限" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "將這些條件加進查詢內" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "增加這些項目並搜尋" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "添加使用者" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "新增值" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "新增、刪除及修改物件的自訂欄位值" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "添加、修改與刪除物件的欄位值" #: NOT FOUND IN SOURCE msgid "AddNextState" msgstr "新增下一項關卡" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "添加 %1 為 %2 該表單的成員" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "單位已新增為此表單的 %1" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "單位已新增為此申請單的 %1" #: NOT FOUND IN SOURCE msgid "Additional Hints" msgstr "額外提示" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "地址" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "位址 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "住址" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "住址(續)" #: NOT FOUND IN SOURCE msgid "Adjust Blinking Rate" msgstr "調整閃爍速度快慢" #: NOT FOUND IN SOURCE msgid "Admin" msgstr "管理員" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "管理員副本" #: etc/initialdata:292 msgid "Admin Comment" msgstr "管理員評論" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "管理員回覆" #: NOT FOUND IN SOURCE msgid "Admin Rights" msgstr "管理員權限" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "表單管理" #: NOT FOUND IN SOURCE msgid "Admin users" msgstr "使用者管理" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "管理/全域設定" #: NOT FOUND IN SOURCE msgid "Admin/Groups" msgstr "管理/群組" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "管理/表單/基本資訊" #: NOT FOUND IN SOURCE msgid "AdminAddress" msgstr "管理員 Email" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "管理所有代理人群組" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "管理員副本群組" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "管理員副本" #: NOT FOUND IN SOURCE msgid "AdminCc.EmailAddress" msgstr "管理員副本: 電子郵件信箱" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "管理員副本" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "管理類別" #: NOT FOUND IN SOURCE msgid "AdminComment" msgstr "管理員評論" #: NOT FOUND IN SOURCE msgid "AdminCorrespondence" msgstr "管理員回覆" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "管理自訂欄位" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "管理自定欄位值" #: NOT FOUND IN SOURCE msgid "AdminCustomFields" msgstr "管理自訂欄位" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "管理群組" #: NOT FOUND IN SOURCE msgid "AdminGroupDescription" msgstr "管理群組描述" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "管理群組成員" #: NOT FOUND IN SOURCE msgid "AdminGroupName" msgstr "管理群組名稱" #: NOT FOUND IN SOURCE msgid "AdminGroupPermission" msgstr "管理群組權限" #: NOT FOUND IN SOURCE msgid "AdminGroupStatus" msgstr "管理群組狀態" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "管理代理人群組" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "管理表單" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "管理主題" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "管理使用者" #: NOT FOUND IN SOURCE msgid "Administrative" msgstr "行政類" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "管理員副本" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "系統管理員密碼" #: NOT FOUND IN SOURCE msgid "Admins" msgstr "主管" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "進階" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "進階查詢" #: NOT FOUND IN SOURCE msgid "Advanced Search Criteria" msgstr "進階查詢條件" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "高級搜索" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "經歷時間" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "結合方式" #: NOT FOUND IN SOURCE msgid "Alias" msgstr "執行其他流程" #: NOT FOUND IN SOURCE msgid "Alias for" msgstr "相當於" #: NOT FOUND IN SOURCE msgid "All" msgstr "全部" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "完成全部簽核" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "本類型的所有文章都列於申請單回複頁面的下拉列表" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "所有類型" #: NOT FOUND IN SOURCE msgid "All Condition" msgstr "所有條件" #: NOT FOUND IN SOURCE msgid "All Custom Fields" msgstr "所有自訂欄位" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "所有表單" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "所有表單" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "所有申請單" #: NOT FOUND IN SOURCE msgid "All Users" msgstr "全體員工" #: NOT FOUND IN SOURCE msgid "All done! Now you can proceed to %1." msgstr "處理完畢!您現在可以繼續進行 %1。" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "所有 iCal feeds 都內嵌了一個能驗證是你的秘密 token. 如果你有 iCal feeds 的 URL 被曝露在外面的險惡世界的話, 你可以在下面取得一個新的秘密 token, 並讓現存的 iCal feeds不再能用." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "滿足條件的表單" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "所有申請單" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "所有主題" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "允許創建已存搜索" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "允許載入已存搜索" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "允許在範本、腳本等處寫 Perl 代碼" #: NOT FOUND IN SOURCE msgid "Allowance Request" msgstr "福利補助申請" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "已加密" #: NOT FOUND IN SOURCE msgid "Always sends a message to the requestors independent of message sender" msgstr "無論寄件來源為何,一律寄信給申請人" #: NOT FOUND IN SOURCE msgid "Amount" msgstr "數額" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "AND/OR" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: NOT FOUND IN SOURCE msgid "Any Condition" msgstr "任意條件" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "任何欄位" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "已應用" #: NOT FOUND IN SOURCE msgid "Applies To" msgstr "套用於" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "套用於" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "應用到所有物件" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "套用" #: NOT FOUND IN SOURCE msgid "Apply Template" msgstr "引用範本" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "應用到全域" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "套用更動" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "簽核" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "簽核單 #%1:%2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "簽核單 #%1:系統錯誤,記錄失敗" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "簽核單 #%1:記錄完畢" #: NOT FOUND IN SOURCE msgid "Approval Details" msgstr "簽核細節" #: NOT FOUND IN SOURCE msgid "Approval Due" msgstr "簽核時限" #: NOT FOUND IN SOURCE msgid "Approval Notes" msgstr "簽核意見" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "完成某項簽核" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "為擁有人准備批准請求" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "駁回某項簽核" #: NOT FOUND IN SOURCE msgid "Approval Result" msgstr "簽核結果" #: NOT FOUND IN SOURCE msgid "Approval Status" msgstr "核准結果" #: NOT FOUND IN SOURCE msgid "Approval Type" msgstr "簽核種類" #: NOT FOUND IN SOURCE msgid "Approval diagram" msgstr "簽核流程" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "核准" #: NOT FOUND IN SOURCE msgid "Approver" msgstr "簽核人" #: NOT FOUND IN SOURCE msgid "Approver Setting" msgstr "執行簽核人設定" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "簽核備註:%1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "四月" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "04" #: NOT FOUND IN SOURCE msgid "April" msgstr "四月" #: NOT FOUND IN SOURCE msgid "Are you sure to delete checked items?" msgstr "您確定要刪除?" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "確定要刪除該文章嗎?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "文章 #%1 已刪除" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "文章 #%1: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "文章 %1" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "文章 %1 已創建" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "文章管理頁面" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "文章已刪除" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "文章未找到" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "文章" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "%1 的文章" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "匹配 %1 的文章" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "無主題的文章" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "遞增" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "遞增" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "指派及移除自訂欄位" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "指派或移除表單自定欄位" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "指派自訂欄位" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "附件" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "附加檔案" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "現有附件" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "附檔" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "無法載入附件 '%1'" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "附件新增完畢" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "附件檔名" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "附件" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "附件加密已取消" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "已刪除該屬性" #: NOT FOUND IN SOURCE msgid "Attributes" msgstr "屬性" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "八月" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "08" #: NOT FOUND IN SOURCE msgid "August" msgstr "八月" #: NOT FOUND IN SOURCE msgid "AuthSystem" msgstr "認證方式" #: NOT FOUND IN SOURCE msgid "AutoReject" msgstr "自動駁回表單" #: NOT FOUND IN SOURCE msgid "AutoResolve" msgstr "自動完成表單處理" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "你的圖片無法被自動建議主題顏色支援,這也許您安裝的 GD 版本不支援上傳的圖檔類型,支援的檔案類型:%1 你可以重新編譯 libgd 與 GD.pm 來包涵其他圖檔類型的支援。" #: etc/initialdata:218 msgid "Autoreply" msgstr "自動回覆" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "自動對申請人回覆" #: NOT FOUND IN SOURCE msgid "AutoreplyToRequestors" msgstr "自動對申請人回覆" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "可用" #: NOT FOUND IN SOURCE msgid "Available Columns" msgstr "可用的欄位:" #: NOT FOUND IN SOURCE msgid "Available Rights:" msgstr "權限項目列表:" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "密件副本" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "返回" #: NOT FOUND IN SOURCE msgid "Back to Homepage" msgstr "回到首頁" #: NOT FOUND IN SOURCE msgid "Back to Previous" msgstr "回上頁" #: NOT FOUND IN SOURCE msgid "Bad PGP Signature: %1\\n" msgstr "錯誤的 PGP 簽章:%1\\n" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "錯誤的附件編號。無法找到附件 '%1'\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "%1 的資料錯誤" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "屬性%1含錯誤的隱私項" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "附件的處理號碼錯誤。%1 應為 %2\\n" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "基本資訊" #: NOT FOUND IN SOURCE msgid "Batch Approval" msgstr "批次簽核" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "密件副本" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "請別忘了儲存修改。" #: NOT FOUND IN SOURCE msgid "Begin Approval" msgstr "開始簽核" #: NOT FOUND IN SOURCE msgid "Begin From " msgstr "起始日 " #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC 公司識別圖案" #: NOT FOUND IN SOURCE msgid "Binary" msgstr "檔案" #: NOT FOUND IN SOURCE msgid "Birthday" msgstr "生日" #: etc/initialdata:214 msgid "Blank" msgstr "空白範本" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "正文" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "粗體" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "書籤" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "將查詢結果轉為可放入書籤的網址" #: NOT FOUND IN SOURCE msgid "Bookmarkable link" msgstr "可放入書籤的網址" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "可添加為書簽的該搜索鏈結" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "書籤中的申請單" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "已加入書簽的申請單" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "精簡標頭檔" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "根據主題瀏覽" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "瀏覽該進程中的 SQL 表單" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "整批更新" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "整批更新申請單" #: NOT FOUND IN SOURCE msgid "Business Unit" msgstr "事業部" #: NOT FOUND IN SOURCE msgid "Business Unit:" msgstr "事業部:" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "購買支援服務" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "RT 會使用你系統的時區作為預設時區。 日期及時間的顯示將會以此作為全域的預設值。 你的使用者可設定屬於他們自己的時區。" #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "副本群組" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: NOT FOUND IN SOURCE msgid "Calendar" msgstr "行事曆" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "載入\"%1\"失敗" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "無法更改系統使用者" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "該單位是否能查閱此表單" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "不能新增沒有名稱的自訂欄位值" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "找不到「%1」的集合類別" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "找不到預存查詢" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "申請單不能鏈結自己。" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "不能整合進已整合過的申請單。這個錯誤不該發生。" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "無法儲存 %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "無法儲存此項查詢" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "不能同時指定起始申請單與目的申請單" #: NOT FOUND IN SOURCE msgid "Cancel" msgstr "取消" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "不能為編號添加鏈結" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "無法在已關閉的 queue 中建立新 ticket." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "無法新增使用者:%1" #: NOT FOUND IN SOURCE msgid "Cannot login: Your system clock differs from server's by %1 seconds!" msgstr "您的系統時鐘和伺服器相差 %1 秒,無法登入!" #: NOT FOUND IN SOURCE msgid "Card No." msgstr "卡號" #: NOT FOUND IN SOURCE msgid "Categories" msgstr "分類管理" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "類型基於" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "分類" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "類別尚未設定" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "副本" #: NOT FOUND IN SOURCE msgid "Cc Type" msgstr "副本類別" #: NOT FOUND IN SOURCE msgid "Cc.EmailAddress" msgstr "副本: 電子郵件信箱" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "副本" #: NOT FOUND IN SOURCE msgid "Chairperson's Office" msgstr "董事長室" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "變更" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "更改批准申請單的狀態為已打開" #: NOT FOUND IN SOURCE msgid "Change Ticket" msgstr "修改申請單" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "更改密碼" #: NOT FOUND IN SOURCE msgid "ChangeOwnerUI" msgstr "可否選擇表單承辦人" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "圖表" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "圖表屬性" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "全部選取" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "檢查資料庫連線" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "檢查資料庫的連接設定" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "選擇欲刪除的項目" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "選擇欲撤消的權利" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "檢查您的資料庫權限" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "子申請單" #: NOT FOUND IN SOURCE msgid "Chinese Name" msgstr "中文姓名" #: NOT FOUND IN SOURCE msgid "Chinese/English" msgstr "中英文" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "選擇資料庫引擎" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "選擇資料庫引擎" #: NOT FOUND IN SOURCE msgid "Choose a date" msgstr "選擇日期" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "從 %1 的主題選擇" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "所在城市" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "類型" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "類型名稱" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "類型id" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "類型已應用到全域" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "類型已應用到 %1" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "類型" #: NOT FOUND IN SOURCE msgid "ClassicUI" msgstr "傳統介面" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "清除" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "全部清除" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "點選 \"完成安裝\" 結束安裝精靈" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "點選 \"初始化資料庫\" 建立 RT 的資料庫以及初始化資料。這會需要一點時間。" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "關閉視窗" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "已解決" #: NOT FOUND IN SOURCE msgid "Closed Tickets" msgstr "已解決的申請單" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "已解決的申請單" #: NOT FOUND IN SOURCE msgid "Code" msgstr "執行程式碼" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "下拉文字框:選擇或鍵入多重項目" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "下拉文字框:選擇或鍵入單一項目" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "下拉文字框:選擇或鍵入最多 %1 個項目" #: NOT FOUND IN SOURCE msgid "Command not understood!\\n" msgstr "指令無法辨識!\\n" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "評論" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "評論電子郵件地址" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "評論位址" #: NOT FOUND IN SOURCE msgid "Comment not recorded" msgstr "評論未被紀錄" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "對申請單提出評論" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "評論位址" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "評論申請單" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "評論" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "評論(不送給申請人)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "評論(不送給申請人)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "對 %1 的評論" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "使用者描述" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "新增評論完畢" #: NOT FOUND IN SOURCE msgid "Commit" msgstr "確認" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "消除更動完畢" #: NOT FOUND IN SOURCE msgid "Company Name" msgstr "公司名稱" #: NOT FOUND IN SOURCE msgid "CompanySpecific" msgstr "各公司獨立顯示" #: NOT FOUND IN SOURCE msgid "Compile Restrictions" msgstr "設定查詢條件" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "條件" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "找不到條件 '%1'" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "條件是必填欄位" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "符合條件..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "未找到符合的現況" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "條件, 動作, 和樣版" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "設定檔 %1 已被鎖定" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "設定" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "表單 %1 的配置" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "確認密碼" #: NOT FOUND IN SOURCE msgid "Confirm Password" msgstr "密碼確認" #: NOT FOUND IN SOURCE msgid "Confirm Submit" msgstr "確定送出" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "連線成功" #: NOT FOUND IN SOURCE msgid "Contact System Administrator" msgstr "連絡系統管理員" #: NOT FOUND IN SOURCE msgid "ContactInfoSystem" msgstr "連絡資訊系統" #: NOT FOUND IN SOURCE msgid "Contacted date '%1' could not be parsed" msgstr "無法解讀聯絡日期 '%1'" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "內容" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "內容是無效的IP位址" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "內容是無效的IP位址範圍" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "內容類型" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "內容類別" #: NOT FOUND IN SOURCE msgid "Coould not create group" msgstr "無法新增群組" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "複製" #: NOT FOUND IN SOURCE msgid "Copy Field From:" msgstr "欲複製欄位:" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "回覆地址" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "對應位址" #: etc/initialdata:283 msgid "Correspondence" msgstr "回覆" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "申請單回覆地址" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "新增申請單回覆" #: NOT FOUND IN SOURCE msgid "Correspondence not recorded" msgstr "未紀錄申請單回覆" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "不能新增自訂欄位的值。 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. %1 " msgstr "不能新增自訂欄位的值。%1 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "不能新增自訂欄位的值。 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "不能新增自訂欄位的值。%1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "無法創建新的自定欄位值: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "不能更改承辦人。 " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "無法更改承辦人: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "無法新增自訂欄位" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "無法新增自訂欄位:%1" #: NOT FOUND IN SOURCE msgid "Could not create Scrip" msgstr "無法建立訊息通知" #: NOT FOUND IN SOURCE msgid "Could not create Template" msgstr "無法建立通知範本" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "無法新增群組" #: NOT FOUND IN SOURCE msgid "Could not create item" msgstr "無法新增項目" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "無法創建搜索: %1" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "無法新增範本:%1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "無法在已關閉的 queue 裡建立新 ticket \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "無法新增申請單。尚未指定表單。" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "無法新增使用者" #: NOT FOUND IN SOURCE msgid "Could not create watcher for requestor" msgstr "無法為申請人新增視察員" #: NOT FOUND IN SOURCE msgid "Could not create workflow: %1" msgstr "無法新增流程:%1" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "無法刪除搜索 %1: %2" #: NOT FOUND IN SOURCE msgid "Could not find a ticket with id %1" msgstr "找不到編號 %1 的申請單" #: NOT FOUND IN SOURCE msgid "Could not find group %1." msgstr "找不到群組 %1。" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "找不到或無法新增該名使用者" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "找不到該單位" #: NOT FOUND IN SOURCE msgid "Could not find user %1." msgstr "找不到使用者 %1。" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "無法載入%1屬性" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "無法載入類新 %1" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "無法載入欄位 %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "無法載入群組" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "無法為 %1 載入物件" #: NOT FOUND IN SOURCE msgid "Could not load search attribute" msgstr "無法載入查詢屬性" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "無法將該單位設為此表單的 %1。" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "無法將該單位設為此申請單的 %1。" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "無法將單位 %1 從表單移除。" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "無法將單位 %1 從申請單移除。" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "無法設定使用者資訊" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "無法新增附件" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "無法新增成員至群組" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "無法應用自定欄位到改物件因該欄位已應用到全域" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "無法編譯 %1 碼塊 '%2': %3" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "無法編譯範本碼塊 '%1': %2" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "無法新增更動報告: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "無法建立紀錄" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "無法創建記錄: %1" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "無法刪除控制面板 %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't figure out what to do from gpg's reply\\n" msgstr "無法從 gpg 回函辨識出該採取的行動\\n" #: NOT FOUND IN SOURCE msgid "Couldn't find group\\n" msgstr "找不到群組\\n" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "找不到此列資料" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "找不到合適的 transaction, 跳過" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "找不到該單位" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "找不到該值" #: NOT FOUND IN SOURCE msgid "Couldn't find that watcher" msgstr "找不到該視察員" #: NOT FOUND IN SOURCE msgid "Couldn't find user\\n" msgstr "找不到使用者\\n" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "無法從使用者資料庫載入 %1。\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "無法載入類別 %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "無法載入自訂欄位 #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "無法載入自定欄位 #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "無法載入自訂欄位 %1" #: NOT FOUND IN SOURCE msgid "Couldn't load KeywordSelects." msgstr "無法載入 KeywordSelects。" #: NOT FOUND IN SOURCE msgid "Couldn't load RT config file '%1' %2" msgstr "無法載入 RT 設定檔 '%1' %2" #: NOT FOUND IN SOURCE msgid "Couldn't load Scrips." msgstr "無法載入手續。" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "無法載入申請單 %1 的複本。" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "無法載入控制面板 %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "無法載入控制面板 %1: %2" #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "無法載入群組 #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "無法載入手續 %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "無法載入鏈結。" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "無法載入物件 %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "無法載入或建立使用者: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "無法載入表單" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "無法載入表單 #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "無法載入表單 %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "無法載入表單 '%1'" #: NOT FOUND IN SOURCE msgid "Couldn't load scrip" msgstr "無法載入手續" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "無法載入手續 %1" #: NOT FOUND IN SOURCE msgid "Couldn't load template" msgstr "無法載入範本" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "無法載入樣板 #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "無法載入該名使用者(%1)" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "無法載入指定的單位" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "無法載入申請單 '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "在嘗試刪除的過程中無法載入主題成員" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "無法載入 transaction #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "無法載入使用者" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "無法載入使用者 #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "無法載入使用者 #%1 或使用者 '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "無法載入使用者 '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "無法從字串 '%1' 解析出位址" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "無法以解密過的資料取代內容: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "無法以加密過的資料取代內容: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "無法將 '%1' 分解為鏈結." #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "無法將「%1」解讀為網址" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "無法解析源 '%1' 到一個URI" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "無法解析目標 '%1' 到一個URI" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "無法寄出電子郵件" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "無法設定%1視察員: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "無法設定私鑰" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "無法解除設定私鑰" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "國家" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "新增" #: NOT FOUND IN SOURCE msgid "Create Subgroup:" msgstr "新增子群組:" #: etc/initialdata:91 msgid "Create Tickets" msgstr "新增申請單" #: NOT FOUND IN SOURCE msgid "Create User:" msgstr "新增成員:" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "創建類型" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "新增自訂欄位" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "為 %1 表單新增自訂欄位" #: NOT FOUND IN SOURCE msgid "Create a CustomField that applies to all queues" msgstr "新增套用於所有表單的自訂欄位" #: NOT FOUND IN SOURCE msgid "Create a new Custom Field" msgstr "新增自訂欄位" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "創建新文章" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "創建新文章於" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "建立新的控制面板" #: NOT FOUND IN SOURCE msgid "Create a new global Scrip" msgstr "新增全域手續" #: NOT FOUND IN SOURCE msgid "Create a new global scrip" msgstr "新增全域手續" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "新增群組" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "新增代理人群組" #: NOT FOUND IN SOURCE msgid "Create a new queue" msgstr "新增表單" #: NOT FOUND IN SOURCE msgid "Create a new scrip" msgstr "新增手續" #: NOT FOUND IN SOURCE msgid "Create a new template" msgstr "新增範本" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "創建表單 %1 的新範本" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "新增申請單" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "新增使用者" #: NOT FOUND IN SOURCE msgid "Create a new workflow" msgstr "新增流程" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "新增表單" #: NOT FOUND IN SOURCE msgid "Create a queue called" msgstr "新增表單名稱" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "提出申請" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "為 %1 表單新增手續" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "新增範本" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "提出申請單" #: NOT FOUND IN SOURCE msgid "Create a workflow" msgstr "新增流程" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "創建文章" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "創建文章,類型為..." #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "在此類型中創建文章" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "建立此群組的控制面板" #: NOT FOUND IN SOURCE msgid "Create failed: %1 / %2 / %3 " msgstr "新增失敗:%1 / %2 / %3 " #: NOT FOUND IN SOURCE msgid "Create failed: %1/%2/%3" msgstr "新增失敗:%1/%2/%3" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "創建群組表單" #: NOT FOUND IN SOURCE msgid "Create new item" msgstr "建立新項目" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "依據此項手續內的模版,新增申請單" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "建立個人的控制面板" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "建立系統控制面板" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "新增申請單" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "創建申請單" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "在此表單中新增申請單" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "離線建立申請單" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "新增、刪除及更改自訂欄位" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "新增、刪除及更改表單" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "新增、刪除及更改任何使用者的代理人群組" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "新增、刪除及更改代理人群組" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "新增、刪除及更改使用者" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "創建、修改與刪除訪問控制列表條目" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "創建、修改與刪除訪問自定欄位" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "創建、修改與刪除訪問自定欄位值" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "創建、修改與刪除訪問表單" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "創建、修改與刪除訪問已存搜索" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "創建、修改與刪除訪問使用者" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "創建文章" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "建立控制面板" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "建立群組控制面板" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "創建個人表單" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "新增預存查詢" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "新增申請單" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "新增日" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "建立由" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "自訂欄位 %1 新增成功" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "創建者" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "在指定日期內建立" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "已創建搜索 %1" #: NOT FOUND IN SOURCE msgid "Created template %1" msgstr "範本 %1 新增成功" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "在指定日期內建立的申請單,依狀態分組" #: NOT FOUND IN SOURCE msgid "Created workflow %1" msgstr "流程 %1 新增成功" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "建立人" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "實際新增日(相對值)" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "建立者" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "加密" #: NOT FOUND IN SOURCE msgid "Currency" msgstr "幣別" #: NOT FOUND IN SOURCE msgid "Current Approval Info" msgstr "截至目前簽核資訊" #: NOT FOUND IN SOURCE msgid "Current Custom Fields" msgstr "現有自訂欄位" #: NOT FOUND IN SOURCE msgid "Current Groups:" msgstr "現有群組列表:" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "現有關係" #: NOT FOUND IN SOURCE msgid "Current Rights:" msgstr "現有權限:" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "現有手續" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "當前搜索" #: NOT FOUND IN SOURCE msgid "Current Status" msgstr "目前狀態" #: NOT FOUND IN SOURCE msgid "Current Templates" msgstr "現有範本" #: NOT FOUND IN SOURCE msgid "Current Watchers" msgstr "現有視察員" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "現有成員" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "現有權限" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "現有查詢條件" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "現有查詢條件" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "現有視察員" #: NOT FOUND IN SOURCE msgid "Custom Field #%1" msgstr "自訂欄位 #%1" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "自訂欄位" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "%1 的自訂欄位" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "表單 %1 的自定欄位" #: NOT FOUND IN SOURCE msgid "Custom Fields which apply to all queues" msgstr "適用於所有表單的自訂欄位" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "動作後執行程式" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "動作前執行程式" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "自訂條件" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "自定欄位 #%1 沒有應用到該物件" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "自訂欄位 %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "自訂欄位 %1 不適用於此物件" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "自訂欄位 %1 已有值" #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "自訂欄位 %1 沒有值" #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "找不到自訂欄位 %1" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "自訂欄位「%1」" #: NOT FOUND IN SOURCE msgid "Custom field deleted" msgstr "自訂欄位已刪除" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "自定欄位已應用到該物件" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "找不到自訂欄位" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "無法從自訂欄位 %2 中找到 %1 這個欄位值" #: NOT FOUND IN SOURCE msgid "Custom field value changed from %1 to %2" msgstr "自訂欄位值從 %1 改為 %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "無法刪除自訂欄位值" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "找不到自訂欄位值" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "自訂欄位值刪除成功" #: NOT FOUND IN SOURCE msgid "Custom.Ownership" msgstr "自訂: 承辦狀態" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "自訂欄位" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "自訂欄位值" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "自訂" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "自訂基本項目" #: NOT FOUND IN SOURCE msgid "Customize Database Details" msgstr "自訂資料庫細節" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "自訂電子郵件地址" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "自訂電子郵件設定" #: NOT FOUND IN SOURCE msgid "Customize Global" msgstr "自訂全域" #: NOT FOUND IN SOURCE msgid "Customize Global Defaults" msgstr "自訂全域預設值" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "自定 RT 外觀" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA 密碼" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA 帳號" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "每日彙報" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "控制面板" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "無法建立控制面板: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "無法更新控制面板: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "控制面板已更新" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "控制面板" #: NOT FOUND IN SOURCE msgid "Data error" msgstr "資料錯誤" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "資料庫主機" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "資料庫名稱" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT 資料庫密碼" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "資料庫通訊埠" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "資料庫類型" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "RT 資料庫帳號" #: NOT FOUND IN SOURCE msgid "DatabaseBindRemote" msgstr "容許外部連線" #: NOT FOUND IN SOURCE msgid "DatabaseName" msgstr "MySQL資料庫" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "日期格式" #: NOT FOUND IN SOURCE msgid "Date of Departure" msgstr "出發日期" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "當前的DateTime版本不支援format_cldr, 請升級DateTime" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "無法載入DateTime模組" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "當前的DateTime::Locale版本不支援date_format_full, 請升級" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "無法載入DateTime::Locale模組" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "日期" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "十二月" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "12" #: NOT FOUND IN SOURCE msgid "December" msgstr "十二月" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "解密" #: NOT FOUND IN SOURCE msgid "Default Approval" msgstr "預設簽核" #: NOT FOUND IN SOURCE msgid "Default Autoresponse Template" msgstr "預設自動回應範本" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "預設自動回應範本" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "預設表單" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "預設申請人" #: NOT FOUND IN SOURCE msgid "Default Value" msgstr "預設值" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "預設管理員評論範本" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "預設管理員回覆範本" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "預設回覆範本" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "預設表單" #: etc/initialdata:250 msgid "Default transaction template" msgstr "預設更動範本" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "預設:%1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "預設:%1/%2 已自 %3 改為 %4" #: NOT FOUND IN SOURCE msgid "DefaultApproval" msgstr "預設簽核" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "預設到期" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "預設格式" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "代理人權限" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "將擁有的權限委託他人代理" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "設定代理人" #: NOT FOUND IN SOURCE msgid "Delegated Approval" msgstr "代理簽核" #: NOT FOUND IN SOURCE msgid "Delegated Queue" msgstr "代理表單名稱" #: NOT FOUND IN SOURCE msgid "Delegated Queue:" msgstr "代理表單:" #: NOT FOUND IN SOURCE msgid "Delegated Type" msgstr "代理表單種類" #: NOT FOUND IN SOURCE msgid "Delegates" msgstr "代理人" #: NOT FOUND IN SOURCE msgid "Delegates Enabled Status" msgstr "代理啟動狀態" #: NOT FOUND IN SOURCE msgid "Delegates Info" msgstr "代理人資訊" #: NOT FOUND IN SOURCE msgid "Delegates Period" msgstr "代理期間" #: NOT FOUND IN SOURCE msgid "Delegates Permission Setting" msgstr "代理權限設定" #: NOT FOUND IN SOURCE msgid "Delegates Permission:" msgstr "代理權限:" #: NOT FOUND IN SOURCE msgid "Delegates Setting" msgstr "代理人設定" #: NOT FOUND IN SOURCE msgid "Delegates Status" msgstr "代理狀態" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "代理人權限" #: NOT FOUND IN SOURCE msgid "Delegation Groups" msgstr "代理人群組" #: NOT FOUND IN SOURCE msgid "Delegation Rights" msgstr "代理人權限" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "刪除" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "刪除範本" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "刪除文章 #%1" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "刪除該類型的文章" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "刪除此群組的控制面板" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "刪除失敗:%1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "刪除群組表單" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "刪除被生命周期配置停用的操作" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "刪除個人的控制面板" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "刪除指定的手續" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "刪除系統控制面板" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "刪除申請單" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "刪除值" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "刪除文章" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "刪除控制面板" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "刪除群組控制面板" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "刪除自己的控制面板" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "刪除申請單" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "%1 已刪除" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "控制面板 %1 已刪除" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "已刪除的表單" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "刪除預存查詢" #: NOT FOUND IN SOURCE msgid "Deleted search" msgstr "已刪除的搜尋" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "刪除搜索 %1" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "刪除此物件可能破壞參考完整性" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "刪除此物件可能破壞參考完整性" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "刪除此物件會違反參考完整性" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity." msgstr "刪除此物件會違反參考完整性" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity. That's bad." msgstr "刪除此物件會違反參考完整性" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "駁回" #: NOT FOUND IN SOURCE msgid "Department" msgstr "部門" #: NOT FOUND IN SOURCE msgid "Department ID" msgstr "部門代碼" #: NOT FOUND IN SOURCE msgid "Department Name" msgstr "部門名稱" #: NOT FOUND IN SOURCE msgid "Department's" msgstr "部門之" #: NOT FOUND IN SOURCE msgid "Departure Details" msgstr "差旅明細" #: NOT FOUND IN SOURCE msgid "Departure From" msgstr "差旅起始日" #: NOT FOUND IN SOURCE msgid "Departure Request" msgstr "請假單" #: NOT FOUND IN SOURCE msgid "Departure Until" msgstr "差旅截止日" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "可接續處理的申請單" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "可接續處理" #: NOT FOUND IN SOURCE msgid "Dependencies: \\n" msgstr "附屬性:\\n" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "已加入可接續處理的申請單 %1" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "已移除可接續處理的申請單 %1" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "已加入需先處理的申請單 %1" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "已移除需先處理的申請單 %1" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "需先處理" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "需先處理" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "需先處理" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "遞減" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "遞減" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "在以下欄位描述主題" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "描述" #: NOT FOUND IN SOURCE msgid "Description of Responsibility" msgstr "經辦業務說明" #: NOT FOUND IN SOURCE msgid "Description:" msgstr "描述:" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "RT設定的詳細資訊" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "細節" #: NOT FOUND IN SOURCE msgid "Direct" msgstr "直接" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "方向" #: NOT FOUND IN SOURCE msgid "Disability" msgstr "殘障身分" #: NOT FOUND IN SOURCE msgid "Disability Type" msgstr "殘障類別" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "停用" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "顯示內容" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "顯示權限控制清單" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "顯示文章 %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "顯示欄位" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "顯示此表單的範本" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "顯示此表單的手續" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "顯示模式" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "顯示此群組的預存查詢" #: NOT FOUND IN SOURCE msgid "Display ticket #%1" msgstr "顯示第%1號申請單" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "以 %1GNU GPL%2 第二版發布。" #: NOT FOUND IN SOURCE msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "以 %1GNU GPL%2 第二版發布。" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "依 GNU 通用公共授權 第二版散布。" #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "允許一切操作" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "網域名稱" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "不要包含 http://,只需要像 'localhost' , 'rt.example.com' 即可。" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "不要刷新主頁。" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "不要刷新搜索結果。" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "不更新此頁面。" #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "不顯示查詢結果" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "不信任該值" #: NOT FOUND IN SOURCE msgid "Done" msgstr "完成" #: NOT FOUND IN SOURCE msgid "Down" msgstr "下一頁" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "下載" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "下載以 Tab 分隔的檔案" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "下載 dumpfile" #: NOT FOUND IN SOURCE msgid "Dr." msgstr "博士" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "下拉列表" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "到期日" #: NOT FOUND IN SOURCE msgid "Due Date" msgstr "截止日" #: NOT FOUND IN SOURCE msgid "Due date '%1' could not be parsed" msgstr "無法解讀日期 '%1'" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "到期日(相對值)" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "錯誤: %1" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "無法載入申請單 '%1':%2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "更新您已打開的申請單" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "提醒專案的便捷視圖" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "編輯" #: NOT FOUND IN SOURCE msgid "Edit Conditions" msgstr "編輯前置條件" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "編輯自訂欄位" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "編輯 %1 的自訂欄位" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "編輯適用於所有群組的自訂欄位" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "為所有的表單編輯自定欄位" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "編輯適用於所有使用者的自訂欄位" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "編輯所有類型的文章自定欄位" #: NOT FOUND IN SOURCE msgid "Edit Custom Fields for queue %1" msgstr "編輯表單 %1 的自訂欄位" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "編輯適用於所有表單內申請單的自訂欄位" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "編輯申請單關係" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "編輯查詢" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "編輯查詢" #: NOT FOUND IN SOURCE msgid "Edit Subgroups" msgstr "新增/維護子群組" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "編輯表單 %1 的範本" #: NOT FOUND IN SOURCE msgid "Edit Workflows for queue %1" msgstr "編輯表單 %1 的流程" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "編輯全域主題層次" #: NOT FOUND IN SOURCE msgid "Edit keywords" msgstr "編輯關鍵字" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "編輯此群組的預存查詢" #: NOT FOUND IN SOURCE msgid "Edit scrips" msgstr "編輯手續" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "編輯全域範本" #: NOT FOUND IN SOURCE msgid "Edit system workflows" msgstr "編輯全域流程" #: NOT FOUND IN SOURCE msgid "Edit templates for %1" msgstr "編輯 %1 的範本" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "編輯 %1 的主題層次" #: NOT FOUND IN SOURCE msgid "Edit workflows for %1" msgstr "編輯 %1 的流程" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "編輯預存查詢" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "可編輯的內容" #: NOT FOUND IN SOURCE msgid "Editing Configuration for Class %1" msgstr "編輯類型 %1 的配置" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "編輯表單 %1 的設定" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "編輯使用者 %1 的設定" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "編輯自訂欄位 %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "編輯群組 %1 的成員資訊" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "編輯代理人群組 %1 的成員資訊" #: NOT FOUND IN SOURCE msgid "Editing template %1" msgstr "編輯範本 %1" #: NOT FOUND IN SOURCE msgid "Editing workflow %1" msgstr "編輯流程 %1" #: NOT FOUND IN SOURCE msgid "Education" msgstr "最高學歷" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "有效編號" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "需要指定起始申請單或目的申請單" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "您可能沒有檢視預存查詢%1的權限或識別碼不正確" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "電子郵件信箱" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "電子郵件信箱" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "電子郵件設定" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "郵件摘要" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "此電子郵件信箱已被使用" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "郵件投遞" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "周期性發送郵件摘要的範本" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "電子郵件信箱位址" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "電子郵件文字編碼方式" #: NOT FOUND IN SOURCE msgid "Embark Date" msgstr "外籍員工入境日" #: NOT FOUND IN SOURCE msgid "Embarked Date" msgstr "抵達日期" #: NOT FOUND IN SOURCE msgid "Embarked Location" msgstr "抵達地點" #: NOT FOUND IN SOURCE msgid "Enable Delegates" msgstr "代理啟動" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "已啟用" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "啟用 (不勾選將停用該類型)" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "啟用(取消勾選將停用此自訂欄位)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "啟用(取消勾選將停用此群組)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "啟用(取消勾選將停用此表單)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "啟用類型" #: NOT FOUND IN SOURCE msgid "Enabled Custom Fields" msgstr "已啟用的自訂欄位" #: NOT FOUND IN SOURCE msgid "Enabled Date" msgstr "啟用日期" #: NOT FOUND IN SOURCE msgid "Enabled Date:" msgstr "啟動日期:" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "已啟用的表單" #: NOT FOUND IN SOURCE msgid "Enabled Status" msgstr "啟用狀態" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "已啟用並滿足搜索條件的表單" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "啟用狀態 %1" #: NOT FOUND IN SOURCE msgid "Enabled status: %1" msgstr "啟用狀態: %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "加密" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "預設加密" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "加密/解密" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "加密/解密申請單#%2的事務#%1" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "已取消加密" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "已啟用加密" #: NOT FOUND IN SOURCE msgid "End of Trial" msgstr "試用期滿日" #: NOT FOUND IN SOURCE msgid "English Name" msgstr "英文姓名" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "輸入與該文章相關的文章、申請單或其他URL" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "輸入多個 IP 位址範圍" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "輸入多個 IP 位址" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "鍵入多重項目" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "輸入多個值(帶自動補全功能)" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "鍵入欲將物件連結至的物件或 URI。項目之間請以空白隔開。" #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "輸入一個 IP 位址" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "輸入一個 IP 位址範圍" #: NOT FOUND IN SOURCE msgid "Enter one or more conditions below to search for users" msgstr "鍵入下列單一或複式條件,查詢使用者資料" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "鍵入單一項目" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "輸入一個值(帶自動補全功能)" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "鍵入欲將表單連結至的物件或 URI。項目之間請以空白隔開。" #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "鍵入申請單可鏈結到的申請單編號或網址。項目之間請以空白隔開。" #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "最多可輸入 %1 個 IP 位址範圍" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "最多可輸入 %1 個 IP 位址" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "鍵入最多 %1 個項目" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "輸入最多%1個值(帶自動補全功能)" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: NOT FOUND IN SOURCE msgid "EntryBoolean" msgstr "是非填表" #: NOT FOUND IN SOURCE msgid "EntryDate" msgstr "日期填表" #: NOT FOUND IN SOURCE msgid "EntryExternal" msgstr "系統填表" #: NOT FOUND IN SOURCE msgid "EntryFreeform" msgstr "輸入填表" #: NOT FOUND IN SOURCE msgid "EntryMultiple" msgstr "多選填表" #: NOT FOUND IN SOURCE msgid "EntryNumber" msgstr "數值填表" #: NOT FOUND IN SOURCE msgid "EntrySelect" msgstr "單選填表" #: NOT FOUND IN SOURCE msgid "EntryTime" msgstr "時間填表" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "錯誤" #: NOT FOUND IN SOURCE msgid "Error adding watcher" msgstr "新增視察員失敗" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "表單->新增視察員的參數有誤" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "表單->刪除視察員的參數有誤" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "申請單->新增視察員的參數有誤" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "申請單->刪除視察員的參數有誤" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "發給RT擁有人的錯誤: 公鑰" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "錯誤: 表單不存在" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "錯誤: 錯誤的GnuPG資料" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "錯誤: 無法改變當前搜索的隱私值" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "錯誤: 無法載入已存搜索 %1: %2" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "錯誤: 沒有私鑰" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "錯誤: 公鑰" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "錯誤: 搜索 %1 未更新: %2" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "調整申請單優先等級" #: NOT FOUND IN SOURCE msgid "Estimate" msgstr "預計" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "預計" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "所有人" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "檢查某一表單中於某一時期創建的申請單" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "檢查某一表單中於某一時期解決的申請單" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "檢查某一表單中已解決的申請單, 按擁有人分組" #: bin/rt-crontool:356 msgid "Example:" msgstr "範例:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "執行代碼" #: NOT FOUND IN SOURCE msgid "Existing user renamed from %1 to %2" msgstr "現有使用者 %1 已改名為 %2" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "過期" #: NOT FOUND IN SOURCE msgid "Export" msgstr "匯出" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "額外現況" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "外部認證已啟用" #: NOT FOUND IN SOURCE msgid "ExternalAuthId" msgstr "外部認證帳號" #: NOT FOUND IN SOURCE msgid "ExternalContactInfoId" msgstr "外部聯絡方式帳號" #: NOT FOUND IN SOURCE msgid "ExternalDatabaseDSN" msgstr "外部資料庫連結字串" #: NOT FOUND IN SOURCE msgid "ExternalDatabasePass" msgstr "外部資料庫密碼" #: NOT FOUND IN SOURCE msgid "ExternalDatabaseUser" msgstr "外部資料庫使用者" #: NOT FOUND IN SOURCE msgid "ExternalURL" msgstr "外部介面網址" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "備註" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "提取文章" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "提取主題標簽" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "從申請單 #%1 提取新文章" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "從申請單 #%1 中提取文章至類型 %2" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "從某一事務的主題提取標簽並加到申請單的主題" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "連接資料庫失敗: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "建立 %1 屬性失敗" #: NOT FOUND IN SOURCE msgid "Failed to create search attribute" msgstr "查詢屬性建立失敗" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "找不到「內部成員」虛擬群組的使用者。" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "找不到「非內部成員」虛擬群組的使用者。" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "載入%1 %2失敗" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "載入%1 %2失敗: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "無法載入模組 %1。(%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "無法為 %1 載入物件。" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "載入樣板失敗" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "剖析樣板失敗" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "二月" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "02" #: NOT FOUND IN SOURCE msgid "February" msgstr "二月" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "饋送" #: NOT FOUND IN SOURCE msgid "Female" msgstr "女" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "欄位" #: NOT FOUND IN SOURCE msgid "Field Content:" msgstr "欄位內容:" #: NOT FOUND IN SOURCE msgid "Field Description" msgstr "欄位描述" #: NOT FOUND IN SOURCE msgid "Field Name" msgstr "欄位名稱" #: NOT FOUND IN SOURCE msgid "Field Type" msgstr "欄位類別" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "欄位值來源:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "文件名" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "檔名" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "填寫參數" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "用哪種顏色填充塊" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "填入多個文字框" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "填入多個 Wiki 文字框" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "填入一個文字框" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "填入一個 Wiki 文字框" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "填入一個網址" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "填入最多 %1 個文字框" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "填入最多 %1 個 Wiki 文字框" #: NOT FOUND IN SOURCE msgid "Filter" msgstr "篩選" #: NOT FOUND IN SOURCE msgid "Filter people" msgstr "對象篩選" #: NOT FOUND IN SOURCE msgid "Filtered list:" msgstr "篩選列表:" #: NOT FOUND IN SOURCE msgid "Fin" msgstr "最終" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "最終順位" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "最終順位" #: NOT FOUND IN SOURCE msgid "Financial Department:" msgstr "財務部:" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "搜索使用者滿足" #: NOT FOUND IN SOURCE msgid "Find group whose" msgstr "尋找群組的" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "尋找群組的" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "尋找/開啟申請單" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "尋找人員的" #: NOT FOUND IN SOURCE msgid "Find queues whose" msgstr "尋找表單的" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "尋找申請單" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "指紋" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "完成" #: NOT FOUND IN SOURCE msgid "Finish Approval" msgstr "簽核完畢" #: share/html/Elements/Tabs:651 msgid "First" msgstr "第一項" #: NOT FOUND IN SOURCE msgid "First page" msgstr "第一頁" #: NOT FOUND IN SOURCE msgid "First-" msgstr "一" #: NOT FOUND IN SOURCE msgid "First-level Admins" msgstr "一階主管" #: NOT FOUND IN SOURCE msgid "First-level Users" msgstr "一階主管員工" #: NOT FOUND IN SOURCE msgid "Fixed shift" msgstr "固定班" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "甲 乙 丙" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "甲!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "強制更換" #: NOT FOUND IN SOURCE msgid "Form Processing" msgstr "電子表單作業區" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "格式" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "往前" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "轉發消息" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "轉發消息並返回" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "轉發申請單" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "轉發資訊至 RT 之外" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "轉發消息給第三人" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "轉發申請單#%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "轉發事務#%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "轉發消息" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "轉發申請單至 %1" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "轉發事務 #%1 至 %2" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "找到 %1 張申請單" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "已找到物件" #: NOT FOUND IN SOURCE msgid "Fourth-" msgstr "四" #: NOT FOUND IN SOURCE msgid "Freeform" msgstr "輸入" #: NOT FOUND IN SOURCE msgid "FreeformContactInfo" msgstr "聯絡方式" #: NOT FOUND IN SOURCE msgid "FreeformDate" msgstr "日期輸入" #: NOT FOUND IN SOURCE msgid "FreeformExternal" msgstr "系統欄位" #: NOT FOUND IN SOURCE msgid "FreeformMultiple" msgstr "多重輸入" #: NOT FOUND IN SOURCE msgid "FreeformNumber" msgstr "數值輸入" #: NOT FOUND IN SOURCE msgid "FreeformPassword" msgstr "密碼輸入" #: NOT FOUND IN SOURCE msgid "FreeformSingle" msgstr "單一輸入" #: NOT FOUND IN SOURCE msgid "FreeformTime" msgstr "時間輸入" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "頻率" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "星期五" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "星期五" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "星期五" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "完整標頭檔" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD 是停用或是尚未安裝,您可以上傳一個圖片,但您不會有自動顏色建議。" #: NOT FOUND IN SOURCE msgid "Gecos" msgstr "登入帳號" #: NOT FOUND IN SOURCE msgid "Gender" msgstr "性別" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "通用" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "一般權限" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "取出檔案裡的範本" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "准備開始" #: NOT FOUND IN SOURCE msgid "Getting the current user from a pgp sig\\n" msgstr "取得目前使用者的 pgp 簽章\\n" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "交予 %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "全域設定" #: NOT FOUND IN SOURCE msgid "Global Approval" msgstr "全域簽核" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "全域屬性" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "全域自訂欄位" #: NOT FOUND IN SOURCE msgid "Global Keyword Selections" msgstr "全域關鍵字選取" #: NOT FOUND IN SOURCE msgid "Global Rights:" msgstr "擁有全域權限列表:" #: NOT FOUND IN SOURCE msgid "Global Scrips" msgstr "全域手續" #: NOT FOUND IN SOURCE msgid "Global Setup" msgstr "全域設定" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "全域自訂欄位設定" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "成功儲存全域入口元件 %1。" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "全域範本:%1" #: NOT FOUND IN SOURCE msgid "GlobalApproval" msgstr "全域簽核" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG 錯誤。請與系統管理者聯絡。" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG整合已停用" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG問題" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "%1的GnuPG私鑰" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "GnuPG 私鑰" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "%1的GnuPG公鑰" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "執行" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "跳到使用者" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "執行" #: NOT FOUND IN SOURCE msgid "Good pgp sig from %1\\n" msgstr "%1 的 pgp 簽章是正確的\\n" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "跳到申請單" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "到頁面" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "跳到申請單" #: NOT FOUND IN SOURCE msgid "Grand" msgstr "上" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "圖表" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "圖示屬性" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "圖表已停用" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "群組" #: NOT FOUND IN SOURCE msgid "Group %1 %2: %3" msgstr "群組 %1 %2:%3" #: NOT FOUND IN SOURCE msgid "Group Admin" msgstr "群組管理員" #: NOT FOUND IN SOURCE msgid "Group Description" msgstr "群組描述" #: NOT FOUND IN SOURCE msgid "Group Management" msgstr "群組管理" #: NOT FOUND IN SOURCE msgid "Group Members" msgstr "群組成員" #: NOT FOUND IN SOURCE msgid "Group Name" msgstr "群組名稱" #: NOT FOUND IN SOURCE msgid "Group Name:" msgstr "群組名稱:" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "群組權限" #: NOT FOUND IN SOURCE msgid "Group Rights:" msgstr "擁有群組權限列表:" #: NOT FOUND IN SOURCE msgid "Group Setup" msgstr "群組設定" #: NOT FOUND IN SOURCE msgid "Group Status" msgstr "群組狀態" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "群組內已有此成員: %1" #: NOT FOUND IN SOURCE msgid "Group could not be created." msgstr "無法新增群組" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "無法新增群組:%1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "群組新增完畢" #: NOT FOUND IN SOURCE msgid "Group created: %1" msgstr "群組 %1 新增完畢" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "已停用群組" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "已啟用群組" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "群組沒有這個成員" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "群組名稱 '%1' 已經被使用" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "找不到群組" #: NOT FOUND IN SOURCE msgid "Group not found.\\n" msgstr "找不到群組。\\n" #: NOT FOUND IN SOURCE msgid "Group not specified.\\n" msgstr "未指定群組。\\n" #: NOT FOUND IN SOURCE msgid "Group redescribed from %1 to %2" msgstr "群組描述 %1 已改為 %2" #: NOT FOUND IN SOURCE msgid "Group renamed from %1 to %2" msgstr "群組 %1 已改名為 %2" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "群組權限" #: NOT FOUND IN SOURCE msgid "Group with Queue Rights" msgstr "擁有表單權限群組" #: NOT FOUND IN SOURCE msgid "Group's" msgstr "群組之" #: NOT FOUND IN SOURCE msgid "Group:" msgstr "群組:" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "群組" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "不能將群組設為群組內成員" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "符合查詢條件的群組" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "使用者所屬的群組(標記以刪除)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "使用者不屬的群組(標記以創建)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "使用者所屬的群組" #: NOT FOUND IN SOURCE msgid "Groups with Global Rights" msgstr "擁有全域權限群組" #: NOT FOUND IN SOURCE msgid "HRMSDefined" msgstr "組織架構" #: NOT FOUND IN SOURCE msgid "HTML Attributes" msgstr "HTML 屬性" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "擁有成員" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "轉發申請單的郵件頭" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "轉發消息的郵件頭" #: NOT FOUND IN SOURCE msgid "Health Insurance" msgstr "健保補助身份" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "嗨!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "嗨,%1" #: NOT FOUND IN SOURCE msgid "Help" msgstr "說明" #: NOT FOUND IN SOURCE msgid "Help Desks" msgstr "各項業務窗口" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "幫忙我們為 RT 設定有用的預設值" #: NOT FOUND IN SOURCE msgid "Hidden" msgstr "隱藏" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "隱藏引用文本" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "預設隱藏申請單歷史" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "紀錄" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "文章 #%1 的歷史" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "群組 %1 的紀錄" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "表單%1的歷史記錄" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "使用者 %1 的紀錄" #: NOT FOUND IN SOURCE msgid "Home" msgstr "主頁" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "家庭電話" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "主頁刷新間隔時間" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "住處電話" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "主頁" #: NOT FOUND IN SOURCE msgid "Hotel Expense" msgstr "住宿費" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "時" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "小時" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "我有 %quant(%1,份固體攪拌器)。" #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "我昏了" #: NOT FOUND IN SOURCE msgid "ID Number" msgstr "身分證號" #: NOT FOUND IN SOURCE msgid "ID Type" msgstr "身分類別" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "編號" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "身份" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "若簽核單遭到駁回,則連帶駁回原申請單,並刪除其他相關的待簽核事項" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "若沒有指定申請者,則以此使用者作為申請者" #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "申請單若沒有指定表單,則將它新增在此表單內" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "如果此工具程式為 setgid,惡意的本地端使用者即能由此取得 RT 的管理員權限。" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "如果已經有了正常工作的RT,在這里您還可以確定資料庫正在運行並且RT可以正常訪問它。完成之後,請重啟RT。" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "如果已經有了正常工作的RT,在這里您還可以確定資料庫正在運行並且RT可以正常訪問它。完成之後,請重啟RT。" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "如果你已經更動了 RT 所使用的通信埠,你需要重新啟動伺服器以便登入 RT 。" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "如果您改變了 RT 運行的端口,您需要重啟伺服器才能登錄。" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "若您已更新以上資料,請記得按一下" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "如果你想用的資料庫不再列表里,說明RT找不到資料庫驅動。可以嘗試使用%1下載並安裝DBD::MySQL,DBD::Oracle或者DBD::Pg" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "%1 的值錯誤" #: NOT FOUND IN SOURCE msgid "Image" msgstr "圖片" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "此欄位值不可更動" #: NOT FOUND IN SOURCE msgid "Import" msgstr "匯入" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "非活動的申請單" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "包括文章:" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "包括列表中停用的類型" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "列出停用的自訂欄位" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "列出停用的群組" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "列出停用的表單" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "列出停用的使用者" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "引入頁面" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "包括副主題" #: NOT FOUND IN SOURCE msgid "Indirect Employee" msgstr "直接/間接員工" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "單個消息" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "通知RT擁有人使用者遇到公鑰問題" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "通知使用者其訂閱的一個表單不存在" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "通知使用者其發送的消息含有無效的GnuPG資料" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "通知使用者其遇到公鑰問題並且接收不到加密的內容" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "通知使用者密碼已被重置" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "通知使用者我們收到加密的郵件但是沒有可用的私鑰來解密" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "初始優先順位" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "初始優先順位" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "初始化資料庫" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "輸入無法解析為IP位址" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "輸入無法解析為IP位址範圍" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "輸入錯誤" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "輸入必須符合 %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "安裝 RT" #: NOT FOUND IN SOURCE msgid "Interest noted" msgstr "登記成功" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "內部錯誤" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "內部錯誤:%1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "內部錯誤: %1" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "無效 %1" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "無效 %1 參數" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "無效的 %1: '%2' 不像是電子郵件地址" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "無效的 %1: 必須是數字" #: NOT FOUND IN SOURCE msgid "Invalid %1: that doesn't look like an email address" msgstr "無效的 %1: 不像是電子郵件地址" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "無效類型" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "無效自定欄位值來源" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "錯誤的群組類別" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "無效表單,無法應用類型: %1" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "無效呈現類型" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "無效的類型 %1 自定欄位呈現類型" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "錯誤的權限" #: NOT FOUND IN SOURCE msgid "Invalid Type" msgstr "錯誤的類型" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "錯誤的資料" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid lifecycle name" msgstr "無效生命周期名稱" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "無效的物件" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "無效的擁有者物件" #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "錯誤的承辦人。改為預設承辦人「nobody」。" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "不合理的樣式:%1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "錯誤的表單" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "無效表單角色群組類型 %1" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "錯誤的權限" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "無效的權限. 不能規範化權限'%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "無效的郵箱" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "%1 的值錯誤" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "錯誤的自訂欄位值" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "錯誤的狀態值" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "沒有加密" #: NOT FOUND IN SOURCE msgid "IssueStatement" msgstr "送出陳述" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "請絕對不要讓未具權限的使用者執行此工具程式。" #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "建議您新增一個隸屬於正確群組的低權限系統使用者,並以該身份執行此工具程式。" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "它接受下列參數:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "斜體" #: NOT FOUND IN SOURCE msgid "Item Name" msgstr "品名" #: NOT FOUND IN SOURCE msgid "Items" msgstr "筆" #: NOT FOUND IN SOURCE msgid "Items pending my approval" msgstr "待簽核項目" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "一月" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "01" #: NOT FOUND IN SOURCE msgid "January" msgstr "一月" #: NOT FOUND IN SOURCE msgid "Job" msgstr "職稱" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "加入或退出群組" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "加入或離開此群組" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "七月" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "07" #: NOT FOUND IN SOURCE msgid "July" msgstr "七月" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "全部資訊" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "六月" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "06" #: NOT FOUND IN SOURCE msgid "June" msgstr "六月" #: NOT FOUND IN SOURCE msgid "Keep 'localhost' if you're not sure" msgstr "若不確定,請保留 'localhost' 設定" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "保持'localhost'如果你不確定的話。保持空白意味著通過本地socket鏈結" #: NOT FOUND IN SOURCE msgid "Keyword" msgstr "關鍵字" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "基於關鍵字與直觀的搜索" #: NOT FOUND IN SOURCE msgid "LabelAttachments" msgstr "附件標籤" #: NOT FOUND IN SOURCE msgid "LabelContent" msgstr "內容標籤" #: NOT FOUND IN SOURCE msgid "LabelSubject" msgstr "主題標籤" #: NOT FOUND IN SOURCE msgid "LabelURL" msgstr "鏈結標籤" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "使用語言" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "語言" #: NOT FOUND IN SOURCE msgid "Language." msgstr "語言." #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "大" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "上次更新" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "上次聯絡" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "上次聯絡日期" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "上次通知" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "上次更新" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "最後更新由" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "上次更新" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "最後更新由" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "上次更新" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "上次更新者" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "上次更新(相對值)" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "保持空白意味著發送到您的當前郵箱 (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "若要使用預設值作為資料庫設定,請保留空白" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "保持空白意味著使用資料庫管理員的預設值" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "剩餘時間" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "圖例" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "字符長度;使用0意味著以inline方式顯示所有消息" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "允許這名使用者登入" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "內部成員(具有個人權限)" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "開始吧!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "生命周期" #: NOT FOUND IN SOURCE msgid "Limiting owner to %1 %2" msgstr "限制承辦人為 %1 到%2" #: NOT FOUND IN SOURCE msgid "Limiting queue to %1 %2" msgstr "限制表單為 %1 到 %2" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "鏈結" #: NOT FOUND IN SOURCE msgid "Link a Queue" msgstr "申請表單連結" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "此鏈結已存在" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "無法新增鏈結" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "鏈結(%1)新增完畢" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "鏈結(%1)刪除完畢" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "找不到鏈結" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "鏈結申請單 #%1" #: NOT FOUND IN SOURCE msgid "Link ticket %1" msgstr "鏈結申請單 %1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "將值連結至" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "被鏈結" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "鏈結源" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "連結至" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "連結中。權限不足" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "鏈結" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "列表" #: NOT FOUND IN SOURCE msgid "List All Users" msgstr "列出所有使用者資料" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "載入" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "載入已存搜索" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "載入已存搜索" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "載入預存查詢:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "載入預存查詢" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "已載入%1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "載入原本的預存查詢 \"%1\"" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "已載入的 Perl 模組" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "載入預存查詢 \"%1\"" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "已載入查詢 %1" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "正在載入..." #: lib/RT/Config.pm:422 msgid "Locale" msgstr "本地" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "本地化日期" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "位置" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written.\\n RT can't run." msgstr "登入目錄 %1 找不到或無法寫入\\n。無法執行 RT。" #: NOT FOUND IN SOURCE msgid "LogToFile" msgstr "紀錄等級" #: NOT FOUND IN SOURCE msgid "LogToFileNamed" msgstr "紀錄檔名" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "已登入" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "使用者:%1" #: NOT FOUND IN SOURCE msgid "Logged in as %1" msgstr "以 %1 帳號登入" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "登出" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "登入" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "LogoAltText" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "登出" #: NOT FOUND IN SOURCE msgid "Long-term contractor" msgstr "長期契約員工" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "對應的類別不符" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "郵件" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "鏈結的主類型" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "新增承辦人" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "新增現況" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "新增到期日" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "新增解決日期" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "新增實際起始日期" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "新增應起始日期" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "新增報告日期" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "新增優先順位" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "新增表單" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "新增主題" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "讓此群組能被使用者看見" #: NOT FOUND IN SOURCE msgid "Male" msgstr "男" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "管理自訂欄位及欄位值" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "管理群組及所屬成員" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "管理適用於所有表單的屬性與設定" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "管理各表單及相關屬性" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "管理已存圖像" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "管理使用者與密碼" #: NOT FOUND IN SOURCE msgid "Manager" msgstr "經理" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "未完成表單生命周期之間的對映,請聯系系統管理員。" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "三月" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "03" #: NOT FOUND IN SOURCE msgid "March" msgstr "三月" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "標記所有消息為已讀" #: NOT FOUND IN SOURCE msgid "Marketing Department" msgstr "行銷部" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Mason範本搜索順序" #: NOT FOUND IN SOURCE msgid "Match Pattern" msgstr "符合樣式" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "最大值" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "inline消息的最大長度" #: lib/RT/Date.pm:95 msgid "May" msgstr "五月" #: NOT FOUND IN SOURCE msgid "May." msgstr "05" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "我" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "成員" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "成員 %1 新增完畢" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "成員 %1 刪除完畢" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "新增成員完畢: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "成員已刪除" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "成員未刪除" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "隸屬於" #: NOT FOUND IN SOURCE msgid "Member since" msgstr "註冊日期" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "隸屬於" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "成員" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "所屬群組 %1 加入完畢" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "所屬群組 %1 移除完畢" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "所屬群組" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "使用者 %1 的所屬群組" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "整合完畢" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "整合失敗。無法設定 EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "整合失敗。無法設定 Status" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "整合進" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "已整合進 %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "訊息" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "由於資訊過大,資訊內容未顯示" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "發送者要求消息不能inline,所以未予顯示。" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "消息不是普通文本,所以未予顯示。" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "信件內文不是純文字,因此無法顯示。" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "消息太大,所以未予顯示。" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "訊息方塊的高度" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "訊息方塊的寬度" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "消息框包裝" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "無法紀錄訊息" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "給使用者的消息" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "訊息紀錄成功" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "此申請單的相關訊息不會寄送給..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "最小密碼長度" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "分鐘" #: NOT FOUND IN SOURCE msgid "Misc. Expense" msgstr "雜費" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "雜項" #: NOT FOUND IN SOURCE msgid "Mismatched parentheses" msgstr "未對齊的括號" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "缺少主鍵值?(%1)" #: NOT FOUND IN SOURCE msgid "Missing mandatory fields" msgstr "缺少必填欄位" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "行動電話" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "移動電話" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "行動電話" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "更改" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "更改權限控制清單" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "更改適用於 %1 內所有 %2 的自訂欄位" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "更改適用於所有%1的自訂欄位" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all queues" msgstr "更改適用於所有表單的自訂欄位" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "更改群組權限" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "更改成員" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "更改權限" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "更改腳本範本" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "更改此表單的範本" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "更改腳本" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "更改此表單的手續" #: NOT FOUND IN SOURCE msgid "Modify System ACLS" msgstr "更改系統權限清單" #: NOT FOUND IN SOURCE msgid "Modify Template %1" msgstr "更改範本 %1" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "更改使用者權限" #: NOT FOUND IN SOURCE msgid "Modify Workflow" msgstr "更改流程" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "更改 %1 表單內的自訂欄位" #: NOT FOUND IN SOURCE msgid "Modify a CustomField that applies to all queues" msgstr "更改適用於所有表單的自訂欄位" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "更改 %1 表單內的手續" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "更改適用於所有表單的手續" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "更改文章 #%1" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "更改適用 %1 的物件" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "更改自定欄位值" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "修改此群組的控制面板" #: NOT FOUND IN SOURCE msgid "Modify dates for # %1" msgstr "更改 # %1 的日期" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "更改 #%1 的日期" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "更改申請單 # %1 的日期" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "更改全域自訂欄位" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "更改全域設定的群組權限" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "更改全域設定的群組權限。" #: NOT FOUND IN SOURCE msgid "Modify global rights for groups" msgstr "更改全域設定的群組權限" #: NOT FOUND IN SOURCE msgid "Modify global rights for users" msgstr "更改全域設定的使用者權限" #: NOT FOUND IN SOURCE msgid "Modify global scrips" msgstr "更改全域手續" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "更改全域主題" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "更改全域設定的使用者權限" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "更改全域設定的使用者權限。" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "更改群組表單" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "更改群組成員名單" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "更改群組資料及刪除群組" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "更改類型 %1 的群組權限" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "更改自訂欄位 %1 的群組權限" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "更改群組 %1 的群組權限" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "更改表單 %1 的群組權限" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "更改此群組的成員名單" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "更改該類型的元資料與自定欄位" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "更改個人的帳號資訊" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "更改或刪除該類型的文章" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "更改鏈結到表單 %1 的人員" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "更改申請單 #%1 鏈結到的人員" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "修改個人的控制面板" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "更改表單的關注者" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "更改表單 %1 的手續" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "更改適用於所有表單的手續" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "修改系統控制面板" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "更改範本 %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "更改表單 %2 中的範本 %1" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "更改適用於所有表單的範本" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "更改表單 %1 的內容" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "修改控制面板 %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "更改預設的「RT 一覽」檢視" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "更改群組 %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "修改控制面板 %1 的查詢" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "更改表單視察員" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "修改控制面板 %1 的訂閱" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "更改使用者 %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "更改該搜索..." #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "更改申請單 # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "更改申請單 # %1" #: NOT FOUND IN SOURCE msgid "Modify ticket status" msgstr "更改申請單狀態" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "更改申請單" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "更改 %1 的主題" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "更改與該類型相關的主題層次" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "更改該類型的文章主題" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "更改類型 %1 的使用者權限" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "更改自訂欄位 %1 的使用者權限" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "更改群組 %1 的使用者權限" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "更改表單 %1 的使用者權限" #: NOT FOUND IN SOURCE msgid "Modify watchers for queue '%1'" msgstr "更改 '%1' 的視察員" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "更改申請單 #%1 的郵件接收者" #: NOT FOUND IN SOURCE msgid "Modify workflow %1" msgstr "更改流程 %1" #: NOT FOUND IN SOURCE msgid "Modify workflows which apply to all queues" msgstr "更改適用於所有表單的流程" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "更改權限清單" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "更改文章" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "更改文章主題" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "更改自訂欄位" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "修改控制面板" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "修改群組控制面板" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "修改自己的控制面板" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "更改自己是否屬於某群組" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "更改表單視察員" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "更改手續" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "更改個人帳號" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "更改範本" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "更改申請單" #: NOT FOUND IN SOURCE msgid "ModifyTicketStatus" msgstr "更改申請單狀態" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "模組" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "星期一" #: NOT FOUND IN SOURCE msgid "Mon-Fri at %1" msgstr "每周一至周五 %1" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "星期一" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "星期一" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "周一到周五" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "更多" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "關於 %1 的進一步資訊" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "關於申請者的更多情況" #: NOT FOUND IN SOURCE msgid "Morning Shift" msgstr "早班" #: NOT FOUND IN SOURCE msgid "Move" msgstr "移動" #: NOT FOUND IN SOURCE msgid "Move All" msgstr "全移" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "下移" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "上移" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "多重" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "必須指定 'Name' 的屬性" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "我的 %1 申請單" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "表單簽核" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "今日事" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "我的提醒專案" #: NOT FOUND IN SOURCE msgid "My Requests" msgstr "表單申請追蹤" #: etc/initialdata:615 msgid "My Tickets" msgstr "表單處理" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "表單簽核" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "我的控制面板" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "我的提醒專案" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "我的預存查詢" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "(換列)" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "名稱" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "帳號已有人使用" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "名稱:" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "已命名和共用的入口元件" #: NOT FOUND IN SOURCE msgid "Named, shared collection of saved searches" msgstr "有名稱並開放分享的預存查詢" #: NOT FOUND IN SOURCE msgid "Nationality" msgstr "國籍" #: NOT FOUND IN SOURCE msgid "Need approval from system administrator" msgstr "需先由系統管理員進行批准" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "從未更動" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "新建立" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "新文章" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "新表單" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "新增關係" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "新的密碼" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "新的待簽核事項" #: NOT FOUND IN SOURCE msgid "New Query" msgstr "新增查詢" #: NOT FOUND IN SOURCE msgid "New Request" msgstr "表單申請" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "新增查詢" #: NOT FOUND IN SOURCE msgid "New Watchers" msgstr "新增視察員" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "%1的新的和已打開的申請單" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "新增自訂欄位" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "新的控制面板" #: NOT FOUND IN SOURCE msgid "New group" msgstr "新增群組" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "新訊息" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "新的密碼" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "送出新密碼通知" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "新增表單" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "新增提醒項目:" #: NOT FOUND IN SOURCE msgid "New request" msgstr "提出申請單" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "新增權限" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "新增手續" #: NOT FOUND IN SOURCE msgid "New search" msgstr "重新查詢" #: NOT FOUND IN SOURCE msgid "New template" msgstr "新增範本" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "提出申請單" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "沒有新申請單" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "該表單的新申請單的狀態不能為 '%1'." #: NOT FOUND IN SOURCE msgid "New user" msgstr "新增使用者" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "新使用者名字" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "新視察員" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "更新視窗設定" #: NOT FOUND IN SOURCE msgid "New workflow" msgstr "新增流程" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "下一項" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "下一頁" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "下一頁" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "暱稱" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "暱稱" #: NOT FOUND IN SOURCE msgid "Night Shift" msgstr "小夜班" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "否" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "%1沒有載入" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "沒有匹配 %1 的文章" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "尚未定義類別" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "沒有找到匹配搜索條件的類型." #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "無自訂欄位" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "尚未定義自訂欄位" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "尚未定義群組" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "沒有查詢" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "尚未定義表單" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "沒有找到 RT 使用者. 請諮詢您的 RT 管理員." #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "找不到 RT 使用者。請向 RT 管理員查詢。\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "沒有主題" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "沒有範本" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "未指定申請單。退出申請單 " #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket modifications\\n\\n" msgstr "未指定申請單。退出申請單更改\\n\\n" #: NOT FOUND IN SOURCE msgid "No Workflow" msgstr "沒有流程" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "暫不處理" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "未指定欄位" #: NOT FOUND IN SOURCE msgid "No command found\\n" msgstr "找不到命令" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "沒有對這名使用者的評論" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "沒有附上申請單回覆" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "無控制面板" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "沒有對 %1 的描述" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "沒有細節" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "未指定群組" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "找不到符合查詢條件的群組。" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "沒有適合的密鑰" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "沒有這個位址的密鑰" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "沒有附上訊息" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "沒有提供名字" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "不許要加密" #: lib/RT/User.pm:851 msgid "No password set" msgstr "沒有設定密碼" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "沒有新增表單的權限" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "沒有在表單 '%1' 新增申請單的權限" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "沒有新增使用者的權限" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "沒有顯示該申請單的權限" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "沒有更改文章的權限" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "沒有儲存全域預存查詢的權限" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "沒有設定權限" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "沒有查看文章的權限" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "沒有檢視申請單更新的權限" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "未指定單位" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "未指定單位。" #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "無私密金鑰" #: NOT FOUND IN SOURCE msgid "No protocol specified in %1" msgstr "%1 內未指定協定" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "找不到符合查詢條件的表單。" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "沒有指定的權限" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "找不到權限" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "沒有選定權限" #: NOT FOUND IN SOURCE msgid "No search loaded" msgstr "尚未載入查詢" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "沒有要進行的查詢" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "沒有標題" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "沒有密鑰或者它不能做簽名" #: NOT FOUND IN SOURCE msgid "No ticket id specified" msgstr "未指定申請單編號" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "沒有找到申請單" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "未指定更動報告類別" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "無可用的金鑰" #: NOT FOUND IN SOURCE msgid "No user or email address specified" msgstr "未指定使用者或電子郵件地址" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "找不到符合查詢條件的使用者。" #: NOT FOUND IN SOURCE msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" msgstr "找不到合格的 RT 使用者。RT cvs 處理器已停用。請向 RT 管理者詢問。\\n" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "沒有發送至 _Set的值!" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "_Set 沒有收到任何值!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "沒有人" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "無" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "欄位不存在?" #: NOT FOUND IN SOURCE msgid "Normal Users" msgstr "一般使用者群組" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "未設定" #: NOT FOUND IN SOURCE msgid "Not configured to fetch the content from a %1 in %2" msgstr "未設定成從 %2 內擷取 %1" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "找不到" #: NOT FOUND IN SOURCE msgid "Not logged in" msgstr "尚未登入" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "尚未登入" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "尚未設定" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "未使用移動瀏覽器?" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "尚未完工。" #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "尚未完工..." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "備註" #: NOT FOUND IN SOURCE msgid "Notes:" msgstr "備註:" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "無法送出通知" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "通知管理員副本收件人" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "以評論方式通知管理員副本收件人" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "通知副本收件人" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "以評論方式通知副本收件人" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "通知其他收件人" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "以評論方式通知其他收件人" #: etc/initialdata:41 msgid "Notify Owner" msgstr "通知承辦人" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "以評論方式通知承辦人" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "通知承辦人申請單已駁回" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "通知擁有人申請單已被批准,可以進行下一步" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "通知承辦人申請單已完成全部簽核" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "通知承辦人申請單已完成某項簽核" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "通知擁有人申請單已被批准" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "通知擁有人,申請人,抄送人和管理抄送人" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "以注釋方式通知擁有人,申請人,抄送人和管理抄送人" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "整理待簽核事項,通知承辦人及管理員副本收件人" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "通知申請者申請單已被所有批准者批准" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "通知申請者申請單已被某個批准者批准" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "通知申請人" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "通知申請人及副本收件人" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "以評論方式通知申請人及副本收件人" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "通知申請人、副本及管理員副本收件人" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "以評論方式通知申請人、副本及管理員副本收件人" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "若有未讀取訊息請通知我" #: NOT FOUND IN SOURCE msgid "Notify people:" msgstr "通知對象" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "十一月" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "11" #: NOT FOUND IN SOURCE msgid "November" msgstr "十一月" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "搜索結果的數量" #: NOT FOUND IN SOURCE msgid "OIN104" msgstr "104eHRMS 介面" #: NOT FOUND IN SOURCE msgid "OK" msgstr "確定" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OR" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "物件" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "無法新增物件" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "無法刪除物件" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "物件新增完畢" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "物件刪除完畢" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "自訂欄位不適用於類別為 %1 的物件" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "物件類別不符" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "物件列表為空" #: NOT FOUND IN SOURCE msgid "Occupation Status" msgstr "在職狀態" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "十月" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "10" #: NOT FOUND IN SOURCE msgid "October" msgstr "十月" #: NOT FOUND IN SOURCE msgid "Office Phone" msgstr "辦公室電話" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "離線" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "離線編輯" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "離線上載" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "在 %1 時,%2 寫到:" #: NOT FOUND IN SOURCE msgid "On Change" msgstr "更改申請單時" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "關閉時" #: etc/initialdata:143 msgid "On Comment" msgstr "評論時" #: etc/initialdata:115 msgid "On Correspond" msgstr "回覆申請單時" #: etc/initialdata:104 msgid "On Create" msgstr "新增申請單時" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "承辦人改變時" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "優先順位改變時" #: etc/initialdata:172 msgid "On Queue Change" msgstr "表單改變時" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "駁回時" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "重新打開時" #: etc/initialdata:178 msgid "On Resolve" msgstr "解決申請單時" #: etc/initialdata:149 msgid "On Status Change" msgstr "現況改變時" #: etc/initialdata:109 msgid "On Transaction" msgstr "發生更動時" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "密件副本(僅此一次)" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "副本(僅此一次)" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "僅顯示 %1 之後新增的申請單" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "僅顯示 %1 之前新增的申請單" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "僅顯示適用於下列項目的自訂欄位:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "開啟" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "開啟申請單" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "開啟 URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "開啟" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "開啟的申請單" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "在新視窗開啟(列表的)申請單" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "在另一個視窗開啟(列表的)申請單" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "收到回覆時即開啟申請單" #: NOT FOUND IN SOURCE msgid "Opened Tickets" msgstr "已申請運行中表單" #: NOT FOUND IN SOURCE msgid "Opinion" msgstr "意見" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "選項" #: NOT FOUND IN SOURCE msgid "Option Description" msgstr "選項描述" #: NOT FOUND IN SOURCE msgid "Option Name" msgstr "選項名稱" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "選項" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "排序方式" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "順序與排序方式" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "組織名稱" #: NOT FOUND IN SOURCE msgid "Organization:" msgstr "組織:" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "原申請單:#%1" #: NOT FOUND IN SOURCE msgid "Other comma-delimited email addresses" msgstr "其他e-mail帳號 (僅e-mail通知;多筆帳號請用逗號','區隔)" #: NOT FOUND IN SOURCE msgid "Out of range" msgstr "期限外" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "已紀錄發送的評論郵件" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "已紀錄發送的郵件" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "發送的郵件" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "優先順位隨時間增加調整為" #: NOT FOUND IN SOURCE msgid "Override current custom fields with fields from %1" msgstr "以 %1 表單的自訂欄位取代現有欄位" #: NOT FOUND IN SOURCE msgid "Override global rights" msgstr "取代全域權限" #: NOT FOUND IN SOURCE msgid "OverrideGlobalACL status %1" msgstr "取代全域權限 %1" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "總覽" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "承辦申請單" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "承辦申請單" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "承辦人" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "擁有人'%1'沒有權限擁有此申請單" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "承辦人已從 %1 改為 %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "無法設定承辦人。" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "強制將承辦人從 %1 改為 %2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "承辦人" #: NOT FOUND IN SOURCE msgid "Owner's Phone" msgstr "承辦人電話" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "承辦人名稱" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "頁" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "第 %1/%2 頁" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "第1頁(共1頁)" #: share/html/dhandler:48 msgid "Page not found" msgstr "找不到頁面" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "呼叫器" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "尋呼電話" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "呼叫器號碼" #: NOT FOUND IN SOURCE msgid "Parameter" msgstr "呼叫參數" #: NOT FOUND IN SOURCE msgid "Parent" msgstr "上級" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "母申請單" #: NOT FOUND IN SOURCE msgid "Park Space" msgstr "停車位申請" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "密碼" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "密碼提示" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "密碼更改完畢" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "密碼未設定" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "密碼長度至少必須為 %1 個字元" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "密碼未列印" #: lib/RT/User.pm:861 msgid "Password set" msgstr "密碼已設定" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "密碼太短" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "密碼:%1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "密碼:權限不足" #: etc/initialdata:463 msgid "PasswordChange" msgstr "密碼更改" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "密碼確認失敗。" #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "密碼確認失敗。您的密碼並未改變。" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "sendmail 所在的路徑" #: NOT FOUND IN SOURCE msgid "Pelase select a queue" msgstr "請選擇表單名稱" #: NOT FOUND IN SOURCE msgid "Pending Approval" msgstr "等待簽核" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "人員" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "與表單 %1 有關的人" #: NOT FOUND IN SOURCE msgid "People with Queue Rights" msgstr "擁有表單權限人員" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "執行使用者自訂的動作" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "Perl" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl 設定" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Perl庫的搜索順序" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "永久刪除 RT 的資料" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "權限不足" #: NOT FOUND IN SOURCE msgid "Permission Settings" msgstr "權限設定" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "權限不足" #: NOT FOUND IN SOURCE msgid "Permissions denied" msgstr "權限不足" #: NOT FOUND IN SOURCE msgid "Permitted Queues:" msgstr "擁有權限表單列表:" #: NOT FOUND IN SOURCE msgid "Personal" msgstr "代理人群組" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "個人表單" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "代理人群組" #: NOT FOUND IN SOURCE msgid "Personal Homepage" msgstr "個人首頁" #: NOT FOUND IN SOURCE msgid "Personal Todo" msgstr "私人待辦事項" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "代理人群組" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "代理人群組:" #: NOT FOUND IN SOURCE msgid "PersonalHomepage" msgstr "個人首頁" #: NOT FOUND IN SOURCE msgid "Phase 1: Create/Rename Groups (%1)" msgstr "第一階段:群組建立及改名 (%1)" #: NOT FOUND IN SOURCE msgid "Phase 2: Disable/Enable Groups (%1)" msgstr "第二階段:群組停用及啟用 (%1)" #: NOT FOUND IN SOURCE msgid "Phase 3: Create/Rename Users (%1)" msgstr "第三階段:使用者建立及改名 (%1)" #: NOT FOUND IN SOURCE msgid "Phase 4: Disable/Enable Users (%1)" msgstr "第四階段:使用者停用及啟用 (%1)" #: NOT FOUND IN SOURCE msgid "Phone" msgstr "電話" #: NOT FOUND IN SOURCE msgid "Phone number" msgstr "電話號碼" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "電話號碼" #: NOT FOUND IN SOURCE msgid "Pick" msgstr "挑選" #: NOT FOUND IN SOURCE msgid "Place of Departure" msgstr "出發地點" #: NOT FOUND IN SOURCE msgid "Placeholder" msgstr "尚未完工" #: NOT FOUND IN SOURCE msgid "Please Select" msgstr "請選擇" #: NOT FOUND IN SOURCE msgid "Please check items to be deleted first." msgstr "請先選中要刪除的對象" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "請檢查 URL 並再試一次" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "請輸入您目前的密碼." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "請輸入您目前的密碼." #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the %2search builder interface%3." msgstr "請注意,申請單需具有以下狀態之一( %1 ),才會在此顯示。 關於功能更加強大的搜索,請訪問 %2搜索生成器界面%3." #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the Config->Get('WebPath')%>/Search/Build.html\">search builder interface." msgstr "請注意,申請單需具有以下狀態之一( %1 ),才會在此顯示。 關於功能更加強大的搜索,請訪問 Config->Get('WebPath')%>/Search/Build.html\">搜索生成器界面." #: NOT FOUND IN SOURCE msgid "Please select a group" msgstr "請選擇群組" #: NOT FOUND IN SOURCE msgid "Please select a queue's workflow" msgstr "請選擇表單流程" #: NOT FOUND IN SOURCE msgid "Please select one of the category types above." msgstr "請從上面選擇一項分類。" #: NOT FOUND IN SOURCE msgid "Please select role" msgstr "請選擇角色" #: NOT FOUND IN SOURCE msgid "Policy" msgstr "經營規章" #: NOT FOUND IN SOURCE msgid "Position" msgstr "職務" #: NOT FOUND IN SOURCE msgid "Position Level" msgstr "職等" #: NOT FOUND IN SOURCE msgid "Position Name" msgstr "職務名稱" #: NOT FOUND IN SOURCE msgid "Position Number" msgstr "職務代碼" #: NOT FOUND IN SOURCE msgid "Position Rank" msgstr "職級" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "可能的隱藏搜索" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: NOT FOUND IN SOURCE msgid "Pref" msgstr "偏好" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "偏好" #: NOT FOUND IN SOURCE msgid "Preferences %1 for user %2 ." msgstr "使用者 %2 的 %1 偏好。" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "%2的首選項%1" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "成功儲存 %1 的偏好。" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "使用者%1的首選項已保存." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "已儲存設定" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "首選密鑰: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "首選密鑰" #: NOT FOUND IN SOURCE msgid "Prefs" msgstr "個人資訊" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "預備動作完畢" #: NOT FOUND IN SOURCE msgid "Press 'Esc' to close this window." msgstr "按 'Esc' 鍵可關閉本視窗。" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "上一項" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "前一項" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "上一頁" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "前一頁" #: NOT FOUND IN SOURCE msgid "Pri" msgstr "優先順位" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "找不到單位 %1。" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "輸出摘要消息到終端; 不要發送也不要標記為已發送" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "輸出此消息" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "優先順位" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "優先順位起始值" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "隱私" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "隱私設定:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "私密金鑰" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "內部成員" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "內部成員狀態:%1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "內部成員" #: NOT FOUND IN SOURCE msgid "Process Status" msgstr "處理狀態" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "不用事務進行處理,一些條件和動作可能失敗,請考慮使用--transaction參數" #: NOT FOUND IN SOURCE msgid "Project" msgstr "專案" #: NOT FOUND IN SOURCE msgid "Project Name" msgstr "專案名稱" #: NOT FOUND IN SOURCE msgid "Projects" msgstr "專案" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "內部用的虛擬群組" #: NOT FOUND IN SOURCE msgid "Public Description" msgstr "公開說明" #: NOT FOUND IN SOURCE msgid "Public Info" msgstr "公開資訊" #: NOT FOUND IN SOURCE msgid "Public Service" msgstr "公共事務區" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "需要公鑰'0x%1'來核實簽名" #: NOT FOUND IN SOURCE msgid "Purging stale data: %1" msgstr "移除過期資料: %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "元件" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "查詢" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "建立查詢" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "查詢:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "表單" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "找不到表單 %1" #: NOT FOUND IN SOURCE msgid "Queue '%1' not found\\n" msgstr "找不到表單 '%1'\\n" #: NOT FOUND IN SOURCE msgid "Queue Keyword Selections" msgstr "表單關鍵字選取" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "表單名稱" #: NOT FOUND IN SOURCE msgid "Queue Owner" msgstr "業務承辦人" #: NOT FOUND IN SOURCE msgid "Queue Priority" msgstr "優先等級" #: NOT FOUND IN SOURCE msgid "Queue Rights" msgstr "表單權限" #: NOT FOUND IN SOURCE msgid "Queue Scrips" msgstr "表單手續" #: NOT FOUND IN SOURCE msgid "Queue Setup" msgstr "表單設定" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "表單已存在" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "無法新增表單" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "無法載入表單" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "表單新增完畢" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "表單已停用" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "表單已啟用" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "表單編號" #: NOT FOUND IN SOURCE msgid "Queue is not specified." msgstr "未指定表單。" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "找不到表單" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "表單權限" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "表單的密鑰" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "表單的管理抄送人" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "表單的抄送人" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "表單名稱" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "表單視察員" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "表單" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "由我管理的表單" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "管理員副本有我的表單" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "快速創建" #: NOT FOUND IN SOURCE msgid "Quick Search" msgstr "表單現況" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "表單一覽" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "快速建立申請單" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "%2:RT %1 版" #: NOT FOUND IN SOURCE msgid "RT %1 from Best Practical Solutions, LLC." msgstr "RT %1 版,Best Practical Solutions 公司出品。" #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n" msgstr "RT %1。版權所有 1996-%1 Jesse Vincent \\n" #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-2002 Jesse Vincent \\n" msgstr "RT %1。版權所有 1996-2002 Jesse Vincent \\n" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT 管理頁面" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "RT管理者郵箱" #: NOT FOUND IN SOURCE msgid "RT Authentication error." msgstr "RT 認證錯誤。" #: NOT FOUND IN SOURCE msgid "RT Bounce: %1" msgstr "RT 退信:%1" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT設定" #: NOT FOUND IN SOURCE msgid "RT Configuration error" msgstr "RT 設定錯誤" #: NOT FOUND IN SOURCE msgid "RT Critical error. Message not recorded!" msgstr "RT 致命錯誤。訊息未被紀錄。" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT 錯誤" #: NOT FOUND IN SOURCE msgid "RT Received mail (%1) from itself." msgstr "RT 收到從自己寄出的郵件 (%1)。" #: NOT FOUND IN SOURCE msgid "RT Recieved mail (%1) from itself." msgstr "RT 收到從自己寄出的郵件 (%1)。" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT 自助服務" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT大小" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT 的變數" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT 一覽" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "使用者 %1 的 RT 一覽" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT能通過郵件和使用者交流,您需要告訴我們sendmail的路徑。RT也需要知道當有人發送無效的郵件時應該發送通知到哪個郵箱,這個郵箱不能和RT接收郵件的郵箱一樣" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT 可於顯示此自訂欄位時引入其他網站的內容" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT 可將此自訂欄位的值視為連往其他網站的超鏈結" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT核心變量" #: NOT FOUND IN SOURCE msgid "RT couldn't authenticate you" msgstr "RT 無法認證您的身份" #: NOT FOUND IN SOURCE msgid "RT couldn't find requestor via its external database lookup" msgstr "RT 無法從外部資料庫查詢找到申請人資訊" #: NOT FOUND IN SOURCE msgid "RT couldn't find the queue: %1" msgstr "RT 找不到表單:%1" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT 無法儲存您的登入階段。" #: NOT FOUND IN SOURCE msgid "RT couldn't validate this PGP signature. \\n" msgstr "RT 無法確認這個 PGP 簽章。\\n" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "%1 專用流程系統" #: NOT FOUND IN SOURCE msgid "RT for %1: %2" msgstr "%1 專用 RT 系統:%2" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "RT 已執行您的命令" #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT 版權所有 1996-%1 Jesse Vincent <jesse@bestpractical.com>。
本軟體依 GNU 通用公共授權第二版 散佈。" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT是一個企業級的問題跟蹤系統,您可以有效地管理任務,議題,問題或者別的其他類似的事務" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT在100強公司,個人業務,政府代理,教育機構,醫院,公益組織,NGO,圖書館,開源專案還有其他的各種組織里廣泛使用,遍及七大洲(是的,甚至在南極洲)。" #: NOT FOUND IN SOURCE msgid "RT thinks this message may be a bounce" msgstr "RT 認為這可能是退信" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT將使用這個使用者來連接資料庫,它將會被自動創建" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT將創建一個\"root\"使用者並且用它作為密碼" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT 會在申請單主旨內搜尋將您鍵入的任何其他字樣" #: NOT FOUND IN SOURCE msgid "RT will process this message as if it were unsigned.\\n" msgstr "RT 以未簽章方式處理這封郵件。\\n" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT 會將 %1 及 %2 置換成紀錄編號及自訂欄位" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT 會將 __id____CustomField__ 置換成紀錄編號及自訂欄位" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT將使用此字串來識別您的此次安裝並在郵件的主題里搜索它以便確定該消息是屬於哪個申請單的。我們建議您把它設定為您的域名。" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT可以使用多種資料庫。MySQL, PostgreSQL, Oracle and SQLite全部都支援。" #: NOT FOUND IN SOURCE msgid "RT's email command mode requires PGP authentication. Either you didn't sign your message, or your signature could not be verified." msgstr "RT 的電子郵件命令模式須要 PGP 認證。您可能沒有簽章,或是您的簽章無法辨識。" #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "管理群組%1" #: NOT FOUND IN SOURCE msgid "RT::Queue-Role" msgstr "表單運行角色" #: NOT FOUND IN SOURCE msgid "RT::System-Role" msgstr "系統運行角色" #: NOT FOUND IN SOURCE msgid "RT::Ticket-Role" msgstr "申請單運行角色" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "配置里的RTAddressRegexp選項不匹配%1" #: NOT FOUND IN SOURCE msgid "RT_System" msgstr "系統訊息" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: NOT FOUND IN SOURCE msgid "Read Only" msgstr "唯讀" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "真實姓名" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "真實姓名" #: NOT FOUND IN SOURCE msgid "Really reject this ticket?" msgstr "您確定要駁回這張申請單嗎?" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "收件人" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "收件人" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "記錄所有的更新" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "遞歸的成員" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "參考" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "已加入 %1 為參考本申請單" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "已移除 %1 為參考本申請單" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "已加入參考申請單 %1" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "已移除參考申請單 %1" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "被參考" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "被參考" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "參考" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "參考" #: NOT FOUND IN SOURCE msgid "Refine" msgstr "在結果範圍內查詢" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "調整查詢條件" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "更新" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "每10分鐘刷新一次主頁" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "每120分鐘刷新一次主頁" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "每2分鐘刷新一次主頁" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "每20分鐘刷新一次主頁" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "每5分鐘刷新一次主頁" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "每60分鐘刷新一次主頁" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "每10分鐘刷新一次搜索結果" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "每120分鐘刷新一次搜索結果" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "每2分鐘刷新一次搜索結果" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "每20分鐘刷新一次搜索結果" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "每5分鐘刷新一次搜索結果" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "每60分鐘刷新一次搜索結果" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "每 %1 分鐘更新頁面" #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: NOT FOUND IN SOURCE msgid "Reject tickets" msgstr "駁回申請單" #: NOT FOUND IN SOURCE msgid "RejectTicket" msgstr "駁回申請單" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "記住預設表單" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "提醒" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "已建立提醒項目「%1」" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "已完成提醒項目「%1」" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "已重新開啟提醒項目「%1」" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "提醒項目 #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "提醒項目" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "申請單 #%1 的提醒項目" #: NOT FOUND IN SOURCE msgid "Remove" msgstr "移除" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "移除管理員副本" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "移除書簽" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "移除副本" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "移除申請人" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "在該表單將 %1 的 %2 成員資格移除." #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "呈現類型" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "用文本框來替代所有者的下拉列表" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "回覆" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "回覆地址" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "回覆申請人" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "對申請單進行回覆" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "回覆申請單" #: NOT FOUND IN SOURCE msgid "Report to Duty" msgstr "上下班刷卡" #: NOT FOUND IN SOURCE msgid "Reported on" msgstr "到職日期" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "報表" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "申請人" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "申請人電子郵件信箱位址" #: NOT FOUND IN SOURCE msgid "Requestor's" msgstr "申請人所屬之第上" #: NOT FOUND IN SOURCE msgid "Requestor's Dept." msgstr "申請人所屬部門之" #: NOT FOUND IN SOURCE msgid "Requestor's Phone" msgstr "申請人電話" #: NOT FOUND IN SOURCE msgid "Requestor(s)" msgstr "申請人" #: NOT FOUND IN SOURCE msgid "Requestor.EmailAddress" msgstr "申請人: 電子郵件信箱" #: NOT FOUND IN SOURCE msgid "RequestorAddresses" msgstr "申請人地址" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "申請人群組" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "申請人" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "申請單處理期限" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "未指定必要的參數「%1」" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "重設" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "重置 RT" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "重置私密認證碼" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "重設為預設值" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "住處" #: NOT FOUND IN SOURCE msgid "Resolution" msgstr "解決狀態" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "解決" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "解決申請單 #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "已解決" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "已由承辦人解決" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "已在指定日期內解決" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "已在指定日期內內解決,依承辦人分組" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "已解決的申請單,依承辦人分組" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "解決日(相對值)" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "回複" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "回覆申請人" #: NOT FOUND IN SOURCE msgid "Responsibility Type" msgstr "責任區分" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "結果" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "每頁列出幾筆結果" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "返回申請單" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "再次輸入密碼" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "復原" #: NOT FOUND IN SOURCE msgid "Right %1 not found for %2 %3 in scope %4 (%5)\\n" msgstr "在 %4 (%5) 的範圍內找不到 %2 %3 的 %1 權限\\n" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "權限代理完畢" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "權限設定完畢" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "權限載入完畢" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "無法撤消權限" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "找不到權限" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "權限並未載入。" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "權限撤消完畢" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "權限及代理人" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "無法將權限賦予 %1" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "無法撤消 %1 的權限" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "管理員的權限" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "工作人員的權限" #: NOT FOUND IN SOURCE msgid "Role Members" msgstr "角色成員" #: NOT FOUND IN SOURCE msgid "Role Name" msgstr "角色名稱" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "角色" #: NOT FOUND IN SOURCE msgid "RootApproval" msgstr "交由系統管理員簽核" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "行" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "每格筆數" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "每頁筆數" #: NOT FOUND IN SOURCE msgid "Run Approval" msgstr "簽核執行" #: NOT FOUND IN SOURCE msgid "SMTPDebug" msgstr "SMTP 偵錯紀錄" #: NOT FOUND IN SOURCE msgid "SMTPFrom" msgstr "SMTP 寄件位址" #: NOT FOUND IN SOURCE msgid "SMTPServer" msgstr "SMTP 伺服器" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "SQL 查詢" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite是一個不需要任何配置或服務的資料庫,盡管如此,RT的作者們建議僅在測試,演示和開發時使用它,因為它不能勝任工作中高負載的RT服務" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "星期六" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "星期六" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "星期六" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "儲存" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "儲存更改" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "儲存偏好" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "作為新的保存" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "儲存更改" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "保存為新文件" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "保存該搜索" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "已保存%1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "找不到預存查詢 %1" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "已存搜索" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "已存圖表" #: NOT FOUND IN SOURCE msgid "Saved search %1" msgstr "成功儲存查詢:%1" #: NOT FOUND IN SOURCE msgid "Saved search %1 not found" msgstr "未找到已存搜索 %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "預存查詢" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "手續 #%1" #: NOT FOUND IN SOURCE msgid "Scrip Action" msgstr "訊息通知動作" #: NOT FOUND IN SOURCE msgid "Scrip Condition" msgstr "訊息通知條件" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "手續新增完畢" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "手續欄位" #: NOT FOUND IN SOURCE msgid "Scrip Name" msgstr "訊息名稱" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "手續刪除完畢" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "手續" #: NOT FOUND IN SOURCE msgid "Scrips " msgstr "訊息通知 " #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "腳本和收件人" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "%1 的手續\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "適用於所有表單的手續" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "查詢" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "搜索 %1已更新" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "搜索文章" #: NOT FOUND IN SOURCE msgid "Search Criteria" msgstr "查詢條件" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "搜尋偏好" #: NOT FOUND IN SOURCE msgid "Search attribute load failure" msgstr "搜尋屬性載入失敗" #: NOT FOUND IN SOURCE msgid "Search for Articles articles matching" msgstr "根據文章匹配搜索文章" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "搜索文章匹配" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "簽核單查詢" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "搜索文章" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "申請單查詢" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "申請單搜索。輸入編號數字,表單名,擁有人名字和申請人郵箱" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address. RT will look for anything else you enter in ticket bodies and attachments." msgstr "搜尋申請單。請鍵入編號表單名稱、承辦人的使用者名稱、或申請人的電子郵件地址。以上格式之外的文字,則會在申請單內文及附件內檢索。" #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "搜尋選項" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "搜索結果" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "搜尋結果,依 %1 分組" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "搜索結果刷新間隔" #: NOT FOUND IN SOURCE msgid "Search update: %1" msgstr "更新查詢:%1" #: NOT FOUND IN SOURCE msgid "Searches can't be associated with that kind of object" msgstr "不能對此類物件進行查詢" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "對所有申請單的全文進行檢索,可能會需要很久的時間。但如果您真的有需要,可鍵入 fulltext:文字 來搜尋申請單的所有紀錄。" #: NOT FOUND IN SOURCE msgid "Second-" msgstr "二" #: NOT FOUND IN SOURCE msgid "Second-level Users" msgstr "二階主管員工" #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "私密認證碼" #: bin/rt-crontool:350 msgid "Security:" msgstr "安全性:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "參見:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "在該類型搜索文章" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "查閱自定欄位值" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "查閱自訂欄位" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "查閱送出的電子郵件及收件人" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "保證類型存在" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "查閱申請單內的私人評論" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "查閱申請單總覽" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "查看類型" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "查閱自訂欄位" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "檢視控制面板" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "查閱群組" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "檢視群組控制面板" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "檢視自己的控制面板" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "查閱表單" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "選擇" #: NOT FOUND IN SOURCE msgid "Select All" msgstr "全選" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "選擇所有類型文章的自定欄位" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "選擇資料庫類型" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "選擇類型" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "選擇自訂欄位" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "選擇段落的顏色" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "選擇群組" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "選擇表單" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "為您新的申請單選擇一個表單" #: NOT FOUND IN SOURCE msgid "Select a queue to link to" msgstr "請選擇欲連結表單" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "選擇段落" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "選擇使用者" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "從 %1 中選擇文章" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "選擇文章以包括" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "選擇另一種語言" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "選擇框" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "選擇自訂欄位" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "選擇對所有表單的自訂欄位" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "選擇適用於所有使用者群組的自訂欄位" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "選擇適用於所有使用者的自訂欄位" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "選擇適用於所有表單內申請單的自訂欄位" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "選擇適用於所有表單內申請單之更動的自訂欄位" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "選擇控制面板" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "選擇日期" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "選擇時間" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "選擇群組" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "選擇多個日期" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "選擇多個時間" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "選擇多重項目" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "選擇單一項目" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "選擇表單" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "選擇要在「RT 一覽」頁面顯示的表單" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "選擇手續" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "選擇範本" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "選擇該文章的主題" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "最多可選擇 %1 個日期" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "最多可選擇 %1 個時間" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "選擇最多 %1 個值" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "選擇使用者" #: NOT FOUND IN SOURCE msgid "Select workflow" msgstr "選擇流程" #: NOT FOUND IN SOURCE msgid "SelectExternal" msgstr "系統選項" #: NOT FOUND IN SOURCE msgid "SelectMultiple" msgstr "多重選項" #: NOT FOUND IN SOURCE msgid "SelectSingle" msgstr "單一選項" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "已選取的自訂欄位" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "已選表單" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "選擇的密鑰不被信任或不存在." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "已選取的物件" #: NOT FOUND IN SOURCE msgid "Selected users:" msgstr "已選取的使用者:" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "選取的項目已更改。請儲存您的更動" #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "自助服務" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "郵件已發送" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "寄信給所有視察員" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "以評論方式寄信給所有視察員" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "發送郵件給擁有人和所有的關注者" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "以注釋方式發送郵件給擁有人和所有的關注者" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "寄信給申請人及副本收件人" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "以評論方式寄信給申請人及副本收件人" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "寄信給申請人" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "寄信給特定的副本及密件副本收件人" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "寄信給副本收件人" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "以評論方式寄信給副本收件人" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "寄信給管理員副本收件人" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "以評論寄信給管理員副本收件人" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "寄信給申請人" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "九月" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "09" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "以空格區分多個條目" #: NOT FOUND IN SOURCE msgid "September" msgstr "九月" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: NOT FOUND IN SOURCE msgid "Setting %1's 'Disabled' property to %2" msgstr "%1 的「停用」屬性已設為 %2" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "設定" #: NOT FOUND IN SOURCE msgid "Shift Type" msgstr "班別屬性" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "對於您對申請單的更新,RT是否給您發信?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "顯示" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "顯示待簽核申請單" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "顯示批准標簽欄" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "顯示欄位" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "顯示配置標簽欄" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "顯示結果" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "在%1級顯示申請單屬性" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "顯示已批准的簽核單" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "也顯示" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "顯示基本資訊" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "顯示已駁回的簽核單" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "顯示細節" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "顯示全域範本" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "顯示鏈結描述" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "對申請者顯示無申請單" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "先顯示最老的歷史記錄" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "顯示待處理的簽核單" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "顯示引用文本" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "顯示尚待他人批准的簽核單" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Show the Requestor's 10 highest priority closed tickets" msgstr "顯示申請者 10 個最優先的關閉申請單" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Show the Requestor's 10 highest priority open tickets" msgstr "顯示申請者 10 個最優先的開放申請單" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "顯示申請者 10 個最優先的申請單" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "顯示申請單內的私人評論" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "顯示申請單摘要" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "顯示權限清單" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "顯示批准請求單標簽" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "顯示文章" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "顯示文章歷史" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "顯示設定頁籤" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "顯示全域範本" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "顯示寄送郵件" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "顯示預存查詢" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "顯示手續" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "顯示範本" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "顯示申請單" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "顯示申請單的評論" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "粉碎機" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "粉碎機需要一個目錄來保存資訊. 請檢查%1是否存在以及可被網頁伺服器執行寫操作" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "粉碎機需要一個目錄來保存資訊. 請檢查%1是否存在以及可被網頁伺服器執行寫操作" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "工具欄" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "簽名" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "預設簽名" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "登記成為申請人或副本收件人" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "登記成為管理員副本收件人" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "簽名檔" #: NOT FOUND IN SOURCE msgid "Signed in as %1" msgstr "使用者:%1" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "簽名已停用" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "簽名已啟用" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "簡單" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "簡易查詢" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "單一" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "網站名稱" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "大小" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "略過選單" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "跳過已停用的使用者" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "小" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "某些瀏覽器只允許載入和 RT 伺服器同一個網域的內容。" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "出了問題,請聯系系統管理員" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "順序" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "排序方式" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "結果排序方式" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "排序順序" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "排序" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "源" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "指定是每天運行還是每周運行" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "試算表" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "關卡" #: NOT FOUND IN SOURCE msgid "Stage Action" msgstr "關卡運行動作" #: NOT FOUND IN SOURCE msgid "Stage Condition" msgstr "關卡運行條件" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: NOT FOUND IN SOURCE msgid "Stalled" msgstr "延宕" #: NOT FOUND IN SOURCE msgid "Start page" msgstr "首頁" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "實際起始日" #: NOT FOUND IN SOURCE msgid "Started date '%1' could not be parsed" msgstr "無法解讀起始日期 '%1" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "實際起始日(相對值)" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "應起始日" #: NOT FOUND IN SOURCE msgid "Starts By" msgstr "應起始日" #: NOT FOUND IN SOURCE msgid "Starts date '%1' could not be parsed" msgstr "無法解讀起始日期 '%1" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "應起始日(相對值)" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "州" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "現況" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "狀態 '%1' 不是該表單申請單的有效狀態." #: etc/initialdata:307 msgid "Status Change" msgstr "現況改變時" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "現況從 %1 改為 %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "狀態改變" #: NOT FOUND IN SOURCE msgid "StatusChange" msgstr "現況改變時" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "強制更換承辦人" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "強制承辦申請單" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "強制承辦申請單" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "%2的步驟%1" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "承辦人從 %1 強制更換" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "承辦人從 %1 強制更換 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "樣式" #: NOT FOUND IN SOURCE msgid "Subgroup" msgstr "子群組" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "主題" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "主題標簽" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "標題已改為 %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "主題標簽" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "主題標簽已改為%1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "送出" #: NOT FOUND IN SOURCE msgid "Submit Workflow" msgstr "送出流程" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "訂閱" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "訂閱控制面板 %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "控制面板訂閱" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "訂閱控制面板" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "已訂閱控制面板 %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "訂閱" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "無法創建訂閱: %1" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "設定成功" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "已解密資料" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "已加密資料" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "摘要" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "星期日" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "星期日" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "星期日" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "系統管理員" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "暫時擱置的" #: NOT FOUND IN SOURCE msgid "Sync now" msgstr "執行同步" #: NOT FOUND IN SOURCE msgid "Sync104HRMS" msgstr "自動同步104HRMS" #: NOT FOUND IN SOURCE msgid "Synchronizing HRMS data. This may take a while..." msgstr "正在同步化 HRMS 人事系統資料。請稍待..." #: NOT FOUND IN SOURCE msgid "System" msgstr "系統" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "系統設定" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "系統表單" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "系統預設" #: NOT FOUND IN SOURCE msgid "System Defined" msgstr "系統定義" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "系統錯誤" #: NOT FOUND IN SOURCE msgid "System Error. Right not granted." msgstr "系統錯誤。設定權限失敗。" #: NOT FOUND IN SOURCE msgid "System Error. right not granted" msgstr "系統錯誤。設定權限失敗。" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "系統錯誤:%1" #: NOT FOUND IN SOURCE msgid "System Rights" msgstr "系統權限" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "系統工具" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "系統錯誤" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "系統錯誤。權限代理失敗。" #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "系統錯誤。設定權限失敗。" #: NOT FOUND IN SOURCE msgid "System error. Unable to grant rights." msgstr "系統錯誤。無法設定權限。" #: NOT FOUND IN SOURCE msgid "System groups" msgstr "系統群組" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "系統權限" #: NOT FOUND IN SOURCE msgid "SystemInternal" msgstr "系統內部用" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "內部使用的系統角色群組" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRING" #: NOT FOUND IN SOURCE msgid "TabbedUI" msgstr "頁籤介面" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "受理" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "自行承辦申請單" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "自行承辦申請單" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "已受理" #: NOT FOUND IN SOURCE msgid "Task" msgstr "工作事項" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "更多有關RT資料庫的資訊" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "範本" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "範本 #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "範本#%1已刪除" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "找不到範本'%1'" #: NOT FOUND IN SOURCE msgid "Template Content" msgstr "通知範本內容" #: NOT FOUND IN SOURCE msgid "Template Description" msgstr "通知範本描述" #: NOT FOUND IN SOURCE msgid "Template Name" msgstr "通知範本名稱" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "範本編譯" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "範本已刪除" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "範本不包括Perl代碼" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "範本為空" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "範本是必填欄位" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "找不到範本" #: NOT FOUND IN SOURCE msgid "Template not found\\n" msgstr "找不到範本\\n" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "範本剖析完畢" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "範本剖析錯誤" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "範本解析錯誤: %1" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "範本" #: NOT FOUND IN SOURCE msgid "Templates " msgstr "通知範本 " #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "找不到 %1 的範本\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "表單 %1 的範本" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "文字" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "首選項里停用,所以文本文件未予顯示" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "已經是目前欄位的值" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "這不是該自訂欄位的值" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "同樣的值" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "這項單位已經擁有該權限" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "這項單位已經是這個表單的 %1" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "這項單位已經是這份申請單的 %1" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "這項單位不是這個表單的 %1" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "這項單位不是這份申請單的 %1" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "此表單不存在" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "這份申請單有尚未解決的附屬申請單" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "使用者已具有該項權限" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "該使用者已經承辦這份申請單" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "使用者不存在" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "這名使用者已經是內部成員" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "這名使用者屬於非內部成員群組" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "使用者加入內部成員群組完畢" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "這名使用者已加入非內部成員群組" #: NOT FOUND IN SOURCE msgid "That user is now unprivilegedileged" msgstr "這名使用者已加入非內部成員群組" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "使用者可能沒有承辦表單裡的申請單" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "這不是一個數字編號" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "基本資訊" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "申請單的副本收件人" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "標識為 %1 的文章類型不適用於此表單" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "資料庫管理員的密碼" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "申請單的管理員副本收件人" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "評論已被紀錄" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "資料庫伺服器的域名" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "以下命令將在『一般』表單中找到所有活動的申請單,如果已經過期的話則將其優先值設為99:" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "下列命令會找到 'general' 表單內所有運作中的申請單,並將其中 4 小時內未處理的申請單優先程度設為 99:" #: NOT FOUND IN SOURCE msgid "The following commands were not proccessed:\\n\\n" msgstr "以下命令未被執行:\\n\\n" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "下列元件已被刪除並且將會被從表單里刪除" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "下列元件對某些可看見該表單的使用者可能不可見" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "密鑰已被停用" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "密鑰已被登出" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "密鑰已過期" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "密鑰被完全信任(fully)" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "密鑰被終極信任(ultimately)" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "新的欄位值設定完成。" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "申請單的承辦人" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "找不到請求的頁面" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "申請單的申請人" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "設定保存在%1" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "系統不能對要發送的郵件簽名,通常是因為密碼錯誤或者GPG代理宕了。請立即聯系系統管理員,出問題的位址是:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "主題" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "有好幾個可用作加密的密鑰" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "申請單有未讀資訊" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "密鑰被部分信任(marginal)" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "有超過一個名為 '%1' 的群組。這將會造成部分管理界面的矛盾,因此建議您重命名有衝突的群組。" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "沒有適合加密的密鑰" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "沒有該表單之間狀態的繪圖,請聯系系統管理員。" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "有一個合適的密鑰,但是信任等級沒有設定" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "該使用者不會看見這些評論" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "這些配置選項包括運行RT的基本選項。我們需要知道此RT的名稱和域名。您也將需要為您的管理員使用者設定密碼。" #: NOT FOUND IN SOURCE msgid "Third-" msgstr "三" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "該自定欄位不能具有值列表" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "此自訂欄位不適用於該物件" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "該自定欄位沒有呈現類型" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "此項功能僅限系統管理員使用" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "此項功能只適用於系統管理員。" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "可能是因為不能寫入目錄'%1',或者資料庫的一個表遺失或損壞。" #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "此訊息會寄給..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "伺服器進程記錄沒有SQL查詢." #: NOT FOUND IN SOURCE msgid "This ticket %1 %2 (%3)\\n" msgstr "申請單 %1 %2 (%3)\\n" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "此工具程式會讓使用者經由 RT 執行任意命令。" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "此項更動報告沒有內容" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "使用者 %1 最優先處理的 %2 張申請單" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "使用者送出的前 %1 份優先處理申請單" #: NOT FOUND IN SOURCE msgid "This user's 25 highest priority tickets" msgstr "使用者送出的前 25 份優先處理申請單" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "星期四" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "星期四" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "星期四" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "申請單" #: NOT FOUND IN SOURCE msgid "Ticket # %1 %2" msgstr "申請單 # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket # %1 Jumbo update: %2" msgstr "更新申請單 # %1 的全部資訊:%2" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "更新申請單 #%1 的全部資訊:%2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "申請單#%1關係圖" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "申請單#%1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "申請單 #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "申請單 %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "申請單 #%1 成功新增於 '%2' 表單" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "載入申請單 %1\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "申請單 %1:%2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "申請單的自訂欄位" #: NOT FOUND IN SOURCE msgid "Ticket Due" msgstr "表單處理期限" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "申請單處理紀錄 # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket ID" msgstr "單號" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "申請單編號" #: NOT FOUND IN SOURCE msgid "Ticket Processing Due" msgstr "表單運行期限" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "申請單已解決" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "申請單搜索" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "申請單的更動" #: NOT FOUND IN SOURCE msgid "Ticket Type" msgstr "表單種類" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "申請單與事務" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "申請單附件" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "申請單構成" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "申請單內容" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "申請單內容類別" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "內部錯誤,無法新增申請單" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "無法載入申請單" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "申請單新增完畢" #: NOT FOUND IN SOURCE msgid "Ticket creation failed" msgstr "申請單新增失敗" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "申請單刪除完畢" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "申請單顯示" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "找不到申請單編號" #: NOT FOUND IN SOURCE msgid "Ticket killed" msgstr "申請單刪除完畢" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "申請單的描述資訊" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "找不到申請單" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "申請單現況已改變" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "申請單更新" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "申請單視察員" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "TicketSQL 查詢模組" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "申請單" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "申請單 %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "申請單 %1 (%2)" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "待處理的申請單" #: NOT FOUND IN SOURCE msgid "Tickets I requested" msgstr "送出的申請單" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "申請單建立起始日" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "申請單建立截止日" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "%1 的申請單" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "申請單解決起始日" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "申請單解決截止日" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "批准之後,可接續處理:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "預計時間" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "剩餘時間" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "處理時間" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "剩餘時間" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "顯示時間" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "已處理時間" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "預計時間" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "剩餘時間" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "已處理時間" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "時區" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "標題" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "到" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "產生這次更動的差異檔:" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "產生這次更動的差異檔:\\n" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "如果有支援、教育訓練及定製開發的需要,請連絡 %1。" #: NOT FOUND IN SOURCE msgid "Todo" msgstr "待辦事項" #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "切換 %1 項查詢" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "切換堆疊軌跡" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "告知日" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "告知日(相對值)" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "工具" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "主題名稱" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "主題成員已添加" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "主題成員已移除" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "未找到主題" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "主題" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "頁" #: etc/initialdata:249 msgid "Transaction" msgstr "更動" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "清除更動報告 %1" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "更動報告已新增" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "更動的自訂欄位" #: NOT FOUND IN SOURCE msgid "Transaction->Create couldn't, as you didn't specify a ticket id" msgstr "未指定申請單編號,無法新增更動" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "未指定物件類別及編號,無法新增更動" #: NOT FOUND IN SOURCE msgid "TransactionBatch" msgstr "批次更動時" #: NOT FOUND IN SOURCE msgid "TransactionCreate" msgstr "新增更動時" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "事務日期" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "不可更改更動報告" #: NOT FOUND IN SOURCE msgid "Transfer to" msgstr "移交給" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "信任" #: NOT FOUND IN SOURCE msgid "Trying to delete a right: %1" msgstr "試圖刪除某項權限:%1" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "星期二" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "星期二" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "星期二" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "類別" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "在文章編號前輸入a: ,在申請單編號前輸入 t:" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "類型從'%1'更改為'%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "無法添加主題成員" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "無法刪除 %1 主題的成員" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "無法確定物件類型或編號" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "無法載入文章" #: NOT FOUND IN SOURCE msgid "Unable to read image: %1" msgstr "無法讀圖像: %1" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "無法設定使用者 CSS: %1" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "無法設定使用者 Logo: %1" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "無法設定隱私id: %1" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "無法設定隱私物件或id: %1" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "無法設定隱私物件: %1" #: NOT FOUND IN SOURCE msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "無法訂閱表單 %1: 權限被拒絕" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "無法訂閱控制面板 %1: 權限不足" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Uncheck boxes to disable notifications to the listed recipients 僅針對該事務不勾選以停止通知列出的收件人;在『人員頁面』中進行永久取消的管理。" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "尚無實作" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "外部系統登入帳號" #: NOT FOUND IN SOURCE msgid "UnixUsername" msgstr "外部系統登入帳號" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "未知的(沒有設定信任值)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "未知的(該值是新添加的)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "不可解的內容文字編碼方式 %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "未知的欄位:%1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "不限制" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "全數顯示" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "未命名表單" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "未命名的查詢" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "未分配的申請單" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "非內部成員" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "未選取的自訂欄位" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "未選中表單" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "未選取的物件" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "未設定主密鑰" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "未被受理" #: NOT FOUND IN SOURCE msgid "Untitled search" msgstr "未命名的查詢" #: NOT FOUND IN SOURCE msgid "Up" msgstr "上一頁" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "處理" #: NOT FOUND IN SOURCE msgid "Update All" msgstr "全部更新" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "更新圖表" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "更新圖表" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "更新編號" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "更新申請單" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "更新類別" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "整批更新申請單" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "更新電子郵件信箱" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "更新格式並搜索" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "批次更新申請單" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "更新帳號" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "更新未被記錄" #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "更新選擇的申請單" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "更新簽章" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "更新申請單" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "更新申請單 # %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "更新申請單 #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "更新申請單 #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "更新的內容並非申請單回覆也不是評論" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "更新狀態" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "前次更新" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "預存查詢 \"%1\" 以更新" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "上載" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "上傳新logo" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "上載多個檔案" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "上載多份圖片" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "上載一個檔案" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "上載一份圖片" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "上載最多 %1 個檔案" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "上載最多 %1 份圖片" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "上載您的更動" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "使用情況:" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "使用: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "使用SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "使用兩列的布局來創建與更新表單?" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "使用自動完成來尋找擁有人?" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "使用css規則等寬顯示文本並且保留格式,但是如果有需要可以換行。此功能不能在IE6上工作,如果需要,您應該使用前一個選項" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "使用預設值(%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "使用其他的 RT 管理工具" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "使用系統預設值(%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "使用下拉列表功能表來選擇您想要提取為新文章的申請單更新。" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "使用此項可以保護文本文件的格式" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "使用者" #: NOT FOUND IN SOURCE msgid "User %1 %2: %3\\n" msgstr "使用者 %1 %2:%3\\n" #: NOT FOUND IN SOURCE msgid "User %1 Password: %2\\n" msgstr "使用者 %1 密碼:%2\\n" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "找不到使用者 '%1'。" #: NOT FOUND IN SOURCE msgid "User '%1' not found" msgstr "找不到使用者 '%1'" #: NOT FOUND IN SOURCE msgid "User '%1' not found\\n" msgstr "找不到使用者 '%1'\\n" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "使用者(創建-過期)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "使用者自訂" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "使用者自訂的條件及動作" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "使用者 ID" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "使用者 ID" #: NOT FOUND IN SOURCE msgid "User Number" msgstr "員工編號" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "使用者權限" #: NOT FOUND IN SOURCE msgid "User Setup" msgstr "使用者設定" #: NOT FOUND IN SOURCE msgid "User Shift" msgstr "員工班別" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "使用者試圖在 %2 物件 #%3 的自訂欄位 %1 上執行未知的更新操作" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "無法新增使用者:%1" #: lib/RT/User.pm:262 msgid "User created" msgstr "使用者新增完畢" #: NOT FOUND IN SOURCE msgid "User created: %1" msgstr "使用者 %1 新增完畢" #: NOT FOUND IN SOURCE msgid "User created: %1 (%2)" msgstr "使用者 %1 (%2) 新增完畢" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "使用者定義的群組" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "使用者已停用" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "使用者已啟用" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "使用者的郵箱為空" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "已載入使用者" #: NOT FOUND IN SOURCE msgid "User notified" msgstr "已通知使用者" #: NOT FOUND IN SOURCE msgid "User renamed from %1 to %2" msgstr "使用者 %1 已改名為 %2" #: NOT FOUND IN SOURCE msgid "User view" msgstr "使用者私人資料" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "使用者的GnuPG密鑰" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "使用者自定群組" #: NOT FOUND IN SOURCE msgid "UserDefined" msgstr "使用者自定" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "帳號" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "使用者名格式" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "使用者" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "符合查詢條件的使用者" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "使用更動 #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "合理的查詢" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "驗證" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "值" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "選擇表單" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "欄位值" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "變量" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "各種各樣的RT報表" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "版本" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "查看腳本範本" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "查看腳本" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "查看自定欄位值" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "查看自定欄位" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "檢視此群組的控制面板" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "查看外送電子郵件資訊及收件人細節" #: lib/RT/Group.pm:99 msgid "View group" msgstr "查看群組" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "查看群組表單" #: NOT FOUND IN SOURCE msgid "View log" msgstr "檢視紀錄檔" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "檢視個人的控制面板" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "查看表單" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "查看已存搜索" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "檢視系統的控制面板" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "查看申請單隱私評論" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "查看申請單摘要" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "警告: 保存搜索為使用者層次隱私" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "所見即所得編輯器高度" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "所見即所得消息編輯器" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "警告!沒有簽名!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "警告: 您沒有設定 email 地址, 您將不會收到本控制面板的更新" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "視察" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "以管理員副本收件人身份視察" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "視察員" #: NOT FOUND IN SOURCE msgid "Watcher loaded" msgstr "成功載入視察員資訊" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "視察員群組" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "視察員" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "可以用資料庫管理員的身分連接到資料庫。請點擊'自定基本項'繼續自定RT。" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "當類別以另一自定欄位為基礎時,我們目前無法呈現列表。請使用其他的呈現類型。" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "我們需要知道RT的資料庫名稱,RT用來連接資料庫的使用者名和密碼。RT可以創建資料庫和將來訪問資料庫所用的使用者名,這需要資料庫管理員的使用者名和密碼。在第6步時我們會使用這里的資訊來創建和初始化RT資料庫。" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "網站端口" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "網頁文字編碼方式" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "星期三" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "星期三" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "星期三" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "每周摘要" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "歡迎使用RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "今日工作一覽" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "RT是什麼?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "如果RT不能處理一封郵件,該把這封郵件轉發到哪里?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "RT發出的郵件包含了適當的From:和Reply-To:郵件頭,這樣使用者可以很方便地在郵件客戶端里回複郵件。可以為每個表單指定回複和注釋兩種郵箱,使用rt-mailgate前應先設定好這些郵箱。" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "當申請單通過所有簽核後,將此訊息回覆到原申請單" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "當申請單通過某項簽核後,將此訊息回覆到原申請單" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "新增申請單時" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "簽核單新增之後,通知應受理的承辦人及管理員副本收件人" #: etc/initialdata:110 msgid "When anything happens" msgstr "當任何事情發生時" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "WYSIWYG 編輯器未啟用時,此設定將決定自動換行線是否發送至 RT。" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "當點擊'檢查資料庫是否可連接'時,可能會有一點延遲(因為RT正在嘗試連接資料庫)" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "當申請單關閉時" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "駁回申請單時" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "當申請單重新開啟時" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "當申請單解決時" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "當申請單更換承辦人時" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "當申請單的優先順序改變時" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "當申請單更換表單時" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "當申請單更新現況時" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "當使用者自訂的情況發生時" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "當評論送達時" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "當回覆送達時" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "sendmail路徑" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "清理" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "公司" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "工作電話" #: NOT FOUND IN SOURCE msgid "Work offline" msgstr "離線工作" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "公司電話" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "處理時間" #: NOT FOUND IN SOURCE msgid "Workflow #%1" msgstr "流程 #%1" #: NOT FOUND IN SOURCE msgid "Workflow Begin" msgstr "流程開始" #: NOT FOUND IN SOURCE msgid "Workflow End" msgstr "流程結束" #: NOT FOUND IN SOURCE msgid "Workflow deleted" msgstr "流程已刪除" #: NOT FOUND IN SOURCE msgid "Workflows" msgstr "流程" #: NOT FOUND IN SOURCE msgid "Writable" msgstr "可讀寫" #: NOT FOUND IN SOURCE msgid "XXX CHANGEME You are not an authorized user" msgstr "XXX CHANGEME 您是未經授權的使用者" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "是" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "您可以在RT編輯該表單您的訂閱 to it in RT." #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "您已是這份申請單的承辦人" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "您選擇了加密郵件,但是某些收件人的公鑰有問題。您可以選擇修複公鑰,或不發送郵件給有問題的收件人,或者不加密。" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "您選擇了加密郵件,但是某個收件人的公鑰有問題。您可以選擇修複公鑰,或不發送郵件給有問題的收件人,或者不加密。" #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "您不是被授權的使用者" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "跳至第一個未讀訊息跳至第一個未讀的訊息並將所有訊息標記為已讀." #: NOT FOUND IN SOURCE msgid "You can access it with the Download button on the right." msgstr "您可以按右方的「下載」鍵來取得。" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "您也可以直接編輯預先定義的搜尋方式" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "您不能在申請單內容插入任何自由形式、文本或wiki欄位" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "不能設定密碼." #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "祇能重新指派您所承辦或是沒有承辦人的申請單" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "您祇能受理尚無承辦人的申請單" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "您不能將改變狀態 '%1' 至 '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "您沒有超級使用者權限" #: NOT FOUND IN SOURCE msgid "You don't have permission to view that ticket.\\n" msgstr "您沒有看那份申請單的權限。\\n" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "您會在表單 %2 找到 %1 的申請單" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "您已登出 RT。" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "您已經啟用 GnuPG 支援,但是沒有為此表單設定評論位址" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "您已經啟用 GnuPG 支援,但是沒有為此表單設定一致的位址" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "您沒有在該表單新增申請單的權限。" #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "您可以為文章添加 \"a:###\" 形式的鏈結,其中 j### 代表文章的數字" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "您不能在該表單中提出申請。" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "必須輸入管理員密碼" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "您必須設定指令日志為真,以啟用該表單的歷史頁面" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "您必須為該表單設定一個評論位址,以配置 GnuPG 私鑰" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "您必須為該表單設定一個一致的位址,以配置 GnuPG 私鑰" #: NOT FOUND IN SOURCE msgid "You need to restart the Request Tracker service for saved changes to take effect." msgstr "您必須重新啟動 Request Tracker 服務,儲存的更動纔會生效。" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "將會跳轉到登錄頁面,您可以以使用者%1和之前設定的密碼登錄。" #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "將會跳轉到登錄頁面,您可以以使用者root和之前設定的密碼登錄。" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "您應當選擇您或資料庫管理員最順手的資料庫" #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "您看到這個畫面表示您的 RT 並沒有設定正確的資料庫。這大概是您第一次執行 RT。點選下方的開始吧!,RT 會幫助您設定好 RT 伺服器及資料庫。" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "您看到這個畫面表示您的 RT 並沒有設定正確的資料庫。這大概是您第一次執行 RT。點選下方的\"%1\",RT 會幫助您設定好 RT 伺服器及資料庫。" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "歡迎下次再來" #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "您提出的 %1 申請單" #: NOT FOUND IN SOURCE msgid "Your RT administrator has misconfigured the mail aliases which invoke RT" msgstr "RT 管理員可能設錯了由 RT 寄出的郵件收件人標頭檔" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "當前密碼" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "密碼未設定." #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "申請單已由 %1 批准。可能還有其他待簽核的步驟。" #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "您的申請單已完成簽核程序。" #: NOT FOUND IN SOURCE msgid "Your request was rejected" msgstr "您的申請單已被駁回" #: NOT FOUND IN SOURCE msgid "Your request was rejected by %1." msgstr "您的申請單已被 %1 駁回。" #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "您的申請單已被駁回。" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "您的系統支援自動顏色建議於: %1" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "您的帳號或密碼有誤" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "郵遞區號" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[下]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[上]" #: NOT FOUND IN SOURCE msgid "[no subject]" msgstr "[沒有標題]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[無]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "自定欄位" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "活動的" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "在純文本附件周圍增加
標簽"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "晚於"

#: NOT FOUND IN SOURCE
msgid "ago"
msgstr "過期"

#: NOT FOUND IN SOURCE
msgid "alert"
msgstr "急訊"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "允許建立預存查詢"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "允許載入預存查詢"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr "與之前"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr "與否"

#: NOT FOUND IN SOURCE
msgid "approving"
msgstr "待簽核"

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "權限同 %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "條形圖"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "早於"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "主體"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "由下至上"

#: NOT FOUND IN SOURCE
msgid "chart"
msgstr "圖表"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr "選中本框以在全部的表單應用該類型。"

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "標記此項以應用到所有物件"

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr "選中本框以移除該全域類型,之後即能為此類型選擇特定的表單。"

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "標記此項以從所有物件移除,然後便可以選擇指定的物件"

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "標記以增加"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "點擊選擇/不選擇全部物件"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "已解決"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "簡明的"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "包含"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "內容"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "類型"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "核心配置"

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "申請單回覆(可能)未送出"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "申請單回覆已送出"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "critical"
msgstr "嚴重"

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "自定欄位'%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "每天"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "每日於%1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "天"

#: NOT FOUND IN SOURCE
msgid "dead"
msgstr "拒絕處理"

#: NOT FOUND IN SOURCE
msgid "debug"
msgstr "偵錯"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "刪除"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "已刪除"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "顯示可換行和格式化的純文本附件"

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "不符合"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "不包含"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "不符合"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "下載"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr "持續"

#: NOT FOUND IN SOURCE
msgid "email address"
msgstr "電子郵件信箱"

#: NOT FOUND IN SOURCE
msgid "emergency"
msgstr "危難"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "等於"

#: NOT FOUND IN SOURCE
msgid "error"
msgstr "錯誤"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "錯誤:無法下移"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "錯誤:無法左移"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "錯誤:無法上移"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "錯誤:沒有可刪除的對象"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "錯誤:沒有可移動的對象"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "錯誤:沒有可切換的對象"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "每"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "插件已執行"

#: NOT FOUND IN SOURCE
msgid "false"
msgstr "假"

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "檔名"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "完全"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "大於"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "群組"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "群組 '%1'"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "依 %1 分組"

#: NOT FOUND IN SOURCE
msgid "hide quoted text"
msgstr "隱藏引用文本"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "小時"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "編號"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr "在類型 %1"

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr "非活動的"

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr "包括 %1"

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr "索引"

#: NOT FOUND IN SOURCE
msgid "info"
msgstr "資訊"

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "是"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "不是"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "金鑰已取消作用"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "金鑰已過期"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "金鑰已撤回"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "由左至右"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "小於"

#: NOT FOUND IN SOURCE
msgid "level Admin"
msgstr "層主管"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "勉強"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "符合"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "最大深度"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "分"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "分鐘"

#: NOT FOUND IN SOURCE
msgid "modifications\\n\\n"
msgstr "更改\\n\\n"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "每月"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "每月(%1日)於%2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "月"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "永遠不會"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "新建立"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "否"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "沒有名稱"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "沒有值"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "無"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "不等於"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "無"

#: NOT FOUND IN SOURCE
msgid "notice"
msgstr "提示"

#: NOT FOUND IN SOURCE
msgid "notlike"
msgstr "不符合"

#: NOT FOUND IN SOURCE
msgid "number"
msgstr "號"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "物件已刪除"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "等於"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "第幾天"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "一"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "開啟"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "開啟/關閉"

#: NOT FOUND IN SOURCE
msgid "opened"
msgstr "已開啟"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "其他..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "使用者「%2」的「%1」代理人群組"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "餅圖"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "插件為空"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "表單 %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "已駁回"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr "需要運行 rt-crontool"

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "已解決"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "由右到左"

#: NOT FOUND IN SOURCE
msgid "rtname"
msgstr "伺服器名稱"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "秒"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "顯示物件列表"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "顯示批准申請標簽"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "顯示設定頁籤"

#: NOT FOUND IN SOURCE
msgid "show quoted text"
msgstr "顯示引用文本"

#: NOT FOUND IN SOURCE
msgid "sidebar"
msgstr "側邊欄"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "site配置"

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "試算表"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "延宕"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr "指令"

#: NOT FOUND IN SOURCE
msgid "style: %1"
msgstr "樣式:%1"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "合計"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "加總列"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "系統 %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "系統群組 '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "呼叫元件未指明原因"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "預設會顯示於評論郵件中 From: 及 Reply-To: 標投的位址."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "預設會顯示於回覆郵件中 From: 及 Reply-To: 標投的位址."

#: NOT FOUND IN SOURCE
msgid "ticket #%1"
msgstr "申請單 #%1"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "申請單 #%1 %2"

#: NOT FOUND IN SOURCE
msgid "till"
msgstr "至"

#: NOT FOUND IN SOURCE
msgid "to"
msgstr "到"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "由上往下"

#: NOT FOUND IN SOURCE
msgid "true"
msgstr "真"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "徹底"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "沒有描述的群組 %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "無限制的"

#: NOT FOUND IN SOURCE
msgid "unresolved"
msgstr "未處理"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "使用者"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "使用者 %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "使用者名"

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "詳細的"

#: NOT FOUND IN SOURCE
msgid "warning"
msgstr "警告"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "每周"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "每週%1於%2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "週"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "網頁伺服器所使用的埠號, 如 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "連同標頭"

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "範本:%1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "年"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "是"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/lv.po0000664000175000017500000110773312262650742013767 0ustar  chmrrchmrr# Latvian translation for rt
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:22+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: Latvian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:12+0000\n"
"X-Generator: Launchpad (build 13613)\n"
"X-Language: lv_LV\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (nav publiskās atslēgas!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (neuzticams!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1, %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 pievienots"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 atpakaļ"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 mainits uz %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 dzēsts"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 izdzēsts"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2pārsaukts uz %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 saglabāts."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 atjaunots"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 ar šablonu %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) no %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Nav mainīts)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (no rūts %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Pielāgot LogToScreen config opciju"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Arguments kuru nodot uz %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Drukāt statusa izmaiņas uz STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Uzrādiet šablona id kuru vēlaties izmantot"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Uzrādiet vai vēlaties izmantot 'first', 'last' vai 'all' tranzakcijas"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Norādiet šablona(u) vārdu vai id, kuru vēlaties izmantot"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Uzrādiet darbības moduli kuru vēlaties izmantot"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Uzrādiet ar komatiem atdalītu sarakstu ar tranzakciju tipiem, kurus vēlaties izmantot"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Uzrādiet nosacījuma moduli, kuru vēlaties izmantot"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Uzrādiet meklēšanas moduli, kuru vēlaties izmantot"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 DashBoardi"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 ScripAction ielādēts"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 pievienots kā vērtība priekš %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 jau eksistē un tai ir RT tabulas gatavas vietā, bet tā nesatur RT metadatus. 'Initialize Database' solis vēlāk var papildināt esošo datu bāzi ar metadatiem. Ja tas ir pieņemami, klikšķiniet 'Customize Basics' zemāk, lai turpinātu pielāgot RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 jau eksistē, tā nesatur RT tabulas vai metadatus. 'Initialize Database' solis vēlāk var to papildināt ar tabulām un metadatiem, jau eksistējošā datu bāzē. Ja tas ir pieņemami, klikšķiniet 'Customize Basic' zemāk, lai turpinātu pielāgot RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 izskatās pēc lokāla objekta, bet nav atrodams datu bāzē"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 izskatās pilnībā inicializēta. Mums nebūs nepieciešams pievienot vairāk nevienu tabulu vai papildināt ar metadatiem, bet jūs varat turpināt pielāgot RT klikšķinot uz 'Customize Basics' zemāk"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 no %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 mainīts not %2 uz %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 tabula no %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 kopija"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "Pamatkonfigurācija"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 nevar tikt uzstādīts kā %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 nevar uzstādīt statusu, kā atrisinātu. RT Datubāzes konsistence var būt nepilnīga."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 izveidots"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 dzēsts"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 atslēgts"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 neeksistē."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 ieslēgts"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 man piederoši augstākās prioritātes pieteikumi"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 ir instruments kas darbojas ar pieteikumiem no ārējā šedulēšanas instrumenta, kā piemēram no cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 ir utilita, kas paredzēta darbināšanai no cron, kas izsūta visus atliktos RT ziņojumus kā katra lietotāja daidžestu."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 adrese, uz kuru RT saņem e-pastu. Pieliekot to kā '%2' veidos pasta ciklēšanu"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 vairs nav %2 priekš šīs plūsmas."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 vairs nav %2 priekš šī pieprasījuma."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 vairs nav vērtība pielāgojuma laukam %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 jaunākie pieprasījumi bez īpašnieka"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objekti"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 vietnes konfigurācija"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 papildinājums: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 papildinājums: Nav izmaiņu"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 papildināts"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 atrisinās visus atrisinātas grupas pieprasījumam piederošos elementus."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1' %2 objekti"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1' %2' %3 objekti"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1' dashboardi"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1' saglabātie meklējumi"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: nav norādīti pielikumi"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Izveidot pieprasījumu iekš%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,stunda)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' ir nepareiza vērtība statusam"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Atzīmēt rūti lai dzēstu)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Atzīmēt rūtis lai atslēgtu notifikācijas uzskaitītajiem adresātiem)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Atzīmēt rūtis lai ieslēgtu notifikācijas uzskaitītajiem adresātiem)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Ievadiet pieprasījumu id vai URL, atdalītus ar atstarpēm)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Ja paliks tukšs, standarta vērtība saglabāsies %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Nav pielāgojuma lauku)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Nav elementu)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Nav skriptu)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Nav šablonu)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Nav)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Sūta carbon-copy šim papildinājumam uz, ar komatiem atdalītu, sarakstu ar administratīvajām e-pasta adresēm. Šie adresāti saņems tālākos papildinājumus nākotnē.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Sūta carbon-copy šim papildinājumam uz, ar komatiem atdalītu, sarakstu ar e-pasta adresēm. Šie adresāti saņems tālākos papildinājumus nākotnē.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Izmanto šos laukus kad esi izvēlējies 'User Defined' kā nosacījumu darbībai)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Nebūs nosūtīts e-pasts)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(katrs)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(tukšs)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(nav publiskās atslēgas!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(nav vērtības)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(nav vērtības)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(tikai viens pieprasījums)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(rindā %quant(%1,citi pieprasījumi))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(gaida uz apstiprinājumu)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(nepieciešams)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(uzticēt: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(beznosaukuma)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(neuzticams!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id ir novecojis arguments, un to nevar izmantot ar --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--tranzakcijas arguments var būt tikai 'first', 'last' vai 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Visi iCal barotuve satur slepenu pazīmi, kas kalpo tevis autorizācijai. Ja URL adrese tavam iCal barotuve kļūst pieejama pārējai pasaulei, tu vari iegūt jaunu, kas pārtrauks visas eksistējošās iCal barotuves zemāk.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Tukšs šablons" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Parole netika uzstādīta, līdz ar ko, lietotājs nevarēs autorizēties." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE nav atrasta" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEs var tikai tikt izveidotas vai dzēstas." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "AND" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Par mani" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Piekļuves kontrole" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Darbība" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Darbība '%1' nav atrasta" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Darbība nosūtīta.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Darbība ir obligāts arguments" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Darbība sagatavota..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Pievienot AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Pievienot Grāmatzīmi" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Pievienot Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Pievienot Kolonnas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Pievienot Kritēriju" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Pievienot Papildus Failus" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Pievienot Pieprasītāju" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Pievienot Vērtību" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Pievienot skritu, kurš tiks izpildīts priekš visām rindām" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Pievienot komentārus vai atbildes atzīmētajiem pieprasījumiem" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Pievienot elementus" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Pievienot jaunus skatītājus" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Pievienot šos terminus" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Pievienot šos terminus un Meklēt" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Pievienot vērtības" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Pievienot, dzēst un mainīt pielāgojuma lauku vērtības priekš objektiem" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Pievienots principāls kā %1 priekš šīs rindas" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Pievienots principāls kā %1 priekš šī pieprasījuma" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adrese" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adrese1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adrese2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admina Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Admina Komentārs" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Admina Korespondence" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admina rindas" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admina/Globālā konfigurācija" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdminVisusPers.Grupas" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGroup" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminCustomField" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGroup" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGroupMembership" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminOwnPersonalGroups" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminQueue" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminUsers" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administratīvais Cc" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administratīvā parole" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Papildus" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Aggregātors" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Visi Apstiprinājumi Izlaisti" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Visas Rindas" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Visi iCal barotuve satur slepenu pazīmi, kas kalpo tevis autorizācijai. Ja URL adrese tavam iCal barotuve kļūst pieejama pārējai pasaulei, tu vari iegūt jaunu, kas pārtrauks visas eksistējošās iCal barotuves zemāk." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "visi meklējumā atlasītie uzdevumi" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Jau aizkodēts" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Un/Vai" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Apstiprināts" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Attiecas uz" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Attiecas uz visiem objektiem" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Apstiprināt" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Apstiprināt globāli" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Apstiprināt jūsu izmaiņas" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Apstiprinājums" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Apstiprinājums #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Apstiprinājums #%1: Piezīmes nav ierakstītas sakarā ar sistēmas kļūdu." #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Apstiprinājums #%1: Piezīmes ierakstītas" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Apstiprinājums Izlaists" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Apstiprinājums Gatavs priekš Īpašnieka" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Apstiprinājums Noraidīts" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Apstiprināt" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Apr" #: NOT FOUND IN SOURCE msgid "April" msgstr "Aprīlis" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Aug" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Augoši" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Pievienot vai noņemt pielāgojuma laukus" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "AssignCustomFields" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Pievienot" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Pievienot failu" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Pievienotais fails" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Pielikums" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Pielikums '%1' nevar tikt ielādēts" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Pielikums izveidots" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Pielikuma faila vārds" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Pielikumi" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Pielikuma kodēšana ir atslēgta" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Atribūts Dzēsts" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Aug" #: NOT FOUND IN SOURCE msgid "August" msgstr "Augusts" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Autoatbilde" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Autoatbilde Pieprasītājiem" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Pieejams" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "BCc" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Atpakaļ" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Nepareizs privātums atribūtam %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Pamati" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Atceries saglabāt savas izmaiņas" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC korporācijas logo" #: etc/initialdata:214 msgid "Blank" msgstr "Tukšs" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Galvenā daļa" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Trekns" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Grāmatzīme" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Pieprasījumi Grāmatzīmēs" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Īsais heders" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Papildinājumi Vairumā" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Pirkt Atbalstu" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Standartā, RT lietos jūsu sistēmas laika zonu. Te jums ir iespēja uzstādīt globālo pamatvērtību datuma un laika atainošanai RT. Jūsu lietotāji var izvēlēties citu laika zonu savos uzstādījumos." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CCGroup" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Nevar ielādēt saglabāto meklējumu \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Nav iespējams mainīt sistēmas lietotājus" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Var šis principālis skatīt šo rindu" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Nevar pievienot pielāgojuma lauku bez vārda" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Nevar atrast collection klasi priekš '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Nevar atrast saglabāto meklējumu ar kuru strādāt" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Pieprasījumu nevar linkot pašu ar sevi" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Nevar saglabāt %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Nevar saglabāt šo meklējumu" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Nevar uzrādīt vienlaikus pamatu un mērķi" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Nevar izveidot pieprasījumus atslēgtā rindā" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Nevar izveidot lietotāju: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategorijas ir balstītas uz" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorija" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Neuzstādīta kategorija" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccs" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Mainīt" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Nomainīt Apstiprināta pieprasījuma statusu uz atvērts" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Mainīt paroli" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Atzīmēt Visu" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Pārbaudīt Datubāzes Savienojumu" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Pārbaudīt Datubāzes Uzstādījumus" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Atzīmē rūti lai dzēstu" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Atzīmē rūti lai noņemtu tiesības" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Bērni" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Izvēlies Datubāzes Dzini" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Pilsēta" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Tīrīt" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tīrīt Visu" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Pabeigt Instalāciju" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Klikšķini \"Initialize Database\" lai izveidotu RT datubāzi un ievadītu sākotnējos metadatus. Tas var aizņemt pāris mirkļus" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Aizvērt logu" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Aizvērts" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Aizvērti pieprasījumi" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Komborūts: Izvēlies vai ievadi vairākas vērtības" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Komborūts: Izvēlies vai ievadi vienu vērtību" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Komborūts: Izvēlies vai ievadi līdz pat %1 vērtībām" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Piezīme" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Piezīmes Adrese" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Piezīmes adrese" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Piezīme pieprasījumiem" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "CommentAddress" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "CommentOnTicket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Piezīmes" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Piezīmes (Nesūtītas pieprasītājiem)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Piezīmes (nesūtītas pieprasītājiem)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Piezīmes par šo lietotāju" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Piezīmes pievienotas" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Apstirpināt Nodzēsts" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Nosacījums" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Nosacījums '%1' nav atrasts" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Nosacījums ir obligāts arguments" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Nosacījums atbilst..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Nosacījums, Rīcība un Šablons" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Konfigurācijas fails %1 ir slēgts" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Konfigurācija" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Apstiprināt" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Savienojums veiksmīgs" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Saturs" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Satura-Tips" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "ContentType" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Atbilstošā adrese" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "CorrespondAddress" #: etc/initialdata:283 msgid "Correspondence" msgstr "Sarakste" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Sarakste pievienota" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Nav iespējams pievienot jaunu pielāgota lauka vērtību: %1" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Nevar nomainīt īpašnieku: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Nevar izveidot CustomField" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Nevar izveidot CustomField: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Nevar izveidot grupu" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Nevar izveidot šablonu: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Nevar izveidot pieprasījumu atslēgtai rindai \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Nevar izveidot pieprasījumu. Rinda nav uzstādīta" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Nevar izveidot lietotāju" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Nevar atrast vai izveidot šo lietotāju" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Nevar atrast šo principāli" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Nevar ielādēt %1 atribūtu" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Nevar ielādēt CustomField %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Nevar ielādēt grupu" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Nevar ielādēt objektu priekš %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Nevar uzstādīt šo principālu par %1 priekš šīs rindas" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Nevar uzstādīt šo principālu par %1 priekš šī pieprasījuma" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Nevar noņemt šo principālu kā %1 priekš šīs rindas" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Nevar noņemt šo principālu kā %1 priekš šī pieprasījuma" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Nevar iestatīt lietotāja informāciju" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Nevarēja pievienot pielikumu" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Nevarēja pievienot elementu grupai" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Nevarēja pievienot pielāgoto lauku objektam, jo tas jau ir globāls" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Nevarēja izveidot tranzakciju: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Nevarēja izveidot ierakstu" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Nevarēja izdzēst dashboardu %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Nevarēja atrast rindu" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Nevarēja atrast atbilstošu transakciju, izlaižam" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Nevarēja atrast šo principālu" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Nevarēja atrast šo vērtību" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Nevarēja ielādēt %1 no lietotāju datubāzes.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Nevarēja ielādēt Klasi %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Nevarēja ielādēt Pielāgojuma Lauku #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Nevarēja ielādēt CustomField #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Nevarēja ielādēt CustomField %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Nevarēja ielādēt kopiju pieprasījumam #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Nevarēja ielādēt dashboardu %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Nevarēja ielādēt dashboardu %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Nevarēja ielādēt grupu #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Nevarēja ielādēt grupu %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Nevarēja ielādēt saiti" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Nevarēja ielādēt objektu %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Nevarēja ielādēt vai izveidot lietotāju: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Nevarēja ielādēt rindu" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Nevarēja ielādēt rindu #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Nevarēja ielādēt rindu %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Nevarēja ielādēt rindu '%1'" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Nevarēja ielādēt skriptu #%1" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Nevarēja ielādēt šablonu #%1" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Nevarēja ielādēt pieprasījumu '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Nevarēja ielādēt transakciju #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Nevarēja ielādēt lietotāju" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Nevarēja ielādēt lietotāju #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Nevarēja ielādēt lietotāju #%1 vai lietotāju '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Nevarēja ielādēt lietotāju '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Nevarēja noparsēt adresi no '%1' virknes" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Nevarēja aizvietot saturu ar dekriptētiem datiem: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Nevarēja aizvietot saturu ar kriptētiem datiem: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Nevarēja atpazīt '%1' iekš URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Nevarēja atpazīt bāzi '%1' iekš URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Nevarēja atpazīt mērķi '%1' iekš URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "E-pasta sūtīšana neizdevās" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Nevarēja uzstrādīt %1 uzraugu: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Privātās atslēgas iestatīšana neizdevās" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Privātās atslēgas atiestatīšana neizdevās" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Valsts" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Izveidot" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Izveidot Pieprasījumus" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Izveidot CustomField" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Izveidot CustomField rindai %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Izveidot jaunu instrumentu paneli" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Izveidot jaunu grupu" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Izveidot jaunu privātu grupu" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Izveidot jaunu pieprasījumu" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Izveidot jaunu lietotāju" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Izveidot rindu" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Izveidot skriptu rindai %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Izveidot veidni" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Izveidot pieprasījumu" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Izveidot instrumentu paneli šai grupai" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Izveidot pieprasījumu, kas balstītš uz šī skripta veidnes" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Izveidot privātu instrumentu paneli" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Izveidot sistēmas intsrumentu paneli" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Izveidot pieprasījumu" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Izveidot pieprasījumus šajā rindā" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Izveidot pieprasījumus nesaistē" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Izveidot, dzēst un mainīt pielāgotos laukus" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Izveidot, dzēst un mainīt rindas" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Izveidot, dzēst un mainīt jebkura lietotāja privāto grupu dalībniekus" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Izveidot, dzēst un mainīt privāto grupu dalībniekus" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Izveidot, dzēst un mainīt lietotājus" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "CreateDashboard" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "CreateGroupDashboard" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "CreateOwnDashboard" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "CreateSavedSearch" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "CreateTicket" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Izveidots" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Izveidoja" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Izveidots CustomField %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Izveidots laika posmā" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Periodā izveidotie pieprasījumi, grupēti pēc statusa" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CreatedBy" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CreatedRelative" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Izveidotājs" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kriptogrāfija" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Pašreizējās Saites" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Pašreizējie skripti" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Pašreizējie dalībnieki" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Pašreizējās tiesības" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Pašreizējais meklējums" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Pašreizējie uzraugi" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Pielāgotie Lauki" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Pielāgotie lauki priekš %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Pielāgots darbības satīrīšanas kods" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Pielāgots darbības sagatavošanas kods" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Pielāgoti apstākļi" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Pielāgotais lauks #%1 nevar tikt pielietots šim objektam" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Pielāgotais lauks %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Pielāgotais lauks %1 nevar tikt pielietots šim objektam" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Pielāgotā lauka %1 vērtība ir." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Pielāgotajam laukam %1 nav vērtības." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Pielāgotais lauks %1 nav atrasts" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Pielāgotais lauks '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Pielāgotais lauks jau ir pievienots objektam" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Pielāgotā lauka vērtība %1 priekš pielāgotā lauka %2 nav atrasta" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Pielāgotā lauka vērtība nevar tikt dzēsta" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Pielāgotā lauka vērtība nav atrasta" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Pielāgotā lauka vērtība ir dzēsta" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CustomField" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "CustomFieldValue" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Pielāgot" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Pielāgot Pamatus" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Pielāgot E-pasta Adreses" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Pielāgot E-pasta Konfigurāciju" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA parole" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA lietotāja vārds" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Ikdienas kontrolskaitlis" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Instrumentu panelis" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Instrumentu paneli nevar izveidot: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Instrumentu paneli nevar atjaunināt: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Instrumentu panelis atjaunināts" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Instrumentu paneļi" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Datubāzes resursdators" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Datubāzes nosaukums" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT datubāzes parole" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Datubāzes ports" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Datubāzes tips" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "RT datubāzes lietotāja vārds" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Datuma formāts" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "DateTime neatbalsta format_cldr, jums jāatjauno programmatūra, lai lietotu šo iespēju" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Trūkst DateTime modulis" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "DateTime::Locale neatbalsta date_format_full, jums jāatjauno programmatūra, lai lietotu šo iespēju" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Trūkst DateTime::Locale modulis" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datumi" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dec" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Dekriptēt" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Noklusētā Autoatbildes veidne" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Noklusētā Rinda" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Noklusētais Pieprasītājs" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Noklusētā admina komentāru veidne" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Noklusētā admina korespondences veidne" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Noklusētā korespondences veidne" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Noklusētā rinda" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Noklusētā transakciju veidne" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Noklusējums: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Noklusējums: %1/%2 mainīts no %3 uz %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "DefaultFormat" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Deleģēt tiesības" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Deleģēt specifiskas tiesības, kas jums piešķirtas." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegateRights" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Deleģēšana" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Dzēst" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Dzēst Veidni" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Dzēst instrumentu paneli šai grupai" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Dzēšana neizdevās: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Dzēst privāto instrumentu paneli" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Dzēst norādītos skriptus" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Dzēst sistēmas instumentu paneļus" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Dzēst pieteikumus" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Dzēst vērtības" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "DeleteDashboard" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "DeleteGroupDashboard" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "DeleteOwnDashboard" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "DeleteTicket" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Dzēsts %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Dzēsts instrumentu panelis %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Dzēstas rindas" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Dzēsti saglabātie meklējumi" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Dzēšot šo objektu, tiks lauzta savstarpējā integritāte" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Dzēšot šo objektu, tiks pārkāpta savstarpējā integritāte" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Aizliegt" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Atkarīgs no" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "DependedOnBy" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Atkarība no %1 pievienota" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Atkarība no %1 dzēsta" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Atkarība no %1 pievienota" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Atkarība no %1 dzēsta" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "DependentOn" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Atkarīgs no" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "DependsOn" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Desc" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Dilstoši" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Aprakstīt jautājumu zemāk" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Apraksts" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Virziens" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Atslēgts" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Attēlot" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Attēlot Pieejas Kontroles Sarakstu" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Attēlot Kolonnas" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Attēlot Skripta veidnes šai rindai" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Attēlot Skriptus šai rindai" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Attēlot šīs grupas saglabātos meklējumus" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Izplatīts zem GNU GPL 2. versijas" #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Dari ko un kā gribi" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Domeina vārds" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Neiekļaujiet http://, izmantojiet vienkārši 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Neatjaunini mājas lapu." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Neatjaunini meklēšanas rezultātus." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Neatjaunini šo lapu." #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Neuzticēties šai atslēgam pavisam" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Lejuplādēt" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Lejuplādēt kā tab-delimitētētu failu" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Lejuplādēt dumpfailu" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Līdz" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "Relatīvi" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "KĻŪDA: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Atvērto pieprasījumu ātrā atjaunošana" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Rediģēt" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Rediģēt Pielāgotos Laukus" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Labot laukus uz %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "mainīt laukus visām grupām" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Labot laukus visiem uzdevumiem" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Labot laukus visiem lietotājiem" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Labot laukus pieprasījumam visos uzdevumos" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Labot adreses" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Labot uzdevumus" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Labot meklēšanu" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Labot šablonusuzdevumam %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Labot saglabāto meklēto info šajā grupā" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Labot sistēmas šablonus" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "labot saglabātos meklējumus" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Labojams teksts" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Labot konfigurāciju uzdevumam %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Labot lauku %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Labot lietotāju grupai %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Labot lietotājus personāla grupai" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "EfektīvaID" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Bāzei vai mērķim jābūt norādītam" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "vai jums nav tiesību skatīties saglabāto meklējumu %1 vai id in repareizs" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Epasts" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Epasta daidžests" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Epasta adrese jau aizņemta" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Epasta piegāde" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Epasta šablons regulārām ziņojumu vēstulēm" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "EpastaAdrese" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Aktivizēts" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktīvs (Atķeksējot lauks būs neaktīvs)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktīvs (Atķeksējot grupa būs neaktīva)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktīvs (Atķeksējot uzdevums būs neaktīvs)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Aktīvie uzdevumi" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Aktīvie sameklētie uzdevumi" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Aktīvs statuss %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Šifrēt" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Šifrēt pēc noklusējuma" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Šifrēt/Atšifrēt" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Šifrēt/Atšifrēt transakciju #%1 no pieprasījuma #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Šifrēšana neaktīva" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Šifrēšana aktīva" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Ievadi vairākas vērtības" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Ievadi vairākas vērtības ar autotekstu" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Ievadi objektus vai URLs uz objektu. Vairāki ierasti caur space" #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Ievadi vienu vērtību" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Ievadi vienu vērtību ar autotekstu" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Ievadi uzdevumus vai norādes uz tiem. Vairāki ieraksti caur space" #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Ievadi pieprasījumus vai norādes uz tiem. Vairāki ieraksti caur space" #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "ievadi līdz %1 vērtības" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "ievadi līdz %1 vērtības ar autotekstu" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Kļūda" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Kļūda parametros Uzdevumi->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Kļūda parametros Uzdevumi->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Kļūda parametros Pieprasījumi->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Kļūda parametros Pieprasījumi->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Kļūda RT īpašniekam: publiskā atslēga" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Kļūda: Trūkst dašboarda" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Kļūda: slikti GnuPG dati" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Kļūda: nav privātās atslēgas" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Kļūda: publiskā atslēga" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "izplatīt pieprasījumus" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Aptuveni" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Jebkurš" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Apskatīt pieprasījumus izveidotus uzdevumos laika periodā" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Apskatīt atrisinātos pieprasījumus uzdevumos laika periodā" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Skatīt pieprasījumus, uzdotos pēc īpašnieka" #: bin/rt-crontool:356 msgid "Example:" msgstr "Paraugs:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Derīgums" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "Paplaš.Statuss" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Ārējā autentifikācija aktīva" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Papildus informācija" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Izcelt Subjekta tegu" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Izcelt tegus no sarakstes subjekta un pielikt to pieprasījuma subjekta" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Nevar piekonektēties pie datubāzes %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Neizdevās izveidot %1 atribūtus" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Neizdevās atrast 'Priveleged' lietotāju pseidogrupu" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Neizdevās atrast 'UnPriveleged' lietotāju pseidogrupu" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Neizdevās ielādēt %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Neizdevās ielādēt %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Neizdevās ielādēt moduli %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Neizdevās ielādēt objektu %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Neizdevās ielādēt šablonu" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "neizdevās parsēt šablonu" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Feb" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Lauku vērtību avots:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "Faila nosaukums" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Fails" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Aizpildi argumentus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Aizpildi laukus pielietojot krāsas" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Aizpildi vairākos teksta laukos" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Aizpildi vairākās wikitext vietās" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Aizpildi vienā teksta vietā" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Aizpildi vienā wikiteksta vietā" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Aizpildi šo lauku ar URL" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Aizpildi līdz %1 teksta vietas" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Aizpildi līdz %1 wikiteksta vietas" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Gala Prioritāte" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "Gala Prioritāte" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Meklēt visus lietotājus kuri" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Meklēt grupas kuras" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Meklēt personas kuri" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Meklēt pieprasījumus" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Beigt" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Pirmais" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo rinda" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "ātrās izmaiņas" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formāts" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Pārsūtīt" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Pārsūtīt vēstuli" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Pārsūtīt ziņu un atgriezties" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Pārsūtīt pieprasījumu" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Pārsūtīt ziņas citām personām" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Pārsūtīt pieprasījumu #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Pārsūtīt saraksti #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "Pārs.Vēstule" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Atrasti %quant(%1,pieprasījumi)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Atrasts objekts" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Biežums" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Piektd." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Piektdiena" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Pilnai headeri" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Vispārēji" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Ņemt šablonu no faila" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Sākt" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Iedots %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Globālais" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Globālo lauku konfigurācija" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Globālais portlets %1 saglabāts." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Publisks šablons: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "Kļūda GnuPG. Sazinieties ar administratoru" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG integrācija neaktīva" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG apraksti" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG publiskā atslēga(s) %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG publiskā atslēga(s) %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Atvērt" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Atvērt" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Iet uz pieprasījumu" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Grafiks" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Grafika properties" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Grafiki nav pieejami" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Grupa" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Grupas tiesības" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Grupā jau ir lietotājs: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Grupa nevar tikt izveidota: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Grupa izveidota" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Grupa neaktīva" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Grupa aktīva" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Grupā nav šāda lietotāja" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Grupa nav atrasta" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Grupas tiesības" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupas" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupas nevar būt biedri saviem biedriem" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Sameklētās grupas" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Grupēt lietotāju kā biedru (Ķeksēt lai dzēstu)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Grupēt lietotāju kurš nav biedrs (Ķeksēt lai pieliktu)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Grupēt šo lietotāju pēc piederības" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "IrBiedrs" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Pārsūtītās vēstules headers" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Pārsūtītas vēstules headers" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Sveiki!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Sveiki, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Palīdzi mums uzstādīt RT uzstatījumus" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Vēsture" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Grupas vēsture %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Pieprasījumu vēsture %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Lietotāja vēsture %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Sākums" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Mājas lapas atjaunošanas intervāls" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Telefons" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Mājas lapa" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Stunda" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Stundas" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Man ir %quant(%1,concrete mixer)" #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "ID:" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Profils" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Ja apstiprinājums noraidīts, atcelt oriģinālu un dzēst gaidošos apstiprinājumus" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Ja pieprasītājs nav norādīts, veidot pieprasījumu ar šo pieprasītāju." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Ja uzdevums nav norādīts, veidot pieprasījumu šajā uzdevumā" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Ja ir nomainīts RT ports, serveris jāpārstartē, lai varētu ielogoties" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Ja kaut tika mainīts, pārliecinies, ka" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "nepareiza vērtība %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Nemainīgs lauks" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Pielikt neaktīvos laukus sarakstā" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Pielikt neaktīvās grupas sarakstā" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Pielikt neaktīvos uzdevumus sarakstā" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Pielikt neaktīvos lietotājus meklēšanā" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Pielikt lapu" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Personīgās ziņas" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informēt RT īpašnieku ka lietotājam(iem) ir problēmas ar publisko atslēgu" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informēt lietotāju, ka dašbords nav pieejams" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informēt lietotāju, ka nosūtītā vēstule satur nekorektus GnuPG datus" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informēt lietotāju, ka ir problēmas ar publisko atslēgu un lietotājs nevarēs saņemt šifrētas vēstules" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Informēt lietotāju, ka atjaunota sākotnējā parole" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informēt lietotāju, ka saņemta šifrēts e-pasts un nav privātās atslēgas atšifrēšanai" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Pamatprioritāte" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "Pamatprioritāte" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inicializēt Datubāzi" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Ievades kļūda" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Ievadei jāsakrīt ar %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Instalēt RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Iekšēja Kļūda" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Iekšēja kļūda: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Nepareizi %1`: '%2' nepareizs e-pasta formāts" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Nepareizs %1: Jābūt ir numuram" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Nepareizs grupas tips" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Nepareizi dati" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Nepareizs objekts" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Nepareizs īpašnieka objekts" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Nepareizs paterns %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Nepareizs uzdevums" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Nepareizas tiesības" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Nepareizas tiesības. '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Nepareiza E-pasta sintakse" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "nepareiza vērtība %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Nepareiza vērtība laukā" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Nepareiza statusa vērtība" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Nav šifrēti dati" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Svarīgi ir neļaut nepriveleģētiem lietotājiem izmantot šo utilītu." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Ieteicams izveidot nepriveliģētu lietotāju korektā lietotāju grupā un atļauju lietot RT un šo utilītu" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Nepieciešami daži argumenti:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Slīpraksts" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Pievienoties vai atstāt šo grupu" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jūl" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Jumbo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jūn" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Atastāt 'localhost' ja neesat pārliecināts.Atstāt tukšu lai konektēties lokāli" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Valoda" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Liels" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Pēdējais" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Pēdējauis Kontakts" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Pēdējais Kontakts" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Pēdējoreiz atjaunināts" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Pēdējais atjauninātājs" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Pēdējais atjauninātājs" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "Pēd.Jauninājums" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "Pēd.Jauninātājs" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Atstāj tukšu lai nosūtītu un tekošo e-pasta adresi (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Atstāj tukšu lai lietotu noklusēto vērtību datubāzē" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Atstāt tukšu lai lietotu noklusēto dba lietotāju datubāzē" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Pa kreisi" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Vēsture" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Garums simbolos; Lietot '0' lai parādītu visus paziņojumus" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Atļaut šim lietotājam lietot RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "pieširt lietotājam Priveliģētas tiesības" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Aiziet!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Saite" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Saite jau eksistē" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Saiti nav iespējams izveidot" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Saite nav atrasta" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Saiknēt pieprasījumu #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Saiknēt vērtības uz" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Saistītie" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "PievienotsNo" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "PievienotsUz" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Sasaistīts. Pieeja aizliegta" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Saites" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Ielādēt" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Ielādēt saglabāto meklējumu:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Ielādēts %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Ielādēts oriģināls \"%1\" saglabātais meklējums" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Ielādētie Perl moduļi" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Ielādētie saglabātie meklējumi \"%1\"" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Lokālie" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LokālDatumsLaiks" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Vieta" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Ielogojies kā %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Atvienojies" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Ielogoties" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "LogoAltTeksts" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Iziet" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "meklēšanas tips nesakrīt" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Pasts" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Saitnes pamattips" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Veidot īpašnieku" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Veidot statusu" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Veidot datumu līdz" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Veidot datumu Atrisināts" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Veidot datumu Sākts" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Veidot datumu Sākts" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Veidot datumu Pateikts" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Pieškirt prioritāti" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Veidot uzdevumu" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Veidot tēmu" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Veidot šo tēmu redzamu lietotājam" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Menedžēt laukus un lauku vērtības" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Menedžet grupas un grupas dalībniekus" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Labot uzstādījumus un konfigurācijas visiem uzdevumiem" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Labot uzdevumu un speciālo uzdevumu uzstādījumus" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Labot saglabātos grafikus" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Labot lietotājus un paroles" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mar" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Iezīmēt vēstules kā izlasītas" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Masona šablonu meklēšanas kārtība" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "MaxVērtības" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Maksimālais vēstules izmērs" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maijs" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Biedrs" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Biedrs %1 pievienots" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Biedrs %1 dzēsts" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Biedrs pievienots: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Biedrs dzēsts" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Biedrs netika dzēsts" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Biedrs" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "Biedrs" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Biedri" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Biedrs %1 pielikts" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Biedrs %1 dzēsts" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Biedri" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Lietotāja tiesības %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Apvienots veiksmīgi" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Apvienošana neveiksmīga. Nevar pieškirt EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Apvienošana neveiksmīga. Nevar uzstādīt statusu" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Apvienot ar" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Apvienots %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Vēstule" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Vēstule netiks parādīta. Sūtītājs neļauj izlasīt pašu vēstuli" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Vēstule netiks parādīta jo nav tīra teksta formātā." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Vēstule netiks parādīta jo izmērs ir par lielu" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Vēstules augstums punktos" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Vēstules lauka platums punktos" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Vēstule netiks ierakstīta" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Vēstule lietotājam" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Vēstule ierakstīta" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Vēstules par šo pieprasījumu netiks nosūtītas ..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minimālais paroles simbolu skaits" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minūtes" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Nav primārās atslēgas?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobilais" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "Mob.Telefons" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Labot piekļūšanas tiesības" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Labot laukus kas pieliksies %1 visiem %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Labot laukus kas pieliksies visiem %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Labot grupas tiesības" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Labot biedrus" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Labot tiesības" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Labot šablonus šim uzdevumam" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Labot šablonus šim uzdevumam" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Labot lietotāja tiesības" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Labot laukus uzdevumam %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Labot šablonus šim uzdevumam %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Labot skripus visiem uzdevumiem" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Labot piesaistītos objektus %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Labot formas vērtības" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Mainīt šīs grupas paneļus" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Mainīt datumu #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Mainīt datumu pieprasījumam # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "mainīt globālos laukus" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Mainīt globālās grupas tiesības" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Mainīt globālās grupas tiesības" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Mainīt globālās lietotāja tiesības" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Mainīt globālās lietotāja tiesības" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Mainīt grupas pamatdatus vai dzēst grupu" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Mainīt grupas tiesības laukam %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Mainīt grupas tiesības grupai %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Mainīt grupas tiesības uzdevumam %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Mainīt tiesību žurnālu šai grupai" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Mainīt lietotāja RT akkauntu" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Mainīt uzdevuma biedrus %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Mainīt pieprasījuma biedrus #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Mainīt personīgos paneļus" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Mainīt uzdevuma parametrus %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Mainīt skripus kas uzliksies visiem uzdevumiem" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Mainīt sistēmas paneļus" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Mainīt šablonu %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Mainīt šablonus, kas uzliksies visiem uzdevumiem" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Mainīt paneli %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Mainīt pamatēmu \"RT at a glance\"" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Mainīt grupu %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Mainīt uzdevumus panelī %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Mainīt uzdevuma skatītājus" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Mainīt abonementus panelim %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Labot lietotāju %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Labot pieprasījumu # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Labot pieprasījumu #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Labot pieprasījumus" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Labot lietotāja tiesības laukam %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Labot lietotāja tiesības grupai %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Labot lietotāja tiesības uzdevumam %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Modulis" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pirmd." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Pirmdiena" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Pirmdiena līdz Piektdiena" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Vairāk" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Vairāk kā %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Pārvietot lejup" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Pārvietot augšup" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Daudzkārtējs" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Jānorāda 'Name' atribūti" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Mani %1 pieprasījumi" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Mana diena" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mani apstiprinājumi" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "mani paneļi" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mani saglabātie meklējumi" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Vārds" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Vārds jau ir aizņemts" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Nekad" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Jauns" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Jauna saite" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Jauns apstiprinājums rindā" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Jauna Meklēšana" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Jauni un atvērti pieprasījumi %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Jauns izvēles lauks" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Jauna grupa" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Jaunas vēstules" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Jaunā parole" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Jaunās paroles paziņojums nosūtīts" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Jauns atgādinājums:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Jaunas tiesības" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Jauns skrips" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Jauns šablons" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Jauns pieprasījums" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Jauns pieprasījums nepastāv" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Jauns lietotājs izsaukts" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Jauni vērotāji" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Nākamais" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Segvārds" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Segvārds" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Nē" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Nav %1 ielādēts" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nedefinēta klase" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nav definēts lauks" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nav definēta grupa" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Nav uzdevuma" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nav definēts uzdevums" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Nav atrasts RT lietotājs, Lūdzu konsultēties ar administratoru.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Nav temata" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Nav šablona" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Nav darbības" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Nav norādīta kolonna" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Par šo lietotāju nav ievadīti komentāri" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Nav paneļu" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Nav paraksta %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Nav detaļu" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Nav norādīta grupa" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Nav atrastas meklējamās gr4upas" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Nav atslēgas šifrēšanai" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Nav atslēgas šai adresei" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Nav pievienota vēstule" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Nav norādīts vārds" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Šifrēšana nav vajadzīga" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Nav uzlikta parole" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Nav tiesību veidot uzdevumus" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Nav tiesību veidot pieprasījumu uzdevumā '%1'" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Nav tiesību skatīt šo pieprasījumu" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Nav tiesību saglabāt meklēšanas kritērijus" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Nav tiesību saglabāt uzstādījumus" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Nav tiesību skatīt pieprasījuma izmaiņas" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Nav privātās atslēgas" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Nav šādu meklēto uzdevumu" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Nav norādītas tiesības" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Nav atrastas tiesības" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Nav atļautas tiesības" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Nav norādīts meklējamais" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Nav subjekta" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Nav atslēgas vai atslēga nav derīga" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Nav atrasti pieprasījumi" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nav lietojamas atslēgas" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Šādi meklētie lietotāji nepast" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Nav vērtības sūtītas _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Neviens" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Neviens" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Neesošs lauks?" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Nav atrasts" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nav ielogojies" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Nav iestatīts" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Vēl nav īstenots" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Piezīmes" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Brīdinājums netiks nosūtīts" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Brīdināt AdminCcs" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Brīdināt AdminCcs ar komentāru" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Paziņot Ccs" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Paziņot Ccs ar komentāru" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Paziņot citus saņēmējus" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Paziņot citus saņēmējus ar koentāru" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Paziņot īpašniekam" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Paziņot īpašniekam ar komentāru" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Paziņot īpašniekam par atteiktu pieprasījumu" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Paziņot īpašniekam, ika viņa pieprasījums ir gatavs apstrādei" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Paziņot īpašniekam, ika viņa pieprasījums ir apstiprināts apstrādei" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "paziņot īpašniekam, pieprasītājam, Ccs un AdminCcs" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Paziņot īpašniekam, pieprasītājiem, Css un AdminCcs ar komentāru" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Paziņot īpašniekam un AdminCcs ka ir jauni dati gaida apstiprinājumu" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Paziņot pieprasītājam ka ir jauni dati ir apstiprināti" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Paziņot pieprasītājam ka ir jauni dati ir apstiprināti" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "paziņot pieprasītājiem" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "paziņot pieprasītājiem un Ccs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "paziņot pieprasītājiem un Ccs ar komentāru" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Paziņot man par neizlasītu e-pastu" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "atrasto vienību skaits" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "VAI" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekts" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekts nevar tikt izveidots" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objekts nevar tikt dzēsts" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekts izveidots" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekts dzēsts" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objekta tips %1 nevar paņemt laukus" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Objekta tips nesakrīt" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Ojektu saraksts ir tukšs" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt." #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Atslēdzies" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Offline labošana" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Offlaina augšuplādēšana" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "%1, %2 raksta:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Aizverot" #: etc/initialdata:143 msgid "On Comment" msgstr "Komentējot" #: etc/initialdata:115 msgid "On Correspond" msgstr "Sarakstoties" #: etc/initialdata:104 msgid "On Create" msgstr "Pie Izveides" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Uz īpašnieka maiņu" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "uz Prioritātes maiņu" #: etc/initialdata:172 msgid "On Queue Change" msgstr "uz uzdevuma maiņu" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "atsakot" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Atverot par jaunu" #: etc/initialdata:178 msgid "On Resolve" msgstr "Atrisinot" #: etc/initialdata:149 msgid "On Status Change" msgstr "Statusu mainot" #: etc/initialdata:109 msgid "On Transaction" msgstr "Sarakstoties" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Vienreizējs Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Vienreizējs Cc" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Rādīt pieprasījumu apstiprinājumus, veidotus pēc %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Rādīt pieprasījumu apstiprinājumus, veidotus pirms %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Rādīt laukus tikai:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Atvērtie pieprasījumi" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Atvērt URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Atvērt to" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Atvērtie pieprasījumi" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Atvērt pieprasījumus sarakstei" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opcija" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Opcijas" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Orakle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sakārtot" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organizācija" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Oriģināls pieprasījums: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Izejošs e-pasts ar komentāru ierakstīts" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Izejošs e-pasts ierakstīts" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Izejošais e-pasts" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Laiks beidzies, prioritāte mainīta" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "piederīgie pieprasījumi" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "Īpašn.Piepr." #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Īpašnieks" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Īpašniekam '%1' nav tiesību paņemt šo pieprasījumu." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Īpašnieks nomainīts no %1 uz %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Nevar uzstādīt īpašnieku" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Īpašnieks nomainīts no %1 uz %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Īpašn.Vārds" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Lapa" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Lapa 1 no 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Lapa nav atrasta" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Peidžeris" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Mob.telefons" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Vecāki" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Parole" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Paroles atgādinātājs" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Parole nomainīta" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Parole nav uzlikta" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Parolei jābūt vismaz %1 simbolu garai" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Parole uzlikta" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Parole: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Parole: Pieeja aizliegta" #: etc/initialdata:463 msgid "PasswordChange" msgstr "ParolesMaiņa" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Paroles nesakrīt." #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "ceļš uz sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Cilvēki" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Veikt lietotāja definētu komandu" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl konfigurācija" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Atļauja liegta" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Pieeja aizliegta" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Personīgie paneļi" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Personīgās grupas" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefona numuri" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Pārbaudi URL un mēģini vēlreiz" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Lūdzu ievadiet paroli korekti" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Lūdzu ievadiet esošo paroli" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "iespējams slēpti meklējumi" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Uzstādījumi" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Uzstādījumi %1 lietotājam %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Uzstādījumi saglabāti %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Uzstādījumi saglabāti lietotājam %1." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Uzstādījumi saglabāti." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Vēlamā atslēga: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Vēlamā atslēga" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Iepr" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Iepriekšējais" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Drukāt šo vēstuli" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioritāte" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioritāte sākās" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privātums" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privātums:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Privātā atslēga" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Priveliģēts" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Priveliģēts statuss: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Priveliģēti lietotāji" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseidogrupa iekšējai lietošanai" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Pārbaudei nepieciešama '0x%1' publiskā atslēga" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Pieprasījumi" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Pieprasījums" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Pieprasījumu veidošana" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Pieprasījums:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Secība" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Uzdevums %1 nav atrasts" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Uzdevuma nosaukums" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Uzdevums jau eksistē" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Uzdevums nevar tikt izveidots" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Uzdevums nevar tikt ielādēts" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Uzdevums izveidots" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Uzdevums atspēkots" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Uzdevums aktīvs" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Uzdevuma Id" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Uzdevums nav atrasts" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Uzdevuma tiesības" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Uzdevumu atslēgas" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "UzdevumaAdminCc" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "UzdevumaCc" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "Uzd.Vārds" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "Uzd.Sekotājs" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Rindas" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Uzdevumi, kurus administrēju" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Uzdevumi, kuriem es kā AdminCc" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Ātrā meklēšana" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "ātrā pieprasījuma veidošana" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 uz %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT Administrācija" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "RT Administrācijas Epasts" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfigurācija" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT kļūda" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT serviss" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT izmērs" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT īsumā" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT īsumā lietotājam %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT Pamatvērtības" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT nevar saglabāt sesiju." #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Īstais vārds" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Saņēmējs" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Ierakstīt visus jauninājumus" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekursīvs lietotājs" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Atsauce no %1 pielikta" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Atsauce no %1 dzēsta" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Atsauce %1 pielikta" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Atsauce %1 dzēsta" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Atsauksme uz no" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Atsauce uz" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Atjaunot" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Atjaunot mājas lapu katras 10 minūtes" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Atjaunot mājas lapu katras 120 minūtes" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Atjaunot mājas lapu katras 2 minūtes" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Atjaunot mājas lapu katras 20 minūtes" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Atjaunot mājas lapu katras 5 minūtes" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Atjaunot mājas lapu katras 60 minūtes" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Atjaunot meklēšanas reultātus katras 10 minūtes" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Atjaunot meklēšanas reultātus katras 120 minūtes" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Atjaunot meklēšanas rezultātus katras 2 minūtes." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Atjaunot meklēšanas rezultātus katras 20 minūtes." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Atjaunot meklēšanas rezultātus katras 5 minūtes." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Atjaunot meklēšanas rezultātus katras 60 minūtes." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Atjaunot šo lapu katras %1 minūtes." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Atgādinājums '%1' pielikts" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Atgādinājums '%1' sagatavots" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Atgādinājums '%1' pāratvērts" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Atgādinājums pieprasījumam #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Atgādinājumi" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Atgādinājums pieprasījumam #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Noņemt AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Izņemt grāmatzīmi" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Noņemt Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Noņemt Pieprasītāju" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Atbildēt" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Attbildes adrese" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Atbildēt pieprasītājiem" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Atbildēt pieprasījumiem" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Pārskati" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Pieprasītājs" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Pieprasītāji" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Pieprasījumiem jābūt līdz" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Vajadzīgais parametrs '%1' nav norādīts" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Atstatīt" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Atstatīt slepeno autentifikācijas zīmi" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Atstatīt uz noklusēto" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Uzturēšanās" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Atrisināt" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Atrisināt pieprasījumu #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Atrisināts" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Atrisinājis īpašnieks" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Atrisināts laika posmā" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Atrisinātie pieprasījumi laika periodā, grupēti pēc īpašnieka" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Atrisinātie pieprasījumi, grupēti pēc īpašnieka" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Atbildēt" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Rezultāti" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Atgriezties pieprasījumā" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Ievadīt paroli" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Atgriezt" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Tiesības deleģētas" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Tiesības piešķirtas" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Tiesības ielādētas" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Tiesības netiks anulētas" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Tiesības nav atrastas" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Tiesības nav ielādētas" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Tiesības anulētas" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Tiesības nav apstiprinātas %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Tiesības" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Rindas" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "rindas laukumā" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rindas lapā" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQL lite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sestd." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Sestdiena" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Saglabāt" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Saglabāt izmaiņas" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Saglabāt uzstādījumus" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Saglabāt kā jaunu" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Saglabāts %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Saglabātais Meklējums %1 nav atrasts" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Saglabātie grafiki" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Saglabātās meklēšanas" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Skrips #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Skrips izveidots" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Skrip lauki" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Skrip dzēsts" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Skripi" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Skripi un saņēmēji" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Skuripi, uzlikti visiem uzdevumiem" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Meklēt" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Meklēšanas iestatījumi" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "meklēt apstiprinājumus" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Meklēt pieprasījumus" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Meklēt pieprasījumus. Ievadiet id numurus, uzdevumus pēc vārda, Īpašniekus Lietotāja un pieprasītāja E-pasta." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Meklēšanas iestatījumi" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Meklēšanas rezultāti grupēti pēc %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Meklēšanas rezultātu atjaunošanas intervāls" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Meklēt pilnu tekstu katrā pieprasījumā var aizņemt ilgu laiku, bet ja tas nepieciešams, jūs varat meklēt jebkuru vārdu pilnā pieprasījumu vēsturē ierakstot fulltext:word." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Slepenais autorizācijas žetons" #: bin/rt-crontool:350 msgid "Security:" msgstr "Drošība:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Skatīt arī:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Skatīt lauku vērtības" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Skatīt laukus" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Skatīt izejošos e-pastus un to saņēmējus" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Skatīt pieprasījuma privātos komentārus" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Skatīt pieprasījuma apkopojumu" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Iezīmēt" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Izvēlēties Datubāzes tipu" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Izvēlēties lauku" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Izvēlēties grupu" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Izvēlēties uzdevumu" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Izvēlēties uzdevumu jaunajam pieprasījumam" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Izvēlēties lietotāju" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Izvēlēties citu valodu" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Izvēlēties laukus visiem uzdevumiem" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Izvēlēties laukus visām lietotāju grupām" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Izvēlēties laukus visiem lietotājiem" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Izvēlēties laukus pieprasījumiem visos uzdevumos" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Izvēlēties laukus transakcijās pieprasījumos visos uzdevumos" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Atlasīt grupu" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Izvēlēties vairākas vērtības" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Izvēlēties vienu vērtību" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Izvēlēties uzdevumus kurus rādīt \"RT at a glance\" lapā" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Izvēlēties skripu" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Izvēlies šablonu" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Izvēlies līdz %1 vērtības" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Izvēlies Custom laukus" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Izvēlētā atslēga nav droša vai vispār nepastāv." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Izvēlēties objektus" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Izvēlne mainīta. Saglabājiet izmaiņas" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Vēstule nosūtīta veiksmīgi" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Nosūtīt vēstuli īpašniekam un visiem sekotājiem" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Nosūtīt vēstuli īpašniekam un visiem sekotājiem kā \"komentārs\"" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Nosūtīt vēstuli pieprasītājiem un Ccs" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Nosūtīt vēstuli pieprasītājiem un Ccs kā komentāru" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Nosūtīt vēstuli pieprasītājiem" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Nosūtīt vēstuli norādītajiem Bccs un Ccs" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Nosūtīt vēstuli Ccs" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Nosūtīt vēstuli Ccs kā komentāru" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Nosūtīt vēstuli administratīvajiem Ccs" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Nosūtīt vēstuli administratīvajiem Ccs kā komentāru" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Nosūtīt vēstuli īpašniekam" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Sep" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Uzstādijumi" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "Vai RT sūtīt jums e-pastu ja ir pieprasījumā izmaiņas?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Rādīt" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Rādīt kolonas:" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Rādīt rezultātus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Rādīt pieprasījumu uzstādījumus %1 līmenī" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Rādīt apstiprinātos uzdevumus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Parādīt kā arī" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Parādīt pamatus" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Parādīt noraidītos pieprasījumus" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Rādīt detaļas" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Rādīt lika komantārus" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Radīt vecāko vēsturi pirmo" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Rādīt gaidošos pieprasījumus" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Rādīt pieprasījumus kuri gaida citu aprstiprinājumus" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Šrederis" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Sānjosla" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Parakstīt" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Parakstīt pēc noklusējuma" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Paraksts" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Pierakstīšanās neaktīva" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Pierakstīšanās aktīva" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Vienkārša meklēšana" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Viens" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Saita nosaukums" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Izmērs" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Izlaist Izvēlni" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Izlaist neaktīvo lietotāju" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Mazs" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Radusies kļūda. Kontaktēties ar administratoru" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Kārtot" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Kārtošana" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Avots" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Norādi vai jāpalaiž ikdienā vai reizi nedēļā" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Tabullapa" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Iesākta" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Sākas" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Statuss" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Stāvoklis" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Statusa maiņa" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Statuss mainīts no %1 uz %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Zagt" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Zagt pieprasījumus" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Solis %1 no %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Nozagts no %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Nozagts no %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stils" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Temats" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Temata tegs" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Temats mainīts uz %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Temata tegs mainīts uz %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Nosūtīt" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Pierakstīties" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Pierakstīties panelī %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Pierakstīties panelī" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Parakstījies uz paneli %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Parakstīšanās" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Parakstīšanās netika veikta: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Veiksmīgi atšifrēti dati" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Veiksmīgi šifrēti dati" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Svētd." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Svētdiena" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "Sisadmins" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Iesaldēts" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Sistēmas konfigurācija" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Sistēmas paneļi" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Sistēmas noklusētais" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Sistēmas kļūda" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Sistēmas kļūda: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Sistēmas rīki" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Sistēmas kļūda. Tiesības nav deleģētas." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Sistēmas kļūda. Nav tiesību." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Sistēmas grupas" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Sistēmas tiesības" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup iekšējai lietošanai" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Paņemt" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Paņemt pieprasījumus" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Paņemts" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Šablons:" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Šablons #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Šablons #%1 dzēsts" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Šablons '%1' nav atrasts" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Šablons ir tukšs" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Šablons ir obligāts arguments" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Šablons apvienots" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Šablona apvienošanas kļūda" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Šabloni" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Teksta fails netiks parādīts, jo funkcija aizliegta uzstādījumos" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Tas jau ir tekošā vērtība" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Šī nav vērtība šim laukam" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Tas ar tādu pašu vērtību" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "šāds pamats jau ir %1 šīm pieprasījumam" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "šāds pamats nav %1 šīm uzdevumam" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "šāds pamats nav %1 šīm pieprasījumam" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "šāds uzdevums neeksistē" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "šim pieprasījumam ir neatrsinātas atkarības" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Šim lietotājam jau pieder šis pieprasījums" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Šāds lietotājs neeksistē" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Šis lietotājs jau ir priveliģēts" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Šis lietotājs jau ir nepriveliģēts" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Šis lietotājs tagad ir priveliģēts" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Šis lietotājs tagad ir nepriveliģēts" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Šim lietotājam nav savu pieprasījumu šajā uzdevumā" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Tas nav numerisks id" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Pamati" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Pieprasījuma CC" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "DB'a datubāzes parole" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Pieprasījuma administratīvā CC" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Domēna vārds datubāzes serverim (piem. 'db.example.com')." #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Sekojoša komanda sameklēs aktīvos pieprasījumus uzdevumā 'General' un uzliks prioritāti 99 ja tie nav aiztikti 4 stundas:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Sekojoši pieprasījumi tiks dzēsti un katrs tiks noņemts no paneļa kad panelis tiks atjaunināts." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Sekojoši uzdevumi varbūt netiks visiem lietotājiem, kuri var skatīties šo paneli" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Atslēga tiks liegta" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Atslēga tiks anulēta" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Atslēgas termiņš beidzies" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Atslēga ir uzticama" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Atslēga pilnīgi uzticama" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Jaunā vērtība uzstādīta" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Pieprasījuma īpašnieks" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Pieprasītā lapa nav atrasta" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Pieprasījuma pasūtītājs" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Izvēlētie uzstādījumi saglabāti %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Sistēma nevar apstiprināt izejošo e-pastu. Tas liecina, ka, vai passfrāze ir nepareiza, vai GPG aģents nedarbojas. Paziņjiet sistēmas adminam. Problēmas adrese ir:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tēma" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Ir vairākas atslēgas derīgas šifrēšanai." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "ir neizlasītas vēstules šajā pieprasījumā" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Šaj atslēgai ir nepilna uzticība" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Nav piemērotas atslēgas šifrēšanai" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Ir viena piemērota atslēga, bet uzticības līmenis nav uzlikts." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Pamatā šie komentāri nebūs redzami lietotājiem" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Šīs konfigurācijas opcijas pārsedz pamatus, kuri nepieciešami li RT palaistos un strādātu. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "šis lauks neuzliksies šajā objektā" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Šī iespēja atļauta tikai sistēmas adminam" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Tas nozīmē ka direktorija '%1' nav rakstāma vai DB tabula neekstistē vai ir bojāta." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Vēstule tiks nosūtīta ..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Šis rīks atļauj lietotājam palaist Perl moduļus no RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Šāds darījums parādās bez satura" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Šā lietotāja %1 augstākās prioritātes pieprasījumi" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Ceturtd." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Ceturtdiena" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Pieprasījums" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Pieprasījums #%1 Jumbo labojums: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Pieprasījuma #%1 grafiks" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Pieprasījums #%1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Pieprasījums #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Pieprasījums %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Pieprasījums %1 izveidots uzdevumā '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Pieprasījums %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Pieprasījuma dažādie lauki" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Pieprasījuma vēsture # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Pieprasījums atrisināts" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Meklēt pieprasījumu" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Darbības ar pieprasījumu" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Pieprasījuma saturs" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Pieprasījuma satura tips" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Pieprasījums nav izveidots iekšējas kļūdas dēļ" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Pieprasījums nav ielādēts" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Pieprasījumu displejs" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Pieprasījuma Metadati" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Pieprasījuma statuss mainīts" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "PieprasījumaSQL meklēšanas modulis" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Pieprasījumi" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Pieprasījumi %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Pieprasījumi %1 no %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Pieprasījumi veidoti pēc" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Pieprasījumi veidoti pirms" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Pieprasījumi atrisināti pēc" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Pieprasījumi atrisināti pirms" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Pieprasījumi piederoši šim apstiprinājumam" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Aprēķinātais laiks" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Atlikušais laiks" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Risinājuma laiks" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Laiks ko parādīt" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Laika josla" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Titls" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Līdz" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Ar jautājumiem par palīdzību, pamācību utt., kontaktēties ar %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Teica" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Rīki" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Kopā" #: etc/initialdata:249 msgid "Transaction" msgstr "Darījumi" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Darījums %1 iztīrīts" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Darījums veikts" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Darījuma dažādi lauki" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Darījums->Veikt, nepareizs jo nav norādīts objekta tips un id" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Darījums ir nemainīgs" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Uzticamība" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Otrd." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Otrdiena" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tips" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Tips mainīts no '%1' uz '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Nevar noteikt objekta tipu vai id" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Nevar parakstīties uz paneli %1: Pieeja liegta" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Nerealizēts" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "unix logins" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Nezināms (nav piešķirta ticama vērtība)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Nezināms (vērtība ir jauna sistēmai)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Nezināma Satura šifrēšana %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Nezināms lauks: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Nelimitēts" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Nelimitēts" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "bezvārda meklēšana" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Nepriviliģēts" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Neatlasīti Cust. lauki" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Neatlasīti objekti" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Nepiešķirta privātā atslēga" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Nepaņemts" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Jaunināt" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Jaunināt grafiku" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Jaunināt Pieprasījumu" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Jaunināt Tipu" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Jaunināt formātu un meklēt" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Jaunināt vairākus pieprasījumus" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Jauninājums nav ierakstīts." #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Jaunināt Pieprasījumu" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Jaunināt pieprasījumu #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Jaunināt Pieprasījumu #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Atjaunošanas veids nebija ne korespondence, ne komentārs." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Atjaunināts" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Jaunināts saglabāts meklējums \"%1\"" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Ielādēt" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Ielādēt vairākus failus" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Ielādēt vairākas bildes" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Ielādēt vienu failu" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Ielādēt vienu bildi" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Ielādēt līdz pat %1 failiem" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Ielādēt līdz pat %1 bildēm" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Ielādēt jūsu izmaiņas" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Pielietojums: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Lietot SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Lieto css lai rādītu tekstu formatētu ar rindu pārnešanu. Tas nestrādā korekti ar IE6." #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Lietot noklusēto (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Lietot citus RT administrēšanas rīkus" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Lietot sistēmas noklusēto (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Lietot šo lai aizsargātu teksta formātu" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Lietotājs" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Lietotājs '%1' nav atrasts" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Lietotājs (izveidots - noilgums)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Lietotāja definēts" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Lietotāja definēti nosacījumi un darbības" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Lietotāja tiesības" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Lietotājs pieprasīja nezināmu jauninājuma tipu cust.laukam %1 dēļ %2 objektam #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Nevar izveidot lietotāju %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Lietotājs izveidot" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Lietotāja definētās grupas" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Lietotājs atslēgts" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Lietājs pieslēgts" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Lietotājam nenorādīta E-pasta adrese" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Lietotājs ielādēts" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Lietotāju GnuPG atslēgas" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Lietotāju-definētas grupas" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Lietotājvārds" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Lietotājvārda formāts" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Lietotāji" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Filtrējot sameklētie lietotāji" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Lietot darbību #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Pārbaudīt uzdevumu" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Pārbaudīšana" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Vērtība" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Vērtības" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Mainīgais" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Dažādas RT atskaites" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Versija" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Skatīt šīs grupas paneļus" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Skatīt personāla paneļus" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Skatīt sistēmas paneļus" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "WYSIWYG editora augstums" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG vēstuļu editors" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Uzmanību! NAV parakstīts!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Uzmanību! Nav norādīta E-pasta adrese, dašbords netiks nosūtīts!" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Skatīt" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "SkatītKāAdminCc" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Skatītājs" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "SkatītājuGrupa" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Skatītāji" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Web ports" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Trešd." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Trešdiena" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Nedēļas apskats" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Sveicinām RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Ko es šodien izdarīju" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Kas ir RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Kad RT nevar paņemt epasta vēstuli, kam to pārsūtīt?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Kad RT sūta epastu tiek norādīts NO: un Atbildēt: apraksti lai lietotājs varētu sarakstīties vienkārši nospiežot Reply. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Kad pieprasījums ir izveidots" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Kad pieprasījums ir apstiprināts, ziņot īpašniekam un AdminCc, ka ieraksts gaida viņu apstiprinājumu." #: etc/initialdata:110 msgid "When anything happens" msgstr "Kad kaut kas noticis" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Kad tiek nospiests 'Pārbaudīt Datubāzes sakarus' var paeiet brīdis kamēr RT mēģinās savienoties ar datubāzi" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Kad vien pieprasījums ir slēgts" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Kad vien pieprasījums ir atteikts" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Kad vien pieprasījums ir atvērts par jaunu" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Kad vien pieprasījums ir atrisināts" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Kad vien pieprasījumiem mainās īpašnieki" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Kad vien pieprasījumiem mainās prioritāte" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Kad vien pieprasījumiem mainās uzdevums" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Kad vien pieprasījumiem mainās statuss" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Kad vien pieprasījumiem mainās lietotāju darbības" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Kad vien parādās komentāri" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Kad vien parādās korespondence" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Kur meklēt sendmaila datu failus." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Notīrīt" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Darbs" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "DarbaTelefons" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Strādāts" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Jā" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Jums jau pieder šis pieprasījums" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Jūs gribat šifrēt izejošās vēstules, bet ir problēma ar saņēmēja publisko atslēgu. Risiniet problēmu ar atslēgām, atspēkojiet sūtīšanu ar atslēgu vai šifrēšanu." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Jūs gribat šifrēt izejošās vēstules, bet ir problēma ar saņēmēja publisko atslēgu. Risiniet problēmu ar atslēgām, atspēkojiet sūtīšanu ar atslēgu vai šifrēšanu." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Jūs neesat autorizēts lietotājs" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Jūs varat iet uz pirmo nelasīto vēstuli vai iet uz pirmo vēstuli un atzīmēt visas vēstules kā izlasītas." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Jūs pats varat atlasīt meklēšanas kritērijus" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Jūs nevarat piešķirt paroli." #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Jūs varat pārsūtīt pieprasījumus kas jums pieder, vai tiem nav īpašnieka" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Jūs varat paņemt pieprasījumus kuriem nav īpašnieka" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Jums nav SuperUser tiesību." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Jūs atradāt %1 pieprasījumus uzdevumā %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Jūs izgājāt no RT" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Jums nav tiesību veidot pieprasījumus šajā uzdevumā" #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Jūs nevarat veidot pieprasījumus šajā uzdevumā" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Nepieciešams ievadīt Administatora paroli" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Jūs pārsūtīs uz login lapu. Varēsiet ieiet ar lietotājvārdu %1 un agrāko paroli" #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Jūs pārsūtīs uz login lapu. Varēsiet ieiet ar lietotājvārdu root un agrāko paroli" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "You should choose the database you or your local database administrator is most comfortable with." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Sveicināts atkal ielogoties" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Jūsu tekošā parole" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "parole nav uzlikta" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Nepareizs lietotājvārds vai parole" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Zip" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Lejup]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Augšup]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nekas]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "pieliec 
 tegu virs teksta pielikumiem"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "pēc"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "atļaut saglabāto meklējumu izveidi"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "atļaut saglabāto meklējumu ielādi"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "kā tiesīgs uz %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "rinda"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "pirms"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "Apakšējais uz augšu"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "Atķeksēt lai uzlliktu šo lauku visiem objektiem."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "Atķeksēt lai noņemtu lauku no visiem objektiem un atālut izvēlēties specifiskus objektus."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "Atķeksēt lai pieliktu"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "Spiest lai uzreiz pieliktu/noņemtu visus objektus"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "Aizvērts"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "īss"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "Pamatu konfigurācija"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "custom lauks '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "ikdienas"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "katru dienu %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dienas"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "dzēsts"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "parādīt formatētu tekstu pielikumus"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "nesakrīt"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "lejuplādēt"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "vienāds ar"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "kļūda: navar pārlikt lejup"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "kļūda: navar pārlikt pa kreisi"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "kļūda: navar pārlikt augšup"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "kļūda: nav ko dzēst"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "kļūda: nav ko pārlikt"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "kļūda: nav ko pārcelt"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "katru"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "Veiksmīgi izpildīts plugins"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "pilns"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "lielāks kā"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "Grupa '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "stundas"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "ir"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "nav"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "Atslēga atspēkota"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "Atslēga noilgusi"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "Atslēga anulēta"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "kreiso uz labo"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "mazāks par"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "ierobežots"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "sakritības"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maksimālais dziļums"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minūtes"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "ikmēneša"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "ikmēnaša (diena %1) at %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "mēneši"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "nekad"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "Jauns"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "Nē"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "bez nosaukuma"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "nekas"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "nav vienāds ar"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nekas"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "Objekti veiksmīgi noņemti"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "uz"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "dienā"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "viens"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "atvērt"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "Atvērt/Aizvērt"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "cits..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "Personāla grupa '%1' lietotājam '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "pie"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "plugins atgrieza tukšu sarakstu"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "uzdevums %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "noraidīts"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "atrisināts"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "labo pa kreisi"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "skatīt zemāk norādīto objektu"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "Rādīt Apstiprinājumu tabu"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "Rādīt konfigurāciju tabu"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "Saita konfig"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "Neizdevās"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "Savilkuma rindas"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "Sistēma %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "Sistēmas grupas '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "Izsaucamais komponents nenorāda kādēļ"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "Noklusētās adreses kas parādīsies From: un Reply-Tu: laukā komentējamā pastā"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "Noklusētās adreses kas parādīsies From: un Reply-Tu: laukā korespondencē"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "Pieprasījums #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "Augšējo uz apakšu"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "Pilnīga"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "Neparakstīta grupa %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "neierobežots"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "lietotājs %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "runīgs"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "ik nedēļu"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "ik nedēļu (%1) %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "nedēļas"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "kuru portu Jūsu tīmekļa serveris klausīsies, piem., 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "ar hederiem"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "gadi"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "jā"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/mk.po0000664000175000017500000076702412262650742013761 0ustar  chmrrchmrr# Macedonian translation for rt
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:27+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: Macedonian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:12+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "Бр."

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr ""

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr ""

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr ""

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr ""

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr ""

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr ""

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr ""

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 додадено"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 пред"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 сменето во %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 избришано"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 избришано."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 зачувано."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 ажурирано"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 дефиниран со %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) до %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Непроменето)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (од панел %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Подеси LogToScreen конфиг опцијата"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Аргумент да се предаде на %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Ажурирање на излезниот статус во STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Наведи дали сакате да користите или прва, последена или сите трансакции"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Наведи име или id на темплејтот"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Наведи го акциониот модул"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Наведи ги типовите на трансакции разделени со запирка"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr ""

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Наведи го модулот за пребарување"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Сите права задржани 1996-%3 %4"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 додадено како вредносст за %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 веќе постои и RT има табели но не содржат метаподатоци. Со следниот чекор ’Иницијализација на Датабазата’ може да се инсертираат медаподатоци во постоечката датабаза. Ако ова е прифатливо кликнете ’Основно Прилагодување’ да продолжите со прилагодување на RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 веќе постои, но не содржи RT табели или метаподатоци. Со следниот чекор ’Иницијализација на Датабазата’ може да се инсертираат медаподатоци во постоечката датабаза.  Ако ова е прифатливо кликнете  ’Основно Прилагодување’ да продолжите со прилагодување на RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 се чини дека е локален објект, но не може да биде најден во базата на податоци"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 се чини дека е потполно иницијализиран. Нема потреба од креирање на нови табели или инсетирање на мета податоци. Може да продолжите со прилагодување на RT со кликање на ’Основно Прилагодување’"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 од %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 сменето од %2 во %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 сменето од '%2' vo '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 копија"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 основен конфиг"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 не може да се намести во %2"

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 креирано"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 избришано"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 оневозможено"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr ""

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 овозможено"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 мои тикети со највисок приоритет"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr ""

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 е адреса на која RT прима маил пораки. Доколку се додаде како '%2' може да направи loop циклус."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 не е повеќе %2 за овој тикет."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 не е повеќе вредност за посебното поле %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1 нема валиден животен циклус"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 мин"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 најчесто ажурирани артикли"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 најнови артикли"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr ""

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 објект"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 ажурирање: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 ажуриран: Нема промена"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 ажуриран"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1 %2 објекти"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1 %2 %3 објекти"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1 GnuPG клучеви"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1 моментална лозинка"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1 контролна табла"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1 зачувани пребарувања"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr ""

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr " %1"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1б"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1м"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1с"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%quant(%1,артикал)"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,саат)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' е невалидна вредност за статусот"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' не е валиден идентификатор на класа"

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "’Улоги’"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "’Систем’"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "’Кориснички Групи’"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "’Корисници’"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Штиклирај да завршиш !!)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Штиклирај за бришење)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Штиклирај ги за бришење)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Внеси id или URL на тикетот, одвоени со спејс)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Доколку е оставено празно, стандардно ќе биде %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Нема посебни (custom) полиња)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Нема членови)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Нема скрипти)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Нема темплејти)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Ништо)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr ""

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Нема да се испрати маил)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(билокое)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(без име)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(нема јавен клуч!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(нема вредност)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(нема вредности)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(само еден тикет)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(во очекување %quant(%1,друг тикет))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(се очекува одобрување)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(задолжително)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(без наслов)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(недоверлив!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transaction е аргумент кој може да биде само ’прв’, ’последен’ или ’сите’"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr "<% $field->{'име'} %>"

#: NOT FOUND IN SOURCE
msgid "<%$Action%> here"
msgstr "<%$Action%> овде"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "%1 - %2s"
msgstr "%1 - %2с"

#: etc/initialdata:215
msgid "A blank template"
msgstr "Празен темплејт"

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr "Лозинката не е наместена, корисникот нема да може да се најави."

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr "ACE не е пронајден"

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr "ACEs може само да бидат креирани или избришани."

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "И"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "За мене"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "Контрола на пристап"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "Акција"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr "Акција ’%1’ не е пронајдена"

#: bin/rt-crontool:228
msgid "Action committed."
msgstr "Акцијата потврдена."

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr "Акцијата е мандаторен аргумент"

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr "Акцијата е спремна"

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr "Акции"

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr "Активни Тикети"

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr "Додај %1"

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "Додади AdminCc"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr "Додади обележувач"

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "Додади Cc"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr "Додади Колони"

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr "Додади Критериуми"

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "Додади повеќе фајлови"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr "Додади Вредност"

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr ""

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "Додади коментар или одговор на избраните тикети"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr "Додади група"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr ""

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr "Додади членови"

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "Додади нови набљудувачи"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr "Додади права за овој %1"

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr "Додади ги овие термини"

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr "Додади ги овие термини и Пребарај"

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr "Додади корисник"

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr "Додади вредности"

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr ""

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr "Адреса"

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr "Адреса 2"

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "Адреса1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "Адреса2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr "Админ Cc"

#: etc/initialdata:292
msgid "Admin Comment"
msgstr "Админски Коментар"

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr "Админски Коресподенс"

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr ""

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr ""

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr "АдминЦЦГрупа"

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr "АдминЦЦ"

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr "АдминЦЦс"

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr "АдминКласа"

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr "АдминПосебноПоле"

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr "АдминПосебнаВредносНаПоле"

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr "АдминГрупа"

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr "АдминЧленствоВоГрупа"

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr "АдминНишка"

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr "АдминТеми"

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr "АдминКорисници"

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr "Административен Цц"

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr "Административна лозинка"

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "Напредни"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr "Напредно пребарување"

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr ""

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr "Агрегатор"

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr "Сите одобрениа предадени"

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr "Сите Класи"

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr "Сите Контролни Табли"

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr "Сите нишки (queue)"

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr "Сите Тикети"

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr ""

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr "Сите Тикети"

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr "Сите Теми"

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr "Дозволи креирање на зачувани пребарувања"

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr "Дозволи вчитување на зачувани пребарувања"

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr "Дозволи пишување на perl код во темплејти, скрипти и сл"

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr "Веќе енкриптирано"

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "И/Или"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr "Било кое поле"

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr "Применета"

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "Применета за"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr "Применета за сите објекти"

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "Примени"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr "Примени глобално"

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "Примени ги промените"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "Одобрување"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr "Одобрено #%1: %2"

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr "Одобрено #%1: Белешките не се снимени поради системски проблем"

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr "Одобрено #%1: Белешките снимени"

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr ""

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr "Одобреното Спремно за Сопственикот"

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr "Одобрувањето Отфрлено"

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr "Дозволи"

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr "Арп"

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr "Дали сте сигурни дека сакате да го избришете овој артикал?"

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr "Акртикал #%1 е избришан"

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr "Артикал #%1: %2"

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr "Артикал %1"

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr "Артикал %1 креиран"

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr "Администрација на Артикли"

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr "Артикалот е избришан"

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr "Артикалот не е пронајден"

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr "Артикли"

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr "Артикли во %1"

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr "Артикалот се совпаѓа со %1"

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr "Артикли без тема"

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr "Асц"

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "Растечки"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr ""

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr "ДоделиПосебниПолиња"

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "Прикачи"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr "Прикачи фајл"

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "Атачиран фајл"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr "Додаток"

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr "Додатокот ’%1’ не може да биде вчитан"

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "Додатокот креиран"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "Име на фајлот на додатокот"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "Додатоци"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr "Енкрипција на додатоците е оневозможена"

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr "Атрибутот е избришан"

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr "авг"

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr ""

#: etc/initialdata:218
msgid "Autoreply"
msgstr "Автоматски одговор"

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr "Автоматски одговор до бараталите"

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr "Достапен"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr "Назад"

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "Основи"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr "Bcc"

#: etc/initialdata:214
msgid "Blank"
msgstr "Празно"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr "Тело"

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "Здебелено"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr "Обележи"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr "Обележувачки линк за ова пребарување"

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr "Обележани Тикети"

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr "Обележани Тикети"

#: NOT FOUND IN SOURCE
msgid "Brief headers"
msgstr "Кратко заглавје"

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr "Барај по тема"

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr "Барај по SQl кверијата"

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr "Масовно Ажурирање"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr "ЦЦГрупа"

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr "CF"

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr "Не може да го вчита зачуваното пребарување \"%1\""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr "Не може да се променат системските корисници"

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr "Не може да се додаде вредност во посебното поле без име"

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr ""

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr "Не може да се линкува тикет самиот себе си"

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr "Не може да зачува %1"

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "Не може да се зачува ова пребарување"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr ""

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr "Неможе да се додаде линк/врска во обичен број"

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr "Категории базирани на"

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr "Категорија"

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "Cc"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr "CCs"

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr "Промена"

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "Промени лозинка"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr "Табела"

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr "Својства на табела"

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "Штиклирај ги сите"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr ""

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr "Штиклирај за бришење"

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr "Штиклирај за одземање право"

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "Деца"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr "Избери од Тема за %1"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "Град"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr "Класа"

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr "Име на класа"

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr ""

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr "id на класа"

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr "Класата е веќе применета глобално"

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr "Класата е веќе применета во %1"

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr "Класи"

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr "Исчисти"

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "Исчисти сѐ"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr ""

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr ""

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "Затворено"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr "Затворени тикети"

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr "Combobox: Избери или внеси повеќе вредности"

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr "Combobox: Избери или внеси една вреднос"

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr "Combobox: Избери или внеси до %1 вредност"

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "Коментар"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr "Адреса на коментраот"

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr "Адресан на коментарот"

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr "Коментар на тикетот"

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr "КоментарНаТикет"

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "Коментари"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "Коментари (не испратени до барателите)"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr "Коментар во врска со овој корисник"

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "Коментарот е додаден"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr "Коментарот е испратен"

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "Состојба"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr "Состојбата ’%1’ не е пронајдена"

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr "Состојбата е мандаторен аргумент"

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr "Состојбата се совпаѓа..."

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr ""

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr "Конфиг фајлот %1 е заштитен"

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "Конфигурација"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr "Конфигурација за нишка %1"

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr "Конекцијата е успешна"

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "Содржина"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr ""

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr "Тип на содржина"

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr "ТипНаСодржина"

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr "Адреса за коресподенција"

#: etc/initialdata:283
msgid "Correspondence"
msgstr "Коресподенција"

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr "Коресподенцијата е додадена"

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr "Не може да се додаде нова вредност за посебно (custom) поле: %1"

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr "Не може да се смени сопственикот: %1"

#: NOT FOUND IN SOURCE
msgid "Could not create CustomField"
msgstr "Не може да се креира ПосебноПоле (CustomField)"

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr "Не може да се креира ПосебноПоле  (CustomField): %1"

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr "Не може да се креира група"

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr "Не може да се креира пребарување: %1"

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr "Не може да се креира темплејт: %1"

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr "Не може да се креира тикет. Нишката (queue)"

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr "Не може да се креира корисник"

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr "Не може да се избрише пребарувањето %1: %2"

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr "Не може да се пронајде или креира тој корисник"

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr "Не може да се пронајде тој управител"

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr "Не може да се вчита атрибутот %1"

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr "Не може да се вчита кластата %1"

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr "Не може се вчита ПосебноПоле (customField) %1"

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr "Не може да вчита групата"

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr "Не може да се вчита објектот за %1"

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not make that principal a %1 for this ticket"
msgstr "Не може да се направи тој управител %1 за овој тикет"

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not remove that principal as a %1 for this queue"
msgstr "Не може да се избрише тој управител %1 за оваа нишка (queue)"

#: NOT FOUND IN SOURCE
msgid "Could not remove that principal as a %1 for this ticket"
msgstr "Не може да се избрише тој управител %1 за овој тикет"

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr "Не може да се намести инфо за корисникот"

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr "Неможе да се прикачи додатокот"

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr "Не може да се додаде член во групата"

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr "Не може да се креира трансакција: %1"

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr "Не може да се креира запис: %1"

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr "Не може да се избрише контролната табла %1: %2"

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr "Не може да се пронајде тој ред"

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr "Не може да се пронајде тој управител"

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr "Не може да се пронајде таа вредност"

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr "Не може да се вчита Класата %1"

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr ""

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr ""

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr "Не може да се вчита контролната табла %1: %2"

#: NOT FOUND IN SOURCE
msgid "Couldn't load dashboard %1: %2."
msgstr "Не може да се вчита контролната табла %1: %2."

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr "Не може да се вчита групата #%1"

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr "Не може да се вчита групата %1"

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr "Не може да се вчита врската"

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr "Не може да се вчита објекото %1"

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr "Не може да се вчита или креира корисник: %1"

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr ""

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr "Не може да се вчита нишката (queue) #%1"

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr "Не може да се вчита нишката  (queue) %1"

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr "Не може да се вчита нишката ’%1’"

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr ""

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr "Не може да се вчита потенцираниот управител"

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr "Не може да се вчита тикетот ’%1’"

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr "Не може да се вчита темата за членство додека се брише"

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr "Не може да се вчита трансакцијата #%1"

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr "Не може да се вчита корисникот"

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr "Не може да се вчита корисникот #%1"

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr "Не може да се вчита корисникот #%1 или корисникот '%2'"

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr "Не може да се вчита корисникот '%1'"

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr "Не може да се парсира адресата од '%1' стрингот"

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr "Не може да се замени содржината со декриптираните податоци: %1"

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr "Не може да се замини содржината со енкриптираните податоци: %1"

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr "Не може да се ресолвира '%1' во Врска/линк"

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr "Не може да се ресолвира '%1' во УРЛ"

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr "Не може да се ресолвира базата '%1' во УРЛ"

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr "Не може да се ресолвира целта '%1' во УРЛ"

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr "Не може да се испрати маилот/поракта"

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr "Не може да се намести %1 набљудувач: %2"

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr "Не може да се намести приватен клуч"

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr "Не може да се размести приватниот клуч"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "Земја"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "Креирај"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "Креирај Тикети"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr "Креира Класа"

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr ""

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr "Креирај нов артикал"

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr "Креирај нов артикал во"

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr "Креирај нова контролна табла"

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "Креирај нова група"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr "Креирај нов темплејт за нишката (queue) %1"

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "Креирај нов тикет"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "Креирај нов корисник"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr ""

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr "Креирај скрип за нишка (queue) %1"

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr "Креирај темплејт"

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr "Креирај тикет"

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr "Креирај артикал"

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr "Креирај артикал во класата..."

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr "Креирај артикли во оваа класа"

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr "Креирај група на контролни табли"

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr "Креирај персонална контролна табла"

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr "Креирај системска контролна табла"

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr "Креирај тикет"

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr "Креирај тикети"

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr "Креирај, модифицирај и бриши записи од Листата за Контрола на Пристап"

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr ""

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr "Креирај, модифицирај и бриши зачувани пребарувања"

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr "Креирај, модифицирај и бриши корисници"

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr "КреирајАртикал"

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr "КреирајКонтролнаТабла"

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr "КреирајГрупаНаКонтролниТабли"

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr "КреирајСопственаКонтролнаТабла"

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr "КреирајЗачуваноПребарување"

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr "КреирајТикет"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "Креирано"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr "Креирано од"

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr "Креирано посебноПоле (CustomField) %1"

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr "Креирано од"

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr "Креирано од %1"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr "КреидраноОд"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr "КреираноРелативно"

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr "Креатор"

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr "Криптографија"

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "Тековни Врски"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr ""

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr "Тековно Пребарување"

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr "Тековни членови"

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr "Тековни права"

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr "Тековно пребарување"

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr "Тековни набљудувачи"

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr ""

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr ""

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr "Посебни полиња за нишка (queue) %1"

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr "Посебни акција „чистење на код“"

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr "Посебна акција подготовка на код"

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr "Посебен услов"

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr "Посебно поле #%1 не е применето на овој објект"

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr "Посебно поле %1 %2 %3"

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr "Посебно поле %1 не се применува на овој објект"

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr "Посебно поле %1 има вредност."

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr "Посебно поле %1 нема вредност."

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr "Посебно поле %1 не е најдено"

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr "Посебно поле '%1'"

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr "Посебно поле е веќе применето на објектот"

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr "Посебно поле со вредност %1 неможе да биде пронајдено за посебното поле (custom field) %2"

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr "Вредност на посебно поле не може да биде избришана"

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr "Вредноста на посебно поле не може да се пронајде"

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr "Вредноста на посебното поле е избришана"

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr "ПосебноПоле"

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr "ВредностНаПосебноПоле"

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr "Прилагоди"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr "Основни Прилагодувања"

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr "Прилагоди ја Емаил Адресата"

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr "Прилагоди ја Емаил Конфигурацијата"

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr "Прилагоди го изгледот на твојот RT"

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr "ДБА лозинка"

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr "ДБА корисничко име"

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr ""

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr ""

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr ""

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr "Контролната табла не може да биде креирана: %1"

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr "Контролната табла не може ажурирана: %1"

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr "Контролната табла е ажурирана"

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr "Контролна табла"

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr "Хост на базата на податоци"

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr "Име на базата на податоци"

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr "Лозинка на базата на податоци за RT"

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr "Порта на базата на податоци"

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr "Тип на база на податоци"

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr "Корисничко име за базата на податоци за RT"

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr "Формат на датумот"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "Датуми"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr "Дек"

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr "Дектриптирање"

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr "Стандарден Autoresponse темплејт"

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr "Стандардна нишка (queue)"

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr "Стандарден барател"

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr "Стандарден администраторски темплејт за коментар"

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr "Стандарден администарторски темплејт за коресподенција"

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr "Стандарден темплејт за коресподенција"

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr "Стандардена нишка (queue)"

#: etc/initialdata:250
msgid "Default transaction template"
msgstr "Стандарден темплејт за трансакција"

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr "Стандарден: %1"

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr "Стандарден: %1/%2 сменет од %3 во %4"

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr "СтандарденФормат"

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "Избриши"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr "Избриши го темплејтот"

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr "Избриши го артикалот #%1"

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr "Избриши ги артиклите во оваа класа"

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr "Бришењето е неуспешно: %1"

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr "Операцијата бриши е оневозможена од lifecycle конфигурацијата"

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr "Избриши ја персоналната контролна табла"

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr "Бриши ги означените scrips"

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr "Избриши ја системската контролна табла"

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr "Бриши тикети"

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr "Бриши вредности"

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr "ИзбиршиАртикал"

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr "ИзбришиКонтролнаТабла"

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr "ИзбришиГрупаНаКонтролниТабли"

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr "ИзвришиСопственаКонтролнаТабла"

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr "БришиТикет"

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr "Избришан %1"

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr "Избришан прашалник"

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr "Избришано сочувано пребарување"

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr "Избришано пребарување %1"

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr "Бришењето на овој објект ќе го прекриши рефернцијалниот интегритет"

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr "Бришењето на овој објеќт ќе го прекрши интегритетот"

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr "Одбиј"

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "Зависно од"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr "ЗависноОд"

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr "Додадена зависност од %1"

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr "Избришена зависност од %1"

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr ""

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr ""

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr ""

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr ""

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr ""

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr ""

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr ""

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr ""

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr ""

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr ""

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr ""

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr ""

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr ""

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr ""

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr ""

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr ""

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr ""

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr ""

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr ""

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr ""

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr ""

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr ""

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr ""

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr ""

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr ""

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr ""

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr ""

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr ""

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr ""

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr ""

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr ""

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr ""

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr ""

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr ""

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr ""

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr ""

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr ""

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr ""

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr ""

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr ""

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr ""

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr ""

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr ""

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr ""

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr ""

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr ""

#: bin/rt-crontool:356
msgid "Example:"
msgstr ""

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr ""

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr ""

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr ""

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr ""

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr ""

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr ""

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr ""

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr ""

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr ""

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr ""

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr ""

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr ""

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr ""

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr ""

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr ""

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr ""

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr ""

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr ""

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr ""

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr ""

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr ""

#: share/html/Elements/Tabs:651
msgid "First"
msgstr ""

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr ""

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr ""

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr ""

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr ""

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr ""

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr ""

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr ""

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr ""

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr ""

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr ""

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr ""

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr ""

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr ""

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr ""

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr ""

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr ""

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr ""

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr ""

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr ""

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr ""

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr ""

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr ""

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr ""

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr ""

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr ""

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr ""

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr ""

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr ""

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr ""

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr ""

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr ""

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr ""

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr ""

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr ""

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr ""

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr ""

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr ""

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr ""

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr ""

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr ""

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr ""

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr ""

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr ""

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr ""

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr ""

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr ""

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr ""

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr ""

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr ""

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr ""

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr ""

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr ""

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr ""

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr ""

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr ""

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr ""

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr ""

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr ""

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr ""

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr ""

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr ""

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr ""

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr ""

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr ""

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr ""

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr ""

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr ""

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr ""

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr ""

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr ""

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr ""

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr ""

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr ""

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr ""

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr ""

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr ""

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr ""

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr ""

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr ""

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr ""

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr ""

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr ""

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr ""

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr ""

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr ""

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr ""

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr ""

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr ""

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr ""

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr ""

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr ""

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr ""

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr ""

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr ""

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr ""

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr ""

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr ""

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr ""

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr ""

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr ""

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr ""

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr ""

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr ""

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr ""

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr ""

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr ""

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr ""

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr ""

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr ""

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr ""

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr ""

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr ""

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr ""

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr ""

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr ""

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr ""

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr ""

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr ""

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr ""

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr ""

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr ""

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr ""

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr ""

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr ""

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr ""

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr ""

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr ""

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr ""

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr ""

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr ""

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr ""

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr ""

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr ""

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr ""

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr ""

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr ""

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr ""

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr ""

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr ""

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr ""

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr ""

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr ""

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr ""

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr ""

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr ""

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr ""

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr ""

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr ""

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr ""

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr ""

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr ""

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr ""

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr ""

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr ""

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr ""

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr ""

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr ""

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr ""

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr ""

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr ""

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr ""

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr ""

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr ""

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr ""

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr ""

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr ""

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr ""

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr ""

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr ""

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr ""

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr ""

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr ""

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr ""

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr ""

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr ""

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr ""

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr ""

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr ""

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr ""

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr ""

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr ""

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr ""

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr ""

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr ""

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr ""

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr ""

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr ""

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr ""

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr ""

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr ""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr ""

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr ""

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr ""

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr ""

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr ""

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr ""

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr ""

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr ""

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr ""

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr ""

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr ""

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr ""

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr ""

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr ""

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr ""

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr ""

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr ""

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr ""

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr ""

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr ""

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr ""

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr ""

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr ""

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr ""

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr ""

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr ""

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr ""

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr ""

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr ""

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr ""

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr ""

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr ""

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr ""

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr ""

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr ""

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr ""

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr ""

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr ""

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr ""

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr ""

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr ""

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr ""

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr ""

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr ""

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr ""

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr ""

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr ""

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr ""

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr ""

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr ""

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr ""

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr ""

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr ""

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr ""

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr ""

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr ""

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr ""

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr ""

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr ""

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr ""

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr ""

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr ""

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr ""

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr ""

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr ""

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr ""

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr ""

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr ""

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr ""

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr ""

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr ""

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr ""

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr ""

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr ""

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr ""

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr ""

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr ""

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr ""

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr ""

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr ""

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr ""

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr ""

#: etc/initialdata:41
msgid "Notify Owner"
msgstr ""

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr ""

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr ""

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr ""

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr ""

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr ""

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr ""

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr ""

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr ""

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr ""

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr ""

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr ""

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr ""

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr ""

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr ""

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr ""

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr ""

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr ""

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr ""

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr ""

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr ""

#: etc/initialdata:143
msgid "On Comment"
msgstr ""

#: etc/initialdata:115
msgid "On Correspond"
msgstr ""

#: etc/initialdata:104
msgid "On Create"
msgstr ""

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr ""

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr ""

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr ""

#: etc/initialdata:172
msgid "On Queue Change"
msgstr ""

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr ""

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr ""

#: etc/initialdata:178
msgid "On Resolve"
msgstr ""

#: etc/initialdata:149
msgid "On Status Change"
msgstr ""

#: etc/initialdata:109
msgid "On Transaction"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr ""

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr ""

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr ""

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr ""

#: etc/initialdata:95
msgid "Open Tickets"
msgstr ""

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr ""

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr ""

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr ""

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr ""

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr ""

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr ""

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr ""

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr ""

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr ""

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr ""

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr ""

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr ""

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr ""

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr ""

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr ""

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr ""

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr ""

#: share/html/dhandler:48
msgid "Page not found"
msgstr ""

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr ""

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr ""

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr ""

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr ""

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr ""

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr ""

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr ""

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr ""

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr ""

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr ""

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr ""

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr ""

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr ""

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr ""

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr ""

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr ""

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr ""

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr ""

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr ""

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr ""

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr ""

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr ""

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr ""

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr ""

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr ""

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr ""

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr ""

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr ""

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr ""

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr ""

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr ""

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr ""

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr ""

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr ""

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr ""

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr ""

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr ""

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr ""

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr ""

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr ""

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr ""

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr ""

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr ""

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr ""

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr ""

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr ""

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr ""

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr ""

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr ""

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr ""

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr ""

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr ""

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr ""

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr ""

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr ""

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr ""

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr ""

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr ""

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr ""

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr ""

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr ""

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr ""

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr ""

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr ""

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr ""

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr ""

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr ""

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr ""

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr ""

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr ""

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr ""

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr ""

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr ""

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr ""

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr ""

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr ""

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr ""

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr ""

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr ""

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr ""

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr ""

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr ""

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr ""

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr ""

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr ""

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr ""

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr ""

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr ""

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr ""

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr ""

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr ""

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr ""

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr ""

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr ""

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr ""

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr ""

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr ""

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr ""

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr ""

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr ""

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr ""

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr ""

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr ""

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr ""

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr ""

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr ""

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr ""

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr ""

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr ""

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr ""

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr ""

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr ""

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr ""

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr ""

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr ""

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr ""

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr ""

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr ""

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr ""

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr ""

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr ""

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr ""

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr ""

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr ""

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr ""

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr ""

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr ""

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr ""

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr ""

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr ""

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr ""

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr ""

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr ""

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr ""

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr ""

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr ""

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr ""

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr ""

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr ""

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr ""

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr ""

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr ""

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr ""

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr ""

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr ""

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr ""

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr ""

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr ""

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr ""

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr ""

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr ""

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr ""

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr ""

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr ""

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr ""

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr ""

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr ""

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr ""

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr ""

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr ""

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr ""

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr ""

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr ""

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr ""

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr ""

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr ""

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr ""

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr ""

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr ""

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr ""

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr ""

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr ""

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr ""

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr ""

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr ""

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr ""

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr ""

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr ""

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr ""

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr ""

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr ""

#: etc/initialdata:307
msgid "Status Change"
msgstr ""

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr ""

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr ""

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr ""

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr ""

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr ""

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr ""

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr ""

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr ""

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr ""

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr ""

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr ""

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr ""

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr ""

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr ""

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr ""

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr ""

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr ""

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr ""

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr ""

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr ""

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr ""

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr ""

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr ""

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr ""

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr ""

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr ""

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr ""

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr ""

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr ""

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr ""

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr ""

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr ""

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr ""

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr ""

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr ""

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr ""

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr ""

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr ""

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr ""

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr ""

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr ""

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr ""

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr ""

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr ""

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr ""

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr ""

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr ""

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr ""

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr ""

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr ""

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr ""

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr ""

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr ""

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr ""

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr ""

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr ""

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr ""

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr ""

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr ""

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr ""

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr ""

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr ""

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr ""

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr ""

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr ""

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr ""

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr ""

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr ""

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr ""

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr ""

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr ""

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr ""

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr ""

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr ""

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr ""

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr ""

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr ""

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr ""

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr ""

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr ""

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr ""

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr ""

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr ""

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr ""

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr ""

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr ""

#: etc/initialdata:249
msgid "Transaction"
msgstr ""

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr ""

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr ""

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr ""

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr ""

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr ""

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr ""

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr ""

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr ""

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr ""

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr ""

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr ""

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr ""

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr ""

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr ""

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr ""

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr ""

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr ""

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr ""

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr ""

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr ""

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr ""

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr ""

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr ""

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr ""

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr ""

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr ""

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr ""

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr ""

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr ""

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr ""

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr ""

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr ""

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr ""

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr ""

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr ""

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr ""

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr ""

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr ""

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr ""

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr ""

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr ""

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr ""

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr ""

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr ""

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr ""

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr ""

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr ""

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr ""

#: lib/RT/User.pm:262
msgid "User created"
msgstr ""

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr ""

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr ""

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr ""

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr ""

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr ""

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr ""

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr ""

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr ""

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr ""

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr ""

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr ""

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr ""

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr ""

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr ""

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr ""

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr ""

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr ""

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr ""

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr ""

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr ""

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr ""

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr ""

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr ""

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr ""

#: etc/initialdata:110
msgid "When anything happens"
msgstr ""

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr ""

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr ""

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr ""

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr ""

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr ""

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr ""

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr ""

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr ""

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr ""

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr ""

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr ""

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr ""

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr ""

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr ""

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr ""

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr ""

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr ""

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr ""

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr ""

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr ""

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr ""

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr ""

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr ""

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr ""

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr ""

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr ""

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr ""

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr ""

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr ""

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr ""

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr ""

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr ""

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr ""

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr ""

#: lib/RT/Date.pm:346
msgid "hours"
msgstr ""

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr ""

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr ""

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr ""

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr ""

#: lib/RT/Queue.pm:83
msgid "new"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr ""

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr ""

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr ""

#: lib/RT/Date.pm:338
msgid "sec"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr ""

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr ""

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr ""

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr ""

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr ""

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr ""

#: lib/RT/Date.pm:362
msgid "years"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr ""

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/it.po0000664000175000017500000125533512262650742013764 0ustar  chmrrchmrr#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:43+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " %1 cancellato."

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 rinominato a %2"

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 salvato"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (nessuna chiave pubblica!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (non affidabile!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: NOT FOUND IN SOURCE
msgid "#%1"
msgstr "n°%1"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "n°%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 n°%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %3 %2 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "(%1 %3 %2 %6 %4:%5)"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3 %2 %7 %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "Aggiunto %1 %2"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 fa"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 cambiato in %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 eliminato"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 eliminato."

#: NOT FOUND IN SOURCE
msgid "%1 %2 of group %3"
msgstr "%1 %2 del gruppo %3"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 rinominato %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 salvato."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "aggiornato %1 %2."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 con il modello %3"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 questo ticket\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) da %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (invariato)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (dal riquadro %2)"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "Mostrati da %1 a %2"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Regola l'opzione LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Un parametro da passare a %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Visualizza aggiornamenti dello stato su STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Specificare l'id del modello da usare"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Specificare se si vuole usare la prima (first), l'ultima (last) o tutte (all) le transazioni"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Specifica nome o id del/dei template che vuoi usare"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Specificare l'azione da eseguire"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Specificare la lista dei tipi di transazione da utilizzare, separati da virgole"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Specificare la condizione da utilizzare"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Specificare la ricerca da utilizzare"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "Cruscotti del gruppo %1"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "ScripAction %1 caricato"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 aggiunto come valore di %2"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on"
msgstr "gli alias %1 necessitano di un TicketId su cui lavorare"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on "
msgstr "gli alias %1 necessitano di un TicketId su cui lavorare "

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on (from %2) %3"
msgstr "gli alias %1 necessitano di un TicketId per lavorare con (da %2) %3"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "Il database %1 esiste già e contiene le tabelle di RT, ma non contiene i metadati di sistema. Il passo 'Inizializza Database' può inserire i metadati mancanti all'interno del database esistente. Clicca 'Configurazione di base' qui sotto se vuoi continuare la configurazione."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "Il database %1 esiste già, ma non contiene le tabelle di RT e i necessari metadati di sistema. Il passo 'Inizializza Database' può creare le tabelle e inserire i metadati mancanti all'interno del database esistente. Clicca 'Modifica dati base' qui sotto se vuoi continuare la configurazione."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 sembra essere un oggetto locale, ma non è presente nel database"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "Il database %1 appare già correttamente inizializzato. Non è necessario creare tabelle o inserire metadati di sistema, ma puoi ugualmente cliccare 'Configurazione di base' qui sotto per completare la configurazione."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 da %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 cambiato da %2 a %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "grafico %1 ordinato per %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "copia di %1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "configurazione base %1"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 non può essere impostato a %2"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't init a transaction (%2)\\n"
msgstr "%1 non ha potuto iniziare una transazione (%2)\\n"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 non è stato possibile impostare lo stato a risolto. Il database RT potrebbe essere corrotto."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "creato %1"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "eliminato %1"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "disabilitato %1"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 non esiste."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "abilitato %1"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "I %1 ticket a maggior priorità che ho in carico"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "I %1 ticket a maggior priorità che ho in carico..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 è uno strumento per agire sui ticket da uno schedulatore esterno, per esempio cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 è uno strumento pensato per essere lanciato da cron, che spedisce le notifiche pendenti condensandole in un singolo messaggio riassuntivo per ogni utente."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 è un indirizzo usato da RT per ricevere messaggi. La sua aggiunta come '%2' creerebbe un ciclo infinito di email"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 non è più %2 per questa coda."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 non è più %2 per questo ticket."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 non è più un valore per il campo personalizzato %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 non è un identificativo di coda valido"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 nuovi articoli"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "I %1 ticket più recenti non ancora assegnati"

#: NOT FOUND IN SOURCE
msgid "%1 not shown"
msgstr "%1 non mostrato"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 oggetti"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "Diritti su %1"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "Configurazione locale %1"

#: NOT FOUND IN SOURCE
msgid "%1 succeeded\\n"
msgstr "%1 riuscito\\n"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "aggiornamento di %1: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "aggiornamento di %1: nessuna modifica"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "aggiornato %1"

#: NOT FOUND IN SOURCE
msgid "%1 was created without a CurrentUser\\n"
msgstr "%1 è stato creato senza un CurrentUser\\n"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 risolverà tutti gli appartenenti a un gruppo di ticket risolto."

#: NOT FOUND IN SOURCE
msgid "%1 will stall a [local] BASE if it's dependent [or member] of a linked up request."
msgstr "%1 bloccherà una BASE [locale] se dipende da [o è membro di] una richiesta collegata."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "oggetti %2 di %1"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "oggetti %3 di %2 di %1"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Cuscotti di %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "ricerche salvate di %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: nessun allegato specificato"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Crea un ticket in%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%1 ore"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' è uno stato non valido"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "'%1' not a recognized action. "
msgstr "'%1' non è un'azione conosciuta. "

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check box to delete group member)"
msgstr "(spunta la casella per rimuovere un appartenente dal gruppo)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(spunta la casella per cancellare uno scrip)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(spunta la casella per cancellare)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(spunta le caselle per cancellare)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(i destinatari con la casella spuntata non ricevono la notifica)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(solo i destinatari con la casella spuntata ricevono la notifica)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(inserire i numeri o gli URL dei ticket, separati da spazi)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Se non specificato userà: %1)"

#: NOT FOUND IN SOURCE
msgid "(No Value)"
msgstr "(nessun valore)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(nessun campo personalizzato)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(nessun appartenente)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(nessuno Scrip)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(nessun modello)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(nessuno)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(invia copia per conoscenza di questo aggiornamento ad una lista di indirizzi email amministrativi, separati da virgole. Questi destinatari riceveranno eventuali successivi aggiornamenti.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(invia copia per conoscenza di questo aggiornamento ad una lista di indirizzi email, separati da virgole. Questi destinatari riceveranno eventuali successivi aggiornamenti.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(usa questi campi se si sceglie 'Definito dall'utente' come condizione o azione)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Non riceverà mail)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(qualsiasi)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(vuoto)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(nessun nome in elenco)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(nessuna chiave pubblica!)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(nessun oggetto)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(nessun valore)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(nessun valore)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(un solo ticket)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(%1 altri ticket in sospeso)"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(in attesa di approvazione)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(in attesa di un'altra Raccolta)"

#: NOT FOUND IN SOURCE
msgid "(pending other ticket)"
msgstr "(in attesa di altri ticket)"

#: NOT FOUND IN SOURCE
msgid "(requestor's group)"
msgstr "(gruppo del richiedente)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(obbligatorio)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(affidabilità: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(senza titolo)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(non fidato!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "l'opzione --template-id è deprecata e non può essere usata assieme a --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "il parametro --transaction può valere solo 'first', 'last' o 'all'"

#: NOT FOUND IN SOURCE
msgid "1995-11-25 21:59:12"
msgstr "-- l'argomento della transazione può essere solo 'primo' o 'ultimo'"

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I own..."
msgstr "I 25 ticket con priorità più alta che ho in carico..."

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I requested..."
msgstr "I 25 ticket con priorità più alta da me richiesti..."

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Tutti i feed iCal includono un token segreto di autorizzazione. Se l'URL di un tuo feed iCal è stato reso pubblico per errore, è meglio generare un nuovo token segreto qui sotto, invalidando tutti i feed iCal precedenti.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Un modello vuoto" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "La password non è stata impostata, l'utente non potrà accedere." #: NOT FOUND IN SOURCE msgid "ACE Deleted" msgstr "ACE eliminata" #: NOT FOUND IN SOURCE msgid "ACE Loaded" msgstr "ACE caricata" #: NOT FOUND IN SOURCE msgid "ACE could not be deleted" msgstr "impossibile eliminare l'ACE" #: NOT FOUND IN SOURCE msgid "ACE could not be found" msgstr "impossibile trovare l'ACE" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE non trovata" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "Le ACE possono essere solo create e cancellate." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "AND" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Informazioni personali" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Controllo di Accesso" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Azione" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Azione %1 non trovata" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Azione '%1' non trovata" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Azione eseguita." #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Azione eseguita.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "L'azione è un argomento obbligatorio" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Azione preparata..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Aggiungi" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Aggiungi AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Aggiungi a preferiti" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Aggiungi Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Aggiungi colonne" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Aggiungi criterio" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Aggiungi altri file" #: NOT FOUND IN SOURCE msgid "Add Next State" msgstr "Aggiungi prossimo stato" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Aggiungi un richiedente" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Aggiungi un valore" #: NOT FOUND IN SOURCE msgid "Add a keyword selection to this queue" msgstr "Aggiungi una selezione di parole chiave a questa coda" #: NOT FOUND IN SOURCE msgid "Add a new a global scrip" msgstr "Aggiungi un nuovo scrip globale" #: NOT FOUND IN SOURCE msgid "Add a scrip to this queue" msgstr "Aggiungi uno scrip a questa coda" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Aggiungi uno scrip da applicare a tutte le code" #: NOT FOUND IN SOURCE msgid "Add additional criteria" msgstr "Aggiungi criteri addizionali" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Aggiungere commenti o repliche ai ticket selezionati" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Aggiungi appartenenti" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Aggiungi nuovi osservatori" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Aggiungi questi termini alla ricerca" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Aggiungi questi termini ed esegui la ricerca" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Aggiungi valori" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Aggiungi, cancella o modifica il valore dei campi personalizzati per gli oggetti" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Aggiunto gruppo/utente come %1 per questa coda" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Aggiunto gruppo/utente come %1 per questo ticket" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Indirizzo" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Indirizzo1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Indirizzo2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Cc amministrativo" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Commento Amministrativo" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Corrispondenza Amministrativa" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Gestione delle code" #: NOT FOUND IN SOURCE msgid "Admin users" msgstr "Gestione degli utenti" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Amministra/Configurazione globale" #: NOT FOUND IN SOURCE msgid "Admin/Groups" msgstr "Gestione/Gruppi" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "Gestione/Code/Base" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "GestisciTuttiGruppiPersonali" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "GruppoDiAdminCc" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCc" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: NOT FOUND IN SOURCE msgid "AdminComment" msgstr "GestisciCommenti" #: NOT FOUND IN SOURCE msgid "AdminCorrespondence" msgstr "GestisciCorrispondenza" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "GestisciCampoPers." #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "GestisciGruppo" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "GestisciAppartenenzaGruppo" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "GestisciGruppiPersonali" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "GestisciCoda" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "GestisciUtenti" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Cc Amministrativo" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Password di amministrazione" #: NOT FOUND IN SOURCE msgid "Admins" msgstr "Amministratori" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avanzata" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "Ricerca avanzata" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "Età" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Aggregatore" #: NOT FOUND IN SOURCE msgid "Alias for" msgstr "Alias per" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Ottenute tutte le approvazioni" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: NOT FOUND IN SOURCE msgid "All Custom Fields" msgstr "Tutti i campi personalizzati" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Tutte le code" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Tutti i feed iCal includono un token segreto di autorizzazione. Se l'URL di un tuo feed iCal è stato reso pubblico per errore, è meglio generare un nuovo token segreto qui sotto, invalidando tutti i feed iCal precedenti." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Tutte le code che corrispondono al criterio di ricerca" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Già crittografato" #: NOT FOUND IN SOURCE msgid "Always sends a message to the requestors independent of message sender" msgstr "Invia comunque un messaggio al richiedente, anche se è lui stesso il mittente" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "And/Or" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Applicato" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Si applica a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Applicabile a tutti gli oggetti" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Applica" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Applica globalmente" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Applica modifiche" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Approvazione" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Approvazione n°%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Approvazione n°%1: Note non registrate a causa di un errore di sistema" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Approvazione n°%1: Note registrate" #: NOT FOUND IN SOURCE msgid "Approval Details" msgstr "Dettagli dell'approvazione" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Approvazione ottenuta" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Approvazione pronta per l'Incaricato" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Approvazione rifiutata" #: NOT FOUND IN SOURCE msgid "Approval diagram" msgstr "Diagramma dell'approvazione" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Approva" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Note dell'approvatore: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Apr" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Apr." #: NOT FOUND IN SOURCE msgid "April" msgstr "Aprile" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Cresc" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Crescente" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Assegna e rimuovi campi personalizzati" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "AssegnaCampiPers." #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Allega" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Allega un file" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "File allegato" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Allegato" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Impossibile caricare l'allegato '%1'" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Allegato creato" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Nome file dell'allegato" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Allegati" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "La crittografia per gli allegati è disabilitata" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Attributo cancellato" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Ago." #: NOT FOUND IN SOURCE msgid "August" msgstr "Agosto" #: NOT FOUND IN SOURCE msgid "AuthSystem" msgstr "SistemaAutorizzazioni" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Risposta automatica" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Risposta automatica ai richiedenti" #: NOT FOUND IN SOURCE msgid "AutoreplyToRequestors" msgstr "RispostaAutomaticaAiRichiedenti" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Disponibile" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "CCn" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Indietro" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "Identificativo allegato errato. Impossibile trovare l'allegato '%1'\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "Dati incorretti in %1" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Privacy dell'attributo %1 incorretta" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "Numero di transazione incorretto per l'allegato. %1 dovrebbe essere %2\\n" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Dati base" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Bcc" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Se hai aggiornato qualche impostazione, assicurati di premere" #: NOT FOUND IN SOURCE msgid "Begin Approval" msgstr "Inizia approvazione" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Logo Best Practical Solutions, LLC" #: NOT FOUND IN SOURCE msgid "Binary" msgstr "Binario" #: etc/initialdata:214 msgid "Blank" msgstr "Vuoto" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Testo" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Grassetto" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Preferiti" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "URL assoluto per questa ricerca" #: NOT FOUND IN SOURCE msgid "Bookmarkable link" msgstr "Link assoluto" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Ticket preferiti" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Intestazioni abbreviate" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Aggiornamenti multipli" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Modifica di ticket in blocco" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Acquista assistenza" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "In mancanza di una scelta esplicita, RT utilizza le informazioni di fuso orario del server. Questo permette di avere un'impostazione predefinita per la visualizzazione delle date. Ogni utente, nelle proprie preferenze, può scegliere un'impostazione diversa per il fuso orario." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "GruppoDiCc" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CP" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Impossibile caricare la ricerca salvata \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Gli utenti di sistema non possono essere modificati" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Può il gruppo/utente vedere questa coda" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Impossibile aggiungere un valore di campo personalizzato senza un nome" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Impossibile trovare una classe collection per '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Impossibile trovare una ricerca salvata su cui lavorare" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Non è possibile collegare un ticket a se stesso" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "Impossibile unire un ticket ad un ticket già unito. Questo errore non dovrebbe mai verificarsi" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Impossibile salvare %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Impossibile salvare questa ricerca" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Impossibile specificare sia la base che il target" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Impossibile creare ticket in una coda disabilitata." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Impossibile creare l'utente: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Le categorie sono basate su" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoria" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Categoria non impostata" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Cc" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Cambia" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Metti il ticket di approvazione nello stato open" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Cambia la password" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Spunta tutte le caselle" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Controlla connessione al database" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verifica le credenziali di accesso al database" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Spunta la casella per cancellare" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Spunta la casella per revocare i diritti" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Controlla le credenziali per l'accesso al database" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Derivati" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Scegli un tipo di database" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Scegli un tipo di server database" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Città" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Azzera" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Azzera" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Premi \"Completa installazione\" qui sotto per concludere l'installazione guidata." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Premi \"Inizializza database\" per creare il database di RT e inserire i dati di sistema. L'operazione potrebbe richiedere qualche tempo" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Chiudi finestra" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Chiuso" #: NOT FOUND IN SOURCE msgid "Closed Tickets" msgstr "Ticket chiusi" #: NOT FOUND IN SOURCE msgid "Closed requests" msgstr "Richieste chiuse" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Ticket chiusi" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: seleziona o inserisci valori multipli" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Combobox: seleziona o inserisci un valore" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Combobox: seleziona o inserisci fino a %1 valori" #: NOT FOUND IN SOURCE msgid "Command not understood!\\n" msgstr "Comando non riconosciuto!\\n" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Commento" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Indirizzo email per i commenti" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Indirizzo email per i commenti" #: NOT FOUND IN SOURCE msgid "Comment not recorded" msgstr "Commento non registrato" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Aggiungere commenti ai ticket" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "EmailCommenti" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "AggiungiCommentiAlTicket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Commenti" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Commenti (non inviati ai richiedenti)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Commenti (non inviati ai richiedenti)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "Commenti su %1" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Commenti su questo utente" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Aggiunti commenti" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Esecuzione saltata" #: NOT FOUND IN SOURCE msgid "Compile Restrictions" msgstr "Restrizioni di compilazione" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Condizione" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Condizione '%1' non trovata" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "La condizione è un campo obbligatorio" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "La condizione è soddisfatta..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Condizione non trovata" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Condizione, azione e modello" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Il file di configurazione %1 è bloccato" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Configurazione" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Conferma" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Connessione completata" #: NOT FOUND IN SOURCE msgid "ContactInfoSystem" msgstr "ContactInfoSystem" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Contenuto" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Content-Type" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "TipoDiContenuto" #: NOT FOUND IN SOURCE msgid "Coould not create group" msgstr "Impossibile creare il gruppo" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "Copia" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Indirizzo di corrispondenza" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "EmailCorrispondenza" #: etc/initialdata:283 msgid "Correspondence" msgstr "Corrispondenza" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "Inidirizzo di corrispondenza" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Aggiunta corrispondenza" #: NOT FOUND IN SOURCE msgid "Correspondence not recorded" msgstr "Corrispondenza non registrata" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "Impossibile aggiungere un nuovo valore di campo personalizzato al ticket. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. %1 " msgstr "Impossibile aggiungere un nuovo valore di campo personalizzato al ticket. %1 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "Impossibile aggiungere un nuovo valore di campo personalizzato. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "Impossibile aggiungere un nuovo valore di campo personalizzato. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Impossibile aggiungere un nuovo valore di campo personalizzato: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Impossibile cambiare l'incaricato. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Impossibile cambiare l'incaricato: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Impossibile creare il campo personalizzato" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Impossibile creare il campo personalizzato: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Impossibile creare il gruppo" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Impossibile creare il modello: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Impossibile creare un ticket nella coda disabilitata \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Impossibile creare il ticket. Queue non impostata" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Impossibile creare l'utente" #: NOT FOUND IN SOURCE msgid "Could not create watcher for requestor" msgstr "Impossibile creare l'osservatore per il richiedente" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not find a ticket with id %1" msgstr "Impossibile trovare il ticket numero %1" #: NOT FOUND IN SOURCE msgid "Could not find group %1." msgstr "Impossibile trovare il gruppo %1." #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Impossibile trovare o creare questo utente" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Impossibile trovare questo gruppo/utente" #: NOT FOUND IN SOURCE msgid "Could not find user %1." msgstr "Impossibile trovare l'utente %1." #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Impossibile caricare l'attributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Impossibile caricare il campo personalizzato %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Impossibile caricare il gruppo" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Impossibile caricare l'oggetto per %1" #: NOT FOUND IN SOURCE msgid "Could not load search attribute" msgstr "Impossibile caricare un attributo della ricerca" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Impossibile rendere questo gruppo/utente %1 per questa coda" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Impossibile rendere questo gruppo/utente %1 per questo ticket" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Impossibile rimuovere questo gruppo/utente da %1 per questa coda" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Impossibile rimuovere questo gruppo/utente da %1 per questo ticket" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Impossibile impostare le informazioni dell'utente" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Impossibile aggiugere l'allegato" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Impossibile aggiungere un appartenente al gruppo" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Impossibile applicare un campo personalizzato ad un oggetto perché è già applicato globalmente" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Impossibile creare una transazione: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Impossibile creare il record" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Impossibile cancellare il cruscotto %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't figure out what to do from gpg's reply\\n" msgstr "Impossibile capire che cosa fare con questa risposta gpg\\n" #: NOT FOUND IN SOURCE msgid "Couldn't find group\\n" msgstr "Impossibile trovare il gruppo\\n" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Impossibile trovare la riga" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Impossibile trovare una transazione adatta, procedo oltre" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Impossibile trovare questo gruppo/utente" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Impossibile trovare questo valore" #: NOT FOUND IN SOURCE msgid "Couldn't find that watcher" msgstr "Impossibile trovare questo osservatore" #: NOT FOUND IN SOURCE msgid "Couldn't find user\\n" msgstr "Impossibile trovare l'utente\\n" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Impossibile caricare %1 dal database degli utenti.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Impossibile caricare la classe %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Impossibile caricare il campo personalizzato n°%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Impossibile caricare il campo personalizzato n° %1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Impossibile caricare il campo personalizzato %1" #: NOT FOUND IN SOURCE msgid "Couldn't load KeywordSelects." msgstr "Impossibile caricare KeywordSelects" #: NOT FOUND IN SOURCE msgid "Couldn't load RT config file '%1' %2" msgstr "Impossibile caricare il file di configurazione RT '%1' %2" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Impossibile caricare una copia del ticket n°%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Impossibile caricare il cruscotto %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Impossibile caricare il cruscotto %1: %2" #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Impossibile caricare il gruppo n°%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Impossibile caricare il gruppo %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Impossibile caricare il collegamento" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Impossibile caricare l'oggetto %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Impossibile caricare o creare l'utente: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Impossibile caricare la coda" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Impossibile caricare la coda n°%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Impossibile caricare la coda %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Impossibile caricare la coda '%1'" #: NOT FOUND IN SOURCE msgid "Couldn't load scrip" msgstr "Impossibile caricare lo Scrip" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Impossibile caricare lo Scrip n°%1" #: NOT FOUND IN SOURCE msgid "Couldn't load template" msgstr "Impossibile caricare il modello" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Impossibile caricare il modello n°%1" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "Impossibile caricare questo utente (%1)" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Impossibile caricare il ticket '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Impossibile caricare la transazione n°%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Impossibile caricare l'utente" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Impossibile caricare l'utente n°%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Impossibile caricare l'utente n° %1 o l'utente '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Impossibile caricare l'utente '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Impossibile recuperare un indirizzo email dal valore '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Impossibile rimpiazzare il contenuto con i dati decrittografati: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Impossibile rimpiazzare il contenuto con i dati crittografati: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Impossibile convertire '%1' in un URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Impossibile convertire la base '%1' in un URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Impossibile convertire la destinazione '%1' in un URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Impossibile inviare email" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Impossibile impostare l' osservatore %1: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Impossibile impostare la chiave privata" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Impossibile annullare la chiave privata" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Nazione" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Crea" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Crea ticket" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Crea un campo Personalizzato" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Crea un campo personalizzato per la coda %1" #: NOT FOUND IN SOURCE msgid "Create a CustomField which applies to all queues" msgstr "Crea un campo personalizzato valido per tutte le code" #: NOT FOUND IN SOURCE msgid "Create a new Custom Field" msgstr "Crea un nuovo campo personalizzato" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Crea nuovo cruscotto" #: NOT FOUND IN SOURCE msgid "Create a new global scrip" msgstr "Crea un nuovo scrip globale" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Crea un nuovo gruppo" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Crea un nuovo gruppo personale" #: NOT FOUND IN SOURCE msgid "Create a new queue" msgstr "Crea una nuova coda" #: NOT FOUND IN SOURCE msgid "Create a new scrip" msgstr "Crea un nuovo scrip" #: NOT FOUND IN SOURCE msgid "Create a new template" msgstr "Crea un nuovo modello" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Crea un nuovo ticket" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Crea un nuovo utente" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Crea una coda" #: NOT FOUND IN SOURCE msgid "Create a queue called" msgstr "Crea una nuova coda di nome" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "Crea una richiesta" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Crea uno scrip per la coda %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Crea un modello" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Nuovo ticket" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Crea cruscotto per questo gruppo" #: NOT FOUND IN SOURCE msgid "Create failed: %1 / %2 / %3 " msgstr "Creazione fallita: %1 / %2 / %3 " #: NOT FOUND IN SOURCE msgid "Create failed: %1/%2/%3" msgstr "Creazione fallita: %1/%2/%3" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Creare nuovi ticket basati sul modello di questo scrip" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Crea cruscotti personali" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Crea cruscotti di sistema" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Crea il ticket" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Crea nuovi ticket in questa coda" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Crea ticket fuori-linea" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Crea, elimina e modifica campi personalizzati" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Crea, elimina e modifica le code" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Crea, elimina e modifica gli appartenenti ai gruppi personali di un qualunque utente" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Crea, elimina e modifica gli appartenenti ai gruppi personali" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Crea, elimina e modifica gli utenti" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "CreaCruscotto" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "CreaDashboardPerGruppo" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "CreaDashboardPersonali" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "CreaRichiestaSalvata" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "CreaTicket" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Creato" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Creato da" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Campo personalizzato %1 creato" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Creato in un intervallo di date" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created template %1" msgstr "Modello %1 creato" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Ticket creati in un periodo, raggruppati per stato" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CreatoDa" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "TempoDaCreazione" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "CreatoDa" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Crittografia" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Collegamenti attuali" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Scrips attuali" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Appartenenti attuali" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Diritti attuali" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Ricerca attuale" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "Criterio di ricerca attuale" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Osservatori attuali" #: NOT FOUND IN SOURCE msgid "Custom Field #%1" msgstr "Campo personalizzato n°%1" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Campi personalizzati" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Campi personalizzati per %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Programma di pulizia dell'azione personalizzata" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Programma di preparazione dell'azione personalizzata" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Condizione personalizzata" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Il campo personalizzato n° %1 non è applicato a questo oggetto" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Campo personalizzato %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "L'oggetto non ammette il campo personalizzato %1" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Il campo personalizzato %1 ha un valore." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Il campo personalizzato %1 non ha valore." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Campo personalizzato %1 non trovato" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Campo personalizzato '%1'" #: NOT FOUND IN SOURCE msgid "Custom field deleted" msgstr "Campo personalizzato cancellato" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Il campo personalizzato è già applicato a questo oggetto" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Campo personalizzato %1 non trovato" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Impossibile trovare il valore %1 per il campo personalizzato %2" #: NOT FOUND IN SOURCE msgid "Custom field value changed from %1 to %2" msgstr "Valore del campo personalizzato cambiato da %1 a %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Impossibile cancellare il valore del campo personalizzato" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Valore del campo personalizzato non trovato" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Il valore del vampo personalizzato è stato eliminato" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPersonalizzato" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "ValoreCampoPersonalizzato" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Personalizza" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Configurazione di base" #: NOT FOUND IN SOURCE msgid "Customize Database Details" msgstr "Modifica dettagli database" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Modifica indirizzi email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Modifica configurazione email" #: NOT FOUND IN SOURCE msgid "Customize Global" msgstr "Modifica impostazioni globali" #: NOT FOUND IN SOURCE msgid "Customize Global Defaults" msgstr "Modifica impostazioni predefinite" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Password per amministrazione" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Username per amministrazione" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Riassunto giornaliero" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Cruscotto" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Impossibile creare il cruscotto: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Impossibile aggiornare il cruscotto: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Cruscotto aggiornato" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Cruscotti" #: NOT FOUND IN SOURCE msgid "Data error" msgstr "Errore nei dati" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Server database" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nome database" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Password per accesso al database da parte di RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Porta del database" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo di database" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Username per accesso al database da parte di RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Formato data" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "La libreria DateTime non supporta format_cldr, occorre aggiornarla per usare questa funzionalità" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Manca il modulo DateTime" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "La libreria DateTime::Locale non supporta date_format_full, occorre aggiornarla per usare questa funzionalità" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Manca il modulo DateTime::Locale" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Date" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dic" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Dic." #: NOT FOUND IN SOURCE msgid "December" msgstr "Dicembre" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Decifra" #: NOT FOUND IN SOURCE msgid "Default Autoresponse Template" msgstr "Modello di default per la risposta automatica" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Modello di default per la risposta automatica" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Coda di default" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Richiedente di default" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Modello di default per il commento amministrativo" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Modello di default per la corrispondenza amministrativa" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Modello di default per la corrispondenza" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Coda di default" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Modello di default per la transazione" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Default: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Default: %1/%2 modificato da %3 a %4" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "RisolvereEntroPredefinito" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "FormatoPredefinito" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delega i diritti" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delega diritti specifici tra quelli che ti sono stati accordati" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegaDiritti" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delega" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Cancella" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Cancella modello" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Cancella cruscotto per questo gruppo" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Cancellazione fallita: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Cancella cruscotti personali" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Cancella gli scrips selezionati" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Cancella cruscotto di sistema" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Cancella ticket" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Cancella valori" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "CancellaCruscotto" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "CancellaCruscottoDiGruppo" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "CancellaProprioCruscotto" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "CancellaTicket" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Cancellato %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Cruscotto %1 cancellato" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Ricerche cancellate" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Ricerca cancellata" #: NOT FOUND IN SOURCE msgid "Deleted search" msgstr "Ricerca cancellata" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "La cancellazione di quest'oggetto può danneggiare l'integrità referenziale" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "La cancellazione di quest'oggetto danneggerebbe l'integrità referenziale" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "La cancellazione di quest'oggetto violerebbe l'integrità referenziale" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity." msgstr "La cancellazione di quest'oggetto violerebbe l'integrità referenziale" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity. That's bad." msgstr "La cancellazione di quest'oggetto violerebbe l'integrità referenziale. Ciò è male!" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Nega" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "È una dipendenza per" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "DipendenzaPer" #: NOT FOUND IN SOURCE msgid "Dependencies: \\n" msgstr "Dipendenze: \\n" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Aggiunta dipendenza da parte di %1" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Cancellata dipendenza da parte di %1" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Aggiunta dipendenza da %1" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Cancellata dipendenza da %1" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "DipendenteDa" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Dipende da" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "DipendeDa" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Disc" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Decrescente" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Descrivi il problema qui sotto" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descrizione" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Dettagli" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direzione" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Disabilitato" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Visualizza" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Visualizza la Lista Controllo Accessi (ACL)" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Visualizza colonne" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Visualizza i modelli di Scrips per questa coda" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Visualizza gli Scrips per questa coda" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Modalità visualizzazione" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Visualizza le ricerche salvate per questo gruppo" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuito in accordo con la versione 2 della GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Fai di tutto e di più" #: NOT FOUND IN SOURCE msgid "Do the Search" msgstr "Esegui la ricerca" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Nome DNS" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Non scrivere anche http://, è sufficiente un nome tipo 'localhost' o 'rt.azienda.it'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Non ricaricare la pagina home." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Non ricaricare i risultati di ricerca." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Non aggiornare questa pagina." #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "Non mostrare i risultati della ricerca" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Questa chiave non è assolutamente affidbile" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Visualizza" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Scarica come file separato da TAB" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Download archivio oggetti eliminati" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Scadenza" #: NOT FOUND IN SOURCE msgid "Due date '%1' could not be parsed" msgstr "Impossibile interpretare la data di scadenza '%1'" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "TempoDaScadenza" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ERRORE: %1" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "ERRORE: impossibile caricare il ticket '%1' : %2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Aggiornamento facilitatao dei ticket aperti che hai in carico" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Modifica" #: NOT FOUND IN SOURCE msgid "Edit Conditions" msgstr "Modifica condizioni" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Modifica campi personalizzati" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Modifica i campi personalizzati per %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Modifica i campi personalizzati per tutti i gruppi" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Modifica i campi personalizzati per tutte le code" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Modifica i campi personalizzati per tutti gli utenti" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Modifica i campi personalizzati per tutte le code" #: NOT FOUND IN SOURCE msgid "Edit Custom Fields for transactions on tickets in all queues" msgstr "Modifica i campi personalizzati per le transazioni sui ticket in tutte le code" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Modifica collegamenti" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Modifica query" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Modifica ricerca" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Modifica i modelli per la coda %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit keywords" msgstr "Modifica parole chiave" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Modifica ricerche salvate per questo gruppo" #: NOT FOUND IN SOURCE msgid "Edit scrips" msgstr "Modifica scrips" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Modifca i modelli di sistema" #: NOT FOUND IN SOURCE msgid "Edit templates for %1" msgstr "Modifica i modelli per %1" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "ModificaRicercheSalvate" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Testo modificabile" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Modifica della configurazione per la coda %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "Modifica della configurazione per l'utente %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Modifica del campo personalizzato %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Modifica degli appartenenti al gruppo %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Modifica degli appartenenti al gruppo personale %1" #: NOT FOUND IN SOURCE msgid "Editing template %1" msgstr "Modifica del modello %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "IdEffettivo" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "È necessario specificare base o target" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Non hai il permesso di visualizzare la ricerca salvata %1, o l'identificativo non è corretto" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Email" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "Configurazione Email" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Riassunto dei messaggi" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Inidirizzo email in uso" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Invio email" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Modello da usare per i messaggi riassuntivi periodici" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "IndirizzoEmail" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "CodificaEmail" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Abilitato" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Abilitato (togliere il segno di spunta per disabilitare questo campo personalizzato)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Abilitato (togliere il segno di spunta per disabilitare questo gruppo)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Abilitato (togliere il segno di spunta per disabilitare questa coda)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: NOT FOUND IN SOURCE msgid "Enabled Custom Fields" msgstr "Campi personalizzati abilitati" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Code abilitate" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Code abilitate che corrispondono al criterio di ricerca" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Stato %1 abilitato" #: NOT FOUND IN SOURCE msgid "Enabled status: %1" msgstr "Stato abilitato: %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Crittografa" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Crittografia sempre attiva" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Crittografa/Decrittografa" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Crittografa/Decrittografa la transazione n°%1 del ticket n°%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Crittografia disabilitata" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Crittografia abilitata" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Valori multipli" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Inserisci valori multipli, con autocompletamento" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Inserire, separati da spazio, gli oggetti (o URI di oggetti) da collegare." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Valore singolo" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Inserisci valore singolo, con autocompletamento" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Inserire, separati da spazio, le code (o URI di code) da collegare." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Inserire, separati da spazio, i ticket (o URI di ticket) da collegare." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Inserimento di un massimo di %1 valori" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Inserisci un massimo di %1 valori, con autocompletamento" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Errore" #: NOT FOUND IN SOURCE msgid "Error adding watcher" msgstr "Errore durante l'aggiunta di un osservatore" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Errore nei parametri passati a Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DelWatcher" msgstr "Errore nei parametri passati a Queue->DelWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Errore nei parametri passati a Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Errore nei parametri passati a Ticket->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Ticket->DelWatcher" msgstr "Errore nei parametri passati a Ticket->DelWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Errore nei parametri passati a Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Errore per l'amministratore di RT: chiave pubblica" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Errore: cruscotto mancante" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Errore: dati GnuPG non validi" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Errore: nessuna chiave privata" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Errore: chiave pubblica" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Propaga ticket" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Stima" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Chiunque" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Esamina i ticket creati in una coda tra due date" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Esamina i ticket risolti in una coda tra due date" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Esamina i ticket risolti in una coda, raggruppati per incaricato" #: bin/rt-crontool:356 msgid "Example:" msgstr "Esempio:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Scadenza" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "StatoAggiuntivo" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Autenticazione esterna abilitata." #: NOT FOUND IN SOURCE msgid "ExternalAuthId" msgstr "IdAutorizEsterno" #: NOT FOUND IN SOURCE msgid "ExternalContactInfoId" msgstr "IdContattoEsterno" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Informazioni aggiuntive" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Estrazione di parte dell'oggetto del messaggio" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Estrae parti dell'oggetto del messaggio e le mette nell'oggetto del ticket." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Connessione al database fallita: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Creazione dell'attributo %1 fallita" #: NOT FOUND IN SOURCE msgid "Failed to create search attribute" msgstr "Impossibile creare un attributo della ricerca" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Impossibile trovare il pseudogruppo di utenti 'Privilegiato'." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Impossibile trovare il pseudogruppo di utenti 'Non Privilegiato'." #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Caricamento %1 %2 non andato a buon fine" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Caricamento %1 %2 non andato a buon fine: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Errore nel caricamento del modulo %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Impossibile caricare un oggetto per %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Caricamento del modello non andato a buon fine" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Interpretazione del modello non andata a buon fine" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Feb" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Feb." #: NOT FOUND IN SOURCE msgid "February" msgstr "Febbraio" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Origine dei valori del campo:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "NomeFile" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nome file" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Specifica i seguenti parametri" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Colora i riquadri usando" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Testi multipli" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Testi WIKI multipli" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Testo singolo" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Testo WIKI singolo" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Riempi questo campo con un URL." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Testi multipli (max. %1)" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Testi WIKI multipli (max. %1)" #: NOT FOUND IN SOURCE msgid "Fin" msgstr "Fin" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Priorità finale" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "PrioritaFinale" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Trova tutti gli utenti il cui" #: NOT FOUND IN SOURCE msgid "Find group whose" msgstr "Cerca il gruppo in cui" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Cerca i gruppi in cui" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "Cerca ticket nuovi/aperti" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Cerca le persone in cui" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Ricerca ticket" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Fine" #: NOT FOUND IN SOURCE msgid "Finish Approval" msgstr "Completa approvazione" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Primo" #: NOT FOUND IN SOURCE msgid "First page" msgstr "Prima pagina" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Tizio Caio Sempronio" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Tizio!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forza la modifica" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Opzioni colonna" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Inoltra" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Inoltra messaggio" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Inoltra messaggio e ritorna" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Inoltra Ticket" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Inoltra messaggio" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "Inoltra messaggi al di fuori di RT" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Inoltra messaggi ad altre persone" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Inoltra ticket #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Inoltra la transazione n° %1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "InoltraMessaggio" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "Inoltra Ticket a %1" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "Transazione #%1 inoltrata a %2" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Trovati %quant(%1,ticket)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Trovato Oggetto" #: NOT FOUND IN SOURCE msgid "Freeform" msgstr "Testo libero" #: NOT FOUND IN SOURCE msgid "FreeformContactInfo" msgstr "FreeformContactInfo" #: NOT FOUND IN SOURCE msgid "FreeformMultiple" msgstr "FreeformMultiple" #: NOT FOUND IN SOURCE msgid "FreeformSingle" msgstr "FreeformSingle" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequenza" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Ven" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Ven." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Venerdì" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Intestazione completa" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Generale" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Carica da file un modello compilato" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Per cominciare" #: NOT FOUND IN SOURCE msgid "Getting the current user from a pgp sig\\n" msgstr "Sto individuando l'utente corrente da una firma pgp\\n" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Assegnato a %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Globale" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Campi personalizzati globali" #: NOT FOUND IN SOURCE msgid "Global Keyword Selections" msgstr "Selezione globale delle parole chiave" #: NOT FOUND IN SOURCE msgid "Global Scrips" msgstr "Scrips globali" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configurazione globale campi personalizzati" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Salvato il portlet globale %1" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Modello globale: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "Errore GnuPG. Contatta l'amministratore del sistema" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Integrazione con GnuPG disabilitata" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "Problemi relativi a GnuPG" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "Chiavi private GnuPG per %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "Chiavi pubbliche GnuPG per %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Vai" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Vai!" #: NOT FOUND IN SOURCE msgid "Good pgp sig from %1\\n" msgstr "Firma pgp valida da %1\\n" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "Vai a pagina" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Vai al ticket" #: NOT FOUND IN SOURCE msgid "Grand" msgstr "Grand" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Grafico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Proprierà del grafico" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Mappe grafiche non disponibili." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Gruppo" #: NOT FOUND IN SOURCE msgid "Group %1 %2: %3" msgstr "Gruppo %1 %2: %3" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Diritti di gruppo" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Appartiene già al gruppo: %1" #: NOT FOUND IN SOURCE msgid "Group could not be created." msgstr "Impossibile creare il gruppo." #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Impossibile creare il gruppo: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Gruppo creato" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Disabilitato il gruppo" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Abilitato il gruppo" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Non appartiene al gruppo" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Gruppo non trovato" #: NOT FOUND IN SOURCE msgid "Group not found.\\n" msgstr "Gruppo non trovato.\\n" #: NOT FOUND IN SOURCE msgid "Group not specified.\\n" msgstr "Gruppo non specificato.\\n" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Permessi di gruppo" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Gruppi" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "I gruppi non possono appartenere a gruppi che sono già loro appartenenti" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Gruppi che corrispondono ai criteri di ricerca" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Gruppi ai quale l'utente appartiene (spuntare quelli da cui cancellare l'appartenenza)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Gruppi ai quale l'utente non appartiene (spuntare quelli a cui deve appartenere)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "L'utente appartiene ai gruppi" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "HaUnAppartenente" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Intestazione di un Ticket inoltrato" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Intestazione di un messaggio inoltrato" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Ciao!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Ciao, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Serve il tuo aiuto per impostare alcune impostazioni predefinite per RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Cronologia" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Cronologia del gruppo %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Cronologia della coda %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Cronologia dell'utente %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Home" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Intervallo di caricamento automatico per la Home Page" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "TelefonoCasa" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Homepage" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Ora" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Ore" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Ho %quant(%1,concrete mixer)." #: NOT FOUND IN SOURCE msgid "I have [quant,_1,concrete mixer]." msgstr "Ho [quant,_1,concrete mixer]." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "Mi sono perso..." #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identità" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Se un'approvazione viene negata, respingi l'originale e elimina le approvazioni accodate" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "(per i nuovi ticket in cui non viene specificato un richiedente)" #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "(per i nuovi ticket in cui non viene specificata una coda)" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Se questo strumento viene ha il flag setgid, un utente locale malintenzionato potrebbe usarlo per ottenere accesso amministrativo a RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Se hai già un server RT e un database funzionanti, assicurati che il server database sia attivo, e che le connessioni provenienti dal server RT vadano a buon fine. Quando sei sicuro di questo, riavvia il server RT.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Se hai già un server RT e un database funzionanti, assicurati che il server database sia attivo, e che le connessioni provenienti dal server RT vadano a buon fine. Quando sei sicuro di questo, riavvia il server RT.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Se cambi la porta su cui RT accetta le connessioni, devi riavviare il server prima di poter accedere." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Se hai aggiornato qualche impostazione, assicurati di premere" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Se il tuo database preferito non è presente nell'elenco sottostante, significa che RT non ha trovato un driver database adatto installato sul server. Puoi rimediare usando %1 per scaricare e installare i moduli DBD::MySQL, DBD::Oracle o DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Valore non valido per %1" #: NOT FOUND IN SOURCE msgid "Image" msgstr "Immagine" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Campo immutabile" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Elenca anche i campi personalizzati disabilitati." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Elenca anche i gruppi disabilitati." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Elenca anche le code disabilitate." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Includi nella ricerca gli utenti disabilitati." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Allega pagina" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "Query incompleta" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "Query incompleta" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Messaggi singoli" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informa l'amministratore del server RT che alcuni utenti hanno problemi di chiave pubblica" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informa l'utente che un cruscotto a cui si è abbonato è mancante" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informa l'utente che un messaggio da lui inviato contiene dati GnuPG non validi" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informa l'utente che ci sono problemi con la sua chiave pubblica, per i quali non può ricevere messaggi crittografati" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Informa l'utente che la sua password è stata resettata." #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informa l'utente che è stata ricevuta email crittografata ma non esiste nessuna chiave privata con cui decifrarla" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Priorità iniziale" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "PrioritaIniziale" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inizializzazione database" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Errore in input" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "L'Input deve corrispondere con %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Installazione di RT" #: NOT FOUND IN SOURCE msgid "Interest noted" msgstr "Interesse annotato" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Errore interno" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Errore interno: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Valore %1 non valido: '%2' non sembra un indirizzo email" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Valore non valido (%1): deve essere un numero intero" #: NOT FOUND IN SOURCE msgid "Invalid %1: that doesn't look like an email address" msgstr "Valore %1 non valido: non sembra un indirizzo email" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Tipo di gruppo non valido" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Diritto non valido" #: NOT FOUND IN SOURCE msgid "Invalid Type" msgstr "Tipo non valido" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Dati non validi" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Oggetto non valido" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Incaricato non valido" #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "Incaricato non valido. Uso il default 'nessuno'." #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "%1: pattern non valido" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Coda non valida" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Diritto non valido" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Diritto non valido. Impossibile rendere in forma canonica il diritto '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Sintassi non valida per un indirizzo email" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Valore non valido per %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Valore non valido per il campo personalizzato" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Valore non valido per lo stato" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Non è crittografato" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "È estremamente importante che agli utenti non previlegiati non sia consentita l'esecuzione di questo strumento." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Per eseguire questo strumento, si suggerisce di creare un utente unix non privilegiato appartenente al gruppo corretto e con i necessari diritti in RT." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Accetta svariati argomenti:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Corsivo" #: NOT FOUND IN SOURCE msgid "Items pending my approval" msgstr "Oggetti in attesa della mia approvazione" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Gen" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Gen." #: NOT FOUND IN SOURCE msgid "January" msgstr "Gennaio" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Cambia appartenenza a questo gruppo" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Lug" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Lug." #: NOT FOUND IN SOURCE msgid "July" msgstr "Luglio" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Azioni" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Giu" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Giu." #: NOT FOUND IN SOURCE msgid "June" msgstr "Giugno" #: NOT FOUND IN SOURCE msgid "Keep 'localhost' if you're not sure" msgstr "Mantieni 'locahost' in caso di dubbi" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Se sei indeciso, lascia 'localhost'. Lascia il campo vuoto per connettere il DB usando un socket locale" #: NOT FOUND IN SOURCE msgid "Keyword" msgstr "Parola chiave" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "Lingua" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Lingua" #: NOT FOUND IN SOURCE msgid "Language." msgstr "Lingua." #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Ultimo" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Ultima comunicazione a richiedenti" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Ultima comunicazione a richiedenti" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "Ultima notifica" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Ultima modifica" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Modificato Da" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Ultimo aggiornamento da parte di" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "UltimaModifica" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "ModificatoPerUltimoDa" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "TempoDaUltimoAggiornamento" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Lascaire vuoto per inviare al proprio indirizzo email (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Se non specificato, verrà usato il valore predefinito dal tuo database" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Se non specificato, verrà usato username amministrativo predefinito dal tuo database" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Rimasti" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legenda" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Lunghezza in caratteri; Usa '0' per mostrare i messaggi completi, indipendentemente dalla loro lunghezza" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Consenti a questo utente di accedere a RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Consenti la concessione di diritti espliciti a questo utente" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Iniziamo!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: NOT FOUND IN SOURCE msgid "Limiting owner to %1 %2" msgstr "Limitare l'incaricato a %1 %2" #: NOT FOUND IN SOURCE msgid "Limiting queue to %1 %2" msgstr "Limitare la coda a %1 %2" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Collegamento" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Il collegamento esiste già" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Il collegamento non può essere creato" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Collegamento creato (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Collegamento cancellato (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Collegamento non trovato" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Collega ticket n°%1" #: NOT FOUND IN SOURCE msgid "Link ticket %1" msgstr "Collega ticket %1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Collega valori a" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Collegato" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "CollegatoDa" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "CollegatoA" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Collegamento. Permesso negato" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Collegamenti" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Carica" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Carica ricerca salvata:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "CaricaRicercheSalvate" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "%1 caricato %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "La ricerca salvata originaria \"%1\" è stata caricata" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Moduli perl caricati" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "La ricerca salvata \"%1\" è stata caricata" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "Caricata ricerca %1" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Impostazioni nazionali" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "DataOraInFormatoLocale" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Domicilio" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written.\\n RT can't run." msgstr "Impossibile trovare la directory di log %1 (oppure mancano i permessi di scrittura).\\n RT non può essere eseguito." #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Accesso effettuato come %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Disconnesso" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Accedi" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "LogoAltText" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Esci" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Tipo di ricerca sbagliato" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Mail" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Tipi principali di collegamento" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Nuovo incaricato" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Nuovo stato" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Nuova data scadenza" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Nuova data risoluzione" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Nuova data iniziato" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Nuova data inizio previsto" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Nuova data ultimo contatto" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Nuova priorità" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Nuova coda" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Nuovo oggetto" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Rendi questo gruppo visibile all'utente" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gestione campi personalizzati e relativi valori" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Gestione di gruppi e appartenenze" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Gestione di proprietà e configurazioni che si applicano a tutte le code" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Gestione delle code e delle propietà specifiche delle code" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Gestione grafi salvati" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Gestione di utenti e password" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mar" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Mar." #: NOT FOUND IN SOURCE msgid "March" msgstr "Marzo" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Tutti i messaggi marcati come 'letti'" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Ordine di ricerca per i template Mason" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "ValoriMassimi" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Lunghezza massima dei messaggi inline" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maggio" #: NOT FOUND IN SOURCE msgid "May." msgstr "Mag." #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Appartenente" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Aggiunto appartenente %1" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Rimosso appartenente %1" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Aggiunto appartenente: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Rimosso appartenente" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Appartenente non rimosso" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Appartenente a" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "AppartenteA" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Appartenenti" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Aggiunta appartenenza al gruppo %1" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Rimossa appartenenza al gruppo %1" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Appartenenza a gruppi" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Appartenenza a gruppi per l'utente %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Unione avvenuta con Successo" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Unione fallita. Impossibile impostare EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Unione fallita. Impossibile impostare Stato" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Unisci a" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Unito a %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Messaggio" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Il corpo del messaggio non è mostrato su richiesta del mittente." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Il corpo del messaggio non viene mostrato perché non è testo semplice." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Il corpo del messaggio non viene mostrato perchè troppo grande o non in formato testo." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Il corpo del messaggio non viene mostrato perché supera la dimensione massima consentita." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Altezza del riquadro messaggi" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Larghezza del riquadro messaggi" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Impossibile registrare il messaggio" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Messaggio per l'utente" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Messaggio registrato" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "I messaggi riguardanti questo ticket non saranno inviati a..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Lunghezza minima per le password" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuti" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: NOT FOUND IN SOURCE msgid "Mismatched parentheses" msgstr "Parentesi non bilanciate" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Manca una chiave primaria?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Cellulare" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "TelefonoCellulare" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Modifica la Lista Controllo Accessi (ACL)" #: NOT FOUND IN SOURCE msgid "Modify Custom Field %1" msgstr "Modifica il campo personalizzato %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Modifica campi personalizzati applicabili a %1 per ogni %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Modifica i campi personalizzati applicabili a tutti %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all queues" msgstr "Modifica i Campi Personalizzati validi per tutte le code" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Modifica diritti del gruppo" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modifica appartenenti al gruppo" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Modifica diritti" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Modifica i modelli di Scrips per questa coda" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Modifica gli Scrips per questa coda" #: NOT FOUND IN SOURCE msgid "Modify System ACLS" msgstr "Modifica le ACL di Sistema" #: NOT FOUND IN SOURCE msgid "Modify Template %1" msgstr "Modifica il modello %1" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Modifica diritti utente" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Modifica un campo personalizzato per la coda %1" #: NOT FOUND IN SOURCE msgid "Modify a CustomField which applies to all queues" msgstr "Modifica un campo personalizzato valido per tutte le code" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Modifica uno scrip per la coda %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Modifica uno Scrip che riguarda tutte le code" #: NOT FOUND IN SOURCE msgid "Modify a scrip which applies to all queues" msgstr "Modifica uno scrip valido per tutte le code" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Modifica oggetti associati a %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Modifica i valori dei campi personalizzati" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Modifica i cruscotti per questo gruppo" #: NOT FOUND IN SOURCE msgid "Modify dates for # %1" msgstr "Modifica le date per n° %1" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Modifica le date per n°%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Modifica le date per il ticket n° %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Modifica campi personalizzati globali" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Modifica i diritti di gruppo globali" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Modifica i diritti di gruppo globali." #: NOT FOUND IN SOURCE msgid "Modify global rights for groups" msgstr "Modifica i diritti di gruppo globali" #: NOT FOUND IN SOURCE msgid "Modify global rights for users" msgstr "Modifica i diritti globali per gli utenti" #: NOT FOUND IN SOURCE msgid "Modify global scrips" msgstr "Modifica gli scrips globali" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Modifica i diritti globali per gli utenti" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Modifica i diritti globali per gli utenti." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Modifica i metadati del gruppo o elimina un gruppo" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Modifica i diritti di gruppo per il campo personalizzato %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Modifica i diritti di gruppo per il gruppo %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Modifica i diritti di gruppo per la coda %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Modifica gli appartenenti a questo gruppo" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Modifica il proprio account RT" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Modifica le persone collegate alla coda %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Modifica le persone collegate al ticket n°%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Modifica i cruscotti personali" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Modifica gli scrips per la coda %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Modifica gli scrips validi per tutte le code" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Modifica i cruscotti di sistema" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Modifica modello %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modifica i modelli validi per tutte le code" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Modifica il cruscotto %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Modifca il quadro di insieme di default" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Modifica il gruppo %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Modifica le ricerche che compongono il cruscotto %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Modifica gli osservatori della coda" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Modifica l'abbonamento al cruscotto %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Modifica l'utente %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Modifica il ticket n° %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Modifica il ticket n°%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Modifica i ticket" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Modifica i diritti utente per il il campo personalizzato %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Modifica i diritti utente per il gruppo %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Modifica i diritti utente per la coda %1" #: NOT FOUND IN SOURCE msgid "Modify watchers for queue '%1'" msgstr "Modifica gli osservatori per la coda '%1'" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "ModificaACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "ModificaCampoPers." #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "ModificaCruscotto" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "ModificaCruscottoDiGruppo" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "ModificaCruscottoPersonale" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "ModificaPropriaAppartenenzaAlGruppo" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "ModificaOsservatoriDellaCoda" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "ModificaScrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "ModificaSuoiDati" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "ModificaModello" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "ModificaTicket" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Modulo" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Lun" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Lun." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Lunedì" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Da lunedì a venerdì" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Altro" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Maggiori informazioni su %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Sposta in basso" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Sposta in alto" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Multiplo" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "L'attributo 'name' deve essere specificato" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "I miei ticket in stato: %1" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Le mie richieste di approvazione" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Giornata" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Le mie richieste di approvazione" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "I miei cruscotti" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Le mie ricerche salvate" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "A_CAPO" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Nome" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Nome già usato" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Insieme di portlet condiviso, identificato da un nome" #: NOT FOUND IN SOURCE msgid "Named, shared collection of saved searches" msgstr "Collezione di ricerche salvate, identificata da nome, condivisibile con altri" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Mai" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Nuovo" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nuovi collegamenti" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nuova Password" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Nuove approvazioni pendenti" #: NOT FOUND IN SOURCE msgid "New Query" msgstr "Nuova query" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nuova Ricerca" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Elenco ticket in stato 'nuovo' e 'aperto' per %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Nuovo campo personalizzato" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Nuovo cruscotto" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Nuovo gruppo" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nuovi messaggi" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nuova password" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Inviata notifica della nuova password" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Nuova coda" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Nuovo promemoria" #: NOT FOUND IN SOURCE msgid "New request" msgstr "Nuova richiesta" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nuovi diritti" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Nuovo scrip" #: NOT FOUND IN SOURCE msgid "New search" msgstr "Nuova ricerca" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Nuovo modello" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nuovo ticket" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Il nuovo ticket non esiste" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Nuovo utente" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Nuovo utente di nome" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nuovo osservatore" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "Impostazioni nuova finestra" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Seguente" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Pagina seguente" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "Pagina seguente" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Nomignolo" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Nomignolo" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "No" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Nessun %1 caricato" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nessuna classe definita" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Nessun campo personalizzato" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nessun campo personalizzato definito" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nessun gruppo definito" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Nessuna query" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nessuna coda definita" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Nessun utente RT trovato. Consulta il tuo amministratore di RT.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Senza oggetto" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Nessun Modello" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "Nessun ticket specificato. Annullo il ticket " #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Nessuna azione" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Nessuna colonna specificata" #: NOT FOUND IN SOURCE msgid "No command found\\n" msgstr "Nessun comando trovato\\n" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Nessun commento su questo utente" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "Nessuna corrispondenza allegata" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Nessun cruscotto." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Nessuna descrizione per %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Nessun dettaglio" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Nessun gruppo specificato" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Nessun gruppo corrisponde ai criteri di ricerca." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Nessuna chiave adatta per la crittografia" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Nessuna chiave per questi indirizzi" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Nessun messaggio allegato" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Nessun nome fornito" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Crittografia non necessaria" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Nessuna password impostata" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Manca il permesso per creare code" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Manca il permesso per creare ticket nella coda '%1'" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Manca il permesso per creare utenti" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Manca il permesso per visualizzare il ticket" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Manca il permesso per salvare ricerche a livello di sistema" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Non autorizzato a impostare le preferenze" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Manca il permesso per aggiornare il ticket" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Nessun utente/gruppo specificato" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Nessun utente/gruppo selezionato." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Nessuna chiave privata" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Nessuna coda soddisfa i criteri di ricerca." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Nessun diritto specificato" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Nessun diritto trovato" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Nessun diritto concesso." #: NOT FOUND IN SOURCE msgid "No search loaded" msgstr "Nessuna ricerca caricata" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Nessuna ricerca su cui operare." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Senza oggetto" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Questa chiave non esiste, o non è adatta per la firma" #: NOT FOUND IN SOURCE msgid "No ticket id specified" msgstr "Nessun identificativo di ticket specificato" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Nessun ticket trovato." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Nessun tipo transazione specificato" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nessuna chiave utilizzabile." #: NOT FOUND IN SOURCE msgid "No user or email address specified" msgstr "Nessun utente o indirizzo email specificato" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Nessuna utente soddisfa i criteri di ricerca." #: NOT FOUND IN SOURCE msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" msgstr "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Nessun valore inviato a _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Nessuno" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Nessuno" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Campo inesistente?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Non impostato" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Non trovato" #: NOT FOUND IN SOURCE msgid "Not logged in" msgstr "Accesso non effettuato" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Accesso non effettuato." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Non impostato" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Non ancora implementato." #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "Non ancora implementato...." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Note" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Impossibile inviare la notifica" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "invia notifica agli AdminCc" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "invia notifica agli AdminCc come commento" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "invia notifica ai Cc" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "invia notifica ai Cc come commento" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "invia notifica agli altri destinatari" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "invia notifica agli altri destinatari come commento" #: etc/initialdata:41 msgid "Notify Owner" msgstr "invia notifica all'incaricato" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "invia notifica all'incaricato come commento" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "invia notifica all'incaricato del ticket respinto" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notifica all'Incaricato l'approvazione del ticket, che ora può seguire il suo corso" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "invia notifica all'incaricato del ticket che tutte le approvazioni sono state concesse" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "invia notifica all'incaricato del ticket che alcune approvazioni sono state concesse" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notifica all'Incaricato l'approvazione del ticket parziale o completa" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Invia notifica a: incaricato, richiedenti, Cc e Cc amministrativi" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Invia notifica come commento a: incaricato, richiedenti, Cc e Cc amministrativi" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "invia notifica agli incaricati e AdminCc quando è necessario richiedere nuove approvazione" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notifica al Richiedente il completamento dell'approvazione del ticket" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Notifica al Richiedente l'approvazione parziale del ticket" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "invia notifica al richiedente" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "invia notifica ai richiedenti e ai Cc" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "invia notifica ai richiedenti e ai Cc come commento" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "invia notifica ai richiedenti, Cc e AdminCc" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "invia notifica ai richiedenti, Cc a AdminCc come commento" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Notifica messaggi da leggere" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Nov." #: NOT FOUND IN SOURCE msgid "November" msgstr "Novembre" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Numero di risultati per la ricerca" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OR" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Oggetto" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "L'oggetto non può essere creato" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "L'oggetto non può essere cancellato" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Oggetto creato" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Oggetto cancellato" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Oggetto di tipo %1 non accetta campi personalizzati" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Tipo oggetto non corrisponde" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "La lista oggetti è vuota" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Ott" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Oct." #: NOT FOUND IN SOURCE msgid "October" msgstr "Ottobre" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Offline" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Modifiche offline" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Upload richiesta offline" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "Il %1, %2 ha scritto:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Alla chiusura" #: etc/initialdata:143 msgid "On Comment" msgstr "All'arrivo di un commento" #: etc/initialdata:115 msgid "On Correspond" msgstr "All'arrivo di una corrispondenza" #: etc/initialdata:104 msgid "On Create" msgstr "Alla creazione" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Al cambio dell'incaricato" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Al cambio della priorità" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Al cambio di coda" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Se respinto" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Alla riapertura" #: etc/initialdata:178 msgid "On Resolve" msgstr "Alla risoluzione" #: etc/initialdata:149 msgid "On Status Change" msgstr "Al cambio di stato" #: etc/initialdata:109 msgid "On Transaction" msgstr "Ad ogni transazione" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Ccn una tantum" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Cc una-tantum" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Mostra le approvazioni solo per le richieste create dopo il %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Mostra le approvazioni solo per le richieste create prima del %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Mostra campi personalizzati solo per:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Aperto" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Ticket aperti" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Apri URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Apri" #: NOT FOUND IN SOURCE msgid "Open requests" msgstr "Richieste aperte" #: NOT FOUND IN SOURCE msgid "Open ticket" msgstr "Apri ticket" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Ticket aperti" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "Apre ticket (dalla lista) in una nuova finestra" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "Apre ticket (dalla lista) in un'altra finestra" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Apri i ticket all'arrivo di corrispondenza" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opzione" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Opzioni" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ordina per" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "Ordinamento" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Azienda" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Ticket originario: n°%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Registrata email in uscita riguardante un commento" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Registrata email in uscita" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Posta in uscita" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Al passare del tempo, la priorità cresce fino a" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Prende in carico ticket" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "PrendeInCaricoTicket" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Incaricato" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "'%1' non può prendere in carico questo ticket per carenza di autorizzazioni." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Cambiato incaricato da %1 a %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "L'incaricato non può essere impostato." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Cambiato forzatamente l'incaricato da %1 a %2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "In carico a" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "NomeIncaricato" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Pagina" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "Pagina %1 di %2" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Pagina 1 di 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Pagina non trovata" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Cercapersone" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Cercapersone" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "DerivaDa" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Password" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Promemoria password" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Password cambiata" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "La password non è stata impostata" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "La password deve essere lunga almeno %1 caratteri" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Password impostata" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "Password troppo corta" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Password: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Password: permesso negato" #: etc/initialdata:463 msgid "PasswordChange" msgstr "CambioPassword" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Le passwords non corrispondono." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Le password non corrispondono. La password non è stata cambiata" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Path di sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Persone" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Esegui un'azione personalizzata" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Path di include per Perl (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Configurazione perl" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Ordine di ricerca delle librerie Perl" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Operazione non consentita" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Permesso negato" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Dashboard Personale" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Gruppi personali" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Gruppi personali" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Gruppi personali:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Numeri telefonici" #: NOT FOUND IN SOURCE msgid "Placeholder" msgstr "Segnaposto" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Controlla l'URL e riprova." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Inserire correttamente la propria password" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Inserire la password attuale" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Possibili ricerche nascoste" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Preferenze" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Preferenze %1 per l'utente %2 ." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Preferenze salvate per %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Salvate preferenze dell'utente %1." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Preferenze salvate." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Chiave preferita: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Chiave preferita" #: NOT FOUND IN SOURCE msgid "Prefs" msgstr "Prefs" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Preparazione non necessaria" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Precedente" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Precedente" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "Pagina precedente" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "Pagina precedente" #: NOT FOUND IN SOURCE msgid "Pri" msgstr "Pri" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Utente/gruppo %1 not trovato." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Invia i messaggi riassuntivi a STDOUT; non inviare email; non marcare i messaggi come inviati" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Stampa questo messaggio" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Priorità" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "La priorità inizia da" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Riservatezza" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Riservatezza:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Chiave privata" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilegiato" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Stato previlegiato: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Utenti privilegiati" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Nell'elaborazione senza transazioni, qualche condizione o azione potrebbe fallire. Si prega di notare l'esistenza del parametro --transaction" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudogruppo per uso interno" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "E' richiesta la chiave pubblica '0x%1' per verificare la firma" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Ricerche" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Query" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Costruttore di query" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Query:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Coda" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Coda %1 non trovata" #: NOT FOUND IN SOURCE msgid "Queue '%1' not found\\n" msgstr "Coda '%1' non trovata\\n" #: NOT FOUND IN SOURCE msgid "Queue Keyword Selections" msgstr "Selezione delle parole chiave per la coda" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Nome della coda" #: NOT FOUND IN SOURCE msgid "Queue Scrips" msgstr "Scrips della coda" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "La coda esiste già" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Impossibile creare la coda" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Impossibile caricare la coda." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Coda creata" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Coda disabilitata" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Coda abilitata" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Id della coda" #: NOT FOUND IN SOURCE msgid "Queue is not specified." msgstr "Coda non specificata." #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Coda non trovata" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Permessi sulla coda" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Chiave della coda" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "AdminCcDellaCoda" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "CcDellaCoda" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "NomeCoda" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "OsservatoreCoda" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Code" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Le mie code" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Le code per cui sono AdminCc" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Ricerca veloce" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Creazione veloce di un ticket" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 per %2" #: NOT FOUND IN SOURCE msgid "RT %1 from Best Practical Solutions, LLC." msgstr "RT %1 da Best Practical Solutions, LLC." #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n" msgstr "RT %1. Copyright 1996-%1 Jesse Vincent \\n" #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-2002 Jesse Vincent \\n" msgstr "RT %1. Copyright 1996-2002 Jesse Vincent \\n" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Amministrazione di RT" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Email dell'amministratore di sistema" #: NOT FOUND IN SOURCE msgid "RT Authentication error." msgstr "Errore di autenticazione RT." #: NOT FOUND IN SOURCE msgid "RT Bounce: %1" msgstr "RT Bounce: %1" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "Configurazione RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Configurazione di RT" #: NOT FOUND IN SOURCE msgid "RT Configuration error" msgstr "Errore nella configurazione di RT" #: NOT FOUND IN SOURCE msgid "RT Critical error. Message not recorded!" msgstr "Errore critico. Messaggio not registrato!" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "Errore RT" #: NOT FOUND IN SOURCE msgid "RT Received mail (%1) from itself." msgstr "RT ha ricevuto email (%1) da se stesso." #: NOT FOUND IN SOURCE msgid "RT Recieved mail (%1) from itself." msgstr "RT ha ricevuto email (%1) da se stesso." #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "Self Service di RT" #: NOT FOUND IN SOURCE msgid "RT Self Service / Closed Tickets" msgstr "RT Self Service / Ticket chiusi" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Dimensione di RT" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "Variabili RT" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "Quadro di insieme" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "Quadro di insieme per l'utente %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT comunica con gli utenti segnalando nuovi ticket o nuova corrispondenza sui ticket esistenti. Per fare ciò deve sapere dove trovare sendmail (o un programma compatibile con sendmail tipo quello fornito da postfix). È anche necessario specificare un indirizzo da notificare in caso di ricezione di email non valide. Deve essere un indirizzo di una mailbox, non uno usato a sua volta per scrivere a RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "Quando viene visualizzato questo campo personalizzato, RT può includere il contenuto fornito da un altro web service." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "E' possibile creare questo valore del campo personalizzato come un collegamento ad un altro servizio" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Variabili principali di RT" #: NOT FOUND IN SOURCE msgid "RT couldn't authenticate you" msgstr "RT non ha potuto autenticarti" #: NOT FOUND IN SOURCE msgid "RT couldn't find requestor via its external database lookup" msgstr "RT non è riuscito a trovare il richiedente consultando in database esterno" #: NOT FOUND IN SOURCE msgid "RT couldn't find the queue: %1" msgstr "RT non ha trovato la coda: %1" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT non può memorizzare la tua sessione" #: NOT FOUND IN SOURCE msgid "RT couldn't validate this PGP signature. \\n" msgstr "RT non può verificare questa firma PGP. \\n" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT / %1" #: NOT FOUND IN SOURCE msgid "RT for %1: %2" msgstr "RT / %1: %2" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "RT ha eseguito i comandi" #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. RT viene distribuito con la Versione 2 della GNU General Public License." #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-2002 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT is © Copyright 1996-2002 Jesse Vincent <jesse@bestpractical.com>. RT viene distribuito con la Versione 2 della GNU General Public License." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT è un sistema di gestione delle richieste, progettato per gestire intelligentemente e efficientemente attività, problemi, richieste, difetti o qualunque altra evento che richieda una azione di risposta." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT è usato nelle aziende più importanti così come in ditte individuali, pubbliche amministrazioni, istituti scolastici, ospedali, associazioni senza scopo di lucro, biblioteche, progetti open-source e in qualsiasi altro tipo di ente in tutti e sette i continenti (sì, anche l'antartide)." #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT userà questo utente per connettersi al database. Verrà creato se non esiste." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT crea un utente di nome \"root\", usando questa come password." #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "Il sistema cercherà qualunque altra cosa inserita nel soggetto dei ticket" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT sostituirà %1 e %2 rispettivamente con l'id del record e il valore del campo personalizzato" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT sostituirà __id__ e __CustomField__ rispettivamente con l'id del record e il valore del campo personalizzato" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT userà questa stringa per identificare univocamente questa installazione, e verificherà che esista nell'oggetto di ogni messaggio email ricevuto per decidere a quale ticket questo deve essere abbinato. E' consigliabile impostare la stringa al nome del dominio internet (es: dominio.it)." #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "Con RT è possibile usare i database MySQL, PostgreSQL, Oracle e SQLite." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT/Admin/Modifica il gruppo %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "L'opzione RTAddressRegexp nella configurazione non corrisponde a %1" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Nome reale" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "NomeReale" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Destinatario" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Registra tutti gli aggiornamenti" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Numero ricorsivo" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Aggiunto riferimento da %1" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Cancellato riferimento da %1" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Aggiunto riferimento a %1" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Cancellato riferimento a %1" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "È un riferimento per" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "RiferimentoPer" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Fa riferimento a" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "FaRiferimentoA" #: NOT FOUND IN SOURCE msgid "Refine" msgstr "Rifinisci" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "Rifinisci la ricerca" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Aggiorna" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Ricarica la pagina Home ogni 10 minuti." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Ricarica la pagina home ogni 120 minuti." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Ricarica la pagina home ogni 2 minuti." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Ricarica la pagina home ogni 20 minuti." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Ricarica la pagina home ogni 5 minuti." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Ricarica la pagina home ogni 60 minuti." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Ricarica i risultati di ricerca ogni 10 minuti." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Rinfresca il risultato della ricerca ogni 120 minuti." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Rinfresca il risultato della ricerca ogni 2 minuti." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Rinfresca il risultato della ricerca ogni 20 minuti." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Rinfresca il risultato della ricerca ogni 5 minuti." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Rinfresca il risultato della ricerca ogni 60 minuti." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Aggiorna questa pagina ogni %1 minuti." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Promemoria '%1' aggiunto" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Promemoria '%1' completato" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Promemoria '%1' riaperto" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Promemoria ticket #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Promemoria" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Promemoria per ticket #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Rimuovi AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Elimina preferito" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Rimuovi Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Rimuovi richiedente" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Risposta" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Indirizzo a cui indirizzare le risposte" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Rispondi ai richiedenti" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Rispondi ai ticket" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "RispondiAlTicket" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Rapporti" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Richiedente" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "Indirizzo email del richiedente" #: NOT FOUND IN SOURCE msgid "Requestor(s)" msgstr "Richiedente(i)" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "GruppoDiRichiedenti" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Richiedenti" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Le richieste devono essere soddisfatte entro" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Il parametro obbligatorio '%1' non è stato specificato" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Azzera" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Reimposta codice segreto di autenticazione" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Reimposta ai valori di default" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Casa" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Risolvi" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Risolvi il ticket n°%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Risolto" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Risolto dall'incaricato" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Risolto in un periodo temporale" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Ticket risolti in un periodo temporale, raggruppati per incaricato" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Ticket risolti, raggruppati per incaricato" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "TempoDaRisoluzione" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Rispondi" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "Risposta ai richiedenti" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Risultati" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "Risultati per pagina" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Torna al ticket" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Ridigita Password" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Annulla modifiche" #: NOT FOUND IN SOURCE msgid "Right %1 not found for %2 %3 in scope %4 (%5)\\n" msgstr "Diritto %1 non trovato per %2 %3 limitatamente a %4 (%5)\\n" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Diritto delegato" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Diritto concesso" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Diritto caricato" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Il diritto non può essere revocato" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Diritto non trovato" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Diritto non caricato." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Diritto revocato" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Diritti" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "I diritti per %1 non possono essere concessi" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "I diritti per %1 non possono essere revocati" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Ruoli" #: NOT FOUND IN SOURCE msgid "RootApproval" msgstr "ApprovazioneAmministratore" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Righe" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Righe per riquadro" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Righe per pagina" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite è una database che non richiede un server o qualsiasi tipo di configurazione esterna. Gli sviluppatori di RT lo raccomandano per prove, demo o sviluppo, ma non è certamente adatto per un server di produzione con un certo traffico." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sab" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Sab." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Sabato" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Salva" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Salva modifiche" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Salva preferenze" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Salva come nuovo" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Salva modifiche" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "%1 %2 salvato" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Ricerca salvata %1 non trovata" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Grafici salvati" #: NOT FOUND IN SOURCE msgid "Saved search %1" msgstr "Ricerca %1 salvata" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Ricerche salvate" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip n°%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip creato" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Campi dello scrip" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip eliminato" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Scrip e destinatari" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "Scrips per %1\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scrips che si applicano a tutte le code" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Ricerca" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: NOT FOUND IN SOURCE msgid "Search Criteria" msgstr "Criteri di ricerca" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Preferenze per la ricerca" #: NOT FOUND IN SOURCE msgid "Search attribute load failure" msgstr "Errore nel caricamento degli attributi della ricerca" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Ricerca le richieste di approvazione" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Ricerca ticket" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Ricerca di ticket. Inserire l'id per il ticket, il nome per la coda, lo username per l'incaricato o l'indirizzo email per il richiedente. Ogni termine verrà cercato nel corpo e negli allegati del ticket." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Opzioni di ricerca" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Risultati della ricerca ordinati per %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Intervallo di rinfresco dei risultati della ricerca" #: NOT FOUND IN SOURCE msgid "Search update: %1" msgstr "Aggiornamento della ricerca: %1" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "E' possibile effettuare ricerche a testo libero per ogni parola nella storia completa del ticket scrivendo fulltext:parola. Attenzione la ricerca a testo libero può richiedere molto tempo." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Codice di autenticazione segreto" #: bin/rt-crontool:350 msgid "Security:" msgstr "Protezione:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Vedi anche:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Vedi i valori per i campi personalizzati" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Vedi campi personalizzati" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Vedi letteralmente i messaggi in uscita e i loro destinatari" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Vedi commenti privati del ticket" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Vedi riassunto dei ticket" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "VediCampoPers." #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "VedeCruscotti" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "VediGruppo" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "VedeCruscottiDiGruppo" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "VedePropriCruscotti" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "VediCoda" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Seleziona" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Scegli il tipo di database" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Scegli un campo personalizzato" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Seleziona un gruppo" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Seleziona una coda" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Scegli una coda per il nuovo ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Seleziona un utente" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Scegli un'altra lingua" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Seleziona un campo personalizzato" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Scegli i campi personalizzati validi per tutte le code" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Seleziona i campi personalizzati per tutti i gruppi degli utenti" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Seleziona i campi personalizzati per tutti gli utenti" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Seleziona i campi personalizzati per i ticket in tutte le code" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Seleziona i campi personalizzati per le transazioni relative ai ticket in tutte le code" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Seleziona il cruscotto" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Seleziona il gruppo" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Elenco a selezione multipla" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Elenco a selezione singola" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Seleziona la coda" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Seleziona le code da visualizzare nella pagina \"Quadro di insieme\"" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Seleziona lo scrip" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Seleziona il modello" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Seleziona un massimo di %1 valori" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Seleziona l'utente" #: NOT FOUND IN SOURCE msgid "SelectMultiple" msgstr "SelezioneMultipla" #: NOT FOUND IN SOURCE msgid "SelectSingle" msgstr "SelezioneSingola" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Campi personalizzati selezionati" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "La chiave selezionata non è più ritenuta affidabile, o non esiste più" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Oggetti selezionati" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Selezioni modificate. Per favore salva i tuoi cambiamenti" #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "Self Service" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Email inviata" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Invia una mail a tutti gli osservatori" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Invia una mail atutti gli osservatori come \"commento\"" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Invia email all'incaricato e a tutti gli osservatori" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Invia messaggio come commento all'incaricato e a tutti gli osservatori" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Invia mail ai richiedenti e Ccs" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Invia mail come commento a richiedenti e Cc" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Invia un messaggio ai richiedenti" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Invia mail a Cc e Bcc esplicitamente elencati" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Invia mail ai Cc" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Invia mail ai Cc come commento" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Invia mail ai Cc amministrativi" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Invia mail ai Cc amministrativi come commento" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Invia mail all'incaricato" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Set" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Set." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "Settembre" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Impostazioni" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "Vuoi ricevere una mail da RT per le tue modifiche ai Ticket?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Mostra" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "Mostra richieste di approvazione" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Mostra colonne" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Mostra i risultati" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Mostra le proprietà dei ticket al livello %1" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Mostra le richieste approvate" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Mostra anche" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Mostra info di base" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Mostra le richieste negate" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Mostra i dettagli" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Mostra le descrizioni del collegamento" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Mostra la storia partendo dal passato" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Mostra le richieste in attesa" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Mostra le richieste in attesa di altre approvazioni" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "Mostra commenti privati del ticket" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "Mostra riassunto dei ticket" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "MostraACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "MostraPannelloApprovazione" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "MostraTabConfigurazione" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "MostraEmailUscente" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "MostraRicercheSalvate" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "MostraScrips" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "MostraModello" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "MostraTicket" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "MostraCommentiAlTicket" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Distruttore di ticket" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Lo Shredder necessita di una cartella sul disco del server per archiviare gli oggetti eliminati dal database. Verifica che la cartella %1 esista, e che sia scrivibile dall'utente impersonato dal server web." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Lo Shredder necessita di una cartella sul disco del server per archiviare gli oggetti eliminati dal database. Verifica che la cartella %1 esista, e che sia scrivibile dall'utente impersonato dal server web." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Barra laterale" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Firma" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Firma se non diversamente specificato" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Registra come richiede o come Cc del ticket o della coda" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Registra come AdminCc del ticket o della coda" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Firma" #: NOT FOUND IN SOURCE msgid "Signed in as %1" msgstr "Accesso effettuato come %1" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Firma disabilitata" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Firma abilitata" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Ricerca Semplice" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Singolo" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Nome del sito" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Carattere" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Salta menu" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Salto gli utente disabilitati" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Piccolo" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Alcuni browser possono solo visualizzare dallo stesso dominio del server su cui è installato RT" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Qualcosa è andato storto. Contatta il supporto tecnico" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordinamento" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "Chiave di ordinamento" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "Ordina i risultati per" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "Ordinamento" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Ordinamento" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Sorgente" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Specificare se viene eseguito settimanalmente o giornalmente." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Foglio di calcolo" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Tappa" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: NOT FOUND IN SOURCE msgid "Stalled" msgstr "In stallo" #: NOT FOUND IN SOURCE msgid "Start page" msgstr "Pagina iniziale" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Iniziato" #: NOT FOUND IN SOURCE msgid "Started date '%1' could not be parsed" msgstr "Impossibile interpretare data inizio '%1'" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "TempoDaInizio" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "InizioPrevisto" #: NOT FOUND IN SOURCE msgid "Starts By" msgstr "Inizio previsto il" #: NOT FOUND IN SOURCE msgid "Starts date '%1' could not be parsed" msgstr "Impossibile interpretare data inizio previsto '%1'" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "TempoDaInizioPrevisto" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Provincia" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Stato" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Cambiamento di stato" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Cambiato lo stato da %1 a %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: NOT FOUND IN SOURCE msgid "StatusChange" msgstr "CambiamentoStato" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Sottrai" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Sottrae ticket" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "SottraeTicket" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Passo %1 di %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Sottratto da %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Sottratto da %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stile" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Oggetto" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Marcatore da aggiungere al campo 'Oggetto'" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "L'oggetto diventa %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "SubjectTag" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "SubjectTag impostato a %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Invia" #: NOT FOUND IN SOURCE msgid "Submit Workflow" msgstr "Imposta workflow" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Abbonati" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Abbonati al cruscotto %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Abbonati ai cruscotti" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "AbbonatiAlCruscotto" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Abbonati al cruscotto %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Abbonamento" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Impossibile creare l'abbonamento: %1" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Completato con successo" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Dati decrittografati correttamente" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Dati crittografati correttamente" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Dom" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Dom." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Domenica" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "SuperUtente" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Sospeso" #: NOT FOUND IN SOURCE msgid "System" msgstr "Sistema" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Configurazione del sistema" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Dashboard Sistema" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Predefinito di sistema" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Errore di sistema" #: NOT FOUND IN SOURCE msgid "System Error. Right not granted." msgstr "Errore di sistema. Diritto non concesso." #: NOT FOUND IN SOURCE msgid "System Error. right not granted" msgstr "Errore di sistema. Diritto non concesso" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Errore di sistema: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Strumenti di sistema" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Errore di sistema. Diritto non delegato." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Errore di sistema. Diritto non concesso." #: NOT FOUND IN SOURCE msgid "System error. Unable to grant rights." msgstr "Errore di sistema. Impossibile concedere i diritti." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Gruppi di sistema" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Permessi di sistema" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup per uso interno" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRING" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Prendi in carico" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Prendi in carico ticket" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "PrendiInCaricoTicket" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Preso in carico" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Serve un po' di informazioni sulla localizzazione del database che RT utilizzerà" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Modello" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Modello n°%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Aggiunto il modello n°%1" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Impossibile trovare il modello '%1'" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Modello eliminato" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Il modello è vuoto" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Il Template è un argomento obbligatorio" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Modello non trovato" #: NOT FOUND IN SOURCE msgid "Template not found\\n" msgstr "Modello non trovato\\n" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Modello elaborato" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Errore nell'elaborazione del modello" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Modelli" #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "Modelli per %1\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "Testo" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Il file di test non è visualizzato perché disabilitato nelle preferenze." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Il valore attuale è già questo" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Questo campo personalizzato non ammette questo valore" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Il valore è lo stesso" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Questo utente/gruppo ha già questo diritto" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Questo utente/gruppo è già %1 per questa coda" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Questo utente/gruppo è già %1 per questo ticket" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Questo utente/gruppo non è %1 per questa coda" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Questo utente/gruppo non è %1 per questo ticket" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "La coda non esiste" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Il ticket ha dipendenze non risolte" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "L'utente ha già questo diritto" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "L'utente ha già il ticket in carico" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "L'utente non esiste" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "L'utente è già previlegiato" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "L'utente è già non previlegiato" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Ora l'utente è previlegiato" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Ora l'utente è non previlegiato" #: NOT FOUND IN SOURCE msgid "That user is now unprivilegedileged" msgstr "Ora l'utente è non previlegiato" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "L'utente non può prendere in carico ticket da questa coda" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Non è un identificativo numerico" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Dati di base" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Il Cc di un ticket" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Password dell'amministratore del database" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Il Cc amministrativo di un ticket" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "Il commento è stato registrato" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Il nome DNS del tuo server database (es 'db.reteaziendale.local')" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Il comando seguente troverà tutti i ticket attivi nella coda 'general' e ne imposterà la priorità a 99 se nessuno li ha toccati nelle ultime 4 ore:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Le ricerche seguenti sono state cancellate e saranno rimosse dal cruscotto appena il relativo riquadro verrà aggiornato." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Le seguenti ricerche potrebbero non essere visibili a tutti gli utenti che possono vedere questo cruscotto" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "La chiave è stata disabilitata" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "La chiave è stata revocata" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "La chiave è scaduta" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "L'affidabilità della chiava è completa" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "La chiave è considerata affidabile" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Il nuovo valore è stato impostato." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "L'incaricato del ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "La pagina richiesta non è disponibile" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Il richiedente del ticket" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Le impostazioni scelte sono salvate in %1" #: NOT FOUND IN SOURCE msgid "The settings you've chosen are stored in %1. You can edit this file to refine your configuration further. You can prevent this installation wizard from being shown again by running `chmod -w '%1'`." msgstr "Le impostazioni scelte sono state salvate nel file %1. Puoi editare quel file per ritoccare la configurazione di RT. Per evitare che al prossimo accesso la procedura di installazione guidata sia visualizzata di nuovo, esegui il comando `chmod -w '%1'`." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Il sistema non può firmare i meggaggi email in uscita. Normalmente significa che la passphrase non è impostata correttamente, o che l'agente GPG non sta funzionando. Avvisa immediatamente l'amministratore di sistema. Gli indirizzi email che evidenziano il problema sono:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Sono disponibili varie chiavi crittografiche" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Questo ticket contiene messaggi non letti" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Il livello di affidabilità di questa chiave è limitato" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Nessuna chiave crittografica disponibile" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "È disponibile una chiave crittografica, ma il livello di affidabilità non è impostato." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Questi commenti non vengono normalmente mostrati all'utente" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Le seguenti opzioni di configurazione sono il minimo necessario per consentire a RT di funzionare. È richiesto l'inserimento del nome di questa installazione di RT, e il nome DNS che verrà usato per raggiungerla. È anche necessario fornire una password da usare per l'amministratore di sistema." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "L'oggetto non ammette questo campo personalizzato" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Questa funzionalità è riservata agli amministratori di sistema" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Potrebbe significare che la directory '%1' non è scrivibile, oppure che una tabella del database è mancante o corrotta." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Il messaggio sarà inviato a..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: NOT FOUND IN SOURCE msgid "This ticket %1 %2 (%3)\\n" msgstr "Il ticket %1 %2 (%3)\\n" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Questo strumento permette di eseguire qualsiasi modulo perl da dentro RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "La transazione sembra non avere alcun contenuto" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "I %1 ticket a maggior priorità richiesti da questo utente" #: NOT FOUND IN SOURCE msgid "This user's 25 highest priority tickets" msgstr "I 25 ticket a maggior priorità richiesti da questo utente" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Gio" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Gio." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Giovedì" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Ticket" #: NOT FOUND IN SOURCE msgid "Ticket # %1 %2" msgstr "Ticket n° %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket # %1 Jumbo update: %2" msgstr "Ticket n° %1 aggiornamento Jumbo: %2" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Ticket n°%1 aggiornamento Jumbo: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Grafico delle relazioni del ticket n°%1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Ticket n° %1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Ticket n°%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Ticket %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Creato ticket %1 nella coda '%2'" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "Caricato ticket %1\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Ticket %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Campi personalizzati del ticket" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Cronologia del ticket n° %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "Identificativo ticket" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Ticket risolto" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Ricerca ticket" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Transazioni sul ticket" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "Allegato al ticket" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Contenuto del ticket" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Tipo del contenuto del ticket" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "A causa di un errore interno non è stato possibile creare il ticket" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Impossibile caricare il ticket" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "Ticket creato" #: NOT FOUND IN SOURCE msgid "Ticket creation failed" msgstr "Creazione del ticket fallita" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "Ticket eliminato" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Visualizzazione ticket" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "Identificativo del ticket non trovato" #: NOT FOUND IN SOURCE msgid "Ticket killed" msgstr "Ticket eliminato" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Metadati del ticket" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "Ticket non trovato" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Stato del ticket cambiato" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "Osservatori del ticket" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "Modulo di ricerca TicketSQL" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Ticket" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Ticket %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Ticket %1 da %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Ticket creati dopo" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Ticket creati prima" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "Ticket da %1" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Ticket risolti dopo" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Ticket risolti prima" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Ticket che dipendono da questa approvazione:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Tempo stimato" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Tempo rimasto" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tempo lavorato" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Tempo rimanente" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tempo impiegato per l'elaborazione" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Tempo impiegato" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "Tempo Stimato" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "Tempo Rimanente" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "Tempo Impiegato" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Fuso orario" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Titolo" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "A" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "Per generare una diff dopo il commit:" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "Per generare una diff dopo il commit:\\n" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Per richieste di supporto, formazione, personalizzazioni o acquisto di licenze, si prega di contattare %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Ultima Comunicazione a Richiedenti" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "Tempo Da Ultimo Contatto Richiedente" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Strumenti" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Totale" #: etc/initialdata:249 msgid "Transaction" msgstr "Transazioni" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transazione %1 ripulita" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transazione creata" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Campi personalizzati della transazione" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create fallita, devi specificare il tipo e l'identificativo dell'oggetto" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "DataTransazione" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Le transazioni sono immutabili" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Affidabilità" #: NOT FOUND IN SOURCE msgid "Trying to delete a right: %1" msgstr "Provo a eliminare un diritto: %1" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Mar" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Mar." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Martedì" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tipo" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Il tipo è cambiato da '%1' a '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Impossibile determinare il tipo o l'id dell'oggetto" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Impossibile abbonarsi al cruscotto %1: permesso negato" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Non Implementato" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Username unix" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Sconosciuto (nessun valore di affidabilità assegnato)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Sconosciuto (questo valore è nuovo per il sistema)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "ContentEncoding sconosciuto %1" #: NOT FOUND IN SOURCE msgid "Unknown field: $key" msgstr "Campo sconosciuto: $key" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Campo sconosciuto: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "TogliLimiti" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Illimitato" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Ricerca senza nome" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Non Privilegiato" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Campi personalizzati non selezionati" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Oggetti non selezionati" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Annulla chiave privata" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Non Preso" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Aggiornamento" #: NOT FOUND IN SOURCE msgid "Update All" msgstr "Aggiorna tutti" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Aggiorna grafico" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "Identificativo aggiornamento" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Aggiorna ticket" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Tipo aggiornamento" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "Aggiorna tutti questi ticket contemporaneamente" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "Aggiorna email" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Aggiorna formato e avvia ricerca" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Aggiorna ticket multipli" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "Aggiorna nome" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Aggiornamento non registrato." #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "Aggiorna i ticket selezionati" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "Aggiorna la firma" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Aggiorna il ticket" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "Aggiorna il ticket n° %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Aggiorna il ticket n°%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Aggiorna il ticket n°%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Il tipo aggiornamento non era ne' corrispondenza ne' commento." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "AggiornaStato" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Aggiornato" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Ricerca salvata \"%1\" aggiornata" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Upload" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Upload file multipli" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Upload immagini multiple" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Upload file singolo" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Upload immagine singola" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Upload fino a %1 file" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Upload fino a %1 immagini" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Upload delle modifiche" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Utilizzo: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Usa SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Usa regole css per visualizzare testo preformattato ma con a-capo dove necessario. Non funziona bene con InternetExplorer 6, meglio usare l'opzione precedente" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Usa il valore predefinito (%1)" #: NOT FOUND IN SOURCE msgid "Use fixed-width font to display plaintext messages" msgstr "Usa un font a spaziatura fissa per mostrare i messaggi contenenti solo testo" #: NOT FOUND IN SOURCE msgid "Use monospace font" msgstr "Usa un font a spaziatura fissa" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Usa altri strumenti di amministrazione di RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Usa il valore predefinito dal sistema (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Usa questo per proteggere il formato del testo di base." #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Utente" #: NOT FOUND IN SOURCE msgid "User %1 %2: %3\\n" msgstr "Utente %1 %2: %3\\n" #: NOT FOUND IN SOURCE msgid "User %1 Password: %2\\n" msgstr "Utente %1 Password: %2\\n" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Impossibile trovare l'utente '%1'" #: NOT FOUND IN SOURCE msgid "User '%1' not found" msgstr "Utente '%1' non trovato" #: NOT FOUND IN SOURCE msgid "User '%1' not found\\n" msgstr "Utente '%1' non trovato\\n" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Utente (creato - scadenza)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Definito dall'utente" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Condizioni e azioni definite dall'utente" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "Username" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "Username" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Diritti dell'utente" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "L'utente ha richiesto un aggiornamento di tipo sconosciuto sul campo personalizzato %1 per %2 l'oggetto n°%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Impossibile creare l'utente: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Utente creato" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Gruppi definiti dall'utente" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Utente disabilitato" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Utente abilitato" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "L'utente non ha un indirizzo email" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Utente caricato" #: NOT FOUND IN SOURCE msgid "User notified" msgstr "Utente notificato" #: NOT FOUND IN SOURCE msgid "User view" msgstr "User view" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Chiavi GnuPG dell'utente" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Gruppi definiti dall'utente" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Username" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Formato Nome Utente" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Utenti" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Utenti che soddisfano il criterio di ricerca" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Uso la transazione n°%1" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Query valida" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validazione" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Valore" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "ValoreDellaCoda" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Valori" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Variabile" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Vari report di RT" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Versione" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Visualizza i cruscotti per questo gruppo" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Visualizza i cruscotti personali" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Visualizza i cruscotti di sistema" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "altezza dell'editor WYSIWYG" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "Editor visuale di messaggi (WYSIWYG)" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Attenzione! NON è firmato!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Attenzione: nel tuo profilo non hai impostato un indirizzo email, non riceverai questo cruscotto finché non l'avrai fatto" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Osserva" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "OsservaComeAdminCc" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Osservatore" #: NOT FOUND IN SOURCE msgid "Watcher loaded" msgstr "Osservatore caricato" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "GruppoOsservatori" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Osservatori" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "La connessione al database come amministratore è stata verificata con successo. Ora puoi cliccare 'Configurazione di base' per continuare la configurazione di RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "E' necessario specificare il nome del database da usare per RT e dove è situato. Servono anche username e password che RT userà per accedere al DB. Le credenziali di amministratore verranno usate solo per creare il database e le tabelle se necessario. Durante il passo 6 dell'installazione guidata, con queste informazioni sarà possibile creare e inizializzare il database di RT." #: NOT FOUND IN SOURCE msgid "We were able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Il database è operativo e accetta normalmente le connessioni amministrative. Clicca 'Imposta sistema' per continuare la configurazione." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Porta web" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "WebEncoding" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Mer" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Mer." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Mercoledì" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Riassunto settimanale" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Benvenuto a RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Cosa ho fatto oggi" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Cos'è RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Quando RT non può elaborare un messaggio, a chi deve essere inoltrato?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Quando RT invia un email, imposta il mittente e l'indirizzo di risposta in modo che un utente possa aggiungere contenuti al ticket semplicemente usando la funzione 'Rispondi al mittente' del programma di posta elettronica. RT usa indirizzi email diversi per le normali risposte e per i commenti interni. Questi indirizzi email possono essere diversi per ogni coda, e devono essere configurati per poter usare il programma rt-mailgate." #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "Quando un ticket ha ricevuto tutte le approvazioni richieste, aggiungi una corrispondenza al ticket originale" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "Quando un ticket riceve una qualsiasi delle approvazioni richieste, aggiungi una corrispondenza al ticket originale" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Quando viene creato un ticket" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Quando una richiesta di approvazione viene creata, notifica chi ha in carico il ticket e gli AdminCc che devono approvarlo" #: etc/initialdata:110 msgid "When anything happens" msgstr "Quando succede qualsiasi cosa" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Quando clicchi 'Verifica connessione al database' potresti sperimentare un certo ritardo mentre RT prova ad effettuare una connessione al server DB." #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Quando un ticket viene chiuso" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Ogni volta che un ticket viene respinto" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Quando un ticket viene riaperto" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Quando un ticket viene risolto" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Quando cambia colui che ha in carico il ticket" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Quando cambia la priorità di un ticket" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Quando il ticket si sposta in un'altra coda" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Quando cambia lo stato di un ticket" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Quando si verifica una condizione definita dall'utente" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Quando arrivano commenti" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Quando arrivano corrispondenze" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Dove si trova il programma sendmail sul tuo server" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Azzerare" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Lavoro" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "Work offline" msgstr "Lavoro offline" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "TelefonoLavoro" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Impiegato" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Sì" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Hai già in carico questo ticket" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "E' stato scelto di crittografare i messaggi email in uscita, ma ci sono problemi con le chiavi pubbliche di alcuni destinatari. Per continuare è necessario risolvere i problemi con le chiavi pubbliche, disabilitare l'invio dell'email ai destinatari con problemi di chiave pubblica, oppure disabilitare la crittografia." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "E' stato scelto di crittografare i messaggi email in uscita, ma ci sono problemi con la chiave pubblica di un destinatario. Per continuare è necessario risolvere il problemi con la chiave, disabilitare l'invio dell'email al destinatario con problemi di chiave pubblica, oppure disabilitare la crittografia." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Non sei un utente autorizzato" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Puoi andare al primo messaggio non letto oppure andare al primo messaggio non letto e marcare tutti i messaggi come visti." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "E' possibile anche modificare la ricerca predefinta stessa" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Non puoi impostare la password." #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Puoi solo riassegnare ticket che hai in carico, o che non sono ancora assegnati" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "E' possibile prendere in carico solo i ticket non assegnati" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Non hai diritti di Super Utente" #: NOT FOUND IN SOURCE msgid "You don't have permission to view that ticket.\\n" msgstr "Non hai i permessi per visualizzare questo ticket.\\n" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Hai trovato %1 ticket nella coda %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Ti sei scollegato da RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Non hai l'autorizzazione per creare ticket in questa coda." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Non puoi creare ticket in questa coda." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Devi fornire una password di amministratore" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Verrai indirizzato direttamente alla pagina di accesso. Potrai accedere usando %1 come username, e la password specificata precedentemente." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Verrai indirizzato direttamente alla pagina di accesso. Potrai accedere usando root come username, e la password specificata precedentemente." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Scegli il database che tu, o che il tuo amministratore di sistema, preferite usare." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Questa pagina viene visualizzata quando il server RT è stato avviato senza un database attivo. Con tutta probabilità questa è la prima volta che provi ad avviare RT. Clicca Iniziamo! qui sotto per eseguire la configurazione guidata del server e del database." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Questa pagina viene visualizzata quando il server RT è stato avviato senza un database attivo. Con tutta probabilità questa è la prima volta che provi ad avviare RT. Clicca \"%1\" qui sotto per eseguire la configurazione guidata del server e del database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Collegati di nuovo" #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "Le tue %1 richieste" #: NOT FOUND IN SOURCE msgid "Your RT administrator has misconfigured the mail aliases which invoke RT" msgstr "L'amministratore RT non ha configurato correttamente l'alias di email che invoca RT" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Password attuale" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Password non impostata." #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "La tua richiesta è stata approvata da %1. Potrebbero essere necessarie altre approvazioni." #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "La tua richiesta è stata approvata." #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "La tua richiesta è stata respinta." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Il tuo username o la tua password non sono corretti" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "CAP" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Giù]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Su]" #: NOT FOUND IN SOURCE msgid "[no subject]" msgstr "[senza oggetto]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nessuno]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "delimita con un tag 
 gli allegati contenenti testo semplice"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "dopo il"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "permetti la creazione di ricerche salvate"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "permetti il caricamento di ricerche salvate"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "come concesso a %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "barra"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "prima del"

#: NOT FOUND IN SOURCE
msgid "belongs to"
msgstr "appartiene a"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "dal basso verso l'alto"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "clicca per applicare il campo personalizzato a tutti gli oggetti."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "clicca per rimuovere il campo personalizzato da tutti gli oggetti, e attivare la possibilità di scegliere specifici oggetti a cui applicarlo in seguito."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "clicca per aggiungere"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "clicca per selezionare/deselezionare tutti gli oggetti in una sola volta"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "chiuso"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "conciso"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "contiene"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "contenuto"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "content-type"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "configurazione base"

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "corrispondenza (probabilmente) non inviata"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "corrispondenza inviata"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "campo personalizzato '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "quotidianamente"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "quotidianamente alle %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "giorni"

#: NOT FOUND IN SOURCE
msgid "dead"
msgstr "morto"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "cancella"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "cancellato"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "visualizza allegati di testo formattati e impaginati"

#: NOT FOUND IN SOURCE
msgid "does not belong to"
msgstr "non appartiene a"

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "non corrisponde a"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "non contiene"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "non corrisponde"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "scarica"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "uguale a"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "errore: impossibile spostare in basso"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "errore: impossibile spostare a sinistra"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "errore: impossibile spostare in alto"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "errore: niente da cancellare"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "errore: niente da spostare"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "errore: niente da invertire"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "ogni"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "plugin eseguito con successo"

#: NOT FOUND IN SOURCE
msgid "false"
msgstr "falso"

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "nome file"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "completo"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "maggiore di"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "gruppo '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "ore"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "Codice"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "uguale a"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "diverso da"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "chiave disabilitata"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "chiave scaduta"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "chiave revocata"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "da sinistra a destra"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "minore di"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginale"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "corrisponde a"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "profondità massima"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minuti"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "mensilmente"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "mensilmente (il %1 del mese) alle %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "mesi"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "mai"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "nuovo"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "no"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "nessun nome"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "nessun valore"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "nessuno"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "diverso da"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nulla"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "oggetti rimossi con successo"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "il"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "al giorno"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "uno"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "aperto"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "apri/chiudi"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "altro..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "Gruppo personale '%1' per l'utente '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "torta"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "il plugin ha restituito una lista vuota"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "coda %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "respinto"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "risolto"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "da destra a sinistra"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sec"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "vedi lista oggetti sottostante"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "Mostra pannello approvazione"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "Mostra configurazione"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "configurazione locale"

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "foglio di calcolo"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "in stallo"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "righe riepilogative"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistema %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "gruppo di sistema '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "il componente chiamante non ha specificato il perché"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "l'indirizzo email che verrà usato per default come mittente e Reply-To nei messaggi riguardanti i commenti"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "l'indirizzo email che verrà usato per default come mittente e Reply-To nei messaggi riguardanti la corrispondenza"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "ticket n°%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "dall'alto verso il basso"

#: NOT FOUND IN SOURCE
msgid "true"
msgstr "vero"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "definitivo"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "gruppo %1 senza descrizione"

#: NOT FOUND IN SOURCE
msgid "undescripbed group %1"
msgstr "gruppo %1 senza descrizione"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "illimitato"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "utente %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "prolisso"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "settimanalmente"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "settimanalmente (il %1) alle %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "settimane"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "numero della porta sulla quale il server riceverà le connessioni, es. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "comprese le intestazioni"

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "con il modello %1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "anni"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "sì"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/pt.po0000664000175000017500000106023312262650742013762 0ustar  chmrrchmrr#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:39+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " %1 apagado"

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 alterado para %2."

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 gravado"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (sem chave pública)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (não confiável)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: NOT FOUND IN SOURCE
msgid "$1"
msgstr "$1"

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$prefix %1"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 adicionado"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "há %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 alterado para %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 apagado"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 apagado."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 renomeado para %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 gravado."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr ""

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 com modelo %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) por %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (inalterado)"

#: NOT FOUND IN SOURCE
msgid "%1 (day %2) at %3"
msgstr "%1 (dia %2) em %3"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (do painel %2)"

#: NOT FOUND IN SOURCE
msgid "%1 (on %2) at %3"
msgstr "%1 (em %2) às %3"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ajustar opção de configuração LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Um argumento a passar a %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Actualização do estado dos Output para  STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Especificar id do template que quer usar"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Epecificar se quer utilizar 'primeira', 'ultima' ou 'todas' as transações"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Especifique o nome ou ID do(s) template(s) que pretende usar"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Especificar o modulo de acção que quer usar"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Especificar a lista de tipos de transacções, separada por virgulas, que quer usar"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Especificar o modulo de condições que quer usar"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Especifique o módulo de pesquisa a utilizar"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify the type of a transaction you want to use"
msgstr "%1 - Especifique o tipo de transacção que quer usar"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Paineis"

#: NOT FOUND IN SOURCE
msgid "%1 Dashboards"
msgstr "%1 Painéis de controle"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 ScripAction carregado"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 adicionado como valor para %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 já existe e tem as tabelas do RT, mas não contém os metadados. O passo 'Initialize Database' a executar posteriormente pode inserir os metadados nesta tabela. Se é aceitável, clique em 'Customize Basics' abaixo para continuar a customizar o RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 já existe, mas não contem as tabelas do RT, nem  contém os metadados. O passo 'Initialize Database' a executar posteriormente pode inserir os metadados e tabelas nesta tabela. Se é aceitável, clique em 'Customize Basics' abaixo para continuar a customizar o RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 parece ser um objecto local, mas não está na base de dados"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 parece estar totalmente inicializado. Não é necessario criar tabelas ou inserir metadados, mas pode continuar a personalizar o RT clicando 'Personalização base' abaixo"

#: NOT FOUND IN SOURCE
msgid "%1 at %2"
msgstr "%1 em %2"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 por %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 alterado de %2 para %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 gráfico por %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "cópia %1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 configuração de raiz"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 não pôde ser definido para %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 estado não foi mudado para resolvido. RT's Database pode estar inconsistente."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 criado"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 apagado"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 inactivo"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 não existe"

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 activo"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 tickets com maior prioridade da minha responsabilidade"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 é uma ferramenta para manipular tickets através de uma ferramenta externa, como por exemplo o cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 é um utilitário, para ser corrigo num cron, envia todas as notificações RT por utilizador."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 já não é um %2 para esta queue."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 já não é um %2 para este ticket."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 já não é um valor para campo personalizado %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 tickets mais recentes sem responsável atribuído"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objectos"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 direitos"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 configuração do site"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 actualizado: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 actualizado: nenhumas alterações"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 actualizado"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 Resolverá todos os membros de ticket de grupo resolvido."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "objectos %2 de %1"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "objectos %1's %2's %3"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1's paineis"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Pesquisas gravadas de %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: anexo não especificado"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Novo Pedido em%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hora)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "%1 é um valor inválido para o estado"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Seleccione caixa para apagar)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Seleccione caixas para desactivar notificações para os destinatários listados)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Seleccione caixas para activar notificações para os destinatários listados)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Insira identificadores de tickets, separados por espaços)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Por omissão será %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Sem campos personalizados)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Sem membros)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Sem scrips)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Sem templates)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Nenhum)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Envia uma fotocopia desta actualização para uma lista separada por virgulas de endereços de email . Estas pessoas  passam a receber futuras actualizações.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Envia uma fotocopia desta actualização para uma lista separada por virgulas de endereços de email . Estas pessoas  passam a receber futuras actualizações.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Use estes campos quando escolher'Definido pelo Utilizador' para uma condição ou Acção)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Não vai ser enviado email)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(qualquer)"

#: NOT FOUND IN SOURCE
msgid "(displaying new and open tickets for %1)"
msgstr "(mostrar tickets novos e abertos de %1)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(vazio)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(sem nome)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(Sem chave pública!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(sem valor)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(sem valores)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(apenas um ticket)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(pendente %quant(%1,outros ticket))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(aprovação pendente)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(obrigatório)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(confiar: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(sem título)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(não confiavel!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id não é um argumento recomendado e não pode ser usado com --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--argumento da transação apenas pode ser 'first', 'last' or 'all'"

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ticket->Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "<%$_%>"
msgstr "<%$_%>"

#: NOT FOUND IN SOURCE
msgid "<%$field%>"
msgstr "<%$field%>"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Todas as feeds iCal embebem um token privado que o autorizam. Se o URL de um dos seus feeds iCal foi exposto ao exterior, pode ter um novo token privado ao quebrar as feeds existentes.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Template em branco" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Password não foi definida, portanto o utilizador não vai conseguir efectuar login." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE não encontrado" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "Os ACEs apenas podem ser criados e eliminados" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "E" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Acerca" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Controle de Acesso" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Acção" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Acção %1 não encontrada" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Acção '%1' não encontrada" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Acção executada.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Acção é argumento obrigatório" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Acção preparada..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Adicionar" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Adicionar AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Adicionar Bookmark" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Adicionar Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Adicionar colunas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Adicionar critérios" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Adicionar mais ficheiros" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Adicionar Requerente" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Adicionar Valor" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Adicionar uma scrip que se aplica a todas as queues" #: NOT FOUND IN SOURCE msgid "Add and Search" msgstr "Adicionar e pesquisar" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Adicionar comentários ou respostas aos tickets seleccionados" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Adicionar membros" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Adicionar novos watchers" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Adicionar estes termos" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Adicionar estes termos e Pesquisar" #: NOT FOUND IN SOURCE msgid "Add these terms to your search" msgstr "Adicionar estes termos à sua pesquisa" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Adicionar valores" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Adicione, elimine e modifique os valores dos campos personalizados para os objectos" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "%1 adicionado como grupo/utilizador para esta queue" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "%1 adicionado como grupo/utilizador para esta tarefa" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Morada" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Morada (1)" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Morada (2)" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Comentário de Admin" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Correspondência Admin" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Queues do Administrador" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Configurações do Administrador/Globais" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdminTodosGruposPessoais" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGroup" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminCampoPerson" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGroupo" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminMembrosGrupo" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminGruposPessoais" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "FilaAdmin" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminUtilizadores" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Cc Administrativo" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Palavra-Chave Administrativa" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avançado" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Agregador" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Todas as aprovações tratadas" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Todas as Queues" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Todas as feeds iCal embebem um token privado que o autorizam. Se o URL de um dos seus feeds iCal foi exposto ao exterior, pode ter um novo token privado ao quebrar as feeds existentes." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Já encriptado" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "E/Ou" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Aplica-se a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplicar" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Aplicar as alterações" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Aprovação" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Aprovação #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Aprovação #%1: Notas não guardadas devido a um erro no sistema" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Aprovação #%1: Notas guardadas" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Aprovação Concedida" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Aprovação pronta para o dono" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Aprovação rejeitada" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Aprovar" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Abr" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Apr." #: NOT FOUND IN SOURCE msgid "April" msgstr "Abril" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Asc" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Ascendente" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Atribuir e remover campos pré-definidos" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "AtribuirCamposPerson" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Anexar" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Anexar ficheiro" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Ficheiro anexado" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Anexo" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Anexo '%1' não foi carregado" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Anexo criado" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Nome do anexo" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Anexos" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "A encriptação dos anexos está inactiva" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Atributo eliminado" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Aug." #: NOT FOUND IN SOURCE msgid "August" msgstr "Agosto" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Resposta automática" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Resposta automática para utilizadores" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Disponível" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "BCc" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Retroceder" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Privacidade incorrecta para atributo %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Informação básica" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Bcc" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Tenha a certeza que grava as suas alterações" #: NOT FOUND IN SOURCE msgid "Before" msgstr "Antes" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC logo corporativo" #: etc/initialdata:214 msgid "Blank" msgstr "Vazio" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Corpo" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Negrito" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Marcador" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Tarefas marcadas" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Cabeçalhos resumidos" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Actualização em bloco" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Compre suporte" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Por predefinição, o RT usa o fuso horário do seu sistema. Isto permite que defina as predefinições globais para a apresentação de datas e horas no RT. Os utilizadores podem definir fusos horários diferentes nas suas Preferências." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CCGroupo" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: NOT FOUND IN SOURCE msgid "Calendar" msgstr "Calendário" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Não é possível alterar utilizadores de sistema" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Este grupo/utilizador pode visualizar esta queue" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Não se pode adicionar um campo personalizado sem designação" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Não foi encontrado uma colecção de classes para '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Impossível encontrar a pesquisa gravada definida" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Não é possível ligar um ticket a si próprio" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Não consigo gravar %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Não é possível gravar esta pesquisa" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Não se consegue especificar a base nem o alvo" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Não se pode criar tarefas numa queue inactiva" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Não é possível criar utilizador: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Categorias são baseadas em" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoria" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Categoria não definida" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccs" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Modificar" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Alterar senha" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Seleccionar Todos" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Testar Conectividade com BD" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verifique as credenciais da base de dados" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Seleccione caixa para apagar" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Seleccione caixa para revogar direitos" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Verifique credenciais da base de dados" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Filhos" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Seleccione o motor da base de dados" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Escolher um motor de BD" #: NOT FOUND IN SOURCE msgid "Choose a date" msgstr "Escolha uma data" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Cidade" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Limpar" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Limpar Tudo" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Clique em \"Finalizar instalação\" para completar este assistente" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Clique em \"Iniciar base de dados\" para criar a base de dados do RT e inserir os metadados iniciais. Pode demorar alguns minutos." #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Fechar janela" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Fechado" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tickets fechados" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Seleccione ou insira valores múltiplos" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Seleccione ou insira um valor" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Seleccione ou insira até %1 valores" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Comentário" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Morada de Comentário" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Endereço do comentário" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Comentar tickets" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "MoradaComentário" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "ComentarNaTarefa" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comentários" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Comentários (não so enviados para utilizadores)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Comentários (não so enviados para utilizadores)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Comentários sobre este utilizador" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Comentários adicionados" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Condição" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Condição '%1' não encontrada" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Condição é argumento obrigatório" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Condição corresponde..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Condição, Acção e Modelo" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Ficheiro de configuração %1 está trancado" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Configuração" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Confirmar" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Ligação efectuada com sucesso" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Conteúdo" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipo de Conteúdo" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "TipoConteudo" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "Copiar" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Morada de correspondência" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "MoradaCorrespondência" #: etc/initialdata:283 msgid "Correspondence" msgstr "Correspondência" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Correspondência adicionada" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Não foi adicionado o valor do campo personalizado: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Não foi possível alterar responsável " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Não foi alterado o dono: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Não foi criado o campo personalizado" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Não foi criado o campo personalizado: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Não foi possível criar o grupo" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Não foi possível criar template: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Não foi criada tarefa em queue inactiva \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Não é possível criar pedido. Especifique uma fila." #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Não foi possível criar utilizador" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Não foi possível criar ou encontrar esse utilizador" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Grupo/utilizador não encontrado" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Não foi carregado o atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Não foi carregado o campo personalizado %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Grupo não foi carregado" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Não doi carregado o objecto para %1" #: NOT FOUND IN SOURCE msgid "Could not load search attribute" msgstr "Não é possível carregar o atributo da pesquisa" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Não foi possível tornar o grupo/utilizador %1 para esta queue" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Não foi possível tornar o grupo/utilizador %1 para esta tarefa" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Não foi possível remover o grupo/utilizador como %1 para esta queue" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Não foi possível remover o grupo/utilizador como %1 para esta tarefa" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Não consegui definir informações de utilizador" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Não foi possível adicionar anexo" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Não foi possível adicionar membro a grupo" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Não foi possível criar uma transacção: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Não foi criado o registo" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Não foi possível apagar painel %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Linha não encontrada" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Não foi encontrada a transacção adequada, saltar" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Não foi possível encontrar grupo/utilizador" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Não foi encontrado o valor" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "%1 não foi carregado da base de dados de utilizadores.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Não foi carregada a classe %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Não foi carregado o campo personalizado #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Não foi carregado o campo personalizado %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Não foi carregada a cópia da tarefa #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Não foi carregado o painel %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Não foi carregado o painel %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Não foi carregado o grupo #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Não foi carregado o grupo %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Não foi carregado o link" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Não foi carregado o objecto %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Não foi carregado nem adicionado o utilizador: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "A queue não foi carregada" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "A queue #%1 não foi carregada" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "A queue %1 não foi carregada" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "A queue '%1' não foi carregada" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "O script #%1 não foi carregado" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "O modelo #%1 não foi carregado" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Não foi possível carregar o ticket '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Não foi possível carregar a transacção #'%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Não foi possível carregar o utilizador" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Não foi possivel carregar o utilizador #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Não foi possível carregar utilizador #%1 ou utilizador '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Não foi possível carregar utilizador '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Não foi possivel fazer o parse do endereço da string '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Não foi substituído o conteúdo com dados desencriptados: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Não foi substituído o conteúdo com dados encriptados: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Não foi possivel resolver '%1' no URI" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Não foi possivel resolver base'%1' no URI" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Não foi possivel resolver target '%1' no URI" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Não foi possivel enviar email" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Não foi possivel definir %1 watcher: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Não foi possível definir chave privada" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "País" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Criar" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Criar tickets" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Criar um campo personalizado" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Criar um campo personalizado para a queue %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Criar um novo painel" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Criar novo grupo" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Criar um novo grupo pessoal" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Criar novo ticket" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Criar novo utilizador" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Criar queue" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Criar um srcipt para a queue %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Criar template" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Criar ticket" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Criar paineis para este grupo" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Criar novo pedido baseado num modelo existente" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Criar paineis pessoais" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Criar paineis de sistema" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Criar ticket" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Criar tickets nesta queue" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Criar tarefas offline (modo desligado)" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Criar, eliminar e modificar campos personalizados" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Criar, eliminar e modificar queues" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Crie, elimine e modifique os membros de qualquer grupo pessoal dos utilizadores" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Criar, eliminar e modificar membros de grupos pessoais" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Criar, apagar e alterar utilizadores" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "CriarDashboard" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "CriarGrupoDashboard" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "CriarDashboardPróprio" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "CriarPesquisaGravada" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "Criar Tarefa" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Criado" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Criado por" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Campo Personalisado %1 criado" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Criado num intervalo de datas" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Pedidos criados dentro de um periodo de tempo, agrupados por estado" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CriadoPor" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CriadoRelativo" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Autor" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Criptografia" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Links actuais" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Scrips Actuais" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Membros actuais" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Direitos actuais" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Pesquisa actual" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Observadores actuais" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Campos Personalizados" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Campos Personalizados para %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Condição personalizada" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Campo personalizado %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "O campo personalizado %1 não se aplica a este objecto" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Campo personalizado %1 tem um valor." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Campo personalizado %1 não tem valores" #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Campo personalizado %1 não encontrado" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Campo personalizado '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "O valor do campo personalizado %1 não foi encontrado para o campo personalizado %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "O valor do campo personalizado não pode ser eliminado" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "O valor do campo personalizado não foi encontrado" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "O valor do campo personalizado foi eliminado" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPersonalizado" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "CampoPersonalizadoValor" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Personalizar" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personalizar Básico" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personalizar endereços de email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Personalizar configurações de email" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Palavra-Chave do DBA (Administrador da Base de Dados)" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Nome de utilizador do DBA (Administrador da Base de Dados)" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Compilação diária" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Painel" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Painel não pode ser criado: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Painel não pode ser actualizado: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Painel actualizado" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Painéis" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Anfitrião do painel" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nome da Base de Dados" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Palavra-Chave da Base de Dados para o RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Porta da Base de Dados" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo da Base de Dados" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Nome do utilizador da Base de Dados para o RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Formato da data" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Módulo DateTime em falta" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datas" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dez" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Dec" #: NOT FOUND IN SOURCE msgid "December" msgstr "Dezembro" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Desencriptar" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Modelo de resposta automática predefinido" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Queue por omissão" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Requerente Predefinido" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Modelo de comentário de administração predefinido" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Modelo de correspondência de administração predefinido" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Modelo de correspondência predefinido" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Queue predefinida" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Modelo de transacção predefinido" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Predefinição: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Predefinição: %1/%2 alterado para %3 to %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "FormatoDefault" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delegar direitos" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delegar direitos específicos que lhe foram atribuídos" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegarDireitos" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegação" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Apagar" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Apagar template" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Apagar painéis para este grupo" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Eliminação falhou: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Eliminar painéis pessoais" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Elimiar scripts seleccionados" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Eliminar painéis de sistema" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Apagar tickets" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Apagar valores" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "ApagarDashboard" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "ApagarGrupoDashboard" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "ApagarDashboardPróprio" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "ApagarTarefa" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "%1 Eliminado" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Eliminar painel %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Eliminar consultas" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Eliminar pesquisa guardada" #: NOT FOUND IN SOURCE msgid "Deleted search" msgstr "Pesquisa apagada" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "A eliminação deste objecto irá quebrar a integridade referencial" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "A eliminação deste objecto irá violar a integridade referencial" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Negar" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Dependência por %1 adicionada" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Dependência por %1 eliminada" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Dependência de %1 adicionada" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Dependência de %1 eliminada" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Depende de" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Desc" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Descendente" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Descreva o pedido, abaixo" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descrição" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direcção" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Inactivo" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Mostrar" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Visualizar lista de controlo de acessos" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Visualizar Colunas" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Visualizar modelos de Script para esta queue" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Visualizar Scripts para esta queue" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Modo de visualização" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Visualizar pesquisas guardadas para este grupo" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuido sobre a versão 2 do GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Fazer qualquer coisa e tudo" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Nome do domínio" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Não incluir http://, apenas algo como 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Não actualize página incial" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Não actualize resultados da pesquisa" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Não actualizar (refrescar) esta página" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Não confiar nesta chave" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Descarregar" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Descarregar num ficheiro separado por tabs" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Prazo" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ERRO: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Actualização simples das suas tarefas abertas" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Editar" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Editar Campos Personalizados" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Editar Campos Personalizados de %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Editar Campos Personalizados para todos os grupos" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Editar Campos Personalizados para todas as queues" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Editar Campos Personalizados para todos os utilizadores" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Editar \"Campos Personalizados\" para todos os pedidos" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Editar ligações" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Editar Consulta" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Editar Pesquisa" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Editar modelos para a queue %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Editar Pesquisas para este grupo" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Editar modelos de sistema" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "EditarPesquisasGravadas" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Texto editável" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "A editar configurações para a queue %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "A editar campo personalizado %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "A editar membros para o grupo %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "A editar membros para o grupo pessoal %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "IdEfectivo" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Base ou alvo devem ser especificados" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Ou não tem direitos para visualizar a pesquisa guardada %1 ou o identificador está incorrecto" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Correio Electrónico" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "Configuração de Correio Electrónico" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "E-mail Compilação" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Endereço de email já utilizado" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Entrega por e-mail" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "EndereçoEmail" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Activo" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Activo (remover selecção desta caixa desactiva este campo)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Activo (remover selecção desta caixa desactiva este grupo)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Activo (remover selecção desta caixa desactiva esta queue)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Queues activas" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Estado activo %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Enciptar" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Enciptar por predefinição" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Encriptar/Desencriptar" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Encriptar/Desencriptar transacção #%1 de tarefa #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Encriptação inactiva" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Encriptação activa" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Introduzir múltiplos valores" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Introduzir objectos ou URLs para ligar os objectos. Separar as entradas múltiplas com espaços." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Inserir um valor" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Escreva as filas ou URIs para ligar as filas. Separe várias entradas com espaços." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Escreva o número dos pedidos ou URIs para ligar os pedidos. Separe várias entradas com espaços." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Inserir até %1 valores" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Erro" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Erro: Painel em falta" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Erro: Dados GnuPG errados" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Erro: Não existe chave privada" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Erro: Chave Pública" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Estimado" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Todos" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Analisar tarefas criadas numa queue entre duas datas" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Analisar tarefas resolvidas numa queue entre duas datas" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Analisar tarefas resolvidas numa queue, agrupadas por dono" #: bin/rt-crontool:356 msgid "Example:" msgstr "Exemplo:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Expirar" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Informação adicional" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Falta ao ligar a base de dados: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Falta ao criar atributo %1" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Não foi encontrado peseudogrupo dos utilizadores \"Privilegiados\"" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Não foi encontrado peseudogrupo dos utilizadores \"Não Privilegiados\"" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Falha ao carregar %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Falha ao carregar %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Falta ao carregar módulo %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Falha ao carregar objecto para %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Falta ao carregar modelo" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Fev" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Feb" #: NOT FOUND IN SOURCE msgid "February" msgstr "Fevereiro" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Fonte dos valores do campo" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Ficheiro" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Preencher argumentos" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Preencher múltiplas áreas de texto" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Preencher uma área de texto" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Preencha uma área de texto wiki" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Preencha este campo com um URL" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Preencha até %1 áreas de texto" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Prioridade final" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Procurar todos os utilizadores cujo" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Encontrar grupos cujo" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Encontrar pessoas cujo" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Encontrar tickets" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminar" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Primeiro" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forçar alteraçao" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formato" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Encaminhar" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Encaminhar Mensagem" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Encaminhar Mensagem e Voltar" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Encaminhar Mensagem" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Encaminhar mensagem para terceira(s) pessoa(s)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "ReencaminharMensagem" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Objecto Encontrado" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequência" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Sex" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Fri" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Sexta" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Cabeçalhos completos" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Geral" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Obter modelo a partir de ficheiro" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Introdução" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Atribuído a %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Global" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Campos Personalizados Globais" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuração gloval dos campos personalizados" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Portlet global %1 guardado" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Modelo Global: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "Erro GnuPG. Contacte o Administrador" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Integração GnuPG inactiva" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "Chave(s)-Privada(s) GnuPG para %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "Chave(s)-Pública(s) GnuPG para %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Ir" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Ir!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ir para ticket" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propriedades do Gráfico" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Gráficos não estão disponíveis" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Grupo" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Direitos do grupo" #: NOT FOUND IN SOURCE msgid "Group already has member" msgstr "Grupo já tem membro" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "O grupo já tem um membro: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Grupo não pôde ser criado: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Grupo criado" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Grupo inactivo" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Grupo activo" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "O grupo não tem esse membro" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Grupo não encontrado" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Direitos do grupo" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupos" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupos não podem ser membros dos seus membros" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupos que preenchem critérios" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Grupos em que o utilizador é membro (seleccione caixa para eliminar)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Grupos em que o utilizador não é membro (seleccione caixa para adicionar)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Grupos a que este utilizador pertence" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "TemMembros" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Olá!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Olá, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ajude-nos a definir predefinições úteis para o RT" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Histórico" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Histórico do grupo %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Histórico da queue %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Histórico do utilizador %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Início" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Intervalo de actualização da página de ínicio" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "TelefoneCasa" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Página inicial" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Hora" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Horas" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "" #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "Estou perdido" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identidade" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Se uma aprovação é rejeitada, rejeite a original e elimine aprovações pendentes" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Se nenhum Requerente for especificado, criar um pedido sem Requerente." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Se nenhuma queue foi definida, criar tickets nesta queue" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Se esta ferramenta fosse setgid, um utilizador local hostil poderia usá-la para ter acesso de administrador ao RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Se já tem um servidor RT e base de dados funcionais, deveria aproveitar a oportunidade para se assegurar que o seu servidor de base de dados está a correr e que o servidor do RT consegue-se ligar a ele. Depois disto, pare e inicie o servidor do RT.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Se já tem um servidor RT e base de dados funcionais, deveria aproveitar a oportunidade para se assegurar que o seu servidor de base de dados está a correr e que o servidor do RT consegue-se ligar a ele. Depois disto, pare e inicie o servidor do RT.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Se alterar a porta em que corre o RT, vai precisar de reiniciar o servidor de forma a poder iniciar sessão." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Se actualizou algo acima, certifique-se que" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Se a sua base de dados escolhida não está listada abaixo, significa que o RT não conseguiu encontrar um driver /i> para a mesma instalada localmente. Pode contornar este problema ao usar %1 para descarregar e instalar DBD::MySQL, DBD::Oracle ou DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Valor ilegal para %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Campo imutável" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Incluir campos personalizados inactivos na listagem." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Incluir grupos desactivados na listagem" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Incluir queues desactivadas na listagem" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Incluir utilizadores desactivados na listagem" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Incluir página" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "Query incompleta" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "Query incompleta" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Mensagens individuais" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informar dono do RT que utilizadores estão com problemas com chaves públicas" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informar utilizador que o painel que ele subscreveu está em falta" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informar utilizador que a mensagem que ele enviou tem dados GnuPG inválidos" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informar utilizador que ele está com problemas relacionados com a chave pública e não consegue receber conteúdo encriptado" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Informar utilizador que a sua password foi redefinida" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informar utilizador que recebemos um email encriptado e que não temos chaves provadas para o desencriptar" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Prioridade Inicial" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "PrioridadeInicial" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Iniciar Base de Dados" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Erro de entrada" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Instalar RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Erro interno" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Erro interno: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 Inválido: '%2' não parece um enderço de email" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "%1 Inválido: deveria ser numérico" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Tipo de Grupo Inválido" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Direito Inválido" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Dados Inválidos" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Objecto Inválido" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Dono de Objecto Inválido" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Padrão inválido: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Queue inválida" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Direito inválido" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Sintaxe inválido para endereço de e-mail" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Valor inválido para %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Valor inválido para campo personalizado" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Valor inválido para estado" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Não está encriptado" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "É muito importante que os utilizadores não privilegiados não possam executar esta ferramenta." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "É sugerido que crie um utilizador não privilegiado com o grupo correcto e acesso ao RT para utilizar esta ferramenta." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Necessários vários argumentos:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Itálico" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Jan" #: NOT FOUND IN SOURCE msgid "January" msgstr "Janeiro" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jul" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Jul" #: NOT FOUND IN SOURCE msgid "July" msgstr "Julho" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Jumbo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jun" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Jun" #: NOT FOUND IN SOURCE msgid "June" msgstr "Junho" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Mantenha 'localhost' se não tiver a certeza. Deixe em branco para ligar localmente sobre um socket" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Idioma" #: NOT FOUND IN SOURCE msgid "Language." msgstr "Idioma." #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Último" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Último Contacto" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Contactado pela última vez" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Última actualização" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Útima Actualização Por" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Útima actualização por" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "ÚltimaActualização" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "ÚltimaLocalizaçãoPor" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "ÚltimaActualizaçãoRelativo" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Deixar em branco para enviar para o seu endereço de email actual (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Deixar em branco para usar o valor predefinido para a sua base de dados" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Restante" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legendas" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Tamanho em caracteres; Use '0' para mostrar todas as mensagens, independentemente do tamanho" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Permitir que este utilizador aceda ao RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Permitir que este utilizador tenha direitos" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Iniciar!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Ligação" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Ligação já existe" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Ligação não pôde ser criada" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Ligação criada (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Ligação apagada (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Ligação não encontrada" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Ligar ticket #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Ligar valores a" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Ligado" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "LigadoA" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Ligação. Permissão negada" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Ligações" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Carregar" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Carregar pesquisa gravada:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "CarregarPesquisaGravada" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Carregado %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Carregada pesquisa guardada \"%1\" original" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Módulos perl carregados" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Carregada pesquisa guardada \"%1\"" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "Pesquisa %1 carregada" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Localização" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "DataHoraLocalizada" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Localização" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Ligado como %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Desligado" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Entrar" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Sair" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Correio" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Definir Proprietário" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Definir estado" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Definir data como prazo" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Definir prioridade" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Criar fila" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Definir assunto" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Tornar este grupo visível ao utilizador" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gerir campos personalizados e valores dos campos personalizados" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Gerir grupos e membros de grupos" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Gerir propriedades e configuração que se aplica a todas as queues" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Gerir queues e propriedades específicas das queues" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Gerir grafícos guardados" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Gerir utilizadores e passwords" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mar" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Mar" #: NOT FOUND IN SOURCE msgid "March" msgstr "Março" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Marcar todas as mensagens como lidas" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Tamanho máximo da mensagem inline" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maio" #: NOT FOUND IN SOURCE msgid "May." msgstr "May" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Membro" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Membro %1 adicionado" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Membro %1 apagado" #: NOT FOUND IN SOURCE msgid "Member added" msgstr "Membro adicionado" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Membro adicionado: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Membro apagado" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Membro não apagado" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Membro de" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Membros" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Mensagem" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Corpo da mensagem não visível por não ser texto" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Corpo da mensagem não apresentado porque é grande demais ou não é texto" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Corpo da mensagem não visível por ser demasiado grande" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Altura da caixa de mensagem" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Largura da caixa de mensagem" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Mensagem não pôde ser gravada" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Mensagem para o utilizador" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Mensagem gravada" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Mensagens sobre este ticket não serão enviadas a..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Tamanho mínimo da password" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutos" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Chave primária em falta?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Telemóvel" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Alterar Lista de Controle de Acessos" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Modificar Campos Personalizados que se aplicam a %1 para todos os %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Modificar todos os Campos Personalizados que se aplicam a todos os %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Alterar Direitos de Grupo" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Alterar Membros" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Alterar Direitos" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Alterar templates dos Scrips para esta queue" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Alterar Scrips para esta queue" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Alterar Direitos de Utilizadores" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Modificar um Campo Personalizado para a queue %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Alterar uma scrip da queue %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Alterar uma scrip que se aplica a todas as queues" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Mofificar objectos associados para %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Modificar valores dos campos personalizados" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Alterar datas de #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Alterar datas do ticket # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Modificar campos personalizados globais" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Alterar direitos de grupo globais" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Alterar direitos de grupo globais" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Alterar direitos de utilizador globais" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Alterar direitos de utilizador globais" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Modificar metadados do grupo ou eliminar grupo" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Modificar direitos do grupo para campo personalizado %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Alterar direitos de grupo para o grupo %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Alterar direitos de grupo para a queue %1" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Alterar pessoas relacionadas com a queue %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Alterar pessoas relacionadas com o ticket %1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Alterar scrips da queue %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Alterar scrips que se aplicam a todas as queues" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Alterar template %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Alterar templates que se aplicam a todas as queues" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Alterar a página principal" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Alterar o grupo %1" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Alterar o utilizador %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Alterar o ticket # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Alterar ticket # %1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Alterar tickets" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Modificar direitos de utilizador para campo personalizado %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Alterar direitos de utilizadores para o grupo %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Alterar direitos de utilizador para a queue %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Seg" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Mon" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Segunda-Feira" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "De Segunda a Sexta" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Mais" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Mais sobre %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Mover para baixo" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Mover para cima" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Múltiplo" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Deve espedificar atributo \"Nome\"" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Os meus %1 tickets" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "O Meu Dia" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "As minhas aprovações" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "As minhas pesquisas guardadas" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "Nova linha" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Nome" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Nome em utilização" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Nunca" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Novo" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Novas Ligações" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nova Password" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Novas aprovações pendentes" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nova Pesquisa" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Tickets novos e abertos para %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Novo campo personalizado" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Novo grupo" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Novas mensagens" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nova password" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Notificação de nova password enviada" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Nova queue" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Nova Nota" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Novos direitos" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Novo scrip" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Novo template" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Novo ticket" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Novo ticket não existe" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Novo utilizador" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Novo utilizador chamado" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Próximo" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Próxima Página" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Alcunha" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Nick" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Não" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Sem Grupo definido" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Sem Assunto" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Sem Modelo" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Sem acção" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Sem coluna especificada" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Sem descrição para %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Grupo não especificado" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Nenhum grupo verificou o critério de pesquisa especificado." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Sem chave adequada para encriptação" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Sem chaves para este endereço" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Sem mensagem anexada" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Sem necessidade de encriptação" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Password não definida" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Sem permissão para criar queues" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Sem permissão para criar tickets na queue '%1'" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Sem permissão para criar utilizadores" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Sem permissão para ver esse ticket" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Não tem permissão para gravar uma pesquisa de sistema" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Sem permissões para definir preferências" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Sem permissão para ver ou actualizar esse ticket" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Nenhum grupo/utilizador especificado" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Nenhum grupo/utilizador seleccionado" #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Sem chave privada" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Nenhuma fila verificou os critérios de pesquisa especificados" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Sem direito especificado" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Não foram encontrados direitos" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Sem direitos atribuídos" #: NOT FOUND IN SOURCE msgid "No search loaded" msgstr "Nenhuma pesquisa carregada" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Nenhuma pesquisa possível" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Sem assunto" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Chave inexistente ou inadequada para assinatura" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Tickets não encontrados" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Sem tipo de transacção especificado" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Sem chaves utilizáveis." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Nenhum proprietário verificou o critério de pesquisa." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Sem valor enviado para _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Nobody" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Nenhum" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Campo inexistente?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Não definido" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Não encontrado" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Desligado" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Não definido" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Ainda não foi implementado." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Observações" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Notificação não pôde ser enviada" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Notificar AdminCCS como Comentário" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Notificar CCs como Comentário" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Notificar outros recipientes como comentário" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Notificar Proprietário" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Notificar Proprietário como comentário" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Notificar Dono do seu ticket rejeitado" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notificar Dono que o seu ticket foi aprovado e está pronto para que tomem uma acção sobre o mesmo" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notificar Dono que o seu ticket foi aprovado por alguém ou por todos os aprovadores" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Notidicar Dono, Requerentes, Ccs e AdminCcs" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notidicar Dono, Requerentes, Ccs e AdminCcs como Comentário" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Notificar Donos e AdminCcs de novos itens com aprovação pendente" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notificar requerente que o seu ticket foi aprovado por todos os aprovadores" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Notificar Requerentes" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Notificar Requerentes e CCs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Notificar Requerentes e CCs como comentário" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Notificar Requerentes, CCs e AdminCCs" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Notificar Requerentes, CCs e AdminCCs como comentário" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Nov" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OU" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objecto apagado" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Oct" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Offline" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "" #: NOT FOUND IN SOURCE msgid "On" msgstr "Em" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "" #: etc/initialdata:143 msgid "On Comment" msgstr "Em comentário" #: etc/initialdata:115 msgid "On Correspond" msgstr "Em Resposta" #: etc/initialdata:104 msgid "On Create" msgstr "Em Criação" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Em Alteração de Dono" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Em Alteração de Prioridade" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Em Alteração de Queue" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "" #: etc/initialdata:178 msgid "On Resolve" msgstr "Em Resolução" #: etc/initialdata:149 msgid "On Status Change" msgstr "Em Alteração de Estado" #: etc/initialdata:109 msgid "On Transaction" msgstr "Em Transacção" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Tickets Abertos" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Abrir" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Tickets Abertos" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Abrir Tickets em resposta" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Opções" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ordenar por" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organização" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Registado email sobre um comentário" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Registado email" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Com o passar do tempo, a prioridade altera-se para" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Próprios tickets" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Dono" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Dono alterado de %1 para %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Dono não pôde ser definido." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Proprietário forçado de %1 para %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "Página %1 de %2" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Password" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Password alterada" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "A Password tem de ter pelo menos %1 caracteres" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Password definida" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Password: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Password: Permissão Negada" #: etc/initialdata:463 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "As passwords não coincidem." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "As passwords não coincidem. A sua password não foi alterada" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Pessoas" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Permissão Negada" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Permissão Negada" #: NOT FOUND IN SOURCE msgid "Permissions denied" msgstr "Permissão Negada" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Grupos Pessoais" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Grupos Pessoais" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Grupos Pessoais:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Números de telefone" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Preferências" #: NOT FOUND IN SOURCE msgid "Preferences %1 for user %2 ." msgstr "Preferências %1 para utilizador %2 ." #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Preferências gravadas para %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "Página Anterior" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Grupo/utilizador %1 não encontrado" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioridade" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioridade começa em" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privacidade:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilegiados" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Utilizadores privilegiados" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Construtor de Pesquisas" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Pesquisa" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Queue" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Queue %1 não encontrada" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Nome da Queue" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Essa Queue já existe" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "A Queue não pôde ser criada" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Queue criada" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Queue não encontrada" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Queues" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Pesquisa rápida" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Criação de tickets rápida" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 para %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administração RT" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "Erro RT" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT Self Service" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT no geral" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "\"RT no geral\" do utilizador %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT para %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Nome" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Gravar todas as actualizações" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Referido por" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Refere-se a" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Refrescar esta pagina de %1 em %1 minutos." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Lembretes" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Notas para o pedido #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Responder" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Endereço de Resposta" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Responder aos Requerentes" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Resposta a tickets" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Relatórios" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Requerentes" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Residência" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Resolver" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Resolver ticket #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Resolvido" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Resolvido pelo dono" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Resolvido dentro do intervalo de datas" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Tickets resolvidos no período, agrupados por dono" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Tickets resolvidos, agrupados por dono" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultados" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Repita Password" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Direito concedido" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Direito não encontrado" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Direitos" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Perfis" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Linhas por caixa" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Linhas por página" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Sat" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Gravar" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Gravar Alterações" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Gravar Preferências" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Gravar alterações" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "" #: NOT FOUND IN SOURCE msgid "Saved search %1" msgstr "Pesquisa gravada %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Procurar" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Preferências de pesquisa" #: NOT FOUND IN SOURCE msgid "Search attribute load failure" msgstr "Erro a carregar o atributo de pesquisa" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Procurar nas aprovações" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Procurar tickets" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Opções de pesquisa" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Resultados de pesquisa agrupados por %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "" #: NOT FOUND IN SOURCE msgid "Search update: %1" msgstr "Actualização de pesquisa: %1" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Procurar com o texto completo pode levar muito tempo a realizar, mas se for realmente necessário, pode efectuar uma pesquisa por qualquer palavra no historial do pedido ao especificar fulltext:palavra." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "Segurança:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Escolha um grupo" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Escolha uma queue" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Escolha uma queue para o novo ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Escolha um utilizador" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Seleccioned os \"Campos Personalizados\" para os pedidos em todas as filas" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Escolha grupo" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Escolha múltiplos valores" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Escolha um valor" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Escolha a queue" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Escolha queues para apresentação na página principal" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Escolha template" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Escolha utilizador" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Enviar email para todos os watchers" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Enviar email para todos os watchers como um comentário" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Enviar email para o dono" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Sep" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Mostrar" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Mostrar Resultados" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Mostrar informação básica" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Mostrar detalhes" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Mostrar pedidos pendentes" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Assinatura" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Pesquisa Simples" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Tamanho" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Pequeno" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordenar" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Iniciado" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Começa" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Estado" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Estado" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Alteração de Estado" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Alteração de estado de %1 para %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Roubar" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Roubar tickets" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Roubado de %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Roubado de %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Assunto" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Assunto alterado para %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Enviar" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Sun" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Configuração de Sistema" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Ferramentas de Sistema" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "" #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Grupos de sistema" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Tomar" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Tomar pedidos" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Template" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Template $%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Template apagado" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Templates" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Este grupo/utilizador já tem esse direito" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Este grupo/utilizador já é %1 para esta queue" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Este grupo/utilizador já é %1 para esta tarefa" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Este grupo/utilizador não é %1 para esta queue" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Este grupo/utilizador não é %1 para esta tarefa" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Essa queue não existe" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Esse utilizador já é dono desse ticket" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Esse utilizador não existe" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Esse utilizador não pode ser dono de tickets nessa queue" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "O Básico" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "O dono de um ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Esta funcionalidade está disponível apenas para os administradores do sistema" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "" #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Esta mensagem será enviada para..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Esta transacção não parece ter conteúdo" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "%1 tickets deste utilizador com maior prioridade" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Thu" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Ticket #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Ticket %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Ticket %1 criado na queue '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Ticket %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Histórico do ticket # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Ticket Resolvido" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Transacções do ticket" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Conteúdo do ticket" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Estado do ticket alterado" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Tickets" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Tickets %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Tickets %1 por %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Tickets criados depois de" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Tickets criados antes de" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Tickets resolvidos depois de" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Tickets resolvidos antes de" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Pedidos que dependem desta aprovação" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Tempo previsto" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Tempo disponível" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tempo de trabalho" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tempo usado para disponibilizar página" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Ferramentas" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Total" #: etc/initialdata:249 msgid "Transaction" msgstr "Transacção" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transacção Criada" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Tue" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tipo" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Procura sem nome" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Actualizar" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Actualizar Ticket" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Tipo de actualização" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Actualizar múltiplos tickets" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Actualizar ticket" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Actualizar ticket #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Actualizar ticket #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Actualizado" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Carregar" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Carregar múltiplos ficheiros" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Carregar múltiplas imagens" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Carregar um ficheiro" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Carregar uma imagem" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Carregar até %1 ficheiros" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Carregar até %1 imagens" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Utilizar outras ferramentas administrativas do RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Utilizador '%1' não encontrado" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Direitos de utilizador" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Utilizador não criado: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Utilizador criado" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Utilizador carregado" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Grupos definidos por utilizadores" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Username" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Utilizadores" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Utilizadores que verificam o critério de pesquisa" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Query válida" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Valores" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Wed" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Quando um ticket é criado" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:110 msgid "When anything happens" msgstr "Quando algo acontece" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Quando um ticket é resolvido" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Este ticket já é seu" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Também pode editar a própria procura personalizada" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Só pode atribuir um pedido que seja seu ou que não proprietário" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Só pode responsabilizar-se por tickets que não têm dono" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Encontrou %1 tickets na queue %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Saiu do RT" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Não tem permissão para criar tickets nessa queue." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Não pode criar pedidos nessa queue" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Login ou password errados" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Código Postal" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr ""

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "fechado"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "contém"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dias"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "apagado"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "não contém"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr ""

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "igual a"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "maior do que"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grupo '%1'"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "agrupado por %1"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "horas"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "é"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "não é"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "menos do que"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "coincide"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr ""

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minutos"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr "meses"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr ""

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "novo"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "sem nome"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "sem valor"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "nenhum"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "diferente de"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "aberto"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "queue %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "rejeitado"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "resolvido"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr ""

#: lib/RT/Date.pm:338
msgid "sec"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "pendente"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "linhas de sumário"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr ""

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr ""

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr ""

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "ticket #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "grupo indefinido %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "utilizador %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "semanalmente"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "semanas"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "com cabeçalhos"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "anos"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "sim"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/hu.po0000664000175000017500000103254612262650742013761 0ustar  chmrrchmrr#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:14+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (nincs publikus kulcs!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (nem megbizhato!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%4 %2 %3 %1"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%6 %2 %3 %1 %4:%5"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %7. %2 %3 %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "[%1] mezõbe '%2' érték felvétele"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 változtatása: '%2' --> '%3'"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 törölve"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 törölve."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 mentve."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 frissítve."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 a %3 sablonnal"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr ""

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (változatlan)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr ""

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr ""

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - %2-nek átadandó argumentum"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Státuszfrissítés kiíratása a STDOUT-ra"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr ""

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Add meg a használandó sablon(ok) nevét vagy azonosítóját"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Adja meg a használandó akciómodult!"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr ""

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Adja meg a használandó kondiciómodult!"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Adja meg a használandó keres?modult!"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Dashboard"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "ScripAction %1 betöltve"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 értéke hozzáadva %2 höz"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 adatbázis már létezik és az RT tábláit is tartalmazza, viszont az RT metaadatait nem. Későbbiekben az 'Adatbázis inicializálása' lépésben beillesztheti a metaadatokat. Ha ez elfogadható így akkor kattintson az 'Alapok személyreszabása' linkre lent az RT személyre szabásához."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 már létezik, de nem tartalmazza az RT tábláit vagy metaadatait. Későbbiekben az 'Adatbázis Inicializálása' lépéssel beilleszthet táblákat és metaadatokat a létező adatbázisba. Ha ezt elfogadja, kattintson az 'Alapbeállitások' alá az RT testreszabásának folytatásához."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 nem találhato az adatbázisban, pedig helyi objektumnak látszik"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1  (%2)"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 változtatása: '%2' --> '%3'"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 nem állítható %2 re."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 nem tudta a státuszt lezártra állítani. Az RT adatbázisa talán inkonzisztens."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 létrehozva"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 törölve"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 letiltva"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 nem létezik."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 engedélyezve"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "A %1 nekem kiosztott, legsürgõsebb probléma..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr ""

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "Ennek a sornak %1 már nem %2-je."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr ""

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr ""

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 perc"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 legújabb gazdátlan probléma"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 jogok"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 frissítés: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 frissítés: Nincs változás"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 frissítve"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr ""

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1 dashboard-ja"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1 elmentett keresései"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: Nincs melléklet megadva!"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Új probléma:%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr ""

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' nem lehet státusz érték"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Törléshez kiválasztandó!)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Szóközökkel elválasztva adható meg a problémák sorszáma vagy URL-je.)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Ha üresen marad: %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Nincs egyéni mezõ)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Nincsenek tagok)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Nincs Scrip)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Nincs sablon)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(nincs név)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Másolat küldése a frissítésről a vesszővel elválasztott adminisztratív email címekre. A felsoroltak a továbbiakban is megkapják a probléma frissítéseinek másolatát.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Másolat küldése a frissítésről a vesszővel elválasztott email címekre. A felsoroltak a továbbiakban is megkapják a probléma frissítéseinek másolatát.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr ""

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr ""

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(üres)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(Nincs név a listában)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(nincs publikus kulcs!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(nincs adat)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(nincs adat)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "
(Csak egy probléma adható meg!)" #: share/html/Elements/RT__Ticket/ColumnMap:121 #. ($count) msgid "(pending %quant(%1,other ticket))" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:113 msgid "(pending approval)" msgstr "(engedélyezésre vár)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(szükséges)" #: share/html/Elements/GnuPG/SelectKeyForEncryption:53 #. ($key->{'TrustTerse'}) msgid "(trust: %1)" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "(untitled)" msgstr "(névtelen)" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284 msgid "(untrusted!)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59 msgid "-" msgstr "-" #: bin/rt-crontool:137 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "" #: bin/rt-crontool:132 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "" #: share/html/Ticket/Elements/EditBasics:136 msgid "<% $field->{'name'} %>" msgstr "" #: NOT FOUND IN SOURCE msgid " %1" msgstr " %1" #: NOT FOUND IN SOURCE msgid " %1" msgstr " %1" #: etc/initialdata:215 msgid "A blank template" msgstr "Üres sablon" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Nincs jelszó beállítva, a felhasználó nem fog tudni belépni." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE nem található" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACE-k csak létrehozhatók és törölhetõk." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "ÉS" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Magamról" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Hozzáférés ellenõrzése" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Akció" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "%1 akció nem található" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Akció végrehajtva.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Akció elõkészítve..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Hozzáad" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Adminisztratív tájékotatást kapó hozzáadása" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Könyvjelző hozzáadása" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Tájékotatást kapó hozzáadása" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Mezõk hozzáadása" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Bõvített keresési feltételek" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "További fájlok csatolása" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Beküldõ hozáadása" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Értékek hozzáadása" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Minden sorra vonatkozó Scrip hozzáadása" #: NOT FOUND IN SOURCE msgid "Add additional criteria" msgstr "További feltételek hozzáadása" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "A kiválasztott problémákhoz válasz vagy kiegészítés hozzáadása" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Tagfelvétel" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Új résztvevõk hozzáadása" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Egyéni mezõk lehetséges értékeinek létrehozása, módosítása, törlése" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Hozzendelt egy vezetõt mint %1 ehhez a sorhoz" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Hozzárendelt egy vezetõt mint %1 ehhez a problémához" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Utca, házszám" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Postafiók" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Adminisztratív tájékoztatást kap" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Adminisztratív megjegyzés" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Válasszon sort!" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Konfiguráció / Általános beállítások" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "Adminisztratív tájékoztatást kap" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Adminisztratív tájékoztatást kap" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Adminisztrációs jelszó" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Kézi lekérdezés" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Minden jóváhagyáson átesett." #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Minden sor" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "" #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Már titkosítva" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "ÉS/VAGY" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Mentés" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "A változtatás mentése" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Lezárás" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Engedélyezés #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Engedélyezés #%1: A megjegyzés rendszerhiba miatt nem rögzíthetõ" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Engedélyezés #%1: Megjegyzés rögzítve" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Lezárás rendben" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Lezárás visszautasítva" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Lezár" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Az engedélyezõ megjegyzése: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Ápr" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "ápr." #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "növekvõ" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Egyéni mezõ hozzárendelése vagy törlése" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Csatol" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Fájl csatolása" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Csatolt fájl" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Csatolmány" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "A csatolt '%1' nem betölthetõ" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Csatolt fájl létrehozva" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Csatolt fájl neve" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Csatolt fájlok" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Attribútum Törölve" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Aug" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "aug." #: NOT FOUND IN SOURCE msgid "August" msgstr "Agusztus" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Automatikus válasz" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Automatikus válasz a beküldõnek" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Vissza" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Alapadatok módosítása" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "BCC" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Ha valamit módosított ne felejtsen el ide kattintani, hogy megtörténjen a" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC vállalati logo" #: etc/initialdata:214 msgid "Blank" msgstr "Üres" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Félkövér" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Könyvjelző" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Megjelölt problémák (könyvjelző)" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Tömör fejléc" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Tömeges frissítis" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Tömeges problémafrissítés" #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "A \"%1\" mentett keresés nem tölthető be" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Rendszerfelhasználó nem módosítható" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Ez a vezetõ nem láthatja ezt a sort" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Egyéni mehzõ név nélkül nem hozzáadható" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "A problémát nem lehet önmagához kapcsolni!" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "%1 nem menthető" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Ezt a lekérdezést nem lehet lementeni" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Nem adhat meg egyszerre bázist és célt" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Nem hozhatók létre problémák egy letiltott sorban." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "A felhasználó nem hozható létre: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategória" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Tájékoztatást kap" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Változtat" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Jelszó-változtatás" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Mindent kijelöl" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Törléshez bejelölni" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Jog megvonásához megjelölni" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Leszármazottak" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Város" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Ablak bezárása" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Lezárva" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Lezárt problémák" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Cobobox: válasszon ki vagy adjon meg akár több értéket" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Cobobox: válasszon ki vagy adjon meg egy értéket" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Cobobox: válasszon ki vagy adjon maximum %1 db értéket" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Kiegészít" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Kiegészitõcím" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentek" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Kiegészítés (a beküldõ nem kapja meg!))" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Kiegészítés (a beküldõ nem kapja meg!)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Kiegészítés ehhez a felhasználóhoz" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Kiegészítés hozzáfûzése" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Feltétel" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "" #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "A feltétel nem található" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Konfiguráció" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Igazolás" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Sikeres kapcsólódás" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Tartalom" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "Másol" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "" #: etc/initialdata:283 msgid "Correspondence" msgstr "Válasz" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Válasz hozzáfûzése" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "Az egyéni mezõt nem sikerült hozzáadni. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "Az egyéni mezõértéket nem sikerült hozzáadni a #%1 problémához " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Nem sikerült a tulajdonost megváltoztatni! " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Nem sikerült létrehozni az egyéni mezõt" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Nem sikerült létrehozni a(z) %1 egyéni mezõt" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Nem sikerült létrehozni a csoportot" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "A sablom nem jött létre: %1" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Nem jött létre a probléma. A sor nincs meghatározva" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "A felhasználó nem jött létre" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "A felhasználót nem sikerült megtalálni vagy létrehozni" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "A vezetõ nem található" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "A(z) %1 egyéni mezõ nem betölthetõ" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "A csoport nem betölthetõ" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "A vezetõ nem lehet %1-e a sornak" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "A vezetõ nem lehet %1-e a problémának" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "A vezetõt nem lehet mint a sor %1-ét eltávolítani" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "A felhasználó adatait nem sikerült elmenteni" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "A tagot nem lehet a csoporthoz adni" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "A tanzakció nem létrehozható: %1" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Nem lehetett a %1 dashboard-ot törölni: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "A sor nem található" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "A csoport/felhasználó nem található" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Az érték nem található" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "A(z) %1 egyéni mezõ nem betölthetõ" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Nem lehetett a %1 dashboard-ot betölteni: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Nem lehetett a %1 dashboard-ot betölteni: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "%1 csoport nem betölthetõ" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "%1 objektum nem betölthetõ" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "A sor nem betölthetõ" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "%1 sor nem betölthetõ" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Nem lehet betölteni a '%1' sort" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Nem lehet betölteni a #%1 scripet" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Nem lehet betölteni a #%1 sablont" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "A(z) '%1' nem betölthetõ" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Email küldés sikertelen" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Privát kulcs feloldása sikertelen." #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Ország" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Felvesz" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Probléma megadása" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Hozzon létre egy új egyéni mezõt!" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Hozzon létre egy egyéni mezõt a(z) %1 sorhoz" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Új dashboard létrehozása" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Új csoport létrehozása" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Hozzon létre egy új saját csoportot!" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Új probléma felvétele" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Hozzon létre egy új felhasználót!" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Hozzon létre egy sort!" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Hozzon létre egy scrip-et a(z) %1 sorhoz!" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Hozzon létre egy sablont!" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Új probléma" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Dashboard létrehozása ezen csoport számára" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Hozzon létre egy új problémát ennek a sablonnak scripjeire alapozva" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Személyes dashboard létrehozása" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Rendszer dashboard létrehozása" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Létrehozás" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Hozzon létre problémákat ebben a sorban!" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Problémák offline létrehozása" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Egyéni mezõk létrehozása, módosítása, törlése" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Sor létrehozása, módosítása, törlése" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Felhasználók létrehozása, módosítása, törlése" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "ProblémaLétrehozás" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Felvéve" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Létrehozta" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Létrehozó" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Titkosítás" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Jelenlegi kapcsolatok" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Jelenlegi Scripek" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Jelenlegi tagok" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Jelenlegi jogok" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Jelenlegi keresés" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Jelenlegi résztvevõk" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Egyéni mezõk" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "%1 egyéni mezõi" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Az akcióhoz rendelt egyéni lezáró kód" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Az akcióhoz rendelt egyéni elõkészítõ kód" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Egyéni feltétel" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Egyéni mezõ %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "[%1] egyéni mezõnek van értéke." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "[%1] egyéni mezõnek nincs értéke." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "[%1] egyéni mezõ nem található" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Egyéni mező '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Egyéni mezõ nem található" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "A(z) %2 egyéni mezõ %1értéke nem található" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Az egyéni mezõ értéke nem található" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Az egyéni mezõ értéke nem található" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Az egyéni mezõ értéke törölve" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "EgyéniMező" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Testreszabás" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Dashboard" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Adatbázis neve" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT adatbázis jelszava" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Adatbázis kiszolgáló portja" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Adatbázis típus" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Dátum formátum" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Idõpontok" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dec" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "dec." #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Automatikus válasz alapértelmezett sablonja" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Alapértlemezett sor" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Alapértelmezett beküldõ" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Alapértelmezett sor" #: etc/initialdata:250 msgid "Default transaction template" msgstr "" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Alapértelmezett: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Jogok továbbadása" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Jogok továbbadása" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Töröl" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Sablon törlése" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Nem sikerült törölni: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Kiválasztott Scrip törlése" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Problémák törlése" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "%1 törölve" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Elutasítva" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Ettõl függnek" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "A következõktõl függ" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "csökkenõ" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "A probléma szabatos leírása" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Leírás" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Irány" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Letiltva" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Mutat" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Mezõk kiválasztása" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Láthatóak legyenek az ehhez a sorhoz tartozó scrip sablonok" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Láthatóak legyen a sorhoz tartozó scripek" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Megjelenítési mód" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distributed under version 2 of the GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "" #: NOT FOUND IN SOURCE msgid "Do the Search" msgstr "Keresés indítása" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Tartománynév" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ne írd be hogy http://, csak úgy írd hogy 'localhost', vagy 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Ne frissítse a kezdőlapot." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ne frissítse ezt az oldalt." #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Letölt" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Határidõ" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ERROR: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Szerkesztés" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Egyéni mezők szerkesztése" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Módosítsa %1 egyéni mezõit!" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Kapcsolatok módosítása" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Lekérdezés szerkesztése kézzel" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Keresés szerkesztése" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Módosítsa a(z) %1 sor sablonjait!" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Módosítsa a rendszersablonokat!" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Szerkeszthető szöveg" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "'%1' egyéni mező szerkesztése" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Módosítsa a(z) %1 csoport tagságát!" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Meg kell adni a bázist vagy a célt" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-mail cím" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "Email konfigurálása" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "E-Mail-cím már foglalt" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "EmailCím" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Engedélyezve" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" # ## muss das überhaupt übersetzt werden??? #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktivált (kiválasztása letiltja ezt az egyéni mezõt)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktivált (Kiválasztása letiltja ezt a csoportot)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktivált (Kiválasztása letiltja ezt a sort)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Aktív sorok" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Status %1 aktiviert" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Titkosítás" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Titkosítás kikapcsolva" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Titkosítás bekapcsolva" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Adjon meg több értéket!" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Objektum vagy URI. Szóközzel elválasztva több is megadható" #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Adjon meg egy értéket!" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Sor vagy URI. Szóközzel elválasztva több is megadható" #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Probléma szám vagy URI. Szóközzel elválasztva több is megadható" #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Adjon meg egy értéket!" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Hiba" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Hiba a sor paraméterezésében ->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Hiba a sor paraméterezésében->DelWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Hiba a probléma paraméterezésében -> AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Hiba a probléma paraméterezésében->DelWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Becsült" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Mindenki" #: bin/rt-crontool:356 msgid "Example:" msgstr "Például:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Lejárt" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Kiegészítõ információk" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Nem sikerült csatlakozni az adatbázishoz: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "A %1 Modul nem betölthetõ. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Nem sikerült betölteni a sablont" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Feb" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "feb." #: NOT FOUND IN SOURCE msgid "February" msgstr "Február" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "FájlNév" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "fájlnév" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Végsõ prioritás" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "VégsőPrioritás" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Találjon olyan csoportot, amelyiknél a" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Találj olyan embereket, akiknél a" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Problémák keresése" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Elsõ" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Bármi!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "A változtatás kikényszerítése" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Átad" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Üzenet továbbküldése" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Üzenet továbbküldése és visszalépés" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Probléma átadása" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Üzenet továbbküldése" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Üzenet továbbküldése harmadik személy(ek)nek" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "%quant(%1) problémát találtam" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pén" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "P" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Péntek" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Teljes fejléc" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Általános" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "%1 felhasználónak adva" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Általános" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Globális egyéni mezõ" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Egyéni mezõk általános beállításai" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Általános probléma: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG hiba. Lépjen kapcsolatba az Adminisztrátorral." #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG integráció letiltva." #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "%1 GnuPG privát kulcsa(i)" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "%1 GnuPG publikuskulcsa(i)" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Hajrá!" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Hajrá!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Mutassa a problémát" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gráf" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Csoport" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Csoportjogok" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Csoportnak már vannak tagjai: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "A csoportot nem lehetett létrehozni: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Csoport létrehozva" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Csoport letiltva" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Csoport engedélyezve" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "A csoportnak már van ilyen tagja" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Csoport nem található" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Csoport jogosultsága(i)" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Csoportok" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Csoportok nem lehetnek a saját tagjaik tagjai!" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "A keresési feltételeknek megfeleõ csoportok" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Csoport(ok) melynek a felhasználó tagja (pipálja ki melyeket megszüntetni kiván)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Csoport(ok) melynek a felhasználó nem tagja (pipálja ki melyekhez kivánja hozzáadni)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Csoportok melyekhez a felhasználó tartozik" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Továbbküldött üzenet fejléce" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Hallo!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hallo %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Részletes történet" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "A %1 csoport története" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "%1 felhasználó története" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Kezdőlap" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Kezdőlap frissítésének gyakorisága" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "OtthoniTelefon" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Kezdõlap" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Óra" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Órák" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "" #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Sorszám" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Személy" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Ha a beküldõ ismeretlen, ezzel legyen az új probléma beküldõje" #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Ha nincs megadva sor, ebbe a sorba kerüljenek az új problémák" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Ha valamit módosított, ne felejtsen el ide kattintani, hogy megtörténjen a" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Érvénytelen érték %1-nek" #: NOT FOUND IN SOURCE msgid "Image" msgstr "Kép" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Nem változtatható mezõ" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Láthatóak legyenek a letiltott sorok is." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Láthatóak legyenek a letiltott sorok is." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Keresés a letiltott felhasználók között is." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Kezdõ prioritás" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "KezdőPrioritás" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Adatbázis inicializálása" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Input hiba" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "RT telepítése" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Belsõ hiba" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Belsõ hiba: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Érvénytelen csoportfajta" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Érvénytelen jog" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Érvénytelen dátum" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Érvénytelen objektum" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Érvénytelen sor" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Érvénytelen jog" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Érvénytelen érték %1-nek" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Érvénytelen érték az egyéni mezõhöz" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Érvénytelen státuszérték" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "dőlt" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "jan." #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Júl" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "júl." #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Minden módosítása" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jún" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "jún." #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Hagyd 'localhost'-on ha nem tudod mit írj ide. Hagyd üresen ha helyben, socketen keresztül csatlakozol." #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Nyelv" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Nagy" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Utolsó" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Utolsó kapcsolat" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Utoljára foglalkoztak vele" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Utoljára aktualizálva" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Utoljára frissítette:" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Utoljára frissítette" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "Utoljára aktualizálta" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "feliratok" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Felhasználónak RT-hozzáférés engedélyezése" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Felhasználónak több jog engedélyezése" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Hajrá!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Kapcsolat már létezik" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Kapcsolat nem hozható létre" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Kapcsolat létrehozva (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Kapcsolat törölve (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Kapcsolat nem található" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "%1. számú probléma kapcsolatainak módosítása" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Kapcsolatok módosítása" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Lekérdezés betöltése" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Betöltött perl modulok" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "Cím" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Területi beállítások" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Cím" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written.\\n RT can't run." msgstr "Log-könyvtár %1 nem található, vagy nincs írási joga.\\n Az RT tud elindulni." #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "%1-ként van bejelentkezve" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Kijelentkezett" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Bejelentkezés" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Kijelentkezés" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Legyen a tulajdonos" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Státusz változtatása" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Határidõ változtatása" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Megoldási dátum változtatása" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Hozzáfogás dátumának változtatása" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Kiosztás dátumának változtatása" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Bejelentés dátumának változtatása" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Prioritás állítása" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Sor változtatása" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Tárgy változtatása" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Csoportok és tagjaik kezelése" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Minden sorra vonatkozó tulajdonságok és beállítások kezelése" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Sorok és a sorokra jellemzõ beállítások kezelése" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Felhasználók és jelszavaik kezelése" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Márc" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "már." #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Máj" #: NOT FOUND IN SOURCE msgid "May." msgstr "máj." #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Tag hozzáadva" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Tag törölve" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Tag hozzáadva: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Tag törölve" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Tag nincs törölve" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Tagja a" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Tagok" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "%1 tag hozzáadva" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "%1-beli tagság törölve" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Tagságok" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "%1 felhasználó tagságai" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Beolvasztás sikeres" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Beolvasztás sikertelen Konnte EffectiveId nicht setztn" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Beolvasztás sikertelen Konnte EffectiveId nicht setztn" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Beolvasztani ebbe" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Beolvasztva %1-be" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Üzenet szövege" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "A sor nem hozható létre" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Üzenet rögzítve" #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Jelszó minimális hossza" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "perc" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "MobilSzám" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Változtassa meg a %1-re vonatkozó egyéni mezõket!" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Csoportjogok módosítása" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Tagok módosítása" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Jogok módosítása" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Felhasználói jogok módosítása" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Változtassa meg a(z) %1 sor egyéni mezõjét!" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "%1. számú probléma idõadatainak módosítása" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "%1. számú probléma idõadatainak módosítása" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Változtassa meg az általános csoportjogokat!" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Változtassa meg az általános csoportjogokat!" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Változtassa meg az általános felhasználói jogokat!" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Változtassa meg az általános felhasználói jogokat!" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Változztassa meg a(z) %1 sor csoportjogait!" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Módosítsa a(z) %1 csoport jogait" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Változtassa meg a %1 sor csoportjogait!" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Változtassa meg a %1 sorhoz tarozó részvevõket!" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "A %1. számú problémában érintett személyek változtatása" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Változtassa meg a(z) %1 sor Scripjeit" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Változtassa meg a minden sorra vonatkozó scripeket!" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Hozzon létre egy sablont!" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Változtassa meg az általános sablonokat!" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "A %1 csoport módosítása" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "%1 felhasználó módosítása" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "%1. számú probléma adatainak módosítása" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "%1. számú probléma alapadatainak módosítása" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Változtassa meg a(z) %1 csoport jogait!" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Változtassa meg a(z) %1 sor felhasználói jogait!" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Hétf" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "H" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Hétfő" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "További részletek %1 felhasználóról" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Lefelé mozgatni" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Felfelé mozgatni" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "%1 problémáim" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Lezárás" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Saját dashbordjaim" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Saját lekérdezések" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "ÚJSOR" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Név" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "A felhasználói név már foglalt" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Soha" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Új" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Új kapcsolatok" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Új jelszó" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "" #: NOT FOUND IN SOURCE msgid "New Query" msgstr "Új lekérdezés" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Új keresés" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Új egyéni mezõ" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Új dashboard" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Új csoport" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Új üzenetek" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Új jelszó" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Új jelszó értesítő lett elküldve" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Új sor" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Új emlékeztető:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Új jogok" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Új Scrip" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Új sablon" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Új probléma" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Az új probléma nem létezik" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Új felhasználó" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Új résztvevõk" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Következõ" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Következõ oldal" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Becenév" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Becenév" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Nincs egyéni mezõ" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nincs egyéni mezõ meghatározva" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nincs csoport meghatározva" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nincs sor meghatározva" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "RT-felhasználó nem található. Vegyew fel a kapcsolatot az RT-adminisztrátorral.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Nincs tárgy" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Nincs sablon" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Nincs sor megadva!" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Nincs kiegészítés tárolva" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Nincs dasboard." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Nincs leírás a(z) %1-hez" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Nincs csoport megadva!" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Nincs a keresési feltételeknek megfeleõ csoport." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Nincs jelszó megadva" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Nincs joga sort létrehozni" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Nincs joga a(z) '%1' sorban problémát létrehozni" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Nincs joga felhasználót létrehozni" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Nincs jogosultsága az adott probléma megtekintésére" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Nincs joga ezt a problémát aktualizálni" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Nincs felelõs megadva!" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Nincs vezetõ kiválasztva." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Nem található a keresési fletételeknek megfelelõ sor" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Nem találhatók jogok" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Nincsenek jogok engedélyezve." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Nincs feldolgozható keresési lista." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "(nincs tárgy)" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Nincs értesítési típus megadva!" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Nincs a keresési feltételeknek megfeleõ felhasználó." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Senki" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Nem létezõ mezõ?" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nincs bejelentkezve." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Nincs megadva" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Megjegyzések" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Értesítést nem sikerült elküldeni." #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "AdminCCs értesítése" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "AdminCCs értesítése kiegészítésként" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Más címzettek értesítése" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Más címzettek értesítése kiegészítésként" #: etc/initialdata:41 msgid "Notify Owner" msgstr "A tulajdonos értesítése" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "A tulajdonos értesítése kiegészítésként" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Beküldõ értesítése" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "A beküldõ és a tájékoztatást kapó értesítése" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "A beküldõ és a tájékoztatást kapó értesítése kiegészítésként" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Minden résztvevõ tájékozatatása" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Minden résztvevõ értesítése kiegészítésként" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "nov." #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Találatok száma" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "VAGY" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekum nem hozható létre" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Az objekumot nem sikerült törölni" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objektum létehozva" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objektum törölve" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "okt." #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Offline" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "" #: etc/initialdata:143 msgid "On Comment" msgstr "Kiegészítéskor" #: etc/initialdata:115 msgid "On Correspond" msgstr "Válaszoláskor" #: etc/initialdata:104 msgid "On Create" msgstr "Létrehozáskor" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Tulajdonos változásakor" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Prioritás változásakor" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Sor megváltozásakor" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "" #: etc/initialdata:178 msgid "On Resolve" msgstr "Megoldáskor" #: etc/initialdata:149 msgid "On Status Change" msgstr "Státusz megváltozásakor" #: etc/initialdata:109 msgid "On Transaction" msgstr "Tranzakciónál" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Csak a(z) %1 után létrejött poblémák engedélyezései legyenek láthatóak" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Csak a(z) %1 elõtt létrejött problémák engedélyezései legyenek láthatóak" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Nyitott" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Megnyit" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Nyitott problémák" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Rendezés" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Cég, szervezet" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Kimenő email naplózva" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Prioritás idõvel emelkedik" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Saját problémák" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Tulajdonos" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Erõszakos tulajdonosváltás: %1 --> %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "%1/%2 oldal" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "Az oldal nem található" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Felmenõk" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Jelszó" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Jelszó-emlékeztetõ" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Jelszó megváltoztatva" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "A jelszó túl rövid!" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Jelszó: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:463 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "A jelszavak nem egyeznek." #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Résztvevõk" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl konfiguráció" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Hozzáférés visszautasítva" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Hozzáférés megtagadva" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Személyes dashboard" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Saját Csoportok" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Saját csoportok" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Saját csoportok:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefonszámok" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Beállításaim" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Elõzõ" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Előző" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "Elõzõ oldal" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "%1 vezetõ nem található." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioritás" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioritás kezdõ értéke" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Kiemelt" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Kiemelt felhasználók:" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Lekérdezés" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Lekérdezésszerkesztõ" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Sor" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "%1 sor nem található" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "A sor neve" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Sor már létezik" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "A sor nem hozható létre" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "a sor nem tölthetõ be." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "A sor létrehozva" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Sor letiltva" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Sor engedélyezve" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "A sor nem található" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "SorNév" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Sorok" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Gyors lekérdezés" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Probléma felvétele (gyors)" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 %2-nek" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Konfiguráció" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT Hiba" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT mérete" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "Áttekintés" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "%1 -- Request Tracker" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Valódi név" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "%1 hivatkozás törölve" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "A következõk kapcsolódnak hozzá" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "A következõkhöz kapcsolódik" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Frissítés" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Kezdőlap frissítése 10 percenként." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Kezdőlap frissítése 120 percenként." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Kezdőlap frissítése 2 percenként." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Kezdőlap frissítése 20 percenként." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Kezdőlap frissítése 5 percenként." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Kezdőlap frissítése 60 percenként." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "%1 percenként frissítse ezt az oldalt." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Emlékeztetők" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Emlékeztetők a #%1 hibajegyhez" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Adminisztratív tájékoztatást kapó eltávolítása" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Tájékoztatást kapó eltávolítása" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Beküldõ eltávolítása" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Válaszol" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Válaszcím" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Válasz a beküldõknek" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Válasz a problémákra" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Jelentések" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Beküldõ" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Beküldõ" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "A problémát meg kell oldani" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "A szükséges '%1' paraméter nincs megadva" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Visszaállít" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Otthoni" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Megold" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "%1. (%2) probléma lezárása" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Megoldva" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Megoldottak tulajdonos szerint" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Megoldottak egy idő intervallumban" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Megoldott problémák, tulajdonos szerint" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Válasz" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Változtatások eredménye" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Vissza a problémához" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Jelszó megismételve" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "A jog megosztva" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "A jog betöltve" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "A jog nem vonnható vissza" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "A jog nem található" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "A jog nem található." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Jog visszavonva" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Jogok" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "A jog nem kiadható %1 -nek" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "%1 jogai nem vonhatók vissza" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Szerepek" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Sorok" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "listázott sorok száma" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Sorok száma oldalanként" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "Az SQLite egy olyan adatbázis, aminek nincs szüksége szerverre, vagy bármiféle konfigurációra. Az RT fejlesztői teszteléshez, fehlesztéshez ajánlják, de nem igazán ajánlott egy komolyabb RT szerverhez." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Szo" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Szo" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "szombat" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Mentés" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Változtatások mentése" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Beállítások mentése" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Mentés újként" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Változtatások mentése" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "A %1 mentett keresés nem található" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Elmentett lekérdezés" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip létrehozva" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Scrip mezök" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip törölve" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Minden sorhoz érvényes Scripek" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Keresés" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Keresési beállítások" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Engedélyezések keresése" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Problémák keresése" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Keresési beállítások" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "A problémák teljes szövegében sokáig tarthat a keresés, de ha szükséges, a fulltext:kifejezés begépelésével a teljes problémában és előzményeiben is lehet keresni." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "Biztonság:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Lásd még:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Eyéni mezõk" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Kiválaszt" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Válasszon egy egyéni mezõt!" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Válasszon csoportot!" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Válasszon sort" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Válassza ki az új probléma sorát" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Válasszon felhasználót!" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "más nyelv kiválasztása" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Válasszon egy egyéni mezõt!" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Válasszon egy egyéni mezõt!" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Dashboard kiválasztása" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Válasszon csoportot!" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Válasszon több értéket!" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Válasszon értéket!" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Válasszon sort!" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Válasszon Scripet!" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Válasszon sablont!" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Válasszon (legfeljebb %1) értéket!" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Válasszon felhasználót" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Kiválasztott egyéni mezők" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Kiválasztott problémák" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Email küldése sikeres" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Email küldése minden nézőnek" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Email küldése minden nézőnek mint hozzászolás" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Email küldése a beküldőknek és a Cc-knek" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "üzenet küldése a beküldőknek" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Email küldése a tulajdonosnak" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Szept" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "szep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "Szeptember" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Beállítások" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "Lezárások" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Látható mezõk" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Lekérdezés eredménye" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Láthatóak legyenek a felszabadított problémák" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Problémaleírás" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "láthatóak legyenek az elutasított problémák" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Attribútumok" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Linkleírások megjelenítése" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Láthatóak legyenek a folyamatban levõ problémák" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Láthatóak legyenek a mások engedélyezésére váró problémák" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "adatok törlése" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Az adatok törléséhez az adatbázisból kell egy könyvtár ahova a dump fájlok kerülnek. Ellenőrizd hogy létezik-e a %1 és írható-e a webszerver által." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Az adatok törléséhez az adatbázisból kell egy könyvtár ahova a dump fájlok kerülnek. Ellenőrizd hogy létezik-e a %1 és írható-e a webszerver által." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Aláírás (e-mail-hez)" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Egyszerű keresés" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Méret" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Kicsi" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Valami hiba történt. Lépj kapcsolatba a rendszergazdával!" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Rendezés" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Elkezdve" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Kiosztva" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Állam" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Státusz" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Státusz vátoztatás" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Státusz változtatása: '%1' --> '%2'" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Elcsen" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Problémák elcsenése" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Probléma elcsenése %1 tulajdonostól" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Probléma elcsenése %1 tulajdonostól " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Tárgy" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Mentés" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Feliratkozás" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Feliratkozás" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Sikerült" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Vas" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "V" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Vasárnap" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "RendszerAdmin" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "" #: NOT FOUND IN SOURCE msgid "System" msgstr "Rendszer" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Rendszerkonfiguráció" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Rendszer dashoboard-ok" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Alapértelmezett" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Rendszerhiba" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Rendszerhiba: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Rendszerkonfiguráció" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Rendszerhiba. Jog nem delegálható ." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Rendszerhiba. Jog nem adható." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Rendszercsoportok" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Átvesz" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Problémák átvétele" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Átvéve" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Sablon" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Sablon #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "A #%1 sablon törölve" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "A '%1' sablon nem található" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Sablon törölve" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "A sablon üres" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Sablon nem található" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Sablon beolvasva" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Hiba a sablonban" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Sablonok" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "Szöveg" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Már ez az aktuális érték" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Egyéni mezõhöz érvénytelen értek" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Ez ugyanaz az érték" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "A felhasználónak/csoportnak már van ilyen joga" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "A vezetõ már %1-a a sornak" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "A vezetõ már %1-a a problémának" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "A vezetõ már nem %1-a a sornak" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Ez a sor nem létezik" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "A problémának megoldatlan függőségei vannak" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Már ez a felhasználó a tulajdonos!" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Ilyen felhasználó nem létezik" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "A felhasználó már kiemelt" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "A felhasználó már nem kiemelt" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "A felhasználó mostantól kiemelt" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "A felhasználó mostantól nem kiemelt" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "a felhasználóhoz nem tartozhatnak problémák ebbõl a sorból" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "nem numerikus azonosító" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Alapadatok" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Az adatbázis szerver domain neve (pl. 'db.pelda.hu')." #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "A következő parancs megkeres minden aktív problémát a 'general' sorban aminek 99-es a prioritása és nem nyúltak hozzá 4 órája:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "A kért oldal nem található" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Egy probléma beküldője" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Téma" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "" #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Üzenet a következőknek lesz elküldve.." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "A tranzakció nem tartalmaz semmit" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "A felhasználó által felvetett %1 legsürgõsebb probléma" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Csüt" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Cs" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Csütörtök" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Probléma" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "%1. számú (%2) probléma jellemzõinek módosítása" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Probléma #%1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Probléma. %1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "%1. probléma" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "A %1 számú probléma létre lett hozva a következő soron: '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Probléma %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Probléma egyéni mezõi" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Pobléma megoldva" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Probléma keresése" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Probléma tranzakciói" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "A probléma tartalma" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "A probléma belső hiba miatt nem hozható létre" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "A problémát nem sikerült betölteni" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Probléma metadata" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "A probléma állapota megváltozott" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Problémák" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Erre a jóváhagyásra váró problémák:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Becsült idő" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Maradék idõ" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Ráfordított munkaidõ" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Maradék idõ" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Munkaidõ" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "Ráfordított munkaidõ" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Időzóna" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Beérkezett" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Eszközök" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "" #: etc/initialdata:249 msgid "Transaction" msgstr "" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Tranzakció egyéni mezõi" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Kedd" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "K" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Kedd" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Típus" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Nincs megvalósítva" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix usernév" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "korlátlan" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Névtelen lekérdezés" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Nem kiemelt" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Inaktív egyéni mezõk" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Inaktív objektumok" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Probléma visszaadása" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Frissít" #: NOT FOUND IN SOURCE msgid "Update All" msgstr "Mindet frissíti" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Probléma frissítése" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Frissítés típusa" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "A kiválasztott problémák frissítése" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "" #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "A kiválasztott problémák frissítése" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Probléma frissítése" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "%1. számú (%2) probléma aktualizálása" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Frissítve" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Feltöltés" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Több fájl feltöltése egyszerre" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Több kép feltöltése egyszerre" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Egy fájl feltöltése" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Egy kép feltöltése" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Módosítások feltöltése" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Használat: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "'%1' felhasználó nem található" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Felhasználó által meghatározott" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Felhasználói jogok" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "" #: lib/RT/User.pm:262 msgid "User created" msgstr "Felhasználó létrehozva" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Felhasználó által definiált csoport" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Felhasználó letiltva" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Felhasználó engedélyezett" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "A felhasználónak nincs megadva e-mail címe" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Felhasználó betöltve" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Felhasználó által definiált csoportok" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Felhasználó" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Felhasználók" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Ellenőrzés" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Értékek" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "RT jelentések" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Verzió" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Résztvevõk" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Sze" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Sze" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Szerda" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:110 msgid "When anything happens" msgstr "" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Munkahelyi" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Munkaidõ" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Már az öné ez a probléma" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "%1 Problémát talált a %2 sorban" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Kilépett a Request Tracker programból." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Nincs joga létrehozni problémákat ebben a sorban" #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Nem hozhat létre problémákat ebben a sorban" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Itt ismét bejelentkezhetsz!" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "A problémája engedélyezve." #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "A problémája elutasítva." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "A begépelt felhasználói név vagy jelszó hibás!" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Irányítószám" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "
 elem hozzáadása a szöveges csatolások köré"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "után"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "létrehozhat saját lekérdezéseket"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "betölthet saját lekérdezéseket"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "%1nak engedélyezve"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

# ## wieder - Duzen???
#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "elõtt"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "Lezárt"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "tartalmazza"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "napi"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "naponta %1 órakor"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "napja"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "törölve"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "nem"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "nem tartalmazza"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "nem egyezik"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "letöltés"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "egyenlõ"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "hiba: nincs mit törölni"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "hiba: nincs mit áthelyezni"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "hiba: nincs mit választani"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "nagyobb mint"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "'%1' csopot"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "órája"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "Sorszám"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "=="

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "nem"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "kulcs letiltva"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "kulcs lejárt"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "kulcs visszavonásra került"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "balról jobbra"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "kisebb mint"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "=="

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr "perce"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "perc"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "havi"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "havonta (%1 napon) %2 órakor"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "hónapja"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "soha"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "új"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "(nincs név)"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "Nincs érték"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "senki"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "nem egyenlõ"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "semmi"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "e napon"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "napon"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "egy"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "Nyitott"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "nyit/zár"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "más..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "torta"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "Stapel %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "elutasítva"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "megoldva"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "jobbról balra"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sec"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "várakozik"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "Összesítő sorok"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "rendszer %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr ""

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr ""

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "probléma #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "fentről lefelé"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "korlátlan"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "felhasználó %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "részletes"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "heti"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "hetente (%1 napon) %2-kor"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "hete"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "az a port melyen a web szervere figyel (pl 8080)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "fejlécekkel"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "éve"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "igen"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/fr.po0000664000175000017500000122602112262650742013745 0ustar  chmrrchmrr# Copyright (c) 2002 Jesse Vincent 
# valid as of 3.8-TESTING
# jfenal , 2005.
# jfenal , 2005.
# Emmanuel Lacour , 2008.
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:16+0000\n"
"Last-Translator: Alex Vandiver \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " %1 effacé."

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 renommé en %2."

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 sauvé."

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (pas de clef publique !)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (non vérifié !)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "n°"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "n°%1 : %2"

#: NOT FOUND IN SOURCE
msgid "$1"
msgstr "$1"

#: NOT FOUND IN SOURCE
msgid "$DAYS_OF_WEEK[$dow]."
msgstr "$DAYS_OF_WEEK[$dow]."

#: NOT FOUND IN SOURCE
msgid "$MONTHS[$mon]."
msgstr "$MONTHS[$mon]."

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$prefix %1"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 n°%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %3 %2 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %3 %2 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3 %2 %7 %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 ajouté"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "il y a %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 changé en %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 supprimé"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 supprimés"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 renommés en %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 sauvés."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 mis à jour"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 avec le modèle %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) par %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (inchangé)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (du panneau %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ajustez l'option de configuration LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Un paramètre à passer à %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Écrit les mises à jour de statuts sur STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Précisez l'identifiant du modèle que vous souhaitez utiliser"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Précisez si vous souhaitez utiliser la première (first), la dernière (last) ou toutes (all) les transactions"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Spécifiez le nom ou l'id du modèle que vous désirez utiliser"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Précisez l'action que vous voulez utiliser"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Précisez par une liste séparée par des virgules, les types de transactions que vous souhaitez utiliser"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Précisez la condition que vous voulez utiliser"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Précisez la recherche que vous voulez utiliser"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Tableaux de bord"

#: NOT FOUND IN SOURCE
msgid "%1 Dashboards"
msgstr "%1 tableaux de bord"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "ScripAction %1 chargée"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 ajouté(e) comme valeur de %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 existe déjà et contient des tables RT mais ne contient pas les métadonnées RT. L'étape 'Initialiser la base de données' pourra insérer ces données dans cette base. Si cette solution vous convient, cliquez sur 'Personnalisation de base' ci-dessous pour continuer la configuration de RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 existe déjà mais ne contient pas de tables RT.  L'étape 'Initialiser la base de données' pourra insérer ces tables et les données initiales dans cette base. Si cette solution vous convient, cliquez sur 'Personnalisation de base' ci-dessous pour continuer la configuration de RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 semble être un objet local, mais est introuvable dans la base de données"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 semble être complètement initialisé(e). Il ne sera pas nécessaire de créer des tables ou d'insérer les données de bases mais vous pouvez continuer à personnaliser RT en cliquant 'Personnalisation de base' ci-dessous"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 par %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 changé(e) de %2 à %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 changé de '%2' en '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "graphique %1 par %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "copie de %1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "Configuration centrale %1"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 n'a pas pu être positionné à %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 ne peut pas mettre le statut à résolu. La base de données RT est peut être incohérente."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 créé(e)"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 supprimé(e)"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 désactivé(e)"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 n'existe pas."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 activé(e)"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "Mes %1 tickets de plus haute priorité"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 est un outil agissant sur les tickets depuis un ordonnanceur externe tel que cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 est un utilitaire, destiné a être lancé via cron, qui envoi une compilation par utilisateur des notifications RT en attente."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "RT reçoit déjà des courriels à l'adresse %1. L'ajouter comme %2 créerais une boucle."

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 n'est plus un %2 pour cette file."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 n'est plus un %2 pour ce ticket."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 n'est plus une valeur pour le champs personnalisé %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 articles récemments mis à jour"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 articles les plus récents"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "Les %1 derniers tickets sans intervenant"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objets"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "droits de %1"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "Configuration de site %1"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 mise à jour: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 mise à jour: Aucun changement"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 mis à jour"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 résoudra tous les membres d'un ticket groupé résolu."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1 de %2 objets"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1 de %2 de %3 objets"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "Clefs GnuPG de %1"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "Mot de passe actuel de %1"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Tableaux de bord de %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Recherches sauvées de %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1 : pas d'attachement spécifié"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Créer un ticket dans%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1o"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1 m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1 s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%quant(%1,article)"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,heure)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' est un statut invalide"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' n'est pas un identifiant de classe valide"

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "Rôles"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "Système"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "Groupes utilisateurs"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "Utilisateurs"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Cocher la case pour terminer le rappel)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Cocher la case pour supprimer)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Cocher les cases pour effacer)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Cocher les cases pour désactiver les notifications aux destinataires listés)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Cocher les cases pour activer les notifications aux destinataires listés)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Entrer le numéro du ticket ou son URL, séparés par des espaces)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Si vide, le défaut sera %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Pas de champ personnalisé)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Aucun membre)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Aucun Scrip)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Aucun modèle)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Aucun)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Transmettre une copie de cette mise à jour à une liste d'adresses courriel administratives séparées par des virgules. Ces personnes recevront les mises à jour suivantes.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Transmettre une copie de cette mise à jour à une liste d'adresses courriel séparées par des virgules. Ces personnes recevront les mises à jour suivantes.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Utilisez ces champs lorsque vous sélectionnez « Défini par l'utilisateur » pour une condition ou une action)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Ne sera pas envoyé par courriel)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(tous)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(vide)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(aucun résumé)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(sans nom)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(pas de clé publique!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(sans information)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(aucune valeur)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(un seul ticket)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(attente de %quant(%1, autres tickets))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(en attente d'approbation)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(exigé)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(confiance: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(sans titre)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(n'est pas de confiance !)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id est un argument obsolète et ne peut pas être utilisé avec --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "l'argument pour --transaction ne peut être que 'first', 'last' ou 'all'"

#: NOT FOUND IN SOURCE
msgid "1995-11-25 21:59:12"
msgstr "1995-11-25 21:59:12"

#: NOT FOUND IN SOURCE
msgid "1995-11-25T21:59:12Z"
msgstr "1995-11-25T21:59:12Z"

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ticket->Statut%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "<%$Action%> here"
msgstr "<%$Action%> ici"

#: NOT FOUND IN SOURCE
msgid "<%$_%>"
msgstr "<%$_%>"

#: NOT FOUND IN SOURCE
msgid "<%$field%>"
msgstr "<%$field%>"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Tous les flux iCal contiennent un code secret qui vous autorise à y accéder. Si une des URLs de vos flux iCal ont a été révélé à des personnes non souhaitées, vous pouvez obtenir un nouveau code, ceci rendra inaccessibles tous les flux iCal existants ci-dessous.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Un modèle vide" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Pas de mot de passe spécifié, l'utilisateur ne pourra donc pas se connecter." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE non trouvé" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "Les ACE peuvent seulement être créés et effacés." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "ET" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "A propos" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "contrôle d'accès" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Action" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Action '%1' non trouvée" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Action exécutée" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Action validée.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "L'argument 'Action' est obligatoire" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Action préparée..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Actions" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "Tickets actifs" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "Ajouter %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Ajouter AdminCC" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Ajouter un signet" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Ajouter CC" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Ajouter des colonnes" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Ajouter un critère" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Ajouter d'autres fichiers" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Ajouter Demandeur" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Ajouter une valeur" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Ajouter un scrip qui s'applique à toutes les files" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Ajouter des commentaires ou des réponses aux tickets sélectionnés" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Ajouter le groupe" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Ajouter des membres" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Ajouter de nouveaux observateurs" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "Ajouter des permissions pour cet %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Ajouter ces termes" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Ajouter ces termes et rechercher" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Ajouter un utilisateur" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Ajouter les valeurs" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Ajouter, retirer et modifier des champs personnalisés pour les objets" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "Ajouter, modifier et supprimer des valeurs de champs personnalisés pour des objets" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "%1 ajouté comme %2 pour cette file" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Ajout groupe/utilisateur comme %1 pour cette file" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Ajout groupe/utilisateur comme %1 pour ce ticket" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Adresse 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adresse1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adresse2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Commentaire Admin" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Correspondance Admin" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administrateurs de files" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Configuration globale / administration" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGroup" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "GérerClasse" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "GérerChampPersonnalisé" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "GérerValeursDeChampsPersonnalisés" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "GérerGroupes" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "GérerAppartenanceGroupes" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "GérerGroupesPersonnelsPropres" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "GérerFile" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "GérerRubriques" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "GérerUtilisateurs" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Cc Administratif" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Mot de passe administrateur" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avancé" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Recherche avancée" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Aggrégateur" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Toutes les approbations obtenues" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Tous les articles de cette classe doivent être disponibles sous forme de liste sur la page de réponse d'un ticket" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "Toutes les classes" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "Tous les tableaux de bord" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Toutes les files" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "Tous les tickets" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Tous les flux iCal contiennent un code secret qui vous autorise à y accéder. Si une des URLs de vos flux iCal ont a été révélé à des personnes non souhaitées, vous pouvez obtenir un nouveau code, ceci rendra inaccessibles tous les flux iCal existants ci-dessous." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Toutes les files correspondant au critère de recherche" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Tous les tickets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Toutes les rubriques" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "Autoriser la création de recherches sauvées" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "Autoriser le chargement de recherches sauvées" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Autoriser l'écriture de code Perl dans les modèles, scrips, etc" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Déjà chiffré" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Et/Ou" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "N'importe quel champs" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Appliqué" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "S'applique à" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Appliqué à tous les objets" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Appliquer" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Appliquer en global" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Appliquer vos changements" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Approbation" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Approbation #%1 : %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Approbation #%1 : Notes non enregistrées à cause d'une erreur système" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Approbation #%1 : Notes enregistrées" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Approbation obtenue" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Approbation prête pour l'intervenant" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Approbation refusée" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Approuver" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Notes de l'approbateur : %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Avr" #: NOT FOUND IN SOURCE msgid "April" msgstr "Avril" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "Êtes-vous sur de vouloir supprimer cet article ?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "Article n°%1 effacé" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "Article n°%1 : %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "Article %1" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "Article %1 créé" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Gestion des articles" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "Article effacé" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Article non trouvé" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "Articles" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "Articles dans %1" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "Articles correspondant à %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Articles sans rubrique" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Asc" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Croissant" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Fixer et supprimer les champs personnalisés" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "Assigner et supprimer des champs personnalisés pour cette file" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "FixerChampsPersonnalisés" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Attaché" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Attacher un fichier" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Fichier attaché" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Attachement" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Attachement '%1' ne peut pas être chargé" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Attachement créé" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Nom de fichier de l'attachement" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Attachements" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Le chiffrement des attachements est désactivé" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Attribut supprimé" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Aoû" #: NOT FOUND IN SOURCE msgid "August" msgstr "Août" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Il n'y a pas de couleurs de thème suggérées automatiquement pour votre image. La version de GD installée ne gère peut-être pas le type d'image choisie. Les types gérés sont : %1. Vous pouvez recompiler libgd et GD.pm pour inclure la gestion d'autres types d'image." #: etc/initialdata:218 msgid "Autoreply" msgstr "RéponseAuto" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Réponse automatique aux demandeurs" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Disponible" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Copie cachée" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Retour" #: NOT FOUND IN SOURCE msgid "Back: " msgstr "Retour: " #: NOT FOUND IN SOURCE msgid "Back: Customize Basics" msgstr "Retour: Configuration initiale" #: NOT FOUND IN SOURCE msgid "Back: Customize Database Details" msgstr "Retour: Configuration de la base de données" #: NOT FOUND IN SOURCE msgid "Back: Customize Email Addresses" msgstr "Retour: Configuration des adresses de courriel" #: NOT FOUND IN SOURCE msgid "Back: Customize Password for Users in RT" msgstr "Retour: Configuration des mots de passe des utilisateurs dans RT" #: NOT FOUND IN SOURCE msgid "Back: Customize Sendmail" msgstr "Retour: Configurer Sendmail" #: NOT FOUND IN SOURCE msgid "Back: Select Database Type" msgstr "Retour: Choix de la base de données" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Mauvaise sécurité pour l'attribut %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Essentiel" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Cci" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Assurez-vous de sauvegarder vos modifications" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Logo d'entreprise de Best Practical Solutions, LLC" #: etc/initialdata:214 msgid "Blank" msgstr "Vide" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Corps" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Gras" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Signet" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Tickets favoris" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Tickets favoris" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "En-têtes courts" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Parcourir par rubrique" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "Parcourir les requêtes SQL exécutées par ce processus" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Màj en masse" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Support commercial" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Par défaut, RT utilisera le fuseau horaire configuré au sur votre système. Vous pouvez configurer une valeur par défaut pour l'affichage des dates et heures dans RT. Vos utilisateurs pourront choisir un fuseau différent dans leurs préférences." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CCGroup" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: NOT FOUND IN SOURCE msgid "Calendar" msgstr "Calendrier" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Impossible de charger la recherche enregistrée \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Les utilisateurs système ne peuvent être modifiés" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Le groupe/utilisateur peut-il voir cette file" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Impossible d'ajouter une valeur de champ personnalisé sans un nom" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Impossible de trouver une collection pour la classe '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Impossible de trouver une recherche sauvée et de l'utiliser" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Un ticket ne peut être lié à lui même" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Impossible de sauvegarder %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Impossible de sauver cette recherche" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Impossible de spécifier à la fois la base et la cible" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "Impossible de créer un lien avec une valeur uniquement numérique" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Impossible de créer des tickets dans une file désactivée." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Impossible de créer l'utilisateur : %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Les catégories sont basées sur" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Catégorie" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Catégorie non sélectionnée" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccs" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Changer" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Passer le ticket d'approbation en statut ouvert" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Changer le mot de passe" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "Graphique" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "Propriétés du graphique" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Tout cocher" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Contrôler la connection à la base de données" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Vérifie les Identifiants sur la Base" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Cocher la case pour supprimer" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Cocher la case pour retirer le droit" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Contrôler vos identifiants de base de données" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Fils" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Choisissez le moteur de base de données" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Choisir un moteur de base de données" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "Choisir les rubriques pour %1" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Ville" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "Classe" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nom de la classe" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "Identifiant de la classe" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "Cette classe est déjà appliquée en global" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "Cette classe est déjà appliquée à %1" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "Classes" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Effacer" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tout effacer" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Cliquer \"Terminer l'installation\" pour terminer." #: NOT FOUND IN SOURCE msgid "Click \"Initialize Database\" to begin creating the database. This may take a few moments" msgstr "Cliquer \"Initialiser la base de données\" pour commencer la création de la base. Cela peu durer quelques instants" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Cliquer \"Initialiser la base de données\" pour créer la base de données RT et insérer les éléments de base. Cela peu durer quelques instants" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Fermer la fenêtre" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Fermé" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tickets fermés" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Boîte combo : Sélectionnez ou saisissez plusieurs valeurs" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Boîte combo : Sélectionnez ou saisissez une valeur" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Boîte combo : Sélectionner ou saisir au plus %1 valeurs" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Commenter" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Adresse de commentaire" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Adresse de commentaire" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Commentaire sur le ticket" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "Adresse de commentaire" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "CommenterTicket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Commentaires" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Commentaires (non envoyés aux demandeurs)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Commentaires (non envoyés aux demandeurs)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Commentaires sur cet utilisateur" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Commentaires ajoutés" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "tr(Commit Stubbed)" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Condition" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Condition '%1' non trouvée" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "L'argument condition est obligatoire" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "La condition satisfait..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Condition, Action et Modèle" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Le fichier de configuration %1 est blocké" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Configuration" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "Configuration de la file %1" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Confirmer" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Connexion réussie" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Contenu" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "Le contenu n'est pas une adresse IP valide" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "Le contenu n'est pas une plage d'adresses IP valide" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Type de contenu" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "TypeDeContenu" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Adresse de réponse" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "Addresse de réponse" #: etc/initialdata:283 msgid "Correspondence" msgstr "Courrier" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Courrier ajouté" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Impossible d'ajouter la nouvelle valeur de champ personnalisé: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Impossible de changer l'intervenant. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Impossible de changer l'ntervenant : %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Impossible de créer le champ personnalisé" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Impossible de créer le champ personnalisé : %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Impossible de créer un groupe" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "Impossible de créer la recherche : %1" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Impossible de créer le modèle : %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Impossible de créer le ticket dans la file désactivée \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Impossible de créer un ticket. File non indiquée" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Impossible de créer l'utilisateur" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "Impossible de supprimer la recherche %1 : %2" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Impossible de trouver ou créer cet utilisateur" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Impossible de trouver ce groupe ou utilisateur" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Impossible de charger l'attribut %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Impossible de charge la classe %1" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Impossible de charger le champ personnalisé %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Impossible de charger ce groupe" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Impossible de charger l'objet pour %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Impossible de faire de ce groupe/utilisateur un %1 pour cette file" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Impossible de faire de ce groupe/utilisateur un %1 pour ce ticket" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Impossible de supprimer ce groupe/utilisateur comme un %1 pour cette file" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Impossible de supprimer ce groupe/utilisateur comme un %1 pour ce ticket" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Impossible de sauver les informations utilisateur" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Impossible d'ajouter la pièce jointe" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Impossible d'ajouter un membre à ce groupe" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Impossible d'appliquer le champs personnalisé à un objet car il est déjà appliqué en global" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Impossible de créer une transaction : %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Impossible de créer l'enregistrement" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "Impossible de créer l'enregistrement : %1" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Impossible de supprimer le tableau de bord %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Colonne introuvable" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Impossible de trouver une transaction adaptée, ignoré" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Groupe/utilisateur introuvable" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Valeur introuvable" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Impossible de charger %1 depuis la base des utilisateurs.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Impossible de charger la classe %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Impossible de charger le champs personnalisé #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Impossible de charger le champs personnalisé n°%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Impossible de charger le champ personnalisé %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Impossible de charger une copie du ticket #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Impossible de charger le tableau de bord %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Impossible de charger le tableau de bord %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Impossible de charger le groupe #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Impossible de charger le groupe %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Impossible de charger le lien" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Impossible de charger l'objet %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Impossible de charger ou de créer l'utilisateur: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Impossible de charger la file" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Impossible de charger la file #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Impossible de charger la file %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Impossible de charger la file '%1'" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Impossible de charger le scrip #%1" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Impossible de charger le modèle #%1" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "Impossible de charger ce groupe/utilisateur" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Impossible de charger le ticket '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "Impossible de charger la rubrique d'appartenance en essayant de le supprimer" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Impossible de charger la transaction #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Impossible de charger l'utilisateur" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Impossible de charger l'utilisateur #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Impossible de charger l'utilisateur n° %1 ou l'utilisateur '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Impossible de charger l'utilisateur '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Impossible d'analyser l'adresse de la chaîne de caractère '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Impossible de remplacer le contenu avec des données déchiffrées: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Impossible de remplacer le contenu par des données chiffrées: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "Impossible de convertir '%1' en lien" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Impossible de convertir '%1' en URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Impossible de résoudre la base '%1' en URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Impossible de résoudre la cible '%1' en URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Impossible d'envoyer le courriel" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Impossible de mettre %1 observateur: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Impossible de sélectionner la clefs privée" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Impossible de désélectionner la clefs privée" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Pays" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Ajouter" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Ajouter des tickets" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "Créer une classe" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Ajouter un Champ Personnalisé" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Ajouter un champ personnalisé pour la file %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "Créer un nouvel article" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Créer un nouvel article dans" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Créer un nouveau tableau de bord" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Ajouter un nouveau groupe" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Ajouter un nouveau groupe personnel" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "Créer un nouveau modèle pour la file %1" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Ajouter un nouveau ticket" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Ajouter un nouvel utilisateur" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Ajouter une file" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Ajouter un scrip pour la file %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Ajouter un modèle" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Ajouter un ticket" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Créer un article" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "Créer un article dans la classe ..." #: NOT FOUND IN SOURCE msgid "Create and modify dashboards" msgstr "Créer et modifier les tableaux de bord" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "Créer un article dans cette classe" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Créer des tableaux de bord pour ce groupe" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "Créer un tableau de bord de groupe" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Ajouter de nouveaux tickets basés sur le modèle de ce scrip" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Créer des tableaux de bord personnels" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Créer des tableaux de bord systèmes" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Ajouter un ticket" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "Créer des tickets" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Ajouter des tickets dans cette file" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Créer des tickets hors-ligne" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Ajouter, supprimer et modifier des champs personnalisés" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Ajouter, supprimer et modifier les files" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Ajouter, supprimer et modifier les membres d'un groupe personnel" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Ajouter, supprimer et modifier les utilisateurs" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "Créer, modifier et supprimer des permissions" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "Créer, modifier et supprimer des champs personnalisés" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "Créer, modifier et supprimer des valeurs de champs personnalisés" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "Créer, modifier et supprimer des files" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "Créer, modifier et supprimer des recherches sauvées" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "Créer, modifier et supprimer des utilisateurs" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "CréerArticle" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "CréerTableauDeBord" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "CréerTableauDeBordDeGroupe" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "CréerTableauDeBordPersonnel" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "CréerRechercheSauvée" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "CréerTicket" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Créé" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Créé Par" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Champ Personnalisé %1 créé" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Créé par" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Créé dans une période" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "Recherche %1 créée" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Tickets créés dans une période, groupés par l'état" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CrééPar" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CrééDepuis" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Créateur" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Chiffrement" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Liens courants" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Scrips actuels" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "Recherche actuelle" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Membres actuels" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Droits actuels" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Recherche courante" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Observateurs actuels" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Champs personnalisés" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Champs personnalisés pour %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "Champs personnalisés pour la file %1" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Programme de nettoyage d'action personnalisé" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Programme de préparation d'action personnalisé" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Condition personnalisée" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Le champs personnalisé n°%1 n'est pas appliqué à cet objet" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Champs personnalisé %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Le champs personnalisé %1 ne s'applique pas à cet objet" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Le champ personnalisé %1 a une valeur." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Le champ personnalisé %1 n'a pas de valeur." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Le champ personnalisé %1 est introuvable" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Champs personnalisé '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Ce champs personnalisé est déjà appliqué à cet objet" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "La valeur du champ personnalisé %1 ne peut pas être trouvée pour le champ personnalisé %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "La valeur du champ personnalisé ne peut pas être effacée" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "La valeur du champ personnalisé ne peut par être trouvée" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "La valeur du champ personnalisé est effacée" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ChampPersonnalisé" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "ValeurDeChampPersonnalisé" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Personnaliser" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personnalisation de base" #: NOT FOUND IN SOURCE msgid "Customize Database Details" msgstr "Configurer la base de données" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personnaliser les adresses de courriel" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Configurer l'envoi des courriels" #: NOT FOUND IN SOURCE msgid "Customize Global" msgstr "COnfiguration globale" #: NOT FOUND IN SOURCE msgid "Customize Global Defaults" msgstr "Configurer les paramêtres par défaut" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "Modifier l'apparence de RT" #: NOT FOUND IN SOURCE msgid "DBA of the database" msgstr "Administrateur de la base de données" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Mot de passe de l'administrateur" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Identifiant DBA" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Compilation quotidienne" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Tableau de bord" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Le tableau de bord n'a pas pu être créé: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Le tableau de bord n'a pas pu être mis à jour: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Tableau de bord mis à jour" #: NOT FOUND IN SOURCE msgid "DashboardSubject" msgstr "RT [_2] Tableau de bord: [_1]" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Tableaux de bord" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Nom d'hôte de la base de données" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nom de la base de données" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Mot de passe de la base de données pour RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Port de connexion à la base" #: NOT FOUND IN SOURCE msgid "Database port number" msgstr "Port de connexion à la base" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Type de base de données" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Nom d'utilisateur de la base de données pour RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Format de date" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Le module DateTime est manquant" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Le module DateTime::Locale est manquant" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Dates" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Déc" #: NOT FOUND IN SOURCE msgid "December" msgstr "Décembre" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Déchiffrer" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Modèle de réponse automatique par défaut" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "File par défaut" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Demandeur par défaut" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Modèle de commentaire administrateur par défaut" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Modèle de courrier administrateur par défaut" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Modèle de courrier par défaut" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "File par défaut" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Modèle de transaction par défaut" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Valeur par défaut: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Valeur par défaut: %1/%2 changée de %3 en %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "DefaultFormat" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Déléguer les droits" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Déléguer des droits spécifiques qui vous ont été accordés." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DéléguerDroits" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Délégation" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Supprimer" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Détruire le modèle" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "Supprimer l'article n°%1" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "Supprimer des articles de cette classe" #: NOT FOUND IN SOURCE msgid "Delete dashboards" msgstr "Supprimer les tableaux de bords" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Supprimer les tableaux de bord pour ce groupe" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Échec de la destruction : %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "Supprimer des tableaux de bords de groupe" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Supprimer les tableaux de bord personnels" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Supprimer les scrips sélectionnés" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Supprimer les tableaux de bord systèmes" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Supprimer les tickets" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Supprimer les valeurs" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "SupprimerArticle" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "SupprimerTableauDeBord" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "SupprimerTableauDeBordDeGroupe" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "SupprimerTableauDeBordPersonnel" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "SupprimerTicket" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "%1 effacé" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Tableau de bord %1 supprimé" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Requêtes supprimées" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Recherche sauvée effacée" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "Recherche %1 supprimée" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Effacer cet objet briserait l'intégrité référentielle" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Effacer cet objet violerait l'intégrité référentielle" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Refuser" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "En dépend" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "EnDépend" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Ajout de la dépendance par %1" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Suppression de la dépendance par %1" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Ajout de la dépendance de %1" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Suppression de la dépendance de %1" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "DépendantDe" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Dépend de" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "DépendDe" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Desc" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Décroissant" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Décrivez la situation ci-dessous" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Description" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "Informations détaillées de votre installation RT" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Détails" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Orientation" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Désactivé" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Afficher" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Afficher la liste des droits" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "Afficher l'article %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Afficher les colonnes" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Afficher les modèles de Scrips pour cette file" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Afficher les Scrips pour cette file" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Afficher les recherches sauvegardées de ce groupe" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribué selon la %1version 2 de la GNU GPL%2" #: NOT FOUND IN SOURCE msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribué selon la %1version 2 de la GNU GPL%2" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribué selon les termes de la version 2 de la licence GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Faire tout et n'importe quoi" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Nom de domaine" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ne pas inclure http://, juste quelquechose comme 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Ne pas actualiser le page d'accueil." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Ne pas rafraîchir les résultats de recherche." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ne pas actualiser cette page." #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Ne pas du tout faire confiance à cette clefs" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Télécharger" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Télécharger en tant que fichier délimité par tabulations" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Télécharger le fichier dump" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "Liste déroulante" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Échéance" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "ÉchéanceDepuis" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ERREUR: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Mise à jour facile de vos tickets ouverts" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "Accès rapide à vos rappels" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Modifier" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Modifier les champs personnalisés" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Modifier les champs personnalisés pour %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Modifier les champs personnalisés pour tous les groupes" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Modifier les champs personnalisés pour toutes les files" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Modifier les champs personnalisés pour tous les utilisateurs" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Modifier les champs personnalisés des articles dans toutes les classes" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Modifier les champs personnalisés pour les tickets de toutes les files" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Modifier les liens" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Modifier la requête" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Mod. recherche" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Modifier les modèles pour la file %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Modifier la hierrarchie globale des rubriques" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Modifier les recherches sauvées du groupe" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Modifier les modèles système" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "Modifier la hierarchie des rubriques pour %1" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "ModifierRecherchesSaugardées" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Texte modifiable" #: NOT FOUND IN SOURCE msgid "Editing Configuration for Class %1" msgstr "Modifier la configuration de la classe %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Modifier la configuration de la file %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Modifier le champ personnalisé %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Modifier les membres du groupe %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Modifier les membres du groupe personnel %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "IdEffectif" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "La base ou la cible doivent être spécifiées" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Soit vous n'avez pas les droits pour voire la recherche sauvée %1, soit votre identifiant est incorrect" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Courriel" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "Adresse de courriel" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "Configuration de l'envoi de courriels" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Compilation de courriels" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Adresse de courriel utilisée" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Distribution des courriels" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Modèle de courriel pour les envois périodiques (compilation) des notifications" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "Adresse de courriel" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Activé" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "Activé (décocher cette case désactive cette classe)" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Activé (Décocher cette case désactive ce champ personnalisé)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Activé (Décocher cette case désactive ce groupe)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Activé (Décocher cette case désactive cette file)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "Classes actives" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Files actives" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Files actives correspondants au critère de recherche" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "État %1 activé" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Chiffrer" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Chiffrer par défaut" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Chiffrer/Déchiffrer" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Chiffrer/Déchiffrer la transaction #%1 du ticket #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Chiffrement désactivé" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Chiffrement activé" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Saisir des articles, tickets ou d'autres URLs en rapport avec cet article" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "Saisir plusieurs plages d'adresses IP" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "Saisir plusieurs adresses IP" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Saisir plusieurs valeurs" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Saisir plusieurs valeurs avec complétion automatique" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Saisir les objets ou les URI pour y lier les objets. Séparer les saisies par des espaces." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "Saisir une adresse IP" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "Saisir une plage d'adresses IP" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Saisir une seule valeur" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Saisir une valeur avec complétion automatique" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Saisir des noms de files ou des URI pour lier aux files. Séparer les saisies avec des espaces." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Saisir des n° de tickets ou des URI pour lier aux tickets. Séparer les saisies par des espaces." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "Saisir au maximum %1 plage(s) d'adresses IP" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "Saisir au maximum %1 adresse(s) IP" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Saisir au plus %1 valeurs" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Saisir jusqu'à %1 valeurs avec complétion automatique" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Erreur" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Erreur de paramètres pour Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Erreur dans les paramètre de Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Erreur de paramètres pour Ticket->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Erreur dans les paramètres de Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Erreur au propriétaire RT: clef publique" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Erreur: tableau de bord manquant" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Erreur: mauvaises données GnuPG" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "Erreur : impossible de changer la confidentialité de la recherche" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "Erreur : impossible de charger la recherche sauvée %1 : %2" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Erreur: pas de clefs privée" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Erreur: clefs publique" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "Erreur : recherche %1 non mise à jour : %2" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Échelonner les tickets" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Estimé" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Tout le monde" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Éxaminer les tickets créés dans une file entre deux dates" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Éxaminer les tickets résolus dans une file entre deux dates" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Éxaminer les tickets résolus dans une file, groupés par intervenant" #: bin/rt-crontool:356 msgid "Example:" msgstr "Exemple :" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "ÉxécuterCode" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Expire" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "StatutÉtendu" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Authentification externe activée" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Info supplémentaire" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "Extraire un article" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Extraire la marque de sujet" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "Extraire un nouvel article du ticket n°%1" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "Extraire un article du ticket n°%1 dans la classe %2" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extraire la marque du sujet d'une transaction et l'ajouter au sujet tu ticket." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Échec lors de la connexion à la base de données: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Impossible de créer l'attribut %1" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Recherche du pseudo groupe d'utilisateurs 'Privilégiés' infructueuse." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Recherche du pseudo groupe d'utilisateurs 'non-privilégiés' infructueuse" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Échec pour charger %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Échec pour charger %1 %2: %3" #: NOT FOUND IN SOURCE msgid "Failed to load attribute %1" msgstr "Impossible de charger l'attribut %1" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Impossible de charger le module %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Impossible de charger l'objet pour %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Impossible de charger le modèle" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Impossible d'analyser le modèle" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Fév" #: NOT FOUND IN SOURCE msgid "February" msgstr "Février" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "Sources" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "Champ" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Source pour les valeurs de ce champs:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "Nom de fichier" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "NomFichier" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Remplissez les champs" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Utiliser une couleur de fond par" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Saisir dans plusieurs champs de type texte" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Saisir plusieurs champs de type wiki" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Saisir dans un champ de type texte" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Saisir un champ de type wiki" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Saisir une URL." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Saisir au plus %1 champs de type texte" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Saisir au plus %1 champs de type wiki" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Priorité finale" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "PrioritéFinale" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Trouver tous les utilisateurs dont" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Trouver les groupes dont" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Trouver les gens dont" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Rechercher des tickets" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "Empreinte" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminer" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Premier" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo !" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forcer la modification" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Format" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Transfert" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Transférer le message" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Transférer le message et revenir" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Transférer un ticket" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Transférer un message" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "Transférer des messages en dehors de RT" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Transférer les messages à des personnes externes" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Transférer le ticket n°%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Transférer la transaction n°%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "TransférerUnMessage" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "Ticket transféré à %1" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "Transaction n°%1 transférée à %2" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Trouvé %quant(%1,ticket)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Objet trouvé" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Fréquence" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Ven" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Vendredi" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "En-têtes complets" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD est désactivé ou n'est pas installé. Vous pouvez charger une image, mais vous n'aurez pas la suggestion automatique des couleurs." #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Général" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "Permissions générales" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Obtenir le modèle à partir d'un fichier" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Pour commencer" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Donné à %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Global" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "Attributs globaux" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Champs personnalisés globaux" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuration globale des champs personnalisés" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Portlet global %1 sauvé." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Modèle global : %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "Erreur GnuPG. Contactez votre administrateur" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Support GnuPG désactivé" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "Problèmes GnuPG" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "Clefs privée(s) GnuPG pour %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "Clefs privées GnuPG" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "Clefs publiques GnuPG pour %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Go" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Aller au groupe" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Aller à l'utilisateur" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Go !" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Aller au ticket" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Aller au ticket" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Graphique" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propriétés du graphique" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Les graphiques ne sont pas disponibles." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Groupe" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Droits de groupe" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Le groupe à déjà le membre: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Le groupe %1 ne peut être créé" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Groupe ajouté" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Groupe désactivé" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Groupe activé" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Un tel membre n'appartient pas au groupe" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "Le nom de groupe '%1' est déjà utilisé" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Groupe introuvable" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Droits du groupe" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Groupes" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Les groupes ne peuvent pas être membres de leurs membres" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Groupes correspondant au critère de recherche" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Groupes dont cet utilisateur est membre (cocher pour supprimer)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Groupes dont cet utilisateur n'est pas membre (cocher pour ajouter)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Cet utilisateur appartient aux groupes" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "ÀCommeMembre" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "En-tête d'un message Transféré" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Bonjour !" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Bonjour, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Aidez-nous à mettre en place une liste de valeurs par défaut pour RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Cacher le texte cité" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "Cacher l'historique du ticket par défaut" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historique" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "Historique de l'article n°%1" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Historique du groupe %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Historique de la file %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Historique de l'utilisateur %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Accueil" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "Téléphone personnel" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Intervalle d'actualisation de la page d'accueil" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Téléphone personnel" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Accueil" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Heure" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Heures" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "J'ai %quant(%1, toupie à béton)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Identifiant" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identité" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Si une approbation est refusée, rejette l'original et supprime les approbations en attente" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Si aucun demandeur n'est spécifié, créer les tickets pour ce demandeur." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Si aucune file n'est spécifiée, créer les tickets dans cette file." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Si cet outil était setgid, un utilisateur local mal intentionné pourrait l'utiliser pour obtenir un accès administrateur à RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Si vous avez déjà un serveur et une base de données RT fonctionnelle, vous devriez saisir cette opportunité pour être certain que votre serveur de base de données est en fonctionnement et que le serveur RT peut s'y connecter. Une fois ceci fait, arrêtez et redémarrez le serveur RT.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Si vous avez déjà un serveur et une base de données RT fonctionnelle, vous devriez saisir cette opportunité pour être certain que votre serveur de base de données est en fonctionnement et que le serveur RT peut s'y connecter. Une fois ceci fait, arrêtez et redémarrez le serveur RT.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Si vous avez changez le port sur lequel RT est lancé, vous devez redémarrer le serveur pour pouvoir vous connecter." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Si vous avez changé le port utilisé par RT, vous devrez redémarrer le serveur pour pouvoir vous identifier." #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Si vous avez fait une modification, assurez vous de" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Si votre base de données préférées n'est pas listée ci-dessous, celà signifie que RT ne peut pas trouver un pilote de base de données installé pour celle-ci. Vous pouvez remédier à ceci en utilisant %1 pour télécharger et installer DBD::MySQL, DBD::Oracle ou DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Valeur incorrecte pour %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Champ non modifiable" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "Tickets inactifs" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Inclure l'article :" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "Inclure les classes désactivées dans la liste." #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Inclure les champs personnalisés désactivés dans la liste." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Inclure les groupes inactifs dans le listage." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Afficher les files inactives." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Inclure les utilisateurs désactivés dans le résultat." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Inclure la page" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Inclure les sous-rubriques" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Messages individuels" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informer le propriétaire RT que les utilisateurs ont un problème avec les clefs publiques" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informer l'utilisateur que le tableau de bord souscrit est manquant" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informer l'utilisateur qu'un message qu'il a envoyé contient des données GnuPG invalides" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informer un utilisateur qu'il a des problèmes avec sa clefs publique et qu'il ne peut recevoir de documents chiffrés" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Informer l'utilisateur que sont mot de passe a été réinitialisé" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informer l'utilisateur qu'il a reçu un courriel chiffré et que nous n'avons pas de clefs privées pour déchiffrer" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Priorité initiale" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "PrioritéInitiale" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initialisation de la base" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "Le texte saisi ne correspond pas à une adresse IP" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "Le texte saisi ne correspond pas à une plage d'adresses IP" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Erreur à l'entrée" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "La valeur saisie doit correspondre à %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Installer RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Erreur interne" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Erreur interne : %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "Erreur interne : %1" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "%1 invalide" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "Argument %1 invalide" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 invalide: '%2' ne semble pas être une adresse de courriel" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "%1 invalide: ceci devrait être un nombre" #: NOT FOUND IN SOURCE msgid "Invalid %1: that doesn't look like an email address" msgstr "%1 invalide: ceci ne semble pas être une adresse de courriel" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "Classe invalide" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "Source de valeurs de champs personnalisé invalide" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Type de groupe invalide" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "File invalide, impossible d'appliquer la classe : %1" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "Type d'affichage invalide" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "Type d'affichage infalide pour un champs personnalisé de type %1" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Droit invalide" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Données invalides" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Objet invalide" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Objet intervenant invalide" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Motif invalide : %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "File invalide" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "Role %1 invalide pour la file" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Droit invalide" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Permission invalide. Impossible de résoudre la permission '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Syntaxe invalide de l'adresse de courriel" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "File invalide pour %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Valeur incorrecte pour le champ personnalisé" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Valeur de statut invalide" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "N'est pas chiffré" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Il est extrêmement important que les utilisateurs non autorisés n'aient pas accès à cet outil." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Il est suggéré de créer un utilisateur Unix non privilégié appartenant au bon groupe et ayant accès à RT pour utiliser cet outil." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Il faut plusieurs paramètres :" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Italique" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: NOT FOUND IN SOURCE msgid "January" msgstr "Janvier" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "Joindre ou quiter un groupe" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Rejoignez ou quittez ce groupe" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jui" #: NOT FOUND IN SOURCE msgid "July" msgstr "Juillet" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Tout" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Juin" #: NOT FOUND IN SOURCE msgid "June" msgstr "Juin" #: NOT FOUND IN SOURCE msgid "Keep 'localhost' if you're not sure" msgstr "Conservez 'localhost' si vous n'êtes pas sûr" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Garder 'localhost' si vous n'êtes pas sûr. Laissez vide pour vous connecter localement via un socket." #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "Recherche intelligente par mots clefs" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Langue" #: NOT FOUND IN SOURCE msgid "Language." msgstr "Langue." #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Dernier" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Dernier contact" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Date dernier contact" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Date dernière MAJ" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Dernière MAJ Par" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Dernière mise à jour" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Dernière MAJ par" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "DateDernièreMAJ" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "DernièreMAJPar" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "DernièreMAJDepuis" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Laisser vide pour envoyer à votre adresse courriel courante (%1)" #: NOT FOUND IN SOURCE msgid "Leave empty to use default value of the RDBMS" msgstr "Laisser vide pour utiliser la valeur par défaut du serveur" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Laisser vide pour utiliser la valeur par défaut pour votre base de données" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Laisser ceci pour utiliser l'identifiant dba par defaut pour votre type de base de données" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Restant" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Légendes" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Longueur en caractères; Utiliser '0' pour voir tous les messages dans la page, quelle que soit leur longueur" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Donner accès à RT à cet utilisateur" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Autoriser cet utilisateur à recevoir des droits" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "C'est parti!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Relation" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Le lien existe déjà" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Le lien ne peut être ajouté" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Le lien est ajouté (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Le lien est effacé (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Lien introuvable" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Lier le ticket n°%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Lier les valeurs à" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Lié" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "LiéDepuis" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "LiéVers" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Relation. autorisation refusée" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Relations" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "Liste" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Charger" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "Charger une recherche sauvée" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Charger une recherche sauvée" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Charger les recherches sauvées :" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "ChargerRechercheSauvée" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "%1 %2 chargé" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Recherche originale \"%1\" chargée" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Modules perl chargés" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Recherche sauvée \"%1\" chargée" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "Chargement en cours..." #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Langage" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LocalizedDateTime" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Localisation" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "Connecté" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Connecté en tant que %1" #: NOT FOUND IN SOURCE msgid "Logged in as %1" msgstr "Connecté en tant que %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Déconnecté" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Connexion" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Déconnexion" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Faire attention aux types différents" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Courriel" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Type de liens principal" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Attribuer" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Appliquer Statut" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Appliquer date d'échéance" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Appliquer date de résolution" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Appliquer date d'ouverture" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Appliquer date de début" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Appliquer Âge" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Appliquer priorité" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Appliquer file" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Changer le sujet" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Voir le groupe" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gérer les champs personnalisés et leurs valeurs" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Gérer les groupes et leurs membres" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Gérer les propriétés et configurations générales des files" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Gérer les files et leurs propriétés individuelles" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Gérer les graphiques sauvés" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Gérer les utilisateurs et mots de passe" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mar" #: NOT FOUND IN SOURCE msgid "March" msgstr "Mars" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Marquer tous les messages comme lus" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Ordre de recherche des modèles Mason" #: NOT FOUND IN SOURCE msgid "Max attachment size( in bytes )" msgstr "Taille maximum pour les pièces jointes (en bytes)" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Longueur maximum pour les messages en-ligne" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mai" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "Moi" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Membre" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Membre %1 ajouté" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Membre %1 supprimé" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Membre ajouté: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Membre supprimé" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Membre non supprimé" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Membre de" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "MembreDe" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Membres" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Appartenance à %1 ajoutée" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Appartenance à %1 supprimée" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Affiliations" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Affiliations de l'utilisateur %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Fusion réussie" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Échec de fusion. Ne peut appliquer EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Échec de fusion. Ne peut appliquer Statut" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Fusionner dans" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Fusionné avec %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Message" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "Le corps du message n'est pas affiché car il est trop long." #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Le corps du message ne s'affiche pas parce que l'expéditeur a demandé de ne pas le mettre en ligne." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Le corps du message ne s'affiche pas parce qu'il n'est pas en texte plat." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Corps du message non affiché car il est trop important ou n'est pas au format texte." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Le corps du message ne s'affiche pas parce qu'il est trop grand" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Hauteur des boîtes de dialogue" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Largeur des boîtes de dialogue" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "Césure dans les boîtes de réponse" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Le message ne peut être sauvegardé" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Message pour l'utilisateur" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Message sauvegardé" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Les messages relatifs à ce ticket ne seront pas envoyés à..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Longueur minimum des mots de passe" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutes" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "Divers" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Clé primaire manquante ? : %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobile" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "Téléphone mobile" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "Téléphone mobile" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Modifier" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Modifier la liste de droits" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Modifier les champs personnalisés s'appliquant à %1 pour tous les %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Modifier les champs personnalisés s'appliquant à tous les %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Modifier les droits du groupe" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modifier les membres" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Modifier les droits" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "Modifier les modèles des scrips" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Modifier les modèles de Scrips pour cette file" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "Modifier les scrips" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Modifier les Scrips pour cette file" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Modifier les droits des usagers" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Modifier un champ personnalisé pour la file %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Modifier le scrip pour la file %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Modifier le scrip qui s'applique à toutes les files" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "Modifier l'article n°%1" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Modifier les objets associés à %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Modifier les valeurs des champs personnalisés" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Modifier les tableaux de bord pour ce groupe" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Modifier les dates pour n°%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Modifier les dates pour le ticket n°%1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Modifier globalement les champs personnalisés" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Modifier les droits de groupe globaux" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Modifier les droits de groupe globaux." #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Modifier les rubriques en global" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Modifier les droits utilisateurs globaux" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Modifier les droits utilisateurs globaux." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "Modifier les tableaux de bord de groupe" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "Modifier la liste des membres d'un groupe" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Modifier les méta-données ou supprimer le groupe" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "Modifier les droits de groupe pour la classe %1" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Modifier les droits de groupe pour le champ personnalisé %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Modifier les droits de groupes du groupe %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Modifier les droits de groupe pour la file %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Modifier la liste des membres pour ce groupe" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "Modifier les méta-données et les champs personnalisés pour cette classe" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Modifier son propre profil RT" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "Modifier ou supprimer des articles dans cette classe" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Modifier les utilisateurs de la file %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Modifier les utilisateurs du ticket n°%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Modifier les tableaux de bord personnels" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "Modifier les observateurs de la file" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Modifier les scrips de la file %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Modifier les scrips s'appliquant à toutes les files" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Modifier les tableaux de bord systèmes" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Modifier le modèle %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "Modifier le modèle %1 pour la file %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modifier les modèles globaux" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "Modifier le contenu du tableau de bord %1" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Modifier le tableau de bord %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Modifier la vue \"RT en un coup d'œil\" par défaut" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Modifier le groupe %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Modifier les requêtes du tableau de bord %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Modifier les observateurs de la file" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Modifier l'inscription au tableau de bord %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Modifier l'utilisateur %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "Modifier cette recherche..." #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Modifier le ticket n°%1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Modifier le ticket n°%1" #: NOT FOUND IN SOURCE msgid "Modify ticket status" msgstr "Modifier le statut du ticket" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Modifier les tickets" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "Modifier la rubrique pour %1" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "Modifier la hierarchie des rubriques associés à cette classe" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Modifier les rubriques pour tous les articles de cette classe" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "Modifier les droits utilisateurs pour la classe %1" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Modifier les droits utilisateurs pour le champ personnalisé %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Modifier les droits utilisateurs pour le groupe %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Modifier les droits utilisateurs pour la file %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "Modifier les destinataires du ticket n°%1" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "ModifierACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "ModifierArticle" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "ModifierRubriquesArticle" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "ModifierChampPersonnalisé" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "ModifierTableauDeBord" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "ModifierTableauDeBordDeGroupe" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "ModifierTableauDeBordPersonnel" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "ModifierPropresAppartenances" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "ModifierObservateurs" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "ModifierScrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "ModifierDonnéesPerso" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "ModifierModèle" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "ModifierTicket" #: NOT FOUND IN SOURCE msgid "ModifyTicketStatus" msgstr "ModifierStatutDuTicket" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Module" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Lun" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Lundi" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Du lundi au vendredi" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Plus" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Plus d'informations sur %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "Plus d'informations sur les demandeurs" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Aller en bas" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Aller en haut" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Multiple" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Attribut 'Nom' obligatoire" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Mes tickets %1s" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Mes aprobations" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Ma journée" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "Mes rappels" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mes approbations" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mes tableaux de bord" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Mes rappels" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mes recherches" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "LIGNEVIDE" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Nom" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Nom utilisé" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Nom :" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Collection de portlets nommée et partagée" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Jamais" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Nouveau" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "Nouvel article" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "Nouveau tableau de bord" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nouveaux liens" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nouveau mot de passe" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Nouvelle approbation en attente" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nouv. recherche" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Tickets nouveaux et ouverts pour %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Nouveau champ personnalisé" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Nouveau tableau de bord" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Nouveau groupe" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nouveaux messages" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nouveau mot de passe" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Notification de nouveau mot de passe envoyée" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Nouveau rappel :" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nouveaux droits" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Nouveau scrip" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Nouveau modèle" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nouveau ticket" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Nouveau ticket inconnu" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "Les nouveaux tickets ne peuvent avoir le statut '%1' dans cette file" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Nouvel utilisateur appelé" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nouveaux observateurs" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Suivant" #: NOT FOUND IN SOURCE msgid "Next: " msgstr "Suivant: " #: NOT FOUND IN SOURCE msgid "Next: Check your database credentials" msgstr "Suivant: contrôle des identifiant de la base" #: NOT FOUND IN SOURCE msgid "Next: Customize Basics" msgstr "Suivant: réglages de base" #: NOT FOUND IN SOURCE msgid "Next: Customize Email Addresses" msgstr "Suivant: Configurer les adresses de courriel" #: NOT FOUND IN SOURCE msgid "Next: Customize Password for Users in RT" msgstr "Suivant: Configurer les mots de passe des utilisateurs RT" #: NOT FOUND IN SOURCE msgid "Next: Email Configuration" msgstr "Suivant: Configuration de la messagerie" #: NOT FOUND IN SOURCE msgid "Next: Finish" msgstr "Suifant: fin" #: NOT FOUND IN SOURCE msgid "Next: Initialize Database" msgstr "Suivant: initialisation de la base" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Surnom" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Surnom" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Non" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Pas de %1 chargé" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "Aucun article ne correspond à %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Aucune classe définie" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Aucune classe ne correspond au critère de recherche" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Aucun champ personnalisé" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Aucun champ personnalisé défini" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Aucun groupe défini" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Aucune requête" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Aucune file définie" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "Utilisateur RT non trouvé. Veuillez contacter votre administrateur RT." #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Pas d'utilisateur RT trouvé. Merci de consulter votre administrateur RT.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Pas de sujet" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Pas de modèle" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Pas d'action" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Aucune colonne spécifiée" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Pas de commentaires concernant cet utilisateur" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Pas de tableaux de bord." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Aucune description disponible pour %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Pas de détail" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Aucun groupe spécifié" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Aucun groupe trouvé d'après le critère de recherche." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Pas de clefs adapté pour le chiffrement" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Pas de clefs pour cette adresse" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Aucun messages attachés" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Pas de nom fourni" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Chiffrement non nécessaire" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Pas de mot de passe configuré" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Permission refusée pour la création de file" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Vous n'êtes pas autorisé à créer un ticket dans cette file '%1'" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Pas de permission pour afficher ce ticket" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "Permission refusée pour modifier cet article" #: NOT FOUND IN SOURCE msgid "No permission to save system-wide %1" msgstr "Pas de permission pour effectuer une sauvegarde système de %1" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Pas de permission pour sauvegarder des recherches systèmes" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Pas de permission pour modifier les préférences" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "Permission refusée pour voir cet article" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Pas de permission pour afficher le ticket mis à jour" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Aucun groupe/utilisateur spécifié" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Aucun groupe/utilisateur sélectionné." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Pas de clefs privée" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Pas de file correspondant aux critères de recherche." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Pas de permissions spécifiées" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Aucun droit trouvé" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Aucun droit accordé." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Pas de critère de recherche." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Pas de sujet" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Clefs non trouvée ou non adapté pour les signatures" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Aucun ticket trouvé" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Aucun type de transaction spécifié" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Pas de clefs utilisable." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Aucun utilisateur ne correspond aux critères de recherche." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Pas de valeur à positionner  \\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Personne" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Aucune" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Champ inexistant ?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Non renseigné" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Non trouvé" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Non connecté." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Non renseigné" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Vous n'utilisez pas de navigateur pour téléphone mobile ?" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Fonction pas encore disponible." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Notes" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Impossible d'envoyer la notification" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Avertir les AdminCCs" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Avertir les AdminCCs par un commentaire" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Avertir les Ccs" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Avertir les Ccs par un commentaire" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Avertir les autres destinataires" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Avertir les autres destinataires par un commentaire" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Avertir l'intervenant" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Avertir l'intervenant par un commentaire" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Avertir l'intervenant du rejet de son ticket" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Avertir l'intervenant que son ticket a été approuvé et est prêt à être traité" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "Avertir l'intervenant de l'approbation de son ticket par tous les approbateurs" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "Avertir l'intervenant de l'approbation de son ticket par un des approbateurs" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Avertir l'intervenant que son ticket a été approuvé par un ou tous les approbateurs" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Avertir l'intervenant, les demandeurs, Ccs et AdminCcs" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Avertir l'intervenant, les demandeurs, Ccs et AdminCcs par un commentaire" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Avertir les intervenants et les AdminCCs de nouveaux éléments attendant leur approbation" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Avertir le Demandeur que son ticket a été approuvé par tous les approbateurs" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Avertir le Demandeur que son ticket a été approuvé par certains approbateurs" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Avertir les demandeurs" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Avertir les demandeurs et les Ccs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Avertir les demandeurs et les CC par un commentaire" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Avertir les demandeurs, CCs et AdminCCs" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Avertir les demandeurs, CCs et AdminCCs par un commentaire" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Me notifier les messages non-lus" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "November" msgstr "Novembre" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Nombre de résultats de recherche" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OU" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objet" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "L'objet n'a pas pu être ajouté" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Impossible d'effacer l'objet" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objet ajouté" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objet effacé" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Les objets de type %1 ne peuvent avoir de champs personnalisés" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Le type d'objet ne correspond pas" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "La liste d'objets est vide" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Oct" #: NOT FOUND IN SOURCE msgid "October" msgstr "Octobre" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Déconnecté" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Édition hors ligne" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Téléchargement hors ligne" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "Le %1, %2 a écrit :" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Lors de la fermeture" #: etc/initialdata:143 msgid "On Comment" msgstr "Lors d'un commentaire" #: etc/initialdata:115 msgid "On Correspond" msgstr "Lors d'un courrier" #: etc/initialdata:104 msgid "On Create" msgstr "Lors d'une création" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Lors d'un changement d'intervenant" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Lors d'un changement de priorité" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Lors d'un changement de file" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Lors d'un rejet" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Lors de la réouverture" #: etc/initialdata:178 msgid "On Resolve" msgstr "Lors de la résolution/clôture" #: etc/initialdata:149 msgid "On Status Change" msgstr "Lors d'un changement de statut" #: etc/initialdata:109 msgid "On Transaction" msgstr "Lors d'une transaction" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Copie cachée (pour ce message)" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Copie (pour ce message)" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Ne montrer que les approbations pour les demandes créées après %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Ne montrer que les approbations pour les demandes créées avant %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Ne montrer que les champs personnalisés pour :" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Tickets ouverts" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Ouvrir l'URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Ouvrir" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Tickets ouverts" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Ouvrir les tickets lors d'une correspondance" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Option" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Options" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Trier par" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organisation" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Ticket source : n°%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Courriel sortant suite à l'enregistrement d'un commentaire" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Courriel sortant enregistré" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Courriels envoyés" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Temps dépassé, priorité augmentée" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "Aperçu" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Tickets propres" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "GérerTicket" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Intervenant" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "L'intervenant '%1' n'a pas les droits pour s'approprier ce ticket." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Intervenant changé de %1 à %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "L'intervenant ne peut être sauvé." #: NOT FOUND IN SOURCE msgid "Owner email" msgstr "Courriel du propriétaire" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Intervenant forcé de %1 à %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "NomIntervenant" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Page" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Page 1 sur 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Page non trouvée" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Bipeur" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "Téléphone pager" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Téléphone de pager" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Parents" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Mot de passe" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Pense-bête pour votre mot de passe" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Mot de passe changé" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Le mot de passe n'a pas été initialisé" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Le mot de passe doit comporter au moins %1 caractères" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Mot de passe non affiché" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Mot de passe défini" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Mot de passe : %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Mot de passe : non autorisé" #: etc/initialdata:463 msgid "PasswordChange" msgstr "ChangementDeMotDePasse" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Les mots de passe sont différents." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Les mots de passe sont différents. Votre mot de passe n'a pas été modifié" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Chemin pour sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Personnes" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "Utilisateurs liés à la file %1" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Réaliser une action définie par l'utilisateur" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "Perl" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Chemin d'inclusion Perl (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Configuration de Perl" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Ordre de recherche des bibliothèques Perl" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "Supprimer définitivement des données de RT" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Accès refusé" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Accès refusé" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Tableaux de bord personnels" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Groupes personnels" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Groupes personnels" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Groupes personnels :" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Numéros de téléphone" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Vérifiez l'adresse et réessayez." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Veuillez saisir votre mot de passe actuel correctement." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Veuillez saisir votre mot de passe actuel." #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the %2search builder interface%3." msgstr "Veuillez noter que seuls les tickets ayant un de ces statut ( %1 ) sont affichés ici. Pour une recherche plus complète utilisez le %2moteur de recherche%3." #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the Config->Get('WebPath')%>/Search/Build.html\">search builder interface." msgstr "Veuillez noter que seuls les tickets ayant un de ces statut ( %1 ) sont affichés ici. Pour une recherche plus complète utilisez le Config->Get('WebPath')%>/Search/Build.html\">moteur de recherche." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Recherches possible cachées" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Préférences" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Préférences %1 pour l'utilisateur %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Préférences sauvées pour %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Préférences sauvées pour l'utilisateur %1." #: NOT FOUND IN SOURCE msgid "Preferences saved for user %2." msgstr "Préférences sauvées pour l'utilisateur %2." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Préférences sauvées." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Clefs préférée: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Clefs préférée" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Préparation interrompue" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Précédent" #: NOT FOUND IN SOURCE msgid "Preview" msgstr "Prévisualisation" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Précédent" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Personne/groupe %1 non trouvé(e)." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Afficher la compilation des messages sur la sortie standard (STDOUT); ne pas les envoyer. Ne pas les marquer comme \"envoyés\"" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Imprimer ce message" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Priorité" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "La priorité débute à" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Confidentialité" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Confidentialité :" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Clefs privée" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilégié" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Statut privilégiés :  %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Utilisateurs privilégiés" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Exécution sans transactions, certaines conditions ou actions risquent d'échouer. Vous devriez essayer d'utiliser l'option \"--transaction\"" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudo groupe pour usage interne" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "La clefs publique '0x%1' est nécessaire pour vérifier la signature" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Requêtes" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Requête" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Constructeur de requête" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Requête:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "File" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "File %1 non trouvée" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Nom de la file" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "File déjà créée" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Impossible de créer la file" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "File ne pouvant être chargée." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "File créée" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "File désactivée" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "File activée" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Id. file" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "File inconnue" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Droits de la file" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Clefs pour la file" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "AdminCcFile" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "CcFile" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "NomFile" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "ObservateurFile" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Files" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Files I administrer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Les files pour lesquelles je suis observateur AdminCc" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "Création rapide" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Recherche rapide" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Création rapide de ticket" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "Copy text \t\r\nRFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 pour %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administration RT" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Courriel de l'administrateur RT" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "Config. RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "COnfiguration RT" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "Erreur RT" #: NOT FOUND IN SOURCE msgid "RT Name" msgstr "Nom RT" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "Self Service RT" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Taille de RT" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "Variables de RT" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT en un coup d'œil" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT en un coup d'œil pour l'utilisateur %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT peut communiquer avec vos utilisateurs au sujet des nouveaux ticket ou des nouveaux échanges. Indiquez où il est possible de trouver sendmail (ou un exécutable compatible sendmail comme celui fourni par postfix). RT nécessite également une adresse où envoyer les courriels invalides. Cette adresse ne doit pas être une adresse redirigée vers RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT peut inclure le contenu d'un autre service web lorsque ce champs personnalisé est affiché." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT peu convertir les valeurs de ce champs personnalisé en liens vers un autre service." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Variables globales RT" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT ne peut enregistrer votre session." #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT pour %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT est un outil de gestion d'incidents de niveau professionnel, destiné à vous permettre de gérer de manière intelligente et efficace les tâches, les problèmes, les demandes, les incidents ou n'importe quoi d'autre qui nécessite une action." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT est utilisé par plus de 100 sociétées, entreprises unipersonnelles, organismes publics, facultés, hopitaux, associations, ONGs, bibliothèques, projets de logiciels libres, et toute sorte d'autre organisation sur les septs continents. (Oui, même en Antarctique.)" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT se connectera à la base de données avec cet identifiant. Il sera automatiquement créé." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT va créer un utilisateur nommé \"root\" et lui assigner ce mot de passe" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT va rechercher pour tout ce que vous pouvez saisir d'autre, dans les sujets des tickets." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT remplacera respectivement %1 et %2 avec l'identifiant et la valeur du champs personnalisé" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT remplacera respectivement __id__ et __CustomField__ avec l'identifiant et la valeur du champs personnalisé" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT utilisera cette chaine de caractère pour identifier de manière unique votre installation et la chercher dans le sujet des courriels pour décider à quel ticket chaque message s'applique. Nous recommandons que vous utilisiez votre nom de domaine internet. (ex: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT fonctionne avec différentes bases de données. MySQL, PostgreSQL, Oracle and SQLite sont supportées." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT/Admin/Edit le groupe %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "L'option RTAddressRegexp dans la configuration RT ne correspond pas à %1" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Nom Entier" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "NomEntier" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Destinataire" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "Destinataires" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Tout enregistrer" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Membre récursif" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Se rapporte à" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Ajout d'une référence par %1" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Suppression de la référence par %1" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Ajout d'une référence à %1" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Suppression d'une référence à %1" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Mentionné par" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "MentionnéPar" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Se rapporte à" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "SeRapporteÀ" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Actualiser" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Actualiser la page d'acceuil toutes les 10 minutes." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Actualiser la page d'acceuil toutes les 120 minutes." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Actualiser la page d'accueil toutes les 2 minutes." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Actualiser la page principale toutes les 20 minutes." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Actualiser la page principale toutes les 5 minutes." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Actualiser la page principale toutes les 60 minutes." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Actualiser la recherche toutes les 10 minutes." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Actualiser la page principale toutes les 120 minutes." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Actualiser la recherche toutes les 2 minutes." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Actualiser la recherche toutes les 20 minutes." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Actualiser la recherche toutes les 5 minutes." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Actualiser la recherche toutes les 60 minutes." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Actualiser cette page toutes les %1 minute(s)." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: NOT FOUND IN SOURCE msgid "Reject tickets" msgstr "Rejeter des tickets" #: NOT FOUND IN SOURCE msgid "RejectTicket" msgstr "RejeterTicket" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "Se souvenir de la file par défaut" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "Rappel" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Rappel '%1' ajouté" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Rappel '%1' terminé" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Rappel '%1' ré-ouvert" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Ticket de rappel n°%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Rappels" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Rappels pour le ticket n°%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Enlever AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Supprimer le favori" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Enlever Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Enlever Demandeur" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "%1 supprimé des membres de %2 pour cette file." #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "Type d'affichage" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "Remplacer les listes déroulantes d'intervenants par des boîtes de saisie" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Répondre" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Adresse de réponse" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Répondre aux demandeurs" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Répondre aux tickets" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "RépondreTicket" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Rapports" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Demandeur" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "GroupeDemandeur" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Demandeurs" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Le demande doit être résolue dans" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Le paramètre requis '%1' n'est pas spécifié" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Remise à zéro" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "Ré-initialiser RT en un coup d'oeil" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Réinitialiser le jeton d'authentification" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Réinitialiser avec les valeurs par défaut" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Domicile" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Résoudre" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Résoudre le ticket n°%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Résolu" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Résolus par intervenant" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Résolus dans la période de temps" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Tickets résolus dans la période, groupés par intervenant" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Tickets résolus, groupés par intervenant" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "RésoluDepuis" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Répondre" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Résultats" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Retourner au ticket" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Saisissez à nouveau votre mot de passe" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Annuler" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Droit délégué" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Droit accordé" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Droit activé" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Droit irrévocable" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Droit inconnu" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Droit non activé." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Droit révoqué" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Les droits n'ont pas pu être attribués à %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "Permissions pour les administrateurs" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "permissions pour les intervenants" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Rôles" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Lignes" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Lignes par boîte" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Lignes par pages" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "Requêtes SQL" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite est une base de données qui ne nécessite pas de serveur ou de configuration spécifique. Les auteurs de RT la recommande pour les tests, démonstrations ou développements, mais ce n'est pas adaptés à une utilisation intensive d'un serveur RT en production." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sam" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Samedi" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Sauver" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Enregistrer les modifications" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Sauvegarder les préférences" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Enregistrer sous" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "Sauver comme" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Enregistrer cette recherche" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "%1 %2 sauvé" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Recherche sauvée %1 non trouvée" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "Recherches sauvegardées" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Graphiques sauvés" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Recherches sauvées" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip n°%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip ajouté" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Champs de scrip" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip supprimé" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Scrips et destinataires" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scrips s'appliquant à toutes les files" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Rechercher" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "Recherche %1 mise à jour" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Rechercher des articles" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Préférences de recherche" #: NOT FOUND IN SOURCE msgid "Search for Articles articles matching" msgstr "Rechercher des articles d'articles correspondant" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Rechercher les articles correspondant" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Rechercher des approbations" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Rechercher des articles" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Rechercher des tickets" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Rechercher des tickets. Saisissez un numéro d'identifiant, un nom de file, les intervenants par nom et les demandeurs par adresse courriel." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Options de recherche" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "Résultats de la recherche:" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Résultats groupés par %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Intervalle d'actualisation des résultats de recherche" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "La recherche en texte intégral (full text) sur chacun des tickets peut prendre un long moment, mais si vous le nécessitez, vous pouvez rechercher n'importe quel mot dans les historiques de tickets en tapant fulltext:mot." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Jeton d'authentification" #: bin/rt-crontool:350 msgid "Security:" msgstr "Sécurité :" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Voir également:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "Voir les articles de cette classe" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Afficher les valeurs de champ personnalisé" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Voir les champs personnalisés" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Voir les courriels sortant et leurs destinataires" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "Voir que cette classe existe" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Voir les commentaires privés du ticket" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Vue récapitulative des tickets" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "VoirClasse" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "VoirChampPersonnalisé" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "VoirTableauDeBord" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "VoirGroupe" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "VoirTableauDeBordDeGroupe" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "VoirTableauDeBordPersonnel" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "VoirFile" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Choisir" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "Sélectionner des champs personnalisés pour des articles dans toutes les classes" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Choisissez un type de base de données" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Sélectionner une classe" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Choisissez un champ personnalisé" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "Choisir une couleur pour cette section" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Choisir un groupe" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Choisir une file" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Choisir une file pour votre nouveau ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Choisir une section" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Choisir un utilisateur" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "Sélectionner un article dans %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Choisir un article à inclure" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Séléctionner une autre langue" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "Champ de sélection" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Sélectionner les champs personnalisés pour toutes les files" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Choisir des champs personnalisés pour tous les groupes d'utilisateurs" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Choisir des champs personnalisés pour tous les utilisateurs" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Choisir des champs personnalisés pour toutes les files" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Choisir des champs personnalisés pour les opération sur les tickets de toutes les files" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Sélectionner le tableau de bord" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "Choisir une date" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "Chosir une date/heure" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Choisir le groupe" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "Choisir plusieurs dates" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "Choisir plusieurs dates/heure" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Choisir plusieurs valeurs" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Choisir une valeur" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Sélectionnez les files à afficher dans la page \"RT en un coup d'œil\"" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Choisir le scrip" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Choisir le modèle" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "Choisir les rubriques pour cette article" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "Choisir au maximum %1 date(s)" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "Choisir au maximum %1 date(s)/heure" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Choisir au plus %1 valeurs" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Champs personnalisés sélectionnés" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "File sélectionnées" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "La clefs sélectionnée n'est pas de confiance ou n'existe plus." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Objets sélectionnés" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Sélections modifiées. Merci de sauver vos modifications" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Courriel envoyé avec succès" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Envoyer un courrier à tous les observateurs" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Envoyer un mail de commentaire à tous les observateurs" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Envoyer un courriel aux intervenants et observateurs" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Envoyer un courriel à l'intervenants et aux observateurs en \"commentaire\"" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Envoyer un courrier aux demandeurs et aux CCs" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Envoyer un courrier aux demandeurs et aux CCs en tant que commentaire" #: NOT FOUND IN SOURCE msgid "Sendmail arguments" msgstr "Arguments sendmail" #: NOT FOUND IN SOURCE msgid "Sendmail bounce arguments" msgstr "Arguments de rejet (bounce) pour Sendmail" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Envoyer un courrier aux demandeurs" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Envoyer un courrier aux CCs et Bccs explicitement indiqués" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Envoyer un courriel en cc" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Envoyer un courriel en cc pour commentaires" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Envoyer un mail aux AdminCCs" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Envoyer un mail aux AdminCCs en tant que commentaire" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Envoyer un courrier à l'intervenant" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "Courriel envoyé avec succès" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Sep" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Séparer les différentes saisies par des espaces" #: NOT FOUND IN SOURCE msgid "September" msgstr "Septembre" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Réglages" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "RT doit-il vous envoyer des courriels pour les mises à jour de ticket que vous effectuez ?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Afficher" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "Voir l'onglet approbations" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Afficher les colonnes" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "Voir l'onglet configuration" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Aff. résultats" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Afficher les propriétés des tickets de niveau %1" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Afficher les requêtes approuvées" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Voir également" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Affichage court" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Afficher les requêtes refusées" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Affichage long" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "Voir les modèles en global" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Afficher la description des liens" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "Ne pas afficher les tickets du demandeur" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Afficher le message le plus ancien en premier" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Afficher les requêtes en attente" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Voir le texte cité" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Afficher les requêtes attendant d'autres approbations" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Show the Requestor's 10 highest priority closed tickets" msgstr "Voir les 10 tickets fermés de plus haute priorité pour ce demandeur" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Show the Requestor's 10 highest priority open tickets" msgstr "Voir les 10 tickets ouvert de plus haute priorité pour ce demandeur" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Voir les 10 tickets de plus haute priorité pour ce demandeur" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "AfficherACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "VoirOngletApprobations" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "VoirArticle" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "VoirHistoriqueArticle" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "VoirOngletConfiguration" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "VoirModèlesGlobaux" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "AfficherCourrielSortant" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "AfficherRecherchesSauvées" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "AfficherScrips" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "AfficherModèle" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "AfficherTicket" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "AfficherCommentairesTickets" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Shredder" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Le Shredder a besoin d'un répertoire afin d'écrire ses \"dumps\". Veuillez vérifier que %1 existe et est en écriture pour votre serveur web." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Le Shredder a besoin d'un répertoire afin d'écrire ses \"dumps\". Veuillez vérifier que %1 existe et est en écriture pour votre serveur web." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Barre latérale" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Signer" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Signer par défaut" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "S'identifier en tant que demandeur ou CC de file ou de ticket" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "S'identifier en tant qu'AdminCC de ticket ou de file" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Signature" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Signature désactivée" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Signature activée" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "Simple" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Recherche rapide" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Unique" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Nom du site" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Taille" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Passer le menu" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Sauter les utilisateurs désactivés" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Petite" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Certains navigateurs peuvent restreindre le chargement du contenu au domaine du serveur RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Un problème est survenu. Contactez votre administrateur système." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Trier" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Tri" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Source" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Spécifie si le lancement et quotidien ou hebdomadaire." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Tableur" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Étape" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Ouvert le" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "OuvertDepuis" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Débute" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "DébuteDepuis" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "État" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Statut" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Le statut '%1' n'est pas un statut valide pour les tickets de cette file." #: etc/initialdata:307 msgid "Status Change" msgstr "Changement de statut" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Statut changé de %1 à %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "Changements de statut" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Voler" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Voler les tickets" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "VolerTicket" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Étape %1 sur %2" #: NOT FOUND IN SOURCE msgid "Step %1 of %2: " msgstr "Étape %1 sur %2: " #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Volé à %1" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Style" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Sujet" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Marque de sujet" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Sujet modifié en %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "MarqueDeSujet" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Marque de sujet changé en %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Valider" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "S'abonner" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "S'abonner au tableau de bord %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "S'abonner aux tableaux de bord" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "SabonnerAUnTableauDeBord" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "S'abonner au tableau de bord %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Abonnement" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "L'abonnement n'a pas pu être créé: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Donnée déchiffrées sans erreur" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Données chiffrées sans erreur" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "Résumé" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Dim" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Dimanche" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "SuperUtilisateur" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Suspendu" #: NOT FOUND IN SOURCE msgid "System" msgstr "Système" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Configuration système" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Tableaux de bord système" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Valeur par défaut du système" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Erreur système" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Erreur système :  %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Outils système" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "Erreur système." #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Erreur système. Droit non délégué." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Erreur système. Droit non accordé." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Groupes systèmes" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Droits système" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup à usage interne" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "Chaîne_de_test" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Prendre" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Prendre les tickets" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "PrendreTicket" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Pris" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Donnez nous quelques information pour trouver la base de données que RT utilisera" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Modèle" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Modèle n°%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Modèle #%1 effacé" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Modèle '#%1' non trouvé" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "Compilation du modèle ok" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "Le modèle n'inclus pas de code Perl" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Le modèle est vide" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Modèle est un argument obligatoire" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Modèle analysé" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Erreur d'analyse du modèle" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "Erreur de format de modèle : %1" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Modèles" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "Modèles pour la file %1" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "Texte" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Le fichier texte n'est pas affiché car désactivé dans les préférences." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Ceci est déjà la valeur actuelle" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Valeur incorrecte pour ce champ personnalisé" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Valeur identique" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Ce groupe/utilisateur dispose déjà de ce droit" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Ce groupe/utilisateur est déjà un %1 pour cette file" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Ce groupe/utilisateur est déjà un %1 pour ce ticket" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Ce groupe/utilisateur n'est pas un %1 pour cette file" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Ce groupe/utilisateur n'est pas un %1 pour ce ticket" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "File inconnue" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Ticket ayant des tickets fils ou dépendants non résolus" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Cet utilisateur possède déjà ce ticket" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Utilisateur inconnu" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Utilisateur possédant déjà un statut privilégié" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Utilisateur déjà non-privilégié" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Utilisateur bénéficiant à présent du statut privilégié" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Cet utilisateur est maintenant non privilégié" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Cet utilisateur ne peut pas posséder de ticket dans cette file" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Identifiant non numérique" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Éléments de base" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Le CC d'un ticket" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "La classe de l'article dont l'identifiant est %1 n'est pas appliqué à la file actuelle" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Le mot de passe du DBA de la base de données" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "L'AdminCC d'un ticket" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Le nom de domaine de votre serveur de base de données (ex: 'db.example.com')." #: NOT FOUND IN SOURCE msgid "The domain name of your database server (like 'db.int.example.com')" msgstr "Nom d'hôte du serveur de base de données (exemple 'bd.int.exemple.fr')" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "La commande suivante recherchera tous les tickets actifs dans la file 'general' et leurs mettra comme priorité \"99\" s'ils ont dépassé leur échéance:" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Cette commande trouve tous les tickets actifs de la file 'general' et positionne leur priorité à 99 s'ils n'ont pas été touchés depuis quatre heures :" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Les requêtes suivantes ont été supprimées et chacune sera enlevée du tableau de bord quand son panneau sera mis à jour." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Les requêtes suivantes ne sont pas forcément visibles à tous les utilisateurs de ce tableau de bord." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "La clefs a été désactivée" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "La clefs a été révoquée" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "La clefs a expiré" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Entière confiance pour cette clefs" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Confiance ultime pour cette clefs" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "La nouvelle valeur est enregistrée." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "L'intervenant d'un ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "La page que vous avez demandé n'a pas pu être trouvée" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Le demandeur d'un ticket" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "La configuration choisie est stockée dans %1." #: NOT FOUND IN SOURCE msgid "The settings you've chosen are stored in %1. You can edit this file to refine your configuration further. You can prevent this installation wizard from being shown again by running `chmod -w '%1'`." msgstr "Les paramêtres que vous avez choisis sont stockés dans %1. Vous pouvez éditer ce fichier pour affiner votre configuration. Vous pouvez stopper le démarrage de cet outil d'installation en lancant la commande `chmod -< '%1'`." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Le système n'est pas capable de signer les messages courriels sortants. Ceci indique généralement que la passphrase a été mal saisie, ou que l'agent GPG est arrêté. Prévenez s'il-vous plait votre administrateur système immédiatement. Les adresses avec problème sont:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Thème" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Il y a plusieurs clefs disponibles pour le chiffrement." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Il y a des messages non lu dans ce ticket." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Confiance marginale pour cette clefs" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Il existe plus d'un groupe avec comme nom '%1'. Ceci peut poser un problème de cohérence dans certaines parties de l'interface d'administration, et de ce fait il est recommandé de renommer les groupes en conflit." #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Il n'y a pas de clefs disponible pour le chiffrement." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "Il n'y a pas de correspondance de status entre ces files. Contactez votre administrateur système." #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Il y a une clefs disponible, mais le niveau de confiance n'est pas configuré." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Ces commentaires ne sont généralement pas accessibles par l'utilisateur" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Ces options de configurations concernent les éléments de base pour obtenir un RT fonctionnel. Nous avons besoin de connaître le nom de votre installation RT et le nom de domaines lui correspondant. Vous devrez également définir un mot de passe pour l'administrateur par défaut." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "Ce genre personnalisé ne peut pas avoir de liste de valeurs" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Ce champ personnalisé ne s'applique pas à cet objet" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "Aucun type d'affichage d'est défini pour ce champs personnalisé" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Cet possibilité n'est offerte qu'aux administrateurs systèmes" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "Cette fonctionnalité n'est disponible que pour les administrateurs du système." #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Ceci peut indiquer que l'on ne peut pas écrire dans le répertoire '%1' ou qu'une table de la base de données et manquante ou corrompue." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Ce message va être envoyé à..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "Ce processus n'a pas enregistré de requêtes SQL." #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Cet outil permet à l'utilisateur de lancer un module perl quelconque depuis RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Cette opération semble ne pas avoir de contenu" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "%1 tickets %2 de plus haute priorité pour cet utilisateur" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Les %1 tickets prioritaires de cet utilisateur" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Jeu" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Jeudi" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Ticket" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Ticket n°%1 mise à jour globale : %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Graphique des relations pour le ticket n° %1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Ticket n°%1 :" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Ticket n°%1 : %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Ticket %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Ticket %1 créé dans la file '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Ticket %1 :  %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Champs personnalisés du ticket" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Historique du ticket n°%1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Ticket résolu" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Recherche de ticket" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Transactions du ticket" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "Ticket et transaction" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "Rédaction des tickets" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Contenu du ticket" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Type du contenu du ticket" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Une erreur interne a empêché l'ajout du ticket" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Le ticket n'a pas pu être chargé" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Affichage des tickets" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Méta-données du ticket" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Statut de ticket modifié" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Réponse du ticket" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "Module de recherche TicketSQL" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Tickets" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Tickets %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Tickets %1 sur %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Les tickets que je gère" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Tickets créés après" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Tickets créés avant" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Tickets résolus après" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Tickets résolus avant" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tickets dépendant de cette approbation :" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Temps estimé" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Temps restant" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Temps passé" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Temps de calcul" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "TempsEstimé" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "TempsRestant" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "TempsPassé" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Fuseau horaire" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Titre" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "À" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Pour vous renseigner au sujet du support, de la formation, des développements spécifiques ou au sujet de la licence, merci de contacter en anglais %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Annoncé" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "AnnoncéDepuis" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Outils" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Nom de la rubrique" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "Appartenance à la rubrique ajoutée" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "Appartenance à la rubrique supprimée" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Rubrique non trouvée" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "Rubriques" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Total" #: etc/initialdata:249 msgid "Transaction" msgstr "Transaction" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "La transaction %1 est supprimée" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transaction ajoutée" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Champs personnalisées de la transaction" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create a échoué car vous n'avez pas spécifié de type d'objet et d'id" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "DateDeTransaction" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Les transactions ne peuvent être transférées" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Confiance" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Mar" #: NOT FOUND IN SOURCE msgid "Tue Dec 25 21:59:12 1995" msgstr "Mar Déc 25 21:59:12 1995" #: NOT FOUND IN SOURCE msgid "Tue, 25 Dec 1995 21:59:12 -0300" msgstr "Mar, 25 Déc 1995 21:59:12 -0300" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Mardi" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Type" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Saisissez a: devant des numéros d'article et t: devant des numéros de ticket." #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Type changé de '%1' à '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "Impossible d'ajouter l'appartenance à cette rubrique" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "Impossible de supprimer l'appartenance à la rubrique %1" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Impossible de déterminer le type ou l'identifiant de l'objet" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "Impossible de charger l'article" #: NOT FOUND IN SOURCE msgid "Unable to load dashboard %1 of subscription %2 for user %3" msgstr "Impossible de charger le tableau de bord %1 de l'abonnement %2 pour l'utilisateur %3" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "Impossible de définir UserCSS : %1" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "Impossible de définir UserLogo : %1" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "Impossible de définir l'id de confidentialité : %1" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "Impossible de définir l'id ou l'objet de confidentialité : %1" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "Impossible de définir l'objet de confidentialité : %1" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Impossible de s'abonner au tableau de bord %1: permissions refusée" #: NOT FOUND IN SOURCE msgid "Unable to unsubscribe to dashboard %1" msgstr "Impossible de s'abonner au tableau de bord %1" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Décocher les cases pour désactiver les notifications aux destinataires suivant pour cette transaction seulement ; les désactivations permanentes sont gérés sur la page des utilisateurs." #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Fonction non disponible" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Identifiant Unix" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Inconnu (pas de niveau de confiance assigné)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Inconnu (ceci est une nouvelle valeur pour le système)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Type d'encodage de courrier inconnu : %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Champ inconnu: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Pas de limite" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Illimité" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "Tableau de bord sans nom" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Recherche non nommée" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Tickets sans intervenant" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Sans droits" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Champs personnalisés non sélectionnés" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Files non sélectionnées" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Objets non sélectionnés" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Désélectionner la clefs privée" #: NOT FOUND IN SOURCE msgid "Unsubscribe" msgstr "Se désabonner" #: NOT FOUND IN SOURCE msgid "Unsubscribed to dashboard %1" msgstr "Se désabonner du tableau de bord %1" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Non pris" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Mettre à jour" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "Mettre à jour le graphique" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Mettre à jour le graphique" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Mettre à jour le ticket" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Mettre à jour le type" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Mettre à jour le format et rechercher" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Mettre à jour plusieurs tickets" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Mise à jour non enregistrée." #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Mettre à jour le ticket" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Mettre à jour le ticket n°%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Mettre à jour le ticket n°%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Le type de mise à jour n'était ni un commentaire ni un courrier." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "Statut de mise à jour" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Mis(e) à jour" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Recherche sauvée \"%1\" mise à jour" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Envoyer" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Charger un nouveau logo" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Télécharger plusieurs fichiers" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Télécharger plusieurs images" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Télécharger un fichier" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Télécharger une image" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Télécharger un maximum de %1 fichiers" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Télécharger au plus %1 images" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Envoyer vos changements" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "Utilisation :" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Utilisation: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Utiliser SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "Utiliser un affichage sur deux colonnes pour les formulaires de création et de mise à jour ?" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "Utiliser l'auto-completion pour rechercher les intervenants ?" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Utiliser une feuille de style pour afficher les textes utilisant des polices à chasse fixe, en conservant le format, mais en effectuant une césure si nécessaire. Ceci ne fonctionne pas très bien avec IE6, vous devriez utiliser l'option précédente." #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Utiliser la valeur par défaut (%1)" #: NOT FOUND IN SOURCE msgid "Use fixed-width font to display plaintext messages" msgstr "Utiliser une police à chasse fixe pour afficher les message en texte brut" #: NOT FOUND IN SOURCE msgid "Use monospace font" msgstr "Utiliser une police de caractères à espacement fixe" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Utiliser les autres outils d'administration de RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Utiliser la valeur système par défaut (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Utilisez les menus déroulants pour sélectionner quelles mises à jour du ticket vous souhaitez extraire comme nouvel article." #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Utiliser ceci pour protéger le formattage des textes bruts" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Utilisateur" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "L'utilisateur %1 ne peut être trouvé." #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Utilisateur (créé - expire)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Défini par l'utilisateur" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Conditions et actions définies par l'utilisateur" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Droits utilisateurs" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "L'utilisateur a demandé un type de mise à jour non connu pour le champ personnalisé %1 de l'objet %2 n°%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "L'utilisateur ne peut être créé : %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Utilisateur créé" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Groupes définis par l'utilisateur" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Utilisateur désactivé" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Utilisateur activé" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "L'adresse de courriel de l'utilisateur est vide" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Utilisateur chargé" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Clefs GnuPG de l'utilisateur" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Groupe définis par l'utilisateur" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Nom d'utilisateur" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Format de nom d'utilisateur" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Utilisateurs" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Utilisateurs correspondants aux critères de recherche" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Utilisation de la transaction #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Valider la requête" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validation" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Valeur" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Valeurs" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Variable" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Rapports divers RT" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Version" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "Voir les modèles du scrip" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "Voir les scrips" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "Voir les valeurs de champs personnalisés" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "Voir les champs personnalisés" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Voir les tableaux de bord pour ce groupe" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "Voir en détail les courriels envoyés avec leurs destinataires" #: lib/RT/Group.pm:99 msgid "View group" msgstr "Voir le groupe" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "Voir les tableaux de bord de ce groupe" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Voir les tableaux de bord personnels" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "Voir cette file" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "Voir les recherches sauvées" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Voir les tableaux de bord systèmes" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "Voir les commentaires privés des tickets" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "Voir les informations de base des tickets" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "Copy text \t\r\nW3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "ATTENTION : recherche sauvée avec une confidentialité de niveau utilisateur" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "Hauteur de l'éditeur WYSIWYG" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "Editeur de messages WYSIWYG" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Attention! Ceci n'est pas signé!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Attention: vous n'avez pas d'adresse de courriel paramétrée, vous ne recevrez donc pas ce tableau de bord tant qu'elle n'est pas renseignée" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Observer" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "ObserverCommeAdminCC" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Observateur" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "GroupeObservateur" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Observateurs" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Nous sommes capables de trouver votre base de données et de s'y connecter en DBA. Vous pouvez cliquer sur \"Personnalisation de base\" pour continuer à personnaliser RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Il n'est pas possible actuellement de générer une affichage de type liste quand les catégories sont basées sur un autre champs personnalisé. Veuillez utiliser un autre type d'affichage." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Nous avons besoin de connaître le nom de la base de données qui sera utilisée par RT ainsi que sa localisation. Nous avons également besoin de connaître le nom d'utilisateur et le mot de passe que RT doit utiliser. RT peut créer la base de donnée et l'utilisateur pour vous, c'est pourquoi, l'identifiant et le mot de passe d'un utilisateur avec des privilèges DBA sont demandés. Pendant l'étape 6 du processus d'installation nous utiliseront cette information pour créer et initialiser la base de données RT." #: NOT FOUND IN SOURCE msgid "We were able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Nous n'avons pas été capable de trouver votre base de données et de nous connecter en DBA. Vous pouvez cliquer sur 'Configuration de base' pour continuer à configurer RT." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Port web" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Mer" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Mercredi" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Compilation hebdomadaire" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Bienvenue dans RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Ce que j'ai fait aujourd'hui" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Qu'est-ce que RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Lorsque RT ne peut gérer un courriel, où doit-il être envoyé?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Quand RT envoi un courriel, il positionne les champs expéditeur et Reply-To afin que les utilisateurs puissent participer à la conversation en cliquant simplement sur Répondre dans leur client de courriel. Une adresse différente est utilisée pour les réponses et les commentaires. Celles-ci peuvent-être définies pour chaque file. Ces adresses devront être configurées pour utiliser le programme rt-mailgate." #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "Quand un ticket a été approuvé par tous les approbateurs, ajoute le courrier au ticket source" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "Quand un ticket a été approuvé par au moins un approbateur, ajoute le courrier au ticket source" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Quand un ticket est créé" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Quand un ticket d'approbation est créé, informer l'intervenant et l'AdminCC de l'élément attendant leur approbation" #: etc/initialdata:110 msgid "When anything happens" msgstr "Quand quelque chose arrive" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "Lorsque l'éditeur WYSIWYG n'est pas activé, cette option indique si la césure automatique dans les boîtes de réponse aux tickets sont envoyés à RT ou non." #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Lorsque vous cliquez sur 'Tester la connexion à la base de données' il peut y avoir un peu d'attente le temps que RT se connecte à votre base de données." #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Quand un ticket et fermé(désactivé)" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Quand un ticket est rejeté" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Quand un ticket est ré-ouvert(activé)" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Lorsqu'un ticket quelconque est résolu/clos" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Lorsqu'un ticket quelconque change d'intervenant" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Lorsqu'un ticket change de priorité" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Lorsqu'un ticket quelconque change de file" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Lorsqu'un ticket quelconque change de statut" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Lorsqu'une condition définie par l'utilisateur est satisfaite" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Lorsque un commentaire arrive" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Lorsque un courrier arrive" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Où trouver l'exécutable sendmail." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Supprimer définitivement" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Travail" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "Téléphone professionnel" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "Téléphone professionel" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Travaillé" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Oui" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Vous pouvez modifier ce tableau de bord et votre inscription à celui-ci dans RT." #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Vous êtes déjà intervenant de ce ticket" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Vous êtes sur le point de chiffrer les messages courriels sortants, mais il y a des problèmes avec les clefs publiques des destinataires. Vous devez corriger ce problème, désactiver l'envoi de message aux destinataires ayant un problème de clefs, ou désactiver le chiffrement." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Vous êtes sur le point de chiffrer les messages courriels sortants, mais il y a des problèmes avec la clefs publique d'un destinataire. Vous devez corriger ce problème, désactiver l'envoi de message pour ce destinataire, ou désactiver le chiffrement." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Vous n'êtes pas un utilisateur autorisé" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Vous pouvez aller au premier message non-lu ou aller au premier message non-lu et marquer tous les messages comme lus." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Vous pouvez aussi modifier la recherche prédéfinie elle-même" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Vous pouvez saisir le contenu d'un ticket dans n'importe quel champ de type texte libre, texte ou wiki." #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Vous ne pouvez définir le mot de passe." #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Vous pouvez seulement réaffecter vos ticket ou ceux qui ne sont pas affectés" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Vous pouvez uniquement prendre des tickets sans intervenant" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "Vous ne pouvez changer le statut de '%1' en '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Vous n'avez pas les droits SuperUtilisateur." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "%1 tickets trouvés dans la file %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Vous avez été déconnecté de RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "Vous avez activé le support GnuPG mais n'avez pas défini d'adresse de commentaire pour cette file." #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "Vous avez activé le support GnuPG mais n'avez pas défini d'adresse de réponse pour cette file." #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Vous n'avez pas l'autorisation de créer des tickets dans cette file." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Vous pouvez saisir des liens vers des articles avec \"a:###\", ou ### est le numéro de cet article." #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Vous ne pouvez pas créer de demandes dans cette file." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Vous devez saisir un mot de passe Administrateur" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "Vous devez définir la variable \"StatementLog\" à \"true\" pour activer cette page d'historique des requêtes." #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "Vous devez définir une adresse de commentaire pour cette file afin de configurer une clefs privée GnuPG." #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "Vous devez définir une adresse de réponse pour cette file afin de configurer une clef privée CnuPG." #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Vous devriez être redirigé vers la page de connection. Vous pourrez vous identifier avec l'identifiant %1 et le mot de passe configuré précédemment." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Vous devriez être redirigé vers la page de connection. Vous pourrez vous identifier avec l'identifiant root et le mot de passe configuré précédemment." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Vous devez choisir la base de données que vous ou votre administrateur de base de données maîtrisez le mieux." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Vous voyez cet écran car vous avez démarré RT sans base de données fonctionnelle. C'est probablement la première fois que vous lancez RT. Si vous cliques C'est parti! ci-dessous, RT vous guidera pour configurer votre serveur RT et votre base de données." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Vous voyez cet écran car vous avez démarré RT sans base de données fonctionnelle. C'est probablement la première fois que vous lancez RT. Si vous cliques \"%1\" ci-dessous, RT vous guidera pour configurer votre serveur RT et votre base de données." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Vous êtes invité à vous identifier à nouveau" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Votre mot de passe n'est pas défini." #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "Votre demande a été approuvée par %1. D'autres approbations sont peut être toujours en attente." #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "Votre demande a été approuvée." #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "Votre demande a été rejetée." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "Votre système gère la sugestion automatique des couleurs pour : %1" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Votre nom d'utilisateur ou votre mot de passe est incorrect" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Code Postal" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Bas]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Haut]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[aucun]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "un champs personnalisé" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "actifs" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "ajouter une balise 
 autour des pièces jointes de type texte brut"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "après"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "autorise la création de recherches sauvées"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "autorise le chargement de recherches sauvées"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr "et avant"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr "et pas"

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "comme accordé à %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "barres"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "avant"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "corps"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "de bas en haut"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr "cocher cette case pour appliquer cette classe en global à toutes les files."

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "cocher cette case pour appliquer ce champs personnalisé à tous les objets."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr "cocher cette case pour supprimer cette classe en global et pouvoir la définir pour des files spécifiques."

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "cocher cette case pour supprimer ce champs personnalisé de tous les objets et pouvoir le définir pour des objets spécifiques."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "cocher pour ajouter"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "cliquer pour sélectionner/désélectionner tous les objets en une fois"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "fermé"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "concis"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "Configuration centrale"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "Champ personnalisé '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "quotidien"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "tous les jours à %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "jours"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "effacé"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "afficher les pièces jointes au format texte avec césure et en respectant le formattage"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "ne contient pas"

#: NOT FOUND IN SOURCE
msgid "domain name"
msgstr "nom de domaine"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "télécharger"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr "durée"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "égal à"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "erreur : ne peut aller plus bas"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "erreur : ne peut aller à gauche"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "erreur : ne peut aller plus haut"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "erreur : rien à effacer"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "erreur : rien à déplacer"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "erreur : rien à commuter"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "tous les"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "greffons exécuté avec succès"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "entière"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "supérieur à"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "groupe"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "groupe '%1'"

#: NOT FOUND IN SOURCE
msgid "hide quoted text"
msgstr "cacher le texte cité"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "heures"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "n°"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr "dans la classe %1"

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr "inactifs"

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr "inclus %1"

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr "indexe"

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "est"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "n'est pas"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "clefs désactivée"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "clefs expirée"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "clefs révoquée"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "de gauche à droite"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "inférieur à"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginale"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "contient"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "Profondeur maximale"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minutes"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "mensuel"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "tous les mois (jour %1) à %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "mois"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "jamais"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "nouveau"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "non"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "sans nom"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "aucun"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "différent de"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "aucun"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "les objets ont été supprimés avec succès"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "Le"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "le jour"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "une"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "ouvert"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "ouvrir/fermer"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "autre..."

#: NOT FOUND IN SOURCE
msgid "password of the user root in RT"
msgstr "mot de passe du compte root RT"

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "groupe personnel '%1' pour l'utilisateur '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "camembert"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "le greffon a retourné une liste vide"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "file %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "rejeté"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr "nécessite l'utilisation de rt-crontool"

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "résolu"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "de droite à gauche"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sec"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "voir la liste d'objets ci-dessous"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "montrer l'onglet Approbations"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "montrer l'onglet de configuration"

#: NOT FOUND IN SOURCE
msgid "show quoted text"
msgstr "afficher le texte cité"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "configuration du site"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "stagnant"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr "requête"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "lignes de sommaire"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "système %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "groupe système '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "le composant appelant n'a pas spécifié pourquoi"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "les adresses par défaut qui seront listée dans les en-têtes de l'émetteur et Reply-To: d'un courriel de commentaire."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "les adresses par défaut qui seront listée dans les en-têtes de l'émetteur et Reply-To: d'un courriel de réponse."

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "ticket n°%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "de haut en bas"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "ultime"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "groupe %1 non décrit"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "illimité"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "utilisateur"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "utilisateur %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "nom d'utilisateur"

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "verbeux"

#: NOT FOUND IN SOURCE
msgid "web port"
msgstr "port du serveur web"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "Hebdomadaire"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "toutes les semaines (le %1) à %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "semaines"

#: NOT FOUND IN SOURCE
msgid "where is sendmail command"
msgstr "où se trouve la commande sendmail"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "sur quel port votre serveurweb est-il en écoute, ex: 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "avec en-têtes"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "années"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "oui"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/rt.pot0000664000175000017500000071313112262650742014151 0ustar  chmrrchmrr# add by hand
msgid ""
msgstr ""

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr ""

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr ""

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr ""

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr ""

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr ""

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr ""

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr ""

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr ""

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr ""

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr ""

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr ""

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr ""

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr ""

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr ""

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr ""

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr ""

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr ""

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr ""

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr ""

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr ""

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr ""

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr ""

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr ""

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr ""

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr ""

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr ""

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr ""

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr ""

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr ""

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr ""

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr ""

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr ""

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr ""

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr ""

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr ""

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr ""

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr ""

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr ""

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr ""

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr ""

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr ""

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr ""

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr ""

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr ""

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr ""

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr ""

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr ""

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr ""

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr ""

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr ""

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr ""

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr ""

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr ""

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr ""

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr ""

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr ""

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr ""

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr ""

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr ""

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr ""

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr ""

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr ""

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr ""

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr ""

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr ""

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: etc/initialdata:215
msgid "A blank template"
msgstr ""

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr ""

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr ""

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr ""

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr ""

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr ""

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr ""

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr ""

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr ""

#: bin/rt-crontool:228
msgid "Action committed."
msgstr ""

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr ""

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr ""

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr ""

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr ""

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr ""

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr ""

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr ""

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr ""

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr ""

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr ""

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr ""

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr ""

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr ""

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr ""

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr ""

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr ""

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr ""

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr ""

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr ""

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr ""

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr ""

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr ""

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr ""

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr ""

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr ""

#: etc/initialdata:292
msgid "Admin Comment"
msgstr ""

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr ""

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr ""

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr ""

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr ""

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr ""

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr ""

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr ""

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr ""

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr ""

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr ""

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr ""

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr ""

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr ""

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr ""

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr ""

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr ""

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr ""

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr ""

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr ""

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr ""

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr ""

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr ""

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr ""

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr ""

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr ""

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr ""

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr ""

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr ""

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr ""

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr ""

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr ""

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr ""

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr ""

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr ""

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr ""

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr ""

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr ""

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr ""

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr ""

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr ""

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr ""

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr ""

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr ""

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr ""

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr ""

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr ""

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr ""

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr ""

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr ""

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr ""

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr ""

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr ""

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr ""

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr ""

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr ""

#: etc/initialdata:218
msgid "Autoreply"
msgstr ""

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr ""

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr ""

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr ""

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr ""

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr ""

#: etc/initialdata:214
msgid "Blank"
msgstr ""

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr ""

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr ""

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr ""

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr ""

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr ""

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr ""

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr ""

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr ""

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr ""

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr ""

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr ""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr ""

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr ""

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr ""

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr ""

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr ""

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr ""

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr ""

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr ""

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr ""

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr ""

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr ""

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr ""

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr ""

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr ""

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr ""

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr ""

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr ""

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr ""

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr ""

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr ""

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr ""

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr ""

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr ""

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr ""

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr ""

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr ""

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr ""

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr ""

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr ""

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr ""

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr ""

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr ""

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr ""

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr ""

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr ""

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr ""

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr ""

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr ""

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr ""

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr ""

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr ""

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr ""

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr ""

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr ""

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr ""

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr ""

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr ""

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr ""

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr ""

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr ""

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr ""

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr ""

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr ""

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr ""

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr ""

#: etc/initialdata:283
msgid "Correspondence"
msgstr ""

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr ""

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr ""

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr ""

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr ""

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr ""

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr ""

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr ""

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr ""

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr ""

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr ""

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr ""

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr ""

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr ""

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr ""

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr ""

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr ""

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr ""

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr ""

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr ""

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr ""

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr ""

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr ""

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr ""

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr ""

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr ""

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr ""

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr ""

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr ""

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr ""

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr ""

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr ""

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr ""

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr ""

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr ""

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr ""

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr ""

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr ""

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr ""

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr ""

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr ""

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr ""

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr ""

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr ""

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr ""

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr ""

#: etc/initialdata:91
msgid "Create Tickets"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr ""

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr ""

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr ""

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr ""

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr ""

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr ""

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr ""

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr ""

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr ""

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr ""

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr ""

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr ""

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr ""

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr ""

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr ""

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr ""

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr ""

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr ""

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr ""

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr ""

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr ""

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr ""

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr ""

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr ""

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr ""

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr ""

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr ""

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr ""

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr ""

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr ""

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr ""

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr ""

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr ""

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr ""

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr ""

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr ""

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr ""

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr ""

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr ""

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr ""

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr ""

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr ""

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr ""

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr ""

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr ""

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr ""

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr ""

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr ""

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr ""

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr ""

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr ""

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr ""

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr ""

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr ""

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr ""

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr ""

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr ""

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr ""

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr ""

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr ""

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr ""

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr ""

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr ""

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr ""

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr ""

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr ""

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr ""

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr ""

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr ""

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr ""

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr ""

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr ""

#: etc/initialdata:250
msgid "Default transaction template"
msgstr ""

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr ""

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr ""

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr ""

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr ""

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr ""

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr ""

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr ""

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr ""

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr ""

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr ""

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr ""

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr ""

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr ""

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr ""

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr ""

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr ""

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr ""

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr ""

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr ""

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr ""

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr ""

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr ""

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr ""

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr ""

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr ""

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr ""

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr ""

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr ""

# add by hand
#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr ""

# add by hand
#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr ""

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr ""

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr ""

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr ""

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr ""

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr ""

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr ""

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr ""

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr ""

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr ""

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr ""

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr ""

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr ""

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr ""

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr ""

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr ""

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr ""

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr ""

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr ""

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr ""

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr ""

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr ""

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr ""

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr ""

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr ""

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr ""

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr ""

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr ""

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr ""

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr ""

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr ""

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr ""

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr ""

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr ""

#: bin/rt-crontool:356
msgid "Example:"
msgstr ""

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr ""

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr ""

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr ""

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr ""

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr ""

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr ""

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr ""

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr ""

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr ""

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr ""

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr ""

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr ""

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr ""

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr ""

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr ""

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr ""

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr ""

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr ""

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr ""

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr ""

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr ""

#: share/html/Elements/Tabs:651
msgid "First"
msgstr ""

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr ""

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr ""

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr ""

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr ""

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr ""

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr ""

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr ""

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr ""

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr ""

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr ""

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr ""

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr ""

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr ""

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr ""

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr ""

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr ""

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr ""

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr ""

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr ""

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr ""

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr ""

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr ""

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr ""

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr ""

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr ""

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr ""

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr ""

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr ""

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr ""

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr ""

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr ""

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr ""

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr ""

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr ""

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr ""

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr ""

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr ""

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr ""

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr ""

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr ""

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr ""

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr ""

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr ""

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr ""

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr ""

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr ""

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr ""

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr ""

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr ""

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr ""

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr ""

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr ""

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr ""

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr ""

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr ""

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr ""

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr ""

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr ""

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr ""

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr ""

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr ""

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr ""

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr ""

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr ""

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr ""

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr ""

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr ""

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr ""

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr ""

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr ""

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr ""

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr ""

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr ""

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr ""

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr ""

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr ""

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr ""

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr ""

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr ""

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr ""

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr ""

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr ""

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr ""

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr ""

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr ""

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr ""

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr ""

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr ""

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr ""

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr ""

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr ""

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr ""

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr ""

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr ""

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr ""

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr ""

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr ""

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr ""

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr ""

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr ""

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr ""

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr ""

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr ""

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr ""

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr ""

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr ""

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr ""

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr ""

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr ""

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr ""

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr ""

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr ""

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr ""

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr ""

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr ""

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr ""

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr ""

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr ""

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr ""

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr ""

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr ""

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr ""

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr ""

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr ""

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr ""

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr ""

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr ""

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr ""

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr ""

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr ""

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr ""

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr ""

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr ""

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr ""

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr ""

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr ""

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr ""

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr ""

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr ""

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr ""

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr ""

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr ""

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr ""

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr ""

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr ""

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr ""

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr ""

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr ""

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr ""

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr ""

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr ""

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr ""

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr ""

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr ""

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr ""

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr ""

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr ""

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr ""

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr ""

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr ""

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr ""

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr ""

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr ""

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr ""

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr ""

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr ""

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr ""

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr ""

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr ""

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr ""

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr ""

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr ""

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr ""

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr ""

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr ""

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr ""

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr ""

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr ""

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr ""

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr ""

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr ""

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr ""

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr ""

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr ""

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr ""

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr ""

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr ""

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr ""

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr ""

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr ""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr ""

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr ""

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr ""

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr ""

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr ""

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr ""

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr ""

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr ""

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr ""

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr ""

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr ""

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr ""

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr ""

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr ""

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr ""

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr ""

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr ""

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr ""

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr ""

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr ""

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr ""

# add by hand
#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr ""

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr ""

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr ""

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr ""

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr ""

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr ""

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr ""

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr ""

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr ""

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr ""

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr ""

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr ""

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr ""

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr ""

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr ""

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr ""

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr ""

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr ""

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr ""

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr ""

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr ""

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr ""

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr ""

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr ""

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr ""

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr ""

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr ""

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr ""

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr ""

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr ""

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr ""

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr ""

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr ""

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr ""

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr ""

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr ""

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr ""

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr ""

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr ""

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr ""

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr ""

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr ""

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr ""

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr ""

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr ""

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr ""

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr ""

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr ""

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr ""

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr ""

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr ""

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr ""

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr ""

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr ""

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr ""

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr ""

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr ""

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr ""

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr ""

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr ""

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr ""

#: etc/initialdata:41
msgid "Notify Owner"
msgstr ""

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr ""

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr ""

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr ""

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr ""

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr ""

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr ""

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr ""

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr ""

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr ""

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr ""

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr ""

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr ""

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr ""

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr ""

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr ""

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr ""

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr ""

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr ""

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr ""

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr ""

#: etc/initialdata:143
msgid "On Comment"
msgstr ""

#: etc/initialdata:115
msgid "On Correspond"
msgstr ""

#: etc/initialdata:104
msgid "On Create"
msgstr ""

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr ""

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr ""

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr ""

#: etc/initialdata:172
msgid "On Queue Change"
msgstr ""

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr ""

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr ""

#: etc/initialdata:178
msgid "On Resolve"
msgstr ""

#: etc/initialdata:149
msgid "On Status Change"
msgstr ""

#: etc/initialdata:109
msgid "On Transaction"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr ""

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr ""

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr ""

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr ""

#: etc/initialdata:95
msgid "Open Tickets"
msgstr ""

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr ""

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr ""

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr ""

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr ""

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr ""

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr ""

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr ""

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr ""

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr ""

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr ""

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr ""

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr ""

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr ""

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr ""

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr ""

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr ""

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr ""

#: share/html/dhandler:48
msgid "Page not found"
msgstr ""

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr ""

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr ""

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr ""

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr ""

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr ""

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr ""

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr ""

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr ""

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr ""

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr ""

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr ""

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr ""

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr ""

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr ""

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr ""

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr ""

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr ""

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr ""

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr ""

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr ""

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr ""

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr ""

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr ""

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr ""

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr ""

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr ""

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr ""

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr ""

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr ""

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr ""

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr ""

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr ""

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr ""

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr ""

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr ""

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr ""

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr ""

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr ""

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr ""

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr ""

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr ""

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr ""

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr ""

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr ""

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr ""

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr ""

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr ""

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr ""

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr ""

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr ""

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr ""

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr ""

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr ""

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr ""

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr ""

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr ""

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr ""

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr ""

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr ""

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr ""

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr ""

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr ""

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr ""

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr ""

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr ""

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr ""

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr ""

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr ""

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr ""

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr ""

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr ""

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr ""

# add by hand
#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr ""

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr ""

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr ""

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr ""

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr ""

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr ""

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr ""

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr ""

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr ""

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr ""

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr ""

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr ""

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr ""

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr ""

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr ""

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr ""

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr ""

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr ""

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr ""

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr ""

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr ""

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr ""

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr ""

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr ""

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr ""

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr ""

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr ""

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr ""

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr ""

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr ""

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr ""

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr ""

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr ""

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr ""

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr ""

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr ""

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr ""

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr ""

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr ""

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr ""

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr ""

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr ""

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr ""

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr ""

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr ""

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr ""

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr ""

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr ""

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr ""

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr ""

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr ""

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr ""

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr ""

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr ""

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr ""

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr ""

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr ""

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr ""

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr ""

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr ""

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr ""

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr ""

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr ""

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr ""

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr ""

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr ""

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr ""

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr ""

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr ""

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr ""

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr ""

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr ""

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr ""

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr ""

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr ""

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr ""

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr ""

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr ""

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr ""

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr ""

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr ""

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr ""

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr ""

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr ""

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr ""

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr ""

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr ""

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr ""

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

# add by hand
#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr ""

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr ""

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr ""

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr ""

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr ""

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr ""

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr ""

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr ""

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr ""

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr ""

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr ""

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr ""

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr ""

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr ""

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr ""

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr ""

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr ""

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr ""

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr ""

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr ""

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr ""

#: etc/initialdata:307
msgid "Status Change"
msgstr ""

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr ""

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr ""

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr ""

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr ""

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr ""

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr ""

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr ""

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr ""

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr ""

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr ""

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr ""

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr ""

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr ""

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr ""

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr ""

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr ""

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr ""

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr ""

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr ""

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr ""

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr ""

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr ""

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr ""

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr ""

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr ""

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr ""

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr ""

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr ""

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr ""

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr ""

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr ""

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr ""

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr ""

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr ""

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr ""

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr ""

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr ""

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr ""

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr ""

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr ""

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr ""

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr ""

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr ""

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr ""

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr ""

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr ""

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr ""

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr ""

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr ""

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr ""

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr ""

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr ""

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr ""

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr ""

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr ""

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr ""

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr ""

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr ""

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr ""

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr ""

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr ""

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr ""

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr ""

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr ""

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr ""

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr ""

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr ""

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr ""

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr ""

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr ""

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr ""

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr ""

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr ""

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr ""

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr ""

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr ""

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr ""

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr ""

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr ""

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr ""

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr ""

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr ""

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr ""

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr ""

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr ""

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr ""

#: etc/initialdata:249
msgid "Transaction"
msgstr ""

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr ""

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr ""

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr ""

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr ""

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr ""

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr ""

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr ""

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr ""

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr ""

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr ""

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr ""

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr ""

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr ""

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr ""

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr ""

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr ""

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr ""

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr ""

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr ""

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr ""

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr ""

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr ""

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr ""

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr ""

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr ""

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr ""

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr ""

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr ""

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr ""

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr ""

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr ""

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr ""

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr ""

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr ""

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr ""

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr ""

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr ""

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr ""

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr ""

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr ""

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr ""

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr ""

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr ""

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr ""

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr ""

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr ""

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr ""

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr ""

#: lib/RT/User.pm:262
msgid "User created"
msgstr ""

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr ""

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr ""

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr ""

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr ""

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr ""

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr ""

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr ""

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr ""

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr ""

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr ""

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr ""

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr ""

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr ""

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr ""

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr ""

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr ""

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr ""

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr ""

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr ""

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr ""

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr ""

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr ""

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr ""

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr ""

#: etc/initialdata:110
msgid "When anything happens"
msgstr ""

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr ""

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr ""

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr ""

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr ""

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr ""

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr ""

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr ""

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr ""

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr ""

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr ""

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr ""

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr ""

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr ""

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr ""

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr ""

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr ""

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr ""

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr ""

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr ""

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr ""

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr ""

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr ""

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr ""

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr ""

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr ""

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr ""

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr ""

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr ""

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr ""

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr ""

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr ""

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr ""

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr ""

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr ""

#: lib/RT/Date.pm:346
msgid "hours"
msgstr ""

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr ""

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr ""

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr ""

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr ""

#: lib/RT/Queue.pm:83
msgid "new"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr ""

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr ""

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr ""

#: lib/RT/Date.pm:338
msgid "sec"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr ""

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr ""

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr ""

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr ""

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr ""

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr ""

#: lib/RT/Date.pm:362
msgid "years"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr ""

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/en_GB.po0000664000175000017500000074274712262650742014331 0ustar  chmrrchmrr# English (United Kingdom) translation for rt
# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:39+0000\n"
"Last-Translator: Alex Vandiver \n"
"Language-Team: English (United Kingdom) \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (no pubkey!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (untrusted!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 added"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 ago"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 changed to %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 deleted"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 deleted."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 renamed to %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 saved."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 updated."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 with template %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) by %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Unchanged)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (from pane %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Adjust LogToScreen config option"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - An argument to pass to %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Output status updates to STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Specify id of the template you want to use"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Specify name or id of template(s) you want to use"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Specify the action module you want to use"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Specify the comma separated list of transactions' types you want to use"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Specify the condition module you want to use"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Specify the search module you want to use"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 DashBoards"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 ScripAction loaded"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 added as a value for %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialise Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customise Basics' below to continue customising RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 already exists, but does not contain RT's tables or metadata. The 'Initialise Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customise Basic' below to continue customising RT."

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 appears to be a local object, but can't be found in the database"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 appears to be fully initialised. We won't need to create any tables or insert metadata, but you can continue to customise RT by clicking 'Customise Basics' below"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 by %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 changed from %2 to %3"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 chart by %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 copy"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 core config"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 could not be set to %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 couldn't set status to resolved. RT's Database may be inconsistent."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 created"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 deleted"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 disabled"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 doesn't exist."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 enabled"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 highest priority tickets I own"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 is a tool to act on tickets from an external scheduling tool, such as cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 is no longer a %2 for this queue."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 is no longer a %2 for this ticket."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 is no longer a value for custom field %2"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 newest unowned tickets"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objects"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 site config"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 update: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 update: Nothing changed"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 updated"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 will resolve all members of a resolved group ticket."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1's %2 objects"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 objects"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1's dashboards"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1's saved searches"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: no attachment specified"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1New ticket in%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hour)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' is an invalid value for status"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Tick box to delete)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Tick boxes to disable notifications to the listed recipients)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Tick boxes to enable notifications to the listed recipients)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Enter ticket ids or URLs, separated with spaces)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(If left blank, will default to %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(No custom fields)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(No members)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(No scrips)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(No templates)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(None)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Use these fields when you choose 'User Defined' for a condition or action)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Will not be sent email)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(any)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(empty)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(no pubkey!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(no value)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(no values)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(only one ticket)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(pending %quant(%1,other ticket))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(pending approval)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(required)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(trust: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(untitled)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(untrusted!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id is deprecated argument and can not be used with --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transaction argument could be only 'first', 'last' or 'all'"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

All iCal feeds embed a secret token which authorises you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" #: etc/initialdata:215 msgid "A blank template" msgstr "A blank template" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "A password was not set, so user won't be able to login." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE not found" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEs can only be created and deleted." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "AND" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "About me" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Access control" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Action" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Action '%1' not found" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Action committed.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Action is mandatory argument" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Action prepared..." #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Add AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Add Bookmark" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Add Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Add Columns" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Add Criteria" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Add More Files" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Add Requestor" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Add Value" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Add a scrip which will apply to all queues" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Add comments or replies to selected tickets" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Add members" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Add new watchers" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Add these terms" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Add these terms and Search" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Add values" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Add, delete and modify custom field values for objects" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Added principal as a %1 for this queue" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Added principal as a %1 for this ticket" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Address" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Address1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Address2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Admin Comment" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Admin Correspondence" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admin queues" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Global configuration" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdminAllPersonalGroups" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGroup" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminCustomField" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGroup" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGroupMembership" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminOwnPersonalGroups" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminQueue" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminUsers" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administrative Cc" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administrative password" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Advanced" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Aggregator" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "All Approvals Passed" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "All Queues" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "All iCal feeds embed a secret token which authorises you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "All queues matching search criteria" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Already encrypted" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "And/Or" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Applied" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Applies to" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Applies to all objects" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Apply" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Apply globally" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Apply your changes" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Approval" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Approval #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Approval #%1: Notes not recorded due to a system error" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Approval #%1: Notes recorded" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Approval Passed" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Approval Ready for Owner" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Approval Rejected" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Approve" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Apr" #: NOT FOUND IN SOURCE msgid "April" msgstr "April" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Asc" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Ascending" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Assign and remove custom fields" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "AssignCustomFields" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Attach" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Attach file" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Attached file" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Attachment" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Attachment '%1' could not be loaded" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Attachment created" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Attachment filename" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Attachments" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Attachments encryption is disabled" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Attribute Deleted" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Aug" #: NOT FOUND IN SOURCE msgid "August" msgstr "August" #: etc/initialdata:218 msgid "Autoreply" msgstr "Autoreply" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Autoreply to Requestors" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Available" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "BCc" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Back" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Bad privacy for attribute %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Basics" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Be sure to save your changes" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC corporate logo" #: etc/initialdata:214 msgid "Blank" msgstr "Blank" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Body" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Bold" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Bookmark" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Bookmarked Tickets" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Brief headers" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Bulk Update" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Buy Support" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "By default, RT will use the time zone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different time zone in their preferences." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CCGroup" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Can not modify system users" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Can this principal see this queue" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Can't add a custom field value without a name" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Can't find a collection class for '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Can't find a saved search to work with" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Can't link a ticket to itself" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Can't save %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Can't save this search" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Can't specifiy both base and target" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Cannot create tickets in a disabled queue." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Cannot create user: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Categories are based on" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Category" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Category unset" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccs" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Change" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Change password" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Check All" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Check Database Connectivity" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Check Database Credentials" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Check box to delete" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Check box to revoke right" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Children" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Choose Database Engine" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "City" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Clear" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Clear All" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Click \"Finish Installation\" below to complete this wizard." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Click \"Initialise Database\" to create RT's database and insert initial metadata. This may take a few moments" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Close window" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Closed" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Closed tickets" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Select or enter multiple values" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Combobox: Select or enter one value" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Combobox: Select or enter up to %1 values" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Comment" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Comment Address" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Comment address" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Comment on tickets" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "CommentAddress" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "CommentOnTicket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comments" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Comments (Not sent to requestors)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Comments (not sent to requestors)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Comments about this user" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Comments added" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Commit Stubbed" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Condition" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Condition '%1' not found" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Condition is a mandatory argument" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Condition matches..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Condition, Action and Template" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Config file %1 is locked" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Configuration" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Confirm" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Connection successful" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Content" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Content-Type" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "ContentType" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Correspond address" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "CorrespondAddress" #: etc/initialdata:283 msgid "Correspondence" msgstr "Correspondence" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Correspondence added" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Could not add new custom field value: %1" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Could not change owner: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Could not create CustomField" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Could not create CustomField: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Could not create group" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Could not create template: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Could not create ticket in disabled queue \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Could not create ticket. Queue not set" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Could not create user" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Could not find or create that user" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Could not find that principal" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Could not load %1 attribute" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Could not load CustomField %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Could not load group" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Could not load object for %1" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Could not make that principal a %1 for this queue" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Could not make that principal a %1 for this ticket" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Could not remove that principal as a %1 for this queue" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Could not remove that principal as a %1 for this ticket" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Could not set user info" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Couldn't add attachment" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Couldn't add member to group" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Couldn't apply custom field to an object as it's already global" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Couldn't create a transaction: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Couldn't create record" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Couldn't delete dashboard %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Couldn't find row" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Couldn't find suitable transaction, skipping" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Couldn't find that principal" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Couldn't find that value" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Couldn't load %1 from the users database.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Couldn't load Class %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Couldn't load Custom Field #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Couldn't load CustomField #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Couldn't load CustomField %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Couldn't load copy of ticket #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Couldn't load dashboard %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Couldn't load dashboard %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Couldn't load group #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Couldn't load group %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Couldn't load link" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Couldn't load object %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Couldn't load or create user: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Couldn't load queue" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Couldn't load queue #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Couldn't load queue %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Couldn't load queue '%1'" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Couldn't load scrip #%1" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Couldn't load template #%1" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Couldn't load ticket '%1'" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Couldn't load transaction #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Couldn't load user" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Couldn't load user #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Couldn't load user #%1 or user '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Couldn't load user '%1'" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Couldn't parse address from '%1' string" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Couldn't replace content with decrypted data: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Couldn't replace content with encrypted data: %1" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Couldn't resolve '%1' into a URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Couldn't resolve base '%1' into a URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Couldn't resolve target '%1' into a URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Couldn't send email" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Couldn't set %1 watcher: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Couldn't set private key" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Couldn't unset private key" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Country" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Create" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Create Tickets" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Create a CustomField" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Create a CustomField for queue %1" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Create a new dashboard" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Create a new group" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Create a new personal group" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Create a new ticket" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Create a new user" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Create a queue" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Create a scrip for queue %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Create a template" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Create a ticket" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Create dashboards for this group" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Create new tickets based on this scrip's template" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Create personal dashboards" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Create system dashboards" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Create ticket" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Create tickets in this queue" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Create tickets offline" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Create, delete and modify custom fields" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Create, delete and modify queues" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Create, delete and modify the members of any user's personal groups" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Create, delete and modify the members of personal groups" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Create, delete and modify users" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "CreateDashboard" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "CreateGroupDashboard" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "CreateOwnDashboard" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "CreateSavedSearch" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "CreateTicket" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Created" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Created By" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Created CustomField %1" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Created in a date range" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Created tickets in period, grouped by status" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CreatedBy" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CreatedRelative" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Creator" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Cryptography" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Current Links" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Current Scrips" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Current members" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Current rights" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Current search" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Current watchers" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Custom Fields" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Custom Fields for %1" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Custom action cleanup code" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Custom action preparation code" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Custom condition" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Custom field #%1 is not applied to this object" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Custom field %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Custom field %1 does not apply to this object" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Custom field %1 has a value." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Custom field %1 has no value." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Custom field %1 not found" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Custom field '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Custom field is already applied to the object" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Custom field value %1 could not be found for custom field %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Custom field value could not be deleted" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Custom field value could not be found" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Custom field value deleted" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CustomField" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "CustomFieldValue" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Customise" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Customise Basics" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Customise Email Addresses" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Customise Email Configuration" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA password" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA username" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Daily digest" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Dashboard" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Dashboard could not be created: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Dashboard could not be updated: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Dashboard updated" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Dashboards" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Database host" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Database name" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Database password for RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Database port" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Database type" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Database username for RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Date format" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "DateTime doesn't support format_cldr, you must upgrade to use this feature" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "DateTime module missing" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "DateTime::Locale module missing" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Dates" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dec" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Decrypt" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Default Autoresponse template" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Default Queue" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Default Requestor" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Default admin comment template" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Default admin correspondence template" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Default correspondence template" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Default queue" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Default transaction template" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Default: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Default: %1/%2 changed from %3 to %4" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "DefaultDueIn" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "DefaultFormat" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delegate rights" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delegate specific rights which have been granted to you." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegateRights" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegation" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Delete" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Delete Template" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Delete dashboards for this group" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Delete failed: %1" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Delete personal dashboards" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Delete selected scrips" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Delete system dashboards" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Delete tickets" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Delete values" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "DeleteDashboard" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "DeleteGroupDashboard" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "DeleteOwnDashboard" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "DeleteTicket" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Deleted %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Deleted dashboard %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Deleted queries" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Deleted saved search" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Deleting this object would break referential integrity" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Deleting this object would violate referential integrity" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Deny" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Depended on by" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "DependedOnBy" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Dependency by %1 added" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Dependency by %1 deleted" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Dependency on %1 added" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Dependency on %1 deleted" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "DependentOn" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Depends on" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "DependsOn" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Desc" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Descending" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Describe the issue below" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Description" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direction" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Disabled" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Display" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Display Access Control List" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Display Columns" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Display Scrip templates for this queue" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Display Scrips for this queue" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Display saved searches for this group" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distributed under version 2 of the GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Do anything and everything" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Domain name" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Don't include http://, just something like 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Don't refresh home page." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Don't refresh search results." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Don't refresh this page." #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Don't trust this key at all" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Download" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Download as a tab-delimited file" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Download dumpfile" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Due" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "DueRelative" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ERROR: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Easy updating of your open tickets" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Edit" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Edit Custom Fields" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Edit Custom Fields for %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Edit Custom Fields for all groups" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Edit Custom Fields for all queues" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Edit Custom Fields for all users" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Edit Custom Fields for tickets in all queues" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Edit Links" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Edit Query" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Edit Search" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Edit Templates for queue %1" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Edit saved searches for this group" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Edit system templates" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "EditSavedSearches" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Editable text" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Editing Configuration for queue %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Editing CustomField %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Editing membership for group %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Editing membership for personal group %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "EffectiveId" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Either base or target must be specified" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Either you have no rights to view saved search %1 or identifier is incorrect" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-mail" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Email Digest" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Email address in use" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Email delivery" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Email template for periodic notification digests" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "EmailAddress" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Enabled" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Enabled (Unchecking this box disables this custom field)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Enabled (Unchecking this box disables this group)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Enabled (Unchecking this box disables this queue)" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Enabled Queues" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Enabled queues matching search criteria" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Enabled status %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Encrypt" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Encrypt by default" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Encrypt/Decrypt" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Encrypt/Decrypt transaction #%1 of ticket #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Encrypting disabled" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Encrypting enabled" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Enter multiple values" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Enter multiple values with autocompletion" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Enter objects or URIs to link objects to. Separate multiple entries with spaces." #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Enter one value" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Enter one value with autocompletion" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Enter queues or URIs to link queues to. Separate multiple entries with spaces." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Enter up to %1 values" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Enter up to %1 values with autocompletion" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Error" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Error in parameters to Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Error in parameters to Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Error in parameters to Ticket->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Error in parameters to Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Error to RT owner: public key" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Error: Missing dashboard" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Error: bad GnuPG data" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Error: no private key" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Error: public key" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Escalate tickets" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Estimated" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Everyone" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Examine tickets created in a queue between two dates" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Examine tickets resolved in a queue between two dates" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Examine tickets resolved in a queue, grouped by owner" #: bin/rt-crontool:356 msgid "Example:" msgstr "Example:" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Expire" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "ExtendedStatus" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "External authentication enabled." #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Extra info" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Extract Subject Tag" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extract tags from a Transaction's subject and add them to the Ticket's subject." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Failed to connect to database: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Failed to create %1 attribute" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Failed to find 'Privileged' users pseudogroup." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Failed to find 'Unprivileged' users pseudogroup" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Failed to load %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Failed to load %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Failed to load module %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Failed to load object for %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Failed to load template" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Failed to parse template" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Feb" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Field values source:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "FileName" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Filename" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Fill arguments" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Fill boxes with colour using" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Fill in multiple text areas" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Fill in multiple wikitext areas" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Fill in one text area" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Fill in one wikitext area" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Fill in this field with a URL." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Fill in up to %1 text areas" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Fill in up to %1 wikitext areas" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Final Priority" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "FinalPriority" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Find all users whose" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Find groups whose" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Find people whose" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Find tickets" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Finish" #: share/html/Elements/Tabs:651 msgid "First" msgstr "First" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Force change" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Format" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Forward" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Forward Message" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Forward Message and Return" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Forward Ticket" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Forward messages to third person(s)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Forward ticket #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Forward transaction #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "ForwardMessage" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Found %quant(%1,ticket)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Found Object" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequency" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Fri" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Friday" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Full headers" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "General" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Get template from file" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Getting started" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Given to %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Global" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Global Custom Fields" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Global custom field configuration" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Global portlet %1 saved." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Global template: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG error. Contact with administrator" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG integration is disabled" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG issues" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG private key(s) for %1" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG public key(s) for %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Go" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Go!" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Goto ticket" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Graph" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Graph Properties" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Graphical charts are not available." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Group" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Group Rights" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Group already has member: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Group could not be created: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Group created" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Group disabled" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Group enabled" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Group has no such member" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Group not found" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Group rights" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Groups" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Groups can't be members of their members" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Groups matching search criteria" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Groups the user is member of (check box to delete)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Groups the user is not member of (check box to add)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Groups this user belongs to" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "HasMember" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Heading of a forwarded Ticket" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Heading of a forwarded message" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Hello!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hello, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Help us set up some useful defaults for RT." #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "History" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "History of the group %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "History of the queue %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "History of the user %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Home" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Home page refresh interval" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "HomePhone" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Homepage" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Hour" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Hours" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "I have %quant(%1,concrete mixer)." #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identity" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "If an approval is rejected, reject the original and delete pending approvals" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "If no Requestor is specified, create tickets with this requestor." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "If no queue is specified, create tickets in this queue." #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "If you've updated anything above, be sure to" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Illegal value for %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Immutable field" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Include disabled custom fields in listing." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Include disabled groups in listing." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Include disabled queues in listing." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Include disabled users in search." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Include page" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Individual messages" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Inform RT owner that user(s) have problems with public keys" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Inform user that a dashboard he subscribed to is missing" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Inform user that a message he sent has invalid GnuPG data" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Inform user that he has problems with public key and couldn't recieve encrypted content" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Inform user that his password has been reset" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Inform user that we received an encrypted email and we have no private keys to decrypt" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Initial Priority" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "InitialPriority" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initialise Database" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Input error" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Input must match %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Install RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Internal Error" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Internal Error: %1" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Invalid %1: '%2' doesn't look like an email address" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Invalid %1: it should be a number" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Invalid Group Type" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Invalid data" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Invalid object" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Invalid owner object" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Invalid pattern: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Invalid queue" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Invalid right" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Invalid right. Couldn't canonicalise right '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Invalid syntax for email address" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Invalid value for %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Invalid value for custom field" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Invalid value for status" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Is not encrypted" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "It is incredibly important that nonprivileged users not be allowed to run this tool." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "It takes several arguments:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Italic" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Join or leave this group" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jul" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Jumbo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jun" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Language" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Large" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Last" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Last Contact" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Last Contacted" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Last Updated" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Last Updated By" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Last updated by" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "LastUpdated" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "LastUpdatedBy" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "LastUpdatedRelative" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Leave blank to send to your current email address (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Leave empty to use the default value for your database" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Leave this alone to use the default dba username for your database type" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Left" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legends" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Length in characters; Use '0' to show all messages inline, regardless of length" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Let this user access RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Let this user be granted rights" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Let's go!" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Link" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Link already exists" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Link could not be created" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Link not found" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Link ticket #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Link values to" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Linked" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "LinkedFrom" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "LinkedTo" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Linking. Permission denied" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Links" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Load" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Load saved search:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "LoadSavedSearch" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Loaded %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Loaded original \"%1\" saved search" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Loaded perl modules" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Loaded saved search \"%1\"" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Locale" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LocalisedDateTime" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Location" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Logged in as %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Logged out" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Login" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Logout" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Lookup type mismatch" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Mail" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Main type of links" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Make Owner" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Make Status" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Make date Due" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Make date Resolved" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Make date Started" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Make date Starts" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Make date Told" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Make priority" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Make queue" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Make subject" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Make this group visible to user" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Manage custom fields and custom field values" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Manage groups and group membership" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Manage properties and configuration which apply to all queues" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Manage queues and queue-specific properties" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Manage saved graphs" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Manage users and passwords" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mar" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Marked all messages as seen" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "MaxValues" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Maximum inline message length" #: lib/RT/Date.pm:95 msgid "May" msgstr "May" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Member" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Member %1 added" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Member %1 deleted" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Member added: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Member deleted" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Member not deleted" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Member of" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "MemberOf" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Members" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Membership in %1 added" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Membership in %1 deleted" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Memberships" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Memberships of the user %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Merge Successful" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Merge failed. Couldn't set EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Merge failed. Couldn't set Status" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Merge into" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Merged into %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Message" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Message body is not shown because sender requested not to inline it." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Message body not shown because it is not plain text." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Message body not shown because it is too large." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Message box height" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Message box width" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Message could not be recorded" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Message for user" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Message recorded" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Messages about this ticket will not be sent to..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minimum password length" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutes" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Missing a primary key?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobile" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "MobilePhone" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Modify Access Control List" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Modify Custom Fields which apply to %1 for all %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Modify Custom Fields which apply to all %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Modify Group Rights" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modify Members" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Modify Rights" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Modify Scrip templates for this queue" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Modify Scrips for this queue" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Modify User Rights" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Modify a CustomField for queue %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Modify a scrip for queue %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Modify a scrip that applies to all queues" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Modify associated objects for %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Modify custom field values" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Modify dashboards for this group" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Modify dates for #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Modify dates for ticket # %1" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Modify global custom fields" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Modify global group rights" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Modify global group rights." #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Modify global user rights" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Modify global user rights." #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Modify group metadata or delete group" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Modify group rights for custom field %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Modify group rights for group %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Modify group rights for queue %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Modify membership roster for this group" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Modify one's own RT account" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Modify people related to queue %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Modify people related to ticket #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Modify personal dashboards" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Modify scrips for queue %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Modify scrips which apply to all queues" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Modify system dashboards" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Modify template %1" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modify templates which apply to all queues" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Modify the dashboard %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Modify the default \"RT at a glance\" view" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Modify the group %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Modify the queries of dashboard %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Modify the queue watchers" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Modify the subscription to dashboard %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Modify the user %1" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Modify ticket # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Modify ticket #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Modify tickets" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Modify user rights for custom field %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Modify user rights for group %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Modify user rights for queue %1" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "ModifyACL" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "ModifyCustomField" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "ModifyDashboard" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "ModifyGroupDashboard" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "ModifyOwnDashboard" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "ModifyOwnMembership" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "ModifyQueueWatchers" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "ModifyScrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "ModifySelf" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "ModifyTemplate" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "ModifyTicket" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Module" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Mon" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Monday" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Monday through Friday" #: NOT FOUND IN SOURCE msgid "More" msgstr "More" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "More about %1" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Move down" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Move up" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Multiple" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Must specify 'Name' attribute" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "My %1 tickets" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "My Day" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "My approvals" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "My dashboards" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "My saved searches" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "NEWLINE" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Name" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Name in use" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Named, shared collection of portlets" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Never" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "New" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "New Links" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "New Password" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "New Pending Approval" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "New Search" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "New and open tickets for %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "New custom field" #: NOT FOUND IN SOURCE msgid "New group" msgstr "New group" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "New messages" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "New password" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "New password notification sent" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "New reminder:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "New rights" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "New scrip" #: NOT FOUND IN SOURCE msgid "New template" msgstr "New template" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "New ticket" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "New ticket doesn't exist" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "New user called" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "New watchers" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Next" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "NickName" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Nickname" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "No" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "No %1 loaded" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "No Class defined" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "No CustomField" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "No CustomField defined" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "No Group defined" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "No Query" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "No Queue defined" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "No RT user found. Please consult your RT administrator.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "No Subject" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "No Template" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "No action" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "No column specified" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "No comment entered about this user" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "No dashboards." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "No description for %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "No details" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "No group specified" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "No groups matching search criteria found." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "No key suitable for encryption" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "No keys for this address" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "No message attached" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "No name provided" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "No need to encrypt" #: lib/RT/User.pm:851 msgid "No password set" msgstr "No password set" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "No permission to create queues" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "No permission to create tickets in the queue '%1'" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "No permission to display that ticket" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "No permission to save system-wide searches" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "No permission to set preferences" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "No permission to view update ticket" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "No principal specified" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "No principals selected." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "No private key" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "No queues matching search criteria found." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "No right specified" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "No rights found" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "No rights granted." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "No search to operate on." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "No subject" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "No such key or it's not suitable for signing" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "No tickets found." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "No transaction type specified" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "No usable keys." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "No users matching search criteria found." #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "No value sent to _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Nobody" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "None" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Nonexistant field?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Not Set" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Not found" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Not logged in." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Not set" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Not yet implemented." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Notes" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Notification could not be sent" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Notify AdminCcs" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Notify AdminCcs as Comment" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Notify Ccs" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Notify Ccs as Comment" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Notify Other Recipients" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Notify Other Recipients as Comment" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Notify Owner" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Notify Owner as Comment" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Notify Owner of their rejected ticket" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notify Owner of their ticket has been approved and is ready to be acted on" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notify Owner of their ticket has been approved by some or all approvers" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Notify Owner, Requestors, Ccs and AdminCcs" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notify Owner, Requestors, Ccs and AdminCcs as Comment" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Notify Owners and AdminCcs of new items pending their approval" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notify Requestor of their ticket has been approved by all approvers" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Notify Requestor of their ticket has been approved by some approver" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Notify Requestors" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Notify Requestors and Ccs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Notify Requestors and Ccs as Comment" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Notify me of unread messages" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Number of search results" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OR" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Object" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Object could not be created" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Object could not be deleted" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Object created" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Object deleted" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Object of type %1 cannot take custom fields" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Object type mismatch" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objects list is empty" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Oct" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Offline" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Offline edits" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Offline upload" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "On %1, %2 wrote:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "On Close" #: etc/initialdata:143 msgid "On Comment" msgstr "On Comment" #: etc/initialdata:115 msgid "On Correspond" msgstr "On Correspond" #: etc/initialdata:104 msgid "On Create" msgstr "On Create" #: etc/initialdata:164 msgid "On Owner Change" msgstr "On Owner Change" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "On Priority Change" #: etc/initialdata:172 msgid "On Queue Change" msgstr "On Queue Change" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "On Reject" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "On Reopen" #: etc/initialdata:178 msgid "On Resolve" msgstr "On Resolve" #: etc/initialdata:149 msgid "On Status Change" msgstr "On Status Change" #: etc/initialdata:109 msgid "On Transaction" msgstr "On Transaction" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "One-time Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "One-time Cc" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Only show approvals for requests created after %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Only show approvals for requests created before %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Only show custom fields for:" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Open Tickets" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Open URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Open it" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Open tickets" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Open tickets on correspondence" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Option" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Options" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Order by" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organisation" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Originating ticket: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Outgoing email about a comment recorded" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Outgoing email recorded" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Outgoing mail" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Over time, priority moves toward" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Own tickets" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "OwnTicket" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Owner" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Owner '%1' does not have rights to own this ticket." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Owner changed from %1 to %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Owner could not be set." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Owner forcibly changed from %1 to %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "OwnerName" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Page" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Page 1 of 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Page not found" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Pager" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "PagerPhone" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Parents" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Password" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Password Reminder" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Password changed" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Password has not been set." #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Password needs to be at least %1 characters long" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Password set" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Password: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Password: Permission Denied" #: etc/initialdata:463 msgid "PasswordChange" msgstr "PasswordChange" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Passwords do not match." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Passwords do not match. Your password has not been changed" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Path to sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "People" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Perform a user-defined action" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Perl Include Paths (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl configuration" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Perl library search order" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Permission Denied" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Permission denied" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Personal Dashboards" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Personal Groups" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Phone numbers" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Please check the URL and try again." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Please enter your current password correctly." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Please enter your current password." #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Possible hidden searches" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Preferences" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Preferences %1 for user %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Preferences saved for %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Preferences saved for user %1." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Preferences saved." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Preferred Key: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Preferred key" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Prepare Stubbed" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Prev" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Previous" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Principal %1 not found." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Print this message" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Priority" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Priority starts at" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privacy" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privacy:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Private Key" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privileged" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Privileged status: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Privileged users" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudogroup for internal use" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Public key '0x%1' is required to verify signature" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Queries" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Query" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Query Builder" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Query:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Queue" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Queue %1 not found" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Queue Name" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Queue already exists" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Queue could not be created" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Queue could not be loaded." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Queue created" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Queue disabled" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Queue enabled" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Queue id" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Queue not found" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Queue rights" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Queue's key" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "QueueAdminCc" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "QueueCc" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "QueueName" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "QueueWatcher" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Queues" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Queues I administer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Queues I'm an AdminCc for" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Quick search" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Quick ticket creation" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 for %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT Administration" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "RT Administrator Email" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "RT Config" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT Configuration" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT Error" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT Self Service" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT Size" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT Variables" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT at a glance" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT at a glance for the user %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT can include content from another web service when showing this custom field." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT can make this custom field's values into hyperlinks to another service." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT core variables" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT couldn't store your session." #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT for %1" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organisations on all seven continents. (Yes, even Antarctica.)" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT will connect to the database using this user. It will be created for you." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT will create a user called \"root\" and set this as their password" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT will look for anything else you enter in ticket subjects." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT/Admin/Edit the group %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "RTAddressRegexp option in the config doesn't match %1" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Real Name" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "RealName" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Recipient" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Record all updates" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Recursive member" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Reference by %1 added" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Reference by %1 deleted" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Reference to %1 added" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Reference to %1 deleted" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Referred to by" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "ReferredToBy" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Refers to" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "RefersTo" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Refresh" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Refresh home page every 10 minutes." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Refresh home page every 120 minutes." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Refresh home page every 2 minutes." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Refresh home page every 20 minutes." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Refresh home page every 5 minutes." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Refresh home page every 60 minutes." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Refresh search results every 10 minutes." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Refresh search results every 120 minutes." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Refresh search results every 2 minutes." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Refresh search results every 20 minutes." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Refresh search results every 5 minutes." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Refresh search results every 60 minutes." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Refresh this page every %1 minutes." #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Reminder '%1' added" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Reminder '%1' completed" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Reminder '%1' reopened" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Reminder ticket #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Reminders" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Reminders for ticket #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Remove AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Remove Bookmark" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Remove Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Remove Requestor" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Reply" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Reply Address" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Reply to requestors" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Reply to tickets" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "ReplyToTicket" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Reports" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Requestor" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "RequestorGroup" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Requestors" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Requests should be due in" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Required parameter '%1' not specified" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Reset" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Reset secret authentication token" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Reset to default" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Residence" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Resolve" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Resolve ticket #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Resolved" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Resolved by owner" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Resolved in date range" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Resolved tickets in period, grouped by owner" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Resolved tickets, grouped by owner" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "ResolvedRelative" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Respond" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Results" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Return back to the ticket" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Retype Password" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Revert" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Right Delegated" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Right Granted" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Right Loaded" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Right could not be revoked" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Right not found" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Right not loaded." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Right revoked" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Rights could not be granted for %1" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Roles" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Rows" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Rows per box" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rows per page" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sat" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Saturday" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Save" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Save Changes" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Save Preferences" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Save as New" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Saved %1 %2" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Saved Search %1 not found" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Saved charts" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Saved searches" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip Created" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Scrip Fields" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip deleted" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Scrips and Recipients" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scrips which apply to all queues" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Search" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Search Preferences" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Search for approvals" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Search for tickets" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Search options" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Search results grouped by %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Search results refresh interval" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Secret authentication token" #: bin/rt-crontool:350 msgid "Security:" msgstr "Security:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "See also:" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "See custom field values" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "See custom fields" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "See exact outgoing email messages and their recipeients" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipients" msgstr "See exact outgoing email messages and their recipients" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "See ticket private commentary" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "See ticket summaries" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "SeeCustomField" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "SeeDashboard" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "SeeGroup" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "SeeGroupDashboard" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "SeeOwnDashboard" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "SeeQueue" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Select" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Select Database Type" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Select a Custom Field" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Select a group" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Select a queue" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Select a queue for your new ticket" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Select a user" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Select another language" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Select custom fields for all queues" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Select custom fields for all user groups" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Select custom fields for all users" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Select custom fields for tickets in all queues" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Select custom fields for transactions on tickets in all queues" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Select group" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Select multiple values" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Select one value" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Select queues to be displayed on the \"RT at a glance\" page" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Select scrip" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Select template" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Select up to %1 values" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Selected Custom Fields" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Selected key either is not trusted or doesn't exist anymore." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Selected objects" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Selections modified. Please save your changes" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Send email successfully" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Send mail to owner and all watchers" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Send mail to owner and all watchers as a \"comment\"" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Send mail to requestors and Ccs" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Send mail to requestors and Ccs as a comment" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Sends a message to the requestors" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Sends mail to explicitly listed Ccs and Bccs" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Sends mail to the Ccs" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Sends mail to the Ccs as a comment" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Sends mail to the administrative Ccs" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Sends mail to the administrative Ccs as a comment" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Sends mail to the owner" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Sep" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Settings" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Show" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Show Columns" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Show Results" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Show Tickets Properties on %1 level" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Show approved requests" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Show as well" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Show basics" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Show denied requests" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Show details" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Show link descriptions" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Show oldest history first" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Show pending requests" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Show requests awaiting other approvals" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "ShowACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "ShowApprovalsTab" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "ShowConfigTab" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "ShowOutgoingEmail" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "ShowSavedSearches" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "ShowScrips" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "ShowTemplate" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "ShowTicket" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "ShowTicketComments" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Shredder" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Sidebar" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Sign" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Sign by default" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Sign up as a ticket Requestor or ticket or queue Cc" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Sign up as a ticket or queue AdminCc" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Signature" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Signing disabled" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Signing enabled" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Simple Search" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Single" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Site name" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Size" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Skip Menu" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Skipping disabled user" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Small" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Some browsers may only load content from the same domain as your RT server." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sort" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sorting" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Source" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Specify whether this is a daily or weekly run." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Spreadsheet" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Stage" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Started" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "StartedRelative" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Starts" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "StartsRelative" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "State" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Status" #: etc/initialdata:307 msgid "Status Change" msgstr "Status Change" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Status changed from %1 to %2" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Steal" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Steal tickets" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "StealTicket" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Step %1 of %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Stolen from %1" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Style" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Subject" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Subject Tag" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Subject changed to %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "SubjectTag" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "SubjectTag changed to %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Submit" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Subscribe" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Subscribe to dashboard %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Subscribe to dashboards" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "SubscribeDashboard" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Subscribed to dashboard %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Subscription" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Subscription could not be created: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Successfuly decrypted data" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Successfuly encrypted data" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Sun" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Sunday" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "SuperUser" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Suspended" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "System Configuration" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "System Dashboards" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "System Default" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "System Error" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "System Error: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "System Tools" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "System error. Right not delegated." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "System error. Right not granted." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "System groups" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "System rights" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup for internal use" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Take" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Take tickets" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "TakeTicket" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Taken" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Tell us a little about how to find the database RT will be using" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Template" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Template #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Template #%1 deleted" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Template '%1' not found" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Template is empty" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Template is mandatory argument" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Template parsed" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Template parsing error" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Templates" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Text file is not shown because it is disabled in preferences." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "That is already the current value" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "That is not a value for this custom field" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "That is the same value" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "That principal already has that right" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "That principal is already a %1 for this queue" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "That principal is already a %1 for this ticket" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "That principal is not a %1 for this queue" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "That principal is not a %1 for this ticket" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "That queue does not exist" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "That ticket has unresolved dependencies" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "That user already owns that ticket" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "That user does not exist" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "That user is already privileged" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "That user is already unprivileged" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "That user is now privileged" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "That user is now unprivileged" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "That user may not own tickets in that queue" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "That's not a numerical id" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "The Basics" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "The CC of a ticket" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "The DBA's database password" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "The administrative CC of a ticket" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "The domain name of your database server (like 'db.example.com')." #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "The following queries may not be visible to all users who can see this dashboard." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "The key has been disabled" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "The key has been revoked" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "The key has expired" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "The key is fully trusted" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "The key is ultimately trusted" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "The new value has been set." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "The owner of a ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "The page you requested could not be found" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "The requestor of a ticket" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "The settings you've chosen are stored in %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Theme" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "There are several keys suitable for encryption." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "There are unread messages on this ticket." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "There is marginal trust in this key" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "There is no key suitable for encryption." #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "There is one suitable key, but trust level is not set." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "These comments aren't generally visible to the user" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "This custom field does not apply to that object" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "This feature is only available to system administrators" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "This message will be sent to..." #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "This tool allows the user to run arbitrary perl modules from within RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "This transaction appears to have no content" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "This user's %1 highest priority tickets" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Thu" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Thursday" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Ticket" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Ticket #%1 Jumbo update: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Ticket #%1 relationships graph" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Ticket #%1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Ticket #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Ticket %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Ticket %1 created in queue '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Ticket %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Ticket Custom Fields" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Ticket History # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Ticket Resolved" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Ticket Search" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Ticket Transactions" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Ticket content" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Ticket content type" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Ticket could not be created due to an internal error" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Ticket could not be loaded" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Ticket display" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Ticket metadata" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Ticket status changed" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "TicketSQL search module" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Tickets" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Tickets %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Tickets %1 by %2" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Tickets created after" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Tickets created before" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Tickets resolved after" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Tickets resolved before" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tickets which depend on this approval:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Time Estimated" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Time Left" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Time Worked" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Time to display" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "TimeEstimated" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "TimeLeft" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "TimeWorked" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Timezone" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Title" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "To" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "To inquire about support, training, custom development or licensing, please contact %1." #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Told" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "ToldRelative" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Tools" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Total" #: etc/initialdata:249 msgid "Transaction" msgstr "Transaction" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transaction %1 purged" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transaction Created" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Transaction Custom Fields" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create couldn't, as you didn't specify an object type and id" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "TransactionDate" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transactions are immutable" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Trust" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Tue" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Tuesday" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Type" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Type changed from '%1' to '%2'" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Unable to determine object type or id" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Unable to subscribe to dashboard %1: Permission denied" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Unimplemented" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix login" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Unknown (no trust value assigned)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Unknown (this value is new to the system)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Unknown ContentEncoding %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Unknown field: %1" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Unlimit" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Unlimited" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Unnamed search" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Unprivileged" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Unselected Custom Fields" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Unselected objects" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Unset private key" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Untaken" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Update" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Update Graph" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Update Ticket" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Update Type" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Update format and Search" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Update multiple tickets" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Update not recorded." #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Update ticket" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Update ticket #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Update ticket #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Update type was neither correspondence nor comment." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "UpdateStatus" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Updated" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Updated saved search \"%1\"" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Upload" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Upload multiple files" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Upload multiple images" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Upload one file" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Upload one image" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Upload up to %1 files" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Upload up to %1 images" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Upload your changes" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Usage: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Use SSL?" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Use default (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Use other RT administrative tools" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Use system default (%1)" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Use this to protect the format of plain text" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "User" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "User '%1' could not be found." #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "User (created - expire)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "User Defined" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "User Defined conditions and actions" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "User Rights" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "User asked for an unknown update type for custom field %1 for %2 object #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "User could not be created: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "User created" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "User defined groups" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "User disabled" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "User enabled" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "User has empty email address" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "User loaded" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "User's GnuPG keys" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "User-defined groups" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Username" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Username format" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Users" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Users matching search criteria" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Using transaction #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Valid Query" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validation" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Value" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Values" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Variable" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Various RT reports" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Version" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "View dashboards for this group" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "View personal dashboards" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "View system dashboards" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "WYSIWYG composer height" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG message composer" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Warning! This is NOT signed!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Warning: you have no email address set, so you will not receive this dashboard until you have it set" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Watch" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "WatchAsAdminCc" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Watcher" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "WatcherGroup" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Watchers" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "We are able to find your database and connect as the DBA. You can click on 'Customise Basics' to continue customising RT." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialise RT's database." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Web port" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Wed" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Wednesday" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Weekly digest" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Welcome to RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "What I did today" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "What is RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "When RT can't handle an email message, where should it be forwarded?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." #: etc/initialdata:105 msgid "When a ticket is created" msgstr "When a ticket is created" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" #: etc/initialdata:110 msgid "When anything happens" msgstr "When anything happens" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Whenever a ticket is closed" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Whenever a ticket is rejected" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Whenever a ticket is reopened" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Whenever a ticket is resolved" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Whenever a ticket's owner changes" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Whenever a ticket's priority changes" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Whenever a ticket's queue changes" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Whenever a ticket's status changes" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Whenever a user-defined condition occurs" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Whenever comments come in" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Whenever correspondence comes in" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Where to find your sendmail binary." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Wipeout" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Work" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "WorkPhone" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Worked" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Yes" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "You already own this ticket" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "You are not an authorised user" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "You can also edit the predefined search itself" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "You can only reassign tickets that you own or that are unowned" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "You can only take tickets that are unowned" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "You don't have SuperUser right." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "You found %1 tickets in queue %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "You have been logged out of RT." #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "You have no permission to create tickets in that queue." #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "You may not create requests in that queue." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "You must enter an Administrative password" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "You should choose the database you or your local database administrator is most comfortable with." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "You're welcome to login again" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Your current password" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Your password is not set." #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Your username or password is incorrect" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Zip" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Down]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Up]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[none]" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "add 
 tag around plain text attachments"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "after"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "allow creation of saved searches"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "allow loading of saved searches"

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "as granted to %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "bar"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "before"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "bottom to top"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "click to check/uncheck all objects at once"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "closed"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "concise"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "core config"

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "custom field '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "daily"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "daily at %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "days"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "deleted"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "display wrapped and formatted plain text attachments"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "doesn't match"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "download"

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "equal to"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "error: can't move down"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "error: can't move left"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "error: can't move up"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "error: nothing to delete"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "error: nothing to move"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "error: nothing to toggle"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "every"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "executed plugin successfuly"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "full"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "greater than"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "group '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "hours"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "is"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "isn't"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "key disabled"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "key expired"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "key revoked"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "left to right"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "less than"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginal"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "matches"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maximum depth"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minutes"

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "monthly"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "monthly (day %1) at %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "months"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "never"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "new"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "no"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "no name"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "none"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "not equal to"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nothing"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "objects were successfuly removed"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "on"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "on day"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "one"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "open"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "open/close"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "other..."

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "personal group '%1' for user '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "pie"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "plugin returned empty list"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "queue %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "rejected"

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "resolved"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "right to left"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sec"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "see object list below"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "show Approvals tab"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "show Configuration tab"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "site config"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "stalled"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "summary rows"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "system %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "system group '%1'"

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "the calling component did not specify why"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "the default addresses that will be listed in From: and Reply-To: headers of comment mail."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "ticket #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "top to bottom"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "ultimate"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "undescribed group %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "unlimited"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "user %1"

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "verbose"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "weekly"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "weekly (on %1) at %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "weeks"

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "which port your web server will listen to, e.g. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "with headers"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "years"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "yes"

rt-4.0.19/share/po/pt_BR.po0000664000175000017500000126664512262650742014364 0ustar  chmrrchmrr# translation of pt_br.po to Portugues Brasileiro
# Header entry was created by KBabel!
#
# Fernando Frota Machado de Morais , 2008.
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:03+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: Portugues Brasileiro \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"
"X-Poedit-Country: BRAZIL\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " %1 removido."

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 renomeado para %2."

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 salvo."

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (sem chave pública!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (não confiável!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 adicionado"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 atrás"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 alterado para %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 removido"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 removido."

#: NOT FOUND IN SOURCE
msgid "%1 %2 of group %3"
msgstr "%1 %2 do grupo %3"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 renomeado para %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 salvo."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 atualizados."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 com modelo %3"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 este tíquete\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) por %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Sem alteração)"

#: NOT FOUND IN SOURCE
msgid "%1 (day %2) at %3"
msgstr "%1 (dia %2) em %3"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (do painel %2)"

#: NOT FOUND IN SOURCE
msgid "%1 (on %2) at %3"
msgstr "%1 (no %2) em %3"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "%1 - %2 apresentados"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ajustar opção de configuração LogParaTela"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Um argumento para passar para %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Exibe atualizações de estado no STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Especifique o id do modelo que você quer usar"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify if you want to use either 'first' or 'last' transaction"
msgstr "%1 - Especifique se você quer usar a 'primeira' ou a 'última' transação"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Especifique se você quer usar a 'primeira' , a 'última' ou 'todas' as transações"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Especifique o nome ou o id do(s) modelo(s) que você quer usar"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Especifique o módulo de ação que você quer usar"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Especifique a lista, separada por vírgulas, dos tipos de transação que você pretende usar"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Especifique o módulo de condição que você quer usar"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Especifique o módulo de busca que você quer usar"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify the type of a transaction you want to use"
msgstr "%1 - Especifique o tipo de transação você quer usar"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Painéis"

#: NOT FOUND IN SOURCE
msgid "%1 Dashboards"
msgstr "%1 Painéis de Indicadores"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Direitos Reservados 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "ScripAction %1 carregado"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 adicionado como um valor de %2"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on"
msgstr "Aliases %1 requerem um TicketId no qual trabalhar"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on "
msgstr "Aliases %1 requerem um TicketId no qual trabalhar "

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on (from %2) %3"
msgstr "Aliases %1 requerem um TicketId no qual trabalhar (de %2) %3"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 já existe e contém as tabelas do RT, mas não contém os metadados. O passo posterior  'Iniciar Banco de Dados' pode inserir os metadados no banco de dados existente. Se isto for aceitável, pressione `Personalizar Básicos` abaixo para continuar a personalizar RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 já existe mas não contém as tabelas do RT nem os metadados. O passo posterior  'Iniciar Banco de Dados' pode criar as tabelas e inserir os metadados no banco de dados existente. Se isto for aceitável, pressione `Personalizar Básicos` abaixo para continuar a personalizar RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 parece ser um objeto local, mas não pode ser encontrado no banco de dados"

#: NOT FOUND IN SOURCE
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customez RT by clicking 'Customize Basics' below"
msgstr "%1 parece estar completamente iniciado. Nós não precisamos criar nenhuma tela ou inserir metadados, mas você pode continuar a personalizar RT pressionando 'Personalizar Básicos' abaixo."

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 parece estar completamente iniciado. Não precisamos criar tabelas ou inserir metadados, mas você pode continuar a personalizar RT presisionando 'Personalizar Básicos' abaixo"

#: NOT FOUND IN SOURCE
msgid "%1 at %2"
msgstr "%1 em %2"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 por %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 alterado de %2 para %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 alterado de '%2' para '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "Gráfico de %1 por %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 copiado"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 configuração do núcleo"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 não pôde ser alterado para %2"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't init a transaction (%2)\\n"
msgstr "%1 não pôde iniciar uma transação (%2)\\n"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 não pôde definir o estado como resolvido.  O banco de dados do RT pode estar inconsistente."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 criado"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 removido"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 desabilitado"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 não existe."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 habilitado"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 tíquetes de mais alta prioridade que eu possuo"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "%1 tíquetes de mais alta prioridade que eu possuo..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "%1 tíquetes de mais alta prioridade que eu requeri..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 é uma ferramenta que age sobre os tíquetes a partir de uma ferramenta  externa de agendamento, como cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 é um utilitário, significando que pode ser executado a partir do cron, que envia todas as notificações adiadas como uma resenha por usuário."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 é um endereço para o RT receber e-mails. Adicionando ele como um '%2' vai criar um loop de e-mails"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 não é mais um %2 desta fila."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 não é mais um %2 deste tíquete."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 não é mais um valor para o campo personalizado %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1 não é um ciclo de vida valido"

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 não é um identificador de fila válido."

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 artigos atualizados mais recentes"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 mais novos artigos"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 tíquetes mais recentes sem proprietário"

#: NOT FOUND IN SOURCE
msgid "%1 not shown"
msgstr "%1 não apresentado"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objetos"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 direitos"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 configuração do site"

#: NOT FOUND IN SOURCE
msgid "%1 succeeded\\n"
msgstr "%1 teve sucesso\\n"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 atualizado: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "Atualização %1: Nada alterado"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 atualizado"

#: NOT FOUND IN SOURCE
msgid "%1 was created without a CurrentUser\\n"
msgstr "%1 foi criado sem um UsuárioAtual\\n"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 resolverá todos os membros de um grupo de tíquetes resolvidos."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1's %2 objetos"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 objetos"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1 chaves GnuPG"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1 senha atual"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Painéis de indicadores de %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Primeiras %1 buscas salvas"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: nenhum anexo especificado"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Novo tíquete em%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%quant(%1,artigo)"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hora)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' é um valor inválido para estado"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' não é um identificador de classe valido"

#: NOT FOUND IN SOURCE
msgid "'%1' not a recognized action. "
msgstr "'%1' não é uma ação reconhecida. "

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "'Papéis'"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'Sistema'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'Grupos de Usuários'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'Usuários'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Marque a caixa para completar)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete group member)"
msgstr "(Marque caixa para remover o membro do grupo)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(Marque caixa para remover o scrip)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Marque a caixa para remover)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Marque as caixas para remover)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Marque caixas para desativar notificações para os destinatários listados)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Marque caixas para ativar notificações para os destinatários listados)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Informe os ids dos tíquetes ou URLs, separadas por espaço)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Se deixado em branco, será padrão para %1)"

#: NOT FOUND IN SOURCE
msgid "(No Value)"
msgstr "(Sem Valor)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Sem campo personalizado)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Sem membros)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Sem scrips)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Sem models)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Nenhum)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Envia uma cópia oculta desta atualização para uma lista de endereços de e-mails separados por ví­rgula.Não altera quem vai receber atualizações futuras.)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Envia uma cópia desta atualização para uma lista de endereços de e-mails administrativos separados por ví­rgula. Estas pessoas vão receber atualizações futuras.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Envia uma cópia desta atualização para uma lista de endereços de e-mails separados por ví­rgula.Não altera quem vai receber atualizações futuras.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Envia uma cópia desta atualização para uma lista de endereços de e-mails separados por ví­rgula. Estas pessoas vão receber atualizações futuras.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Use estes campos quando você escolhar 'Definido pelo Usuário' para uma condição ou ação)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Não enviará e-mail)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(qualquer)"

#: NOT FOUND IN SOURCE
msgid "(displaying new and open tickets for %1)"
msgstr "(exibindo tíquetes novos e abertos pra %1)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(vazio)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(não tem Resumo)"

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(sem nome listado)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(sem nome)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(sem chave pública!)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(Sem assunto)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(sem valor)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(sem valores)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(somente um tíquete)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(pendente %quant(%1,outro tíquete))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(aprovação pendente)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(outra Coleta pendente)"

#: NOT FOUND IN SOURCE
msgid "(pending other tickets)"
msgstr "(aguardando outros tíquetes)"

#: NOT FOUND IN SOURCE
msgid "(requestor's group)"
msgstr "(grupo do requisitante)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(requerido)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(confiança: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(sem título)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(não confiável!)"

#: NOT FOUND IN SOURCE
msgid "(yyyy/mm/dd)"
msgstr "(aaaa/mm/dd)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id é um argumento obsoleto e não pode ser usado com --template"

#: NOT FOUND IN SOURCE
msgid "--transaction argument could be only 'first' or 'last'"
msgstr "argumento --transaction só pode ser 'first' (primeiro) ou 'last' (último)"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "argumento --transaction só pode ser 'first' (primeiro), 'last' (último) or 'all' (todos)"

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I own..."
msgstr "25 tíquetes mais prioritários que possuo..."

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I requested..."
msgstr "25 tíquetes mais prioritários que requisitei..."

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr "<% $field->{'name'} %>"

#: NOT FOUND IN SOURCE
msgid "<%$Action%> here"
msgstr "<%$Action%> aqui"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Todos feeds iCal tem embutido uma chave secreta que autoriza você. Se a URL de um dos seus feeds iCal, for exposta externamente, você recebe uma nova chave, quebrando todos feeds iCal existentes abaixo below.

" #: NOT FOUND IN SOURCE msgid "%1 - %2s" msgstr "%1 - %2s" #: etc/initialdata:215 msgid "A blank template" msgstr "Um modelo vazio" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Não foi definida uma senha, o usuário não estará apto a usar o sistema." #: NOT FOUND IN SOURCE msgid "ACE Deleted" msgstr "ACE Removida" #: NOT FOUND IN SOURCE msgid "ACE Loaded" msgstr "ACE Carregada" #: NOT FOUND IN SOURCE msgid "ACE could not be deleted" msgstr "ACE não pode ser removida" #: NOT FOUND IN SOURCE msgid "ACE could not be found" msgstr "ACE não pode ser encontrada" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE não encontrada" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEs só podem ser criadas e removidas." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "E" #: NOT FOUND IN SOURCE msgid "Aborting to avoid unintended ticket modifications.\\n" msgstr "Abortando para evitar modificações indesejadas no tíquete.\\n" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Sobre mim" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Controle de acesso" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Ação" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Ação %1 não encontrada" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Ação '%1' não encontrada" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Ação executada." #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Ação executada.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Ação é um argumento obrigatório." #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Ação preparada..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Ações" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "Tíquetes Ativos" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "Tickets ativos para %1" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Adicionar" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "Adicionar %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Adicionar AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Adicionar Favorito" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Adicionar Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Adicionar Colunas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Adicionar Critério" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Adicionar Mais Arquivos" #: NOT FOUND IN SOURCE msgid "Add Next State" msgstr "Adicionar Próximo Estado" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Adicionar Requisitante" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Adicionar Valor" #: NOT FOUND IN SOURCE msgid "Add a Scrip to this queue" msgstr "Adicionar um Scrip a esta fila" #: NOT FOUND IN SOURCE msgid "Add a Scrip which will apply to all queues" msgstr "Adicionar um Scrip que será aplicado a todas as filas" #: NOT FOUND IN SOURCE msgid "Add a keyword selection to this queue" msgstr "Adicionar uma seleção de palavra-chave a esta fila" #: NOT FOUND IN SOURCE msgid "Add a new a global scrip" msgstr "Adicionar um novo scrip global" #: NOT FOUND IN SOURCE msgid "Add a scrip to this queue" msgstr "Adicionar um scrip a esta fila" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Adicionar um scrip que se aplicará a todas as filas" #: NOT FOUND IN SOURCE msgid "Add and Search" msgstr "Adicionar e Buscar" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Adicionar comentários ou respostas aos tíquetes selecionados" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Adicionar grupo" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Adicionar membros" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Adicionar novos observadores" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "Adicionar direitos para isto %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Adicionar estes termos" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Adicionar estes termos e Buscar" #: NOT FOUND IN SOURCE msgid "Add these terms to your search" msgstr "Adicionar estes termos à sua busca" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Adicionar usuário" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Adicionar valores" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Adicionar, remover e modificar valores de campos personalizados para objetos" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "Adicionar, modificar e remover valores de campos personalizados para objetos" #: NOT FOUND IN SOURCE msgid "AddNextState" msgstr "AdicionarPróximoEstado" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "Adicionado %1 para membros do %2 para esta fila." #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Usuário/Grupo adicionado como um %1 desta fila" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Usuário/Grupo adicionado como um %1 deste tíquete" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Endereço" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Endereço 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Endereço1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Endereço2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Comentário do Administrador" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Correspondência do Administrador" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administração de filas" #: NOT FOUND IN SOURCE msgid "Admin users" msgstr "Administração de usuários" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administração da configuração global" #: NOT FOUND IN SOURCE msgid "Admin/Groups" msgstr "Administração de Grupos" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "Administração de fila/Básicos" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdministrarTodosGruposPessoais" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGrupo" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "AdminClasse" #: NOT FOUND IN SOURCE msgid "AdminComment" msgstr "ComentarioAdministrador" #: NOT FOUND IN SOURCE msgid "AdminCorrespondence" msgstr "CorrespondenciaAdministrador" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdministrarCampoPersonalizado" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "AdministrarValoresCamposPersonalizados" #: NOT FOUND IN SOURCE msgid "AdminCustomFields" msgstr "AdministrarCamposPersonalizados" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdministrarGrupo" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdministrarAfiliacaoGrupo" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdministrarGruposPessoaisPróprios" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdministrarFila" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "AdministrarTópicos" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdministrarUsuários" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Cc Administrativo" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Senha administrativa" #: NOT FOUND IN SOURCE msgid "Admins" msgstr "Administradores" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avançado" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "Busca avançada" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Pesquisa avançada" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "Idade" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Agregador" #: NOT FOUND IN SOURCE msgid "Alias for" msgstr "Aliás para" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Todas as Aprovações Concedidas" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Todos os artigos nesta classe podem ser listados em um dropdown da página de resposta do tíquete" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "Todas as Classes" #: NOT FOUND IN SOURCE msgid "All Custom Fields" msgstr "Todos os Campos Personalizados" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "Todos os Dashboards" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Todas as filas" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "Todos os Tíquetes" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Todos feeds iCal tem embutido uma chave secreta que autoriza você. Se a URL de um dos seus feeds iCal, for exposta externamente, você recebe uma nova chave, quebrando todos feeds iCal existentes abaixo below." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Todas as filas combinando com o critério de pesquisa" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Todos os tíquetes" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Todos os tópicos" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "Permitir a criação de pesquisas salvas" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "Permitir o carregamento de pesquisas salvas" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Permitir escrever código Perl nos modelos, scrips, etc" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Já encriptado" #: NOT FOUND IN SOURCE msgid "Always sends a message to the requestors independent of message sender" msgstr "Sempre envia uma mensagem para os requisitantes independentemente do remetente" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "E/Ou" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Qualquer campo" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Aplicado" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Aplica-se a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Aplica-se a todos os objetos" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplicar" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Aplicar globalmente" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Aplicar suas alterações" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Aprovação" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Aprovação #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Aprovação #%1: Anotações não registradas devido a um erro de sistema" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Aprovação #%1: Anotações registradas" #: NOT FOUND IN SOURCE msgid "Approval Details" msgstr "Detalhes da Aprovação" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Aprovação Concedida" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Aprovação pronta pelo Dono" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Aprovação Rejeitada" #: NOT FOUND IN SOURCE msgid "Approval diagram" msgstr "Diagrama da aprovação" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Aprovar" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Anotações do aprovador: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Abr" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Abr." #: NOT FOUND IN SOURCE msgid "April" msgstr "Abril" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "Você tem certeza que quer remover este artigo?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "Artigo #%1 removido" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "Artigo #%1: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "Artigo %1" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "Artigo %1 criado" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administração de Artigo" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "Artigo Removido" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artigo não encontrado" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "Artigos" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "Artigos em %1" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "Artigos combinando %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artigos sem tópicos" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Asc" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Ascendente" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Definir e remover campos personalizados" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "Atribuir e remover campos personalizados da fila" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "DefinirCamposPersonalizados" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Anexar" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Anexar arquivo" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Arquivo anexado" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Anexo" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Anexo '%1' não pode ser carregado" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Anexo criado" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Nome do arquivo anexo" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Anexos" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Encriptação de anexos está desativada" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Atributo Removido" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Ago." #: NOT FOUND IN SOURCE msgid "August" msgstr "Agosto" #: NOT FOUND IN SOURCE msgid "AuthSystem" msgstr "SistemaDeAutenticação" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Tema de cores sugeridos automaticamente não estão disponíveis para sua imagem. Isso pode ser porque você carregou um tipo de imagem que a versão instalada do GD não suporta. Os tipos suportados são: %1. Você pode recompilar a libgd e GD.pm para incluir suporte para outros tipos de imagem" #: etc/initialdata:218 msgid "Autoreply" msgstr "RespostaAutomatica" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Responder Automaticamente para Requisitantes" #: NOT FOUND IN SOURCE msgid "AutoreplyToRequestors" msgstr "RespostaAutomaticaParaRequisitantes" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Disponível" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Cópia Oculta" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Voltar" #: NOT FOUND IN SOURCE msgid "Back: " msgstr "Voltar " #: NOT FOUND IN SOURCE msgid "Bad PGP Signature: %1\\n" msgstr "Assinatura PGP inválida: %1\\n" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "Identificador de anexo inválido. Não foi possível encontrar o anexo '%1'\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "Dados inválidos em %1" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Privacidade inválida para atributo %1" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "Número inválido de transação para o anexo. %1 deveria ser %2\\n" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Básicos" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Cópia oculta" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Não se esqueça de salvar suas alterações" #: NOT FOUND IN SOURCE msgid "Begin Approval" msgstr "Incício da Aprovação" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC corporate logo" #: etc/initialdata:214 msgid "Blank" msgstr "Vazio" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Conteúdo" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Negrito" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Favorito" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "URL para guardar esta busca em Favoritos" #: NOT FOUND IN SOURCE msgid "Bookmarkable link" msgstr "Atalho para Favoritos" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "link para favorito para esta pesquisa" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Tíquetes em Favoritos" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Tíquetes favoritos" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Cabeçalhos resumidos" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Navegar por tópicos" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "Ver as queries SQL feitas em precesso" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Atualização em Massa" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Atualização de tíquetes em lote" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Compre Suporte" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Por padrão, RT vai usar o fuso horáro de seu sistema. Isto permite a você definir um padrão global para exibição de datas e horários no RT. Seus usuários podem escolher um fuso horário diferente em suas preferências." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CCGroup" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: NOT FOUND IN SOURCE msgid "Calendar" msgstr "Calendário" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Não é possível carregar a pesquisa salva \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Não é possível modificar usuários do sistema" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Este Usuário/Grupo pode ver esta fila" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Não é possível adicionar um valor de campo personalizado sem um nome" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Não é possível uma classe de coleta para '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Não é possível encontrar uma busca salva para ser trabalhada" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Não é possível vincular um tíquete a ele mesmo" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "Não é possível unir a um tíquete já unido. Você nunca deve obter este erro" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Não é possível salvar %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Não é possível salvar esta busca" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Não é possível especificar origem e destino simultaneamente" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "Não é possível adicionar link para o número plano" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Não é possível criar tíquetes numa fila desativada." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Não é possível criar o usuário: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Categorias são baseadas em" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoria" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Categoria não definida" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cópia para" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccs" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Alterar" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Mudança no tíquete de Aprovação para estado aberto" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Alterar a senha" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "Gráfico" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "Propriedades do Gráfico" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Marque Tudo" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Verificar Conectividade do Banco de Dados" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verifique as Credencias do Banco de Dados" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Marque caixa para remover" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Marque caixa para revogar o direito de acesso" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Verificar as credenciais de seu banco de dados" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Filhos" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Selecione o mecanismo SQL" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Selecione um motor de banco de dados" #: NOT FOUND IN SOURCE msgid "Choose a date" msgstr "Escolha uma data" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "Escolha de tópicos para %1" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Cidade" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "Classe" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nome da Classe" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "Id da Classe" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "Classe já aplicada globalmente" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "Classe já aplicada para %1" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "Classes" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Limpar" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Limpar Tudo" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Pressione \"Terminar Instalação\" abaixo para completar este assistente." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Pressione \"Iniciar Banco de Dados\" para criar o banco de dados do RT e inserir os metadados iniciais. Isto pode demorar um pouco" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Fechar janela" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Fechado" #: NOT FOUND IN SOURCE msgid "Closed requests" msgstr "Requisições fechadas" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tíquetes fechados" #: NOT FOUND IN SOURCE msgid "Code" msgstr "Código" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "CaixaCombinada: Selecionar ou informar múltiplos valores" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "CaixaCombinada: Selecionar ou informar um valor" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "CaixaCombinada: Selecionar ou informar até %1 valores" #: NOT FOUND IN SOURCE msgid "Command not understood!\\n" msgstr "Comando não entendido!\\n" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Comentário" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Endereço de comentário" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Endereço de comentário" #: NOT FOUND IN SOURCE msgid "Comment not recorded" msgstr "Comentário não registrado" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Comentário nos tíquetes" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "EndereçodeComentario" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "ComentarioNoTiquete" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comentários" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Comentários (Não enviados aos requisitantes)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Comentários (não enviados aos requisitantes)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "Comentários sobre %1" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Comentários sobre este usuário" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Comentários adicionados" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Execução Abortada" #: NOT FOUND IN SOURCE msgid "Compile Restrictions" msgstr "Compilar restrições" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Condição" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Condição '%1' não encontrada" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Condição é um argumento obrigatório" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Condição satisfeita..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Condição não encontrada" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Condição, Ação e Modelo" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Arquivo de configuração %1 está bloqueado" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Configuração" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "Configuração para a fila %1" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Confirmar" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Conexão efetuada com sucesso" #: NOT FOUND IN SOURCE msgid "ContactInfoSystem" msgstr "Informação de contato" #: NOT FOUND IN SOURCE msgid "Contacted date '%1' could not be parsed" msgstr "Data de contato '%1' não pôde ser entendida" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Conteúdo" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "Conteúdo é um endereço IP inválido" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "Conteúdo é um intervalo de endereço IP inválido" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipo-de-Conteúdo" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "ContentType" #: NOT FOUND IN SOURCE msgid "Coould not create group" msgstr "Não foi possível criar o grupo" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "Copiar" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Endereço de correspondência" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "EndereçodeCorrespondência" #: etc/initialdata:283 msgid "Correspondence" msgstr "Correspondência" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "Endereço de correspondência" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Correspondência adicionada" #: NOT FOUND IN SOURCE msgid "Correspondence not recorded" msgstr "Correspondência não registrada" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "Não foi possível adicionar novo valor de campo personalizado para o tíquete. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. %1 " msgstr "Não foi possível adicionar novo valor de campo personalizado para o tíquete. %1 " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "Não foi possível adicionar novo valor do campo personalizado. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "Não foi possível adicionar novo valor do campo personalizado. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Não foi possível adicionar novo valor do campo personalizado: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Não foi possível alterar o proprietário. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Impossível alterar proprietário: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Não foi possível criar CampoPersonalizado" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Não foi possível criar CampoPersonalizado: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Não foi possível criar o grupo" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "Não foi possível criar a pesquisa: %1" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Não foi possível criar o modelo: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Não é possível criar tíquetes em fila desativada \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Não foi possível criar o tíquete. Fila não definida" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Não foi possível criar o usuário" #: NOT FOUND IN SOURCE msgid "Could not create watcher for requestor" msgstr "Não foi possível criar um observador para o requisitante" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "Não foi possível remover a pesquisa %1: %2" #: NOT FOUND IN SOURCE msgid "Could not find a ticket with id %1" msgstr "Não foi possível encontrar um tíquete com identificador %1" #: NOT FOUND IN SOURCE msgid "Could not find group %1." msgstr "Não foi possível encontrar o grupo %1." #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Não foi possível encontrar ou criar este usuário" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Não foi possível encontrar este usuário/grupo" #: NOT FOUND IN SOURCE msgid "Could not find user %1." msgstr "Não foi possível encontrar o usuário %1." #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Não foi possível carregar atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Não possível carregar a Classe %1" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Não foi possível caarregar CampoPersonalizado %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Não foi possível carregar o grupo" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Não foi possível carregar objeto para %1" #: NOT FOUND IN SOURCE msgid "Could not load search attribute" msgstr "Não foi possível carregar atributo de busca" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Não foi possível fazer deste usuário/grupo um %1 desta fila" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Não foi possível fazer deste usuário/grupo um %1 deste tíquete" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Não foi possível remover este usuário/grupo como um %1 desta fila" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Não foi possível remover este usuário/grupo como um %1 deste tíquete" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Não foi possível definir informações sobre usuário" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Não foi possível adicionar anexo" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Não foi possível adicionar o membro ao grupo" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Não foi possível aplicar o campo personalizado a um objeto, já que ele já é global" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Não foi possível compilar %1 bloco de código '%2': %3" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "Não foi possível compilar o modelo de bloco de código '%1': %2" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Não foi possível criar uma transação: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Não foi possível criar o registro" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "Não foi possível criar o registro: %1" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Não foi possível remover painel de indicadores %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't figure out what to do from gpg's reply\\n" msgstr "Não sei o que fazer com a resposta do gpg\\n" #: NOT FOUND IN SOURCE msgid "Couldn't find group\\n" msgstr "Não foi possível encontrar grupo\\n" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Não foi possível encontrar o registro" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Não foi possível encontrar uma transação aceitável, pulando" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Não foi possível encontrar este usuário/grupo" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Não foi possível encontrar este valor" #: NOT FOUND IN SOURCE msgid "Couldn't find that watcher" msgstr "Não foi possível encontrar este observador" #: NOT FOUND IN SOURCE msgid "Couldn't find user\\n" msgstr "Não foi possível encontrar o usuário\\n" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Não foi possível carregar %1 do banco de dados de usuários.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Não foi possível carregar Classe %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Não foi possível carregar Campo Personalizado #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Não foi possível carregar o Campo Personalizado #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Não foi possível carregar CampoPersonalizado %1" #: NOT FOUND IN SOURCE msgid "Couldn't load KeywordSelects." msgstr "Não foi possível carregar as SelecoesdePalavrasChave." #: NOT FOUND IN SOURCE msgid "Couldn't load RT config file '%1' %2" msgstr "Não foi possível carregar o arquivo de configuração do RT '%1' %2" #: NOT FOUND IN SOURCE msgid "Couldn't load Scrips." msgstr "Não foi possível carregar os Scrips." #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Não foi possível carregar cópia do tíquete #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Não foi possível carregar painel de indicadores %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Não foi possível carregar painel de indicadores %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Não foi possível carregar grupo #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Não foi possível carregar grupo %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Não foi possível carregar vínculo" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Não foi possível carregar objeto %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Não foi possível carregar ou criar o usuário: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Não foi possível carregar a fila" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Não foi possível carregar a fila #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Não foi possível carregar a fila %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Não foi possível carregar a fila '%1'" #: NOT FOUND IN SOURCE msgid "Couldn't load scrip" msgstr "Não foi possível carregar o scrip" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Não foi possível carregar scrip #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load template" msgstr "Não foi possível carregar o modelo" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Não foi possível carregar modelo #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "Não foi possível carregar este usuário (%1)" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "Não foi possível carregar o principal especificado" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Não foi possível carregar tíquete '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "Não foi possível carregar o tópico filiação ao tentar removelo" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Não foi possível carregar transação #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Não foi possível carregar o usuário" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Não foi possível carregar usuário #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Não foi possível carregar o usuário #%1 ou o usuário '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Não foi possível carregar o usuário '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Não foi possível extrair endereço da sequência de caracteres '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Não foi possível substituir o conteúdo com dado decriptado: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Não foi possível substituir o conteúdo com dado encriptado: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "Não foi possível resolver '%1' em um link." #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Não foi possível resolver '%1' dentro de uma URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Não é possível determinar a origem '%1' em uma URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Não é possível determinar o destino '%1' em uma URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Não foi possível enviar email" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Não foi possível definir observador %1: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Não foi possível definir chave privada" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Náo foi possível excluir definição da chave privada" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "País" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Criar" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Criar Tíquetes" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "Criar a Classe" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Criar um CampoPersonalizado" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Criar um CampoPersonalizado para a fila %1" #: NOT FOUND IN SOURCE msgid "Create a CustomField that applies to all queues" msgstr "Criar um CampoPersonalizado que se aplica a todas as filas" #: NOT FOUND IN SOURCE msgid "Create a new Custom Field" msgstr "Criar um novo Campo Personalizado" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "Criar um novo artigo" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Criar um artigo novo em" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Criar um novo painel de indicadores" #: NOT FOUND IN SOURCE msgid "Create a new global Scrip" msgstr "Criar um novo Scrip global" #: NOT FOUND IN SOURCE msgid "Create a new global scrip" msgstr "Criar um novo scrip global" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Criar um novo grupo" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Criar um novo grupo pessoal" #: NOT FOUND IN SOURCE msgid "Create a new queue" msgstr "Criar uma nova fila" #: NOT FOUND IN SOURCE msgid "Create a new scrip" msgstr "Criar um novo scrip" #: NOT FOUND IN SOURCE msgid "Create a new template" msgstr "Criar um novo modelo" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "Criar um modelo novo para a fila %1" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Criar um novo tíquete" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Criar um novo usuário" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Criar uma fila" #: NOT FOUND IN SOURCE msgid "Create a queue called" msgstr "Criar uma fila chamada" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "Criar uma requisição" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Criar um scrip para a fila %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Criar um modelo" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Criar um tíquete" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Criar um artigo" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "Criar um artigo na classe..." #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "Criar artigos nesta classe" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Criar painéis de indicadores para este grupo" #: NOT FOUND IN SOURCE msgid "Create failed: %1 / %2 / %3 " msgstr "Criação falhou: %1 / %2 / %3 " #: NOT FOUND IN SOURCE msgid "Create failed: %1/%2/%3" msgstr "Criação falhou: %1/%2/%3" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "Criar dashboards de grupo" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Criar novos tíquetes baseados no modelo deste scrip" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Criar painel de indicadores pessoal" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Criar painéis de indicadores do sistema" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Criar tíquete" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "Criar tíquetes" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Criar tíquetes nesta fila" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Criar tíquetes offline" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Criar, remover e modificar campos personalizados" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Criar, remover e modificar filas" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Criar, remover e modificar os membros dos grupos pessoais de qualquer usuário" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Criar, remover e modificar os membros de grupos pessoais" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Criar, remover e modificar usuários" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "Criar, modificar e remover entradas na Lista de Controle de Acesso" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "Criar, modificar e remover campos personalizados" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "Criar, modificar e remover valores de campos personalizados" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "Criar, modificar e remover fila" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "Criar, modificar e remover pesquisas salvas" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "Criar, modificar e remover usuários" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "CriarArtigo" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "CriarPaineldeIndicadores" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "CriarPaineldeIndicadoresdeGrupo" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "CriarPaineldeIndicadoresProprio" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "CriarBuscaSalva" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "CriarTiquete" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Criado" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Criado Por" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "CampoPersonalizado %1 criado" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Criado por" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Criados em um intervalo de datas" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "Pesquisa criada %1" #: NOT FOUND IN SOURCE msgid "Created template %1" msgstr "Modelo %1 criado" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Tíquetes criados no período, agrupados por estado" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CriadoPor" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CreatedRelative" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Criador" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Criptografia" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Vínculos Atuais" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Scrips Atuais" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "Pesquisa atual" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Membros atuais" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Direitos de acesso atuais" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Busca atual" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "Critério de busca atual" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Observadores atuais" #: NOT FOUND IN SOURCE msgid "Custom Field #%1" msgstr "Campo Personalizado #%1" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Campos Personalizados" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Campos Personalizados para %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "Campos personalizados para a fila %1" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Código de finalização de ação personalizada" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Código de preparação de ação personalizada" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Condição personalizada" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Campo personalizado #%1 não é aplicado para esse objeto" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Campo personalizado %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Campo personalizado %1 não se aplica a este objeto" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Campo personalizado %1 tem um valor." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Campo personalizado %1 não tem valor." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Campo personalizado %1 não encontrado" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Campo personalizado '%1'" #: NOT FOUND IN SOURCE msgid "Custom field deleted" msgstr "Campo personalizado removido" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Campo personalizado já aplicado para este objeto" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Campo personalizado não encontrado" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Valor de campo personalizado %1 não pôde ser encontrado para campo personalizado %2" #: NOT FOUND IN SOURCE msgid "Custom field value changed from %1 to %2" msgstr "Valor do campo personalizado alterado de %1 para %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Valor do campo personalizado não pôde ser removido" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Valor de campo personalizado não pôde ser encontrado" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Valor do campo personalizado removido" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPersonalizado" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "CustomFieldValue" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Personalizar" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personalizar Básicos" #: NOT FOUND IN SOURCE msgid "Customize Database Details" msgstr "Personalizar Detalhes do Banco de Dados" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personalizar Endereços de Email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Personalizar Configuração de Email" #: NOT FOUND IN SOURCE msgid "Customize Global" msgstr "Personalizar Global" #: NOT FOUND IN SOURCE msgid "Customize Global Defaults" msgstr "Personalizar Padrões Globais" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "Personalize a aparência do seu RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Senha do DBA" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Nome de usuário do DBA" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Resenha diária" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Painel de Indicadores" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Painel de Indicadores não pôde ser criado: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Painel de indicadores não pôde ser atualizado: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Painel de indicadores atualizado" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Painéis de Indicadores" #: NOT FOUND IN SOURCE msgid "Data error" msgstr "Erro de dado" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Servidor do banco de dados" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nome do banco de dados" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Senha do banco de dados para RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Porta do banco de dados" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo do banco de dados" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Nome do usuário do banco de dados para RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Formato de Data" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Faltando módulo DateTime" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Faltando módulo DateTime::Locale" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datas" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dez" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Dez." #: NOT FOUND IN SOURCE msgid "December" msgstr "Dezembro" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Decriptar" #: NOT FOUND IN SOURCE msgid "Default Autoresponse Template" msgstr "Modelo Padrão de Resposta Automática" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Modelo Padrão de Resposta automática" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Fila Padrão" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Requisitante Padrão" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Modelo padrão de comentário administrativo" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Modelo padrão de correspondência administrativa" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Modelo padrão de correspondência" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Fila padrão" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Modelo padrão de transação" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Padrão: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Padrão: %1/%2 alterado de %3 para %4" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "PadrãodeVencimento" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "DefaultFormat" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delegar direitos de acesso" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delegar direitos específicos que foram outorgados a você." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegarDireitos" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegação" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Remover" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Remover Modelo" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "Remover artigo #%1" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "Remover artigos nesta classe" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Remover painéis de indicadores para este grupo" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Remoção falhou: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "Remover painéis de indicadores do grupo" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Operação de remoção está desabilitado pela configuração do ciclo de vida" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Remover painéis de indicadores pessoais" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Remover scrips selecionados" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Remover painéis de indicadores do sistema" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Remover tíquetes" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Remover valores" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "RemoverArtigo" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "RemoverPaineldeIndicadores" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "RemoverPaineldeIndicadoresdeGrupo" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "RemoverPaineldeIndicadoresProprio" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "RemoverTicket" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "%1 removido" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Painel de indicadores %1 removido" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Consultas Excluidas" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Busca salva removida" #: NOT FOUND IN SOURCE msgid "Deleted search" msgstr "Busca removida" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "Remover pesquisa %1" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "Remoção deste objeto pode quebrar a integridade referencial" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Remoção deste objeto causaria quebra da integridade referencial" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Remoção deste objeto violaria a integridade referencial" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity." msgstr "Remoção deste objeto violaria a integridade referencial" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity. That's bad." msgstr "Remoção dste objeto violaria a integridade referencial. Isto é mau." #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Negar" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Dependem deste tíquete" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "DependedOnBy" #: NOT FOUND IN SOURCE msgid "Dependencies: \\n" msgstr "Dependências: \\n" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Dependência por %1 adicionada" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Dependência por %1 removida" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Dependência de %1 adicionada" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Dependência de %1 removida" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "DependentOn" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Depende de" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "DependeDe" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Desc" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Descendente" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Descreva o problema abaixo" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descrição" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "Informações detalhadas sobre sua configuração do RT" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Detalhes" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direção" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Desativado" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Exibir" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Exibir Lista de Controle de Acesso" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "Exibir Arigo %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Exibir Colunas" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Exibir os modelos de Scrip desta fila" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Exibir os Scrips desta fila" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Modo de apresentação" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Exibir buscas salvas deste grupo" #: NOT FOUND IN SOURCE msgid "Display ticket #%1" msgstr "Exibir tíquete #%1" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribuído sobre a %1versão 2 do GNU GPL%2." #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuido sob a versão 2 da GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Fazer qualquer coisa" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Nome do domínio" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Não inclua http://, apenas alguma coisa como 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Não atualizar a página inicial" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Não atualizar os resultados da busca" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Não recarregar esta página." #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "Não apresentar resultados da busca" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Chave não confiável de maneira alguma" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Baixar" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Baixar como um arquivo com campos delimitados por tabulação" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Baixar arquivo de dump" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Vencimento" #: NOT FOUND IN SOURCE msgid "Due date '%1' could not be parsed" msgstr "A data de vencimento '%1' não pôde ser entendida" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "DueRelative" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ERRO: %1" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "ERRO: Não foi possível carregar tíquete '%1': %2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Atualização fácil de seus tíquetes abertos" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "Vizualização fácil dos seus lembretes" #: NOT FOUND IN SOURCE msgid "Ecnrypt/Decrypt" msgstr "Encriptar/Decriptar" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Editar" #: NOT FOUND IN SOURCE msgid "Edit Conditions" msgstr "Editar Condições" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Editar Campos Personalizados" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Editar Campos Personalizados para %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Editar Campos Personalizados para todos os grupos" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Editar Campos Personalizados para todas as filas" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Editar Campos Personalizados para todos os usuários" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Editar campos personalizados para artigos em todas as classes" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Editar Campos Personalizados para tíquetes em todas as filas" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Editar Vínculos" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Editar Consulta" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Editar Busca" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Editar Modelos para a fila %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Editar hierarquia de tópico global" #: NOT FOUND IN SOURCE msgid "Edit keywords" msgstr "Editar palavras chave" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Editar buscas salvas deste grupo" #: NOT FOUND IN SOURCE msgid "Edit scrips" msgstr "Editar scrips" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Editar modelos do sistema" #: NOT FOUND IN SOURCE msgid "Edit templates for %1" msgstr "Editar os modelos para %1" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "Editar hierarquia de tópico para %1" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "EditarBuscasSalvas" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Texto editável" #: NOT FOUND IN SOURCE msgid "Editing Configuration for Class %1" msgstr "Editando Configuração para Classe %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Editando Configuração para fila %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "Editando Configuração para usuário %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Editando CampoPersonalizado %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Editando afiliados do grupo %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Editando afiliados do grupo pessoal %1" #: NOT FOUND IN SOURCE msgid "Editing template %1" msgstr "Editando modelo %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "EffectiveId" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Ou origem ou destino deve ser especificado" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Ou você não tem direito de ver a busca salva %1 ou o identificador está incorreto" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Mensagem" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "Endereço de E-mail" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "Configuração de Email" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Resenha de Email" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Endereço de e-mail já está em uso" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Envio de email" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Modelo de email para notificação periódica de resenhas" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "Correio Eletrônico" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "CodificaçãoDeEmail" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Ativado" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "Ativado (Desmarque a caixa para desabilitar esta classe)" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Ativo (Desmarcar esta caixa desativa este campo personalizado)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Ativo (Desmarcar esta caixa desativa este grupo)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Ativa (Desmarcar esta caixa desativa esta fila)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "Classes Ativadas" #: NOT FOUND IN SOURCE msgid "Enabled Custom Fields" msgstr "Campos Personalizados Ativos" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Filas Ativas" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Estado %1 ativado" #: NOT FOUND IN SOURCE msgid "Enabled status: %1" msgstr "Ativado estado: %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Encriptar" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Encriptar por padrão" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Encriptar/Decriptar" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Encriptar/Decriptar transação #%1 do tíquete #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Encriptação desativada" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Encriptação ativada" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Informar valores múltiplos" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Informar múltiplos valores com autocomplemento" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Informar objetos ou URIs para vincular aos objetos. Separar entradas múltiplas com espaço." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "Informar uma intervalo de endereços IP" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Informar um valor" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Informar um valor com autocomplemento" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Informar filas ou URIs para vincular às filas. Separar entradas múltiplas com espaço." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Informar identificadores de tíquete ou URIs para vincular ao tíquete. Separar entradas múltiplas com espaço." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "Informar até %1 intervalos de endereços IP" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "Informar até %1 endereços IP" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Informar até %1 valores" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Informar até %1 valores com autocomplemento" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Erro" #: NOT FOUND IN SOURCE msgid "Error adding watcher" msgstr "Erro ao adicionar um observador" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Erro nos parâmetros para Fila->AdicionarObservador" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DelWatcher" msgstr "Erro nos parâmetros para Fila->RemoverObservador" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Erro em parâmetros para Fila->RemoverObservador" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Erro nos parâmetros para Tíquete->AdicionarObservador" #: NOT FOUND IN SOURCE msgid "Error in parameters to Ticket->DelWatcher" msgstr "Erro nos parâmetros para Tíquete->RemoverObservador" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Erro em parâmetros para Tíquete->RemoverObservador" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Erro proprietário RT: chave pública" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Erro: Falta painel de indicadores" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Erro: dado GnuPG inválido" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "Erro: o valor de privacidade de uma pesquisa existente não pode ser mudado" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "Erro:não foi possível carregar a pesquisa salva %1: %2" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Erro: sem chave privada" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Erro: chave pública" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "Erro: pesquisa %1 não foi atualizada: %2" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Escalonar tíquetes" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Estimado" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Todos" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Examinar os tíquetes criados em uma fila entre duas datas" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Examinar os tíquetes resolvidos em uma fila entre duas datas" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Examinar os tíquetes resolvidos em uma fila, agrupados por proprietário" #: bin/rt-crontool:356 msgid "Example:" msgstr "Exemplo:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "ExecutarCódigo" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Expira em" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "ExtendedStatus" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Autenticação externa ativada." #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Informação adicional" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "Extrair Artigo" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Extrair Tag Assunto" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "Extrair do tíquete #%1 um novo artigo" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "Extrair um artigo do tíquete #%1 dentro da Classe %2" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extrair tags de um Assunto de transação e adicioná-la ao Assunto de ticket." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Falhar ao conectar ao banco de dados: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Falha ao criar atributo %1" #: NOT FOUND IN SOURCE msgid "Failed to create search attribute" msgstr "Falha ao criar atributo de busca" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Falha ao procurar o pseudogrupo de usuários 'Privilegiado'." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Falha ao procurar o pseudogrupo de usuários 'Sem Privilégio'" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Falha ao carregar %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Falha ao carregar %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Falha ao carregar o módulo %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Falha ao carregar objeto para %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Falha ao carregar modelo" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Falha em entender modelo" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Fev" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Fev." #: NOT FOUND IN SOURCE msgid "February" msgstr "Fevereiro" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "Fontes de Notícias" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "Campo" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Fonte de valores de campo:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "FileName" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nome de arquivo" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Forneça argumentos" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Preencha os campos usando a cor" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Preencher múltiplas áreas de texto" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Preencher múltiplas áreas de texto wiki" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Preencher uma única área de texto" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Preencher uma única área de texto wiki" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Preencher este campo com uma URL." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Preencher até %1 áreas de texto" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Preencher até %1 áreas de texto wiki" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Prioridade Final" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "PrioridadeFinal" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Encontrar todos os usuários em que" #: NOT FOUND IN SOURCE msgid "Find group whose" msgstr "Encontrar grupo em que" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Encontrar grupos em que" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "Encontrar tíquetes novos/abertos" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Encontrar pessoas em que" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Encontrar tíquetes" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "Impressão digital" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminar" #: NOT FOUND IN SOURCE msgid "Finish Approval" msgstr "Terminar Aprovação" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Primeiro" #: NOT FOUND IN SOURCE msgid "First page" msgstr "Primeira página" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forçar alteração" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formato" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Reencaminhar" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Reencaminhar Mensagem" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Reencaminhar Mensagem e Voltar" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Reencaminhar Tíquete" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Reencaminhar mensagem" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "Reencaminhar mensagens fora do RT" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Reencaminhar mensagens para terceira(s) pessoa(s)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Reencaminhar tíquete #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Reencaminhar transação #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "ReencaminharMensagem" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "Reencaminhar Tíquete para #%1" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "Transação #%1 encaminhada para %2" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Encontrado(s) %quant(%1,tíquete(s)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Objeto Encontrado" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequência" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Sex" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Sex." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Sexta" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Cabeçalhos completos" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD está desabilitado ou não foi instalado. Você pode enviar uma imagem, mas você não receberá automaticamente sugestões de cores." #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Geral" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "Direitos gerais" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Pegar modelo no arquivo" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Iniciando" #: NOT FOUND IN SOURCE msgid "Getting the current user from a pgp sig\\n" msgstr "Obtendo o usuário atual a partir de uma assinatura pgp\\n" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Dado a %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Global" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "Atributos Globais" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Campos Personalizados Globais" #: NOT FOUND IN SOURCE msgid "Global Keyword Selections" msgstr "Seleções de Palavras Chave Globais" #: NOT FOUND IN SOURCE msgid "Global Scrips" msgstr "Scrips Globais" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuração de campos personalizados globais" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Portlet global %1 salvo." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Modelo global: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "Erro GnuPG. Entre em contato com o administrador." #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Integração GnuPG está desativada" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "Problemas GnuPG" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "Chave(s) privada(s) GnuPG para %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "Chaves privadas gnuPG" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "Chave(s) pública(s) GnuPG para %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Ir" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Ir para o grupo" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Ir para usuário" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Ir!" #: NOT FOUND IN SOURCE msgid "Good pgp sig from %1\\n" msgstr "Assinatura pgp válida de %1\\n" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Ir para Tíquete" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "Ir para a página" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ir para o tíquete" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propriedades do Gráfico" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Gráficos não estão disponíveis." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Grupo" #: NOT FOUND IN SOURCE msgid "Group %1 %2: %3" msgstr "Grupo %1 %2: %3" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Direitos de Acesso do Grupo" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Grupo já tem um membro: %1" #: NOT FOUND IN SOURCE msgid "Group could not be created." msgstr "Grupo não pôde ser criado." #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Grupo não pôde ser criado: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Grupo criado" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Grupo desativado" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Grupo ativado" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Grupo não contém este membro" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "O nome do grupo '%1' já está em uso" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Grupo não encontrado" #: NOT FOUND IN SOURCE msgid "Group not found.\\n" msgstr "Grupo não encontrado.\\n" #: NOT FOUND IN SOURCE msgid "Group not specified.\\n" msgstr "Grupo não especificado.\\n" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Direitos de Grupo" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupos" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupos não podem ser membros de seus próprios membros" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupos que satisfazem ao critério de busca" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Grupos aos quais o usuário pertence (marque caixa para remover)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Grupos aos quais o usuário não pertence (marque caixa para adicionar)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Grupos a que este usuário pertence" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "TemMembros" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Olá!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Olá, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ajude-nos a atribuir alguns valores padrão úteis para RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Ocultar texto citado" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "Ocultar histórico do tíquete por padrão" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Histórico" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "Histórico para o artigo #%1" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Histórico do grupo %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Histórico da fila %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Histórico do usuário %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Página Inicial" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "Telefone Residêncial" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Intervalo para recarregar Página Inicial" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Telefone Residencial" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Início" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Hora" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Horas" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Eu tenho %quant(%1,concrete mixer)." #: NOT FOUND IN SOURCE msgid "I have [quant,_1,concrete mixer]." msgstr "Eu tenho [quant,_1,concrete mixer]." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "Estou perdido" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Identificador" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identidade" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Se uma aprovação não é concedida, rejeitar o original e remover aprovações pendentes" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Se nenhum Requisitante for especificado, criar tíquetes com este requisitante." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Se nenhuma fila for especificada, criar tíquetes nesta fila." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Se esta ferramenta estiver com setgid, um usuário local mal-intencionado pode conseguir acesso administrativo sobre o RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Se você já tem um servidor RT ativo e o banco de dados, você pode aproveitar estar oportunidade para ter certeza de que seu servidor de banco de dados está rodando e que o servidor RT pode se conectar a ele. Uma vez você tenha feito isto, pare e inicie o servidor RT.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Se você já tem um servidor RT ativo e o banco de dados, você pode aproveitar estar oportunidade para ter certeza de que seu servidor de banco de dados está rodando e que o servidor RT pode se conectar a ele. Uma vez você tenha feito isto, pare e inicie o servidor RT.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Se você alterou a Porta na qual RT executa, você vai ter que reiniciar o servidor para poder entrar novamente no sistema." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Se você alterou qualquer coisa acima, não se esqueça de" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Se seu banco de dados preferido não estiver listado abaixo, isto significa que RT não pode encontrar um driver de banco de dados para ele instalado localmente. Você pode consertar isto usando %1 para baixar e instalar DBD::MySQL, DBD::Oracle ou DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Valor ilegal para %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Campo imutável" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "Tíquetes Inativos" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Incluir Artigo:" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "Incluir classes desativados na listagem." #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Incluir campos personalizados desativados na listagem." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Incluir grupos desativados na listagem." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Incluir filas desativadas na listagem." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Incluir usuários desativados na busca." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Incluir página" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Incluir subtópicos" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "Consulta Incompleta" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "Consulta incompleta" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Mensagens individuais" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informar proprietário de RT que usuário(s) tem problemas com chaves públicas" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informar usu[ario que um painel de indicadores subscrito por ele está faltando" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informar usuário que uma mensagem enviada por ele tem dado GnuPG inválido" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informar ao usuário que ele tem problemas com a chave pública e náo pode receber conteúdo encriptado" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Informar ao usuário que sua senha foi apagada" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informar ao usuário que recebemos um email encriptado e não temos chaves privadas para decriptar" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Prioridade Inicial" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "PrioridadeInicial" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Iniciar Banco de Dados" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Erro de entrada" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Entrada precisa satisfazer %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Instalar RT" #: NOT FOUND IN SOURCE msgid "Interest noted" msgstr "Interesse anotado" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Erro Interno" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Erro Interno: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "Erro interno: %1" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "%1 é inválido" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "%1 é argumento inválido" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 inválido: '%2' não parece com um endereço de email" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "%1 inválido: ele deve ser um número" #: NOT FOUND IN SOURCE msgid "Invalid %1: that doesn't look like an email address" msgstr "%1 inválido: isto não parece com um endereço de email" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "Classe Inválida" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "Valores de origem inválidos para Campo Personalizado" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Tipo Inválido de Grupo" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "Fila inválida, não é possível aplicar a Classe: %1" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Direito Inválido" #: NOT FOUND IN SOURCE msgid "Invalid Type" msgstr "Tipo Inválido" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Dado inválido" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Objeto inválido" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Dono de objeto inválido" #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "Proprietário inválido. Usando 'nobody'." #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Padrão inválido: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Fila inválida" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Direito de acesso inválido" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Direito inválido. Não é possível aceitar direito '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Sintaxe inválida para endereço de email" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Valor inválido para %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Valor inválido para campo personalizado" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Valor inválido para estado" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Não está encriptado" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "É muito importante que usuários não privilegiados não tenham permissão para utilizar esta ferramenta." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Sugere-se a criação de um usuário Unix não privilegiado com a correta filiação a grupo e com acesso ao RT para executar utilizar esta ferramenta." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Requer vários argumentos:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Itálico" #: NOT FOUND IN SOURCE msgid "Items pending my approval" msgstr "Itens requerendo minha aprovação" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Jan." #: NOT FOUND IN SOURCE msgid "January" msgstr "Janeiro" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Entrar ou deixar este grupo" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jul" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Jul." #: NOT FOUND IN SOURCE msgid "July" msgstr "Julho" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Jumbo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jun" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Jun." #: NOT FOUND IN SOURCE msgid "June" msgstr "Junho" #: NOT FOUND IN SOURCE msgid "Keep 'localhost' if you're not sure" msgstr "Mantenha 'localhost' se você não tem certeza" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Deixe 'localhost' se não tiver certeza. Deixe em branco para conectar localmente através de um socket" #: NOT FOUND IN SOURCE msgid "Keyword" msgstr "Palavra-chave" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "Líng" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Língua" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Último" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Último Contato" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Contactado em" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "Notificado em" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Atualizado em" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Última atualização por" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Última atualização" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Última atualização por" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "UltimaAtualizacao" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "UltimaAtualizacaoPor" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Mantenha vazio para usar os valores padrões para seu banco de dados" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Deixe em branco para usar o nome de usuário dba padrão para seu tipo de banco de dados" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Resta(m)" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legendas" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Tamanho em caracteres; Use '0' para mostrar todas as mensagens incorporadas, apesar de seu tamanho" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Deixar este usuário acessar RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Deixar este usuário receber direitos de acesso adicionais" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Vamos!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: NOT FOUND IN SOURCE msgid "Limiting owner to %1 %2" msgstr "Limitando proprietário a %1 %2" #: NOT FOUND IN SOURCE msgid "Limiting queue to %1 %2" msgstr "Limitando fila a %1 %2" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Vínculo" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Vínculo já existe" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Vínculo não pôde ser criado" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Vínculo criado (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Vínculo removido (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Vínculo não encontrado" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Vincular o tíquete #%1" #: NOT FOUND IN SOURCE msgid "Link ticket %1" msgstr "Vincular o tíquete %1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Vincular valores a" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Conectado" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "VinculadoCom" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Vinculando. Permissão negada" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Vínculos" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Carregar" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Carregar buscas salvas:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "CarregarBuscaSalva" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "%1 %2 carregado" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Busca salva original \"%1\" carregada" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Módulos perl carregados" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Busca salva \"%1\" carregada" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "Busca %1 carregada" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Localização" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Local" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written. RT can't run." msgstr "Diretório de log %1 não foi encontrado ou não pôde ser alterado. RT não pode ser executado." #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Entrou como %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Saiu" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Entrar" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Sair" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Tipo de consulta não corresponde" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Mail" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Tipos principais de vínculos" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Definir Proprietário" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Definir o estado" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Definir data de Vencimento" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Definir data de Resolução" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Definir data de Iniciado" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Definir data de início" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Definir data de última alteração" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Definir prioridade" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Definir fila" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Definir assunto" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Tornar este grupo visível para o usuário" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gerenciar campos personalizados e valores de campos personalizados" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administrar grupos e afiliações" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Administrar propriedades e configurações aplicáveis a todas as filas" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administrar filas e suas propriedades específicas" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Gerenciar gráficos salvos" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administrar usuários e senhas" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mar" #: NOT FOUND IN SOURCE msgid "March" msgstr "Março" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Todas as mensagens marcadas como lidas" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Comprimento máximo de mensagem incorporada" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maio" #: NOT FOUND IN SOURCE msgid "May." msgstr "Mai." #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Membro" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Membro %1 adicionado" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Membro %1 removido" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Membro adicionado: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Membro removido" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Membro não removido" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Membro de" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "MembroDe" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Membros" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Filiação em %1 adicionada" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Filiação em %1 removida" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Filiações" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Filiações do usuário %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "União bem sucedida" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "União falhou. Não foi possível definir o EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Fusão falhou. Não foi possível definir Estado." #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Unir a" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Unido a %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Mensagem" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "O corpo da mensagem não é mostrado porque o remetente solicitou não apresentá-lo." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "O corpo da mensagem não é mostrador porque não é texto puro." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Corpo da mensagem não apresentado porque é muito grande ou não é um texto plano." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "O corpo da mensagem não é mostrador porque é muito grande." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Altura da caixa de mensagem" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Largura da caixa de mensagem" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Mensagem não pode ser registrada" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Mensagem para usuário" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Mensagem registrada" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Mensagens sobre este tíquete não serão enviadas para..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Comprimento mínimo de senha" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutos" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: NOT FOUND IN SOURCE msgid "Mismatched parentheses" msgstr "Parênteses sem correspondente" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Faltando uma chave primária?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Móvel" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "Celular" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Modificar Lista de Controle de Acesso" #: NOT FOUND IN SOURCE msgid "Modify Custom Field %1" msgstr "Modificar o campo personalizado %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Modificar Campos Personalizados que se aplicam a %1 para todos %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Modificar Campos Personalizados que se aplicam a todos %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all queues" msgstr "Modificar Campos Personalizados que se aplicam a todas as filas" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Modificar Direitos de Grupo" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modificar Membros" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Modificar Direitos" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Modificar modelos de Scrip desta fila" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Modificar Scrips desta fila" #: NOT FOUND IN SOURCE msgid "Modify System ACLS" msgstr "Modificar ACLs do Sistema" #: NOT FOUND IN SOURCE msgid "Modify Template %1" msgstr "Modificar Esquema %1" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Modificar Direitos de Usuário" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Modificar um Campo Personalizado para a fila %1" #: NOT FOUND IN SOURCE msgid "Modify a CustomField that applies to all queues" msgstr "Modificar um Campo Personalizado que se aplica a todas as filas" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Modificar um scrip para a fila %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Modificar um scrip aplicável a todas as filas" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Modificar objetos associados a %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Modificar valores de campos personalizados" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Modificar painéis de indicadores para este grupo" #: NOT FOUND IN SOURCE msgid "Modify dates for # %1" msgstr "Modificar datas para # %1" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Modificar as datas para #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Modificar as datas para o tíquete # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Modificar campos personalizados globais" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Modificar direitos de acesso globais de grupo" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Modificar direitos de acesso globais de grupo." #: NOT FOUND IN SOURCE msgid "Modify global rights for groups" msgstr "Modificar direitos globais para grupos" #: NOT FOUND IN SOURCE msgid "Modify global rights for users" msgstr "Modificar direitos globais para usuários" #: NOT FOUND IN SOURCE msgid "Modify global scrips" msgstr "Modificar scrips globais" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Modificar direitos de acesso globais de usuário" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Modificar direitos de acesso globais de usuário." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Modificar metadados do grupo ou removê-lo" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Modificar direitos de grupo para campo personalizado %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Modificar os direitos de acesso do grupo %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Modificar os direitos de acesso de grupo para a fila %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Modificar afiliados deste grupo" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Modificar sua própria conta RT" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Modificar as pessoas relacionadas à fila %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Modificar as pessoas relacionadas ao tíquete #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Modificar painéis de indicadores pessoais" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Modificar os scrips da fila %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Modificar scrips aplicáveis a todas as filas" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Modificar painéis de indicadores do sistema" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Modificar o modelo %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modificar modelos que se aplicam a todas as filas" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Modificar painel de indicadores %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Modificar \"RT por alto\" padrão" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Modificar o grupo %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Modificar as pesquisas do painel de indicadores %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Modificar os observadores da fila" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Modificar a subscrição para o painel de indicadores %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Modificar o usuário %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Modificar o tíquete # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Modificar o tíquete #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Modificar tíquetes" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Modificar direitos de usuário para campo customizado %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Modificar os direitos de acesso de usuário para o grupo %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Modificar os direitos de acesso de usuário para a fila %1" #: NOT FOUND IN SOURCE msgid "Modify watchers for queue '%1'" msgstr "Modificar os observadores para a fila '%1'" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "ModificarACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "ModificarCampoPersonalizado" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "ModificarPaineldeIndicadores" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "ModificarPaineldeIndicadoresdeGrupo" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "ModificarPaineldeIndicadoresProprio" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "ModificarFiliaçãoPrópria" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "ModificarObservadoresdaFila" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "ModificarScrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "AutoModificar-se" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "ModificarModelo" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "ModificarTiquete" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Seg" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Seg." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Segunda" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Segunda até Sexta" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Mais" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Mais sobre %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Descer" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Subir" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Múltiplo" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Necessário especificar atributo 'Nome'" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Meus %1 primeiros tíquetes" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Minhas Aprovações" #: NOT FOUND IN SOURCE msgid "My Bookmarks" msgstr "Meus Favoritos" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Meu Dia" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "Meus Lembretes" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Minhas aprovações" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Meus painéis de indicadores" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Meus lembretes" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Minhas buscas salvas" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "NOVALINHA" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Nome" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Nome em uso" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Named, shared collection of saved searches" msgstr "Nomeada, coleção compartilhada de buscas salvas" #: NOT FOUND IN SOURCE msgid "Need approval from system administrator" msgstr "Precisa de aprovação do administrador do sistema" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Nunca" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Novo" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Novos Vínculos" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nova Senha" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Nova Aprovação Pendente" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nova busca" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Tíquetes novos e abertos para %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Novo campo personalizado" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Novo painel de indicadores" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Novo grupo" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Novas mensagens" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nova senha" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Notificação de nova senha enviada" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Nova fila" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Novo lembrete:" #: NOT FOUND IN SOURCE msgid "New request" msgstr "Nova requisição" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Novos direitos de acesso" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Novo scrip" #: NOT FOUND IN SOURCE msgid "New search" msgstr "Nova busca" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Novo modelo" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Novo tíquete" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "O novo tíquete não existe" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Novo usuário" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Novo usuário chamado" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Novos observadores" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "Abrir nova janela" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Próximo" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Próxima Página" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "Próxima página" #: NOT FOUND IN SOURCE msgid "Next: " msgstr "Próximo: " #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Apelido" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Apelido" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Não" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Nenhum %1 carregado" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nenhuma Classe definida" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Nenhum Campo Personalizado" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nenhum Campo Personalizado definido" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nenhum Grupo definido" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Nenhuma Consulta" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nenhuma Fila definida" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Nenhum usuário RT foi encontrado. Favor consultar o administrador do RT.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Nenhum Assunto" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Nenhum Modelo" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "Nenhum Tíquete especificado. Abortando o tíquete " #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket modifications" msgstr "Nenhum Tíquete especificado. Abortando modificações no tíquete" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Nenhuma ação" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Nenhuma coluna especificada" #: NOT FOUND IN SOURCE msgid "No command found\\n" msgstr "Nenhum comando encontrado\\n" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Não há comentário sobre este usuário" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "Nenhum arquivo anexado" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Nenhum painel de indicadores." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Nenhuma descrição para %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Nenhum grupo especificado" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Nenhum grupo satisfaz o critério de busca." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Nenhuma chave aceitável para encriptação" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Nenhuma chave para este endereço" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Nenhuma mensagem anexada" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Não há necessidade de encriptar" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Nenhuma senha especificada" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Sem permissão para criar filas" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Sem permissão para criar tíquetes na fila '%1'" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Sem permissão para criar usuários" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Sem permissão para exibir o tíquete" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Sem permissão para salvar buscas com abrangência em todo sistema" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Sem permissão para definir preferências" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "sem permissão para ver modificar o tíquete" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Nenhum usuário/grupo especificado" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Nenhum usuário/grupo selecionado." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Sem chave privada" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Nenhuma fila satisfaz o critério de busca." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Nenhum direito especificado" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Nenhum direito encontrado" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Nenhum direito outorgado." #: NOT FOUND IN SOURCE msgid "No search loaded" msgstr "Nenhuma busca carregada" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Não há busca a realizar" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Sem assunto" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Chave não existe ou não é aceitável para assinatura" #: NOT FOUND IN SOURCE msgid "No ticket id specified" msgstr "Nenhum identificador de tíquete especificado" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Nenhum tíquete encontrado." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Nenhum tipo de transação especificado" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nenhuma chave usável." #: NOT FOUND IN SOURCE msgid "No user or email address specified" msgstr "Nenhum usuário ou endereço de e-mail especificado" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Nenhum usuário satisfaz o critério de busca." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Nenhum valor enviado a _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Ninguém" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Nenhum" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Campo inexistente?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Nao Definido" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Não encontrado" #: NOT FOUND IN SOURCE msgid "Not logged in" msgstr "Não registrado" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Não registrado." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Não definido" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Ainda não implementado." #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "Ainda não implementado..." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Anotações" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "A notificação não pôde ser enviada" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Notificar AdminCcs" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Notificar AdminCcs como Comentário" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Notificar Ccs" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Notificar Ccs como Comentário" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Notificar Outros Destinatários" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Notificar Outros Destinatários como Comentário" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Notificar Proprietário" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Notificar Proprietário como Comentário" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Notificar Proprietário sobre seus tíquetes rejeitados" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notificar Proprietário que seu chamado foi aprovado e está pronto para ser desenvolvido." #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "Notificar Proprietário que todas as aprovações foram concedidas a seu tíquete" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "Notificar Proprietário que seu alguma aprovação foi concedida a seu tíquete" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notificar Proprietário, Requisitante, Ccs e AdminCcs como comentário" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Notificar Proprietários e AdminCcs sobre novos itens dependendo de suas aprovações" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Notificar Requisitantes" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Notificar Requisitantes e Ccs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Notificar Requisitantes e Ccs como Comentário" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Notificar Requisitantes, Ccs e AdminCcs" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Notificar Requisitantes, Ccs e AdminCcs como Comentário" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Avisar-me sobre mensagens não lidas" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Nov." #: NOT FOUND IN SOURCE msgid "November" msgstr "Novembro" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Número de resultados de uma busca" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OU" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objeto não pôde ser criado" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objeto não pode ser removido" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objeto criado" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objeto removido" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objeto do tipo %1 não aceitam campos customizados" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Tipo de objeto não corresponde" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "A lista de objetos está vazia" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Out" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Out." #: NOT FOUND IN SOURCE msgid "October" msgstr "Outubro" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Offline" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Edições offline" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Envio offline" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "Em %1, %2 escreveu:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "No Encerramento" #: etc/initialdata:143 msgid "On Comment" msgstr "Num Comentário" #: etc/initialdata:115 msgid "On Correspond" msgstr "Numa Correspondência" #: etc/initialdata:104 msgid "On Create" msgstr "Na Criação" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Na Alteração de Proprietário" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Na Alteração de Prioridade" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Na Alteração de Fila" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Quando Rejeitado" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Na Reabertura" #: etc/initialdata:178 msgid "On Resolve" msgstr "Na Resolução" #: etc/initialdata:149 msgid "On Status Change" msgstr "Na Alteração de Estado" #: etc/initialdata:109 msgid "On Transaction" msgstr "Numa Transação" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Cópia Oculta Única" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Cópia Única" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Só apresentar aprovações para requisições criadas depois de %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Só apresentar aprovações para requisições criadas antes de %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Somente apresentar campos personalizados para:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Aberto" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Abrir Tíquetes" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Abrir URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Abrir" #: NOT FOUND IN SOURCE msgid "Open requests" msgstr "Requisições abertas" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Abrir tíquetes" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "Abrir tíquetes (da listagem) em uma nova janela" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "Abrir tíquetes (da listagem) em outra janela" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Abrir tíquetes na correspondência" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Opções" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ordenado por" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "Requisitando e ordenando" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organização" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Tíquete originador: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "E-mail de saida sobre um comentário registrado" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "E-mail de saida registrado" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Após a data, a prioridade tende a" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Próprios tíquetes" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "OwnTicket" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Proprietário" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Proprietário '%1' não tem direito de ter este tíquete." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Proprietário alterado de %1 para %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Proprietário não pode ser definido." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Proprietário alterado à força de %1 para %2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "O proprietário é" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Nome Proprietário" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Página" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "Página %1 de %2" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Página 1 de 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Página não encontrada" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Pager" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Telefone do Pager" #: NOT FOUND IN SOURCE msgid "Parent" msgstr "Pai" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Pais" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Senha" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Lembrete de Senha" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Senha trocada" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Senhas precisam ter no mínimo %1 caracteres" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Senha definida" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "Senha muito curta" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Senha: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Senha: Permissão Negada" #: etc/initialdata:463 msgid "PasswordChange" msgstr "TrocadeSenha" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Senhas não coincidem." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Senhas não coincidem. Sua senha não foi alterada" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Caminho para sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Pessoas" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Realizar uma ação definida pelo usuário" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Configuração perl" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Permissão Negada" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Permissão negada" #: NOT FOUND IN SOURCE msgid "Permissions denied" msgstr "Permissões negadas" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Dashboards Pessoal" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Grupos Pessoais" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Grupos pessoais" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Grupos pessoais:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefones" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Por favor verifique a URL e tente novamente." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Possíveis buscas escondidas" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Preferências" #: NOT FOUND IN SOURCE msgid "Preferences %1 for user %2 ." msgstr "Preferências %1 para usuário %2." #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Preferências %1 para usuário %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Preferências salvas para %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Preferências salvas para usuário %1." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Preferências salvas." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Chave referencial: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Chave preferencial" #: NOT FOUND IN SOURCE msgid "Prefs" msgstr "Prefs" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Preparação Abortada" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Ant" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Anterior" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "Página Anterior" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "Página anterior" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Usuário/Grupo %1 não encontrado." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Mostre a resenha final de mensagens em STDOUT; não envie por email. Nâo as marque como enviadas" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Imprimir esta mensagem" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioridade" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioridade inicia em" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privacidade" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privacidade:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Chave Privada" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilegiado" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Estado privilegiado: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Usuários privilegiados" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Processando sem transação, algumas condições e ações podem falhar. Considere usar o argumento --transaction" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Falso-grupo para uso interno" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Chave pública '0x%1' é necessária para verificar a assinatura" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Consultas" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Consulta" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Construtor de Consulta" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Consulta:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Fila" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Fila %1 não encontrada" #: NOT FOUND IN SOURCE msgid "Queue '%1' not found\\n" msgstr "Fila '%1' não foi encontrada\\n" #: NOT FOUND IN SOURCE msgid "Queue Keyword Selections" msgstr "Seleções de Palavras-chave da Fila" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Nome da Fila" #: NOT FOUND IN SOURCE msgid "Queue Scrips" msgstr "Scrips da Fila" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "A fila já existe" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "A fila não pôde ser criada" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "A fila não pôde ser carregada" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Fila criada" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Fila desabilitada" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Fila habilitada" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Id da fila" #: NOT FOUND IN SOURCE msgid "Queue is not specified." msgstr "Fila não foi especificada." #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Fila não encontrada" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Direitos da fila" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Chave da fila" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "NomeFila" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "ObservadorFila" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Filas" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Filas que eu administro" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Filas nas quais sou AdminCc" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Busca rápida" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Criação rápida de tíquete" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 para %2" #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n" msgstr "RT %1. Direitos reservados 1996-%1 Jesse Vincent \\n" #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-2002 Jesse Vincent \\n" msgstr "RT %1. Direitos reservados 1996-2002 Jesse Vincent \\\\n" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administração do RT" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Email do Administrador RT" #: NOT FOUND IN SOURCE msgid "RT Authentication error." msgstr "Erro de autenticação no RT." #: NOT FOUND IN SOURCE msgid "RT Bounce: %1" msgstr "Ricochete do RT: %1" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "Configuração RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Configuration error" msgstr "Erro de configuração do RT" #: NOT FOUND IN SOURCE msgid "RT Critical error. Message not recorded!" msgstr "Erro crítico no RT. A mensagem não foi registrada!" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "Erro no RT" #: NOT FOUND IN SOURCE msgid "RT Received mail (%1) from itself." msgstr "O RT recebeu e-mail (%1) dele mesmo." #: NOT FOUND IN SOURCE msgid "RT Recieved mail (%1) from itself." msgstr "O RT recebeu e-mail (%1) dele mesmo." #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "Auto-Serviço RT" #: NOT FOUND IN SOURCE msgid "RT Self Service / Closed Tickets" msgstr "Auto-serviço do RT / Tíquetes Fechados" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Tamanho RT" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "Variáveis RT" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT por alto" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT por alto para o usuário %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT pode se comunicar com seus usuários sobre novos tíquetes ou novas correspondências nos tíquetes. Diga-nos onde encontrar o sendmail (ou um programa compatível com sendmail, como postfix). RT també necessita saber a quem avisar quando alguém envia uma mensagem inválida. Este endereço não pode ser uma conta que devolva a mensagem para RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT pode incluir o conteúdo de algum outro serviço web quando estiver apresentando este campo personalizado." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT pode transformar estes valores de campo customizado em hiperlinks para outro serviço." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: NOT FOUND IN SOURCE msgid "RT couldn't authenticate you" msgstr "O RT não pôde autenticá-lo" #: NOT FOUND IN SOURCE msgid "RT couldn't find requestor via its external database lookup" msgstr "O RT não pôde encontrar o requisitante através de consulta ao banco de dados externo" #: NOT FOUND IN SOURCE msgid "RT couldn't find the queue: %1" msgstr "O RT não pôde encontrar a fila: %1" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT não pode armazenar sua sessão." #: NOT FOUND IN SOURCE msgid "RT couldn't validate this PGP signature. \\n" msgstr "O RT não pôde validar esta assinatura PGP. \\n" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT para %1" #: NOT FOUND IN SOURCE msgid "RT for %1: %2" msgstr "RT para %1: %2" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "O RT processou seus comandos" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT é um sistema de classe empresarial para monitoramento de problemas, desenhado para deixar você gerenciar tarefas, problemas, requisições, defeitos ou qualquer outra coisa que se pareça com um \"item de ação\" de maneira inteligente e eficiente." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT é utilizado pelas 100 empresas listadas pela Fortune, por empresas individuais,agências governamentais, instituições de ensino, hospitais, entidades sem fins lucrativos, ONGs, bibliotecas, projetos de código aberto e todo tipo imaginável de organização nos sete continentes (Sim, inclusive Antártica)." #: NOT FOUND IN SOURCE msgid "RT thinks this message may be a bounce" msgstr "O RT crê que esta mensagem seja um ricochete" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT vai se conectar ao banco de dados usando esta conta de usuário. Ela vai ser criada para você." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vai criar um usuário chamado \"root\" e associar esta senha a ele" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT vai procurar por qualquer outra coisa que você informar nos assuntos dos tíquetes." #: NOT FOUND IN SOURCE msgid "RT will process this message as if it were unsigned.\\n" msgstr "O RT vai processar esta mensagem como se não fosse assinada.\\n" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT vai substituir %1 e %2 respectivamente com o id do registro e o valor do campo personalizado" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT vai substituir __id__ e __CustomField__ respectivamente com o id do registro e o valor do campo personalizado" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT vai usar esta sequência de caracteres unicamente para identificar sua instalação e procurar por ela no assunto de emails, para decidir a qual tíquete a mensagem se refere. Nós recomendamos que você utilize o seu domínio internet (ex: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT trabalha com diferentes bancos de dados. MySQL, PostgreSQL, Oracle and SQLite são suportados." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT/Admin/Edit o grupo %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Nome real" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "NomeReal" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Destinatário" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Registrar todas as atualizações" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Membro recursivo" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Referenciado por %1 adicionado" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Referenciado por %1 removido" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Referência a %1 adicionada" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Referência a %1 removida" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Referenciado por" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Faz referência a" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "FazReferenciaA" #: NOT FOUND IN SOURCE msgid "Refine" msgstr "Refinar" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "Refinar a busca" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Atualizar" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Recarregar esta página a cada %1 minutos." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "Lembrete" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Lembrete '%1' adicionado" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Lembrete '%1' completado" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Lembrete '%1' reaberto" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Lembrete tíquete #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Lembretes" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Lembretes para tíquete #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Remover AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Remover Favorito" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Remover Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Remover Requisitante" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Responder" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Endereço para Resposta" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Responder para requisitantes" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Responder aos tíquetes" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "ReplyToTicket" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Relatórios" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Requisitante" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "Endereço eletrônico do requisitante" #: NOT FOUND IN SOURCE msgid "Requestor(s)" msgstr "Requisitante(s)" #: NOT FOUND IN SOURCE msgid "RequestorAddresses" msgstr "RequestorAddresses" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Requisitantes" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "A requisições vencem em" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Parâmetro '%1' requerido e não especificado" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Apagar" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Apagar token de autenticação secreto" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Restaurar valor padrão" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Residência" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Resolver" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Resolver tíquete #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Resolvido" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Resolvidos por proprietário" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Resolvidos num intervalo de datas" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Tíquetes resolvidos no período, agrupados por proprietário" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Tíquetes resolvidos, agrupados por proprietário" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "Resposta aos requisitantes" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultados" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "Resultados por página" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Voltar to tíquete" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Confirmar a Senha" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Reverter" #: NOT FOUND IN SOURCE msgid "Right %1 not found for %2 %3 in scope %4 (%5)\\n" msgstr "Direito de acesso %1 não encontrado para %2 %3 referente a %4 (%5)\\n" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Direito de Acesso Delegado" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Direito de Acesso Outorgado" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Direito de Acesso Carregado" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Direito de acesso não pôde ser revogado" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Direito de acesso não encontrado" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Direito de acesso não carregado." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Direito de acesso revogado" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Direitos de Acesso" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Direitos de acesso não puderam ser outorgados a %1" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "Direitos de acesso não puderam ser revogados de %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Papéis" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Linhas" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Linhas por caixa" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Linhas por página" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite é um banco de dados que não precisa de um servidor ou qualquer configuração. Os autores de RT o recomendam para teste, demonstração e desenvolvimento, mas ele não é adequado para um servidor RT em produção." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sab" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Sáb." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Sábado" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Salvar" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Salvar as Alterações" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Salvar Preferências" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Salvar como Novo" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Salvar as alterações" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Salvo %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Busca Salva %1 não encontrada" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "" #: NOT FOUND IN SOURCE msgid "Saved search %1" msgstr "Busca salva %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Buscas salvas" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip Criado" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Campos de Scrip" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip removido" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Scrips e Destinatários" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "Scrips para %1\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scrips aplicáveis a todas as filas" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Buscar" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: NOT FOUND IN SOURCE msgid "Search Criteria" msgstr "Critérios de Busca" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Buscar Preferências" #: NOT FOUND IN SOURCE msgid "Search attribute load failure" msgstr "Falha na carga de atributos de busca" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Buscar por aprovações" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Busca por tíquetes" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Busca por tí­quetes. Informar id por número, filas por nome, Proprietários por nome de usuário e Requisitantes por endereço de e-email." #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address. RT will look for anything else you enter in ticket bodies and attachments." msgstr "Busca por tí­quetes. Informar id por número, filas por nome, Proprietários por nome de usuário e Requisitantes por endereço de e-email. RT vai procurar por qualquer outra coisa no corpo e anexos dos tí­quetes." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Opções de busca" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Resultados da busca agrupado por %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Intervalo para recarregar resultados de buscas" #: NOT FOUND IN SOURCE msgid "Search update: %1" msgstr "Busca atualizada: %1" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Pesquisar o texto completo de todos os tí­quetes pode gastar muito tempo, mas se você precisa disto, é possível procurar por qualquer palavra no histórico completo do tíquete teclando fulltext:palavra." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Token de autenticaço secreto" #: bin/rt-crontool:350 msgid "Security:" msgstr "Segurança:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Ver também:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Observar valores de campos personalizados" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Ver campos personalizados" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Ver mensagens de saída e destinatários" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Ver comentários privados do tíquete" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Ver sumários de tíquetes" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "VerCampoPersonalizado" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "VerPaineldeIndicadores" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "VerGrupo" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "VerIndicadoresdeGrupo" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "VerIndicadoresPessoais" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "VerFila" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Selecionar" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Seleciontar Tipo de Banco de Dados" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Selecionar um Campo Personalizado" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Selecionar um grupo" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Selecionar uma fila" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Selecionar uma fila para seu novo tíquete" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Selecionar um usuário" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Selecione outra linguagem" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Selecionar um campo personalizado" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Selecionar campos personalizados para todas filas" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Selecionar campos personalizados para todos grupos de usuário" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Selecionar campos personalizados para todos usuários" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Selecionar campos personalizados para todas filas" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Selecionar campos personalizados para transações em tíquetes de todas as filas" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Selecionar indicadores" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Selecionar um grupo" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Selecionar valores múltiplos" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Selecionar um valor" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Selecionar uma fila" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Selecionar filas a serem exibidas na página \"RT por alto\"" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Selecionar um scrip" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Selecionar um modelo" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Selecionar até %1 valores" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Selecionar um usuário" #: NOT FOUND IN SOURCE msgid "SelectMultiple" msgstr "SelectMultiple" #: NOT FOUND IN SOURCE msgid "SelectSingle" msgstr "SelectSingle" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Selecionar Campos Personalizados" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Chave selecionada não é confiãvel ou não existe mais." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Selecionar Objetos" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Seleções alteradas.Por favor, salve suas alterações" #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "Auto-serviço" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Email enviado com sucesso" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Enviar mensagem a todos os observadores" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Enviar mensagem a todos os observadores como um \"comentário\"" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Enviar mensagem com proprietário e todos os observadores" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Mandar mensagem para proprietário e todos os observadores como \"comentário\"" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Enviar mensagem aos requisitantes e Ccs" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Enviar mensagem aos requisitantes e Ccs como um comentário" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Envia uma mensagem aos requisitantes" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Envia uma mensagem aos Ccs e Bccs explicitamente listados" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Envie mail para os Ccs" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Envie mail para os Ccs como um comentário" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Envia uma mensagem aos Ccs administrativos" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Envia uma mensagem aos Ccs administrativos como um comentário" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Envia uma mensagem ao proprietário" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Set" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Set." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "Setembro" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Definições" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Apresentar" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "Apresentar Aprovações" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Apresentar Colunas" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Apresentar Resultados" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Mostrar Propriedades do Chamado no %1 nível" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Apresentar requisições aprovadas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Mostrar também" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Apresentar o sumário" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Apresentar requisições negadas" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Apresentar os detalhes" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Mostrar descrições do link" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Exibir histórico mais antigo primeiro" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Apresentar requisições pendentes" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Apresentar requisições aguardando outras aprovações" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "Apresentar comentário privado do tíquete" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "Apresentar sumários do tíquete" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "ApresentarACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "MostarAbaDeConfiguracao" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "ApresentarE-maildeSaida" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "ApresentarBuscasSalvas" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "ApresentarScrips" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "ApresentarModelo" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "ApresentarTiquete" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "ApresentarComentariosdeTiquete" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Barra Lateral" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Assinar" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Assinar por padrão" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Cadastrar como um Requisitante de tíquete ou um Cc de tíquete ou fila" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Cadastrar como um AdminCC de tíquete ou fila" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Assinatura" #: NOT FOUND IN SOURCE msgid "Signed in as %1" msgstr "Entrou como %1" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Assinatura desativada" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Assinatura ativada" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Busca Simples" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Único" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Nome do sítio" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Tamanho" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Saltar Menu" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Pulando usuário desativado" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Pequeno" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Alguns navegadores somente carregam conteúdo do mesmo domínio que seu servidor RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordenar" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "Chave de ordenação" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "Ordenar os resultados por" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "Ordenação" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Ordenando" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Especificar quando esta execução é diária ou semanal" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Planilha" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Estágio" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: NOT FOUND IN SOURCE msgid "Stalled" msgstr "Pendente" #: NOT FOUND IN SOURCE msgid "Start page" msgstr "Página inicial" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Iniciado" #: NOT FOUND IN SOURCE msgid "Started date '%1' could not be parsed" msgstr "A data de iníciado '%1' não pôde ser compreendida" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Inicia" #: NOT FOUND IN SOURCE msgid "Starts By" msgstr "Inicia Por" #: NOT FOUND IN SOURCE msgid "Starts date '%1' could not be parsed" msgstr "A data de início '%1' não pôde ser compreendida" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Estado" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Estado" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Alteração de Estado" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Estado alterado de %1 para %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: NOT FOUND IN SOURCE msgid "StatusChange" msgstr "AlteracaodeEstado" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Roubar" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Roubar tíquetes" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "RoubarTiquete" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Etapa %1 de %2" #: NOT FOUND IN SOURCE msgid "Step %1 of %2: " msgstr "Passo %1 de %2: " #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Roubado de %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Roubado de %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Estilo" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Assunto" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Assunto alterado para %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Submeter" #: NOT FOUND IN SOURCE msgid "Submit Workflow" msgstr "Submeter FluxodeTrabalho" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Subscrever" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Subscrever painel de indicadores %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Registrar-se nos Painéis" #: NOT FOUND IN SOURCE msgid "Subscribe to email dashboards" msgstr "Subscrever email com painéis de indicadores" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "SubscreverPaineldeIndicadores" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Subscrever painel de indicadores %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Subscrição" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Subscrição não pode ser criada: %1" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Deu certo" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Dado decriptado com sucesso" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Dado encriptado com sucesso" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Dom" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Dom." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Domigo" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "SuperUsuário" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Suspenso" #: NOT FOUND IN SOURCE msgid "System" msgstr "Sistema" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Configuração do Sistema" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Painel do Sistema" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Padrão do Sistema" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Erro do Sistema" #: NOT FOUND IN SOURCE msgid "System Error. Right not granted." msgstr "Erro de sistema. Direito não outorgado." #: NOT FOUND IN SOURCE msgid "System Error. right not granted" msgstr "Erro de sistema. direito não outorgado" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Erro do Sistema: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Ferramentas do Sistema" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Erro do sistema. Direito de acesso não delegado." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Erro do sistema. Direito de acesso não outorgado." #: NOT FOUND IN SOURCE msgid "System error. Unable to grant rights." msgstr "Erro de sistema. Não é possível outorgar direitos de acesso." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Grupos do sistema" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Direitos no sistema" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup para uso interno" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Tomar" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Tomar tíquetes" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "TomarTiquete" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Tomado" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Diga-nos um pouco sobre como encontrar o banco de dados que vai ser usado pelo RT" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Modelo" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Modelo #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Modelo #%1 removido" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Modelo '%1' não encontrado" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Modelo removido" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Modelo está vazio" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Modelo é um argumento obrigatório" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Modelo não encontrado" #: NOT FOUND IN SOURCE msgid "Template not found\\n" msgstr "Modelo não encontrado\\n" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Modelo processado" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Erro de análise gramatical do modelo" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Modelos" #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "Modelos de %1\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "O arquivo de texto não é mostrador porque foi desabilitado nas preferências." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Este já é o valor atual" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Este não é um valor para este campo personalizado" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Este é o mesmo valor" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Este usuário/grupo já tem este direito." #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Este usuário/grupo já é um %1 desta fila" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Este usuário/grupo já é um %1 deste tíquete" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Este usuário/grupo não é um %1 desta fila" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Este principal não é um %1 deste tíquete" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Esta fila não existe" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Este tíquete tem dependências não resolvidas" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "Este usuário já tem este direito de acesso" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Este usuário já possui este tíquete" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Este usuário não existe" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Este usuário já tem privilégios" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Este usuário já não tem privilégios" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Este usuário agora tem privilégios" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Este usuário agora não tem privilégios" #: NOT FOUND IN SOURCE msgid "That user is now unprivilegedileged" msgstr "Este usuário agora é não privilegiado" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Este usuário não pode possuir tíquetes nesta fila" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Este não é um identificador numérico" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Sumário" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "O CC de um tíquete" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "A senha do DBA do banco de dados" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "O CC administrativo de um tíquete" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "O comentário foi registrado" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "O domínio de seu servidor de banco de dados (como 'db.example.com')." #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "O seguinte comando procurará por todos os tíquetes ativos na fila 'geral' e alterar sua prioridade para 99 se eles não tiverem sido alterados há 4 horas:" #: NOT FOUND IN SOURCE msgid "The following commands were not proccessed: " msgstr "Os seguintes comandos não foram processados: " #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "As consultas a seguir podem não ficar visíveis a todos usuários que podem ver este dashboard." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Chave foi desativada" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Chave foi revogada" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Chave está expirada" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Chave totalmente confiável" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "O novo valor foi atribuído." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "O proprietário de um tíquete" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "A página requisitada não foi encontrada" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "O requisitante de um tíquete" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "" #: NOT FOUND IN SOURCE msgid "The settings you've chosen are stored in %1. You can edit this file to refine your configuration further. You can prevent this installation wizard from being shown again by running `chmod -w '%1'`." msgstr "As definições que você escolheu estão armazenadas em %1. Você pode editar este arquivo posteriormente para ajustar sua configuração. Você pode evitar que este assistente de instalação seja mostrado novamente rodando `chmod -w '%1'`." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "O sistema não pode assinar mensagens de email saintes. Isto usualmente indica que a passphrase tem problemas de definição ou que o Agente GPG não está ativo. Por favor avise seu administrador de sistema imediatamente. Os endereços do problema são:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Existem várias chaves aceitáveis para encriptação." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Existem mensagens não lidas neste tíquete." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Existe confiança marginal nesta chave" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Não existe chave aceitável para encriptação." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Existe uma chave aceitável, mas seu nível de confiabilidade não foi definido." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Estes comandos geralmente não estão visíveis para o usuário" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Estas opções de configuração cobrem parte do que é necessário para colocar o RT rodando. Nós precisamos saber o nome de sua instalação RT e o nome do domínio que vai hospedá-lo. Nós também precisamos definir uma senha para o usuário administrativo padrão." #: NOT FOUND IN SOURCE msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your defauly administrative user." msgstr "Estas opções de configuração cobrem parte do que é necessário para colocar o RT rodando. Nós precisamos saber o nome de sua instalação RT e o nome do domínio que vai hospedá-lo. Nós também precisamos definir uma senha para o usuário administrativo padrão." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Este campo personalizado não se aplica a este objeto" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Esta função só está disponível para administradores do sistema" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Isto pode significar que a pasta '%1' não aceita escrita ou uma tabela do banco de dados está faltando ou corrompida." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Esta mensagem será enviada para..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: NOT FOUND IN SOURCE msgid "This ticket %1 %2 (%3)\\n" msgstr "Este tíquete %1 %2 (%3)\\n" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Esta ferramenta permite ao usuário invocar módulos Perl arbitrários de dentro do RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Parece que esta transação não tem conteúdo" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Os %1 tíquetes mais prioritários deste usuário" #: NOT FOUND IN SOURCE msgid "This user's 25 highest priority tickets" msgstr "Os 25 tíquetes de mais alta prioridade deste usuário" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Qui" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Qui." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Quinta" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Tíquete" #: NOT FOUND IN SOURCE msgid "Ticket # %1 %2" msgstr "Tíquete # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket # %1 Jumbo update: %2" msgstr "Tíquete # %1 atualização jumbo: %2" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Tíquete #%1 Atualização jumbo: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Gráfico de relacionamentos do tíquete #%1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Tíquete #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Tíquete %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Tíquete %1 criado na fila '%2'" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "Tíquete %1 carregado\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Tíquete %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Campos Personalizados do Tíquete" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Histórico do Tíquete # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "Identificador do tíquete" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Tíquete Resolvido" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Busca de Tíquete" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Transações do Tíquete" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "Anexo do tíquete" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Conteúdo do tíquete" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Tipo do conteúdo do tíquete" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "O tíquete não pôde ser criado devido a um erro interno" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Tíquete não pode ser carregado" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "Tíquete criado" #: NOT FOUND IN SOURCE msgid "Ticket creation failed" msgstr "A criação do tíquete falhou" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "Tíquete removido" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Exibição de tíquete" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "Id de tíquete não encontrado" #: NOT FOUND IN SOURCE msgid "Ticket killed" msgstr "Tíquete destruído" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Metadados do tíquete" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "Tíquete não encontrado" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Estado do tíquete alterado" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "Observadores do tíquete" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "Módulo de busca TiqueteSQL" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Tíquetes" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Tíquetes %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Tíquetes %1 por %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Tíquetes criados depois de" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Tíquetes criados antes de" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "Tíquetes de %1" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Tíquetes resolvidos depois de" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Tíquetes resolvidos antes de" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tíquetes dependentes desta aprovação:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Tempo Estimado" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Tempo Restante" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tempo Trabalhado" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Tempo restante" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tempo de apresentação" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Tempo trabalhado" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "TempoEstimado" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "TempoRestante" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "TempoTrabalhado" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Fuso horário" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Título" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Para" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "Para gerar as diferenças desta transação" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "Para gerar as diferenças desta transação:\\n" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Para pedir informações sobre suporte, treinamento, desenvolvimento personalizado ou licenciamento, por favor, contacte %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Última atualização" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Ferramentas" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Total" #: etc/initialdata:249 msgid "Transaction" msgstr "Transação" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transação %1 removida" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transação Criada" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Campos Personalizados da Transação" #: NOT FOUND IN SOURCE msgid "Transaction->Create couldn't, as you didn't specify a ticket id" msgstr "Transaction->Create não foi feito, já que você não especificou um id de tíquete" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create não foi feito, já que você não especificou um tipo de objeto e id de tíquete" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transações são imutáveis" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Confiança" #: NOT FOUND IN SOURCE msgid "Trying to delete a right: %1" msgstr "Tentando remover um direito de acesso: %1" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Ter" #: NOT FOUND IN SOURCE msgid "Tue Dec 25 21:59:12 1995" msgstr "Ter Dez 25 21:59:12 1995" #: NOT FOUND IN SOURCE msgid "Tue, 25 Dec 1995 21:59:12 -0300" msgstr "Ter, 25 Dez 1995 21:59:12 -0300" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Ter." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Terça" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tipo" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Tipo alterado de '%1' to '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Incapaz de determinar tipo de objeto ou identificação" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Incapaz de fazer inscrição no quadro de indicadores %1: Permissão negada" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Não implementado" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Usuário Unix" #: NOT FOUND IN SOURCE msgid "UnixUsername" msgstr "NomeUsuárioUnix" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Desconhecido (nenhum valor de confiança definido)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Desconhecido (este valor é novo para o sistema)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Codificação de conteúdo desconhecida %1" #: NOT FOUND IN SOURCE msgid "Unknown field: $key" msgstr "Campo desconhecido: $key" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Campo desconhecido: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Ilimitado" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ilimitado" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Busca sem nome" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Não privilegiado" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Campos Personalizados não selecionados" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Objetos não selecionados" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Chave privada não definida" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Não tomado" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Atualizar" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Atualizar Gráfico" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "Identificador de atualização" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Atualizar Tíquete" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Tipo de atualização" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "Atualizar todos estes tíquetes de uma vez" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "Atualizar e-mail" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Atualizar formato e Buscar" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Atualizar múltiplos tíquetes" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "Atualizar nome" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Atualização não registrada." #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "Atualizar os tíquetes selecionados" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "Atualizar assinatura" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Atualizar o tíquete" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "Atualizar o tíquete # %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Atualizar o tíquete #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Atualizar tíquete #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "O tipo da atualização não foi nem correspondência e nem comentário." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "AtualizarEstado" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Atualizado" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Busca salva \"%1\" atualizada" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Enviar" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Enviar múltiplos arquivos" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Enviar múltiplas imagens" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Enviar um arquivo" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Enviar uma imagem" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Enviar até %1 arquivos" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Enviar até %1 imagens" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Enviar suas alterações" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Uso: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Usar SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Usar padrão (%1)" #: NOT FOUND IN SOURCE msgid "Use fixed-width font to display plaintext messages" msgstr "Usar fonte de tamanho fixo para exibir mensagens em texto plano" #: NOT FOUND IN SOURCE msgid "Use monospace font" msgstr "Usar fonte monospace" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Usar outras ferramentas administrativas RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Usar padrão do sistema (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Usuário" #: NOT FOUND IN SOURCE msgid "User %1 %2: %3\\n" msgstr "Usuário %1 %2: %3\\n" #: NOT FOUND IN SOURCE msgid "User %1 Password: %2\\n" msgstr "Usuário %1 Senha: %2\\n" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Usuário '%1' não encontrado." #: NOT FOUND IN SOURCE msgid "User '%1' not found" msgstr "Usuário '%1' não encontrado" #: NOT FOUND IN SOURCE msgid "User '%1' not found\\n" msgstr "Usuário '%1' não encontrado\\n" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Usuário (criado - expira)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Definido pelo Usuário" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Condições e ações definidas pelo usuário" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "Identificador de usuário" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "Identificador do usuário" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Direitos de Acesso de Usuário" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Usuário solicitou uma atualização de tipo desconhecido do campo personalizado %1 para %2 objeto #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "O usuário não pôde ser criado: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Usuário criado" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Grupos definidos pelo usuário" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Usuário desabilitado" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Usuário habilitado" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Usuário tem endereço de e-mail vazio" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Usuário carregado" #: NOT FOUND IN SOURCE msgid "User notified" msgstr "Usuário notificado" #: NOT FOUND IN SOURCE msgid "User view" msgstr "Visualização de usuário" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Chaves GnuPG do usuário" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Grupos definidos pelo usuário" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Nome de usuário" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Formato de nome de usuário" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Usuários" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Usuários que satisfazem o critério de busca" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Usando transação #%1" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Consulta Válida" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validação" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "ValorDaFila" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Valores" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Vários relatórios do RT" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Ver indicadores para este grupo" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Ver indicadores pessoais" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Ver indicadores do sistema" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "Editor de mensagens WYSIWIG" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Aviso. Isto NÃO está assinado!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Aviso: você não informou o endereço de e-mail, então você não vai receber estes indicadores até que o tenha informado" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Observar" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "ObservarcomoAdminCC" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Observador" #: NOT FOUND IN SOURCE msgid "Watcher loaded" msgstr "Observador carregado" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "GrupoObservador" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Observadores" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Nós também precisamos do nome do banco de dados que será usado e onde encontrá-lo. Nós também precisamos saber o nome da conta e senha que o usuário RT deve usar. RT pode criar o banco de dados e o usuário para você e esta é a razão que pedidos pelo nome e senha de um usuário com poderes de DBA. Durante o passo 6 do processo de instalação nós usaremos esta informação para criar e iniciar o banco de dados de RT." #: NOT FOUND IN SOURCE msgid "We were able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Estamos prontos para encontrar seu banco de dados e conectar a ele como DBA. Você pode selecionar 'Personalizar Sumário'para continuar a personalizar RT." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Porta Web" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "Codificação de Web" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Qua" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Qua." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Quarta" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Resenha semanal" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Bemvindo ao RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "O que eu fiz hoje" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "O que é RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Quando RT não pode manipular uma mensagem de email, para onde ela é encaminhada?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Quando RT envia um email ele define os cabeçalhos From: (De:) e Reply-To: (Responder para:) de maneira que usuários podem manter uma conversação simplesmente selecionando Responder em seu cliente de email. RT usa endereços diferentes para Respostas e Comentários. Estes podem ser trocadas para cada uma de suas filas. Estes endereços precisam ser configurados para permitir o uso do programa rt-mailgate." #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "Quando todas as aprovações de um tí­quete forem concedidas, adicionar uma correspondência ao tí­quete original" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "Quando uma aprovação for concedida a um tí­quete, adicionar uma correspondência ao tíquete original" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Quando um tíquete é criado" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Quando um tíquete de aprovação é criado, notificar o Proprietário e o AdminCc do í­tem aguardando por aprovação" #: etc/initialdata:110 msgid "When anything happens" msgstr "Quando qualquer coisa acontecer" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Quando você pressionar em 'Verificar Conectividade com Banco de Dados' pode acontecer um pequeno atraso enquanto RT tenta se conectar a seu banco de dados" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Sempre que um tíquete for fechado" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Quando um chamado é rejeitado" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Sempre que um tíquete for reaberto" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Sempre que um tíquete for resolvido" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Sempre que o proprietário de um tíquete for alterado" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Sempre que a prioridade de um tíquete for alterada" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Sempre que a fila de um tíquete for alterada" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Sempre que o estado de um tíquete for alterado" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Sempre que ocorrer uma condição definida por usuário" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Sempre que um novo comentário é adicionado" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Sempre que uma nova correspondência é adicionada" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Onde encontrar o binário do sendmail." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Trabalho" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "Work offline" msgstr "Trabalhar offline" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "Telefone de trabalho" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Trabalhado" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Sim" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Você já é proprietário deste tíquete" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Você vai encriptar mensagem de email de saída, mas existem problemas com as chaves públicas dos destinatários. Você precisa resolver este problema com as chaves, desativar o envio de mensagens para os recipientes com problemas nas chaves ou desativar encriptação." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Você vai encriptar uma mensagem de email de saida mas existe um problema com a chave pública de um destinatário. Você pode resolver o problema com a chave, desativar o envio da mensagem para este destinatário ou desativar a encriptação." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Você não é um usuário autorizado" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Você podeir para a primeira mensagem não lida ou ir para a primeira mensagem não lida e marcar todas as mensagens como lidas." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Você também pode editar as buscas pré-definidas" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Você só pode reatribuir seus próprios tíquetes ou aqueles que não têm dono" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Você apenas pode pegar tíquetes que não tem dono" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Você não tem a permissão de SuperUsuário" #: NOT FOUND IN SOURCE msgid "You don't have permission to view that ticket.\\n" msgstr "Você não tem permissão para ver este tíquete.\\n" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Você encontrou %1 tíquetes na fila %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Você foi desconectado do RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Você não tem permissão para criar tíquetes nesta fila." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Você não pode criar requisições nesta fila." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Você precisa informar uma senha Administrativa" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Você pode ser direcionado diretamente para uma página de entrada. Você vai estar apto para entrar com o nome de usuário %1 e a senha definida anteriormente." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Você pode ser direcionado diretamente para uma página de entrada. Você vai estar apto para entrar com o nome de usuário root e a senha definida anteriormente." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Você pode escolher o banco de dados que faça você ou o administrador local de bancos de dados se sentir mais confortável." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Você está vendo esta tela porque iniciou um servidor RT sem um banco de dados ativo. Mais parece que é a primeira vez que você está executando RT. Se você pressionar Vamos!> abaixo, RT vai guiar você na definição de seu servidor RT e do banco de dados." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Você está vendo esta tela porque iniciou um servidor RT sem um banco de dados ativo. Mais parece que é a primeira vez que você está executando RT. Se você pressionar \"%1\" abaixo, RT vai guiar você na definição de seu servidor RT e do banco de dados." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Volte sempre" #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "Suas %1 requisições" #: NOT FOUND IN SOURCE msgid "Your RT administrator has misconfigured the mail aliases which invoke RT" msgstr "Seu administrador do RT configurou erradamente os endereços eletrônicos que invocam o RT" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "Sua requisição foi aprovada por %1. Outras aprovações ainda podem estar pendentes." #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "Sua requisição foi aprovada." #: NOT FOUND IN SOURCE msgid "Your request was rejected" msgstr "Sua requisição foi rejeitada" #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "Sua requisição foi rejeitada." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Seu nome de usuário ou senha está incorreto" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "CEP" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: NOT FOUND IN SOURCE msgid "[no subject]" msgstr "[sem assunto]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nenhum]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "depois de"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "permite criação de buscas salvas"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "permite carga de buscas salvas"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "como outorgado a %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "barra"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "Antes de"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "final para início"

#: NOT FOUND IN SOURCE
msgid "chart"
msgstr "gráfico"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "fechado"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "contém"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "conteúdo"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "configuração principal"

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "correspondência (provavelmente) não enviada"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "correspondência enviada"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "campo personalizado '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "diariamente"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "diariamente em %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dias"

#: NOT FOUND IN SOURCE
msgid "dead"
msgstr "morto"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "remover"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "removido"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "não contém"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "não contém"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "não contém"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "baixar"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "igual a"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "erro: não pode mover para baixo"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "erro: não pode mover para a esquerda"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "erro: não pode mover para cima"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "erro: nada para remover"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "erro: nada para mover"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "erro: nada para alternar"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "todo"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "plugin executado com sucesso"

#: NOT FOUND IN SOURCE
msgid "false"
msgstr "falso"

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "nome do arquivo"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "tudo"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "maior que"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grupo '%1'"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "agrupado por %1"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "horas"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "identificador"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "é"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "não é"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "chave desativada"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "chave expirada"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "chave revogada"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "esquerda para direita"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "menor que"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "contém"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "profundidade máxima"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minutos"

#: NOT FOUND IN SOURCE
msgid "modifications"
msgstr "modificações"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "mensalmente"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "mensalmente (dia %1) a %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "meses"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "nunca"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "novo"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "não"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "sem nome"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "sem valor"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "nenhum"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "diferente de"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nada"

#: NOT FOUND IN SOURCE
msgid "notlike"
msgstr "diferente"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "objetos foram removidos com sucesso"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "em"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "no dia"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "aberto"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "abrir/fechar"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "outro..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "grupo pessoal '%1' para o usuário '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "plugin retorna lista vazia"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "fila %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "rejeitado"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "resolvido"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "direita para esquerda"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "seg"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "observar listas abaixo"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "mostrar coluna de Aprovados"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "exibir aba de Configuração"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "configuração da página"

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "planilha"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "pendente"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "style: %1"
msgstr "Estilo: %1"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "linhas do sumário"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistema %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "grupo do sistema '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "o componente chamador não especificou por que"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "os endereços padrão que serão colocados nos cabeçalhos From: (De: ) e Reply-To: (Responder para:) das mensagens de comentário"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "os endereços padrão que serão colocados nos cabeçalhos From: (De: ) e Reply-To: (Responder para:) das mensagens de corrrespondência"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "tíquete #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "início para final"

#: NOT FOUND IN SOURCE
msgid "true"
msgstr "verdadeiro"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "final"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "grupo %1 sem descrição"

#: NOT FOUND IN SOURCE
msgid "undescripbed group %1"
msgstr "grupo sem descrição %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "usuário %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "informativo"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "semanalmente"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "semanalmente (de %1) a %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "semanas"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "qual porta seu servidor web vai responder, por exemplo, 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "com cabeçalhos"

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "com modelo %1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "anos"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "sim"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/el.po0000664000175000017500000126351612262650742013750 0ustar  chmrrchmrr# Greek translation for rt
# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:09+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: Greek \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (δεν υπάρχει δημόσιο κλειδί!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (αναξιόπιστο!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 προστέθηκε"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "εδώ και %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 τροποποιήθηκαν σε %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 διαγράφηκε"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 διαγράφηκε."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 μετονομάστηκε σε %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 αποθηκεύθηκε."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 ενημερώθηκε."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 με πρότυπο σελίδας %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) από %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Αμετάβλητο)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (από πλαίσιο %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ρύθμιση επιλογής LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Παράμετρος που θα περαστεί στο %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Εκτύπωση αποτελεσμάτων στο STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Επιλέξτε τη χρήση \"πρώτης\", \"τελευταίας\" ή \"όλων\" των ενεργειών"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Επιλέξτε το όνομα ή τον κωδικό του προτύπου σελίδας που θα χρησιμοποιήσετε"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Προσδιορίστε το module ενέργειας που θέλετε να χρησιμοποιήσετε"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Προσδιορίστε τους τύπους ενεργειών που θέλετε να χρησιμοποιήσετε σε λίστα, χωρισμένους με κόμματα"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Προσδιορίστε το module συνθήκης που θέλετε να χρησιμοποιήσετε"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Προσδιορίστε το module αναζήτησης που θέλετε να χρησιμοποιήσετε"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 DashBoards"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "Φορτώθηκε το ScripAction %1"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "Προστέθηκε η τιμή %1 για %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "Το %1 υπάρχει ήδη και έχει τους πίνακες του RT στην θέση τους, αλλά δεν περιέχει τα μεταδεδομένα του RT. Το βήμα 'Αρχικοποίηση Βάσης Δεδομένων' που βρίσκετε πιο κάτω μπορεί να προσθέσει τα μεταδεδομένα στην ήδη υπάρχουσα βάση δεδομένων. Αν αυτό είναι αποδεκτό πατήστε το 'Προσαρμογή Βασικών' πιο κάτω για να συνεχίσετε την παραμετροποίηση του RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "Το %1 υπάρχει ήδη αλλά δεν περιέχει τους πίνακες ούτε τα μεταδεδομένα του RT. Το βήμα 'Αρχικοποίηση Βάσης Δεδομένων' που βρίσκετε πιο κάτω μπορεί να προσθέσει τα μεταδεδομένα στην ήδη υπάρχουσα βάση δεδομένων. Αν αυτό είναι αποδεκτό πατήστε το 'Προσαρμογή Βασικών' πιο κάτω για να συνεχίσετε την παραμετροποίηση του RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "Το %1 φαίνεται να είναι τοπικό αντικείμενο αλλά δεν βρέθηκε στην βάση δεδομένων"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "Το %1 φαίνεται να έχει αρχικοποιηθεί. Δεν χρειάζετε να δημιουργηθούν πίνακες ή να προστεθούν μεταδεδομένα, αλλά μπορείτε να πατήσετε το 'Προσαρμογή Βασικών' πιο κάτω για να συνεχίσετε την παραμετροποίηση του RT."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 από %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 άλλαξε από %2 σε %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 γράφημα από %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 αντίγραφο"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "κεντρικές ρυθμίσεις %1"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 δεν ήταν δυνατό να γίνει %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "Το %1 δεν μπόρεσε να αλλάξει την κατάσταση σε Επιλυμμένo. Η Βάση Δεδομένων του RT μάλλον είναι αλλοιωμένη"

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 δημιουργήθηκε"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 διαγράφηκε"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 απενεργοποιήθηκε"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 δεν υπάρχει."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 ενεργοποιήθηκε"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "Τα %1 πιο επείγονται αιτήματα που έχω αναλάβει"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "Το %1 είναι ένα εργαλείο για ενέργειες σε αιτήματα από ενα εξωτερικό χρονοπρόγραμμα όπως το cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "Το %1 είναι ένα εργαλείο , για να τρέχει από το cron, το οποίο αποστέλλει όλες τις αναβληθέντες κοινοποιήσεις του RT σαν σύνοψη κατά χρήστη"

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "Η %1 είναι η διεύθυνση στην οποία το RT λαμβάνει email. Η προσθήκη της σαν '%2' θα δημιουργήσει ένα ανεπιθύμητο βρόγχο email"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "O %1 δεν είναι πλεόν %2 για αυτή την ουρά"

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "Ο %1 δεν είναι πλέον %2 για αύτο το αίτημα"

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "Η %1 δεν είναι πλέον τιμή για το ειδικό πεδίο %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 λεπτά"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 πρόσφατα αιτήματα που δεν έχουν αναληφθεί"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 αντικείμενα"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 ρύθμιση site"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 ενημέρωση: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "Μεταβολή %1: Δε μεταβλήθηκε"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 ενημερώθηκε"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "Το %1 θα επιστρέψει όλα τα μέλη κάποιου επιλιμένου ομαδικού αιτήματος"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "Τα %2 αντικείμενα του %1"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "Τα %3 αντικείμενα του %2, του %1"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Τα dashboards του %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Αποθηκευμένες αναζητήσεις του %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: Δεν έγινε επισύναψη"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Νέο αίτημα σε%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hour)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "Η '%1' δεν έιναι έγκυρη τιμη για κατάσταση"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Επιλογή για διαγραφή)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "Επιλέξτε τα πλαίσια για να απενεργοποιήσετε τις ανακοινώσεις στους αναγραφόμενους παραλήπτες"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "Επιλέξτε τα πλαίσια για να ενεργοποιήσετε τις ανακοινώσεις στους αναγραφόμενους παραλήπτες"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Εισάγετε id αιτήματος ή URLs χωρισμένα με κενό)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Αφήστε κενό για %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Δεν υπάρχουν ειδικά πεδία)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Δεν έχει μέλη)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Δεν υπάρχουν scrips)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Δεν υπάρχουν πρότυπα σελίδας)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Κανένα)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Στέλνει ένα πιστό αντίγραφο αυτής της ενημέρωσης σε μια λίστα οριοθετημένη με κόμματα από διευθύνσεις διαχειριστών. Αυτά τα άτομα θα λαμβάνουν μελλοντικές ενημερώσεις.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "Αποστολή πιστού αντίγραφου αυτής της ενημέρωσης σε διαχωρησμένη με κόμμα λίστα ηλεκτρονικών διευθήσεων. Αυτά τα άτομα θα λαμβάνουν μελλοντικές ενημερώσεις."

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Χρησιμοποιείστε αυτά τα πεδία όταν επιλέγετε 'Ορισμένο από το χρήστη' για κάποια συνθήκη ή ενέργεια)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Δε θα σταλεί email)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(οποιοδήποτε)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(κενό)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(δεν υπάρχει δημόσιο κλειδί)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(χωρίς τιμή)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(χωρίς τιμές)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(μόνο ένα αίτημα)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(εκκρεμεί %quant(%1,other ticket))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(εκκρεμεί έγκριση)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(απαιτούμενο)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(εμπιστοσύνη: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(χωρίς όνομα)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(μη έμπιστο!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "Το --template-id είναι ξεπερασμένο όρισμα και δεν μπορεί να χρησιμοποιηθεί με το --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "To όρισμα --transaction μπορεί να είναι μόνο 'first', 'last' ή 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Όλες οι ροές iCal ενθέτουν ένα μυστικό κουπόνι που σας εξουσιοδοτεί. Αν η διεύθυνση URL κάποιας ροής εκτεθεί στον έξω κόσμο, μπορείτε να πάρετε ένα νέο μυστικό, διακόπτωντας όλα τις υφιστάμενες ροές iCal πιο κάτω.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Κενό πρότυπο σελίδας" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Δεν ορίστηκε συνθηματικό, ο χρήστης δε θα μπορεί να κάνει login." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "To ACE δε βρέθηκε" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "Τα ACEs μπορούν μόνο να δημιουργηθούνή να διαγραφούν" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "ΚΑΙ" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Σχετικά με μένα" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Έλεγχος πρόσβασης" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Ενέργεια" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Δεν βρέθηκε η Ενέργεια '%1'" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Η ενέργεια καταχωρήθηκε.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Η Ενέργεια είναι υποχρεωτικό όρισμα" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Προετοιμασία Ενέργειας..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Προσθήκη AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Προσθήκη Σελιδοδείκτη" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Προσθήκη Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Προσθήκη Στηλών" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Προσθήκη Κριτηρίων" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Προσθήκη Αρχείων" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Προσθήκη Αιτούντος" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Προσθήκη Τιμής" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Προσθήκη scrip που θα εφαρμόζετε σε όλες τις ουρές" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Προσθήκη σχολίων ή απαντήσεων σε επιλεγμένα αιτήματα" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Προσθήκη μελών" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Προσθήκη νέων παρατηρητών" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Προσθήκη όρων" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Προσθήκη όρων και Αναζήτηση" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Προσθήκη τιμών" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Προσθήκη, διαγραφή και αλλαγή τιμών ειδικών πεδίων για αντικείμενα" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Προστέθηκε εντολέας σαν %1 για αυτή την ουρά" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Προστέθηκε εντολέας σαν %1 για αυτό το αίτημα" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Διεύθυνση" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Διεύθυνση 1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Διεύθυνση 2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Σχόλιο Admin" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Αλληλογραφία Admin" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Ουρές Admin" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Καθολικές ρυθμίσεις" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdminAllPersonalGroups" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGroup" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminCustomField" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGroup" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGroupMembership" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminOwnPersonalGroups" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminQueue" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminUsers" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administrative Cc" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Κωδικός Διαχειριστή" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Για προχωρημένους" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Συλλέκτης" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Όλες οι Εγκρίσεις έχουν περάσει" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Όλες οι Ουρές" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Όλες οι ροές iCal ενθέτουν ένα μυστικό κουπόνι που σας εξουσιοδοτεί. Αν η διεύθυνση URL κάποιας ροής εκτεθεί στον έξω κόσμο, μπορείτε να πάρετε ένα νέο μυστικό, διακόπτωντας όλα τις υφιστάμενες ροές iCal πιο κάτω." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Όλες οι Ουρές ποθ πληρούν τα κριτήρια αναζήτησης" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Έχει ήδη κρυπτογραφηθεί" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Και/Η" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Εφαρμόστηκε" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Εφαρμόζετε σε" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Εφαρμόζετε σε όλα τα αντικείμενα" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Εφαρμογή" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Καθολική εφαρμογή" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Εφαρμογή αλλαγών" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Έγκριση" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Έγκριση #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Έγκριση #%1: Οι σημειώσεις δεν αποθηκεύτηκαν λόγω σφάλματος συστήματος" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Έγκριση #%1: Οι σημειώσεις καταγράφηκαν" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Η Έγκριση έχει περάσει" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Η Έγκριση είναι έτοιμη για τον Υπεύθυνο" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Η Έγκριση έχει αποριφθεί" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Έγκριση" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Απρ" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Αυξ" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Αύξουσα" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Προσθήκη και αφαίρεση ειδικών πεδίων" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "AssignCustomFields" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Επισύναψη" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Επισύναψη αρχείου" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Συνημμένο αρχείο" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Επισυνάψεις" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Το συνημμένο '%1' δεν ήταν δυνατό να φορτωθεί" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Το συνημμένο έχει δημιουργηθεί" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Όνομα συνημμένου αρχείου" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Επισυνάψεις" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Η κρυπτογράφηση των συνημμένων έχει απενεργοποιηθεί" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Η Ιδιότητα έχει διαγραφεί" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Αυγ" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Αυτόματη απάντηση" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Αυτόματη απάντηση στους Αιτητές" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Διαθέσιμο" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "BCc" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Πίσω" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Κακή προστασία προσωπικού απορρήτου για ιδιότητα %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Βασικά" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Αποθηκεύστε τις αλλαγές" #: etc/initialdata:214 msgid "Blank" msgstr "Κενό" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Σώμα" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Έντονο" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Σελιδοδείκτης" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Σελιδοδείκτες Αιτημάτων" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Περιληπτικές κεφαλίδες" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Μαζική ενημέρωση" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Εμπορική Υποστήριξη" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Αρχικά το RT χρησιμοποιεί την ζώνη ώρας του συστήματος. Αυτό σας επιτρέπει να ορίσετε μια καθολική προεπιλεγμένη ρύθμιση για την προβολή της ώρας και ημερομηνίας στο RT. Οι χρήστες μπορούν να επιλέξουν διαφορετική ζώνη ώρας από τις Προτιμήσεις τους." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CCGroup" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Δεν είναι δυνατό το φόρτωμα της αποθηκευμένης αναζήτησης" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Δεν είναι δυνατή η μεταβολή των χρηστών του συστήματος" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Μπορεί αυτός ο εντολέας να δει την ουρά;" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Δεν μπορεί να γίνει προσθήκη ειδικού πεδίου χωρίς όνομα" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Δεν βρέθηκε αποθηκευμένη αναζήτηση για αν δουλέψετε" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Δεν μπορείτε να συνδέσετε κάποιο αίτημα με τον εαυτό του" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Το %1 δεν μπορεί να αποθηκευτεί" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Δεν είναι δυνατή η αποθήκευση της αναζήτησης" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Δεν μπορεί να ορισθεί ταυτόχρονα η βάση και ο στόχος" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Δεν μπορούν να δημιουργηθούν αιτήματα σε απενεργοποιημένη ουρά" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Δεν είναι δυνατή η δημιουργία του χρήστη: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Οι Κατηγορίες βασίζονται σε" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Κατηγορία" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Η Κατηγορία έχει αποκαθοριστεί" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccs" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Αλλαγή" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Αλλαγή Έγκρισης αιτήματος σε κατάσταση \"Ανοικτό\"" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Επιλογή Όλων" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Έλεγχος σύνδεσης με τη Βάση Δεδομένων" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Έλεγχος Πιστοποιητικών Βάσης Δεδομένων" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Επιλογή πλαισίου για διαγραφή" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Επιλογή πλαισίου για αναίρεση δικαιωμάτων" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Υποκατηγορίες" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Επιλογή Βάσης Δεδομένων" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Πόλη" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Καθαρισμός" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Καθαρισμός Όλων" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Πατήστε \"Finish Installation\" πιο κάτω για να ολοκληρωθεί ο αυτόματος οδηγός." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Πατήστε \"Αρχικοποίηση Βάσης Δεδομένων\" για να δημιουργηθεί η βάση δεδομένων του RT και να εισαχθούν τα αρχικά μεταδεδομένα. Αυτό μπορεί να πάρει λίγη ώρα." #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Κλείσιμο παραθύρου" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Έκλεισε" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Κλειστά αιτήματα" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Συνδιασμένο Πλαίσιο: Επιλέξτε η εισάγετε πολλαπλές τιμές" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Συνδιασμένο Πλαίσιο: Επιλέξτε η εισάγετε μια τιμή" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Συνδιασμένο Πλαίσιο: Επιλέξτε η εισάγετε μέχρι και %1 τιμές" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Σχόλιο" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Διεύθυνση Σχολίου" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Διεύθυνση Σχολίου" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Σχόλια σε αιτήματα" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "CommentOnTicket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Σχόλια" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Σχόλια (δε θα σταλούν στον αιτούντα)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Σχόλια (δε θα σταλούν στον αιτούντα)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Σχόλια για το χρήστη" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Τα σχόλια προστέθηκαν" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Ολοκλήρωση Στελεχωμένων" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Συνθήκη" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Η συνθήκη '%1' δε βρέθηκε" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Η Συνθήκη είναι υποχρεωτικό όρισμα" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Η Συνθήκη ταιριάζει..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Συνθήκη, Ενέργεια και Πρότυπο" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Το Αρχείο Ρυθμίσεων %1 έχει κλειδωθεί" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Ρυθμίσεις" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Επιβεβαίωση" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Επιτυχής σύνδεση" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Περιεχόμενο" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Τύπος-Περιεχομένου" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "ContentType" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Διεύθυνση αλληλογραφίας" #: etc/initialdata:283 msgid "Correspondence" msgstr "Αλληλογραφία" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Προστέθηκε Αλληλογραφία" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Δεν έχει προστεθεί η νέα τιμή ειδικού πεδίου: %1" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Δεν ήταν δυνατή η αλλαγή υπευθύνου: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Δεν ήταν δυνατή η δημιουργία CustomField" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Δεν ήταν δυνατή η δημιουργία Ειδικού Πεδίου: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Δεν ήταν δυνατή η δημιουργία της ομάδας" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Δεν ήταν δυνατή η δημιουργία προτύπου %1" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Δεν ήταν δυνατή η δημιουργία αιτήματος. Δεν έχει οριστεί ουρά" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Δεν ήταν δυνατή η δημιουργία του χρήστη" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Δεν ήταν δυνατή η εύρεση ή δημιουργία αυτού του χρήστη" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Δεν έχει βρεθεί αυτός ο εντολέας" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Δεν ήταν δυνατή η φόρτωση της ιδιότητας %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Δεν ήταν δυνατή η φόρτωση του Ειδικού Πεδίου %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Δεν ήταν δυνατή η φόρτωση της ομάδας" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Δεν ήταν δυνατή η φόρτωση αντικειμένου για %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Δεν ήταν δυνατή η προσθήκη του εντολέα σαν %1 για αυτή την ουρά" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Δεν ήταν δυνατή η προσθήκη του εντολέα σαν %1 για αυτό το άιτημα" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Δεν ήταν δυνατή η διαγραφή του εντολέα από για αυτή την ουρά" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Δεν ήταν δυνατή η διαγραφή του εντολέα από %1 για αυτο το αίτημα" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Δεν ήταν δυνατο ο καθορισμός των πληροφοριών του χρήστη" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Δεν ήταν δυνατή η προσθήκη επισύναψης" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Δεν ήταν δυνατή η προσθήκη μέλους στην ομάδα" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Δεν ήταν δυνατή η εφαρμογή ειδικού πεδίου σε αντικείμενο που είναι ήδη καθολικό" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Δεν ήταν δυνατή η δημιουργία συναλλαγής: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Δεν ήταν δυνατή η δημιουργία εγγραφής" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Δεν ήταν δυνατή η διαγραφή της πινακίδας %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Δεν ήταν δυνατή ή εύρεση της γραμμής" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Δεν βρέθηκε κατάλληλη συναλλαγή, παράβλεψη" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Δεν βρέθηκε ο εντολέας" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Δεν βρέθηκε η τιμή" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Δεν ήταν δυνατή ή φόρτωση του %1 από την βάση δεδομένων των χρηστών" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Δεν ήταν δυνατή ή φόρτωση της Κλάσης %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Δεν ήταν δυνατή ή φόρτωση του Ειδικού Πεδίου #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Δεν ήταν δυνατή ή φόρτωση του Ειδικού Πεδίου #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Ανεπιτυχές φόρτωμα Ειδικού Πεδίου %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Ανεπιτυχές φόρτωμα αντιγράφου αιτήματος #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Δεν ήταν δυνατή η φόρτωση της πινακίδας %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Δεν ήταν δυνατή η φόρτωση της πινακίδας %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Δεν ήταν δυνατή η φόρτωση της ομάδας #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Δεν ήταν δυνατή η φόρτωση της ομάδας %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Δεν ήταν δυνατή η φόρτωση του συνδέσμου %1" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Δεν ήταν δυνατή η φόρτωση του αντικειμένου %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Δεν ήταν δυνατή η φόρτωση ή η δημιουργία του χρήστη: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Δεν ήταν δυνατή η φόρτωση της ουράς" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Δεν ήταν δυνατή η φόρτωση της ουράς #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Δεν ήταν δυνατή η φόρτωση της ουράς %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Δεν ήταν δυνατή η φόρτωση της ουράς '%1'" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Δεν ήταν δυνατή η φόρτωση του scrip #%1" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Δεν ήταν δυνατή η φόρτωση του προτύπου σελίδας #%1" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Δεν ήταν δυνατή η φόρτωση του αιτήματος '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Δεν ήταν δυνατή η φόρτωση της συναλλαγής #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Δεν ήταν δυνατή η φόρτωση του χρήστη" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Δεν ήταν δυνατή η φόρτωση του χρήστη #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Δεν ήταν δυνατή η φόρτωση του χρήστη #%1 ή του χρήστη '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Δεν ήταν δυνατή η φόρτωση του χρήστη '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Δεν ήταν δυνατή η ανάλυση από την συμβολοσειρά '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Δεν ήταν δυνατή η αντικατάσταση του περιεχομένου με αποκρυπτογραφημένα δεδομένα: '%1'" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Δεν ήταν δυνατή η αντικατάσταση του περιεχομένου με κρυπτογραφημένα δεδομένα: '%1'" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Δεν ήταν δυνατή η επίλυση του '%1' σε URI" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Δεν ήταν δυνατή η επίλυση της βάσης του '%1' σε URI" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Δεν ήταν δυνατή η επίλυση του στόχου '%1' σε URI" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Δεν ήταν δυνατή η αποστολή email" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Δεν ήταν δυνατή η προσθήκη του %1 ως παρατηρητή: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Δεν ήταν δυνατό να οριστεί δημόσιο κλειδί" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Δεν ήταν δυνατό να αναιρεθεί δημόσιο κλειδί" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Χώρα" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Δημιουργία" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Δημιουργία αιτημάτων" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Δημιουργία Ειδικού Πεδίου" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Δημιουργία Ειδικού Πεδίου για την ουρά %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Δημιουργία νέας πινακίδας" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Δημιουργία νέας ομάδας" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Δημιουργία νέας προσωπικής ομάδας" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Δημιουργία νέου αιτήματος" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Δημιουργία νέου χρήστη" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Δημιουργία νέας ουράς" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Δημιουργία scrip για την ουρά %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Δημιουργία προτύπου σελίδας" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Δημιουργία αιτήματος" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Δημιουργία πινακίδων για αυτή την ομάδα" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Δημιουργία νέου αιτήματος βασισμένου στο πρότυπο σελίδας του scrip" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Δημιουργία προσωπικής πινακίδας" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Δημιουργία πινακίδας συστήματος" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Δημιουργία αιτήματος" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Δημιουργία αιτημάτων σε αυτή την ουρά" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Δημιουργία αιτημάτων εκτός σύνδεσης" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Δημιουργία, διαγραφή και αλλαγή ειδικών πεδίων" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Δημιουργία, διαγραφή, μεταβολή ουρών" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Δημιουργία, διαγραφή και αλλαγή των μελών των προσωπικών ομάδων κάθε χρήστη" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Δημιουργία, διαγραφή και αλλαγή των μελών των προσωπικων ομάδων" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Δημιουργία, διαγραφή και αλλαγή χρηστών" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "CreateDashboard" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "CreateGroupDashboard" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "CreateOwnDashboard" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "CreateSavedSearch" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "CreateTicket" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Δημιουργήθηκε" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Δημιουργήθηκε Από" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Το Ειδικό Πεδίο %1 δημιουργήθηκε" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Δημιουργημένο μεταξύ ημερομηνιών" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Αιτήματα δημιουργημένα στην περίοδο, ομαδοποιημένα βάση κατάστασης" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CreatedBy" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CreatedRelative" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Δημιουργός" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Κρυπτογραφία" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Τρέχοντες Συνδέσμοι" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Τρέχοντα Scrips" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Τρέχοντα μέλη" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Τρέχοντα δικαιώματα" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Τρέχουσα αναζήτηση" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Τρέχοντες παρατηρητές" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Ειδικά Πεδία" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Ειδικά Πεδία για %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Κώδικας εκκαθαρισης παραμετροποιημένης ενέργειας" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Κώδικας προετοιμασίας παραμετροποιημένης ενέργειας" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Παραμετροποιημένη συνθήκη" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Το ειδικό πεδίο #%1 δεν εφαρμόζεται σε αυτό το αντικείμενο" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Ειδικό πεδίο %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Το ειδικό πεδίο %1 δεν εφαρμόζεται σε αυτό το αντικείμενο" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Το ειδικό πεδίο %1 έχει τιμή" #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Το ειδικό πεδίο %1 δεν έχει τιμή" #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Το ειδικό πεδίο %1 δεν βρέθηκε" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Ειδικό πεδίο %1" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Το ειδικό πεδίο %1 έχει εφαρμοστεί σε αυτό το αντικείμενο" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Η τιμή ειδικού πεδίου %1 δεν βρέθηκε για το ειδικό πεδίο %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Δεν ήταν δυνατή η διαγραφή της τιμής ειδικού πεδίου" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Το ειδικό πεδίο δεν βρέθηκε" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Το ειδικό πεδίο διαγράφηκε" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CustomField" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "CustomFieldValue" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Προσαρμογή" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Προσαρμογή Βασικών" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Προσαρμογή Διεύθυνσης Email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Προσαρμογή Διαμόρφωσης Email" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Κωδικός DBA" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Όνιμα χρήστη DBA" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Ημερήσια σύνοψη" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Dashboard" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Δεν ήταν δυνατή η δημιουργία του Dashboard: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Δεν ήταν δυνατή η ενημέρωση της Πινακίδας: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Το Dashboard ενημερώθηκε" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Dashboards" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Κωδικός βάσης δεδομένων του RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Θύρα βάσης δεδομένων" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Τύπος βάσης δεδομένων" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Όνομα χρήστη βάσης δεδομένων του RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Μορφή ημερομηνίας" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "Το DateTime δεν υποστηρίζει την μορφοποίηση format_cldr, πρέπει να προχωρήσετε σε αναβάθμιση για να χρησιμοποιήσετε αυτή την δυνατότητα" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Το module DateTime λείπει" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "Το DateTime::Locale δεν υποστηρίζει date_format_full, πρέπει να προχωρήσετε σε αναβάθμιση για να χρησιμοποιήσετε αυτή την δυνατότητα" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Το άρθρωμα DateTime::Locale δεν υπάρχει" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Ημερομηνίες" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Δεκ" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Αποκρυπτογράφηση" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Προεπιλεγμένο πρότυπο Αυτόματης Απάντησης" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Προεπιλεγμένη ουρά" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Προεπιλεγμένος Αιτητής" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Προεπιλεγμένο πρότυπο σχολίων διαχειρηστή" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Προεπιλεγμένο πρότυπο αλληλογραφίας διαχειρηστή" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Προεπιλεγμένο πρότυπο αλληλογραφίας" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Προεπιλεγμένη ουρά" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Προεπιλεγμένο πρότυπο συναλλαγής" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Προεπιλεγμένο: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Προεπιλεγμένο: %1/%2 αλλαγή από %3 σε %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "DefaultFormat" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Ανάθεση δικαιωμάτων" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Ανάθεση συγκεκριμένων δικαιωμάτων που σου δώθηκαν" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegateRights" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Ανάθεση" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Διαγραφή" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Διαγραφή Προτύπου" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Διαγραφή πινακίδων για αυτή την ομάδα" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Η διαγραφή απέτυχε: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Διαγραφή προσωπικών πινακίδων" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Διαγραφή επιλεγμένου scrip" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Διαγραφή πινακίδων συστήματος" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Διαγραφή αιτημάτων" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Διαγραφή τιμών" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "DeleteDashboard" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "DeleteGroupDashboard" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "DeleteOwnDashboard" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "DeleteTicket" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Διαγράφηκε %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Το Dashboard %1 διαγράφηκε" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Διαγραμμένες αναζητήσεις" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Διαγραφή αποθηκευμένης αναζήτησης" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Διαγράφή αυτoύ το αντικείμενο θα έσπαζε την αναφορική ακεραιότητα" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Διαγράφή αυτoύ το αντικείμενο θα παραβίαζε την αναφορική ακεραιότητα" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Άρνηση" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Εξαρτώμενο από" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "DependedOnBy" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Εξάρτηση του %1 προστέθηκε" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Εξάρτηση του %1 προστέθηκε" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Εξάρτηση από %1 προστέθηκε" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Εξάρτηση από %1 διαγράφηκε" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "DependentOn" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Εξαρτάται από" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "DependsOn" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Φθιν" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Φθίνουσα" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Περιγράψτε το ζήτημα πιο κάτω" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Περιγραφή" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Κατεύθυνση" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Απενεργοποιημένο" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Προβολή" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Εμφάνιση Λίστας Ελέγχου Πρόσβασης" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Εμφάνιση Στηλών" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Εμφάνιση προτύπων Scrip για αυτή την ουρά" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Εμφάνιση Scrip για αυτή την ουρά" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Εμφάνιση αποθηκευμένων αναζητήσεων για την ομάδα" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Διανέμεται σύμφωνα με την έκδοση 2 Της Γενικής Άδειας Χρήσης GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Κάνε τα όλα και οτιδήποτε" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Όνομα τομέα" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Μην περιλάβεις το http://, απλα κάτι σαν 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Μην ανανεώσεις αυτή την σελίδα" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Μην ανανεώσεις τα αποτελέσματα αναζήτησης" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Μην ανανεώσεις αυτή την σελίδα" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Μην εμπιστευτείς καθόλου αυτό το κλειδί" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Λήψη" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Κατέβασμα σαν αρχείο διαχωρισμένο με tabs" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Κατέβασμα dumpfile" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Έως" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "DueRelative" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ΣΦΑΛΜΑ: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Εύκολη ενημέρωση των ανοικτών αιτημάτων" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Επεξεργασία" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Επεξεργασία Ειδικών Πεδίων" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Επεξεργασία Ειδικών Πεδίων για %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Επεξεργασία Ειδικών Πεδίων για όλες τις ομάδες" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Επεξεργασία Ειδικών Πεδίων για όλες τις ουρές" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Επεξεργασία Ειδικών Πεδίων για όλους τους χρήστες" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Επεξεργασία Ειδικών Πεδίων για αιτήματα σε όλες τις ουρές" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Επεξεργασία Συνδέσμων" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Επεξεργασία Ερωτήματος" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Επεξεργασία Αναζήτησης" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Επεξεργασία Προτύπου για την ουρά %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Επεξεργασία αποθηκευμένων αναζητήσεων για την ομάδα" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Επεξεργασία προτύπων συστήματος" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "EditSavedSearches" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Επεξεργάσιμο κείμενο" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Επεξεργασία διαμόρφωσης της ουράς %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Επεξεργασία Ειδικού πεδίου %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Επεξεργασία μελών για ομάδα %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Επεξεργασία μελών για προσωπική ομάδα %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "EffectiveId" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Πρέπει να καθοριστή είτε η βάση είτε ο στόχος" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Είτε δεν έχετε τα δικαιώματα να δείται την αποθηκευμένη αναζήτηση %1 το όνομα είναι λανθασμένο" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Email" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Σύνοψη Email" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Το Email χρησιμοποιείται ήδη" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Διανομή Email" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Πρότυπο Email για περιοδική ειδοποίηση σύνοψης" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "EmailAddress" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Ενεργοποιημένο" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Ενεργοποιημένο" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Ενεργοποιημένο (Αποεπιλογή στο κουτάκι απενεργοποιεί την ομάδα)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Ενεργοποιημένο (Αποεπιλογή στο κουτάκι απενεργοποιεί την ουρά)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Ενεργές Ουρές" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Ενεργοποιημένες ουρές που ταιριάζουν στα κριτήρια επιλογής" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Ενεργοποίηση κατάστασης %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Κρυπτογράφηση" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Προεπιλεγμένη κρυπτογράφηση" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Κρυπτογράφηση/Αποκρυπτογράφηση" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Κρυπτογράφηση/Αποκρυπτογράφηση συναλλαγής #%1 του αιτήματος #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Απενεργοποίηση κρυπτογράφηση" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Ενεργοποίηση κρυπτογράφηση" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Εισαγωγή πολλαπών τιμών" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Εισαγωγή πολλαπών τιμών με αυτοσυμπλήρωση" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Εισαγωγή αντικειμένων ή διευθήνσεων (URI) για σύνδεση αντικειμένων σε αυτά. Διαχωρήστε πολλαπλές επιλογές με διαστήματα." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Εισάγετε μια τιμή" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Εισάγετε μια τιμή με αυτοσυμπλήρωση" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Εισαγωγή ουρών ή διευθήνσεων (URI) για σύνδεση ουρών σε αυτές. Διαχωρήστε πολλαπλές επιλογές με διαστήματα." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Εισαγωγή αιτημάτων ή διευθήνσεων (URI) για σύνδεση αιτημάτων σε αυτά. Διαχωρήστε πολλαπλές επιλογές με διαστήματα." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Εισαγωγή μέχρι και %1 τιμών" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Εισαγωγή μέχρι και %1 τιμών με αυτοσυμπλήρωση" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Σφάλμα" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Σφάλμα στις παραμέτρους στο Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Σφάλμα στις παραμέτρους στο Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Σφάλμα στις παραμέτρους στο Ticket->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Σφάλμα στις παραμέτρους στο Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Σφάλμα στο χρήστη RT: δημόσιο κλειδή" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Σφάλμα: Το dashboard λείπει" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Σφάλμα: εσφαλμένα δεδομένα GnuPG" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Σφάλμα: δεν υπάρχει δημόσιο κλειδί" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Σφάλμα: δημόσιο κλειδί" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Κλιμάκωση αιτήματος" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Εκτιμώμενο" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Όλοι" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Εξέταση αιτημάτων δημιουργημένων σε ουρά μεταξύ δύο ημερομηνιών" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Εξέταση αιτημάτων επιλυμένων σε ουρά μεταξύ δύο ημερομηνιών" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Εξέταση αιτημάτων επιλυμένων σε ουρά, ομαδοποιημένων βάση υπεύθυνου" #: bin/rt-crontool:356 msgid "Example:" msgstr "Παράδειγμα:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Λήξη" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "ExtendedStatus" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Ενεργοποίηση εξωτερικής επικύρωσης" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Πρόσθετε πληροφορίες" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Εξαγωγή Ετικέτας Κειμένου" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Εξαγωγή ετικεττών από το θέμα της Συναλλαγής και προσθήκη στο θέματου αιτήματος" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Αποτυχία σύνδεσης στη Βάση Δεδομένων: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Αποτυχία δημιουργίας χαρακτηριστικού %1" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Αποτυχία εύρεσης της ψευδοομάδας χρηστών 'Privileged'." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Αποτυχία εύρεσης της ψευδοομάδας χρηστών 'Privileged'" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Αποτυχία φόρτωσης %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Αποτυχία φόρτωσης %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Αποτυχία φόρτωσης module %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Αποτυχία φόρτωσης αντικειμένου για %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Αποτυχία φόρτωσης προτύπου" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Αποτυχία επεξεργασίας προτύπου" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Φεβ" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Πηγή τιμών πεδίου:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "Όνομα αρχείου" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Όνομα αρχείου" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Συμπλήρωση παραμέτρων" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Συμπλήρωση κουτιών με χρωματισμούς χρησιμοποιώντας" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Συμπλήρωση πολλαπλών περιοχών κειμένου" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Συμπλήρωση πολλαπλών περιοχών βικικειμένου" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Συμπλήρωση μιας περιοχής κειμένου" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Συμπλήρωση μιας περιοχής βικικειμένου" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Συμπλήρωση διεύθυνσης URL στο πεδίο" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Συμπλήρωση μέχρι και %1 περιοχών κειμένου" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Συμπλήρωση μέχρι και %1 περιοχών βικικειμένου" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Τελική Προτεραιότητα" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "FinalPriority" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Εύρεση όλων των χρηστών που" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Εύρεση ομάδων που" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Εύρεση ατόμων που" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Εύρεση αιτημάτων" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Ολοκλήρωση" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Πρώτο" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Επιβολή αλλαγής" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Μορφοποίηση" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Προώθηση" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Προώθηση μηνύματος" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Προώθηση μηνύματος και επιστροφή" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Προώθηση αιτήματος" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Προώθηση μηνύματος σε τρίτους" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Προώθηση αιτήματος #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Προώθηση συναλλαγής #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "ForwardMessage" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Βρέθηκε %quant(%1,αίτημα)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Βρέθηκε Αντικείμενο" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Συχνότητα" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Παρ" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Παρασκευή" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Πλήρεις κεφαλίδες" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Γενικά" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Λήψη προτύπου από αρχείο" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Για να ξεκινήσετε" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Δώθηκε σε %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Καθολικές Ρυθμίσεις" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Καθολική διαμόρφωση ειδικού πεδίου" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Το καθολικό στοιχείο πύλης %1 αποθηκεύτηκε" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Καθολικό πρότυπο %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "Σφάλμα GnuPG. Επικοινωνήστε με τον διαχειριστή σας" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Η ενσωμάτωση του GnuPG απενεργοποιήθηκε" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "Ζητήματα με GnuPG" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "Δημόσια κλειδια GnuPG για %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "Δημόσια κλειδια GnuPG για %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Μετάβαση" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Μετάβαση!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Μετάβαση σε αίτημα" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Γράφημα" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Ιδιότητες γραφήματος" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Οι γραφικές παραστάσεις δεν είναι διαθέσιμες" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Ομάδα" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Δικαιώματα Ομάδας" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Η ομάδα περιλαμβάνει ήδη το μέλος: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Η ομάδα δεν μπορούσε να δημιουργηθεί: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Η Ομάδα δημιουργήθηκε" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Η Ομάδα απενεργοποιήθηκε" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Η Ομάδα ενεργοποιήθηκε" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Η ομάδα δεν έχει μέλη" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Η ομάδα δε βρέθηκε" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Δικαιώματα ομάδας" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Ομάδες" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Οι ομάδες δεν μπορούν να είναι μέλη των μελών τους" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Ομάδες που ταιριάζουν στα κριτήρια αναζήτησης" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Ομάδες όπου είναι μέλος ο χρήστης (επιλέξτε το κουτάκι για διαγραφή)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Ομάδες όπου δεν είναι μέλος ο χρήστης (επιλέξτε το κουτάκι για προσθήκη)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Ομάδες στις οποίες ανήκει ο χρήστης" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "HasMember" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Επικεφαλίδα προωθούμενου αιτήματος" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Επικεφαλίδα προωθούμενου αιτήματος" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Γεια σας!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Γεια σας, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Βοηθείστε μας να ορίσουμε κάποιες χρήσιμες προεπιλεγμένες ρυθμίσεις για το RT" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Ιστορικό" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Ιστορικό ομάδας %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Ιστορικό ουράς %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Ιστορικό χρήστη %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Αρχική" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Χρόνος ανανέωσης αρχικής σελίδας" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Τηλέφωνο Οικίας" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Προσωπική σελίδα" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Ώρα" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Ώρες" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "" #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Ταυτότητα" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Αν μια έγκριση απορριφθεί, να απορριφθεί το πρωτότυπο και να διαγραφούν οι εγκρίσεις σε αναμονή" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Αν δεν καθοριστεί ο αιτητής, δημιούργησε τα αιτήματα με αυτό τον αιτητή" #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Αν δεν καθοριστεί η ουρά, δημιούργησε τα αιτήματα σε αυτή την ουρά" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Αν αυτό το εργαλείο είναι setgid, ένας κακόβουλος τοπικός χρήστης θα μπορούσε να το χρησιμοποιήσει για να αποκτήσει πρόσβαση διαχειριστή στο RT" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Αν έχετε ήδη κάποιο διακομιστή RT και βάση δεδομένων, θα πρέπει να βεβαιωθείτε ότι η βάση δεδομένων τρέχει και ότι ο διακομιστής RT μπορεί να ενωθεί με αυτή. Όταν το κάνετε αυτό σταματήστε και ξεκινήστε τον διακομιστή RT.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Αν έχετε ήδη κάποιο διακομιστή RT και βάση δεδομένων, θα πρέπει να βεβαιωθείτε ότι η βάση δεδομένων τρέχει και ότι ο διακομιστής RT μπορεί να ενωθεί με αυτή. Όταν το κάνετε αυτό σταματήστε και ξεκινήστε τον διακομιστή RT.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Αν έχετε αλλάξει την Θύρα στην οποία τρέχει το RT, θα χρειστεί να επανεκκινήσετε τον διακομιστή για να ενωθείτε" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Αν ενημερώσατε κάτι από τα πιο πάνω βεβαιωθείτε ότι" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Ανη βάση δεδομένων της προτίμησης σας δεν βρίσκεται στο αναδυώμενο μενού πιο κάτω, Αυτό σημαίνει ότι το RT δεν βρήκε τον σχετικό οδηγό βάσης δεδομένων εγκατεστημένο τοπικά. θα μπορείτε να το επιλύσετε αυτό χρησιμοποιώντας το %1 για να κατεβάστε και να εγκαταστήσετε το DBD::MySQL, D::Oracle ή DBD::Pg" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Μη επιτρεπτή τιμή για %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Αμετάβλητο πεδίο" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Συμπερίληψη απενεργοποιημένων ειδικών πεδίων στην καταγραφή" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Συμπερίληψη απενεργοποιημένων ομάδων στην καταγραφή" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Συμπερίληψη απενεργοποιημένων ουρών στην καταγραφή" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Συμπερίληψη απενεργοποιημένων χρηστών στην αναζήτηση" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Συμπερίληψη σελίδας" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Ατομικά μηνύματα" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Ενημέρωση του διαχειριστή του RT ότι oι χρήστες έχουν προβλήματα με τα δημόσια κλειδιά" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Ενημέρωση του χρήστη ότι η πινακίδα στην οποία έκανε συνδρομή λείπει" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Ενημέρωση του χρήστη ότι το μήνυμα που έστειλε έχει λανθασμένα δεδομένα GnuPG" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Ενημέρωση του χρήστη ότι έχει προβλήματα με τα δημόσια κλειδιά και δεν μπορεί να λάβει κρυπτογραφημένο περιεχόμενο." #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Ενημέρωση του χρήστη ότι έχει γίνει επαναφορά του κωδικού πρόσβασης" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Ενημέρωση χρήστη σχετικά με λήψη ένα κρυπτογραφημένου μηνύματος ηλεκτρονικού ταχυδρομείου και απουσίας ιδιωτικών κλειδιών για αποκρυπτογράφηση" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Αρχική Προτεραιότητα" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "InitialPriority" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Αρχικοποίηση Βάσης Δεδομένων" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Σφάλμα εισόδου" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Τα δεδομένα εισόδου πρέπει να ταιριάζουν με %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Εγκατάσταση RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Εσωτερικό Σφάλμα" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Εσωτερικό Σφάλμα: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Άκυρο %1: '%2' δε μοιάζει με email" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Άκυρο %1: πρέπει να έιναι αριθμός" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Άκυρος Τύπος Ομάδας" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Άκυρα δεδομένα" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Άκυρο αντικείμενο" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Άκυρος ιδιοκτήτης αντικειμένου" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Άκυρο μοτίβο: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Άκυρη ουρά" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Άκυρο δικαίωμα" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Άκυρο δικαίωμα. Δεν ήταν δυνατή η κανονικοποίηση του δικαιώματος '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Άκυρη σύνταξη για διεύθυνση email" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Άκυρη τιμή για %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Άκυρη τιμή για ειδικό πεδίο" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Άκυρη τιμή κατάστασης" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Δεν είναι κρυπτογραφημένο" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Είναι απίστευτα σημαντικό οι μη προνομιούχοι χρηστες να μην μπορούν να τρέξουν αυτό το εργαλείο." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Συστήνετε η δημιουργία ενός μη προνομιούχου χρήστη" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Παίρνει αρκετές παραμέτρους:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Πλάγια" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Ιαν" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Συμμετοχή ή αποχώρηση από την ομάδα" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Ιουλ" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Jumbo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Ιουν" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Κρατήστε το 'localhost' αν δεν είστε σίγουρος. Αφήστε το κενό για να ενωθείτε τοπικά μέσω socket" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Γλώσσα" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Μεγάλο" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Τελευταίο" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Τελευταία Επαφή" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Τελευταία Επαφή" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Τελευταία ενημέρωση" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Τελευταία ενημέρωση από" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Τελευταία ενημέρωση από" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "LastUpdated" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "LastUpdatedBy" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "LastUpdatedRelative" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Αφήστε κενό για να σταλεί στην τρέχουσα διεύθυνση email (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Αφήστε κενό για να χρησιμοποιηθεί η προεπιλεγμένη τιμή για την βάση δεδομέμων σας" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Αν θέλετε να χρησιμοποιηθει το προεπιλεγμένο όνομα χρήστη dba για τον τύπο της βάσης δεδομένων σας" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Αριστερά" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Υπόμνημα" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Μέγεθος σε χαρακτήρες· Χρησιμοποιήστε '0' για να δείτε όλα τα μηνύματα ενσωματωμένα, ανεξαρτήτως μεγέθους" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Δικαίωμα πρόσβασης στο RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Δυνατότητα ανάθεσης δικαιωμάτων στο χρήστη" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Ας ξεκινήσουμε!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Σύνδεσμος" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Ο σύνδεσμος υπάρχει ήδη" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Δεν ήταν δυνατή η δημιουργία του συνδέσμου" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Ο σύνδεσμος δε βρέθηκε" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Σύνδεδε το αίτημα #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Σύνδεσε τις τιμές στο" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Συνδεμένο" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "LinkedFrom" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "LinkedTo" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Σύνδεση. Δεν επιτρέπεται η πρόσβαση" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Σύνδεσμοι" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Φόρτωση" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Φόρτωμα αποθηκευμένων αναζητήσεων" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "LoadSavedSearch" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Φορτώθηκε %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Φορτώθηκε η αρχική \"%1\" αποθηκευμένη αναζήτηση" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Φορτώθηκαν τα perl modules" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Φορτώθηκε ή αποθηκευμένη αναζήτηση \"%1\"" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Γλωσσική προσαρμογή" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LocalizedDateTime" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Τοποθεσία" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Συνδεδεμένος ως %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Αποσυνδέθηκε" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Είσοδος" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "LogoAltText" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Έξοδος" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Αναντιστοιχία τύπου αναζήτησης" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Αλληλογραφία" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Κύριος τύπος συνδέσμων" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Όρισε Υπεύθυνο" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Όρισε Κατάσταση" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Όρισε ημερομηνία λήξης" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Όρισε ημερομηνία επίλυσης" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Όρισε ημερομηνία που ξεκίνησε" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Όρισε ημερομηνία έναρξης" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Όρισε ημερομηνία ειδοποίησης" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Όρισε προτεραιότητα" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Όρισε ουρά" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Όρισε θέμα" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Όρισε αυτή την ομάδα ορατή στον χρήστη" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Διαχείριση ειδικών πεδίων και των τιμών τους" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Διαχείριση ομάδων και μελών" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Διαχείριση ιδιοτήτων και διαμόρφωσης που ισχύουν για όλες τις ουρές" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Διαχείριση ουρων και των ιδιοτήτων τους" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Διαχείριση αποθηκευμέμων γραφημάτων" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Διαχείριση χρηστών και κωδικών" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Μαρ" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Ρύθμισε όλα τα μυνήματα σαν διαβασμένα" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Σειρά αναζήτησης προτύπου Mason" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "MaxValues" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Μέγιστο μέγεθος ενσωματωμένου μυνήματος" #: lib/RT/Date.pm:95 msgid "May" msgstr "Μάι" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Μέλος" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Το μέλος %1 προστέθηκε" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Το μέλος %1 διαγράφηκε" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Προστέθηκε το μέλος: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Το μέλος διαγράφηκε" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Το μέλος δε διαγράφηκε" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Μέλος του" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "MemberOf" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Μέλη" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Προστέθηκε η ιδιότητα μέλους σε %1" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Διαγράφηκε η ιδιότητα μέλους σε %1" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Ιδιότητες Μέλους" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Ιδιότητες Μέλους για τον χρήστη %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Επιτυχής συγχώνευση" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Αποτυχία συγχώνευσης. Δεν μπόρεσε να ορισθεί το EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Αποτυχία συγχώνευσης. Δεν μπόρεσε να ορισθεί η κατάσταση" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Συγχώνευση σε" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Συγχώνευση σε %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Μήνυμα" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Το κυρίως μέρος του μηνύματος δεν φαίνεται επειδή ο αποστολέας ζήτησε να μην ενσωματωθεί" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Το σώμα του μηνύματος δεν εμφανίζεται γιατί δεν είναι απλό κείμενο" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Το σώμα του μηνύματος δεν εμφανίζεται γιατί είναι πολύ μεγάλο" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Ύψος Message box" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Πλάτος πλαισίου μηνυμάτων" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Αποτυχία καταγραφής μηνύματος" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Μήνυμα για το χρήστη" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Το μήνυμα καταγράφηκε" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Μηνύματα για αυτό το αίτημα δεν θα σταλούν σε..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Ελάχιστο μήκος κωδικού πρόσβασης" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Λεπτά" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Απουσία πρωτεύοντος κλειδιού;: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Κινητό" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "MobilePhone" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Τροποποίηση Λίστας Ελέγχου Πρόσβασης" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Τροποποίηση Προσμαρμοσμένων Πεδίων που εφαρμόζονται στο %1 για όλα τα %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Τροποποίηση Προσμαρμοσμένων Πεδίων που εφαρμόζονται σε όλα τα %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Μεταβολή Δικαιωμάτων Ομάδω" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Μεταβολή Μελών" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Μεταβολή Δικαιωμάτων" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Τροποποίηση προτύπων Scrip για αυτή την ουρά" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Τροποποίηση Scrips για αυτή την ουρά" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Μεταβολή Δικαιωμάτων Χρήστη" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Τροποποίηση Ειδικού Πεδίου για την ουρά %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Τροποποίηση Scrip για την ουρά %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Τροποποίηση Scrip που εφαρμόζεται σε όλες τις ουρές" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Τροποποίηση συναφών αντικειμένων για %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Τροποποίηση τιμών ειδικών πεδίων" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Τροποποίηση πινακίδων για αυτή την ομάδα" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Μεταβολή ημερομηνιών για #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Τροποποίηση ημερομηνιών για αίτημα # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Τροποποίηση καθολικών ειδικών πεδίων" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Τροποποίηση καθολικών δικαιωμάτων ομάδων" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Τροποποίηση καθολικών δικαιωμάτων ομάδων." #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Τροποποίηση καθολικών δικαιωμάτων χρηστών" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Τροποποίηση καθολικών δικαιωμάτων χρηστών." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Τροποποίηση μεταδεδομένων ομάδας η διαγραφή ομάδας" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Τροποποίηση δικαιωμάτων ομάδων για ειδικό πεδίο %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Τροποποίηση δικαιωμάτων ομάδας για την ομάδα %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Τροποποίηση δικαιωμάτων ομάδας για ουρά %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Τροποποίηση κατάλογου μελών αυτής της ομάδας" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Τροποποίηση λογαριασμού RT του ιδίου ατόμου" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Τροποποίηση ατόμων συναφή με την ουρά %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Τροποποίηση ατόμων συναφή με το αίτημα #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Τροποποίηση προσωπικών πινακίδων" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Τροποποίηση scrips για ουρά %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Τροποποίηση scrips που εφαρμόζονται σε όλες τις ουρές" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Τροποποίηση dashboards συστήματος" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Τροποποίηση προτύπου %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Τροποποίηση προτύπων που εφαρμόζονται σε όλες τις ουρές" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Τροποποίηση του dashboard %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Τροποποίηση του προεπιλεγμένου μηνύματος \"To RT με μια ματιά\"" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Τροποποίηση ομάδας %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Τροποποίηση αναζητήσεων σε πινακίδα %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Τροποποίηση παρατηρητών ουράς" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Τροποποίηση της συνδρομής της πινακίδας %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Τροποποίηση του χρήστη %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Τροποποίηση αιτήματος # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Τροποποίηση αιτήματος #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Τροποποίηση αιτημάτων" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Τροποποίηση δικαιωμάτων χρήστη για ειδικό πεδίο %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Τροποποίηση δικαιωμάτων χρήστη για ομάδα %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Τροποποίηση δικαιωμάτων χρήστη για ουρά %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "ModifyACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "ModifyCustomField" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "ModifyDashboard" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "ModifyGroupDashboard" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "ModifyOwnDashboard" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "ModifyOwnMembership" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "ModifyQueueWatchers" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "ModifyScrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "ModifySelf" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "ModifyTemplate" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "ModifyTicket" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Άρθρωμα" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Δευ" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Δευτέρα" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Δευτέρα έως Παρασκευή" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Περισσότερα" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Περισσότερα για το %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Μετακίνηση κάτω" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Μετακίνηση πάνω" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Πολλαπλό" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Πρέπει να ορισθεί το χαρακτηρικό 'Ονομα'" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Τα αιτήματα μου (%1)" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Η Ημέρα μου" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Οι εγκρίσεις μου" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Τα dashboards μου" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Οι αποθηκευμένες αναζητήσεις μου" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "NEWLINE" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Όνομα" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Το όνομα χρησιμοποιείται ήδη" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Επώνυμη, κοινή συλλογή από στοιχεία πινακίδας" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Ποτέ" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Νέο" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Νέοι Σύνδεσμοι" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Νέος Κωδικός" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Νέα έγκριση εν αναμονή" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Νέα Αναζήτηση" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Νέα και ανοιχτά αιτήματα για %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Νέο ειδικό πεδίο" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Νέα ομάδα" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Νέα μηνύματα" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Νέος κωδικός πρόσβασης" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Στάλθηκε ειδοποίηση για νέο κωδικό πρόσβασης" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Νέα υπενθύμιση:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Νέα δικαιώματα" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Νέο scrip" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Νέο πρότυπο" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Νέο αίτημα" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Το νέο αίτημα δεν υπάρχει" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Νέος χρήστης με όνομα" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Νέοι παρατηρητές" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Επόμενο" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "NickName" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Ψευδώνυμο" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Όχι" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Το %1 δεν φορτώθηκε" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Δεν έχει οριστεί Κλάση" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Απουσία Ειδικού Πεδίου" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Δεν έχει οριστεί Ειδικό Πεδίο" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Δεν έχει οριστεί Ομάδα" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Απουσία αναζήτησης" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Δεν έχει οριστεί ουρά" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Δεν υπάρχει χρήστης RT. Παρακαλώ επικοινωνήστε με τον διαχειριστή σας στο RT" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Χωρίς Θέμα" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Χωρίς πρότυπο" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Καμία ενέργεια" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Δεν έχει οριστεί στήλη" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Δεν έχουν καταχωρηθεί σχόλια για το χρήστη" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Κανένα dashboard" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Δεν υπάρχει περιγραφή για %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Δεν υπάρχουν λεπτομέρειες" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Δεν έχει οριστεί ομάδα" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Δεν βρέθηκαν ομάδες να πληρούν τα κριτήρια αναζήτησης" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Δεν βρέθηκε κλειδί κατάλληλο για κρυπτογράφηση" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Δεν βρέθηκε κλειδί για αυτή την διεύθυνση" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Δεν βρέθηκε επισυναπτόμενο μήνυμα" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Δεν βρέθηκε όνομα" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Δεν υπάρχει ανάγκη για κρυπτογράφηση" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Δεν ορίστηκε κωδικός" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Δεν έχετε δικαίωμα δημιουργίας ουράς" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Δεν έχετε δικαίωμα δημιουργίας αιτημάτων στην ουρά %1" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Δεν έχετε δικαίωμα εμφάνισης του αιτήματος" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Δεν έχετε δικαίωμα αποθήκευσης καθολικών αναζητήσεων" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Δεν έχετε δικαίωμα καθορισμού προτιμήσεων" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Δεν έχετε δικαίωμα να δείτε το ενημερωμένο αίτημα" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Δεν υπάρχει δημόσιο κλειδί" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Δεν βρέθηκαν ουρές που να πληρούν τα κριτήρια αναζήτησης" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Δεν καθορίστηκε δικαίωμα" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Δεν βρέθηκε δικαίωμα" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Δεν έχουν δοθεί δικαιώματα." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Δεν βρέθηκε αναζήτηση προς λειτουργία." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Χωρίς θέμα" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Δεν υπάρχει τέτεοιο κλειδί ή είναι ακατάλληλο για υπογραφή" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Δε βρέθηκαν αιτήματα." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Δεν καθορίστηκε τύπος συναλλαγής" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Δεν βρέθηκαν χρησιμοποιήσιμα κλειδιά" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Δεν βρέθηκαν χρήστες που να πληρούν τα κριτήρια αναζήτησης" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Δεν στάληκε τιμή στο _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Κανένας" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Κανένα" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Πεδίο που δεν υπάρχει?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Δεν έχει οριστεί" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Δε βρέθηκε" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Δεν συνδέθηκε" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Δεν έχει οριστεί" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Δεν έχει ακόμη υπολοποιηθεί" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Σημειώσεις" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Δεν ήταν δυνατή η αποστολή της ειδοποίησης" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Ειδοποίηση σε AdminCcs" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Ειδοποίηση AdminCcs σαν Σχόλιο" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Ειδοποίηση Ccs" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Ειδοποίηση Ccs σαν Σχόλιο" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Ειδοποίηση άλλων Παραληπτών" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Ειδοποίηση άλλων Παραληπτών σαν Σχόλιο" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Ειδοποίηση Υπεύθυνου" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Ειδοποίηση Υπεύθυνου σαν σχόλιο" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Ειδοποίηση Υπεύθυνου για τα απορριφθέντα αιτήματα του" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Ειδοποίηση Υπεύθυνου για την έγκριση του αιτήματος του και ετοιμότητα για να ενεργήσει σε αυτό" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Ειδοποίηση Υπεύθυνου για την έγκριση του αιτήματος από κάπποιου ή όλους τους υπεύθυνους έγκρισης" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Ειδοποίηση Υπεύθυνου, Αιτητή, Ccs και AdminCcs" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Ειδοποίηση Υπεύθυνου, Αιτητών, Ccs και AdminCcs σαν Σχόλιο" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Ειδοποίηση Υπευθύνων και AdminCcs για καινούργια θέματα εν αναμονή έγκριση" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Ειδοποίηση Αιτητή ότι το αίτημα του έχει εγκριθεί από όλους τους υπεύθυνους έγκρισης" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Ειδοποίηση Αιτητή ότι το αίτημα του έχει εγκριθεί από κάποιους υπεύθυνους έγκρισης" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Ειδοποίηση Αιτητών" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Ειδοποίηση Αιτητών και Ccs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Ειδοποίηση Αιτητών και Ccs σαν Σχόλιο" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Να ενημερώνομαι για μη αναγνωσμένα μηνύματα" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Νοε" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Αριθμός αποτελεσμάτων αναζήτησης" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "Ή" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Αντικείμενο" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Δεν ήταν δυνατή η δημιουργία του αντικειμένου" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Δεν ήταν δυνατή η διαγραφή του αντικειμένου" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Το αντικείμενο δημιουργήθηκε" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Το αντικείμενο διαγράφηκε" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Το αντικείμενο τύπου %1 δεν μπορεί να πάρει προσαρμοσμένα πεδία" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Αναντιστοιχία τύπου Αντικειμένου" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Η λίστα αντικειμένων είναι άδεια" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Οκτ" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Εκτός σύνδεσης" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Επεξεργασία εκτός σύνδεσης" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Φόρτωση εκτός σύνδεσης" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "Όταν %1, %2 γράψε:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Όταν κλείνει" #: etc/initialdata:143 msgid "On Comment" msgstr "Όταν υπάρχει σχόλιο" #: etc/initialdata:115 msgid "On Correspond" msgstr "Όταν υπάρχει επικοινωνία" #: etc/initialdata:104 msgid "On Create" msgstr "Όταν δημιουργείται" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Όταν αλλάζει ο υπεύθυνος" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Όταν αλλάζει η προτεραιότητα" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Όταν αλλάζει η ουρά" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Όταν απορρίπτεται" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Όταν ανοίγει ξανά" #: etc/initialdata:178 msgid "On Resolve" msgstr "Όταν επιλύεται" #: etc/initialdata:149 msgid "On Status Change" msgstr "Όταν αλλάζει η κατάσταση" #: etc/initialdata:109 msgid "On Transaction" msgstr "Όταν γίνεται συναλλαγή" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Bcc μόνο μια φορά" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Cc μόνο μια φορά" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Δείξε μόνο εγκρίσεις για τις αιτήσεις που δημιουργήθηκαν μετά την %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Δείξε μόνο εγκρίσεις για τις αιτήσεις που δημιουργήθηκαν πριν την %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Δείξε μόνο τα προσαρμοσμένα πεδία για:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Ανοιχτά αιτήματα" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Άνοιγμα URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Άνοιξέ το" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Ανοιχτά αιτήματα" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Άνοιξε τα αιτήματα σε Αλληλογραφία" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Επιλογή" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Επιλογές" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ταξινόμηση κατά" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Οργανισμός" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Αρχικό αίτημα #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Καταγράφηκε εξερχόμενο email για σχόλιο" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Καταγράφηκε εξερχόμενο email" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Εξερχόμενο mail" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Με την πάροδο του χρόνου, η προτεραιότητα κινείται προς" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Ανατεθημένα Αιτήματα" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "OwnTicket" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Υπεύθυνος" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Ο Υπεύθυνος '%1' δεν έχει δικαιώματα για να κατέχει αυτό το αίτημα" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Ο υπεύθυνος άλλαξε από %1 σε %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Δεν ήταν δυνατός ο ορισμός υπευθύνου." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Ο Υπεύθυνος αλλάχθηκε επειγόντως από %1 σε %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "OwnerName" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Σελίδα" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Σελίδα 1 από 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Δε βρέθηκε η σελίδα" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Βομβητής" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "PagerPhone" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Κωδικός πρόσβασης" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Υπενθύμιση κωδικού" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Ο κωδικός άλλαξε" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Δεν έχει ορίστεί κωδικός." #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Ο κωδικός πρέπει να έχει τουλάχιστον %1 χαρακτήρες" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Ορίστηκε κωδικός" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Κωδικός πρόσβασης: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Κωδικός Πρόσβασης: Δεν επιτρέπεται η πρόσβαση" #: etc/initialdata:463 msgid "PasswordChange" msgstr "PasswordChange" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν." #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Μονοπάστι στο sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Άτομα" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Εκτέλεση ενέργειας καθορισμένης από τον χρήστη" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Διαμόρφωση Perl" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Ταξινόμιση αναζήτησης βιβλιοθηκών Perl" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Δεν επιτρέπεται η πρόσβαση" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Δεν επιτρέπεται η πρόσβαση" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Προσωπικές Πινακίδες" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Προσωπικές Ομάδες" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Αριθμοί τηλεφώνου" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Παρακαλώ ελέγξτε την διεύθυνση URL και δοκιμάστε ξανά" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Παρακαλώ εισάγετε τον κωδικό σας σωστά." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Παρακαλώ εισάγετε τον κωδικό σας." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Πιθανός κρυμμένες αναζήτήσεις" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Προτιμήσεις" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Προτιμήσεις %1 για χρήστη %2" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Οι προτιμήσεις για %1 αποθηκεύτηκαν" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Οι προτιμήσεις για τον χρήστη %1 αποθηκεύτηκαν" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Αποθηκεύτηκαν οι προτιμήσεις." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Κλειδί προτίμησης: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Κλειδί προτίμησης" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Προηγ" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Προηγούμενο" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Εκτύπωση των αποτελεσμάτων των συνοπτικών μηνυμάτων στο STDOUT· να μην ταχυδρομηθούν. Να μην σημειωθούν σαν απεσταλμένα" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Εκτύπωση μηνύματος" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Προτεραιότητα" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Προτεραιότητα ξεκινά σε" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Προστασία Προσωπικών Δεδομένων" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Προστασία Προσωπικών Δεδομένων:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Ιδιωτικό Κλειδί" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Προνομιούχο" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Προνομιούχα κατάσταση: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Προνομιούχοι χρήστες" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Επεξεργασία άνευ συναλλαγής, κάποιες συνθήκες και ενέργειες μπορεί να αποτύχουν. Εξετάστε την χρήση της παραμέτρου --transaction" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Ψευδοομάδα για εσωτερική χρήση" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Το δημόσιο κλειδί '0x%1' χρειάζετε για επαλήθευση της υπογραφής" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Ερωτήματα" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Ερώτημα" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Δημιουργία Ερωτημάτων" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Ερώτημα:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Ουρά" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Η ουρά %1 δε βρέθηκε" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Όνομα Ουράς" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Η ουρά υπάρχει ήδη" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Δεν ήταν δυνατή η δημιουργία της ουράς" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Δεν ήταν δυνατή η φόρτωση της ουράς" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Η ουρά δημιουργήθηκε" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Η ουρά απενεργοποιήθηκε" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Η ουρά απενεργοποιήθηκε" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Ταυτότητα ουράς" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Δεν βρέθηκε η ουρά" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Δικαιώματα ουράς" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Κλειδί ουράς" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "QueueAdminCc" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "QueueCc" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "QueueName" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "QueueWatcher" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Ουρές" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Ουρές που διαχειρίζομαι" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Ουρές για τις οποίες είμαι AdminCc" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Γρήγορη αναζήτηση" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Γρήγορη δημιουργία αιτήματος" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 για %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Διαχείριση RT" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Email Διαχείριστή RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Διαμόρφωση RT" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "Σφάλμα RT" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "Αυτοεξυπηρέτηση RT" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Μέγεθος RT" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "To RT με μια ματιά" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "To RT με μια ματιά για τον χρήστη %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "Το RT επικοινωνεί με τους χρήστες για νέα αιτήματα ή νέα αλληλογραφία σε αιτήματα. Καθορίστε που είναι το sendmail (ή άλλο πρόγραμμα συμβατό με sendmail σαν αυτό που παρέχετι απο το postifx). Το RT πρέπει να ξέρει ποιο να ειδοποιήσει σε περίπτωση που κάποιος στείλει άκυρο email. Η διεύθυνση αυτή δεν πρέπει να είναι κάποια που εισέρχεται πίσω στο RT" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "To RT μπορεί να περιλάβει περιεχόμενο από κάποια άλλη υπηρεσία Ιστού ότανπροβάλλει αυτό το ειδικό πεδίο" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "Το RT μπορεί να κάνει τις τιμές σε αυτό το ειδικό πεδίο, υπερ-συνδέσεις σε άλλη υπηρεσία." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Βασικές μεταβλητές RT" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "To RT αδυνατεί να φυλάξει την συνεδρία σας" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT για %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "To RT είναι ένα σύστημα διαχείρισης αιτημάτων, επαγγελματικού επιπέδου, που σας επιτρέπει να διαχειρίζεστε τα καθήκοντα, ζητήματα, αιτήσεις, βλάβες ή οτιδήποτε άλλο αίτημα, έξυπνα και αποτελεσματικά" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "Το RT χρησιμοποιείται από εταιρίες στη λίστα Fortune 100, εταιρίες ενός ατόμου κυβερνήσεις, εκπαιδευτικά ιδρύματα, νοσοκομεία, μη κερδοσκοπικούς/μη κυβερνητικούς οργανισμούς, βιβλιοθήκες, έργα ανοικτού κώδικα και όλους τους τύπους οργανισμών στις 7 ηπείρους. ( Ναι ακόμα και στην Ανταρκτική!)" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "Το RT θα συνδεθεί στην βάση δεδομένων χρησιμοποιώντας αυτό τον χρήστη. Θα δημιουργηθεί για σας αυτόματα." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "Το RT θα δημιουργήσει ένα χρήστη με όνομα \"root\" και θα το ορίσει αυτό σαν τον κωδικό του" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "Το RT θα ψάξει για οτιδήποτε εισάγετε στο θέμα του αιτήματος" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "Το RT θα αντικαταστήσει τα %1 και %2 με την εγγεγραμένη ταυτότητα και τιμή ειδικού πεδίου, αντίστοιχα" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "Το RT θα αντικαταστήσει τα __id__ και __CustomField__ με την εγγεγραμένη ταυτότητα και τιμή ειδικού πεδίου, αντίστοιχα" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "Το RT θα χρησιμοποήσει αυτή την συμβολοσειρά για να προσδιορίσει επακριβώς την εγκατάσταση σας και κοιτάζει το θέμα των email για να αποφασίσει σε ποιο αίτημα εφαρμόζεται το μήνυμα. Σας συνιστούμε να ορίσετε αυτό το πεδίο στο τομέα διαδικτύου σας. (πχ: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "Το RT δουλεύει με αρκετούς διαφορετικούς τύπους βάσεων δεδομένων. Οι MySQL, PostgreSQL, Oracle και SQLite υποστηρίζονται όλες" #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT/Διαχείριση/Επεξεργασία ομάδας %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "Η επιλογή RTAddressRegexp στις ριθμίσεις δεν ταιριάζει με το %1" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Πραγματικό όνομα" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "RealName" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Παραλήπτης" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Καταγραφή όλων των ενημερώσεων" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Αναδρομικό μέλος" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Προστέθηκε η παραπομπή απο %1" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Διαγράφηκε η παραπομπή απο %1" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Προστέθηκε η παραπομπή στο %1" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Διαγράφηκε η παραπομπή στο %1" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Ανεφερόμενο από" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "ReferredToBy" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Αναφέρεται σε" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "RefersTo" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Ανανέωση" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Ανανέωση αρχικής σελίδας κάθε 10 λεπτά." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Ανανέωση αρχικής σελίδας κάθε 120 λεπτά." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Ανανέωση αρχικής σελίδας κάθε 2 λεπτά." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Ανανέωση αρχικής σελίδας κάθε 20 λεπτά." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Ανανέωση αρχικής σελίδας κάθε 5 λεπτά." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Ανανέωση αρχικής σελίδας κάθε 60 λεπτά." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Ανανέωση αποτελεσμάτων αναζήτησης κάθε 10 λεπτά." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Ανανέωση αποτελεσμάτων αναζήτησης κάθε 120 λεπτά." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Ανανέωση αποτελεσμάτων αναζήτησης κάθε 2 λεπτά." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Ανανέωση αποτελεσμάτων αναζήτησης κάθε 20 λεπτά." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Ανανέωση αποτελεσμάτων αναζήτησης κάθε 5 λεπτά." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Ανανέωση αποτελεσμάτων αναζήτησης κάθε 60 λεπτά." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Ανανέωση αυτής της σελίδας κάθε %1 λεπτά." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Προστέθηκε η υπενθύμιση '%1'" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Ολοκληρώθηκε η υπενθύμιση '%1'" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Επανεργοποιήθηκε η υπενθύμιση '%1'" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Υπενθύμιση αιτήματος #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Υπενθυμίσεις" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Υπενθυμίσεις για το αίτημα #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Αφαίρεση AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Αφαίρεση Σελιδοδείκτη" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Αφαίρεση Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Αφαίρεση Αιτούντος" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Απάντηση" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Διεύθυνση απάντησης" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Απάντηση στους αιτούντες" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Απάντηση στα αιτήματα" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "ReplyToTicket" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Αναφορές" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Αιτών" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "RequestorGroup" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Αιτούντες" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Τα αιτήματα πρέπει να απαντηθούν σε" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Η υποχρεωτική παράμετρος '%1' δεν έχει οριστεί" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Επαναφορά" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Επαναφορά μυστικού κουπονιού ταυτοποίησης" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Επαναφορά προκαθορισμένων" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Κατοικία" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Επίλυση" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Επίλυση αιτήματος #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Επιλυμμένα" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Επιλυμμένα από τον υπεύθυνο" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Επιλυμμένα στο εύρος ημερομηνιών" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Επιλυμμένα αιτήματα για την περίοδο, ομαδοποιημένα βάση του υπεύθυνου" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Επιλυμμένα αιτήματα, ομαδοποιημένα με υπεύθυνο" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "ResolvedRelative" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Απάντηση" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Αποτελέσματα" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Επιστροφή στο αίτημα" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Επαναπληκτρολόγηση Κωδικού" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Επαναφορά" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Εξουσιοδότηση Δικαιώματος" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Παραχώρηση Δικαιώματος" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Φόρτωση Δικαιώματος" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Το Δικαίωμα δεν μπόρεσε να ανακληθεί" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Το Δικαίωμα δεν έχει βρεθεί" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Το Δικαίωμα δεν έχει φορτωθεί" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Ανάκληση Δικαιώματος" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Τα δικαιώματα δεν μπόρεσαν να παραχωρηθούν στο %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Ρόλοι" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Γραμμές" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Γραμμές ανά κουτί" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Γραμμές ανά σελίδα" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "Το SQLite είναι μια βάση δεδομένων που δεν χρειάζεται διακομιστή ή οτιδήποτε ριθμίσεις. Οι προγραμματιστές του RT το χρησιμοποιούν για δοκιμές, παρουσίαση και ανάπτυξη, αλλά δεν είναι κατάλληλο για διακομιστή RT μαζικής παραγωγής." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Σαβ" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Σάββατο" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Αποθήκευση" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Αποθήκευση Αλλαγών" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Αποθήκευση Προτιμήσεων" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Αποθήκευση ως νέο" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Αποθήκευση %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Δεν βρέθηκε η Αποθηκευμένη Αναζήτηση %1" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Αποθηκευμένα διαγράμματα" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Αποθηκευμένες αναζητήσεις" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Δημιουργία Scrip" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Πεδια Scrip" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Διαγραφή Scrip" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Scrips και Παραλήπτες" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scrips που εφαρμόζονται σε όλες τις ουρές" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Αναζήτηση" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Προτιμήσεις Αναζήτησης" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Αναζήτηση εγκρίσεων" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Αναζήτηση αιτημάτων" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Αναζήτηση αιτημάτων. Εισάγετε Ταυτότητες, ονόματα ουρών, Υπεύθυνους βάση του ονοματός χρήστη και Αιτητές βάση του email." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Επιλογές Αναζήτησης" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Ομαδοποίηση αιτημάτων αναζήτησης ως προς %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Διάστημα ανανέωσης αποτελεσμάτων αναζήτησης" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Η αναζήτηση στο πλήρες κείμενο κάθε αιτήματος μπορεί να πάρει αρκετή ώρα, αλλά αν πρέπει να γίνει, μπορείτε να να ψάξετε για οτιδήποτε λέξη στην ιστορία του αιτήματος πληκτρολογόντας fulltext:λέξη." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Μυστικό κουπόνι ταυτοποίησης" #: bin/rt-crontool:350 msgid "Security:" msgstr "Ασφάλεια:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Δείτε επίσης:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Προβολή τιμών ειδικών πεδίων" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Προβολή ειδικών πεδίων" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Δείτε τα ακριβή εξερχόμενα μηνύματα email και τους παραλήπτες τους" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Προβολή προσωπικών σχολίων αιτητή" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Προβολή περίληψης αιτημάτων" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "SeeCustomField" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "SeeDashboard" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "SeeGroup" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "SeeGroupDashboard" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "SeeOwnDashboard" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "SeeQueue" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Επιλογή" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Επιλογή Τύπου Βάσης Δεδομένων" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Επιλογή Ειδικού Πεδίου" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Επιλογή ομάδας" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Επιλογή ουράς" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Επιλογή ουράς για το νέο σας αίτημα" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Επιλογή χρήστη" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Επιλογή άλλης γλώσσας" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Επιλογή ειδικών πεδίων για όλες τις ουρές" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Επιλογή ειδικών πεδίων για όλες τις ομάδες" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Επιλογή ειδικών πεδίων για όλους τους χρήστες" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Επιλογή ειδικών πεδίων για αιτήματα σε όλες τις ουρές" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Επιλογή ειδικών πεδίων για συναλλαγές στα αιτήματα σε όλες τις ουρές" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Επιλογή ομάδας" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Επιλογή πολλαπλών τιμών" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Επιλογή μιας τιμής" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Επιλογή ουρών για εμφάνιση στην σελίδα \"To RT με μια ματιά\"" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Επιλογή scrip" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Επιλογή προτύπου" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Επιλογή μέχρι και %1 τιμών" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Επιλεγμένα Προσαρμοσμένα Πεδία" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Το επιλεγμένο κλειδί είτε δεν είναι έμπιστο είτε δεν υπάρχει" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Επιλεγμένα αντικείμενα" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "οι επιλογές έχουν μεταβληθεί. Παρακαλώ αποθηκεύστε τις αλλαγές σας" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Επιτυχής αποστολή email" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Αποστολή email σε υπεύθυνο και όλους τους παρατηρητές" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Αποστολή email σε υπεύθυνο και όλους τους παρατηρητές σαν σχόλιο" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Αποστολή email σε αιτητή και Ccs" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Αποστολή email σε αιτητή και Ccs σαν σχόλιο" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Αποστολή μηνύματος στους αιτούντες" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Αποστολή email στον κατάλογο των Ccs και Bccs" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Αποστολή email στους Ccs" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Αποστολή email στους Ccs σαν σχόλιο" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Αποστολή email στους AdminCcs" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Αποστολή email στους AdminCcs σαν σχόλιο" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Αποστολή email στον υπεύθυνο" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Σεπ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Ρυθμίσεις" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "Θέλετε να σας στέλνει το RT email για αλλαγές που κάνατε στα αιτήματα;" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Εμφάνιση" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Εμφάνιση στηλών" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Εμφάνιση αποτελεσμάτων" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Εμφάνιση αιτημάτων σε επίπεδο %1" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Εμφάνιση εγκεκριμένο αιτημάτων" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Εμφάνιση επίσης" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Εμφάνιση Βασικών" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Εμφάνιση απορριφθέντων αιτημάτων" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Εμφάνιση λεπτομερειών" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Εμφάνιση περιγραφών συνδέσμων" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Εμφάνιση παλαιότερου ιστορικού πρώτα" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Εμφάνιση εκκρεμών αιτημάτων" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Εμφάνιση αιτημάτων που αναμένουν έγκριση" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "ShowACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "ShowApprovalsTab" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "ShowConfigTab" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "ShowOutgoingEmail" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "ShowSavedSearches" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "ShowScrips" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "ShowTemplate" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "ShowTicket" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "ShowTicketComments" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Καταστροφέας" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Ο Καταστροφέας χρειάζεται ένα κατάλογο για να μπορεί να γράφει. Παρακαλώ ελέγξτε ότι έχετε το %1 και ότι είναι εγγράψιμο από τον διακομιστή Ιστού σας" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Ο Καταστροφέας χρειάζεται ένα κατάλογο για να μπορεί να γράφει. Παρακαλώ ελέγξτε ότι έχετε το %1 και ότι είναι εγγράψιμο από τον διακομιστή Ιστού σας" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Πλευρική μπάρα" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Υπογραφή" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Προεπιλεγμένη είσοδος" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Εγγραφή σαν Αιτητής ή σαν Cc σε αίτημα ή ουρα" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Εγγραφή σαν AdminCc αιτήματος ή ουράς" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Υπογραφή" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Απενεργοποίηση υπογραφής" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Ενεργοποίηση υπογραφής" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Απλή αναζήτηση" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Ενιαίο" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Όνομα ιστοχώρου" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Μέγεθος" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Μενού Παράληψης" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Παράληψη απενεργοποιημένου χρήστη" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Μικρό" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Μερικοί περιηγητές μπορεί να φορτώνουν μόνο το περιεχόμενο του τομέα που βρίσκεται ο διακομιστής RT" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Κάτι πάει λάθος. Επικοινωνήστε με τον διαχειριστή του συστήματος σας" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ταξινόμηση" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Ταξινόμηση" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Πηγαίος Κώδικας" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Καθορίστε αν θα τρέχει ημερισίως ή εβδομαδιαία." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Λογιστικό φύλλο" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Στάδιο" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Ξεκίνησε" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "StartedRelative" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Ξεκινά" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "StartsRelative" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Πολιτεία" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Κατάσταση" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Αλλαγή κατάστασης" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Η κατάσταση άλλαξε από %1 σε %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Ανάκτηση" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Ανάκτηση αιτημάτων" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "StealTicket" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Βήμα %1 από %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Ανάκτηση" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Στυλ" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Θέμα" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Ετικέττα θέματος" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Το θέμα άλλαξε σε %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "SubjectTag" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Το SubjectTag άλλαξε σε %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Υποβολή" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Εγγραφή" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Εγγραφείτε στην πινακίδα %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Εγγραφείτε στις πινακίδες" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "SubscribeDashboard" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Έγινε εγγραφή στη πινακίδα %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Εγγραφή" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Η εγγραφή δεν έχει δημιουργηθεί: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Επιτυχής αποκρυπτογράφηση δεδομένων" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Επιτυχής κρυπτογράφηση δεδομένων" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Κυρ" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Κυριακή" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "SuperUser" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Παγωμένο" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Ρυθμίσεις συστήματος" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Πινακίδες Συστήματος" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Προεπιλογή Συστήματος" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Σφάλμα Συστήματος" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Σφάλμα Συστήματος: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Εργαλεία Συστήματος" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Σφάλμα Συστήματος. Αδυναμία εξουσιοδότησης δικαιώματος" #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Σφάλμα Συστήματος. Αδυναμία παραχώρισης δικαιώματος" #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Ομάδες Συστήματος" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Δικαιώματα Συστήματος" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup για εσωτερική χρήση" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Ανάληψη" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Ανάληψη αιτημάτων" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "TakeTicket" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Αναλήφθηκε" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Κατατομπίστε μας πως θα βρείτε την βάση δεδομένων που θα χρησιμοποιεί το RT" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Πρότυπο" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Πρότυπο #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Διαγραφή προτύπου #%1" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Το πρότυπο '%1' δεν βρέθηκε" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Το πρότυπο είναι κενό" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Το πρότυπο ελιναι υποχρεωτική παράμετρος" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Το πρότυπο αναλύθηκε" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Σφάλμα ανάλυσης προτύπου" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Πρότυπα" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Το αρχείο κειμένου δεν εμφανίζεται γιατί έχει απενεργοποιηθεί στις προτιμίσεις" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Αυτή είναι ήδη η τρέχουσα τιμή" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Αυτή δεν έιναι η κατάλληλη τιμή για αυτό το ειδικό πεδίο" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Αυτή δεν είναι ή ίδια τιμή" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Η ουρά δεν υπάρχει" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Το αίτημα έχει ανεπίλητες εξαρτήσεις" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Ο χρήστης είναι ήδη υπεύθυνος για το αίτημα" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Ο χρήστης δεν υπάρχει" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Αυτός ο χρήστης είναι ήδη προνομιούχος" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Αυτός ο χρήστης είναι ήδη μη προνομιούχος" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Αυτός ο χρήστης έχει γίνει προνομιούχος" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Αυτός ο χρήστης έχει γίνει μη προνομιούχος" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Ο χρήστης δεν μπορεί να είναι υπεύθυνος για αιτήματα σε αυτή την ουρά" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Δεν είναι αριθμητικό id" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Τα βασικά" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Οι CC ενός αιτήματος" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "ο κωδικός DBA της βάσης δεδομένων είναι λανθασμένος" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Ο AdminCc ενός αιτήματος" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Το όνομα τομέα της βάσης δεδομένος σας (πχ 'db.example.com')" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Η ακόλουθη εντολή θα βρεί όλα τα ενεργά αιτήματα στην ουρά 'general' και θα ορίσει την προτεραιότητα τους στο 99 αν δεν έχουν τροποποιηθεί σε 4 ώρες" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Τα ακόλουθα ερωτήματα έχουν διαγραφεί και θα αφαιρεθούν από την πινακίδα μόλις ενημερωθεί το παράθυρο της" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Τα ακόλουθα ερωτήματα μπορεί να μην είναι ορατά σε όλους τους χρήστες που μπορούν να δουν αυτή την πινακίδα" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Το πλήκτρο έχει απενεργοποιηθεί" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Το κλειδί έχει ανακληθεί" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Το κλειδί έχει λήξει" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Το κλειδί είναι πλήρως έμπιστο" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Το κλειδί είναι απολύτως έμπιστο" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "έχει οριστεί νέα τιμή." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Ο υπεύθυνος ενός αιτήματος" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Η σελίδα που καλέσατε δεν έχει βρεθεί" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Ο αιτητής ενός αιτήματος" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Οι ρυθμίσεις που επιλέξατε έχουν αποθηκευτεί σε %1" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Το σύστημα αδυνατεί να υπογράψει εξερχόμενα email. Αυτό συνήθως δεικνύει ότι η φράση-κλειδί δεν ορίδτηκε σωστά, ή ότι το GPG είναι κάτω. Παρακαλώ ενημερώστε τον διαχειριστής σας αμέσως. Οι προβληματικές διευθύνσεις είναι:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Θέμα" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Υπάρχουν αρκετά κλειδιά κατάλληλα ηια κρυπτογράφηση" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Υπάρχουν αδιάβαστα μηνύματα σε αυτό το αίτημα" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Το κλειδί αυτό είναι οριακά έμπιστο" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Δεν υπάρχει κλειδί κατάλληλο για κρυπτογράφηση" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Υπάρχει κατάλληλο κλειδί, αλλά δεν έχει οριστεί επίπεδο εμπιστοσύνης" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Αυτά τα σχόλια γενικα δεν είναι ορατά στον χρήστη" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Αυτές οι επιλογές ρυθμίσεων καλύπτουν μερικά από τα βασικά που χρειάζονται για να δουλέψει το RT. Πρέπει να ξέρουμε το όνομα της RT εγκατάστασης σας και το τομέα όπου υπάρχει το RT. Θα χρειαστεί να οριστεί ο κωδικός για τον προεπιλεγμένο διαχειριστή." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Αυτό το ειδικό πεδίο δεν εφαρμόζεται για αυτό το αντικείμενο" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο μόνο σε διαχειριστές" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Αυτό μπορέι να σημαίνει ότι ο κατάλογος '%1' δεν είναι εγγράψιμος ή ότι κάποιος πίνακας από την βάση δεδομένων, λείπει ή είναι κατεστραμμένος" #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Αυτό το μήνυμα θα σταλεί σε..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Αυτό το εργαλείο επιτρέπει την αυθαίρετη χρήση perl modules από μέσα στο RT" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Αυτή η συνάλλαγη δεν φαίνεται να έχει περιεχόμενο" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Τα %1 ψηλής προτεραιότητας αιτήματα αυτού του χρήστη" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Πεμ" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Πέμπτη" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Αίτημα" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Αίτημα #%1 Συνολική ενημέρωση: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Γράφημα σχέσεων αιτήματος #%1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Αίτημα #%1" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Αίτημα #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Αίτημα %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "To αίτημα %1 δημιουργήθηκε στην ουρά '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Αίτημα %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Ειδικά Πεδία Αιτήματος" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Ιστορικό Αιτήματος # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Το Αίτημα Επιλήθηκε" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Αναζήτηση Αιτήματος" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Συναλλαγές Αιτήματος" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Περιεχόμενο Αιτήματος" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Τύπος περιεχομένου Αιτήματος" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Το αίτημα δεν έχει δημιουργηθεί λόγω εσωτερικού σφάλματος" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Δεν ήταν δυνατή η φόρτωση του αιτήματος" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Εμφάνιση αιτήματος" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Μεταδεδομένα αιτήματος" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Η κατάσταση του αιτήματος άλλαξε" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "Module αναζήτησης TicketSQL" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Αιτήματα" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Αιτήματα %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Αιτήματα %1 από %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Αιτήματα που δημιουργήθηκαν πριν από" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Αιτήματα που δημιουργήθηκαν μετά από" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Αιτήματα που επιλήθηκαν πριν από" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Αιτήματα που επιλήθηκαν μετά από" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Αιτήματα που εξαρτόνται από αυτή την έγκριση:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Εκτιμώμενος χρόνος" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Χρόνος που απομένει" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Χρόνος εργασίας" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Χρόνος απεικόνισης" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "TimeEstimated" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "TimeLeft" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "TimeWorked" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Ζώνη Ώρας" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Τίτλος" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Προς" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Για ερωτήματα σχετικά με υποστήριξη, εκπαίδευση, παραμετροποιημένη ανάπτυξη ή αδειοδότηση, παρακαλώ επικοινωνήστε με %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Told" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "ToldRelative" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Εργαλεία" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Σύνολο" #: etc/initialdata:249 msgid "Transaction" msgstr "Συναλλαγή" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Η συναλλαγή %1 διαγράφηκε" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Η συναλλαγή δημιουργήθηκε" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Ειδικά Πεδία Συναλλαγών" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Το Transaction->Create δεν μπόρεσε μια και δεν καθορίστηκε ο τύπος του αντικειμένου και η ταυτότητα του" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "TransactionDate" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Οι συναλλαγές είναι αμετάβλητες" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Έμπιστο" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Τρι" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Τρίτη" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Τύπος" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Αλλαγή τύπου από '%1' σε '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Δεν έχει καθοριστεί ο τύπος και ταυτότητα του αντικειμένου" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Δεν έχει γίνει εγγραφή στην πινακίδα %1: Δεν επιτρέπεται η πρόσβαση" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Μη υλοποιημένο" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix login" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Άγνωστο (δεν εχει καθοριστεί τιμή εμπιστοσύνης)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Άγνωστο (αυτή η τιμή είναι καινούργια για το σύστημα" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Άγνωστη Κωδικοποίηση Περιεχομένου %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Άγνωστο πεδίο: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Απεριόριστο" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Απεριόριστο" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Ανώνυμη αναζήτηση" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Μη προνομιούχος" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Απεπιλεγμένα Προσαρμοσμένα Πεδία" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Απεπιλεγμένα αντικείμενα" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Αποπροσδιορισμός ιδιωτικού κλειδιού" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Χωρίς ανάληψη" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Ενημέρωση" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Ενημέρωση γραφήματος" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Ενημέρωση αιτήματος" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Ενημέρωση τύπου" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Ενημέρωση μορφής και αναζήτηση" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Ενημέρωση πολλαπλών αιτημάτων" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Ενημάρωση δεν εγγράφηκε" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Ενημέρωση αιτήματος" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Ενημέρωση αιτήματος #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Ενημέρωση αιτήματος #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Ο τύπος ενημέρωσης δεν ήταν ούτε αλληλογραφία ούτε σχόλιο" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "UpdateStatus" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Ενημερώθηκε" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Ενημέρωση αποθηκευμένης αναζήτησης" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Ανέβασμα" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Ανέβασμα πολλών αρχείων" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Ανέβασμα πολλών εικόνων" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Ανέβασμα αρχείου" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Ανέβασμα εικόνας" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Ανέβασμα μέχρι και %1 αρχείων" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Ανέβασμα μέχρι και %1 εικόνων" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Ανέβασμα αλλαγών" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Χρήση: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Χρήση SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Χρησιμοποίησε κανόνες CSS για εμφάνιση monospaced κειμένου διατηρώντας την μορφοποίηση αλλά περιπτύσσοντας το κείμενο αναλόγως. Αυτό δεν δουλεύει πολύ καλά με IE6 και πρέπει να χρησιμοποιήσετε την προηγούμενη επιλογή" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Χρήση προεπιλεγμένου (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Χρήση άλλων εργαλείων διαχείρισης RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Χρησιμοποιείστε το προεπιλεγμένο του συστήματος (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Χρησιμοποιήστε αυτό για να προστατεύσετε τη μορφοποίηση απλού κειμένου" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Χρήστης" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Ο χρήστης '%1' δεν έχει βρεθεί" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Χρήστης (δημιουργήθηκε - έληξε)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Ορισμένο από το χρήστη" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Συνθήκες και ενέργειες ορισμένα από χρήστη" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Δικαιώματα Χρήστη" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Ο χρήστης ζήτησε αγνώστου τύπου ενημέρωση για το ειδικό πεδίο %1 για %2 αντικείμενο #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Ο χρήστης δεν έχει δημιουργηθεί" #: lib/RT/User.pm:262 msgid "User created" msgstr "Ο χρήστης δημιουργήθηκε" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Ομάδες ορισμένες από χρήστη" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Ο χρήστης απενεργοποιήθηκε" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Ο χρήστης ενεργοποιήθηκε" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Ο χρήστης έχει κενή διεύθυνση email" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Φόρτωση Χρήστη" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Κλειδιά GnuPG χρήστη" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Ομάδες ορισμένες από χρήστη" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Όνομα Χρήστη" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Μορφή Ονόματος Χρήστη" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Χρήστες" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Χρήστες που πληρούν τα κριτήρια αναζήτησης" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Χρήση συναλλαγής #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Έγκυρο Ερώτημα" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Επικύρωση" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Τιμή" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Τιμές" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Μεταβλητή" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Διάφορες αναφορές RT" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Έκδοση" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Δείτε τις πινακίδες για αυτή την ομάδα" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Δείτε τις προσωπικές πινακίδες" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Δείτε τις πινακίδες συστήματος" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "Ύψος προγράμματος σύνταξης WYSIWYG" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "Προγράμματος σύνταξης μηνυμάτων WYSIWYG" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Προειδοποίηση! Δεν έχει υπογραφεί!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Προειδοποίηση: δεν έχετε διεύθυνση ηλεκτρονικού ταχυδρομείου, έτσι δεν θα λάβετε αυτή τη πινακίδα μέχρι να το θέσετε" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Παρακολούθηση" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "WatchAsAdminCc" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Παρατηρητής" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "WatcherGroup" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Παρατηρητές" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Έχει βρεθεί η βάση δεδομένων σας και έχει γίνει σύνδεση σαν DBA. Μπορείτε να συνεχίσετε την παραμετροποίηση του RT από την επιλογή 'Παραμετροποίηση Βασικών'" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Πρέπει να γνωρίζουμε το όνομα της βάσης δεδομένων που θα χρησιμοποιεί το RT και πού να το βρει. Πρέπει επίσης να γνωρίζουμε το όνομα χρήστη και τον κωδικό πρόσβασης του χρήστη που θα χρησιμοποιεί το RT. Το RT μπορεί να δημιουργήσει τη βάση δεδομένων και από τον χρήστη για σας, γι 'αυτό ζητάμε το όνομα χρήστη και τον κωδικό πρόσβασης ενός χρήστη με προνόμια DBA. Κατά τη διάρκεια του βήματος 6 της διαδικασίας εγκατάστασης θα χρησιμοποιήσουμε αυτές τις πληροφορίες για να δημιουργηθεί και να προετοιμαστεί η βάση δεδομένων του RT." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "θύρα Ιστού" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Τετ" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Τετάρτη" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Εβδομαδιαία σύνοψη" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Καλώς ήρθατε στο RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Τι έκανα σήμερα" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Τι είναι το RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Όταν το RT δεν μπορεί να χειριστεί ένα μήνυμα email, που πρέπει να διαβιβάζετε" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Όταν το RT στέλνει ένα email ορίζει τις κεφαλίδες From: και Reply-To: έτσι έτσι ώστε οι χρήστες να μπορούν να το προσθέσουν στην συνομιλία πατώντας απλώς Reply στο προγραμμα email τους. Χρησιμοποιεί διαφιρετικές διευθύνσεις για Αλληλογραφία και Σχόλια. Αυτές μπορεί να αλλαχθούν για κάθε ουρά. Οι διευθύνσεις αυτές θα πρέπει να οριστούν πριν χρησιμοποιηθεί το πρόγραμμα rt-mailgate" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Όταν δημιουργείται αίτημα" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Όταν δημιουργείται ένα αίτημα, να ειδοποιηθουν ο Υπεύθυνος και οι AdminCC για το θέμα που αναμένει την έγκριση τους" #: etc/initialdata:110 msgid "When anything happens" msgstr "Όταν συμβαίνει ο,τιδήποτε" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Όταν πατήσετε το 'Ελέγξτε Συνδεσιμότητα Βάσης Δεδομένων' ενδεχομένος να υπάρχει μια μικρή καθυστέρηση καθώς το RT προσπαθεί να συνδεθεί με την βάση" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Όταν κλείνει ένα αίτημα" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Όταν απορρίπτεται ένα αίτημα" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Όταν ένα αίτημα ανοίγει ξανά" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Όταν ένα αίτημα επιλύεται" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Όταν ο αλλάζει ο υπεύθυνος ενός αιτήματος" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Όταν αλλάζει η προτεραιότητα ενός αιτήματος" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Όταν αλλάζει η ουρά ενός αιτήματος" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Όταν αλλάζει η κατάσταση ενός αιτήματος" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Όταν συμβαίνει μια συνθήκη ορισμένη από χρήστη" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Όταν λαμβάνονται σχόλια" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Όταν έρχεται αλληλογραφία" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Τοποθεσία του προγράμματος sendmail" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Ξεκαθάρισμα" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Εργασία" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "Τηλέφωνο εργασίας" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Χρόνος Εργασίας" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Ναι" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Είστε ήδη υπεύθυνος για το αίτημα" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Πρόκειται να κρυπτογραφήσετε τα εξερχόμενα μηνύματα email αλλά υπάρχουν προβλήματα με τα δημόσια κλειδιά του παραλήπτη. Πρέπει να επιλυθεί το πρόβλημα ή να απενεργοποιηθεί η αποστολή μηνυμάτων σε παραλήπτες με προβληματικά κλειδιά ή να απενεργοποιηθεί η κρυπτογράφηση." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Πρόκειται να κρυπτογραφήσετε τα εξερχόμενα μηνύματα email αλλά υπάρχει προβλήμα με το δημόσιο κλειδί του παραλήπτη. Πρέπει να επιλυθεί το πρόβλημα ή να απενεργοποιηθεί η αποστολή μηνυμάτων σε αυτό το παραλήπτη ή να απενεργοποιηθεί η κρυπτογράφηση." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Δεν είστε εξουσιοδοτημένος χρήστης" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Μπορείτε πάτε στο πρώτο αδιάβαστο μηνυμα η να πάτε στο πρώτο αδιάβαστο μηνυμα κα ινα σημειώσετε όλα τα μηνύματα σαν διαβασμένα." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Μπορείτε επίσης να επεξεργαστήτε την ίδια προκαθορισμένη αναζήτηση" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Δεν μπορεί να οριστεί ο κωδικός" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Μπορείτε να αναθέσετε εκ νέου μόνο τα αιτήματα που έχετε στην κατοχή σας ή για τα οποία δεν έχει οριστεί υπεύθυνος" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Μπορείτε να αναλάβετε μόνο τα αιτήματα στα οποία δεν έχει οριστεί υπεύθυνος" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Δεν έχετε προνόμια SuperUser." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Βρήκατε %1 αιτήματα στην ουρά %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Έχετε βγει από το RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε αιτήματα στην εν λόγω ουρά." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Δεν μπορείτε να δημιουργήσετε αιτήματα στην εν λόγω ουρά" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Πρέπει να δώσετε κωδικό Διαχειριστή" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Θα κατευθυνθείτε απευθείας σε σελίδα εισόδου. Θα μπορείτε να συνδεθήτε με το όνομα χρήστη %1 και τον κωδικο που ορίσατε προηγουμένως." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Θα κατευθυνθείτε απευθείας σε σελίδα εισόδου. Θα μπορείτε να συνδεθήτε με το όνομα χρήστη root και τον κωδικο που ορίσατε προηγουμένως." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Θα πρέπει να επιλέξετε μια βάση δεδομένων στην οποία είτε εσείς είτε ο διαχειριστής συστημάτων σας είστε πιο καταρτισμένοι" #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Βλέπετε αυτό το μήνυμα επιδή ξεκινήσατε τον διακομιστή RT χωρίς να υπάρχει έτοιμη βάση δεδομένων. Μάλλον, είναι η πρώτη φορά που τρέχετε το RT. Αν Πατήσετε το Ας ξεκινήσουμε! πιο κάτω, το RT θα σας καθοδηγήσει ώστενα ρυθμίσετε σωστά τον διακομιστή RT και την βάση δεδομένων σας." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Βλέπετε αυτό το μήνυμα επιδή ξεκινήσατε τον διακομιστή RT χωρίς να υπάρχει έτοιμη βάση δεδομένων. Μάλλον, είναι η πρώτη φορά που τρέχετε το RT. Αν Πατήσετε το \"%1\" πιο κάτω, το RT θα σας καθοδηγήσει ώστενα ρυθμίσετε σωστά τον διακομιστή RT και την βάση δεδομένων σας." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Καλοσορίσατε ξανά στην σελίδα εισόδου" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Ο τρέχον κωδικός" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Ο κωδικός σας δεν έχει οριστεί" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Ο όνομα χρήστη ή ο κωδικός σας είναι λανθασμένος" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "ΤΚ" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Κάτω]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Πάνω]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[κανένα]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "βάλτε την ετικέττα 
 γύρω από τα επισυναπτόμενα απλού κειμένου"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "μετά από"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "επέτρεψε την δημιουργία αποθηκευμένων αναζητήσεων"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "επίτρεψε το φόρτωμα απηθηκευμένων αναζητήσεων"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "όπως παραχωρούνται σε %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "μπάρα"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "πριν από"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "από κάτω προς τα πάνω"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "επιλέξετε αυτό το πλαίσιο για να εφαρμοστεί αυτό το Ειδικό Πεδίο σε όλα τα αντικείμενα."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "επιλέξετε αυτό το πλαίσιο για να καταργήσετε αυτό το ειδικό πεδίο από κάθε αντικείμενο και να μπορούν να επιλέγουν συγκεκριμένα αντικείμενα."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "επιλέξτε για προσθήκη"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "κλικ για να επιλέξετε/αποεπιλέξετε όλα τα αντικείμενα με μιας"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "κλειστό"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "σύντομο"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "κεντρικές ρυθμίσεις"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "ειδικό πεδίο '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "καθημερινά"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "καθημερινά στις %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "ημέρες"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "διαγράφηκε"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "παρουσίαση"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "δεν ταιριάζει"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "λήψη"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "ίσο με"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "σφάλμα: αποτυχία κίνησης προς τα κάτω"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "σφάλμα: αποτυχία κίνησης προς τα δεξιά"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "σφάλμα: αποτυχία κίνησης προς τα πάνω"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "σφάλμα: δεν υπάρχει κάτι να διαγραφεί"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "σφάλμα: δεν υπάρχει κάτι να μετακινηθεί"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "σφάλμα: δεν υπάρχει κάτι για εναλλαγή"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "κάθε"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "επιτυχής εκτέλεση plugin"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "πλήρες"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "μεγαλύτερο από"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "ομαδα '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "ώρες"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "είναι"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "δεν είναι"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "το κλειδί απενεργοποιήθηκε"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "το κλειδί έληξε"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "το κλειδί ανακλήθηκε"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "από αριστερά προς τα δεξιά"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "μικρότερο από"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "οριακά"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "ταιριάζει"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "μέγιστο βάθος"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "λ"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "λεπτά"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "μηνιαίως"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "μηνιαίως (ημέρα %1) στις %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "μήνες"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "ποτέ"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "νέο"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "όχι"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "χωρίς όνομα"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "κανένα"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "δεν είναι ίσο με"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "τίποτα"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "τα αντικείμενα απομακρύνθηκαν επιτυχώς"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "στις"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "στις"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "ένα"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "ανοικτά"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "ανοικτά/κλειστά"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "άλλα..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "προσωπική ομάδα '%1' για χρήστη '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "πίτα"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "το plugin επέστρεψε άδεια λίστα"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "ουρά %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "απορρίφθηκε"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "επιλύθηκε"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "από δεξιά προς τα αριστερά"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "δευτ."

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "δείτε την λίστα αντικειμένων πιο κάτω"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "προβολή καρτέλλας Εγκρίσεων"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "προβολή καρτέλλας Ρυθμίσεων"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "ρυθμίσεις ιστοτόπου"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "σε αναμονή"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "σειρές περίληψης"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "σύστημα %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "ομάδα συστήματος '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "το καλών στοιχείο δεν διευκρίνισε γιατί"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "οι προεπιλεγμένες διευθύνσεις που θα καταγράφονται στις κεφαλίδες From: και Reply-To: στο mail σχολίων"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "οι προεπιλεγμένες διευθύνσεις που θα καταγράφονται στις κεφαλίδες From: και Reply-To: στο mail αλληλογραφίας"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "αίτημα #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "από πάνω προς τα κάτω"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "απόλυτα"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "ομάδα χωρίς περιγραφή %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "απεριόριστα"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "χρήστης %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "αναλυτικά"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "εβδομαδιαίως"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "εβδομαδιαίως"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "εβδομάδες"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "η πόρτα στην οποία θα ακούει ο web server, π.χ. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "με κεφαλίδες"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "χρόνια"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "ναι"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/pt_PT.po0000664000175000017500000100561112262650742014364 0ustar  chmrrchmrr# Portuguese (Portugal) translation for rt
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: rt\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-05 23:58+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: Portuguese (Portugal) \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:12+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (sem chave pública)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (não confiável)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 adicionado"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "há %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 alterado para %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 apagado"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 apagado."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 renomeado para %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 gravado."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 actualizado."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 com modelo %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) por %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (inalterado)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (do painel %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ajustar opção de configuração LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Um argumento a passar a %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Actualização do estado dos Output para  STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Epecificar se quer utilizar 'primeira', 'última' ou 'todas' as transações"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Especifique o nome ou ID do(s) template(s) que pretende usar"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Especificar o modulo de acção que quer usar"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Especificar a lista de tipos de transacções, separada por virgulas, que quer usar"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Especificar o modulo de condições que quer usar"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Especifique o módulo de pesquisa a utilizar"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Paineis"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 ScripAction carregado"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 adicionado como valor para %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 já existe e tem as tabelas do RT, mas não contém os metadados. O passo 'Initialize Database' a executar posteriormente pode inserir os metadados nesta tabela. Se é aceitável, clique em 'Customize Basics' abaixo para continuar a customizar o RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 já existe, mas não contem as tabelas do RT, nem  contém os metadados. O passo 'Initialize Database' a executar posteriormente pode inserir os metadados e tabelas nesta tabela. Se é aceitável, clique em 'Customize Basics' abaixo para continuar a customizar o RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 parece ser um objecto local, mas não está na base de dados"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 parece estar totalmente inicializado. Não é necessario criar tabelas ou inserir metadados, mas pode continuar a personalizar o RT clicando 'Personalização base' abaixo"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 por %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 alterado de %2 para %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 gráfico por %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "cópia %1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 configuração de raiz"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 não pôde ser definido para %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 estado não foi mudado para resolvido. RT's Database pode estar inconsistente."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 criado"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 apagado"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 desabilitado"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 não existe."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 activo"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 tickets com maior prioridade na minha responsabilidade"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 é uma ferramenta para manipular tickets através de uma ferramenta externa, como por exemplo o cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 é um utilitário, para ser corrido num cron, envia todas as notificações RT por utilizador."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 já não é um %2 para esta queue."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 já não é um %2 para este ticket."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 já não é um valor para campo personalizado %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 tickets mais recentes sem responsável atribuído"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objectos"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 configuração do site"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 actualizado: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 actualizado: nenhumas alterações"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 actualizado"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 Resolverá todos os membros de ticket de grupo resolvido."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "objectos %2 de %1"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "objectos %1's %2's %3"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1's paineis"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Pesquisas gravadas de %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: anexo não especificado"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Novo Pedido em%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hora)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "%1 é um valor inválido para o estado"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Seleccione caixa para apagar)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Seleccione caixas para desactivar notificações para os destinatários listados)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Seleccione caixas para activar notificações para os destinatários listados)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Insira identificadores de tickets, separados por espaços)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Por omissão será %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Sem campos personalizados)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Sem membros)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Sem scrips)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Sem templates)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Nenhum)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Envia uma fotocopia desta actualização para uma lista separada por virgulas de endereços de email . Estas pessoas passam a receber futuras actualizações.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Envia uma fotocopia desta actualização para uma lista separada por virgulas de endereços de email . Estas pessoas passam a receber futuras actualizações.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Use estes campos quando escolher'Definido pelo Utilizador' para uma condição ou Acção)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Não vai ser enviado email)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(qualquer)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(vazio)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(Sem chave pública!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(sem valor)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(sem valores)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(apenas um ticket)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(pendente %quant(%1,outro ticket))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(aprovação pendente)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(obrigatório)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(confiar: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(sem título)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(não confiavel!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id não é um argumento recomendado e não pode ser usado com --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--argumento da transação apenas pode ser 'first', 'last' or 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Todas os feeds iCal embebem um token privado que o autorizam. Se o URL de um dos seus feeds iCal foi exposto ao exterior, pode ter um novo token privado ao quebrar as feeds existentes.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Template em branco" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Password não foi definida, portanto o utilizador não vai conseguir efectuar login." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE não encontrado" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "Os ACEs apenas podem ser criados e eliminados" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "E" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Sobre mim" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Controle de Acesso" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Acção" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Acção '%1' não encontrada" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Acção executada.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Acção é argumento obrigatório" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Acção preparada..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Adicionar AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Adicionar Favorito" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Adicionar Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Adicionar colunas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Adicionar critérios" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Adicionar mais ficheiros" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Adicionar Requerente" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Adicionar Valor" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Adicionar um scrip que se aplica a todas as queues" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Adicionar comentários ou respostas aos tickets seleccionados" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Adicionar membros" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Adicionar novos watchers" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Adicionar estes termos" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Adicionar estes termos e Pesquisar" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Adicionar valores" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Adicione, elimine e modifique os valores dos campos personalizados para os objectos" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "%1 adicionado como grupo/utilizador para esta queue" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "%1 adicionado como grupo/utilizador para esta tarefa" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Morada" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Morada (1)" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Morada (2)" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Comentário de Admin" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Correspondência Admin" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Queues do Administrador" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Configurações do Administrador/Globais" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdminTodosGruposPessoais" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGroup" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminCampoPerson" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGroupo" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminMembrosGrupo" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminGruposPessoais" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "FilaAdmin" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminUtilizadores" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Cc Administrativo" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Palavra-Chave Administrativa" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avançado" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Agregador" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Todas as aprovações tratadas" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Todas as Queues" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Todas os feeds iCal embebem um token privado que o autorizam. Se o URL de um dos seus feeds iCal foi exposto ao exterior, pode ter um novo token privado ao quebrar as feeds existentes." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Já encriptado" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "E/Ou" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Aplica-se a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplicar" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Aplicar as alterações" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Aprovação" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Aprovação #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Aprovação #%1: Notas não guardadas devido a um erro no sistema" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Aprovação #%1: Notas guardadas" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Aprovação Concedida" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Aprovação pronta para o dono" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Aprovação rejeitada" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Aprovar" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Abr" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Asc" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Ascendente" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Atribuir e remover campos pré-definidos" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "AtribuirCamposPerson" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Anexar" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Anexar ficheiro" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Ficheiro anexodo" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Anexo" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Anexo '%1' não foi carregado" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Anexo criado" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Nome do anexo" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Anexos" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "A encriptação dos anexos está inactiva" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Atributo eliminado" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Resposta automática" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Resposta automática para utilizadores" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Disponível" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "BCc" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Voltar" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Privacidade incorrecta para atributo %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Informação básica" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Não se esqueça de gravar as suas alterações" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC logo corporativo" #: etc/initialdata:214 msgid "Blank" msgstr "Em Branco" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Corpo" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Negrito" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Marcador" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Tarefas marcadas" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Cabeçalhos resumidos" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Actualização em bloco" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Compre suporte" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Por predefinição, o RT usa o fuso horário do seu sistema. Isto permite que defina as predefinições globais para a apresentação de datas e horas no RT. Os utilizadores podem definir fusos horários diferentes nas suas Preferências." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CCGroupo" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Não é possível alterar utilizadores de sistema" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Este grupo/utilizador pode visualizar esta queue" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Não se pode adicionar um campo personalizado sem designação" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Não foi encontrado uma colecção de classes para '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Impossível encontrar a pesquisa gravada para trabalhar com" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Não é possível ligar um ticket a si próprio" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Não consigo gravar %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Não é possível gravar esta pesquisa" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Não se consegue especificar a base nem o alvo" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Não se pode criar tarefas numa queue inactiva" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Não é possível criar utilizador: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Categorias são baseadas em" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoria" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Categoria não definida" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccs" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Alterar" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Alterar senha" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Seleccionar Todos" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Testar Conectividade com BD" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verifique as credenciais da base de dados" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Seleccione caixa para apagar" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Seleccione caixa para revogar direitos" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Filhos" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Seleccione o motor da base de dados" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Cidade" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Limpar" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Limpar Tudo" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Clique em \"Finalizar instalação\" para completar este assistente" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Clique em \"Iniciar base de dados\" para criar a base de dados do RT e inserir os metadados iniciais. Pode demorar alguns minutos." #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Fechar janela" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Fechado" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tickets fechados" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Seleccione ou insira valores múltiplos" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Seleccione ou insira um valor" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Seleccione ou insira até %1 valores" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Comentário" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Morada de Comentário" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Morada do comentário" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Comentar tickets" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "MoradaComentários" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "ComentarNaTarefa" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comentários" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Comentários (não enviados para utilizadores)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Comentários (não enviados para utilizadores)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Comentários sobre este utilizador" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Comentários adicionados" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Condição" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Condição '%1' não encontrada" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Condição é argumento obrigatório" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Condição corresponde..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Condição, Acção e Modelo" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Ficheiro de configuração %1 está trancado" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Configuração" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Confirmar" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Ligação efectuada com sucesso" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Conteúdo" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipo de Conteúdo" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "TipoConteudo" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Morada de correspondência" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "MoradaCorrespondência" #: etc/initialdata:283 msgid "Correspondence" msgstr "Correspondência" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Correspondência adicionada" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Não foi adicionado o valor do campo personalizado: %1" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Não foi criado o campo personalizado" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Não foi criado o campo personalizado: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Não foi possível criar o grupo" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Não foi possível criar template: %1" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Não é possível criar pedido. Especifique uma fila." #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Não foi possível criar utilizador" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Não foi possível criar ou encontrar esse utilizador" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Grupo/utilizador não encontrado" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Não foi carregado o atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Não foi carregado o campo personalizado %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Grupo não foi carregado" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Não doi carregado o objecto para %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Não foi possível tornar o grupo/utilizador %1 para esta queue" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Não foi possível tornar o grupo/utilizador %1 para esta tarefa" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Não foi possível remover o grupo/utilizador como %1 para esta queue" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Não foi possível remover o grupo/utilizador como %1 para esta tarefa" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Não consegui definir informações de utilizador" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Não foi possível adicionar anexo" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Não foi possível adicionar membro a grupo" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Não foi criado o registo" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Não foi possível apagar painel %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Linha não encontrada" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Não foi encontrada a transacção adequada, saltar" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Não foi possível encontrar grupo/utilizador" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Não foi encontrado o valor" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "%1 não foi carregado da base de dados de utilizadores.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Não foi carregada a classe %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Não foi carregado o campo personalizado #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Não foi carregado o campo personalizado %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Não foi carregada a cópia da tarefa #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Não foi carregado o painel %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Não foi carregado o painel %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Não foi carregado o grupo #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Não foi carregado o grupo %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Não foi carregado o link" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Não foi carregado o objecto %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Não foi carregado nem adicionado o utilizador: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "A queue não foi carregada" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "A queue #%1 não foi carregada" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "A queue %1 não foi carregada" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "A queue '%1' não foi carregada" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "O script #%1 não foi carregado" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "O modelo #%1 não foi carregado" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Não foi possível carregar o ticket '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Não foi possível carregar a transacção #'%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Não foi possível carregar o utilizador" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Não foi possivel carregar o utilizador #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Não foi possível carregar utilizador #%1 ou utilizador '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Não foi possível carregar utilizador '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Não foi possivel fazer o parse do endereço da string '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Não foi substituído o conteúdo com dados desencriptados: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "O conteúdo não foi substituído com dados encriptados: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Não foi possivel resolver '%1' no URI" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Não foi possivel resolver base'%1' no URI" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Não foi possivel resolver target '%1' no URI" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Não foi possivel enviar email" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Não foi possivel definir %1 watcher: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Não foi possível definir chave privada" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "País" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Criar" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Criar tickets" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Criar um campo personalizado" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Criar um campo personalizado para a queue %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Criar um novo painel" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Criar novo grupo" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Criar um novo grupo pessoal" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Criar novo ticket" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Criar novo utilizador" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Criar queue" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Criar um srcipt para a queue %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Criar template" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Criar ticket" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Criar paineis para este grupo" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Criar novo pedido baseado num modelo existente" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Criar paineis pessoais" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Criar paineis de sistema" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Criar ticket" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Criar tickets nesta queue" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Criar tarefas offline (modo desligado)" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Criar, eliminar e modificar campos personalizados" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Criar, eliminar e modificar queues" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Crie, elimine e modifique os membros de qualquer grupo pessoal dos utilizadores" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Criar, eliminar e modificar membros de grupos pessoais" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Criar, apagar e alterar utilizadores" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "CriarPainel" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "CriarGrupoPainel" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "CriarPainelPróprio" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "CriarPesquisaGravada" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "Criar Tarefa" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Criado" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Criado por" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Campo Personalisado %1 criado" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Criado num intervalo de datas" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Pedidos criados dentro de um periodo de tempo, agrupados por estado" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CriadoPor" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CriadoRelativo" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Criado por" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Criptografia" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Links actuais" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Scrips Actuais" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Membros actuais" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Direitos actuais" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Pesquisa actual" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Observadores actuais" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Campos Personalizados" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Campos Personalizados para %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Acção personalizada limpeza de código" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Acção personalizada preparação de código" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Condição personalizada" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Campo personalizado %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "O campo personalizado %1 não se aplica a este objecto" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Campo personalizado %1 tem um valor." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Campo personalizado %1 não tem valores" #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Campo personalizado %1 não encontrado" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "O valor do campo personalizado %1 não foi encontrado para o campo personalizado %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "O valor do campo personalizado não pode ser eliminado" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "O valor do campo personalizado não foi encontrado" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "O valor do campo personalizado foi eliminado" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPersonalizado" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "CampoPersonalizadoValor" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Personalizar" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personalizar Básico" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personalizar endereços de email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Personalizar configurações de email" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Palavra-Chave do DBA (Administrador da Base de Dados)" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Compilação diária" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Painel" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Painel não pode ser criado: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Painel não pode ser actualizado: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Painel actualizado" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Painéis" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Anfitrião do painel" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nome da Base de Dados" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Palavra-Chave da Base de Dados para o RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Porta da Base de Dados" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo da Base de Dados" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Nome do utilizador da Base de Dados para o RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Formato da data" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Módulo DateTime em falta" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "DateTime:: Modulo Local está em falta" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datas" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dez" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Desencriptar" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Modelo de resposta automática predefinido" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Queue por omissão" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Requerente Predefinido" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Modelo de comentário de administração predefinido" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Modelo de correspondência de administração predefinido" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Modelo de correspondência predefinido" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Queue predefinida" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Modelo de transacção predefinido" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Predefinição: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Predefinição: %1/%2 alterado para %3 to %4" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "Predefiniçãoacabarem" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Formatopordefeito" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delegar direitos" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delegar direitos específicos que lhe foram atribuídos" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegarDireitos" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegação" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Apagar" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Apagar template" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Apagar painéis para este grupo" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Eliminação falhou: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Eliminar painéis pessoais" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Elimiar scripts seleccionados" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Eliminar painéis de sistema" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Apagar tickets" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Apagar valores" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "ApagarPainel" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "ApagarGrupoPainel" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "ApagarDashboardPróprio" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "ApagarTarefa" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "%1 Eliminado" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Eliminar painel %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Eliminar consultas" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Eliminar pesquisa guardada" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "A eliminação deste objecto irá quebrar a integridade referencial" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "A eliminação deste objecto irá violar a integridade referencial" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Negar" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Depende em por" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "DependendoDePor" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Dependência por %1 adicionada" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Dependência por %1 eliminada" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Dependência de %1 adicionada" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Dependência de %1 eliminada" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "DependenteEm" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Depende de" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "DependeDe" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Desc" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Descendente" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Descreva o pedido, abaixo" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descrição" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direcção" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Desativado" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Mostrar" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Visualizar lista de controlo de acessos" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Visualizar Colunas" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Visualizar modelos de Script para esta queue" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Visualizar Scripts para esta queue" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Visualizar pesquisas guardadas para este grupo" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuido sobre a versão 2 do GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Fazer qualquer coisa e tudo" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Nome do domínio" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Não incluir http://, apenas algo como 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Não actualize página incial" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Não actualize resultados da pesquisa" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Não actualizar (refrescar) esta página" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Não confiar nesta chave" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Descarregar" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Descarregar num ficheiro separado por tabs" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Descarregue dumpfile" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Prazo" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "PrazoRelativo" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ERRO: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Actualização simples das suas tarefas abertas" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Editar" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Editar Campos Personalizados" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Editar Campos Personalizados de %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Editar Campos Personalizados para todos os grupos" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Editar Campos Personalizados para todas as queues" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Editar Campos Personalizados para todos os utilizadores" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Editar \"Campos Personalizados\" para todos os pedidos" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Editar ligações" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Editar Consulta" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Editar Pesquisa" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Editar modelos para a queue %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Editar Pesquisas para este grupo" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Editar modelos de sistema" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "EditarPesquisasGravadas" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Texto editável" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "A editar configurações para a queue %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "A editar campo personalizado %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "A editar membros para o grupo %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "A editar membros para o grupo pessoal %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "IdEfectivo" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Base ou alvo devem ser especificados" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Ou não tem direitos para visualizar a pesquisa guardada %1 ou o identificador está incorrecto" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-mail" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "E-mail Compilação" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Endereço de email já utilizado" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Entrega por e-mail" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Template de email periodico para notificações de resumo" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "EndereçoEmail" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Activo" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Activo (remover selecção desta caixa desactiva este campo)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Activo (remover selecção desta caixa desactiva este grupo)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Activo (remover selecção desta caixa desactiva esta queue)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Queues activas" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Estado activo %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Encriptar" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Enciptar por predefinição" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Encriptar/Desencriptar" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Encriptar/Desencriptar transacção #%1 de tarefa #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Encriptação inactiva" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Encriptação activa" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Introduzir múltiplos valores" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Introduzir multiplos valores com autocompletion" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Introduzir objectos ou URLs para ligar os objectos. Separar as entradas múltiplas com espaços." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Inserir um valor" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Introduza um valor com autocompletion" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Escreva as filas ou URIs para ligar as filas. Separe várias entradas com espaços." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Escreva o número dos pedidos ou URIs para ligar os pedidos. Separe várias entradas com espaços." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Introduza até %1 valores com autocompletion" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Erro" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Erro nos parametros na Queue->AdicionarObservador" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Erro nos parametros na Queue->ApagarObservador" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Erro nos parametros no Ticket->AdicionarObservador" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Erro nos parametros no Ticket->ApagarObservador" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Erro no dono RT: chave pública" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Erro: Painel em falta" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Erro: Dados GnuPG errados" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Erro: Não existe chave privada" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Erro: Chave Pública" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Escalar tickets" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Estimado" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Todos" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Analisar tarefas criadas numa queue entre duas datas" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Analisar tarefas resolvidas numa queue entre duas datas" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Analisar tarefas resolvidas numa queue, agrupadas por dono" #: bin/rt-crontool:356 msgid "Example:" msgstr "Exemplo:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Expirar" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "StausEstendido" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Informação adicional" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Extrair Tag do Assunto" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extrair tags do assunto de uma Transacção e adicioná-los ao assunto do tickect" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Falta ao ligar a base de dados: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Falta ao criar atributo %1" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Não foi encontrado peseudogrupo dos utilizadores \"Privilegiados\"" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Não foi encontrado peseudogrupo dos utilizadores \"Não Privilegiados\"" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Falha ao carregar %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Falha ao carregar %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Falta ao carregar módulo %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Falha ao carregar objecto para %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Falta ao carregar modelo" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Fev" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "NomedoFicheiro" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nome Ficheiro" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Preencher argumentos" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Preencha as caixas com cor usando" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Preencher múltiplas áreas de texto" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Preencha multiplas wikitext areas" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Preencher uma área de texto" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Preencha uma área de texto wiki" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Preencha este campo com um URL" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Preencha até %1 áreas de texto" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Preencha até %1 wikitext areas" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Prioridade final" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Procurar todos os utilizadores cujo" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Encontrar grupos cujo" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Encontrar pessoas cujo" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Encontrar tickets" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminar" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Primeiro" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forçar alteração" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formato" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Encaminhar" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Encaminhar Mensagem" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Encaminhar Mensagem e Voltar" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Encaminhar Ticket" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Encaminhar mensagem para terceira(s) pessoa(s)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Encaminhar ticket #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Encaminhar transcção #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "ReencaminharMensagem" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Encontrado %quant(%1,ticket)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Objecto Encontrado" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequência" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Sex" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Sexta" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Cabeçalhos completos" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Geral" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Obter modelo a partir de ficheiro" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Introdução" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Atribuído a %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Global" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Campos Personalizados Globais" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuração gloval dos campos personalizados" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Portlet global %1 guardado" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Modelo Global: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "Erro GnuPG. Contacte o Administrador" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Integração GnuPG inactiva" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "Problemas GnuPG" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "Chave(s)-Privada(s) GnuPG para %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "Chave(s)-Pública(s) GnuPG para %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Ir" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Começar!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ir para ticket" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propriedades do Gráfico" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Gráficos não estão disponíveis" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Grupo" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Direitos do grupo" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "O grupo já tem um membro: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Grupo não pôde ser criado: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Grupo criado" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Grupo inactivo" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Grupo activo" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "O grupo não tem esse membro" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Grupo não encontrado" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Direitos do grupo" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupos" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupos não podem ser membros dos seus membros" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupos que preenchem critérios" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Grupos em que o utilizador é membro (seleccione caixa para eliminar)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Grupos em que o utilizador não é membro (seleccione caixa para adicionar)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Grupos a que este utilizador pertence" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "TemMembros" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Cabeçalho de uma mensagem reencaminhada" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Olá!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Olá, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ajude-nos a definir predefinições úteis para o RT" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Histórico" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Histórico do grupo %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Histórico da queue %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Histórico do utilizador %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Início" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Intervalo de actualização da página de ínicio" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "TelefoneCasa" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Página inicial" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Hora" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Horas" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Eu tenho %quant(%1,concret mixer)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identidade" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Se uma aprovação é rejeitada, rejeite a original e elimine aprovações pendentes" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Se nenhum Requerente for especificado, criar um pedido sem Requerente." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Se nenhuma queue foi definida, criar tickets nesta queue" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Se esta ferramenta fosse setgid, um utilizador local hostil poderia usá-la para ter acesso de administrador ao RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Se já tem um servidor RT e base de dados funcionais, deveria aproveitar a oportunidade para se assegurar que o seu servidor de base de dados está a correr e que o servidor do RT consegue-se ligar a ele. Depois disto, pare e inicie o servidor do RT.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Se já tem um servidor RT e base de dados funcionais, deveria aproveitar a oportunidade para se assegurar que o seu servidor de base de dados está a correr e que o servidor do RT consegue-se ligar a ele. Depois disto, pare e inicie o servidor do RT.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Se alterar a porta em que corre o RT, vai precisar de reiniciar o servidor de forma a poder iniciar sessão." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Se actualizou algo acima, certifique-se que" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Se a sua base de dados escolhida não está listada abaixo, significa que o RT não conseguiu encontrar um driver /i> para a mesma instalada localmente. Pode contornar este problema ao usar %1 para descarregar e instalar DBD::MySQL, DBD::Oracle ou DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Valor ilegal para %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Campo imutável" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Incluir campos personalizados inactivos na listagem." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Incluir grupos desactivados na listagem" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Incluir queues desactivadas na listagem" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Incluir utilizadores desactivados na listagem" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Incluir página" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Mensagens individuais" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informar dono do RT que utilizadores estão com problemas com chaves públicas" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informar utilizador que o painel que ele subscreveu está em falta" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "" #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:851 msgid "No password set" msgstr "" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:41 msgid "Notify Owner" msgstr "" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "" #: etc/initialdata:143 msgid "On Comment" msgstr "" #: etc/initialdata:115 msgid "On Correspond" msgstr "" #: etc/initialdata:104 msgid "On Create" msgstr "" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "" #: etc/initialdata:172 msgid "On Queue Change" msgstr "" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "" #: etc/initialdata:178 msgid "On Resolve" msgstr "" #: etc/initialdata:149 msgid "On Status Change" msgstr "" #: etc/initialdata:109 msgid "On Transaction" msgstr "" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:463 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "" #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "" #: etc/initialdata:249 msgid "Transaction" msgstr "" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "" #: lib/RT/User.pm:262 msgid "User created" msgstr "" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:110 msgid "When anything happens" msgstr "" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "" #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr ""

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr ""

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr ""

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr ""

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr ""

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr ""

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr ""

#: lib/RT/Date.pm:346
msgid "hours"
msgstr ""

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr ""

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr ""

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr ""

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr ""

#: lib/RT/Queue.pm:83
msgid "new"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "fila %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "rejeitado"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr "requer rt-crontool em execução"

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "resolvido"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "da direita para a esquerda"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "seg"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "Ver lista de objectos abaixo"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "Mostrar tab de aprovados"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "Mostrar tab de configuração"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "pendente"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr "instrução"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "resumo"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "linhas de sumário"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistema %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "grupo de sistema '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr ""

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "O endereço por defeito que será listado em De: e Responder para: cabeçalhos de comment mail"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "O endereço por defeito que será listado em De: e Responder para: cabeçalhos de correspondence mail"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "ticket #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "Do início ao fim"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "inquestionável"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "grupo indefinido %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "ilimitado"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "utilizador"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "utilizador %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "nome do utilizador"

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "detalhado"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "semanalmente"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "Semanalmente (em %1) às %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "semanas"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "Especifique o port que o webserver deve ouvir, ex: 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "com cabeçalhos"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "anos"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "sim"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/cs.po0000664000175000017500000105432512262650742013751 0ustar  chmrrchmrr#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2013-01-24 23:12+0000\n"
"PO-Revision-Date: 2012-12-04 10:06+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-14 16:28+0000\n"
"X-Generator: Launchpad (build 16532)\n"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %3.%2.%4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3.%2.%7 %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 přidán"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "- %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 změněno na %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 smazán"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 smazán."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 uložen."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 aktualizován."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 se šablonu %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) vytvořil %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Nezměněn)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (z panelu %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr ""

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - argument k předání %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Výstupní stav jde do STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Zadejte, zda chcete použít transakci 'first', 'last' nebo 'all'"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Zadejte název nebo ID šablony, které chcete použít"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Jaký akční modul chcete použít"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Zadejte čárkami oddělený seznam typů transakcí, které chcete použít"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Jaký podmínkový modul chcete použít"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Jaký vyhledávací modul chcete použít"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 přidáno jako hodnota pro %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 již existuje a má tabulky RT na svém místě, ale neobsahuje metadata RT. Pozdější krok 'Inicializovat databázi' umí vložit metadata do této existující databáze. Je-li to přijatelné, klikněte níže na 'Úprava základních údajů' pro pokračování v úpravě RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 již existuje, ale neobsahuje tabulky RT ani metadata. Pozdější krok 'Inicializovat databázi' umí vložit tabulky a metadata do této existující databáze. Je-li to přijatelné, klikněte níže na 'Úprava základních údajů' pro pokračování v úpravě RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 vypadá jako lokální objekt, ale není v databázi"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 se zdá být plně inicializována. Nebudeme potřebovat vytvořit žádné tabulky ani vložit metadata, ale můžete pokračovat v úpravě RT kliknutím níže na 'Úprava základních údajů'"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 uživatelem %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 změněno z %2 na %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 změněn z'%2' na '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 graf podle %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "kopie %1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 nemůže být nastaveno na %2."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 vytvořen"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 smazán"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 nepovolen"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 neexistuje."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 povolen"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 nejdůležitějších požadavků, které vlastním"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 je nástroj zpracující požadavky z vnějšího plánovacího nástroje jako je cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 je nástroj, který má být spuštěn z cronu, který odešle všechny odložené RT oznámení jako jednotlivé uživatele digest"

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 je adresa kde RT přijímá poštu. Přidání jako '%2' by vytvořilo poštovní smyčku"

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 již není %2 tohoto požadavku."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 již není hodnotou uživatelské položky %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 %quant(%1,minuta,minuty,minut,minut)"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 poslední aktualizace článků"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 nejnovější články"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 nejnovějších nevlastněných požadavků"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objekty"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 site konfig"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 aktualizace: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 aktualizace: beze změny"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 aktualizován"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr ""

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1's GnuPG klíče"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1's současné heslo"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Řídící panely patřící %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Uložené dotazy patřící %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: neudána příloha"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Nový požadavek v%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1 B"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1 kB"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%quant(%1,článek,článku)"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hodina,hodiny,hodin)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "%1 je neplatnou hodnotou pro stav"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr "'%1'  není platný název."

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' není platný identifikátor třídy"

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "'Úlohy'"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'Systém'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "Skupiny uživatelů"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'Uživatelé'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Zaškrtávací políčko k dokončení)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Zatrhněte pro smazání)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Zaškrtávací políčka k odstranění)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Zadejte identifikátory či URL požadavku, oddělené mezerami)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Pro prázdné pole se použije %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Žádné uživatelské položky)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Žádní členové)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Žádné scripy)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Žádné šablony)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Žádné)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Zašle kopii této aktualizace čárkami oddělenému seznamu e-mail adres. Tito lidé budou dostávat budoucí aktualizace.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Zašle kopii této aktualizace čárkami oddělenému seznamu e-mail adres. Tito lidé budou dostávat budoucí aktualizace.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Použijte tyto položky, pokud jste v podmínce nebo akci vybrali hodnotu 'Uživatelem definované')"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Nebude odeslán email)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(vše)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(žádné shrnutí)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(beze jména)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(žádný veřejný klíč!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(bez hodnoty)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(bez hodnot)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(jen jeden požadavek)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(až do %quant(%1,další požadavky))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(očekávájící schválení)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(povinné)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(důvěřovat: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(nepojmenováno)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(nedůvěryhodný!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id je zastaralý argument a nemůže být použit s --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transaction argument může být pouze 'first', 'last' nebo 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: etc/initialdata:215
msgid "A blank template"
msgstr "Prázdná šablona"

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr "Heslo nebylo nastaveno, uživatel se nebude moci přihlásit."

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr "ACE nenalezeno"

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr "ACE mohou být pouze vytvářeny nebo rušeny."

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "AND"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "O mně"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "Řízení přístupu"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "Akce"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr "Akce '%1' nenalezena"

#: bin/rt-crontool:228
msgid "Action committed."
msgstr "Akce provedena."

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr "Akce je povinným parametrem"

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr "Akce připravena..."

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr "Akce"

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr "Aktivní požadavky"

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr "Aktivní požadavky pro %1"

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr "Přidat %1"

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "Přidat AdminCc"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr "Přidat záložku"

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "Přidat Cc"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr "Přidat sloupce"

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr "Přidat podmínku"

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "Přidat další soubory"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "Přidat žadatele"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr "Přidat hodnotu"

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr "Přidat scrip platný ve všech frontách"

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "Přidat komentáře či odpovědi k vybraným požadavkům"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr "Přidat skupinu"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr ""

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr "Přidat členy"

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "Přidat nové pozorovatele"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr "Přidat práva pro %1"

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr "Přidat tyto podmínky"

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr "Přidat tyto podmínky a hledat"

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr "Přidat uživatele"

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr "Přidat hodnoty"

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr "Přidat, upravit a odstranit vlastní hodnoty pole pro objekty"

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr "Přidán %1 jako uživatelé %2 pro tuto frontu."

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr "Adresa"

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr "Adesa 2"

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "Adresa1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "Adresa2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr "Admin Cc"

#: etc/initialdata:292
msgid "Admin Comment"
msgstr "Administrativní komentář"

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr "Administrativní korespondence"

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr "Správa front"

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr "Správa/Globální konfigurace"

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr ""

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr "AdminCc"

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr "AdminCcs"

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr "Spravovat uživatelskou položku"

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr "Spravovat skupinu"

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr "Spravovat členství ve skupinách"

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr "Spravovat frontu"

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr ""

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr "Spravovat uživatele"

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr "Administrativní Cc"

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr "Administrativní heslo"

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "Pokročilé"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr "Rozšířené vyhledávání"

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr ""

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr "Operátor"

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr "Všechna schvalování prošla"

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr "Všechny články v této třídě by měly být uvedeny jako rozbalovcí na strance odpovědi."

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr "Všechny třídy"

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr "Všechny panely"

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr "Všechny fronty"

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr "Všechny požadavky"

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr "Všechny fronty odpovídající zadaným kritériím"

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr "Všechny požadavky"

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr "Všechny témata"

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr "Povolit uložení pro vytvořená hledání"

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr "Povolit nahrání z vytvořených hledání"

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr "Povolit psaní kódu Perl v šablonách, skriptech, atd."

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr "Již je zašifrováno"

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "And/Or"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr "Každé pole"

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr "Každé nerozpoznané slovo v RT je vyhledáno v předmětu požadavku."

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr "Aplikováno"

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "Vztahuje se na"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr "Aplikovaný na všechny objekty"

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "Provést"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr "Provés globálne"

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "Provést změny"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "Schvalování"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr "Schválení #%1: %2"

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr "Schválení #%1: Poznámky neuloženy kvůli systémové chybě"

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr "Schválení #%1: Poznámky uloženy"

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr "Schvalování prošlo"

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr "Schvalování připraveno pro vlastníka"

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr "Schvalování odmítnuto"

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr "Schválit"

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr "dub"

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr "Jste si jisti, že chcete smazat tento článek?"

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr "Článek #%1 smazán"

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr "Článek #%1: %2"

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr "Článek %1"

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr "Článek #%1 vytvořen"

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr "Spravovať článok"

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr "Článek smazán"

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr "Článek nenalezen"

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr "Články"

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr "Články v %1"

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr "Nalezeny články %1"

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr "Články bez témat"

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr "Vzestupně"

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "Vzestupně"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr "Přiřazení a odebrání vlastních polí fronty"

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr "Přidělit uživatelské položky"

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "Přiložit"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr "Připojit soubor"

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "Připojený soubor"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr "Příloha"

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr "Příloha '%1' nemůže být nahrána"

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "Příloha vytvořena"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "Jméno souboru přílohy"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "Přílohy"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr "Šifrování příloh je zakázáno"

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr "Atribut smazán"

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr "srp"

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr ""

#: etc/initialdata:218
msgid "Autoreply"
msgstr "Automatická odpověď"

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr "Automaticky odpověz žadatelům"

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr "Dostupné"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr "Zpět"

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "Základní údaje"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr "Skrytá kopie"

#: etc/initialdata:214
msgid "Blank"
msgstr "Prázdný"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr "Tělo"

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "Tučné"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr "Záložka"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr ""

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr "Záložky"

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr ""

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr "Prohlížet podle tématu"

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr "Procházet SQL dotazy provedené v tomto procesu"

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr "Hromadná úprava"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr ""

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr "CF"

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr "CFs může být také prohlédnuto pomocí podobné syntaxi jako výše s %1."

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr "Nelze načíst uložené hledání \"%1\""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr "Nelze měnit systémové uživatele"

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr "Uživatelské položce nelze přidat hodnotu beze jména"

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr "Nelze nalézt uložený dotaz ke zpracování"

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr "Požadavek nelze svázat se sebou samým"

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr "Nelze uložit %1"

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "Tento dotaz nelze uložit"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr "Nelze zadat zároveň zdroj i cíl"

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr "Nelze přidat odkaz na prosté čislo"

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr "Nelze vytvářet požadavky v zablokované frontě."

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr "Kategorie"

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "Cc"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr "Ccs"

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr "Změnit"

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "Změna hesla"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr "Graf"

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr "Vlastnosti grafu"

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "Označ vše"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr "Kontrola připojení k databázi"

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr "Zkontrolujte databáze pověření"

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr "Zašrtnutím odstraníte"

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr "Zatrhněte k odebrání práva"

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "Potomci"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr "Vyberte Database Engine"

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr "Vyberte z Témat pro %1"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "Město"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr "Třída"

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr "Název třídy"

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr "Třída nemohl být vytvořena: %1"

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr "ID třídy"

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr "Třída je již uplatňována globálně"

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr "Třída je již aplikována na %1"

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr "Třídy"

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr "Vymazat"

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "Odznač vše"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr "Klikněte níže na \"Dokončit instalaci\" pro dokončení průvodce."

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr "Klikněte na \"Inicializovat databázi\" pro vytvoření databází RT a vložení výchozích metadat. Může to trvat nějakou chvíli"

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "Uzavřen"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr "Uzavřené požadavky"

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr "Combobox: Vybrat nebo zadat více hodnot"

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr "Combobox: Vybrat nebo zadat jednu hodnotu"

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr "Combobox: Vybrat nebo zadat nejvýše %1 %quant(%1,hodnotu,hodnoty,hodnot)"

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "Komentovat"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr "Adresa pro komentáře"

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr "Adresa pro komentáře"

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr "Komentovat požadavky"

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr "Komentovat požadavky"

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "Poznámky"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "Komentář (Neposílá se žadatelům)"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr "Poznámky o tomto uživateli"

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "Komentáře přidány"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr "Commit v zárodku"

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "Podmínka"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr "Podmínka '%1' nenalezena"

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr "Podmínka je povinným parametrem"

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr "Podmínky splněny..."

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr "Podmínka, akce a šablona"

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr "Konfigurační soubor %1 je uzamčen"

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "Správa"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr ""

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr "Spojení úspěšně navázáno"

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "Obsah"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr ""

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr "Content-Type"

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr "ContentType"

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr "Adresa pro odpovědi"

#: etc/initialdata:283
msgid "Correspondence"
msgstr "Korespondence"

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr "Korespondence zaznamenána"

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr "Nelze přidat novou hodnotu uživatelské položky: %1"

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr "Nelze změnit vlastníka: %1"

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr "Nelze vytvořit uživatelskou položku: %1"

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr "Nelze vytvořit skupinu"

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr "Nelze vytvořit vyhledávání: %1"

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr "Nelze vytvořit šablonu: %1"

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr "Nelze vytvořit požadavek. Nenastavena fronta"

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr "Nelze vytvořit uživatele"

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr "Nelze odstranit vyhledávací %1: %2"

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr "Tohoto uživatele nelze nalézt nebo vytvořit"

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr "Nelze naléze tohoto uživatele"

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr "Nelze nahrát atribut %1"

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr "Nelze načíst Třída %1"

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr "Nelze nahrát uživatelskou položku %1"

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr "Nelze načíst skupinu"

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr "Nelze nahrát objekt pro %1"

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr "Nelze nastavit uživatelské informace"

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr "Nelze přidat přílohu"

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr "Do skupiny nelze přidat člena"

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr "Nelze vytvořit transakci: %1"

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr "Nelze vytvořit záznam: %1"

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr "Nelze smazat řídící panel %1: %2"

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr "Nemohu nalézt řádek"

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr "Tohoto uživatele nelze nalézt"

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr "Tuto hodnotu nelze nalézt"

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr "Nelze načíst třídu %1"

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr "Nelze načíst uživatelskou položku #%1"

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr "Nelze načíst uživatelskou položku %1"

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr "Nelze načíst kopii požadavku #%1."

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr "Nelze načíst řídící panel %1: %2"

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr "Nelze načíst skupinu #%1"

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr "Skupinu %1 nelze načíst"

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr "Vazbu nelze načíst"

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr "Nelze nahrát objekt %1"

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr "Nelze načíst nebo vytvořit uživatele: %1"

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr "Frontu nelze načíst"

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr "Nelze načíst frontu #%1"

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr "Frontu %1 nelze načíst"

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr "Frontu '%1' nelze načíst"

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr "Nelze načíst scrip  #%1"

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr "Nelze načíst šablonu #%1"

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr "Požadavek '%1' nelze načíst"

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr ""

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr ""

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr "Nelze načíst uživatele #%1"

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr ""

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr ""

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr "Z řetězce '%1' nelze zjistit adresu"

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr "Nelze nahradit obsah dešifrovanými daty: %1"

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr "Nelze nahradit obsah zašifrovanými daty: %1"

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr ""

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr "Nelze přeložit '%1' do URI."

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr "Nelze přeložit zdroj '%1' do URI."

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr "Nelze přeložit cíl '%1' do URI."

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr "Nelze odeslat mail"

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr ""

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "Země"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "Vytvořit"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "Vytvořit požadavky"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr "Vytvoření třídy"

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr "Vytvořit uživatelskou položku"

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr "Vytvoření uživatelské položky pro frontu %1"

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr "Vytvořit nový článek"

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr ""

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr "Vytvořit nový řídící panel"

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "Vytvořit novou skupinu"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr "Vytvoření nové šablony pro frontu %1"

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "Vytvoření nového požadavku"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "Vytvořit nového uživatele"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr "Vytvořit frontu"

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr "Vytvořit scrips pro frontu %1"

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr "Vytvořit šablonu"

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr "Vytvořit požadavek"

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr "Vytvořit článek"

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr "Vytvořit článek v tříde..."

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr "Vytvořit článek v téhle tříde"

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr "Vytvořit skupinu řídicích panelů"

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr "Vytvářet požadavky podle téhto scripu šablony"

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr "Vytvořit osobní řídící panely"

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr "Vytvořit systémové řídící panely"

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr "Vytvořit požadavek"

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr "Vytvořit požadavky"

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr "Vytvoření požadavků offline"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr "Vytvářet, upravovat a mazat vlastní pole hodnot"

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr "Vytvářet, upravovat a mazat frontu"

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr ""

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr "Vytvářet, upravovat a mazat uživatele"

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr "Vytvořit řídící panel"

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr "Vytvořit řídící panel skupiny"

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr "Vytvořit vlastní řídící panel"

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr "Vytvořit uložený dotaz"

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr "Vytvořit požadavek"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "Vytvořeno"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr "Kým vytvořeno"

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr "Uživatelská položka %1 vytvořena"

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr "Vytvořil"

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr "Kým vytvořeno"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr "Tvůrce"

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr "Šifrování"

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "Aktuální relace"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr "Aktuální scripy"

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr "Současné hledání"

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr "Aktuální členové"

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr "Aktuální práva"

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr "Aktuální dotaz"

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr "Aktuální pozorovatelé"

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr "Uživatelské položky"

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr "Uživatelské položky pro %1"

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr ""

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr "Čistící kód uživatelské akce"

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr "Přípravný kód uživatelské akce"

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr "Uživatelská podmínka"

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr ""

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr "Uživatelská položka %1 %2 %3"

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr "Uživatelská položka %1 se nevztahuje k tomuto objektu"

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr "Uživatelská položka %1 má hodnotu."

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr "Uživatelská položka %1 nemá hodnotu."

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr "Uživatelská položka %1 nenalezena"

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr "Uživatelská položka '%1'"

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr "Hodnota %1 nemůže být nalezena v uživatelské položce %2"

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr "Hodnota uživatelské položky nemůže být smazána"

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr "Hodnota uživatelské položky nemůže být nalezena"

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr "Hodnota uživatelské položky smazána"

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr "Uživatelská položka"

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr "Hodnota uživatelské položky"

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr "Upravit"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr "Úprava základních údajů"

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr "Úprava emailových adres"

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr "Úprava konfigurace emailu"

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr ""

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr "Heslo DBA"

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr "Uživatelské jméno DBA"

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr "Denní"

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr "Denní přehled"

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr "Řídící panel"

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr "Řídící panel nemůže být vytvořen: %1"

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr "Řídící panel nemůže být aktualizován: %1"

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr "Řídící panel aktualizován"

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr "Řídící panely"

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr "Adresa databázového serveru"

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr "Jméno databáze"

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr "Databázové heslo pro RT"

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr "Port databázového serveru"

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr "Typ databáze"

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr "Databázové uživatelské jméno pro RT"

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr "Formát datumu"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "Termíny"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr "pro"

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr "Dešifrovat"

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr "Implicitní šablona automatické odpovědi"

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr "Implicitní fronta"

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr "Implicitní žadatel"

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr "Implicitní šablona administrativního komentáře"

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr "Implicitní šablona administrativní korespondence"

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr "Implicitní korespondenční šablona"

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr "Implicitní fronta"

#: etc/initialdata:250
msgid "Default transaction template"
msgstr "Implicitní transakční šablona"

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr "Implicitně: %1"

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr "Implicitně: %1/%2 změneno z %3 na %4"

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr ""

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "Smazat"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr "Smazat šblonu"

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr ""

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr ""

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr "Nelze smazat: %1"

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr "Smazat osobní řídící panely"

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr "Smazat vybrané scripy"

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr "Smazat systémové řídící panely"

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr "Smazat požadavky"

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr "Smazat hodnoty"

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr "Smazat řídící panel"

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr "Smazat řídící panel skupiny"

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr "Smazat vlastní řídící panel"

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr "Smazat požadavek"

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr ""

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr "Smazaný uložený dotaz"

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr "Smazání tohoto objektu by mohlo porušit referenční integritu"

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr "Smazání tohoto objektu by mohlo narušit referenční integritu"

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr "Zamítnout"

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "Je rekvizitou pro"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr ""

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr "Přidána závislost %1"

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr "Závislost %1 smazána"

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr "Přidána závislost na %1"

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr "Závislost na %1 smazána"

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "Závisející na"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr "Závisející na"

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr "Sestupně"

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "Sestupně"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr "Popište případ níže"

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "Popis"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr "Podrobnosti"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr "Směr"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr "Zakázáno"

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr "Zobrazit"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr "Zobrazit přístupová práva"

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr "Zobrazované položky"

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr "Dělat cokoli a všechno"

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr "Doménové jméno"

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr "Nesmí obsahovat http://, ale pouze něco jako 'localhost', 'rt.example.com'"

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr ""

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr "Neobnovovat tuto stránku."

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "Stáhnout"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr "Stáhnout dumpfile"

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "Termín dokončení"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr "CHYBA: %1"

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr "Jednoduchá úprava vašich otevřených požadavků"

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr ""

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr "Upravit"

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr "Upravit uživatelské položky"

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr "Upravit uživatelské položky pro %1"

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr "Upravit uživatelské položky pro všechny skupiny"

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr "Upravit uživatelské položky pro všechny fronty"

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr "Upravit uživatelské položky pro všechny uživatele"

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr "Upravit uživatelské položky pro požadavky ve všech frontách"

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr "Upravit vazby"

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr "Upravit dotaz"

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr "Úprava dotazu"

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr "Úprava systémových šablon"

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr "Upravovat uložené dotazy"

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr "Úprava uživatelské položky %1"

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr "Úprava členství ve skupině %1"

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr "Zdroj či cíl musí být zadán"

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr "Buď nemáte oprávnění pro zobrazení uloženého dotazu %1 nebo je identifikátor nesprávný"

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "Email"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr "Emailová adresa"

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr "Emailový přehled"

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr "Emailová adresa je použita"

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr "Doručování zpráv"

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr "Povoleno"

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr "Povolena (zrušením zatrhnutí zablokujete tuto uživatelskou položky)"

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr "Povolena (zrušením zatrhnutí zablokujete tuto skupinu)"

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr "Povoleno (zrušení zatrhnutí zablokuje tuto frontu)"

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr "Povilt třídy"

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr "Povolené fronty"

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr "Povolen stav %1"

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr "Šifrovat"

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr "Implicitně šifrovat"

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr "Šifrovat/Dešifrovat"

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr "Šifrovat/Dešifrovat transakci #%1 požadavku #%2"

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr "Šifrování zakázáno"

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr "Šifrování povoleno"

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr ""

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr "Zadejte vice IP adresních rozsahu"

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr "Zadejte vice IP adres"

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr "Vyplnit více hodnot"

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr "Vyplnit více hodnot s automatickým doplňováním"

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr "Zadejte objekty či URI k provázání. Více položek oddělujte mezerami."

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr "Zadejte jednu IP adresu"

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr "Zadejte jeden IP adresní rozsah"

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr "Vyplnit jednu hodnotu"

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr "Vyplnit jednu hodnotu s automatických doplňováním"

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr "Zadejte fronty či URI k provázání. Více položek oddělujte mezerami."

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr "Zadejte požadavky či URI k provázání. Více položek oddělujte mezerami."

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr "Zadejte nejvýše %1 %quant(%1,hodnotu,hodnoty,hodnot)"

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr "Vyplnit nejvýše %1 %quant(%1,hodnotu,hodnoty,hodnot) s automatickým doplňováním"

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr "Chyba"

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr "Chyba v parametrech do Ticket->AddWatcher"

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr "Chyba v parametrech do Ticket->DeleteWatcher"

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr "Chyba: chybějící řídící panel"

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr "Chyba: špatná data GnuPG"

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr "Chyba: žádný soukromý klíč"

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr "Chyba: veřejný klíč"

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr "Eskalovat požadavky"

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr "Odhadovaný"

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr "Všichni"

#: bin/rt-crontool:356
msgid "Example:"
msgstr "Příklad:"

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr "Vypršet"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr "Externí ověření pravosti povoleno."

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr "Doplňkové údaje"

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr ""

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr "Nelze se připojit k databázi: %1"

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr "Nelze vytvořit atribut %1"

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr "Nenalezena pseudoskupina uživatelů 'Privilegovaný'."

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr "Nenalezena pseudoskupina uživatelů 'Neprivilegovaný'"

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr "Nelze načíst %1 %2"

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr "Nelze načíst %1 %2: %3"

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr "Nelze načíst modul %1. (%2)"

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr "Nelze načíst objekt pro %1"

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr "Nelze načíst šablonu"

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr "Nelze určit šablonu"

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr "úno"

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr "Zdroje"

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr "Pole"

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr "Zdroj hodnot položky:"

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr "Název souboru"

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr "Vyplňte argumenty"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr "Vyplnit více textových oblastí"

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr "Vyplnit více wiki textových oblastí"

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr "Vyplnit jednu textovou oblast"

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr "Vyplnit jednu wiki textovou oblast"

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr "Do této položky zadejte URL."

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr "Vyplnit nejvýše %1 %quant(%1,textovou oblast,textové oblasti,textových oblastí)"

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr "Vyplnit nejvýše %1 wiki %quant(%1,textovou oblast,textové oblasti,textových oblastí)"

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr "Koncová priorita"

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr "Koncová priorita"

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr "Najdi všechny uživatele jejichž"

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr "Najít skupiny jejichž"

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr "Najít osoby, jejichž"

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr "Nalézt požadavky"

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr "Otisk prstu"

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr "Dokončit"

#: share/html/Elements/Tabs:651
msgid "First"
msgstr "První"

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr "Pro dosažení maximálního výkonu vyhledávání Rt-s, navštivte prosím  %1vyhledávací rozhraní%2."

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr "Vynutit změnu"

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr "Formát"

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr "Předání"

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr "Předat zprávu"

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr "Předat zprávu a zpět"

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr "Předat požadavek dál"

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr "Předat požadavek %1"

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr "Předat zprávu"

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr "Pŕedání požadavku na %1"

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr "Nalezen%quant(%1,,y,o) %numf(%1) %quant(%1,požadavek,požadavky,požadavků)"

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr "Nalezen objekt"

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr "Četnost"

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr "Pá"

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr "Pátek"

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr "Od"

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr "GD je zakázán nebo není nainstalována. Můžete nahrát obrázek, ale nebudete dostávat automatické barevné návrhy."

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr "Obecné"

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr "Vzít šablonu ze souboru"

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr "Úvod"

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr "Předáno %1"

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr "Globální"

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr "Globální témy"

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr "Globální konfigurace uživatelských položek"

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr "Globální portlet %1 uložen."

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr "Globální šablona: %1"

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr "GnuPG"

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr "Chyba GnuPG. Kontaktujte administrátora"

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr "Integrace GnuPG je zakázána"

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr "GnuPG soukromý klíč(e) pro %1"

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr "GnuPG privátní klíče"

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr "GnuPg veřejný klíč(e) pro %1"

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr "Spusť"

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr "Jdi na skupinu"

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr "Jdi na uživatele"

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "Spusť!"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr "Přejít na požadavek"

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr "Přejít na požadavek"

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr "Diagram"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr "Vlastnosti diagramu"

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr "Grafické grafy nejsou dostupné."

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr "Skupina"

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr "Práva skupiny"

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr "Skupina již má člena: %1"

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr "Skupina nemůže být založena: %1"

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr "Skupina vytvořena"

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr "Skupina zakázána"

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr "Skupina povolena"

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr "Skupina nemá takového člena"

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr "Skupina s názvem '%1' se již používá"

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr "Skupina nenalezena"

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "Skupiny"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr "Skupiny nemohou být svými členy"

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr "Skupiny splňující vyhledávací podmínku"

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr "Skupiny, jejichž je uživatel členem (zatrhněte pro smazání)"

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr "Skupiny, jejichž není uživatel členem (zatrhněte pro přidání)"

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr "Skupiny, do nichž uživatel patří"

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr "Nadpis předané požadavky"

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr "Záhlaví předané zprávy"

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr "Ahoj!"

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr "Pomožte nám nastavit některé užitečné implicitní hodnoty pro RT."

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr "Skrýt všechen citovaný text"

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr "Skrýt citovaný text"

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "Historie"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr ""

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr "Historie skupiny %1"

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr "Historie fronty %1"

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr "Historie uživatele %1"

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr "Telefon domů"

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "Domovská stránka"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr "Hodina"

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr "Hodin"

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr "Mám %quant(%1,míchačku,míchačky,míchaček)"

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr "ISO"

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr "Identifikátor"

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "Identita"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr "Odmítni původce a zruš stávající schválení, bylo-li zamítnuto schválení"

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr "Nebyl-li zadán Žadatel, vytvářejte požadavky jako tento žadatel."

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr "Nebyla-li zadána fronta, vytvářejte požadavky v této frontě"

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr "Pokud by byl tento nástroj setgid, místní uživatel by jej mohl použit k získaní administrativního přístupu k RT"

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr "Pokud již máte funkční RT server i databázi, měli byste využít této příležitosti k ověření, že váš databázový server běží a že se s ním RT server může spojit. Až to uděláte, zastavte a znovu spusťte RT server.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Pokud jste změnili cokoli nahoře, nezapomeňte" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Pokud vámi upřednostňovaná databáze není uvedena v rozbalovacím menu níže, tak to znamená, že RT nenašel její lokálně nainstalovaný databázový ovladač. Měli byste bých schopni to napravit za použití %1 stažením a instalací DBD::MySQL, DBD::Oracle nebo DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Neplatná hodnota pro %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Neměnná položka" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Zahrnout blokované uživatelské položky do výpisu." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Zahrnout blokované skupiny do výpisu." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Zahrnout blokované fronty do výpisu." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Zahrnout blokované uživatele do vyhledávání." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Zahrnout stránku" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Jednotlivé zprávy" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informovat vlastníka RT, že uživatel(é) má problémy s veřejnými klíči" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informovat uživatele, že zpráva, kterou odeslal, má neplatná GnuPG data" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informovat uživatele, že má problémy s veřejným klíčem a nemůže přijímat zašifrovaný obsah" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Informovat uživatele, že jeho heslo bylo obnoveno" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informovat uživatele, že jsme obdrželi zašifrovaný email a nemáme soukromé klíče pro jeho dešifrování" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Počáteční priorita" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "Počáteční priorita" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inicializovat databázi" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Chyba na vstupu" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Vstup musí odpovídat %1" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Vnitřní chyba" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Vnitřní chyba: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Neplatná %1: '%2' nevypadá jako emailová adresa" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Neplatný %1: mělo by to být číslo" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Neplatný typ skupiny" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Neplatná data" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Neplatný objekt" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Neplatná šablona: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Neplatná fronta" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Neplatné právo" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Neplatná syntax pro emailovou adresu" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Neplatná hodnota pro %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Neplatná hodnota pro uživatelskou položku" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Není zašifrováno" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Je nesmírně důležité, aby neprivilegovaní uživatelé nemohli spustit tento nástroj." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Pro spuštění tohoto nástroje se doporučuje založení neprivilegovaného UNIXového uživatele se správným skupinovým členstvím a přístupem do RT." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Používá několik parametrů:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kurzíva" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "led" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "Připojit nebo nechat skupině" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "čec" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Maxi" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "čen" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Pokud si nejste jisti, nechejte 'localhost'. Nechejte nevyplněné, pokud se chcete připojit lokálně přes soket" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "Klíčové slovo a intuitivní vyhledávání" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Jazyk" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Velké" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Poslední" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Poslední kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Naposledy kontaktován" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Naposledy aktualizován" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Naposledy aktualizoval(a)" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Poslední aktualizace" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Naposledy aktualizoval(a)" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "Naposledy aktualizován" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "Naposledy aktualizoval(a)" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Nechejte nevyplněné pro odeslání na vaši současnou emailovou adresu (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Nechejte prázdné, pokud chcete použít implicitní hodnotu vaší databáze" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Nechte být, pokud chcete použít implicitní uživatelské jméno DBA pro váš typ databáze" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Zbývá" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Vysvětlivky" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Délka ve znacích; Použijte '0' pro zobrazení celé vložené zprávy bez ohledu na její délku" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Umožnit tomuto uživateli přístup k RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Umožnit dávat tomuto uživateli práva" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Pokračovat" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "Životní cyklus" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Odkaz" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Vazba již existuje" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Vazba nemůže být vytvořena" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Vazba nenalezena" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Svázat požadavek #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Odkazuje na" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Spojený" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "Propojení. Nemůžete vytvářet odkazy na odstraněné požadavky" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Spojování. Přístup nepovolen" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Vazby" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Načíst" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "Načtení uloženého hledání" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Načíst uložené vyhledávání" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Načíst uložený dotaz:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "Načíst uložený dotaz" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Načten %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Načten původní \"%1\" uložený dotaz" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Načtené perlovské moduly" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Načten uložený dotaz \"%1\"" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "Nahrávám..." #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Místní" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Umístění" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "Přihlášen" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Přihlášen jako %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Odhlášení" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Přihlášení" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Odhlásit se" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Nevhodný typ vyhledávání" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Email" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Nastavit vlastníka" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Nastavit stav" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Nastavit datum termínu dokončení" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Nastavit datum vyřešení" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Nastavit datum, kdy začal" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Nastavit datum, kdy začne" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Nastavit datum posledního kontaktu" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Nastavit prioritu" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Nastavit frontu" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Nastavit předmět" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Správa uživatelských položek a jejich hodnot" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Správa skupin a členství v nich" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Správa vlastností a konfigurace platné pro všechny fronty" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Správa front a jim příslušných vlastností" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Správa uložených diagramů" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Správa uživatelů a hesel" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "bře" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Označeny všechny zprávy jako přečtené" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Maximální délka vložené zprávy" #: lib/RT/Date.pm:95 msgid "May" msgstr "Květen" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "Já" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Člen" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Člen %1 přidán" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Člen %1 odebrán" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Člen přidán: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Člen odebrán" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Člen neodebrán" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Člen" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "Člen" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Členové" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Členství v %1 přidáno" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Členství v %1 zrušeno" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Členství" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Členství uživatele %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Sloučení úspěšné" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Sloučení se nepodařilo. Nelze nastavit EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Sloučení se nepodařilo. Nelze nastavit Status" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Sloučit do" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Sloučen do %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Zpráva" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Výška pole zprávy" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Šířka pole zprávy" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Zpráva nemůže být zaznamenána" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Zpráva pro uživatele" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Zpráva zaznamenána" #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minimální délka hesla" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minut" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "Smíšené" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Chybí primární klíč?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobilní telefon" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Upravovat seznam přístupových práv" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Upravit členy" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Upravovat uživatelskou položku pro frontu %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Upravovat scrip pro frontu %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Upravovat scrip platný pro všechny fronty" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "Upravovat a vytvářet třídy" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "Upravovat a vytvářet vlastní pole k článkům" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "Upravit článek #%1" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Upravovat přiřazené objekty k %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Upravit vlastní pole hodnot" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Upravit termíny pro #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Úprava datumů pro požadavek # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "Úprava globální témata článků" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Úprava globálních uživatelských položek" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Úprava globálních skupinových práv" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Upravit globální témata" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Úprava globálních uživatelských práv" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "Upravit skupinu řídicích panelů" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "Upravit členství ve skupině soupisku" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Upravovat metadata skupiny nebo smazat skupinu" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "Upravit skupinová práva pro třídu %1" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Úprava skupinových práv pro uživatelskou položku %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Úprava skupinových práv pro %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Úprava skupinových práv pro frontu %1" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "Upravit metadata a vlastní pole pro tuto třídu" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Upravovat vlastní RT účet" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "Upravit nebo smazat články v této třídě" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Úprava uživatelů souvisejících s požadavkem #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Upravovat osobní řídící panely" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "Upravit frontu pozorovatelů" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Úprava scripů pro frontu %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Úprava scripů platných ve všech frontách" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Upravovat systémové řídící panely" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Úprava šablony %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Upravit šablony pro všechny fronty" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "Upravit třídu %1" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "Upravit obsah řídicího panelu %1" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Úprava řídícího panelu %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Úprava výchozího vzhledu stránky \"Přehled RT\"" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Úprava skupiny %1" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Upravit odběr řídicího panelu %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Úprava uživatele %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "Změnit toto hledání ..." #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Úprava požadavku # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Úprava požadavku #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Upravovat požadavky" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "Upravit hierarchii tématu spojené s touto třídou" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Upravit témata pro články v této třídě" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "Upravit uživatelská práva pro třídu %1" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Upravit práva uživatelů k uživatelské položce %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Úprava práv uživatelů ke skupině %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Úprava práv uživatelů k frontě %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "Upravit příjemce pošty pro požadavek #%1" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "Upravovat seznam přístupových práv" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "Upravovat uživatelskou položku" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "Upravovat řídící panel" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "Upravovat řídící panel skupiny" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "Upravovat vlastní řídící panel" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "Upravovat členství ve skupině" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "Upravovat pozorovale fronty" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "Upravovat scripy" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "Upravovat sebe" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "Upravovat šablonu" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "Upravovat požadavek" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Po" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Pondělí" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Pondělí až pátek" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "Měsíčne" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "Více o žadatelech" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Dát níže" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Dát výše" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Vícenásobná" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Nutno zadat atribut 'Jméno'" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Moje požadavky ve stavu %1" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Mnou schválené" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Můj den" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "Moje připomenutí" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mnou schválené" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Moje řídící panely" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Moje připomenutí" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Moje uložené dotazy" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "NOVÝ ŘÁDEK" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Jméno" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "Jméno a emailová adresa" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Jméno je použito" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Jméno:" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Nikdy" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Nové" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "Nový článek" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "Nový Řídíci panel" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nové vazby" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Nová probíhající schválení" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nové vyhledávání" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nové zprávy" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nové heslo" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Oznámení o novém hesle zasláno" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Nová upomínka:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nová práva" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nový požadavek" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Nový požadavek neexistuje" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "Nové požadavky v této frontě nemohou mít status '%1'" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Nový uživatel jména" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nový pozorovatel" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Další" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Přezdívka" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Ne" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Žádný %1 nenačten" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "Žádným článkům neodpovída %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nedefinována žádná třída" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Žádná uživatelská položka" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nedefinována žádná uživatelská položka" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nedefinována žádná skupina" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Prázdný dotaz" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nedefinována žádná fronta" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Žádný předmět" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Žádna šablona" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Bez akce" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Neudán sloupec" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Poznámky k tomuto uživateli neudány" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Pro %1 není popis" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Žádné podrobnosti" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Neudána skupina" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Žádná skupina neodpovídá vyhledávací podmínce." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Žádný klíč není vhodný pro šifrování" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Žádné klíče pro tuto adresu" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Zpráva nepřipojena" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Není potřeba šifrovat" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Heslo nenastaveno" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Nedostatek práv k vytváření front" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Nedostatek práv k vytváření požadavků ve frontě '%1'" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Nedostatek práv k zobrazení tohoto požadavku" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Nedostatek práv k uložení dotazů pro celý systém" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Nedostatek práv ke změně nastavení" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "Nemáte oprávnění prohlížet článek" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Nedostatek práv k zobrazení aktualizace požadavku" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Nezadán uživatel" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Nevybráni uživatelé." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Žádný soukromý klíč" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Nenalezeny žádné fronty odpovídající vyhledávací podmínce." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Právo nezadáno" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Práva nenalezena" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Nepřidělena žádná práva." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Bez vyhledání nelze pracovat." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Žádný předmět" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Žádný klíč nebo klíč není vhodný k podpisu" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Nenalezen žádný požadavek." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Neudán typ transakce" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Žádné použitelné klíče." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Nenalezeni žádní uživatelé odpovídající vyhledávací podmínce." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Nikdo" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Žádný" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Neexistující položka?" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Nenalezen" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nepřihlášen." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Nenastaven" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Nelze používat mobilní prohlížeč?" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Zatím neimplementováno." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Poznámky" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Upozornění nemůže být zasláno" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Zaslat všem AdminCc" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Zaslat všem AdminCc jako komentář" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Upozornit všechny Cc" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Upozornit všechny Cc jako komentář" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Zaslat ostatním příjemcům" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Zaslat ostatním příjemcům jako komentář" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Zaslat vlastníkovi" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Zaslat vlastníkovi jako komentář" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Upozornění vlastníka o zamítnutí požadavku" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Informujte majitel, žadatelů, CCS a AdminCcs" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Informujte majitele, žadatelů, CCS a AdminCcs jako komentář" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Zaslat vlastníkům a všem AdminCc nové případy očekávající jejich schválení" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Zaslat žadatelům" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Zaslat žadatelům a všem Cc" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Zaslat žadatelům a všem Cc jako komentář" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Informuj mne o nepřečtených zprávách" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "lis" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Počet výsledků hledání" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OR" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt nemůže být vytvořen" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objekt nemůže být smazán" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekt vytvořen" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekt smazán" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Nevhodný typ objektu" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Seznam objektů je prázdný" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "říj" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Off-line" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Off-line načtení" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "Dne %1, %2 napsal(a):" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Při uzavření" #: etc/initialdata:143 msgid "On Comment" msgstr "Při komentáři" #: etc/initialdata:115 msgid "On Correspond" msgstr "Při korespondenci" #: etc/initialdata:104 msgid "On Create" msgstr "Při založení" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Při změně vlastníka" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Při změně priority" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Při změně fronty" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Při znovuotevření" #: etc/initialdata:178 msgid "On Resolve" msgstr "Při vyřešení" #: etc/initialdata:149 msgid "On Status Change" msgstr "Při změně stavu" #: etc/initialdata:109 msgid "On Transaction" msgstr "Při transakci" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Jednorázové Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Jednorázové Cc" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Zobrazit jen schvalování pro požadavky založené po %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Zobrazit jen schvalování pro požadavky založení před %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Zobrazit jen uživatelské položky pro:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Otevřené požadavky" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Otevřít URL" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Otevřené požadavky" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Otevřít požadavky při korespondenci" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Volba" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Volby" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Řadit podle" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organizace" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Původní požadavek: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Odchozí zpráva o komentáři zaznamenána" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Odchozí zpráva zaznamenána" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Odchozí pošta" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Časem se priorita posouvá k" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "Přehled" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Vlastnit požadavky" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "Vlastnit požadavek" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Vlastník" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Vlastník '%1' nemá práva k držení tohoto požadavku." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Vlastník změněn z %1 na %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Vlastník nemůže být nastaven." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Vlastník nuceně změněn z %1 na %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Jméno vlastníka" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Stránka" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Stránka 1 z 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Stránka nenalezena" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Pager" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "Pager" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Rodiče" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Heslo" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Připomínač hesel" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Heslo změněno" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Heslo nebylo nastaveno" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Heslo musí být dlouhé nejméně %1 %quant(%1,znak,znaky,znaků)" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Heslo nebylo vytištěno" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Heslo je nastaveno" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Heslo: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Heslo: Přístup odmítnut" #: etc/initialdata:463 msgid "PasswordChange" msgstr "Změna hesla" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Hesla nesouhlasí." #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Cesta k sendmailu" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Uživatelé" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Provedení uživatelem definované akce" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "Perl" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Konfigurace Perlu" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Přístup nepovolen" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Přístup nepovolen" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Čísla telefonů" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Zkontrolujte prosím URL a zkuste to znovu." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Prosím, vložte správně vaše stávající heslo." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Prosím, vložte vaše stávající heslo." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Možné skryté dotazy" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Nastavení" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Nastavení %1 uživatele %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Nastavení pro %1 uloženo." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Nastavení pro uživatele %1 uloženo." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Nastavení uloženo." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Preferovaný klíč: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Preferovaný klíč" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Předchozí" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Předchozí" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Uživatel %1 nenalezen." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Vypiš výsledné zprávy s přehledy na STDOUT; neposílej je mailem. Neoznač je za odeslané" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Tisk této zprávy" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Priorita" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Priorita začíná na" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Soukromí" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Soukromí:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Soukromý klíč" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilegován" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Privilegovaný stav: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Privilegovaní uživatelé" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudoskupina pro vnitřní použití" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Veřejný klíč '0x%1' je nutný k ověření podpisu" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Dotazy" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Dotaz" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Tvůrce dotazu" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Fronta" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Fronta %1 nenalezena" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Název fronty" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Fronta již existuje" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Fronta nemůže být vytvořena" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Fronta nemůže být načtena." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Fronta vytvořena" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Fronta zakázaná" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Fronta povolena" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "ID fronty" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Fronta nenalezena" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Klíč fronty" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "Název fronty" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Fronty" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Fronty mnou spravované" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Fronty v nichž jsem AdminCc" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Rychlé hledání" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Rychlé založení požadavku" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Správa RT" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Email na administrátora RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfigurace" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "Chyba RT" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT velikost" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "Přehled RT" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "Přehled RT pro uživatele %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT může informovat vaše uživatele o nových požadavcích nebo o nové korespondenci u požadavků. Řekněte nám, kde je umístěn sendmail (nebo se sendmailem kompatibilní binární soubor jako např. ten, který je dodáván s postfixem). RT také potřebuje vědět, koho má informovat, když někdo pošle chybný email. Nesmí to být ale adresa, která směřuje zpátky do RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT může včlenit obsah jiné webové stránky při zobrazení této uživatelské položky." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT může z hodnoty této uživatelské položky vytvořit odkaz na jinou stránku." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT nemůže uložit vaše sezení." #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT pro %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT se připojí k databázi pod tímto uživatelem. Bude pro vás založen." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vytvoří uživatele \"root\" a nastaví jeho heslo na tuto hodnotu" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT nahradí %1 a %2 identifikátorem záznamu a hodnotou uživatelské položky (v uvedeném pořadí)" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT použije tento řetězec k jednoznačné identifikaci vaší instalace a hledá ho v předmětech emailů, aby určil, kterého požadavku se zpráva týká. Doporučujeme vám zadat vaši internetovou doménu. (např. example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT pracuje s několika různými databázemi. Podporované jsou MySQL, PostgreSQL, Oracle a SQLite." #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "Opětovné-otevřen" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Skutečné jméno" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Příjemce" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "Příjemce musí být e-mailová adresa" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "Příjemci" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Uložit všechny změny" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekurzivní člen" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Viz" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Přidán odkaz z %1" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Smazán odkaz z %1" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Přidán odkaz na %1" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Smazán odkaz na %1" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Je odkazem z" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Odkazuje na" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Obnova" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Obnovit domácí stránku každých 10 minut." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Obnovit domácí stránku každých 120 minut." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Obnovit domácí stránku každé 2 minuty." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Obnovit domácí stránku každých 20 minut." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Obnovit domácí stránku každých 5 minut." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Obnovit domácí stránku každých 60 minut." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Obnovení výsledků vyhledávání každých 10 minut." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Obnovení výsledků vyhledávání každých 120 minut." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Obnovení výsledků vyhledávání každé 2 minuty." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Obnovení výsledků vyhledávání každých 20 minut." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Obnovení výsledků vyhledávání každých 5 minut." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Obnovení výsledků vyhledávání každých 60 minut." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Obnovit tuto stránku %quant(%1,každou,každé,každých) %numf(%1) %quant(%1,minutu,minuty,minut)." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "Odmítnutí" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "Pamatuj si výchozí frontu" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "Upomínka" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Upomínka '%1' přidána" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Upomínka '%1' ukončena" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Upomínka '%1' znovuotevřena" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Upomínky" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Upomínky pro požadavek #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Odstranit AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Odstranit záložku" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Odstranit Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Odstranit žadatele" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "Nahradí vlastníka rozbalovací nabídky s textovými poli" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Odpovědět" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Adresa pro odpověďi" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Odpověď žadatelům" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Odpovědět na požadavky" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "Odpovídat na požadavky" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Žadatel" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Žadatelé" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Požadavky mají být vyřešeny do" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Povinný parametr '%1' nezadán" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Vymazat" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Obnovit výchozí" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Bydliště" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Vyřešit" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Vyřešení požadavku #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Vyřešen" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Reagovat" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Výsledky" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Návrat zpět k požadavku" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Zopakujte heslo" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Vrátit" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Právo přidáno" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Právo načteno" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Právo nemůže být odebráno" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Právo nenačteno." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Právo odebráno" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Práva pro %1 nemohou být přidělena" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "Práva pro administrátory" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "Práva pro zaměstnance (Staff)" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Řádky" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Řádků na oddíl" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Řádků na stránku" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite je databáze, která nepotřebuje server ani konfiguraci jakéhokoli druhu. Autoři RT ji doporučují při testování, předvádění a vývoji, ale není úplně vhodná pro velký produkční RT server." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "So" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Sobota" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Uložit" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Uložit změny" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Uložit nastavení" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Uložit jako nový" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Uložen %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Uložený dotaz %1 nenalezen" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Uložené grafy" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Uložené dotazy" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip vytvořen" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Položky scripu" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip smazán" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scripy" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Scripy a příjemci" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scripy platné ve všech frontách" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Vyhledat" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Vyhledat články" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Nastavení hledání" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Vyhledávání schvalování" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Hledat požadavky" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "Hledat požadavky zadáním %1id%2 čísla, předmětu" #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Volby pro hledání" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Výsledky hledání seskupit podle %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "Zabezpeční:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Viz také:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "Vidět uživatelskou položku" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "Vidět řídící panel" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "Vidět skupinu" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "Vidět řídící panel skupiny" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "Vidět vlastní řídící panel" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "Vidět frontu" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Výběr" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Výběr typu databáze" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Výběr uživatelské položky" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Výběr skupiny" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Výběr fronty" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Výběr fronty pro váš nový požadavek" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Výběr uživatele" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vyberte jiný jazyk" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Vybrat uživatelské položky pro všechny fronty" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Vybrat uživatelské položky pro všechny skupiny uživatelů" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Vybrat uživatelské položky pro všechny uživatele" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Vybrat uživatelské položky pro požadavky ve všech frontách" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Vybrat uživatelské položky pro transakce s požadavky ve všech frontách" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Vybrat více hodnot" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Vybrat jednu hodnotu" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Výběr front, které budou zobrazeny na stránce \"Přehled RT\"" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "Vyberte témata pro tento článek" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Výběr nejvýše %1 %quant(%1,hodnoty,hodnot,hodnot)" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Vybrané uživatelské položky" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Vybrané fronty" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Vybraný klíč buď není důvěryhodný nebo již neexistuje." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Vybrané objekty" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Výběr upraven. Prosím uložte si své změny" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Odeslat e-mail na majitele a všechny pozorovatele" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Odeslat e-mail na majitele a všechny pozorovatele jako komentář" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Zaslat e-mail žadatelům a všem Cc" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Zaslat e-mail žadatelům a všem Ccs jako komentář" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Posílá zprávu žadatelům" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Posílá e-mail všem přesně vyjmenovaným Cc a Bcc" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Posílá e-mail všem Cc" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Posílá e-mail všem Cc jako komentář" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Posílá e-mail všem administrativním Cc" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Posílá e-mail všem administrativním Cc jako komentář" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Posílá e-mail vlastníkovi" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "E-mail odeslán úspěšně" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "zář" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Nastavení" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "Krátke uživatelské jméno" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Zobrazit" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "Zobrazit kartu schválení" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Zobrazit sloupce" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "Zobrazit kartu konfigurace" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Zobrazit výsledky" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Zobrazit vlastnosti požadavku na %1 levelu" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Zobrazit schválené požadavky" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "Zobrazit stručné záhlaví" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Zobrazit odepřené požadavky" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "Zobrazit úplné záhlaví" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Zobrazit odkaz popisů" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Zobrazit historii vzestupně" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Zobrazit trvající požadavky" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Zobrazit citovaný text" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Zobrazit požadavky čekající na další schválení" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Zobrazit historii požadavku" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "Zobrazovat seznam přístupových práv" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "Zobrazit záložku Schvalování" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "Zobrazit záložku Správa" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "Zobrazit odchozí e-mail" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "Zobrazit uložené dotazy" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "Zobrazit scripy" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "Zobrazit šablonu" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "Zobrazit požadavek" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "Zobrazit komentáře požadavku" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Shredder" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "Shredder potřebuje adresář pro zápis. Ujistěte se, že adresář %1 existuje a že web server má práva zápisu." #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Registrace" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Registrace ve výchozím nastavení" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Být žadatelem či Cc požadavku nebo fronty" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Být AdminCc požadavku nebo fronty" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Podpis" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Podepsání zakázáno" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Podepsání povoleno" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "Jednoduchý" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Jednoduché vyhledávání" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Jediný" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Jméno serveru" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Velikost" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Přeskočit menu" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Přeskakuji zakázaného uživatele" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Malé" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Některé prohlížeče mohou nahrát obsah pouze ze stejné domény jako je váš RT server." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Něco není v pořádku. Kontaktujte správce systému" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Pořadí" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Třídění" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Zdroj" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Upřesněte, zda jde o denní nebo týdenní spuštění." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Tabulka" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Fáze" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "Stání (Stall)" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Spusťte hledaný výraz s názvem podporovaného pole následovaným za dvojtečkou, jako v %1 a %2, výslovně upřesní typ hledání." #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Započato" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Začíná" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Stát" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Stav" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Status '%1' není platný stav požadavku v této frontě" #: etc/initialdata:307 msgid "Status Change" msgstr "Změna stavu" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Stav změněn z %1 na %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "Změnit stav" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Převzít" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Převzít požadavky" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "Převzít požadavek" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Krok %1 z %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Převzato od %1" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Styl" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Předmět" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Předmět značky" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Předmět změněn na %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "Předmět značky" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Odeslat" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Odebírat" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Přihlásit se k odběru řídicího panelu %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Přihlásit se k odběru řídicích panelů" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Odebíráte řídicí panel %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Předplatné" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Úspěšně dešifrovaná data" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Úspěšně zašifrovaná data" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "Celkem" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ne" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Neděle" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "Super uživatel" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Pozastaveno" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Systémová konfigurace" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Nastavení systému" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Systémová chyba" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Systémová chyba: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systémové nástroje" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "Systémová chyba" #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Systémová chyba. Právo nepřiděleno." #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "Skupina systémovýh pravidel pro vnitřní použití" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Vzít" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Vzít požadavky" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "Vzít požadavek" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Vzal" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Řekněte nám něco málo o tom, jak máme najít databázi, kterou bude RT používat" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Šablona" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Šablona #%1 smazána" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Šablona '%1' nenalezena" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Šablona je prázdn" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Šablona je povinným parametrem" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Šablona rozpoznána" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Chyba při rozpoznávání šablony" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Šablony" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "Šablony pro fronu %1" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Toto je již aktuální hodnota" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Toto není hodnota pro tuto uživatelskou položku" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Toto je shodná hodnota" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Tato fronta neexistuje" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Tento požadavek má nevyřešené závislosti" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Tento uživatel již tento požadavek vlastní" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Tento uživatel neexistuje" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Tento uživatel je již privilegován" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Tento uživatel je již neprivilegován" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Uživatel je nyní privilegován" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Uživatel je nyní neprivilegován" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "V této frontě nemůže tento uživatel vlastnit požadavky" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Toto není číselný identifikátor" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Základní údaje" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Cc požadavku" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Heslo DBA k databázi" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Administrativní Cc požadavku" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Doménové jméno vašeho databázového serveru (např. 'db.example.com')." #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Následující dotazy nemohou být viditelné všem uživatelům, kteří vidí tento řídící panel." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Klíč byl zakázán" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Klíč byl odebrán" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Klíči vypršela platnost" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Klíč je zcela důvěryhodný" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Klíč je skutečně důvěryhodný" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Nová hodnota nastavena." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Vlastník požadavku" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Stránka, o kterou žádáte, nebyla nalezena" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Žadatel požadavku" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Nastavení, která jste zadali, jsou uložena v %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Motiv" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Více klíčů je vhodných pro šifrování." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "U požadavku jsou nepřečtené zprávy." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Žádný klíč není vhodný pro šifrování." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Tyto komentáře nejsou běžně viditelné uživateli" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Tyto volby nastavení zahrnují některé základní údaje potřebné k provozu RT. Potřebujeme znát jméno vaší instalace RT a doménové jméno, kde RT poběží. Také budete potřebovat zadat heslo vašeho implicitního administrativního uživatele." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Tato uživatelská položka se nevztahuje k tomuto objektu" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Tato funkce je dostupná jen správcům systému" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "Tato funkce je dostupná pouze pro systémové administrátory." #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Může to znamenat, že adresář '%1' není přístupný pro zápis nebo že tabulka databáze chybí nebo je poškozená." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Tento nástroj umožňuje uživateli spustit libovolné perl moduly z RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Tato transakce vypadá, že nemá obsah" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Čt" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Čtvrtek" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Požadavek" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Požadavek #%1 Maxi aktualizace: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Požadavek #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Požadavek %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Požadavek %1 vytvořen ve frontě '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Požadavek %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Uživatelské položky požadavků" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Historie požadavku # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Požadavek vyřešen" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Hledání požadavku" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Transakce s požadavky" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Obsah požadavku" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Content type požadavku" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Požadaven nemůže být vytvořen pro vnitřní chybu" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Požadavek nemůže být nahrán" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Zobrazení požadavku" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Metadata požadavku" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Stav požadavku změněn" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "TicketSQL vyhledávací modul" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Požadavky" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Požadavky %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Požadavky, které záleží na tomto schválení:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Předpokládaný čas" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Zbývající čas" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Čas práce" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Čas k zobrazení" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "Odhadovaný čas" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "Uběhlý čas" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "Čas práce" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Časové pásmo" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Nadpis" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Komu" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "K získání informací o podpoře, tréninku, zákaznických úpravách či licencování kontaktujte prosím %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Poslední kontakt" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Nástroje" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Celkem" #: etc/initialdata:249 msgid "Transaction" msgstr "Transakce" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transakce %1 vymazána" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transakce vytvořena" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Uživatelské položky transakcí" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Bez udání typu objektu a id nelze volat Transaction->Create" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transakce jsou neměnné" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Út" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Úterý" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Typ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Typ změněn z '%1' na '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Nelze určit typ objektu nebo id" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "Vrátit smazání" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Neimplementováno" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unixový login" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Neznámé kódování obsahu %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Neznámé pole: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "Neznámý typ pozorovatele %1" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Neomezený" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Neomezeně" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Nepojmenovaný dotaz" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Požadavky bez vlastíka" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Bez privilegií" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Nevybrané uživatelské položky" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Nevybrané fronty" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Nevybrané objekty" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Vrácen" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Aktualizace" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "Aktualizace grafu" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Aktualizovat diagram" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Aktualizovat požadavek" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Typ aktualizace" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Aktualizovat formátování a hledat" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Aktualizovat hromadně požadavky" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Aktualizace nezaznamenána" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Aktualizace požadavku" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Aktualizace požadavku #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Aktualizace požadavku #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Typ aktualizace nebyl ani korespondence ani komentář." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Aktualizováno" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Uložený dotaz \"%1\" byl aktualizován" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Odeslat" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Odeslat více souborů" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Odeslat více obrázků" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Odeslat jeden soubor" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Odeslat jeden obrázek" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Odeslat nejvýše %1 %quant(%1,soubor,soubory,souborů)" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Odeslat nejvýše %1 %quant(%1,obrázek,obrázky,obrázků)" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Načíst vaše změny" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Použít SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Použít implicitní (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Další administrativní nástroje RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Použít nastavení systému (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Uživatel" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Uživatel '%1' nemůže být nalezen" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Uživatelem definované" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Uživatelem definované podmínky a akce" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Práva uživatele" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Uživatel nemůže být vytvořen: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Uživatel vytvořen" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Uživatel má prázdnou emailovou adresu" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Uživatel načten" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Uživatelem definované skupiny" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Uživatelské jméno" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Formát uživatelského jména" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Uživatelé" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Uživatelé odpovídající vyhledávací podmínce" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Používám transakci #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Platný dotaz" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validace" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Hodnoty" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Proměnná" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Verze" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Zobrazit osobní řídící panely" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Zobrazit systémové řídící panely" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "Výška WYSIWYG tvůrce" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG tvůrce zpráv" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Upozornění! Není podepsáno!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Sledovat" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "Být AdminCc pozorovatelem" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Pozorovatel" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Pozorovatelé" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Jsme schopni nalézt vaši databázi a připojit se jako DBA. Pro pokračování v úpravách RT klikněte na 'Úprava základních údajů.'" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Potřebujeme znát jméno databáze, kterou bude RT používat a kde ji lze nalézt. Také potřebujeme znát uživatelské jméno a heslo uživatele, které má RT používat. RT může databázi a uživatele vytvořit za vás, což je také důvodem, proč se ptáme na uživatelské jméno a heslo uživatele s administrátorskými oprávněními k databázi. Během kroku 6 instalačního procesu použijeme tyto informace k vytvoření a inicializaci databáze RT." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Web port" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "St" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Středa" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "týdně" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Týdenní přehled" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Vítejte v RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Dnes jsem udělal" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Co je to RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Když RT nebude moci zpracovat emailovou zprávu, kam má být přeposlána?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Když RT posílá email, nastaví hlavičky From: a Reply-To: tak, že se uživatelé mohou zapojit do konverzace pouhým stiskem na Odpovědět ve svých emailových klientech. RT používá různé adresy pro Odpovědi a pro Komentáře. Ty mohou být změněny pro každou z vašich front. Tyto adresy bude potřeba nakonfigurovat, aby se mohl používat program rt-mailgate." #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Když je požadavek vytvořen" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Upozornit vlastníka a všechny AdminCc, jejichž schválení se očekává, při vytvoření schvalovaného požadavku" #: etc/initialdata:110 msgid "When anything happens" msgstr "Stane-li se cokoli" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Když kliknete na 'Kontrola připojení k databázi', tak může nastat malé zpoždění, během kterého se RT snaží připojit k vaší databázi" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Je-li uzavřen požadavek" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Je-li znovuotevřen požadavek" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Je-li vyřešen požadavek" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Změní-li se vlastník požadavku" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Při změně priority požadavku" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Změní-li se fronta požadavku" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Změní-li se stav požadavku" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Splní-li se uživatelská podmínka" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Přijde-li komentář" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Přijde-li korespondence" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Kde je umístěn váš program sendmail." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Vymazat" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Zaměstnání" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Odpracováno" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Ano" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Požadavek již vlastníte" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Chystáte se zašifrovat odchozí emailové zprávy, ale s veřejnými klíči příjemce jsou problémy. Musíte odstranit problémy s klíči, zakázat posílání zpráv příjemcům s problémovými klíči nebo zakázat šifrování." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Chystáte se zašifrovat odchozí emailové zprávy, ale s veřejným klíčem příjemce je problém. Musíte odstranit problém s klíčem, zakázat posílání zpráv tomuto příjemci nebo zakázat šifrování." #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Můžete přejít na první nepřečtenou zprávu nebo přejít na první nepřečtenou zprávu a označit všechny zprávy jako přečtené." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Můžete si také upravit předvolený dotaz" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Můžete vložit obsah požadavky do jakéhokoli netradičního, textového nebo wiki pole." #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Nemůžete nastavit heslo." #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Můžete přidělit pouze požadavky, které jsou vaše nebo nejsou vlastněny" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Můžete vzít pouze požadavky, které nikdo nevlastní" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "Můžete hledat jakékoliv slovo v plné historii požadavky zadáním %1 slovo ." #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "Nemůžete změnit status z '%1' na '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Nemáte práva uživatele SuperUser." #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Byl jste odhlášen z RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "Povolili jste GnuPG podporu, ale nemáte nastaven komentářovou adresu pro tuhle frontu." #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "Povolili jste GnuPG podporu, ale nemáte nastaven korespondenční adresu pro tuhle frontu." #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "V této frontě nemáte práva vytvářet požadavky." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Můžete zadat odkazy na články, jako \"a:###\", kde ### představuje číslo článku." #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "V této frontě nemůžete vytvářet požadavky." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Musíte zadat administrativní heslo" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "Musíte nastavit StatementLog na true, aby byl povolen tento dotaz historii stránky." #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "Musíte nastavit komentářovou adresu pro tuto frontu za účelem nakonfigurování GnuPG soukromného klíče." #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Měli byste být přesměrováni na přihlašovací stránku. Budete schopni se přihlásit uživatelským jménem %1 a heslem, které jste dříve zadali." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Měli byste vybrat databázi, se kterou jste vy nebo váš místní databázový správce nejvíce obeznámeni." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Tuto obrazovku vidíte proto, že jste spustili RT server bez fungující databáze. Velmi pravděpodobně jste spustili RT poprvé. Pokud kliknete níže na \"%1\" , RT vás provede nastavením RT serveru a databáze." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Jste vítáni k dalšímu přihlášení" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Nemáte nastavené heslo." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "Váš systém podporuje automatické barevné návrhy pro: %1" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Vaše uživatelské jméno nebo heslo je nesprávné" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "PSČ" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Dolů]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Nahoru]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nezadáno]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "vlastní pole" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktivní" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "po"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr "a před"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr "a ne"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "sloupcový"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "před"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "telo"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "zdola nahoru"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr "Zaškrtněte toto políčko pro použití této globální třídy na všechny fronty."

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "Zaškrtněte toto políčko pro použití Vlastního pole na všechny objekty."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr "Zaškrtněte toto políčko pro odstranení této třídy globálně a musí být schopen vybrat konkrétní fronty."

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "zjistit přidat"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "uzavřen"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "denně"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "denně v %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dnů"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "smazán"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "zobrazit zabalené a formátovány přílohy ve formátu prostého textu"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "neodpovídá"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "stáhnout"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr "trvání"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "je rovno"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "chyba: nelze přesunout dolů"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "chyba: nelze přesunout doleva"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "chyba: nelze přesunout nahorů"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "chyba: není co smazat"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "chyba: není co přesunout"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "chyba: není co přepnout"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "každý"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "plugin byl úspěšně spuštěn"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "plný"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "větší než"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "skupina"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "skupina '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "hodin"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "Identifikátor"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr "neaktivní"

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr "zahrnuje %1"

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr "index"

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "je"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "není"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "klíč zakázán"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "klíč vypršel"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "klíč odebrán"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "zleva doprava"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "menší než"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "okrajový"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "odpovídá"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maximální hloubka"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minut"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "měsíčně"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "měsíčně (den %1) na %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "měsíců"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "nikdy"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "nový"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "ne"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "bez jména"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "žádný"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "není rovno"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nic"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "objekty byly úspěšně odstraněny"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "dne"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "na den"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "jeden"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "otevřený"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "otevření/zavření"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "další..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "koláčový"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "plugin vrátil prázdný seznam"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "fronta %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "zamítnutý"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr "vyžaduje spuštění rt-crontool"

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "vyřešený"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "zprava doleva"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "odložený"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr "prohlášení"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "shrnutí"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "počet řádků"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "systém %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "systémová skupina '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "volající komponenta neudala důvod"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "implicitní adresy, které budou uvedeny v hlavičkách From: a Reply-To: emailu s komentářem."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "implicitní adresy, které budou uvedeny v hlavičkách From: a Reply-To: emailu s korespondencí."

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "požadavek #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "shora dolů"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "konečný"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "nepopsaná skupina %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "neomezene"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "uživatel"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "uživatel %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "uživatelské jméno"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "týdně"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "týdně (od %1) do %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "týdnů"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "Na kterém portu bude poslouchat váš webový server, např. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "včetně hlaviček"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "roků"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "ano"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/lt.po0000664000175000017500000117777112262650742013776 0ustar  chmrrchmrr#
# Lithuanian translation for Request Tracker
# Copyright (c) Vitolis Bendinskas , 2005, 2006, 2007, 2008, 2009, 2010, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:03+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: Lithuanian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (Trūksta viešo rakto!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (nepatikimas!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "Nr."

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "Nr. %1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 Nr. %2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %4.%2.%3"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %7.%2.%3 %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 pridėtas"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "prieš %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 pakeistas į %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 ištrintas"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 ištrintas."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 pervadintas į %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 išsaugotas."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 atnaujinta."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 Naudojant šabloną %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) prie %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (nesikeičia)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (iš panelės %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Derinti prisijungimo ekrano nustatymus"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Parametras perdavimui į %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Būsenos atnaujinimas perduodamas į STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - nurodykite šablono, kurį norite naudoti, identifikatorių"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - nurodykite ar norite naudoti 'pirmą', 'paskutinę' or 'visas' operacijas"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - nurodykite šablono, kurį norėtumėte naudoti, vardą arba identifikatorių"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - nurodykite veikmo modulį, kurį norite naudoti"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - nurodykite kableliais atskirtą operacijų tipų sąrašą, kur norite naudoti"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Nurodykite kurį sąlygų modulį norite naudoti"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Nurodykite kurį paieškos modulį norite naudoti"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 informacinės panelės"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 SkriptAction pakrautas"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 įdėta kaip %2 reikšmė"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 jau egzistuoja ir turi reikalingas RT sistemos lenteles, bet neturi RT sistemos meta-duomenų. Tolesnis žingsnis 'Initialize Database' gali sudėti reikiamus meta-duomenis į egzistuojančią duomenų bazę. Jeigu jums tai tinka, rinkitės 'Customize Basics' punktą ir tęskite RT diegimą."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 jau egzistuoja, bet neturi reikalingų RT sistemos lentelių ir meta-duomenų. Tolesnis žingsnis 'Initialize Database' gali sudėti reikiamas lenteles ir meta-duomenis į egzistuojančią duomenų bazę. Jeigu jums tai tinka, rinkitės 'Customize Basics' punktą ir tęskite RT diegimą."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 yra lokalus objektas, bet nerastas duomenų bazėje"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 atrodo pilnai inicializuota.  Nereikia kurti jokių lentelių ar kelti meta-duomenų, bet galite tęsti RT diegimą rinkdamiesi 'Customize Basics' žemiau"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1. Naudotojas %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 pakeitas iš %2 į %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 pakeista iš '%2' į '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 grafikas pagal %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 kopija"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 pagrindinė kongiūracija"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 negalima nustatyti į %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 negali pakeisti būseną į Išspręsta. Gali būti sugadinta RT duomenų bazė."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 sukurtas"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 ištrintas"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 išjungta"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 neegzistuoja."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 įjungta"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 aukščiausio prioriteto mano prašymų"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 yra instrumentas dirbti su prašymais ir išorinės planavimo sistemos, pvz. cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 -- yra instrumentas, vykdomas cron planavimo sistemos, skirtas išsiųsti naudotojams atidėtų RT pranešimų suvestines."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 yra adresas, kuriuo RT gauna laiškus. Nurodžius jį kaip  '%2', susidarys pašto kilpa"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 daugiau nebėra %2 šiai eilei."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 daugiau nebėra %2 šiam prašymui."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 daugiau nebėra papildomo lauko %2 reikšme"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1 nėra korektiškas gyvavimo ciklas"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 vėliausiai atnaujintų straipsnių"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 naujausių straipsnių"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 naujausių nepriskirtų prašymų"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objektų"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 sistemos konfigūracija"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 pakeitimas: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 pakeitimas: Niekas nepakeista"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 pakeista"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 išspręs visus prašymus iš išspręstų prašymų grupės."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1 %2 objektų"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 objektų"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1 GnuPG raktai"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1 dabartinis slaptažodis"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Informacinės panelės %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1 įsimintos paieškos"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: nėra prikabintų failų"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Naujas prašymas eilėje%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1 sek."

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%quant(%1,article)"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1, valanda,valandos,valandų)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' yra neteisinga būsenos reikšmė"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' nėra tesingas klasės identifikatorius"

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "'Rolės'"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'Sistema'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'Naudotojo grupės'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'Naudotojai'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Užbaigimui pažymėkite varnelę)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Pažymėkite ką norite pašalinti)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Ištrynimui pažymėkite varnelę)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Pažymėkite adresatus, kuriuos nenorite informuoti ir paspauskite apatinį mygtuką 'Keisti adresatus')"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Pažymėkite adresatus, kuriuos norite informuoti ir paspauskite apatinį mygtuką 'Keisti adresatus')"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Nurodykite prašymų identifikatorius arba URL'us, atskirtus tarpais)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Neužpildytas reiškia %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Papildomų laukų nėra)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Nėra narių)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Nėra skriptų)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Nėra šablonų)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Nėra)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Pranešimo kopija siunčiama administracinių el. pašto adresatų sąrašui, atskirtų kableliais. Nuo šiol šie adresatai gaus pranešimus.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Pranešimo kopiją siunčiama el. pašto adresatų sąrašui, atskirtų kableliais. Nuo šiol šie adresatai gaus pranešimus.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Naudokite šiuos laukus kai pasirenkate 'Nurodyta naudotojo' sąlygoms arba veiksmams)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(El. paštas nebus siunčiamas)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(bet kuris)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(tuščia)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(nėra santraukos)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(nėra vardo)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(nėra viešo rakto!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(reikšmė nenurodyta)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(reikšmės nenurodytos)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(tik vienas prašymas)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(laukia %quant(%1,kitas prašymas,kiti prašymai,kitų prašymų))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(laukia patvirtinimo)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(privaloma)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(pasitikėjimas: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(be pavadinimo)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(nepatikimas!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "--"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--šablono identifikatorius yra nebetaikomas parametras ir nebegali būti naudojamas su  --šablonu"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transaction argument could be only 'first', 'last' or 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr "<% $field->{'name'} %>"

#: NOT FOUND IN SOURCE
msgid "<%$Action%> here"
msgstr "<%$Action%> čia"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Visi iCal srautai turi slaptą žymą, kuri jus autorizuoja. Jeigu vieno iš jūsų iCal srautų URL bus atskleistas pasauliui, galite gauti naują slaptą žymą, bet tokiu atveju sugrius visi jūsų dabartiniai iCal srautai žemiau.

" #: NOT FOUND IN SOURCE msgid "%1 - %2s" msgstr "%1 - %2s" #: etc/initialdata:215 msgid "A blank template" msgstr "Tuščias šablonas" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Nepriskirtas slaptažodis, todėl naudotojas negalės prisijungti." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE nerastas" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACE galima tik sukurti ir panaikinti" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "IR" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Apie mane" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Priėjimo teisės" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Veiksmas" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Veiksmas %1 nerastas" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Veiksmas patvirtintas." #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Veiksmas patvirtintas.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Veiksmas yra privalomas argumentas" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Veiksmas parengtas..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Veiksmai" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "Aktyvūs prašymai" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "Atviri prašymai, priskirti %1" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "Pridėti %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Pridėti administracinę kopiją (CC)" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Pažymėti prašymą" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Pridėti kopiją (CC)" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Pridėti stulpelius" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Papildomas kriterijus" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Pridėti daugiau failų" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Pridėti prašymo autorių" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Pridėti reikšmę" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Pridėti skriptą visoms eilėms" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Pridėti komentarus ar atsakymus pažymėtiems prašymams" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Pridėkite grupę" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Įtraukti narius" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Pridėti naujus stebėtojus" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "Suteikite teises šiam %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Pridėti kriterijus" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Pridėti kriterijus ir ieškoti" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Pridėkite naudotoją" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Pridėti reikšmes" # Manual merge by Andrew Kornilov #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Pridėti, panaikinti ar ištrinti nuosavas laukų reikšmes objektams" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "Pridėti, pakeisti ar ištrinti papildomo laiko reikšmes objektui" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "Pridėti %1 prie %2 narių šioje eilėje." #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Vartotojas pridėtas kaip šios eilės %1" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Naudotojas pridėtas kaip šio prašymo %1" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adresas" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Adreso tęsinys" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adresas" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adreso tęsinys" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Administracinė kopija (CC)" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Administracinis komentaras" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Administracinis atsakymas" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Eilių valdymas" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administravimas/Globali konfigūracija" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "Admininistracinių kopijų grupė" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "Administracinė kopija (CC)" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "Administracinės kopijos (CC)" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "AdminClass" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "Administracinis papildomas laukas" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "AdminCustomFieldValues" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "Administruoti grupes" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "Administruoti grupės narystę" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "Administruoti nuosavas grupes" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "Administruoti eiles" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "AdminTopics" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "Administruoti naudotojus" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administracinė kopija" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administarcinis slaptažodis" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Rankinis užklausos taisymas" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Išplėstinė paieška" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Jungtukas" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Visi patvirtinimai gauti" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Visi straipsniai šioje klasėje turi būti išvardinti pasirinkimo sąraše atsakymo į prašymą lange." #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "Visos klasės" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "Visos informacinės panelės" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Visos eilės" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "Visi prašymai" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Visi iCal srautai turi slaptą žymą, kuri jus autorizuoja. Jeigu vieno iš jūsų iCal srautų URL bus atskleistas pasauliui, galite gauti naują slaptą žymą, bet tokiu atveju sugrius visi jūsų dabartiniai iCal srautai žemiau." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Visos eilės, atitinkančios paieškos kriterijus" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Visi prašymai" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Visos temos" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "Leisti įsiminti paieškas" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "Leisti atstatyti įsimintas paieškas" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Leisti naudoti Perl kodą šablonuose, skriptuose ir t.t." #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Jau užšifruota" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Ir/arba" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Bet kuris laukas" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Pritaikyta" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Taikoma" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Taikoma visiems objektams" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Taikyti" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Pritaikyti globaliai" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Pritaikyti pakeitimus" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Patvirtinimas" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Patvirtinimas #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Patvirtinimas #%1: Pastabos neišsaugotos dėl sistemos klaidos" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Patvirtinimas #%1: Pastabos išsaugotos" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Pratvirtinimas gautas" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Patvirtinimas savinikui gautas" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Patvirtinimas atmestas" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Patvirtinti" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Bal" #: NOT FOUND IN SOURCE msgid "April" msgstr "Balandis" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "Ar tikrai norite panaikinti šį straipsnį?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "Straipsnis #%1 panaikintas" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "Straipsnis #%1: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "Straipsnis %1" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "Straipsnis %1 sukurtas" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Straipsnių valdymas" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "Straipsnis panaikintas" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Straipsnis nerastas" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "Straipsniai" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "%1 straipsniai" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "Straipsniai, atitinkantys %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Straipsniai be temų" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Didėjimo tvarka" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Didėjimo tvarka" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Papaildomų laukų priskyrimas ir pašalinimas" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "Susieti ar atsieti eilę su papildomais laukais" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "Priskirti papildomus laukus" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Pridėti failą" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Pridėti failą" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Pridėtas failas" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Priedas" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Priedas '%1' negali būti nuskaitytas" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Priedas sukurtas" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Priedo failo vardas" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Priedai" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Priedų šifravimas išjungtas" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Atributas pašalintas" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Rgp" #: NOT FOUND IN SOURCE msgid "August" msgstr "Rugpjūtis" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Jūsų įkeltam paveikslėliui negalima automatiškai pasiūlyti spalvinių temų. Taip gali būti todėl, kad jūsų GD bibliotekos nepalaiko paveikslėlio failo formato. Palaikomi formatai yra: %1. Galite pabandyti perkompiliuoti libgd ir GD.pm įtraukę papildomus paveikslėlių failų formatus." #: etc/initialdata:218 msgid "Autoreply" msgstr "Automatinis atsakymas" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Automatinis atsakymas prašymo autoriui" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Turimas" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Slapta kopija (BCC)" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Atgal" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Neteisingas privatumas atributui %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Pagrindai" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Slapta kopija" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Nepamirškite išsaugoti nustatymus" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC corporate logo" #: etc/initialdata:214 msgid "Blank" msgstr "Tuščias" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Turinys" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Riebus" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Pasižymėjimas" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "Nuoroda į šią paiešką, skirta įsiminti naršyklėje" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Pažymėti prašymai" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Pažymėti prašymus" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Trumpos antraštės" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Peržiūrėti pagal temas" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "Peržiūrėti SQL užklausas, įvykdytas šiame procese" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Masinis pakeitimas" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Įsigyti palaikymą" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "Kopijų grupė" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Nepavyksta atstatyti įsimintos paieškos \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Sisteminių naudotojų keisti negalima" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Ar gali šis vartotojas matyti šią eilę" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Negalima įtraukti papildomą lauką be pavadinimo" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Nepavyksta rasti kolekcijos klasės, skirtos '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Nepavyksta rasti tinkamos naudojimui įsimintos paieškos" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Negalima susieti prašymo su juo pačiu" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Nepavyko išsaugoti %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Nepavyko įsiminti šios paieškos" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Negalima vienu metu nurodyti ir šaltinį, ir adresatą" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "Negalima įdėti nuorodos į paprastą skaičių" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Negalima sukurti prašymo išjungtoje eilėje." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Negalima sukurti vartotojo: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategorijos remiasi" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorija" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Kategorija nenurodyta" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Kopija (CC)" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Kopijos (CC)" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Pakeisti" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Pakeiti tvirtinimo prašymą į atidarytą būseną" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Pakeisti slaptažodį" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "Diagrama" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "Diagramos savybės" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Pažymėti visus" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Check Database Connectivity" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Patikritni duomenų bazės autentikaciją" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Pasirinkite ką norite pašalinti" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Pasirinktite teises, kurias norite nuimti" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Check your database credentials" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Palikuonys" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Pasirinkti DBVS" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Choose a database engine" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "Pasirinkite iš temų dėl %1" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Miestas" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "Klasė" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klasės vardas" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "Klasės identifikatorius" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "Klasė jau pritaikyta globaliai" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "Klasė jau pritaikyta %1" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "Klasės" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Išvalyti" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Nepažymėti nei vieno" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Click \"Finish Installation\" below to complete this wizard." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Uždaryti langą" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Uždaryta" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Uždaryti prašymai" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: pasirinkite arba įveskite keletą reikšmių" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Combobox: pasirinkite arba įveskite vieną reikšmę" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Combobox: pasirinkite arba įveskite iki %1 reikšmių" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Komentuoti" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Adresas komentarams" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Adresas komentarams" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Prašymo komentarai" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "Adresas komentarams" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "Prašymo komentarai" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Komentarai" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Komentarai (nesiunčiami prašymo autoriui)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Komentarai (nesiunčiami prašymo autoriui)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Komentarai apie šį naudotoją" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Komentarai pridėti" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Patvirtinimas pažymėtas" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Sąlyga" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Sąlyga '%1' nerasta" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Sąlyga yra privalomas argumentas" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Sąlyga atitinka..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Sąlyga, Veiksmas ir Šablonas" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Konfigūracijos failas %1 blokuotas" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Konfigūracija" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "Eilės %1 konfigūracija" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Patvirtinti" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Prisijungta sėkmingai" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Turinys" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "Turinyje yra neteisingas IP adresas" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "Turinyje yra neteisingas IP adresų intervalas" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Turinio tipas" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "Turinio tipas" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Susirašinėjimo adresas" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "Susirašinėjimo adresas" #: etc/initialdata:283 msgid "Correspondence" msgstr "Susirašinėjimas" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Susirašinėjimas pridėtas" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Negalima pridėti naujos papildomo lauko reikšmės: %1" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Nepavyko pakeisti atsakingo: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Nepavyko sukurti papildomo lauko" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Klaida kuriant papildomą lauką: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Nepavyko sukurti grupės" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "Nepavyksta įsiminti paieškos: %1" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Nepavyko sukurti šablono: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Negalima sukurti prašymo išjungtoje eilėje \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Nepavyko sukurti prašymo. Eilė nenurodyta." #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Nepavyko sukurti naudotojo" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "Negaliu panaikinti paieškos %1: %2" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Nepavyko rasti ar sukurti šio naudotojo" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Nepavyko rasti šio naudotojo" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Nepavyko užkrauti atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Negaliu nuskaityti klasės %1" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Nepavyko užkrauti papildomo lauko %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Nepavyko užkrauti grupės" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Nepavyko nuskaityti objekto, skirto %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Negalima paskirti šio naudotojo %1 šiai eilei" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Negalima paskirti šio naudotojo %1 šiam prašymui" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Negalima atšaukti vartotjo funkcijos %1 šiai eilei" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Negalima atšaukti naudotojo kaip %1 šiam prašymui" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Nepavyko priskirti naudotojui informacijos" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Negalima pridėti priedo" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Nepavyko įtraukti naudotojo į grupę" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Negalima pritaikyti papildomo lauko objektui, nes jis jau yra globalus" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Nepavyksta sukompiliuoti %1 kodo bloko '%2': %3" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "Nepavyksta sukompiliuoti šablono kodo bloko '%1': %2" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Negalima sukurti tranzakcijos: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Nepavyko sukurti įrašo" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "Nepavyksta sukurti įrašo: %1" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Negalima panaikinti informacinės panelės %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Negaliu rasti eilutės" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Nepavyksta rasti tinkamą tranzakciją. Praleidžiama" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Negaliu rasti šio naudotojo" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Negaliu rasti šios reikšmės" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Negaliu pakrauti %1 iš vartotojų duomenų bazės.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Negaliu nuskaityti klasės %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Klaida nuskaitant papildomą lauką #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Nepavyksta nuskaityti papildomo lauko #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Negaliu nuskaityti papildomo lauko %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Negaliu nuskaityti prašymo #%1 kopijos." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Klaida nuskaitant informacinę panelę %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Klaida nuskaitant informacinę panelę %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Nepavyko nuskaityti grupės #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Nepavyko nuskaityti grupės %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Nepavyko nuskaityti nuorodos" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Nepavyko nuskaityti objekto %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Klaida kuriant ar įkeliant naudotoją: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Negaliu nuskaityti eilės" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Klaida nuskaitant eilę #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Nepavyko nuskaityti eilės %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Klaida nuskaitant eilę '%1'" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Nepavyko nuskaityti skripto #%1" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Klaida nuskaitant šabloną #%1" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "Nepavyksta nuskaityti nurodyto atsakingo" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Nepavyko nuskaityti šio prašymo '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "Nepavyksta nuskaityti temos narystės bandant ją panaikinti" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Klaida nuskaitant tranzakciją #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Nepavyksta nuskaityti naudotojo" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Nepavyko įkelti naudotojo #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Nepavyksta nuskaityti naudotojo #%1 arba naudotojo '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Nepavyksta nuskaityti naudotojo '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Klaida paimant adresą iš teksto '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Klaida užpildant turinį dešifruotais duomenimis: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Klaida užpildant turinį užšifruotais duomenimis: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "Nepavyksta paversti '%1' į nuorodą" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Klaida verčiant '%1' į URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Negaliu paversti bazę '%1' į URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Negaliu paversti tikslą '%1' į URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Klaida siunčiant laišką" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Klaida skiriant naudotoją %1 stebėtoju: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Klaida nustatant privatų raktą" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Klaida naikinant privatų raktą" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Šalis" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Užregistruoti naują" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Užregistruoti prašymus" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "Sukurti klasę" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Sukurti papildomą lauką" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Sukurti papildomą lauką eilei %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "Sukurti naują straipsnį" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Sukurti naują straipnį" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Sukurti naują informacinę panelę" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Sukurti naują grupę" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "sukurti naują asmeninę grupę" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "Sukurti naują šabloną eilei %1" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Sukurti naują prašymą" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Sukurti naują naudotoją" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Sukurti eilę" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Sukurti skriptą eilei %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Sukurti šabloną" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Užregistruoti prašymą" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Sukurti naują staripsnį" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "Sukurti naują straipsnį klasėje..." #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "Sukurti naują straipsnį klasėje" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Sukurti informacines paneles šiai grupei" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "Sukurti grupės informacinę panelę" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Sukurti naujus prašymus naudojant šio skripto šabloną" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Sukurti asmenines informacines paneles" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Sukurti sistemines informacines paneles" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Užregistruoti prašymą" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "Sukurti prašymus" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Užregistruoti prašymus šioje eilėje" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Užregistruoti prašymus neprisijungus" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Sukurti, panaikinti ir pakeisti papildomus laukus" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Sukurti, panaikinti ir pakeisti eiles" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Sukurti, panaikinti ir pakeisti vartotojo asmeninių grupių narius" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Sukurti, panaikinti ir pakeisti vartotojus" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "Kurti, keisti arba naikinti prieigos teisių įrašus" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "Kurti, keisti arba naikinti papildomus laukus" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "Kurti, keisti arba naikinti papildomų laukų reikšmes" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "Kurti, keisti arba naikinti eiles" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "Kurti, keisti arba naikinti įsimintas paieškas" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "Kurti, keisti arba naikinti naudotojus" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "Sukurti straipsnį" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "Sukurti informacinę panelę" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "Sukurti grupės informacinę panelę" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "Sukurti asmeninę informacinę panelę" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "Įsiminti paiešką" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "Užregistruoti prašymą" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Pateiktas" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Pateiktas:" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Sukurtas papildomas laukas %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Sukūrė" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Užregistruoti prašymai per laikotarpį" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "Sukurta paieška %1" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Užregistruoti prašymai per periodą, sugrupuoti pagal būseną" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "Pateiktas:" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "Pateiktas santykinai" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Prašymo autorius" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Šifravimas" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Dabartinės nuorodos" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Dabartiniai skriptai" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "Einamoji paieškos sąlyga" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Dabartiniai nariai" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Dabartinės teisės" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Einamoji paieškos sąlyga" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Dabartiniai stebėtojai" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Papildomi laukai" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Papildomi laukai, skirti %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "Eilės %1 papildomi laukai" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Papildomas veiksmo išvalymo kodas" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Papildomas veiksmo parengimo kodas" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Papildoma sąlyga" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Papildomas laukas #%1 netaikomas šiam objektui" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Papildomas laukas %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Papildomas laukas %1 netaikomas šiam objektui" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Papidomo lauko %1 reikšmė nurodyta." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Papidomo lauko %1 reikšmė nenurodyta." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Nerastas papildomas laukas %1" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Papildomas laukas '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Papildomas laukas jau paskirtas šiam objektui" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Nerasta reikšmė %1 papildomam laukui %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Nepavyko ištrinti papildomo lauko reikšmės" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Nepavyko rasti papildomo lauko reikšmės" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Papildomo lauko reikšmė panaikinta" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Papildomas laukas" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "Papildomo lauko reikšmė" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Keisti:" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Customize Basics" #: NOT FOUND IN SOURCE msgid "Customize Database Details" msgstr "Customize Database Details" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Customize Email Addresses" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Customize Email Configuration" #: NOT FOUND IN SOURCE msgid "Customize Global" msgstr "Customize Global" #: NOT FOUND IN SOURCE msgid "Customize Global Defaults" msgstr "Customize Global Defaults" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "Keisti individualią RT išvaizdą" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA password" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA username" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Kasdieninė santrauka" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Informacinė panelė" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Klaidą kuriant informacinę panelę: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Klaidą keičiant informacinę panelę: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Informacinė panelė pakeista" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Informacinės panelės" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Database host" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Database name" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Database password for RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Database port" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Database type" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Database username for RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Datos formatas" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datos" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Grd" #: NOT FOUND IN SOURCE msgid "December" msgstr "Gruodis" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Dešifruoti" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Standartinio automatinio atsakymo šablonas" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Pagrindinė eilė" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Prašymo autorius pagal nutylėjimą" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Standartinio administracinio komentro šablonas" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Standartinio administracinio atsakymo šablonas" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Standartinio atsakymo šablonas" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Nutylėta eilė" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Standartinis tranzakcijos šablonas" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Nutylėta: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Nutylėta: %1/%2 pakeista iš %3 į %4" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "Nutylėta nes" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Nutylėtasis formatas" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Teisių delegavimas" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Atskirų savo teisių delegavimas." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "Deleguoti teises" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Teisių delegavimas" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Panaikinti" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Panaikinti šabloną" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "Panaikinti straipsnį #%1" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "Ištrinti staripsnius klasėje" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Panaikinti šios grupės informacines paneles" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Trynimas nepavyko: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "Panaikinti grupės informacinę panelę" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Trynimo operacija yra uždrausta gyvavimo ciklo konfigūracijoje" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Panaikinti asmenines informacines paneles" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Panaikinti pažymėtus skriptus" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Panaikinti sistemines informacines paneles" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Panaikinti prašymus" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Panaikinti reikšmes" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "Panaikinti straipsnį" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "Panaikinti informacinę panelę" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "Panaikinti grupės informacinę panelę" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "Panaikinti asmeninę informacinę panelę" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "Panaikinti prašymą" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Panaikinta %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Panaikinta informacinė panelė %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Panaikintos užklausos" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Panaikinta paieška" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "Panaikinta užklausa %1" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Ištrynus šį objektą bus sugrautas nuorodų integralumas" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Ištrynus šį objektą bus pažeistas nuorodų integralumas" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Atmesti" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Nuo jo priklauso" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "Priklauso nuo pagal" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Pridėta %1 priklausomybė" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Panaikinta %1 priklausomybė" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Pridėta priklausomybė nuo %1" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Panaikinta priklausomybė nuo %1" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "Priklauso nuo" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Priklauso nuo" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "Priklauso nuo" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Mažėjimo tvarka" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Mažėjimo tvarka" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Detalizuokite situaciją" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Aprašymas" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "Detali informacija apie RT nustatymus" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Išsamiau" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Kryptis" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Išjuntgta" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Parodyti" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Parodyti teisių sąrašą" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "Parodyti straipsnį %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Rodyti stulpelius" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Parodyti skriptų šablonų sąrašą šiai eilei" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Parodyti skriptų sąrašą šiai eilei" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Parodyti išsaugotas užklausas šiai grupei" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Platinama pagal %1 versiją 2 GNU GPL%2 licenciją." #: NOT FOUND IN SOURCE msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Platinama pagal %1 versiją 2 GNU GPL%2 licenciją." #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Platinama pagal 2 versiją GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Daryti viską ir visur" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Domeno vardas" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Nenaudokite http://, tik ką nors panašaus į 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Neatnaujinti pradinio puslapio" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Neatnaujinti paieškos rezultatų" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Neatnaujinti šio puslapio automatiškai" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Nuo šiol nepasitikėti šiuo raktu" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Parsisiųsti" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Parsisiųsti tabuliacijomis atskirtą failą" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Parsisiųsti dump failą" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "Pasirinkimo sąrašas" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Terminas" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "Santykinis terminas" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "KLAIDA: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Greitas savo neįvykdytų prašymų keitimas" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "Paprastas priminimų peržiūrėjimas" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Taisyti" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Taisyti papildomus laukus" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Taisyti papildomus laukus prašymui %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Taisyti papildomus laukus visoms grupėms" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Taisyti papildomus laukus visose eilėse" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Taisyti papildomus laukus visiems naudotojams" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Taisyti straipsnių papildomus laukus visose klasėse" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Taisyti papildomus laukus visoms eilėms" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Taisyti nuorodas" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Taisyti užklausą" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Patikslinti paiešką" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Taisyti šablonus eilei %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Taisyti globalią temų hierarchiją" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Taisyti įsimintas paieškas šiai grupei" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Taisyti sisteminius šablonus" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "Taisyti %1 temų hierarchiją" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "Taisyti įsimintas paieškas" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Tekstas taisymui" #: NOT FOUND IN SOURCE msgid "Editing Configuration for Class %1" msgstr "Taisyti klasės %1 konfigūraciją" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Eilės %1 nustatymų redagavimas" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Lauko %1 redagavimas" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Grupės %1 naudotojų sąrašo redagavimas" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Asmeninės grupės %1 vartotojų sąrašo redagavimas" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "Efektyvus Id" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Reikia nurodyti ara šaltinį, arba paskirties adresą" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Arba jūs neturite teisės matyti įsimintos paieškos %1, arba paieškos identifikatorius klaidingas" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "El. pašto adresas" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "El. pašto adresas" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "Email Configuration" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Pašto santrauka" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Email adresas jau naudojamas" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Pašto pristatymas" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Laiško šablonas periodinėms suvestinėms" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "El. pašto adresas" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Įjungtas" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "Įjungta (nuimkite pažymėjimą, norėdami išjungti šią klasę)" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Naudojamas (nuėmus 'varnelę' šio papildomo lauko naudojimas išjungiamas)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Naudojama (nuėmus 'varnelę' šios grupės naudojimas išjungiamas)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Naudojama (nuėmus 'varnelę' šios eilės naudojimas išjungiamas)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "Įjungti klases" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Naudojamos eilės" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Įjungtos eilės, atitinkančios paieškos kriterijus" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Įjungta būsena %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Užšifruoti" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Užšifruoti nutyl'tai" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Užšifruoti/Dešifruoti" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Užšifruoti/Dešifruoti tranzakciją #%1 prašymui #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Šifravimas išjungtas" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Šifravimas įjungtas" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Nurodyti straipsnius, prašymus ar kitas URL nuorodas, susijusias su šiuo straipsniu." #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "Nurodykite keletą IP adresų intervalų" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "Nurodykite keletą IP adresų" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Įrašykite keletą reikšmių" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Įrašykite keletą reikšmių (automatinis užbaigimas)" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Išvardinkite objektus arba nuorodas į juos (URI). Reikšmes atskirkite tarpais." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "Nurodykite vieną IP adresą" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "Nurodykite vieną IP adresų intervalą" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Įrašykite vieną reikšmę" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Įrašykite vieną reikšmę (automatinis užbaigimas)" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Išvardinkite eiles arba nuorodas į jas (URI). Reikšmes atskirkite tarpais." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Išvardinkite prašymus arba nuorodas į juos (URI). Reikšmes atskirkite tarpais." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "Nurodykite iki %1 adresų intervalų" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "Nurodykite iki %1 adresų" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Nurodykite iki %1 reikšmių" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Nurodykite iki %1 reikšmių (automatinis užbaigimas)" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Klaida" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Klaida parametruose Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Klaida parametruose Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Klaida parametruose Ticket->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Klaida parametruose Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Klaida RT valdytojui: viešas raktas" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Klaida: nėra informacinės panelės" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Klaida: neteisingi GnuPG duomenys" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "Klaida: negalima pakeisti privatumo nustatymo esamai paieškai" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "Klaida: nepavyksta atstatyti įsimintos paieškos %1: %2" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Klaida: nėra privataus rakto" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Klaida: nėra viešo rakto" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "Klaida: paieška %1 nepakeista: %2" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Eskaluoti prašymą" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Įvertinta" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Visi" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Perižūrėti prašymus, sukurtus eilėje tarp datų intervalo" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Perižūrėti prašymus, išspręstus eilėje tarp datų intervalo" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Perižūrėti prašymus, išspręstus eilėje, sugrupuotus pagal atsakingą" #: bin/rt-crontool:356 msgid "Example:" msgstr "Pavyzdys:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "Vykdyti kodą" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Baigiasi" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "Išplėstinė būsena" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Išorinė autentikacija įjungta" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Papildoma informacija" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "Ištraukti straipsnį" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Ištraukti pavadinimo žymę" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "Ištraukti naują straipsnį iš prašymo #%1" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "Ištraukti straipsnį iš prašymo #%1 į klasę %2" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Ištraukti žymę iš tranzakcijos pavadinimo ir įdėti ją į prašymo pavadinimą" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Failed to connect to database: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Klaida kuriant atributą %1" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Nepavyko rasti pseudo-grupę 'Privileged'" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Nepavyko rasti pseudo-grupę 'Unprivileged'" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Užkrovimo klaida %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Užkrovimo klaida %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Klaida užkraunant modulį %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Klaida užkraunant objektą, skirtą %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Šablono užkrovimo klaida" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Šablono apdorojimo klaida" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Vas" #: NOT FOUND IN SOURCE msgid "February" msgstr "Vasaris" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "Sklaidos kanalai" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "Laukas" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Lauko reikšmių šaltinis:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "Failo vardas" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Failo vardas" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Nurodykite parametrus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Nurodykite spalvas" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Užpildykite keletą tekstinių laukų" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Užpildykite keletą wikitext laukų" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Užpildykite vieną tekstinį lauką" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Užpildykite vieną wikitext lauką" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Užpildykite šį laiką URL'u" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Užpildykite iki %1 tekstinių laukų" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Užpildykite iki %1 wikitext laukų" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Galutinis prioritetas" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "Galutinis prioritetas" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Rasti naudotojus, kurių" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Rasti grupes, kurių" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Rasti naudotojus, kurių" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Prašymų paieška" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "Rakto \"piršto atspaudas\"" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Pabaigti" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Pirmas" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Priverstinai pakeisti" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Forma" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Persiųsti" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Persiųsti pranešimą" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Persiųsti pranešimą ir grįžti" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Persiųsti prašymą" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Persiųsti pranešimą" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "Persiųsti pranešimą iš RT į išorę" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Persiųsti pranešimą trečiai šaliai" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Persiųsti prašymą #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Persiųti operaciją #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "Persiųsti pranešimą" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "Persiųstas prašymas adresu %1" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "Persiųsta operacija #%1 adresu %2" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Rasta %quant(%1,prašymas,prašymai,prašymų)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Rastas objektas" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Dažnumas" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pen" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Penktadienis" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Pilnos antraštės" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD išjungtas arba neinstaliuotas. Galite padėti paveikslėlį, bet negausite automatinio spalvų pasiūlymo." #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Bendri" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "Bendros teisės" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Paimti šabloną iš failo" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Getting started" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Paskirta %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Globalūs" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "Globalūs požymiai" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Globalūs papildomi laukai" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Globalių papildomų laukų nustatymai" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Bendras protletas %1 išsaugotas." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Globalus šablonas: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG klaida: kreipkitės į sistemos administratorių" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Integracija su GnuPG išjungta" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG problemos" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG privatus raktas, skirtas %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "GnuPG privatūs raktai" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG viešas raktas, skirtas %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Rodyti" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Pasirinkti grupę" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Pasirinti naudotoją" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Pakeisti" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Pasirinti prašymą" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Rodyti prašymą" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Grafikas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Grafiko nustatymai" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Grafikai nepasiekiami." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Grupė" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Grupės teisės" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "naudotojas jau priklauso grupei: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Negalima sukurti grupę: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Grupė sukurta" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Grupė išjungta" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Grupė įjungta" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Grupėje nėra tokio naudotojo" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "Grupė vardu '%1' jau naudojama" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Grupė nerasta" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Grupės teisės" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupės" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupės negali būti savo pačių nariais" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupės, atitinkančios paieškos kriterijus" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Grupių sąrašas, kurioms priklauso naudotojas (pažymėkite iš kurių pašalinti)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Grupių sąrašas, kurioms nepriklauso naudotojas (pažymėkite į kurias norite įtraukti)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Grupės, kurioms priklauso šis naudotojas" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "Priklauso" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Persiunčiamo prašymo antraštė" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Persiųsto laiško antraštė" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Labas!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Labas, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Help us set up some useful defaults for RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Paslėpti cituojamą tekstą" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "Pagal nutylėtimą paslėpti prašymo istoriją" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Istorija" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "Straipsnio #%1 istorija" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Grupės %1 istorija" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Eilės %1 istorija" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Naudotojo %1 istorija" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Į pradžią" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "Namų telefonas" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Pradinio puslapio atnaujinimo dažnumas" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Namų telefonas" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Į pradžią" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Valanda" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Valandos" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Turiu %quant(%1,concrete mixer)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Prašymas" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Asmuo" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Jeigu patvirtinimas atmestas, atmesti originalą ir ištrinti laukiančius patvirtinimus" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Jeigu autorius nenurodytas, prašymas sukuriamas šio autoriaus vardu." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Jeigu eilė nenurodyta, prašymai kuriami šioje eilėje." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Jeigu ši programa nustatyta setgid, priešiškas naudotojas gali pasinaudoti ja norėdamas gauti RT administratoriaus teises." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Jeigu pakeitėte RT naudojamą TCP portą, norinti prisijugti iš naujo, reikia restartuoti serverį." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Jeigu pakeitėte RT naudojamą TCP portą, norinti prisijugti iš naujo, reikia restartuoti serverį." #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Po bet kokių pakeitimų nepamirškite:" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Jeigu jūsų pageidaujama duomenų bazė nėra paminėta pateiktame sąraše, tai reiškia, kad RT neranda tinkamo duomenų bazės draiverio. Jūs gakite tai pataisyti naudodami %1 parsisiųsti ir įdiegti DBD::MySQL, DBD::Oracle arba DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Neleistina reikšmė laukui %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Nekeičiamas laukas" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "Neaktyvūs prašymai" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Įtraukti straipsnį:" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "Į sąrašą įtraukti išjungtas klases" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Rodyti sąraše išjungus papildomus laukus." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Sąraše rodyti nenaudojamas grupes." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Sąraše rodyti nenaudojamas eiles." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Paieškoje įtraukti išjungtus naudotojus." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Įterpti puslapį" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Įtraukti temas" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Asmeniniai pranešimai" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Inform RT owner that user(s) have problems with public keys" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Inform user that a dashboard he subscribed to is missing" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Inform user that a message he sent has invalid GnuPG data" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Inform user that he has problems with public key and couldn't recieve encrypted content" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Inform user that his password has been reset" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Inform user that we received an encrypted email and we have no private keys to decrypt" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Pradinis prioritetas" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "Pradinis prioritetas" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initialize Database" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "Nurodyti duomenys nepanašūs į IP adresą" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "Nurodyti duomenys nepanašūs į IP adresų intervalą" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Įvedimo klaida" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Įvestas tekstas turi atitikti %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Įdiegti RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Vidinė klaida" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Vidinė klaida: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "Vidinė klaida: %1" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "Neteisingas %1" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "Neteisingas %1 parametras" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Invalid %1: '%2' doesn't look like an email address" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Invalid %1: it should be a number" #: NOT FOUND IN SOURCE msgid "Invalid %1: that doesn't look like an email address" msgstr "Invalid %1: that doesn't look like an email address" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "Neteisinga klasė" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "Netesingas papildomo lauko reikšmės šaltinis" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Neleistinas grupės tipas" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "Neteisinga eilė, nepavyksta pritaikyti klasės: %1" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "Neteisingas pavertimo tipas" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "Neteisingas pavertimo tipas papildomam laukui, kurio tipas %1" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Neleistinos teisės" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Nekorektiški duomenys" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid lifecycle name" msgstr "Neteisignas gyvavimo ciklo vardas" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Nekorektiškas objektas" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Nekorektiškas savininko objektas" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Klaidinga forma: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Neteisinga eilė" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "Neteisingas eilės rolės grupės tipas %1" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Neteisinga teisė" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Neteisinga teisė. Neįmanoma konizuoti teisę '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Neteisinga el. pašto adreso sintaksė" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Neleistina reikšmė laukui %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Neleistina papildomo lauko reikšmė" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Neleistina būsenos reikšmė" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Neužšifruotas" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Nepaprastai svarbu, kad neprivilegijuoti naudotojai negalėtų naudoti šio įrankio." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Daroma prielaida, kad šio įrankio vykdymui jūs sukūrėte neprivilegijuotą Unix naudotoją, priklausantį teisingai grupei, ir su RT prieiga." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Tai reikalauja kelių parametrų:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kursyvas" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Sau" #: NOT FOUND IN SOURCE msgid "January" msgstr "Sausis" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "Prisijungti prie ar palikti grupę" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Įsijungti prie ar išeiti iš grupės" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Lie" #: NOT FOUND IN SOURCE msgid "July" msgstr "Liepa" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Visi duomenys" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Bir" #: NOT FOUND IN SOURCE msgid "June" msgstr "Birželis" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "Paieška pagal raktinius žodžius arba intuityvi paieška" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Kalba" #: NOT FOUND IN SOURCE msgid "Language." msgstr "Kalba." #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Didelis" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Paskutinis" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Paskutinis kontaktas" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Paskutinis kontaktas" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Paskutinis atnaujinimas" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Paskutinį kartą atnaujino:" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Paskutiniai pakeitimai" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Paskutinį kartą atnaujino" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "Paskutinį kartą atnaujinta" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "Paskutinį kartą atnaujino" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "Paskutinį kartą atnaujinta santykinai" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Nepildykite, jei norite gauti dabartiniu adresu (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Leave empty to use the default value for your database" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Leave this alone to use the default dba username for your database type" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Liko" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Sutartiniai ženklai" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Dydis simboliais. Naudokite 0, jei norite matyti visą pranešimo tekstą, nepriklausomai nuo jo dydžio." #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Leisti naudotojui jungtis prie RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Suteikti naudotojui teises" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Pradedam!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "Gyvavimo ciklas" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Nuoroda" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Ryšys jau yra" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Neįmanoma sukurti ryšio" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Ryšys nerastas" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Susieti prašymą Nr.%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Susieti reikšmę su" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Susieta" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "Susieta iš" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "Susieta su" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Susiejimas. Neturite teises" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Nuorodos" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "Sąrašas" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Atstatyti" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "Atstatyti įsimintą paiešką" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Atstatyti įsimintą paiešką" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Atstatyti įsimintą paiešką:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "Atstatyti įsimintą paiešką" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Užkrauta %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Atstatyta originali įsiminta paieška \"%1\"" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Ukrauti perl moduliai" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Atstatyta įsiminta paieška \"%1\"" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "Įkeliama…" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Regioniniai nustatymai" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "Vietinio formato data ir laikas" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Vieta" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "Prisijungė" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Prisijungęs %1" #: NOT FOUND IN SOURCE msgid "Logged in as %1" msgstr "Prisijungta vardu %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Atsijungė" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Prisijungti" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "Logotipo alternatyvus tekstas" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Atsijungti" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Neatitinka tipo pasirinkimas" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Paštas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Pagrindinis ryšių tipas" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Skirti atsakingą" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Nurodyti būseną" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Nurodyti terminą" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Nurodyti įvykdymo datą" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Nurodyti datą 'Buvo pradėtas'" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Nurodyti datą 'Bus pradėtas'" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Nurodyti paskutinio kontakto datą" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Nurodyti prioritetą" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Nurodyti eilę" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Nurodyti pavadinimą" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Padaryti šią grupę matomą vartotojui" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Tvarkyti papildomus laukus ir jų reikšmes" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Tvarkyti grupes ir jų narius" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Tvarkyti bendrus nustatymus visoms eilėms" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Tvarkyti eiles ir jų savybes" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Valdyti įsimintas diagramas" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Tvarkyti naudotojus ir slaptažodžius" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "Atitikimas tarp eilių gyvavimo ciklų yra nepilnas. Kreipkitės į savo sistemos administratorių." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Kov" #: NOT FOUND IN SOURCE msgid "March" msgstr "Kovas" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Pašymėti visus pranešimus parskaitytais" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Mason šablono paieškos tvarka" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "Didžiausios reikšmės" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Didžiausias rodomo pranešimo ilgis" #: lib/RT/Date.pm:95 msgid "May" msgstr "Gegužė" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "Aš" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Narys" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Narys %1 pridėtas" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Narys %1 ištrintas" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Naudotojas įtrauktas į grupę: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Naudotojas pašalintas iš grupės" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Naudotojas nepašalintas iš grupės" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Yra narys" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "Yra narys" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Nariai" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Narystė grupėje %1 pridėta" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Narystė grupėje %1 panaikinta" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Priklausymas grupėms" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Varotojo %1 priklausymas grupėms" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Prašymai sėkmingai apjungti" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Apjungimo klaida. Nepavyko nustatyti prašymo ID." #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Apjungimo klaida. Nepavyksta nustatyti būsenos" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Apjungti su prašymu" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Apjungta į %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Pranešimas" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "Pranešimo turinys nerodomas, nes jis per didelis" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Pranešimo turinys nerodomas, nes siuntėjas nurodė jo neįtraukti į pranešimo tekstą." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Pranešimo turinys nerodomas, nes jis nėra tekstas" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Pranešimo turinys nerodomas todėl, kad jis per didelis arba nėra tekstas." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Pranešimo lango aukštis" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Pranešimo lango plotis" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "Teksto eilučių perkėlimas" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Pranešimas negali būti išsaugotas" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Pranešimas naudotojui" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Pranešimas išsaugotas" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Pranešimai nebus siunčiami:" #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minimalus slaptažodžio ilgis" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutės" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "Įvairūs" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Trūksta pirminio rakto?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobilusis telefonas" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "Mobilusis telefonas" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "Mobilusis telefonas" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Keisti" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Pakeisti priėjimo teisių sąrašą" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Pakeisti papildomus laukus, kurie taikomi %1 visiems %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Pakeisti papildomą lauką, taikomą visiems %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Pakeisti grupės teises" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Pakeisti narius" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Pakeisti teises" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "Keisti skriptų šablonus" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Pakeisti šios eilės skriptų šablonus" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "Keisti skriptus" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Pakeisti šios eilės skriptus" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Pakeisti vartotojo teises" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Pakeisti papildomą lauką eilei %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Pakeisti skriptą eilei %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Pakeisti skriptą, kuris taikomas visoms eilėms" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "Keisti straipsnį #%1" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Pakeisti asociuotus objektus %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Keisti papildomų laukų reikšmes" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Pakeisti informacines paneles šiai grupei" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Pakeiti prašymo #%1 datas" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Pakeiti prašymo #%1 datas" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "Keisti globalaus straipsnio temas" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Pakeisti globalius papildomus laukus" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Pakeisti bendras teises grupei" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Pakeisti bendras teises grupei." #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Keisti bendras temas" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Pakeisti bendras naudotojo teises" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Pakeisti bendras vartotojo teises." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "Keisti grupės informacines paneles" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "Keisti narystės grupėse sąrašą" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Pakeisti grupės duomenis arba ištrinti grupę" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "Keisti grupės teises klasei %1" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Pakeisti grupės teises papildomam laukui %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Pakeisti grupės teises grupei %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Pakeisti grupės teises eilei %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Pakeisti šios grupės dalyvių sąrašą" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "Keisti šios klasės metaduomenis ir papildomus laukus" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Pakeisti paties RT naudotoją" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "Keisti šios klasės straipsnius" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Pakeisti su eile %1 susijusius vartotojus" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Pakeisti su prašymu Nr.%1 susijusius asmenis" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Pakeisti asmenines informacines paneles" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "Keisti eilės stebėtojus" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Pakeisti skriptus eilei %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Pakeisti skriptus, taikomus visoms eilėms" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Pakeisti sistemines informacines paneles" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Pakeisti šabloną %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "Keisti eilės %2 šabloną %1" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Pakeisti šablonus, taikomus visoms eilėms" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "Keisti informacinės panelės %1 turinį" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Pakeisti informacinę panelę %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Pakeisti įprastą puslapio \"RT apžvalga\" išvaizdą" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Pakeisit grupę %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Pakeisti užklausą informacinei panelei %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Pakeisti eilės stebėtojus" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Pakeisti prenumeratą informacinei panelei %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Pakeisti naudotoją %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "Keisti šią paiešką..." #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Pakeisti prašymą Nr.%1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Pakeisti prašymą Nr.%1" #: NOT FOUND IN SOURCE msgid "Modify ticket status" msgstr "Keisti prašymo būseną" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Pakeisti prašymus" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "Keisti temą, priskirtą %1" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "Keisti temų hierarchiją, susietą su šia klase" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Keisti straipsnių temas šioje klasėje" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "Keisti naudotojo teises klasei %1" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Pakeisti naudotojo teises į papildomą lauką %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Pakeisti naudotojo teises grupei %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Pakeisti naudotojo teises eilei %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "Keisti el. pašto gavėjų sąrašą prašymui #%1" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "Pakeisti teises" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "Keisti straipsnį" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "Keisti straipsnio temas" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "Pakeisti papildomą lauką" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "Pakeisti informacinę panelę" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "Pakeisti grupės informacinę panelę" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "Pakeisti asmeninę informacinę panelę" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "Pakeisti savo dalyvavimą grupėse" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "Pakeisti eilės stebėtojus" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "Pakeisti skriptus" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "Pakeisti save" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "Pakeisti šabloną" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "Pakeisti prašymą" #: NOT FOUND IN SOURCE msgid "ModifyTicketStatus" msgstr "Keisti prašymo būseną" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Modulis" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pir" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Pirmadienis" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Nuo pirmadienio iki penktadienio" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Informacija apie %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "Plačiau apie prašymo autorių" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Perkelti žemyn" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Perkelti aukštyn" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Keletas reikšmių" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Būtina nurodyti vardą" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "%1 mano prašymai" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Mano patvirtinimai" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Mano diena" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "Mano priminimai" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mano patvirtinimai" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mano informacinės panelės" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Mano priminimai" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mano įsimintos paieškos" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "Nauja eilėtė" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Vardas" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Vardas jau naudojamas" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Pavadinimas:" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Užvardintas bendro naudojimo portletų rinkinys" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Niekada" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Naujas" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "Naujas straipsnis" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "Nauja informacinė panelė" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Naujos nuorodos" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Naujas slaptažodis" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Naujas laukiantis patvirtinimas" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nauja paieška" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Nauji ir atidaryti prašymai naudotojui %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Naujas papildomas laukas" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Nauja informacinė panelė" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Nauja grupė" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nauji pranešimai" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Naujas slaptažodis" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Pranešimas su nauju slaptažodžiu išsiųstas" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Naujas priminimas:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Naujos teisės" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Naujas skriptas" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Naujas šablonas" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Naujas prašymas" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Nauajs prašymas neegzistuoja" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "Naujas prašymas šioje eilėje negali būti būsenoje '%1'." #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Pridėti naudotoją vardu" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Naujas stebėtojas" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Kitas" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Pseudonimas" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Pseudonimas" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Ne" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "%1 nenuskaitytas" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "Nei vienas straipsnis neatitinka %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Klasė nenurodyta" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Jokių klasių, atitinkančių paieškos kriterijų, nerasta" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Nėra papildomo lauko" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Papildomas laukas nenurodytas" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Grupė nenurodyta" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Nėra užklausos" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Eilė neapibrėžta" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "RT naudotojas nerastas. Kreipkitės į savo sistemos administratorių." #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "RT naudotojas nerastas. Kreipkitės į savo sistemos administratorių.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Nenurodytas pavadinimas" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Nėra šablono" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Veiksmas nenurodytas" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Stulpelis nenurodytas" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Apie šį naudotoją komentarų nėra" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Nėra informacinių panelių." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Nėra aprašymo %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Išsamesnės informacijos nėra" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Grupė nenurodyta" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Paieškos kriterijus atitinkančių grupių nerasta." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Nėra užšifravimui tinkamo rakto." #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Nėra rakto šiam adresui" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Nėra prijungto pranešimo" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Vardas nenurodytas" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Nėra reikalo šifruoti" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Slaptažodis nepaskirtas" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Nėra eilių kūrimo teisių" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Nėra prašymų kūrimo teisių eilėje '%1'" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Nėra prašymo peržiūros teisių" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "Neužtenka teisių taisyti straipsnį" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Nėra globalių paieškų išaugojimo teisių" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Nėra teisių keisti nustatymus" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "Neužtenka teisių pamatyti straipsnį" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Nėta prašymo pakeitimų peržiūros teisių" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Naudotojas nenurodytas" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Naudotojai nenurodyti." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Nėra privataus rakto" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Nerasta eilių, atitinkančių paieškos kriterijus." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Teisės nenurodytos" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Teisės nerastos" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Nesuteikto teisės." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Nėra užklausos su kuria būtų dirbama." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Pavadinimas nenurodytas" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Nėra tokio rakto arba raktas netinka pasirašymui" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Prašymų nerasta." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Tranzakcijos tipas nenurodytas" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Tinkamų raktų nerasta." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Nerasta naudotojų, atitinkančių paieškos kriterijus." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "Nebuvo nusiųsta reikšmė, skirta _Set!" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Nebuvo nusiųsta reikšmė, skirta _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Niekas" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Nenurodyta" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Neegzistuojantis laukas?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Nenustatyta" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Nerasta" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Neprisijungęs." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Nenurodyta" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Nenaudojate mobilios naršyklės?" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Dar nerealizuota." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Pastabos" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Pranešimas negali būti išsiųstas" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Informuoti gaunančius administracines kopijas" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Komentru informuoti gaunančius administracines kopijas asmenis" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Informuoti kopijas gaunančius asmenis" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Komentaru informuoti gaunančius Cc asmenis" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Informuoti kitus gavėjus" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Komentaru informuoti kitus gavėjus" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Informuoti atsakingą asmenį" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Informuoti atsakingą asmenį komentaro forma" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Informuoti atsakingą asmenį apie prašymo atmetimą" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notify Owner of their ticket has been approved and is ready to be acted on" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Pranešti atsakingam, kad jo prašymas buvo patvirtintas kelių ar visų tvirtintojų" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Informuoti atsakingą, autorių, kopijas ir administracines kopijas gaunančius asmenis." #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Komentaru informuoti atsakingą, autorių, kopijas ir administracines kopijas gaunančius asmenis." #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Informuoti atsakingus ir kopijas gaunančius asmenis apie jų patvirtinimo reikalaujančius prašymus" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Pranešti autoriui, kad jo prašymas buvo patvirtintas visų tvirtintojų" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Pranešti autoriui, kad jo prašymas buvo patvirtintas kelių tvirtintojų" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Informuoti prašymo autorius" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Informuoti prašymo autorius ir kopijas gaunančius asmenis" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Komentaru informuoti prašymo autorius ir kopijas gaunančius asmenis" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Informuoti prašymo autorius, kopijas ir administracines kopijas gaunančius asmenis" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Komentaru informuoti prašymo autorius, kopijas ir administracines kopijas gaunančius asmenis" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Informuoti mane apie neskaitytus pranešimus" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Lap" #: NOT FOUND IN SOURCE msgid "November" msgstr "Lapkritis" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Rodomų paieškos rezultatų skaičius" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ARBA" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objektas" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Nepavyko sukurti objekto" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Nepavyko panaikinti objekto" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objektas sukurtas" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objektas panaikintas" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "%1 tipo objektas negali turėti papildomų laukų" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Objekto tipas nesutampa" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektų sąrašas yra tuščias" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Spa" #: NOT FOUND IN SOURCE msgid "October" msgstr "Spalis" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Atsijungus" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Redagavimas atsijungus" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Įkėlimas atsijungus nuo RT" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "%1 naudotojas %2 rašė:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Uždarant" #: etc/initialdata:143 msgid "On Comment" msgstr "Gavus komentarą" #: etc/initialdata:115 msgid "On Correspond" msgstr "Gavus atsakymą" #: etc/initialdata:104 msgid "On Create" msgstr "Sukūrus prašymą" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Pasikeitus atsakingam" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Pasikeitus prioritetui" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Pakeitus eilę" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Atmetimo atveju" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Pakartotinai atidarius" #: etc/initialdata:178 msgid "On Resolve" msgstr "Įvykdžius prašymą" #: etc/initialdata:149 msgid "On Status Change" msgstr "Keičiant būseną" #: etc/initialdata:109 msgid "On Transaction" msgstr "Atlikus tranzakciją" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Vienkartinė slapta kopija (BCC)" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Vienkartinė kopija (CC)" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Rodyti patvirtinimus prašymams, sukurtiems po %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Rodyti patvirtinimus prašymams, sukurtiems iki %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Papildomus laukus rodyti tik:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Atidaryti prašymai" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Atverti nuorodą" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Atidaryti" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Atidaryti prašymus" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Atidaryti prašymus gavus atsakymą" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Nustatymas" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Pasirinkimas" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Rikiuoti pagal" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organizacija" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Pirminis prašymas: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Išsiųstas laiškas apie komentarą išsaugotas" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Išsiųstas laiškas išsaugotas" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Išeinantis el. paštas" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Su laiku pakelti prioritetą iki" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "Apžvalga" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Skirti save atskingu" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "Būti atsakingu už prašymą" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Atsakingas" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Atsakingas %1 neturi pakankamai teisių būti atsakingu už šį prašymą" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Atsakingas pakeistas iš %1 į %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Atsakingas negali būti paskirtas" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Atsakingas priverstinai pakeistas iš %1 į %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Atsakingas" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Puslapis" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Puslapis 1 iš 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Puslapis nerastas" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Peidžeris" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "Peidžerio numeris" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Peidžerio Nr" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Protėviai" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Slaptažodis" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Slaptažodžio priminimas" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Slaptažodis pakeistas" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Slaptažodis nebuvo nustatytas." #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Slaptažodis turi būti ne trumpesnis kaip %1 simboliai" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Slaptažodis neatspausdintas" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Slaptažodis paskirtas" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Slaptažodis: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Slaptažodis: neturite teisės" #: etc/initialdata:463 msgid "PasswordChange" msgstr "Slaptažodžio keitimas" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Slaptažodžiai nesutampa" #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Slaptažodžiai nesutampa. Jūsų slaptažodis nebuvo pakeistas" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Path to sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Asmenys" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "Asmenys, susiję su eile %1" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Įvykdyti naudotojo apibrėžtą veiksmą" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "Perl" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Perl Include Paths (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl konfigūracija" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Perl bibliotekos paieškos tvarka" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "Negrįžtamai panaikinti RT duomenis" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Neturite teisės" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Neturite teisės" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Asmeninės informacinės panelės" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Asmeninės grupės" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Asmeninės grupės" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Asmeninės grupės:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefonų numeriai" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Patikrinkite URL ir bandykite dar kartą." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Teisingai nurodykite dabartinį slaptažodį." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Nurodykite dabartinį slaptažodį." #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the %2search builder interface%3." msgstr "Atkreipkite dėmesį, kad tik prašymai vienoje iš šių būsenų ( %1 ) yra rodomi. Išsamesnei paieškai naudokite %2paieškos konstravimo sąsają%3." #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the Config->Get('WebPath')%>/Search/Build.html\">search builder interface." msgstr "Atkreipkite dėmesį, kad tik prašymai vienoje iš šių būsenų ( %1 ) yra rodomi. Išsamesnei paieškai naudokite Config->Get('WebPath')%>/Search/Build.html\">paieškos konstravimo sąsają." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Galimos paslėtos paieškos" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Nustatymai" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Nustatymai %1 naudotojo %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Nustatymai %1 išsaugoti." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Nustatymai naudotojui %1 išsaugoti." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Nustatymai įsiminti." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Prioritetinis raktas: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Prioritetinis raktas" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Pasiruošimas nerealizuotas" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Atgal" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Ankstesnis puslapis" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Naudotojas %1 nerastas." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Spausdinti šį pranešimą" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioritetas" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioritetas prasideda nuo" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Prieigos lygis" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Prieigos lygis:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Privatus raktas" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privelegijuotas" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Privilegijų būsena: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Privilegijuoti naudotojai" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudo-grupės vidiniam naudojimui" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Viešas raktas '0x%1' reikalingas parašo patikrinimui" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Užklausos" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Užklausa" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Paieškos konstravimas" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Užklausa:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Eilė" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Eilė %1 nerasta" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Eilės pavadinimas" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Tokia eilė jau yra" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Eilė negali būti sukurta" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Eilė negali būti užkrauta" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Eilė sukurta" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Eilė išjungta" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Eilė įjungta" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Eilės identifikatorius" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Eilė nerasta" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Eilės teisės" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Raktas eilei" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "Eilės administracinė kopija" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "Eilės korespondencijos kopijos" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "Eilės vardas" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "Eilės stebėtojas" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Eilės" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Eilės, kurias administruoju" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Eilės, kurioms gaunu administracines kopijas" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "Greitas sukūrimas" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Greita paieška" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Greitas prašymo sukūrimas" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 skirta %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT nustatymai" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "RT Administrator Email" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "RT nustatymai" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfigūracija" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT klaida" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT savitarna" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT dydis" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT kintamieji" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT apžvalga" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT apžvalga naudotojui %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT gali įtraukti kito web serverio turinį rodydamas šį papildomą lauką" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT gali paversti šio papildomo lauko turinį nuorodomis į kitą serverį" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT baziniai kintamieji" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT negali įsiminti jūsų sesijos" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "%1 prašymų valdymo sistema RT" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT will connect to the database using this user. It will be created for you." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT will create a user called \"root\" and set this as their password" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "Neradęs kitur, RT ieškos prašymų antraštėse." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT pakeis %1 ir %2 prašymo numeriu ir papildomo lauko reikšme atitinkamai" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT pakeis __id__ ir __CustomField__ prašymo numeriu ir papildomo lauko reikšme atitinkamai" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT tvarkyti grupę %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "RTAddressRegexp nustatymas konfigūracijoje neatitinka %1" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Tikras vardas" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "Tikras vardas" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Gavėjas" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "Turi būti nurodytas el. pašto adresas" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "Gavėjai" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Įšsaugoti visus pakeitimus" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekursinis narys" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Nurodo į" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Pridėta nuoroda iš prašymo %1" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Panaikinta nuoroda iš prašymo %1" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Pridėta nuoroda į prašymą %1" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Panaikinta nuoroda į prašymą %1" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Į jį rodo" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "Į jį rodo" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Nurodo į" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "Nurodo į" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Atnaujinti" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Atnaujinti pradinį puslapį kas 10 minučių." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Atnaujinti pradinį puslapį kas 120 minučių." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Atnaujinti pradinį puslapį kas 2 minutes." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Atnaujinti pradinį puslapį kas 20 minučių." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Atnaujinti pradinį puslapį kas 5 minutes." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Atnaujinti pradinį puslapį kas 60 minučių." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Atnaujinti paieškos rezultatus kas 10 minučių." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Atnaujinti paieškos rezultatus kas 120 minučių." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Atnaujinti paieškos rezultatus kas 2 minutes." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Atnaujinti paieškos rezultatus kas 20 minučių." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Atnaujinti paieškos rezultatus kas 5 minutes." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Atnaujinti paieškos rezultatus kas 60 minučių." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Automatiškai atnaujinti šį puslapį kas %1 minučių." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: NOT FOUND IN SOURCE msgid "Reject tickets" msgstr "Atmesti prašymai" #: NOT FOUND IN SOURCE msgid "RejectTicket" msgstr "Atmesti prašymą" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "Atsiminti nutylėtąją eilę" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "Priminimas" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Priminimas '%1' pridėtas" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Priminimas '%1' įvykdytas" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Priminimas '%1' atidarytas pakartotinai" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Priminimo prašymas" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Priminimai" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Priminimai prašymui #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Pašalinti administracinę kopiją" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Nuimti pažymėjimą" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Pašalinti kopiją" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Pašalinti prašymo autorių" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "Pašalintas %1 iš narių eilėje %2." #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "Pavertimo tipas" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "Pakeičia savininko pasirikimo sąrašus teksto įvedimo laukais" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Atsakyti" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Atsakymo adresas" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Atsakymas prašymo autoriams" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Atsakyti į prašymus" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "Atsakyti į prašymą" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Ataskaitos" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Prašymo autorius" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "Prašymo autoriaus grupė" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Prašymo autoriai" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Prašymai turi būti apdoroti per" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Priovaloma parametras '%1' nenurodytas" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Išvalyti" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "Atstatyti RT apžvalgos parametrus" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Sugeneruoti naują slaptą autentikacijos žymą" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Atstatyti standartinius" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Namų" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Išspręsti" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Išspręsti prašymą #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Įvykdyti" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Įvykdyti prašymai pagal atsakingą" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Įvykdyti prašymai per laikotarpį" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Įvykdyti prašymai per laikotarpį, sugrupuoti pagal atsakingą" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Įvykdyti prašymai, sugrupuoti pagal atsakingą" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "Išspręstas santykinai" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Atsakyti" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Rezultatai" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Grįžti prie prašymo" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Pakartokite slaptažodį" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Atkeisti" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Teisė deleguota" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Teisė suteikta" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Teisė užkrauta" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Teisė negali būti atšaukta" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Teisė nerasta" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Teisė neužkrauta" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Teisė atšaukta" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Negali būti suteiktos teisės %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "Administratorių teisės" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "Personalo teisės" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Rolės" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Eilučių" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Eilučių skaičius langelyje" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Eilučių skaičius puslapyje" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "SQL užklausos" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite yra duomenų bazė, nereikalaujanti jokio serverio ar konfigūravimo. RT autoriai rekomenduoja ją naudoti tik testavimui, demonstravimui ir programavimui, bet ji netinkama intensyviai naudojamoje produkcinėje aplinkoje." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Šeš" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Šeštadienis" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Įsiminti" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Įsiminti pakeitimus" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Įsiminti nustatymus" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Įsiminti kaip naują" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "Įsiminti naują" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Įsiminti šią paiešką" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Išsaugota %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Nerasta įsiminta paieška %1" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "Įsiminitos paieškos" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Įsimintos diagramos" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Įsimintos paieškos" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Skriptas #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Skriptas sukurtas" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Skripto laukai" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Skriptas panaikintas" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Skriptai" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Skriptai ir gavėjai" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Skriptai taikomi visoms eilėms" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Ieškoti" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "Paieška %1 pakeista" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Ieškoti straipsnių" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Paieškos nustatymai" #: NOT FOUND IN SOURCE msgid "Search for Articles articles matching" msgstr "Ieškoti straipsnių, atitinkančių" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Ieškoti atitinkančių straipsnių" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Patvirtinų paieška" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Ieškoti straipsnių" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Prašymų paieška" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Galite ieškoti prašymų pagal id numerį, eilės vardą, atsakingą naudotoją ir autoriaus el. pašto adresą. RT gali ieškoti pagal bet kokį tekstą pašymo turinyje ir prikabintuose failuose." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Paieškos parametrai" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "Paieškos rezultatai" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Paieškos rezultatai sugrupuoti pagal %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Paieškos rezultatų atnaujinimo dažnumas" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing fulltext:word." msgstr "Teksto fragmento paieška visuose prašymuose gali užtrukti ilgai, tačiau jeigu jums tikrai to reikia, naudokite paieškos sąlygą fulltext:ieškomas tekstas." #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Paieška pagal bet kokį tekstą kiekviename prašyme užima daug laiko, bet jeigu jums iš tikro to reikia, galite nurodyti pilnatekstės paieškos žodį rašydami fulltext:žodis." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Slapta autentikacijos žyma" #: bin/rt-crontool:350 msgid "Security:" msgstr "Saugumas:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Žr. taip pat:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "Peržiūtrėti straipsnius šioje klasėje" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Peržiūrėti papildomus laukus" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Peržiūrėti tikslų išeinantį paštą ir jo gavėjus" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipients" msgstr "Peržiūrėti tikslų išeinantį paštą ir jo gavėjus" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "Pamatyti ar ši klasė egzistuoja" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Peržiūrėti prašymo privatų komentarą" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Peržiūrėti prašymo santrauką" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "Pamatyti klasę" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "Peržiūrėti papildomą lauką" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "Peržiūrėti informacinę panelę" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "Peržiūrėti grupę" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "Peržiūrėti grupės informacinę panelę" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "Peržiūrėti asmeninę informacinę panelę" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "Peržiūrėti eilę" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Pasirinkti" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "Pasirinkti papildomus laukus straipsniams visose klasėse" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Select Database Type" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Pasirinkti klasę" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Pasirinkite papildomą lauką" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "Pasirinkti spalvą šiai skecijai" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Pasirinkite grupę" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Pasirinkite eilę" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Pasirinkte eilę savo prašymui" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Pasirinkti sekciją" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Pasirinkite naudotoją" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "Pasirinkti straipsnį iš %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Pasirinti įtraukiamą strapsnį" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Select another language" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "Pasirinkti punktą" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Pasirinkite papildomus laukus visoms eilėms" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Pasirinkite papildomus laukus visoms naudotojų grupėms" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Pasirinkte papildomus laukus visiems naudotojams" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Pasirinkite papildomus laukus visoms eilėms" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Pasirinkite papildomus laukus visoms tranzakcijoms visose eilėse" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Pasirinkite informacinę panelę" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "Pasirinkti datą" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "Pasirinkti datą ir laiką" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Pasirinkite grupę" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "Pasirinkti keletą datų" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "Pasirinkti keletą datų ir laikų" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Pasirinkite keletą reikšmių" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Pasirinkite vieną reikšmę" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Pasirinkite eiles, kurios bus rodomos puslapyje \"RT apžvalga\"" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Pasirinkite skriptą" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Pasirinkite šabloną" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "Pasirinkti temas šiam straipsniui" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "Pasirinkti iki %1 datų" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "Pasirinkti iki %1 datų ir laikų" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Pasirinkite iki %1 reikšmių" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Pasirinkti papildomi laukai" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Pasirinkti eiles" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Pasirinktas raktas arba nepatikimas, arba jau neegzistuoja." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Pasirinkti objektai" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Pakeisti pasirinkimai. Išsaugokite pakeitimus." #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Laiškas sėkmingai išsiųstas" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Pasiųsti laišką visiems stebėtojams" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Pasiųsti kometarą visiems stebėtojams" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Pasiųsti laišką atsakingam asmeniui ir visiems stebėtojams" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Pasiųsti komentarą atsakingam asmeniui ir visiems stebėtojams" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Pasiųsti laišką prašymo autoriams ir kopijas gaunatiems asmenims" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Pasiųsti komentarą prašymo autoriams ir gaunatiems CC kopijas" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Pasiųsti laišką prašymo autoriams" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Pasiųsti laišką visiems gaunatiems kopijas ir slaptas kopijas" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Pasiųsti laišką visiems gaunatiems kopijas" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Pasiųsti komentarą visiems gaunatiems kopijas" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Pasiųsti laišką gaunatiems administracines kopijas" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Pasiųsti laišką gaunatiems administracines kopijas kaip komentarą" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Pasiųsti laišką atsakingam" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "Laiškas sėkmingai išsiųstas" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Rgs" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Atskirkite reikšmes tarpais." #: NOT FOUND IN SOURCE msgid "September" msgstr "Rugsėjis" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "Nustatyti asmeninį raktą" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Nustatymai" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "Ar RT turėtų siųsti jums laiškus apie pakeitimus, kuriuos pats atliekate?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Parodyti" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "Rodyti tvirtinimo punktą" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Rodyti stulpelius" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "Rodyti konfigūracijos punktą" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Rodyti rezultatus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Rodyti prašymo savybes %1 lygyje" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Rodyti patvirtintus prašymus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Taip pat rodyti" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Rodyti esminę informaciją" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Rodyti atmestus prašymus" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Rodyti visas detales" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "Rodyti bendrus šablonus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Rodyti nuorodų aprašymus" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "Nerodyti prašymų autoriui" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Pirmiausia rodyti seniausius pakeitimus" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Rodyti patvirtinimo laukiančius prašymus" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Rodyti cituojamą tekstą" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Rodyti kitų patvirtinimo laukiančius prašymus" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Show the Requestor's 10 highest priority closed tickets" msgstr "Rodyti autoriui 10 aukščiausio prioriteto įvykdytų jo prašymų" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Show the Requestor's 10 highest priority open tickets" msgstr "Rodyti autoriui 10 aukščiausio prioriteto vykdomų jo prašymų" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Rodyti autoriui 10 aukščiausio prioriteto jo prašymų" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "Rodyti prieigos teises" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "Rodyti tvirtinimo puslapius" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "Rodyti straipsnį" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "Rodyti straipsnio sitoriją" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "Rodyti konfigūravimo meniu" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "Rodyti bendrus šablonus" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "Rodyti išsiųstus laiškus" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "Rodyti įsimintas paieškas" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "Rodyti skriptus" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "Rodyti šablonus" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "Rodyti prašymą" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "Rodyti prašymo komentarus" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Naikiklis" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Trynimo procedūrai reikalinga direktorija išsaugoti duomenims. Patikrinkite ar egzistuoja %1 ir web serveris turi ten rašymo teises." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Trynimo procedūrai reikalinga direktorija išsaugoti duomenims. Patikrinkite ar egzistuoja %1 ir web serveris turi ten rašymo teises." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Šoninis meniu" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Pasirašyti" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Pasirašyti nutylėtai" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Pasirašyti prašymo autoriumi arba prašymo ar eilės kopija" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Pasirašyti kaip prašymo ar eilės administracinė kopija" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Parašas" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Pasirašymas išjungtas" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Pasirašymas įjungtas" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "Paprastas" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Paprasta paieška" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Viena reikšmė" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Site name" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Dydis" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Praleisti meniu" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Praleidžiam išjungtą naudotoją" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Mažas" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Kai kurios naršyklės gali užkrauti turinį tik iš to paties domeno, kaip šis RT serveris." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Kažkas negerai. Kreipkitės į savo sistemos administratorių." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Rikiavimas" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Rikiavimas" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Šaltinis" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Nurodykite periodiškumą" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Excel failas" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Stadija" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Buvo pradėtas" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "Pradėta santykinai" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Bus pradėtas" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "Bus pradėta santykinai" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Valstija" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Būsena" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Būsena '%1' nėra tinkama prašymams šioje eilėje." #: etc/initialdata:307 msgid "Status Change" msgstr "Būsenos pakeitimas" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Būsena pakeista iš %1 į %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "Būsenos pakeitimai" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Pasiskirti sau" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Pasiskirti prašymus sau" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "Pasiskirti prašymą sau" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Žingsnis %1 iš %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Atsakingas perimtas iš %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Atsakingas perimtas iš %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stilius" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Pavadinimas" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Pavadinimo žymė" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Pavadinimas pakeistas į %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "Pavadinimo žyma" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Pavadinimo žymė pakeista į %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Pasiųsti" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Prenumeruoti" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Prenumeruoti informacinę panelę %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Prenumeruoti informacines paneles" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "Prenumeruoti informacinę panelę" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Užprenumeruota informacinė panelė %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Prenumerata" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Prenumerata nepavyko: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Duomenys sėkmingai dešifruoti" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Duomenys sėkmingai užšifruoti" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "Santrauka" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Sek" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Sekmadienis" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "administratorius" #: NOT FOUND IN SOURCE msgid "Suppress automatic new to open status change on ticket update" msgstr "Išjungti automatinį prašymo būsenos pakeitimą iš naujo į atidarytą po pirmo prašymo atnaujinimo" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Pristabdytas" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Sistemos konfigūracija" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Sisteminės informcinės panelės" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Naudoti sisteminį nustatymą" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Sisteminė klaida" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Sisteminė klaida: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Sisteminiai įrankiai" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "Sistemos klaida" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Sisteminė klaida. Teisė nedeleguota." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Sisteminė klaida. Teisė nesuteikta." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Sisteminės grupės" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Sisteminės teisės" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "Sisteminės pseudo-grupė vidiniam naudojimui" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Paskirti sau" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Paskirti prašymus sau" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "Skirti prašymą sau" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Paskirtas" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Tell us a little about how to find the database RT will be using" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Šablonas" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Šablonas #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Šablonas #%1 panaikintas" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Šablonas '%1' nerastas" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "Šablonas kompiliuojamas" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "Šablone nėra Perl kodo" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Šablonas tuščias" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Šablonas yra privalomas argumentas" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Šablonas apdorotas" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Šablono apdorojimo klaida" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "Šablono apdorojimo klaida: %1" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Šablonai" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "Eilės %1 šablonai" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "Tekstas" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstinis failas nerodomas, nes tai uždrausta nustatymuose." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Tai jau dabartinė reikšmė" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Šis laukas negali turėti tokios reikšmės" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Tai ta pati reikšmė" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Šis naudotojas jau turi tokią teisę." #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Šis naudotojas jau yra %1 šiam prašymui" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Šis naudotojas jau yra %1 šiam prašymui" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Šis naudotojas nėra %1 šiai eilei" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Šis naudotojas nėra %1 šiam prašymui" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Ši eilę neegzistuoja" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Šis prašymas turi neišspręstas priklausomybes" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Šis naudotojas jau atsakingas už šį prašymą" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Naudotojas neegzistuoja" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Šis naudotojas jau priveligijuotas" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Šis naudotojas jau nepriveligijuotas" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Šis naudotojas dabar priveligijuotas" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Šis naudotojas dabar nepriveligijuotas" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Šis naudotojas negali būti atsakingas už prašymus šioje eilėje" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Tai ne skaitmeninis id" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Esminiai parametrai" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Prašymo kopija" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "Straipsnio klasė identifikuota %1 netaikoma šiai eilei" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "The DBA's database password" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Prašymo administracinė kopija" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "The domain name of your database server (like 'db.example.com')" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Toliau nurodyta komanda ras visus aktyvius prašymus eilėje 'general' ir pakeis jų prioritetą į 99, jeigu praėjo prašymo galutinis terminas:" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Tolimesnė komanda suras visus aktyvius prašymus eilėje 'general' ir nustatys jų prioritetą 99 jeigu jie nebuvo pakeisti ilgiau kaip 4 valandas:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Išvardintos užklausos buvo panaikintos ir bus pašalintos iš informacinių panelių kai šios panelės bus atnaujintos." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Išvardintos užklausos gali būti nematomos visiems naudotojams, kurie matys šią informacinę panelę." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Raktas deaktyvuotas" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Raktas atšauktas" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Raktas nebegalioja" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Raktas yra visiškai patikimasе" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Raktas yra absoliučiai patikimas" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Priskirta nauja reikšmė" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Atsakingas už prašymą" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Jūsų prašomas puslapis nerastas." #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Prašymo autorius" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "The settings you've chosen are stored in %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Yra keletas raktų, tinkamų šifravimui." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Šiame prašyme yra neskaitytų pranešimų." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Šis raktas yra riboto pasitikėjimo" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Yra daugiau nei viena grupė vardu '%1'. Tai gali sukelti nekorektišką sistemos veikimą, todėl rekomenduojama pervadinti grupes." #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Nėra tinkamų raktų." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "Nėra būsenų atitikimo tarp šių eilių. Kreipkitės į savo sistemos administratorių." #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Yra vienas tinkamas raktas, bet pasitikėjimo lygis nenustatytas" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Šie komentarai nerodomi paprastam naudotojui" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "Šis papildomas laukas negali turėti reikšmių sąrašo" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Šis papildomas laukas netaikomas šiam objektui" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "Šis papildomas laukas neturi pavertimo tipų" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Ši savybė prieinama tik sistemos administratoriui." #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "Ši savybė skirta tik sistemos administratoriams" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Šis pranešimas bus siunčiamas:" #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "Šis serverio procesas neužfiksavo jokių SQL užklausų" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Šis įrankis leidžia naudotojui vykdyti kai kuriuos Perl modulius iš RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Atrodo, kad ši tranzakcija neturi turinio" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "Šio naudotojo %1 aukščiausio prioriteto %2 prašymų" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "%1 aukščiausio prioriteto šio vartotojo prašymai" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Ket" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Ketvirtadienis" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Prašymas" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Prašymo Nr.%1 visų duomenų keitimas. (%2)" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Prašymo #%1 ryšių grafikas" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Paršymas #%1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Prašymas Nr.%1. (%2)" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Prašymas Nr.%1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Prašymas Nr.%1 sukurtas eilėje '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Prašymas Nr.%1. (%2)" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Papildomi prašymo laukai" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Prašymo Nr.%1 istorija. (%2)" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Prašymas įvykdytas" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Prašymų paieška" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Prašymo tranzakcija" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "Prašymas ir operacija" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "Prašymo sudėtis" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Prašymo turinys" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Prašymo turinio duomenų tipas" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Prašymas negali būti sukurtas dėl vidinės sistemos klaidos" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Nepavyko užkrauti prašymo" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Prašymo atvaizdavimas" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Prašymo meta-duomenys" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Prašymo būsena pakeista" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Prašymo atnaujinimas" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "PrašymoSQL paieškos modulis" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Prašymai" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Prašymai %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Prašymai %1 naudotojo %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Man skirti prašymai" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Prašymai pateikti nuo" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Prašymai pateikti iki" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Prašymai išspręsti nuo" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Prašymai išspręsti iki" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Nuo šio patvirtinimo priklauso šie prašymai:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Laiko sąnaudų įvertinimas" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Liko dirbti" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Jau dirbta" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Parodyta per" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "Laiko sąnaudų įvertinimas" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "Liko dirbti" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "Jau dirbta" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Laiko juosta" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Pavadinimas" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "To" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Dėl palaikymo, mokymo, vystymui ar licenzijavimo kreipkitės %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "Perjungti %quant(%1,query,queries)" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "Perjungti steko pėdsakų fiksavimą" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Informuotas" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "Nurodyta giminystė" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Įrankiai" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Temos pavadinimas" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "Pridėta narystė temoje" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "Panaikinta narystė temoje" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Tema nerasta" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "Temos" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Iš viso" #: etc/initialdata:249 msgid "Transaction" msgstr "Tranzakcija" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Tranzakcija %1 panaikinta" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Tranzakcija atlikta" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Papildomi tranzakcojos laukai" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Tranzakcija->Neįmanoma sukurti, nes nenurodytas objekto tipas ir identifikatorius" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "Tranzakcijos data" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Tranzakcijos nekeičiamos" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Pasitikėjimas" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Ant" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Antradienis" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tipas" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Tipas a: prieš straipsnio numerius ir t: prieš prašymo numerius." #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Tipas pakeistas iš '%1' į '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "Nepavyksta pridėti narystės temoje" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "Nepavyksta panaikinti narystės temoje %1" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Neįmanoma nustatyti objekto ar identifikatoriaus tipą" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "Nepavyksta nuskaityti staripsnio" #: NOT FOUND IN SOURCE msgid "Unable to read image: %1" msgstr "Nepavyksta nuskaityti paveikslėlio: %1" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "Nepavyksta nustatyti naudotojo CSS: %1" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "Nepavyksta nustatyti naudotojo logotipo: %1" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "Nepavyksta nustatyti privatumo identifikatoriaus: %1" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "Nepavyksta nustatyti privatumo objekto ar identifikatoriaus: %1" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "Nepavyksta nustatyti privatumo objekto: %1" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Negalima užprenumeruoti informacinės panelės %1: Priega nesuteikta" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Nuimkite pažymėjimą, jeigu norite išjungti išvardintų gavėjų informavimą tik šiai operacijai. Nuolatinis išjungimas valdomas Asmenų puslapyje." #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Nerealizuota" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "UNIX naudotojas" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Nežinomas (pasitikėjimo lygis neapibrėžtas)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Nežinomas (šis lygis sistemoje neapibrėžtas)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Nežinomas turinio kodavimas %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Nežinomas laukas: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Neribota" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Neribota" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "Bevardė informacinė panelė" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Bevardė užklausa" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Prašymai, neturintys paskirto atsakingo asmens" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Nepriveligijuotas" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Nepažymėti papildomi laukai" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Nepažymėtos eilės" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Nepažymėti objektai" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Privatus raktas nuimtas" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Nepaskirtas atsakingas" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Keisti" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "Atnaujinti diagramą" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Pakeisti grafiką" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Papildyti prašymo istoriją" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Pakeisti tipą" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Pakeisti formatą ir ieškoti" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Pakeisti pažymėtus prašymus" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Pakeitimas neįsimintas" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Pakeisti prašymą" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Prašymo #%1 pakeitimas" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Prašymo #%1 pakeitimas (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Pakeitimas nebuvo nei atsakymas, nei komentaras." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "Pakeitimo būsena" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Pakeista" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Pakeista įsiminta paieška \"%1\"" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Įkelti" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Įdėti naują logotipą" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Įkelti keletą failų" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Įkelti keletą vaizdų" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Įkelti vieną failą" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Įkelti vieną vaizdą" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Įkelti iki %1 failų" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Įkelti iki %1 vaizdų" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Įkelti jūsų pakeitimus." #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "Naudojimas:" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Naudojimas: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Naudoti SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "Ar naudoti dviejų stulpelių išdėstymą kuriant ir atnaujinant formas?" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "Naudoti automatinį teksto užbaigimą ieškant atsakingų?" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Naudoti css taisykles rodant fiksuoto pločio tekstą bei perkeliant eilutes. Tai neveikia su Internet Explores 6 versija. Tokiu atveju geriau naudoti ankstesnį variantą." #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Naudoti nustatytą reikšmę (%1)" #: NOT FOUND IN SOURCE msgid "Use fixed-width font to display plaintext messages" msgstr "Naudoti fiksuoto pločio šriftą atvaizduoti tekstinius pranešimus" #: NOT FOUND IN SOURCE msgid "Use monospace font" msgstr "Naudoti fiksuoto pločio šriftą" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Naudoti kitas RT administravimo priemones" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Naudoti nustatytą sisteminę reikšmę (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Naudoti pasirinkimą iš sąrašo išrenkant prašymus, kuriuos norite perkelti į naują straipsnį." #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Naudokite tai apsaugoti teksto formatavimą" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Naudotojas" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Naudotojas '%1' nerastas." #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Naudotojas (sukurtas - nebegalioja)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Nustatyta naudotojo" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Naudotojo nustatytos sąlygos ir veiksmai" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Naudotojo teisės" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Naudotojas pageidauja nežinomo tipo pakeitimo %2 objektui #%3 papildomą lauką %1" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Negalima sukurti naudotojo: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Naudotojas sukurtas" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Vartotojo apibrėžtos grupės" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Naudotojas išjungtas" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Naudotojas įjungtas" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Nenurodytas naudotojo el. pašto adresas" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Naudotojas įkeltas" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Vartotojo GnuPG raktai" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Naudotojo sukurtos grupės" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Naudotojo vardas" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Naudotojo vardo formatas" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Naudotojai" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Naudotojai, atitinkantys paeiškos kriterijus" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Naudojama tranzakcija #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Patikrinta užklausa" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Patikrinimas" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Reikšmė" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Reikšmės" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Kintamasis" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Įvairios RT ataskaitos" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Versija" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "Peržiūrėti skriptų šablonus" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "Peržiūrėti skriptus" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "Peržiūrėti papildomų laukų reikšmes" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "Peržiūrėti papildomus laukus" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Žiūrėti šios grupės informacines paneles" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "Peržiūrėti pilnus išsiųstus laiškus ir jų gavėjus" #: lib/RT/Group.pm:99 msgid "View group" msgstr "Peržiūrėti grupę" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "Peržiūrėti grupės informacines paneles" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Žiūrėti asmenines informacines paneles" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "Peržiūrėti eilę" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "Peržiūrėti įsimintas paieškas" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Žiūrėti sistemines informacines paneles" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "Peržiūrėti prašymo privačius komentarus" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "Peržiūrėti prašymo santraukas" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "DĖMESIO: įsimenama naudotojo asmeninio matomumo lygio paieška" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "WYSIWYG pranešimų kūrimo lango aukštis" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG pranešimų kūrimas" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Dėmesio! Tai nepasirašyta!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Dėmesio: nežinomas jūsų el. pašto adresas, todėl jūs negausite šios informacinės panelės, kol jo nenurodysite" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Stebėti" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "Stebėti naudojant administracinę kopiją" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Stebėtojas" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "Stebėtojų grupė" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Stebėtojai" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Negalima parodyti kaip sąrašo, kai kategorijos remiasi kitu papildomu lauku. Pasirinkite kitą pavertimo tipą." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "WWW serverio portas" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Tre" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Trečiadienis" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Kassavaitinė santrauka" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Sveiki prisijungę prie RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Ką nuveikiau šiandien" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Kas yra RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "When RT can't handle an email message, where should it be forwarded?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Kiekvieną kartą kai prašymas sukurtas" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "kai sukuriamas patvirtinimo prašymas, informuoti atsakingą asmenį ir administracines kopijas gaunančius asmenis, kad yra patvirtinimo laukiančių prašymų" #: etc/initialdata:110 msgid "When anything happens" msgstr "Kiekvieną kartą kai kas nors atsitinka" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "Kai WYSIWYG teksto redaktorius neįjungtas, šis nustatymas apsprendžia ar teksto automatiškas perkėlimas į naują eilutę perduodamas į RT ar ne." #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Kiekvieną kartą uždarius prašymą" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Kai prašymas yra atmestas" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Kiekvieną kartą pakartotinai atidarius prašymą" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Kiekvieną kartą įvykdžius prašymą" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Kiekvieną kartą keičiantis atsakingas už prašymą" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Kiekvieną kartą keičiantis prašymo prioritetui" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Kiekvieną kartą keičiantis prašymo eilei" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Kiekvieną kartą keičiantis prašymo būsenai" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Kiekvieną kartą, įvykus naudotojo apibrėžtai sąlygai" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Kiekvieną kartą pridėjus komentarą" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Kiekvieną kartą gavus korespondenciją" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Kur jūsų Sendmail programa" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Nuvalyti" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Darbo" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "Darbo telefonas" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "Darbo telefonas" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Dirbta" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Taip" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Jūs galite taisyti šią informacinę panelę ir prenumeruoti ją." #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Jūs jau esate atsakingas už šį prašymą" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Jūs esate neprisiregistravęs" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Galite pereiti prie pirmo neskaityto pranešimo arba pereiti prie pirmo neskaityto pranešimo ir pažymėti visus pranešimus skaitytais." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Jūs taip pat galite taisyti standartinę paiešką" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Galite įterpti prašymo turinį bet kuriame laisvos formos, tekstiniame ar wiki tipo lauke." #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Jūs negalite nustatyti slaptažodžio." #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Galite perskirti tik tuo prašymus, kurie priskirti jums arba nepriskirti niekam." #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Jūs galite paskirti sau tik tuos prašymus, kurie nepriskirti niekam" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "You can search for any word in full ticket history by typing fulltext:word." msgstr "Galite ieškote teksto fragmento visuose prašymuose naudodami sąlygą fulltext:ieškomas tekstas." #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "Jūs negalite pakeisti būsenos iš '%1' į '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Jūs neturite b>SuperUser teisių." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Radote %1 prašymų eilėje %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Jūs atsijungėte nuo RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "Jūs įjungėte GnuPG palaikymą, bet nenurodėte komentarų adreso šiai eilei." #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "Jūs įjungėte GnuPG palaikymą, bet nenurodėte susirašinėjimo adreso šiai eilei." #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Jūs neturite teisės kurti prašymus šioje eilėje." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Jūs galite įdėti nuorodą į straipsnį naudodami formą \"a:###\", kur ### atitinka straipsnio numerį." #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Jūs negalite kurti prašymus šioje eilėje." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "You must enter an Administrative password." #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "Jūs turite įjungti StatementLog parametrą, norėdami naudoti užklausų istorijos puslapį." #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "Jūs privalote nurodyti adresą komentarams, norėdami naudoti GnuPG asmeninius raktus." #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "Jūs privalote nurodyti adresą susirašinėjimui, jeigu norite naudoti GnuPG asmeninius raktus." #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "You should choose the database you or your local database administrator is most comfortable with." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Ačiū. Kviečiame užeiti dar kartą" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Jūsų dabartinis slaptažodis" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Jūsų slaptažodis nenustatyas." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "Jūsų sistema palaiko automatinį spalvų pasiūlymą, skirtą %1" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Klaidingas naudotojo vardas arba slaptažodis" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Pašto indeksas" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Žemyn]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Aukštyn]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nieko]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "papildomas laukas" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktyvus" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "naudokyte žymas 
 prieš ir po tekstinių prikabintų failų"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "po"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "leisti sukurti išsaugotas paieškas"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "leisti užkrauti išsaugotas paieškas"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr "ir prieš tai"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr "ir ne"

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "teisė suteikta: %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "stulpeliai"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "iki"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "turinys"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "iš apačios į viršų"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr "pažymėkite, norėdami taikyti šią klasę bendrai visoms eilėms."

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "pažymėkite, norėdami taikyti šį papildomą lauką visiems objektams."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr "pažymėkite, norėdami netaikyti šios klasės bendrai visoms eilėms, o galėti pasirinkti konkrečias eiles."

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "pažymėkite, norėdami netaikyti šio papildomo lauko visiems objektams, o galėti pasirinkti konkrečius objektus."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "pažymėkite norėdami pridėti"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "spustelk pažymėti visus objektus iš karto"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "uždarytas"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "glaustas"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "pagrindinė konfigūracija"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "papildomas laukas '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "kasdien"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "kasdien %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dienų"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "panaikintas"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "rodyti tekstinius prikabintus failus suformatuos ir su perkėlimu į naują eilutę"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "nesutampa"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "parsiųsti"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr "trukmė"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "lygu"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "klaida: negalima nuleisti"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "klaida: negalima patraukti kairėn"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "klaida: negalima pakelti"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "klaida: nėra ką panaikinti"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "klaida: nėra ką perkelti"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "klaida: nėra ką perjungti"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "kiekvienas"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "papildinys įvykdytas sėkmingai"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "pilnas"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "daugiau nei"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "grupė"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grupė '%1'"

#: NOT FOUND IN SOURCE
msgid "hide quoted text"
msgstr "nerodyti cituojamo teksto"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "valandų"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "identifikatorius"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr "klasėje %1"

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr "neaktyvus"

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr "apima %1"

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr "indeksas"

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "yra"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "nėra"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "raktas uždraustas"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "raktas nebegalioja"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "raktas panaikintas"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "iš kairės į dešinę"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "mažiau kaip"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "ribinis"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "sutampa"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maksimalus gylis"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minučių"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "kas mėnesį"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "kas mėnesį (%1)  %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "mėnesių"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "niekada"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "naujas"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "ne"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "nėra vardo"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "nėra"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "nelygu"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nieko"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "Objektai buvo panaikinti sėkmingai"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "Kada"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "nurodytą dieną"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "vienas"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "atidarytas"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "atidaryti/uždaryti"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "kiti..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "asmeninė grupė '%1' vartotojui '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "pyragas"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "papildinys grąžino tuščią sąrašą"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "eilė %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "atmestas"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr "reikalauja veikiančio rt-crontool įrankio"

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "išspręstas"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "iš dešinės į kairę"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "žr. objektų sąrašą žemiau"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "rodyti Tvirtinimų puslapį"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "parodyti konfigūracijos puslapį"

#: NOT FOUND IN SOURCE
msgid "show quoted text"
msgstr "rodyti cituojamą tekstą"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "sistemos konfigūracija"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "pristabdytas"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr "užklausa"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "santrauka"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "suminės eilutės"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistema %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "sisteminė grupė '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "besikreipiantis komponentas nenurodė priežasties"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "adresas bus naudojamas komentarų laiškų laukuose From: ir Reply-To:"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "adresas bus naudojamas atsakymų laiškų laukuose From: ir Reply-To:"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "prašymas #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "iš viršaus į apačią"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "absoliučiai"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "neaprašyta grupė: %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "neribotas"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "naudotojas"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "naudotojas %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "naudotojo vardas"

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "detaliai"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "kas savaitę"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "kas savaitę (%1) %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "savaitės"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "kuriuo portu veiks www serveris, pvz. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "su antraštėmis"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "metai"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "taip"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/nn.po0000664000175000017500000112003512262650742013747 0ustar  chmrrchmrr#
# Karl Ove Hufthammer , 2010.
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:02+0000\n"
"Last-Translator: Karl Ove Hufthammer \n"
"Language-Team: Norwegian Nynorsk \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

# Merk: For alle tekstane i denne omsettinga er bruk av store og små bokstaver og punktum / ikkje punktum på slutten av tekstar *veldig* bevisst, og kan avvika fra dei engelske originaltekstane (men er meir konsekvent i brukergrensesnittet). Dei bør derfor ikkje endrast.
#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (manglar offentlegnøkkel)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (ikkje tiltrudd)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 %2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %3. %2 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %3. %2 %6 %4.%5"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3. %2 %7 %4.%5.%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 lagt til"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 sidan"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 «%2» endra til «%3»"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 sletta"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 sletta."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 endra namn til %3"

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 lagra"

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 «%2» oppdatert"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1: %2 med malen «%3»"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) av %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (uendra)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (frå rute %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 – endra innstillinga «LogToScreen»"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 – eit argument som skal sendast til %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 – send statusoppdateringar til standard ut"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 – om du vil bruka «first» (første), «last» (siste) eller «all» (alle) transaksjonar"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 – namn eller ID til malan(e) du vil bruka"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 – handlingsmodulen du vil bruka"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 – kommadelt liste over transaksjonstypane du vil bruka"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 – vilkårsmodulen du vil bruka"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 – søkjemodulen du vil bruka"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1-utformingar"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996–%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "Utløysarhandling %1 lasta"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "«%1» lagt til som verdi for «%2»"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 finst frå før, og har RT-tabellane på plass, men inneheld ikkje RT-metadata. Steget «Gjer klar database», som kjem seinare, kan automatisk setja inn dei nødvendige metadataa i databasen. Viss dette er i orden, kan du trykkja «Tilpass detaljar» for å halda fram med å setje opp RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 finst frå før, men inneheld ikkje tabellar eller metadata for RT. Steget «Gjer klar database», som kjem seinare, kan automatisk setja inn dei nødvendige tabellane og metadataa i databasen. Viss dette er i orden, kan du trykkja «Tilpass detaljer» for å halda fram med å setja opp Request Tracker."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 ser ut til å vera eit lokalt objekt, men finst ikkje i databasen"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 ser alt ut til å vera klargjort. Det er derfor ikkje nødvendig å oppretta tabellar eller setja inn metadata, og du kan halda fram med å tilpassa Request Tracker ved trykkja «Tilpass detaljer»."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 av %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 endra frå %2 til %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

# Har ikke suffikset -diagram, da dette er flyttet til %1-tekstene (for eksempel «Stolpediagram» i stedet for «Stolpe»).
#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 av %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1-kopi"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1-kjerneoppsett"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 kunne ikkje setjast til %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 kunne ikkje setja statusen til løyst. RT-databasen kan vera inkonsistent."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 oppretta"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 sletta"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 deaktivert"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 finst ikkje."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 aktivert"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 høgast prioriterte saker eg eig"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 er eit verktøy for å handtera saker frå eksterne verktøy, som cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 er eit verktøy, meint for å verta køyrd via cron, som sender alle avviste RT-varslingar som ein samle-e-post for kvar brukar."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 er ei adresse RT tek imot e-post på. Viss du la ho til som ein «%2», ville det oppstå ei e-postlykkje."

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 er ikkje lenger ein %2 for denne køen"

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 er ikkje lenger ein %2 for denne saka"

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "Fleksifeltet %2 har ikkje lenger verdien %1"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 minutt"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 nyaste saker utan eigar"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1-objekt"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1-nettstadoppsett"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "Oppdatering av %1: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "Oppdatering av %1: ingenting endra"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 oppdatert"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 vil løysa alle medlemmer av ei løyst gruppesak."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1 sine %2 objekt"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1 sine %2 sine %3 objekt"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1 sine utformingar"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1 sine lagra søk"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: ingen vedlegg oppgjevne"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1.%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1.%2.%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Ny sak i%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1 byte"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1 KiB"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,time,timar)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "«%1» er ein ugyldig statusverdi"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Kryss av for å fjerna.)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Kryss av i felta for å slå av varsling til mottakarane.)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Kryss av i felta for å slå på varsling til mottakarane.)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(skriv inn saksnummer eller nettadresser, skilde med mellomrom)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(vert sett til %1 viss tom)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(ingen fleksifelt)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(ingen medlemmer)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(ingen utløysarar)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(ingen malar)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(ingen)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Sender ein kopi av oppdateringa til valde administrative e-postadresser (ei kommadelt liste). Desse personane vil òg få framtidige oppdateringar.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Sender ein kopi av oppdateringa til valde e-postadresser (ei kommadelt liste). Desse personane vil òg få framtidige oppdateringar.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Bruk desse felta når du vel «Tilpassa» for eit vilkår eller ei handling.)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(e-post vert ikkje sendt)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(vilkårleg)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(tom)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(manglar offentlegnøkkel)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(manglar verdi)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(manglar verdiar)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(berre éi sak)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(ventar på %quant(%1,anna sak,andre saker))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(ventar på godkjenning)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(obligatorisk)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(tiltrunivå: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(namnlaus)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(ikkje tiltrudd)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "–"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "«--template-id» er eit utdatert argument, og kan ikkje brukast med «--template»"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "«--transaction»-argumentet kan berre ta verdiane «first», «last» eller «all»"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Alle iCal-adressene inneheld ein hemmeleg kode som identifiserer deg. Viss andre får kjennskap til ei av disse adressene, kan du få generert ein ny kode. Merk at alle iCal-adressene nedanfor då ikkje lenger vil fungera.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Ein tom mal" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Eit passord var ikkje oppgjeve, så brukaren kan ikkje logga inn" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "Fann ikkje ACE" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "Du kan berre oppretta eller sletta ACE-er." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "OG" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Om meg" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Tilgangskontroll" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Handling" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Fann ikkje handlinga «%1»" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Handling utført.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Handling er eit obligatorisk argument" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Handling førebudd …" #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Legg til admin-kopimottakar" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Legg til bokmerke" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Legg til kopimottakar" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Legg til kolonnar" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Legg til søkjekriterium" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Legg til fleire filer" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Legg til innmeldar" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Legg til verdi" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Legg til ein utløysar som vil gjelda alle køane" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Legg til kommentarar eller svar til dei valde sakene" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Legg til medlemmer" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Legg til overvakarar" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Legg til vilkåra" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Legg til vilkåra og søk" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Legg til verdiar" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Legg til, fjern eller endra fleksifeltverdiar for objekt" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "%1 lagt til for køen" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "%1 lagt til for saka" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adresse 1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adresse 2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin-kopimottakar" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Admin-kommentar" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Admin-svar" # «Velg kø» er rett oversettelse, og nødvendig for å få konsekvente overskrifter. #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Vel kø" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administrering / globalt oppsett" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdminAllePersonlegeGrupper" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminKopimottakarGruppe" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "Admin-kopimottakar" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminKopimottakarar" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminFleksifelt" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGruppe" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGruppemedlemskap" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminEignePersonlegeGrupper" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminKø" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminBrukarar" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Admin-kopimottakar" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administratorpassord" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avansert" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Samanstilling" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Alle førespurnader godkjende" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Alle køar" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Alle iCal-adressene inneheld ein hemmeleg kode som identifiserer deg. Viss andre får kjennskap til ei av disse adressene, kan du få generert ein ny kode. Merk at alle iCal-adressene nedanfor då ikkje lenger vil fungera." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Alle køar i samsvar med søkjekriteria" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Allereie kryptert" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Og/eller" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Tildelt" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Gjeld" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Gjeld alle objekta" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Bruk" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Bruk globalt" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Ta endringane i bruk" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Godkjenning" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Godkjenning %1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Godkjenning %1: klarte ikkje lagra merknader, grunna systemfeil" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Godkjenning %1: merknader lagra" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Godkjend" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Godkjenning klar for eigar" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Godkjenning avslått" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Godkjenn" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "april" #: NOT FOUND IN SOURCE msgid "April" msgstr "april" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "stigande" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Stigande" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Tilordna og fjern fleksifelt" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "TilordnaFleksifelt" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Legg ved" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Legg ved fil" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Vedlagt fil" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Vedlegg" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Klarte ikkje lasta vedlegget «%1»" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Vedlegg oppretta" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Vedleggsnamn" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Vedlegg" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Kryptering av vedlegg er slått av" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Attributt fjerna" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "aug." #: NOT FOUND IN SOURCE msgid "August" msgstr "august" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Autosvar" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Autosvar til innmeldar" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Tilgjengeleg" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Blindkopi" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Tilbake" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Ugyldig offentlegstatus for attributtet %1" # Dette *er* rett / ei god omsetting for dette omgrepet er i brukargrensesnittet. #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Detaljar" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Hugs å lagra endringane dine" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC" #: etc/initialdata:214 msgid "Blank" msgstr "Tom" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Hovudflate" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Halvfeit" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Bokmerke" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Bokmerkte saker" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Kort meldingshovud" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Masseoppdater" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Kjøp kundestøtte" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Som standard vil RT bruka tidssona for maskina programmet køyrer på. Her kan du velja ein global standardverdi for vising av dato og klokkeslett. Brukarane kan eventuelt velja ein annen tidssone i innstillingane sine." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "Kopigruppe" # CF = Custom Field #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "FF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: NOT FOUND IN SOURCE msgid "Calendar" msgstr "Kalender" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Klarte ikkje henta det lagra søket «%1»" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Kan ikkje endra systembrukarar" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Kan primærobjektet sjå køen" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Kan ikkje leggja verdi til eit fleksifelt utan namn" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Fann ikkje nokon samlingsklasse for «%1»" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Fann ikkje eit lagra søk å arbeida med" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Kan ikkje kopla ein sak til seg sjølv" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Klarte ikkje lagra %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Klarte ikkje lagra søket" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Kan ikkje velja både kjelde og mål" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Kan ikkje oppretta saker i ein deaktivert kø" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Klarte ikkje oppretta brukaren: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategoriar baserte på" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategori" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Kategori ikkje vald" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Kopimottakar" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Kopimottakarar" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Endra" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Endra godkjenningssak til status «open»" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Byt passord" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Merk alle" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontroller databasetilgang" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Kontroller databaseautentisering" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Kryss av for å fjerna" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Kryss av for å trekkja tilbake løyve" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Undersaker" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Vel databasemotor" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Poststad" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Tøm" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tøm alle" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Trykk «Fullfør installering» for å avslutta vegvisaren." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Trykk «Gjer klar database» for å oppretta RT-databasen og setja inn dei nødvendige metadataa. Dette kan ta nokre minutt." #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Lukk vindauge" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Lukka" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Lukka saker" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Komboboks: vel eller skriv inn fleire verdiar" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Komboboks: vel eller skriv inn enkeltverdi" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Komboboks: vel eller skriv inn opptil %1 verdiar" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Kommenter" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Kommentaradresse" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Kommentaradresse" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Kommenter saker" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "KommentarAdresse" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "KommenterSak" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentarar" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Kommentar (vert ikkje send til innmeldaren)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Kommentar (vert ikkje send til innmeldaren)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Kommentarar om brukaren" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "La til kommentarar" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Utføring klargjord" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Vilkår" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Fann ikkje vilkåret «%1»" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Vilkår er eit obligatorisk argument" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Vilkåret oppfyller …" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Vilkår, handling og mal" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Oppsettfila %1 er låst" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Systemoppsett" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Stadfest" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Kopla til" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Melding" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Innhaldstype" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "Innhaldstype" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Svaradresse" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "Svaradresse" #: etc/initialdata:283 msgid "Correspondence" msgstr "Svar" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Svar lagt til" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Klarte ikkje leggja til ny fleksifeltverdi: %1" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Klarte ikkje endra eigar: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Klarte ikkje oppretta fleksifelt" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Klarte ikkje oppretta fleksifelt: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Klarte ikkje oppretta gruppe" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Klarte ikkje oppretta mal: %1" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Klarte ikkje oppretta sak. Kø ikkje oppgjeven." #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Klarte ikkje oppretta brukar" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Klarte ikkje finna eller oppretta brukaren" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Fann ikkje primærobjektet" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Klarte ikkje lasta attributtet %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Klarte ikkje lasta fleksifeltet %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Klarte ikkje lasta gruppa" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Klarte ikkje lasta objekt for %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Klarte ikkje gjera primærobjektet til ein %1 for køen" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Klarte ikkje gjera primærobjektet til ein %1 for saka" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Klarte ikkje fjerna primærobjektet som %1 for køen" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Klarte ikkje fjerna primærobjektet som %1 for saka" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Klarte ikkje lagra brukarinfo" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Klarte ikkje leggja til vedlegg" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Klarte ikkje leggja medlem til gruppa" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Klarte ikkje tildela fleksifelt til objekt, då det alt er globalt" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Klarte ikkje oppretta transaksjon: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Klarte ikkje oppretta post" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Klarte ikkje fjerna utforminga %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Fann ikkje rada" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Fann ikkje ein passende transaksjon – hoppar over" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Fann ikkje primærobjektet" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Fann ikkje verdien" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Klarte ikkje henta %1 frå brukardatabasen.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Klarte ikkje lasta klassen %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Klarte ikkje lasta fleksifelt %1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Klarte ikkje lasta fleksifelt %1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Klarte ikkje lasta fleksifeltet %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Klarte ikkje lasta kopi av sak %1" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Klarte ikkje lasta utforminga %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Klarte ikkje lasta utforminga %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Klarte ikkje lasta gruppe %1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Klarte ikkje lasta gruppa %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Klarte ikkje lasta lenkja" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Klarte ikkje lasta objektet %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Klarte ikkje lasta eller oppretta brukaren: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Klarte ikkje lasta køen" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Klarte ikkje lasta kø %1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Klarte ikkje lasta køen %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Klarte ikkje lasta køen «%1»" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Klarte ikkje lasta utløysar %1" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Klarte ikkje lasta mal %1" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Klarte ikkje henta saka «%1»" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Klarte ikkje lasta transaksjon %1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Klarte ikkje lasta brukar" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Klarte ikkje lasta brukar %1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Klarte ikkje lasta brukar %1 eller brukaren «%2»" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Klarte ikkje lasta brukaren «%1»" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Klarte ikkje tolka adresse frå teksten «%1»" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Klarte ikkje byta ut innhaldet med dekryptert innhald: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Klarte ikkje byta ut innhaldet med kryptert innhald: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Klarte ikkje gjera «%1» om til ei adresse" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Klarte ikkje gjera kjelda «%1» om til ei adresse" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Klarte ikkje gjera målet «%1» om til ei adresse" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Klarte ikkje senda e-post" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Klarte ikkje registrera %1-overvakar: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Klarte ikkje registrera privatnøkkel" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Klarte ikkje fjerna privatnøkkel" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Land" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Ny" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Opprett saker" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Nytt fleksifelt" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Opprett fleksifelt for køen %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Ny utforming" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Ny gruppe" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Ny personleg gruppe" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Ny sak" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Ny brukar" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Ny kø" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Opprett utløysar for køen %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Opprett mal" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Ny sak" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Lag utformingar for gruppa" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Opprett nye saker basert på malen til denne utløysaren" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Lag personlege utformingar" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Lag systemutformingar" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Opprett sak" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Opprett saker i køen" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Opprett saker fråkopla" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Opprett, slett og endra fleksifelt" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Opprett, slett og endra køar" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Opprett, slett og endra medlemmene av personlege grupper til ein brukar" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Opprett, slett og endra medlemmene av personlege grupper" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Opprett, slett og endra brukarar" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "OpprettUtforming" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "OpprettGruppeutforming" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "OpprettEigneUtformingar" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "OpprettLagraSøk" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "OpprettSak" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Oppretta" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Oppretta av" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Oppretta fleksifeltet %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Oppretta i perioden" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Oppretta saker i tidsperiode – gruppert etter status" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "OpprettaAv" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "OpprettaRelativt" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Innmeldar" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografi" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Gjeldande koplingar" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Gjeldande utløysarar" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Gjeldande medlemmer" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Gjeldande løyve" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Gjeldande søk" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Gjeldande overvakarar" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Fleksifelt" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Fleksifelt for %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Tilpassa oppryddingskode for handling" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Tilpassa førebuingskode for handling" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Sjølvvalt vilkår" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Fleksifelt %1 vert ikkje brukt på dette objektet" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Fleksifeltet %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Fleksifeltet %1 gjeld ikkje dette objektet" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Fleksifeltet %1 har ein verdi." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Fleksifeltet %1 har ingen verdi." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Fann ikkje fleksifeltet %1" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Fleksifeltet «%1»" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Fleksifeltet er alt brukt på dette objektet" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Fann ikkje feltverdien %1 for fleksifeltet %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Klarte ikkje sletta feltverdien til fleksifeltet" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Fann ikkje feltverdien til fleksifeltet" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Feltverdi til fleksifelt sletta" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Fleksifelt" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "Fleksifeltverdi" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Tilpass" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Tilpass detaljer" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Tilpass e-postadresser" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Tilpass e-postoppsett" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" # DBA = databaseadministrator #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA-passord" # DBA = databaseadministrator #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA-brukarnamn" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Dagleg samandrag" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Utforming" #: NOT FOUND IN SOURCE msgid "Dashboard %1" msgstr "Utforming: %1" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Klarte ikkje oppretta utforminga: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Klarte ikkje oppdatera utforminga: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Utforming oppdatert" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Utformingar" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Databasetenar" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Databasenamn" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Databasepassord for RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Databaseport" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Databasetype" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Databasebrukarnamn for RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Datoformat" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "«DateTime» støttar ikkje «format_cldr». Du må oppgradera for å kunna bruka denne funksjonen." #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Manglar modulen «DateTime»" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "«DateTime» støttar ikkje «date_format_full». Du må oppgradera for å kunna bruka denne funksjonen." #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Manglar modulen «DateTime::Locale»" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datoar" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "des." #: NOT FOUND IN SOURCE msgid "December" msgstr "desember" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Dekrypter" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Standardmal for autosvar" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Standardkø" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Standardinnmeldar" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Standardmal for adminkommentar" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Standardmal for adminsvar" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Standardmal for svar" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Standardkø" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Standardmal for transaksjonar" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Standard: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standard: %1/%2 endra frå %3 til %4" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "StandardForfallsdato" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Standardformat" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Deleger løyve" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Deleger løyve du har." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegerLøyve" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegering" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Slett" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Slett mal" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Slett utformingar for gruppa" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Feil ved sletting: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Slett personlege utformingar" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Slett valde utløysarar" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Slett systemutformingar" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Slett saker" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Slett verdiar" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "SlettUtforming" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "SlettGruppeUtforming" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "SlettEigaUtforming" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "SlettSak" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Sletta %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Sletta utforminga %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Sletta søk" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Sletta lagra søk" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Sletting av dette objektet vil øydeleggja referanseintegriteten" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Sletting av dette objektet vil øydeleggja referanseintegriteten" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Nekt" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Avhengnad frå" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "AvhengnadFrå" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Avhengnad av %1 lagt til" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Avhengnad av %1 slettet" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Avhengnad av %1 lagt til" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Avhengnad av %1 sletta" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "AvhengAv" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Avheng av" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "AvhengAv" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "synkande" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Synkande" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Skildra problemet nedanfor" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Skildring" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Retning" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Deaktivert" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Vis" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Vis tilgangsliste" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Vis kolonnar" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Vis utløysarmalar for køen" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Vis utløysarmalar for køen" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Vis lagra søk for gruppa" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuert under GNU GPL 2.0." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Gjera alt" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Domenenamn" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ta ikkje med «http://», berre vertsnamnet. Eksempel: rt.eksempel.no" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Ikkje oppdater heimesida" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Ikkje oppdater søkeresultata" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ikkje oppdater sida" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Ikkje stol på denne nøkkelen" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Last ned" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Last ned som ei tabulatordelt fil" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Last ned dumpfil" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Forfallsdato" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "ForfallsdatoRelativ" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "Feil: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Enkel oppdatering av opne saker" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Rediger" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Rediger fleksifelt" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Rediger fleksifelt: %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Rediger fleksifelt for alle gruppene" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Rediger fleksifelt for alle køane" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Rediger fleksifelt for alle brukarane" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Rediger fleksifelt for saker i alle køar" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Rediger koplingar" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Rediger spørjing" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Rediger søk" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Rediger malar for køen %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Rediger lagra søk for gruppa" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Rediger systemmalar" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "RedigerLagraSøk" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Redigerbar tekst" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Rediger innstillingar for køen %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Redigerer fleksifeltet %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Redigerer medlemskap for gruppa %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Redigerer medlemskap for den personlege gruppa %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "EffektivID" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Du må oppgje anten kjelde eller mål" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Anten manglar du løyve til å visa det lagra søket %1, eller så er identifikatoren feil" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-postadresse" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "E-postsamandrag" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "E-postadressa er alt i bruk" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "E-postlevering" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "E-postmal for regelmessige samandrag" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "E-postadresse" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Aktivert" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "I bruk (fjern krysset for å deaktivera feltet)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "I bruk (fjern krysset for å deaktivera gruppa)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "I bruk (fjern krysset for å deaktivera køen)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Aktive køar" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Verksame køar i samsvar med søkjekriteria" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Aktivert statusen %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Krypter" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Krypter som standard" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Krypter/dekrypter" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Krypter/dekrypter transaksjon %1 av sak %2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Kryptering slått av" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Kryptering slått på" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Skriv inn fleire verdiar" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Skriv inn fleire verdiar – med autofullføring" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Skriv inn objekta eller nettadressene du vil kopla til. Du kan skilja fleire verdiar ved å bruka mellomrom." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Skriv inn enkeltverdi" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Skriv inn enkeltverdi – med autofullføring" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Skriv inn køane eller nettadressene du vil kopla køane til. Du kan skilja fleire verdiar ved å bruka mellomrom." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Skriv inn sakene eller nettadressene du vil kopla sakene til. Du kan skilja fleire verdiar ved å bruka mellomrom." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Skriv inn opptil %1 verdiar" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Skriv inn opptil %1 verdiar – med autofullføring" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Feil" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Feil i parameterane til «Queue->AddWatcher»" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Feil i parameterane til «Queue->DeleteWatcher»" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Feil i parameterane til «Ticket->AddWatcher»" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Feil i parameterane til «Ticket->DeleteWatcher»" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Feil til RT-eigar: offentlegnøkkel" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Feil: Manglar utforming" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Feil: Ugyldige GnuPG-data" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Feil: manglar privatnøkkel" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Feil: offentlegnøkkel" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Auk saksprioritetar" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Estimert" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Alle" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Sjå på saker oppretta i ein viss tidsperiode" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Sjå på saker løyste i ein viss tidsperiode" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Sjå på løyste saker – grupperte etter eigar" #: bin/rt-crontool:356 msgid "Example:" msgstr "Eksempel:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Utgår" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "UtvidaStatus" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Ekstern autentisering slått på" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Tilleggsinformasjon" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Hent emnekode" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Hent emnekodar frå emnelinja i ein transaksjon, og legg desse til saksemnet." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Klarte ikkje kopla til databasen: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Klarte ikkje oppretta attributtet %1" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Fann ikkje pseudogruppa «brukarar med utvida løyve»" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Fann ikkje pseudogruppa «brukarar utan utvida løyve»" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Klarte ikkje lasta %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Klarte ikkje lasta %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Klarte ikkje lasta modulen %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Klarte ikkje lasta objektet for %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Klarte ikkje lasta malen" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Klarte ikkje tolka malen" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "feb." #: NOT FOUND IN SOURCE msgid "February" msgstr "februar" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Kjelde for feltverdiar:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "Filnamn" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Filnamn" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Fyllargument" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Fyll boksane med farge med" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Fyll ut fleire fritekstfelt" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Fyll ut fleire wikitext-felt" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Fyll ut eit fritekstfelt" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Fyll ut eit wikitext-felt" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Fyll ut feltet med ei nettadresse." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Fyll ut opptil %1 fritekstfelt" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Fyll ut opptil %1 wikitext-felt" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Sluttprioritet" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "Sluttprioritet" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Finn alle brukarane der" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Finn alle gruppene der" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Finn alle personane der" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Finn saker" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Fullfør" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Først" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Tving gjennom endring" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Format" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Vidaresend" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Vidaresend melding" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Vidaresend melding og gå tilbake" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Vidaresend sak" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Vidaresend meldingar til tredjeperson(ar)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Vidaresend sak %1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Vidaresend transaksjon %1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "Vidaresend melding" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Fann %quant(%1,sak,saker)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Fann objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frekvens" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "fr." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "fredag" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Fullstendig meldingshovud" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Generelt" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Hent mal frå fil" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Kom i gang" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Tildelt %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Globalt" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Globale fleksifelt" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Oppsett av globale fleksifelt" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Globalt panel «%1» lagra" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Global mal: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG-feil. Ta kontakt med systemadministratoren." #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG-integrasjonen er slått av" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG-problem" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG-privatnøkkel/-nøklar for %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG-offentlegnøkkel/-nøklar for %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Køyr" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Køyr" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Gå til saka" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagrameigenskapar" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Diagram er ikkje tilgjengelege." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Gruppe" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Gruppeløyve" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Alt medlem av gruppa: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Klarte ikkje oppretta gruppa: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Gruppa er oppretta" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Gruppa er deaktivert" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Gruppa er aktivert" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Gruppa har ikkje medlemmen" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Fann ikkje gruppa" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Gruppeløyve" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupper" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupper kan ikkje vera medlem av sine medlemmer" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupper i samsvar med søkjekriteria" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Brukaren er medlem av (kryss av for å fjerna)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Brukaren er ikkje medlem av (kryss av for å leggja til)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Brukaren er medlem av" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "HarMedlem" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Overskrift til vidaresend sak" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Overskrift til vidaresend melding" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Hei!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hei %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Hjelp oss å setja opp nokre nyttige standardverdiar for RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Oppdateringar" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Gruppeendringar for %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Køendringar for %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Brukarendringar for %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Heim" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Oppdater heimesida" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "TelefonHeime" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Heimeside" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Time" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "timar" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Eg har %quant(%1,sementblandar,sementblandarar)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identitet" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Viss ei godkjenning vert avvist, avvis originalen, og slett ventande godkjenningar" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Bruk denne innmeldaren viss ingen innmeldar er oppgjeven." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Bruk denne køen viss ingen kø er oppgjeven." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Viss dette verktøyet var «setgid», kunne ein vondsinna lokal brukar bruka det for å få administrativ tilgang til RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Viss du alt har ein fungerande RT-tenar og RT-database, bør du no sjå til at databasetenaren køyrer, og at RT-tenaren kan kopla til han. Når du har gjort dette, bør du stoppa og så starta RT-tenaren på nytt." #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Viss du alt har ein fungerande RT-tenar og RT-database, bør du no sjå til at databasetenaren køyrer, og at RT-tenaren kan kopla til han. Når du har gjort dette, bør du stoppa og så starta RT-tenaren på nytt." #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Viss du endrar porten som RT køyrer på, må du starta tenaren på nytt for å kunna logga inn." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Viss du har gjort endringar her, må du hugsa å" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Viss databasen du føretrekkjer ikkje er synleg i feltet nedanfor, tyder det at RT ikkje fann ein databasedrivar for denne installert. Det kan hjelpa å bruka %1 for å lasta ned og installera «DBD::MySQL», «DBD::Oracle» eller «DBD::Pg»." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Ugyldig verdi for %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Låst felt" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Ta med deaktiverte fleksifelt i lista" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Ta med deaktiverte grupper i lista" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Ta med deaktiverte køar i lista" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Ta med deaktiverte brukarar i søkeresultata" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Vis nettside" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Enkeltmeldingar" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Varsla RT-eigaren om at brukaren/brukarane har ugyldige offentlegnøklar" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Varsla brukaren om at utforminga han/ho brukar er fjerna" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Varsla brukaren om at meldinga han/ho sende har ugyldige GnuPG-data" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Varsla brukaren om at han/ho har feil i offentlegnøkkelen, og derfor ikkje kan få krypterte meldingar" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Varsla brukaren om at passordet hans/hennar er nullstilt" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Varsla brukaren om mottak av kryptert e-post som RT manglar privatnøkkel for å dekryptera" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Startprioritet" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "Startprioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Gjer klar databasen" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Feil i inndata" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Inndataa må vera i samsvar med %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Installer RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Internfeil" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Internfeil: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ugyldig %1: «%2» er ikkje ei gyldig e-postadresse" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Ugyldig %1: må vera eit tal" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Ugyldig gruppetype" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Ugyldige data" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Ugyldig objekt" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Ugyldig eigarobjekt" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Ugyldig mønster: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Ugyldig kø" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Ugyldig løyve" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ugyldig løyve. Klarte ikkje kanonisera løyvet «%1»." #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Ugyldig syntaks for e-postadresse" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Ugyldig verdi for %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Ugyldig verdi for fleksifelt" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Ugyldig verdi for status" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Er ikkje kryptert" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Det er svært viktig at brukarar utan utvida løyve ikkje får køyra dette verktøyet." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Det er anbefalt at du opprettar ein vanlig Unix/Linux-brukar med riktig gruppemedlemskap og tilgang til RT for å køyra dette verktøyet." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Du kan bruka fleire kommandolinjeargument:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kursiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "jan." #: NOT FOUND IN SOURCE msgid "January" msgstr "januar" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Vert med i eller forlat gruppa" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "juli" #: NOT FOUND IN SOURCE msgid "July" msgstr "juli" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Storside" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "juni" #: NOT FOUND IN SOURCE msgid "June" msgstr "juni" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Behald «localhost» viss du er usikker. La feltet stå tomt for å kopla til via ein sokkel." #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Språk" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Stor" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Siste" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Siste kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Sist kontakta" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Sist oppdatert" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Sist oppdatert av" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Sist oppdatert av" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "SistOppdatert" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "SistOppdatertAv" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "SistOppdatertRelativ" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "La feltet stå tomt for å senda til e-postadressa di (%1)." #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "La feltet stå tomt for å bruka standardverdien for databasen" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "La feltet stå tomt for å bruka standard DBA-brukarnamn for databasetypen" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Igjen" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Forklaring" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Talet på teikn. Bruk «0» for å vise heile meldingane, uavhengig av meldingslengda." #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Gje brukaren tilgang til systemet" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Gje brukaren utvida løyve" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Start" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Lenkje" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Lenkja finst alt" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Klarte ikkje oppretta lenkja" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Fann ikkje lenkja" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Kopla saman sak %1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Lenk verdiane til" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Kopla" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "KoplaFrå" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "KoplaTil" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Koplar. Nekta tilgang." #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Koplingar" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Opna" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Opna lagra søk:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "OpnaLagraSøk" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Lasta %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Lasta opphavleg lagra søk «%1»" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Lasta perl-modular" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Lasta lagra søk: %1" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Dato og klokkeslett" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LokaltDatoKlokkeslett" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Plassering" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Logga inn som %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Logga ut" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Logg inn" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "LogoAltTekst" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Logg ut" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Ikkje typesamsvar ved feltoppslag" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "E-post" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Hovudkoplingstype" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Vel eigar" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Vel status" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Vel tidsfrist" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Vel løysingsdato" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Vel startdato" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Vel startdato" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Vel dato varsla" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Vel prioritet" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Vel kø" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Vel emne" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Gjer gruppa synleg for brukaren" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Rediger brukardefinerte felt" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Rediger grupper og gruppemedlemskap" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Rediger eigenskapar og innstillingar for alle køane" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Rediger køar og eigenskapar til køar" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Rediger lagra diagram" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Rediger brukarar og passord" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "mars" #: NOT FOUND IN SOURCE msgid "March" msgstr "mars" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Merkte alle meldingane som lesne" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Malrekkjefølgje for Mason" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "MaksVerdiar" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Makslengd for direktevising av meldingar" #: lib/RT/Date.pm:95 msgid "May" msgstr "mai" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Medlem" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Medlemmen %1 lagt til" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Medlemmen %1 sletta" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Medlem lagt til: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Medlem sletta" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Medlem ikkje sletta" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Medlem av" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "MedlemAv" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Medlemmer" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Lagt til som medlem i %1" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Fjerna som medlem av %1" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Medlemskap" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Medlemskap til brukaren %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Fletting utførd" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Feil ved fletting. Klarte ikkje lagra «EffectiveId»." #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Feil ved fletting. Klarte ikkje lagra status." #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Flett inn i" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Fletta inn i %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Melding" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Meldingsteksten vert ikkje vist, sidan avsendaren sende han som eit vedlegg." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Meldingsteksten vert ikkje vist, fordi han ikkje er reintekst." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Meldingsteksten vert ikkje vist, fordi han er for stor." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Høgd på meldingsfelt" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Breidd på meldingsfelt" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Klarte ikkje lagra meldinga" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Melding for brukar" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Melding registrert" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Meldingar i denne saka vert ikkje sende til …" #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minste passordlengd" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "minutt" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Manglar primærnøkkel? %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "TelefonMobil" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Endra tilgangsliste" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Endra fleksifelt som gjeld %1 for alle %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Endra fleksifelt som gjeld for alle %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Rediger gruppeløyve" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Rediger medlemmer" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Rediger løyve" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Rediger utløysarmalar for denne køen" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Rediger utløysarar for denne køen" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Rediger brukarløyve" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Endra fleksifelt for køen %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Endra utløysar for køen %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Endra utløysar som gjeld alle køane" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Endra objekt knytt til %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Endra fleksifeltverdiar" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Endra utforming for gruppa" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Endra datoar for %1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Endra datoar for sak %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Endra globale fleksifelt" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Endra globale gruppeløyve" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Endra globale gruppeløyve" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Endra globale brukarløyve" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Endra globale brukarløyve" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Endra gruppemetadata eller slett gruppa" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Endra gruppeløyve for fleksifeltet %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Endra gruppeløyve for gruppa %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Endra gruppeløyve for køen %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Endra medlemsliste for gruppa" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Endra sin eigen RT-konto" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Endra personar knytte til køen %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Endra personar knytte til sak %1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Endra personlege utformingar" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Endra utløysarar for køen %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Endra utløysarar som gjeld alle køane" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Endra systemutformingar" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Endra malen %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Endra malar som gjeld alle køane" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Endra utforminga %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Set opp standardskjermbiletet («RT-oversikt»)" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Endra gruppa %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Endra spørjingar til utforminga %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Endra køovervakarar" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Endra abonnement til utforminga %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Endra brukaren %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Endra sak %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Endra sak %1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Endra saker" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Endra brukarløyve for fleksifeltet %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Endra brukarløyve for gruppa %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Endra brukarløyve for køen %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "EndraACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "EndraFleksifelt" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "EndraUtforming" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "EndraGruppeutforming" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "EndreEigaUtforming" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "EndraEigeMedlemskap" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "EndraKøovervakarar" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "EndraUtløysarar" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "EndraSegSjølv" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "EndraMal" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "EndraSak" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "må." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "måndag" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "måndag til fredag" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Meir" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Meir om %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Flytt ned" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Flytt opp" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Fleire" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Må oppgje «Name»-attributt" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Mine saker med status «%1»" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Oppgåveoversikt" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mine godkjenningar" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mine utformingar" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mine lagra søk" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "LINJESKIFT" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Namn" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "Namn og e-postadresse" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Namnet er alt i bruk" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Utval og plassering av panel" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Aldri" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Ny" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nye koplingar" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nytt passord" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Ny godkjenningsførespurnad" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nytt søk" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Nye og opne saker for %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Nytt fleksifelt" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Ny gruppe" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nye meldingar" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nytt passord" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Melding om nytt passord send" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Ny påminning:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nye løyve" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Ny utløysar" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Ny mal" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Ny sak" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Den nye saka finst ikkje" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Ny brukar kalla" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nye overvakarar" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Neste" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Kallenamn" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Kallenamn" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Nei" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Ingen %1 lasta" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ingen klasse definert" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Inkje fleksifelt" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Inkje fleksifelt definert" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Inga gruppe definert" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Inga spørjing" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ingen kø definert" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Fann ingen RT-brukar. Ta kontakt med RT-ansvarleg.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Manglar emne" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Ingen mal" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Inga handling" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Ingen kolonne vald" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Ingen kommentar skriven om brukaren" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Ingen utformingar." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Inga skildring av %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Ingen detaljar" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Inga gruppe vald" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Fann ingen grupper i samsvar med søkjekriteria" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Manglar eigna krypteringsnøkkel" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Ingen nøklar for adressa" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Inga melding lagd ved" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Namn ikkje oppgjeve" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Kryptering unødvendig" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Passord ikkje vald" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Manglar løyve til å oppretta køar" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Manglar løyve til å oppretta saker i køen «%1»" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Manglar løyve til å visa saka" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Manglar løyve til å køyra globale søk" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Manglar løyve til å endra innstillingane" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Manglar tilgang til å sjå oppdatering av saka" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Inkje primærobjekt oppgjeve" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Ingen primærobjekt oppgjevne." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Manglar privatnøkkel" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Fann ingen køar i samsvar med søkjekriteria." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Ingen løyve oppgjevne" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Fann ingen løyve" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Ingen løyve tildelt." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Manglar søk å bruka" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Utan emne" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Nøkkelen manglar, eller er ikkje eigna til signering" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Fann ingen saker." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Transaksjonstype ikkje oppgjeven" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ingen eigna nøklar" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Fann ingen brukarar i samsvar med søkjeteksten." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Ingen verdi sendt til _Set.\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Ingen" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Ingen" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Feltet finst ikkje?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "ikkje definert" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Fann ikkje" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ikkje innlogga" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "ikkje definert" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Ikkje implementert enno." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Merknader" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Klarte ikkje senda melding" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Varsla admin-kopimottakarane" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Varsla admin-kopimottakarane som kommentar" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Varsla kopimottakarane" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Varsla kopimottakarane som kommentar" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Varsla andre mottakarar" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Varsla andre mottakarar som kommentar" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Varsla sakeigaren" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Varsla eigaren som kommentar" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Varsla sakeigaren om avvist sak" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Varsla sakeigaren at saka er godkjend, og vert handsama" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Varsla sakeigaren at saka er godkjend av nokon eller alle godkjennarane" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Varsla sakeigaren, innmeldarane, kopimottakarane og admin-kopimottakarane" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Varsla sakeigaren, innmeldarane, kopimottakarane og admin-kopimottakarane som kommentar" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Varsla sakeigaren og admin-kopimottakarne om nye førespurnader som krev godkjenninga deira" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Varsla innmeldaren når saka er godkjend av alle godkjennarane" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Varsla innmeldaren når saka er godkjend av minst éin godkjennar" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Varsla innmeldarane" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Varsla innmeldarane og kopimottakarane" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Varsla innmeldarane og kopimottakarane som kommentar" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Opplys om ulesne meldingar" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "nov." #: NOT FOUND IN SOURCE msgid "November" msgstr "november" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Talet på søkjetreff" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ELLER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Klarte ikkje oppretta objektet" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Klarte ikkje sletta objektet" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekt oppretta" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekt sletta" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objekt av typen %1 kan ikkje innehalda fleksifelt" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Ikkje samsvar i objekttype" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektlista er tom" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "okt." #: NOT FOUND IN SOURCE msgid "October" msgstr "oktober" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Fråkopla" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Fråkopla-oppdateringar" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Fråkopla-opplasting" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "%1 skreiv %2:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Ved lukking" #: etc/initialdata:143 msgid "On Comment" msgstr "Ved kommentar" # Skal vera komma her. #: etc/initialdata:115 msgid "On Correspond" msgstr "Ved svar" #: etc/initialdata:104 msgid "On Create" msgstr "Ved oppretting" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Ved eigarskifte" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Ved prioritetsendring" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Ved købyte" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Ved avvising" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Ved gjenopning" #: etc/initialdata:178 msgid "On Resolve" msgstr "Ved løysing" #: etc/initialdata:149 msgid "On Status Change" msgstr "Ved statusendring" #: etc/initialdata:109 msgid "On Transaction" msgstr "Ved transaksjon" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Eingangsblindkopi" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Eingangskopi" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Vis berre godkjenningar for saker oppretta etter %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Vis berre godkjenningar for saker oppretta før %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Vis berre fleksifelt for:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Opne saker" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Opna adresse" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Opne saka" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Opne saker" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Opna saker ved svar" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Val" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Val" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sorter etter" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organisasjon" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Opphavleg sak: %1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Utgåande e-post om ein kommentar registrert" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Utgåande e-post registrert" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Utgåande e-post" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Flytt prioriteten over tid mot" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Eigne saker" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "EigaSak" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Eigar" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Eigaren «%1» har ikkje løyve til å eiga denne saka." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Eigar bytta frå %1 til %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Klarte ikkje registrera eigar" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Eigar vart tvangsendra frå %1 til %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Eigarnamn" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Side" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Side 1 av 2" #: share/html/dhandler:48 msgid "Page not found" msgstr "Fann ikkje sida" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Personsøkjar" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "TelefonPersonsøkjar" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Oversaker" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Passord" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Passordhint" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Passord endra" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Passordet er ikkje registrert" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Passordet må vera minst %1 teikn langt" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Passordet er registrert" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Passord: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Passord: nekta tilgang" #: etc/initialdata:463 msgid "PasswordChange" msgstr "PassordByte" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Dei to passorda er ikkje like." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Dei to passorda er ikkje like. Passordet vart derfor ikkje endra." #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Adresse til «sendmail»" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Personar" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Køyr ei brukardefinert handling" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Include-adresser for Perl (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl-oppsett" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Søkjerekkjefølgje for Perl-bibliotek" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Nekta tilgang" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Nekta tilgang" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Personlege utformingar" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Personlege grupper" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefonnummer" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Kontroller adressa, og prøv så på nytt." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Skriv inn ditt noverande passord rett" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Skriv inn ditt noverande passord" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Moglege gøymde søk" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Innstillingar" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Innstillingar %1 for brukaren %2" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Innstillingar lagra for %1" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Innstillingar lagra for brukaren %1" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Innstillingar lagra" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Føretrekt nøkkel: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Føretrekt nøkkel" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Førebuing klargjord" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Førre" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Førre" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Fann ikkje primærobjektet %1" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Send meldingssamandraga til standard ut i staden for via e-post. Disse vert ikkje merkte som sende." #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Vis denne meldinga" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioritet" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioriteten startar på" # Omgrepet seier om ei utforming er privat eller offentleg (og ordet får eit kolon etter seg). Dette er derfor ei rett «omsetting». #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Offentleg" # Omgrepet seier om ei utforming er privat eller offentleg. Dette er derfor ei rett «omsetting». #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Offentleg:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Privatnøkkel" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Med utvida løyve" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Utvida løyve: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Brukarar med utvida løyve" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Køyrer utan transaksjon. Det kan oppstå feil for nokre vilkår og handlingar. Vurder å bruka argumentet «--transaction»." #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseduogruppe for intern bruk" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Offentlegnøkkelen «0x%1» er nødvendig for stadfesting av signaturen" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Spørjingar" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Spørjing" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Avansert søk" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Spørjing:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Kø" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Fann ikkje køen %1" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Kønamn" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Køen finst frå før" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Klarte ikkje oppretta køen" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Klarte ikkje lasta køen." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Kø oppretta" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Kø deaktivert" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Kø aktivert" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Kø-ID" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Fann ikkje køen" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Køløyve" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Kønøkkel" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "KøAdminKopimottakar" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "KøKopimottakar" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "Kønamn" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "KøOvervakar" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Køar" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Køar eg administrerer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Køar eg er administrativ kopimottakar for" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Kjappsøk" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Kjapp saksoppretting" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC 2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC 2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 for %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT-administrering" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "E-post til RT-administrator" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "RT-oppsett" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT-oppsett" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT-feil" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT-sjølvbetening" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT-storleik" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT-variablar" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT-oversikt" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT-oversikt for brukaren %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT kan kommunisera med brukarane om nye saker, og om svar på saker. Oppgje kor sendmail (eller eit sendmail-kompatibelt program, som det som følgjer med Postfix) er installert. RT må òg veta kven som skal kontaktast når nokon sender ein ugyldig e-post. Dette kan ikkje vera ei adresse som fører til RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan visa innhald frå ei anna netteneste i dette fleksifeltet." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan gjera feltverdiane til fleksifeltet til lenkjer til ei nettside." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT-kjernevariablar" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "Klarte ikkje lagra økta" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT for %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT er eit profesjonelt sakshandsamingssystem som lèt deg smart og enkelt handtera oppgåver, problem, førespurnader, feilinnmeldingar og andre ting som krev handling." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT vert brukt av Fortune 100-bedrifter, enkeltmannsføretak, offentlege verksemder, utdanningsinstitusjonar, sjukehus, ideelle organisasjonar, bibliotek, fri programvare-prosjekt og mange andre typar verksemder, på alle kontinenta (ja, òg i Antarktika!)." #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT vil kopla til databasen som denne brukaren. Han vert automatisk oppretta." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vil laga brukaren «root», og registrera dette som passord." #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "Alle andre søkjeord vert brukte til søk i emnefeltet til sakene." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT vil automatisk byta ut %1 og %2 med saksnummeret og verdien til fleksifeltet." #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT vil automatisk byta ut __id__ og __CustomField__ med saksnummeret og verdien til fleksifeltet." #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT vil bruka denne koden for å identifisera installasjonen, og sjå etter han i emnefeltet i e-postmeldingar for å finna ut kva sak meldinga gjeld. Du bør setja verdien lik nettdomenet ditt. Eksempel: eksempel.no" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT kan bruka ulike databaser, og både MySQL, PostgreSQL, Oracle og SQLite er støtta." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT / Admin / Rediger gruppa %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "«RTAddressRegexp»-valet i oppsettet er ikkje i samsvar med «%1»" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Fullt namn" # Blir bare brukt som overskrift i en tabell, og kan derfor ha mellomrom. #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "Fullt namn" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Mottakar" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Lagra alle oppdateringane" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekursivt medlem" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Referanse frå %1 lagt til" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Referanse frå %1 sletta" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Referanse til %1 lagt til" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Referanse til %1 sletta" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Referert til av" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "ReferertTilAv" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Refererer til" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "ReferererTil" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Oppdatering" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Oppdater heimesida kvart 10. minutt" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Oppdater heimesida kvart 120. minutt" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Oppdater heimesida kvart 2. minutt" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Oppdater heimesida kvart 20. minutt" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Oppdater heimesida kvart 5. minutt" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Oppdater heimesida kvart 60. minutt" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Oppdater søkjeresultata kvart 10. minutt" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Oppdater søkjeresultata kvart 120. minutt" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Oppdater søkjeresultata kvart 2. minutt" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Oppdater søkjeresultata kvart 20. minutt" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Oppdater søkjeresultata kvart 5. minutt" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Oppdater søkjeresultata kvart 60. minutt" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Oppdater sida kvart %1. minutt" #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Påminninga «%1» lagd til" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Påminninga «%1» fullførd" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Påminninga «%1» gjenopna" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Påminningssak %1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Påminningar" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Påminningar for sak %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Fjern admin-kopimottakar" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Fjern bokmerke" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Fjern kopimottakar" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Fjern innmeldar" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Svar" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Svaradresse" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Svar til innmeldarar" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Svar på sak" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "SvarPåSak" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Rapportar" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Innmeldar" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "Innmeldargruppe" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Innmeldar" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Førespurnader må handsamast innan" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Obligatorisk parameter «%1» ikkje oppgjeven" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Tilbakestill" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Generer hemmeleg brukarkode" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Tilbakestill til standard" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Heime" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Løys" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Løys sak %1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Løyst" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Løyst av eigaren" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Løyst i perioden" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Løyste saker i perioden – gruppert etter eigar" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Løyste saker – gruppert etter eigar" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "LøystRelativ" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Svar" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultat" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Gå tilbake til saka" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Skriv passordet på nytt" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Tilbakestill" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Løyve delegert" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Løyve tildelt" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Løyve lasta" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Løyvet kunne ikkje trekkjast tilbake" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Fann ikkje løyve" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Løyve ikkje lasta." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Løyve trekt tilbake" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Løyve kunne ikkje tildelast for %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Roller" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Rader" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Rader per boks" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rader per side" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite er ein database som ikkje treng databasetenar eller oppsett. Han er anbefalt for testing, demonstrasjonar og utvikling, men bør ikkje brukast i produksjonsmiljø." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "la." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "laurdag" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Lagra" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Lagra endringar" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Lagra innstillingane" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Lagra som ny" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Lagra %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Fann ikkje det lagra søket %1" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Lagra diagram" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Lagra søk" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Utløysar %1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Utløysar oppretta" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Utløysarfelt" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Utløysar sletta" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Utløysarar" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Utløysarar og mottakarar" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Utløysarar som gjeld alle køane" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Søk" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Søkjeinnstillingar" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Søk etter godkjenningar" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Søk etter saker" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Søk etter saker basert på saksnummer, eller brukarnamn/e-postadresse til eigar eller innmeldar." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Søkjeval" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Søkjeresultat gruppert etter %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Oppdater søkjeresultata" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Det kan ta lang tid å søkja gjennom heile sakstekstane, men viss du har behov for det, kan du bruka søkjeuttrykket fulltext:søkjeord til å søkja etter enkeltord i tekst, kommentarar og svar." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Hemmeleg brukarkode" #: bin/rt-crontool:350 msgid "Security:" msgstr "Tryggleik:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Sjå òg:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Sjå fleksifeltverdiar" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Sjå fleksifelt" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Sjå utgåande e-postmeldingar og mottakerane" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Sjå private sakskommentarar" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Sjå sakssamandrag" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "SjåFleksifelt" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "SjåUtforming" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "SjåGruppe" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "SjåGruppeutforming" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "SjåEigneUtformingar" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "SjåKø" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Vel" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Vel databasetype" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Vel fleksifelt" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Vel gruppe" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Vel kø" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Vel kø for den nye saka" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Vel brukar" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vel eit anna språk" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Vel fleksifelt for alle køane" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Vel fleksifelt for alle brukargruppene" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Vel fleksifelt for alle brukarane" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Vel fleksifelt for saker i alle køane" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Vel fleksifelt for transaksjonar på saker i alle køane" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Vel gruppe" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Vel fleire verdiar" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Vel enkeltverdi" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Vel køane som skal visast på «RT-oversikt»-sida" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Vel utløysar" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Vel mal" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Vel opptil %1 verdiar" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valde fleksifelt" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Den valde nøkkelen er ikkje tiltrudd, eller finst ikkje lenger" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Valde objekt" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Utval endra. Du bør lagra endringane." #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "E-posten vart send" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Send e-post til eigar og overvakarar" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Send e-post til eigar og overvakarar som kommentar" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Send e-post til innmeldarar og kopimottakarar" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Send e-post til innmeldarar og kopimottakarar som kommentar" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Send melding til innmeldarane" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Send e-post til eksplisitt oppgjevne kopi- og blindkopimottakarar" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Send e-post til kopimottakarane" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Send e-post til kopimottakarane som kommentar" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Send e-post til dei administrative kopimottakarane" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Send e-post til dei administrative kopimottakarane som kommentar" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Send e-post til eigaren" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "sep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "september" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Innstillingar" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "Korte brukarnamn" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "Skal RT senda deg e-post med dine eigne saksoppdateringar?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Vis" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Vis kolonnar" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Vis søkjeresultat" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Vis sakseigenskapar på nivå %1" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Vis godkjende førespurnader" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Vis også" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Vis detaljar" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Vis avviste førespurnader" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Vis detaljar" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Vis koplingsskildringar" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Vis eldste oppdatering først" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Vis ventande førespurnader" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Vis førespurnader som ventar på andre godkjenningar" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "VisACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "VisGodkjenningsfane" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "VisOppsettfane" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "VisUtgåandeEpost" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "VisLagraSøk" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "VisUtløysarar" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "VisMal" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "VisSak" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "VisSakskommentarar" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Makulering" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Makulatoren treng ei mappe å lagra databasedumpar i. Sjå til at mappa %1 finst, og at vevtenaren har skrivetilgang til ho." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Makulatoren treng ei mappe å lagra databasedumpar i. Sjå til at mappa %1 finst, og at vevtenaren har skrivetilgang til ho." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Sidestolpe" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Signer" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Signer som standard" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Registrer som innmeldar eller kopimottakar for sak eller kø" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Registrer som admin-kopimottakar for sak eller kø" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Signatur" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Signering deaktivert" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Signering aktivert" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Enkelt søk" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Enkel" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Nettstadnamn" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Storleik" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Hopp over menyen" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Hoppar over deaktivert brukar" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Liten" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Merk at nokre nettlesarar berre kan lasta inn innhald frå same domene som RT køyrer på." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Noko er gale. Ta kontakt med systemadministratoren." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sorter" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortering" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Kjelde" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Vel om denne skal køyrast dagleg eller vekentleg." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Rekneark" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Nivå" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Starta" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "StartaRelativ" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Startdato" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "StartdatoRelativ" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Delstat/region" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Status" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Statusendring" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Status endra frå %1 til %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Stel" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Stel saker" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "StelaSak" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Steg %1 av %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Stolen frå %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Stolen frå %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Emne" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Emnekode" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Emnet endra til %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "Emnekode" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Emnekode endra til %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Send inn" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Abonner" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Abonner på utforminga %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Abonner på utformingar" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "AbonnerPåUtforming" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Abonnerer på utforminga «%1»" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Abonnement" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Klarte ikkje starta abonnement: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Data dekryptert" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Data kryptert" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "su." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "sundag" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "Superbrukar" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Stoppa" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Systemoppsett" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Systemutformingar" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemverdi" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Systemfeil" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Systemfeil: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systemverktøy" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Systemfeil. Løyvet vart ikkje delegert." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Systemfeil. Løyvet vart ikkje tildelt." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Systemgrupper" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Systemløyve" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "Systemrollegruppe for intern bruk" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Ta" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Ta saker" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "TaSak" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Teken" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Oppgje kor databasen som RT skal bruka er plassert" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Mal" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Mal %1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Mal %1 vart sletta" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Fann ikkje malen «%1»" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Malen er tom" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Mal er eit obligatorisk argument" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Mal tolka" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Feil ved maltolking" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Malar" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstfila vert ikkje vist, då denne visinga er slått av i innstillingane." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Verdien ble ikke endret" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Dette er ikkje ein gyldig verdi for fleksifeltet" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Dette er den gamle verdien" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Det primærobjektet har alltid dette løyvet" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Det primærobjektet har alt ein %1 for denne køen" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Det primærobjektet har alt ein %1 for denne saka" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Det primærobjektet er ikkje ein %1 for denne køen" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Det primærobjektet er ikkje ein %1 for denne saka" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Køen finst ikkje" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Saka har uløyste avhengnader" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Brukaren eig alt saka" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Brukaren finst ikkje" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Brukaren har alt utvida løyve" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Brukaren har alt berre enkle løyve" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Brukaren har no utvida løyve" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Brukaren har no berre enkle løyve" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Brukaren kan ikkje eiga saker i denne køen" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Dette er ikkje ein numerisk ID" # «Detaljer» er bedre oversettelse enn «Grunnleggende» o.l. i denne sammenhengen. #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Detaljar" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Kopimottakar til ei sak" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Databasepassord til DBA" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Administrativ kopimottakar for ei sak" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Domenenamnet til databasetenaren (eksempel: «db.eksempel.no»)" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Denne kommandoen finn alle aktive saker i køen «general», og set prioriteten til 99 viss dei ikkje har vortne rørde dei siste 4 timane:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Desse spørjingane er sletta, og vert fjerna frå utforminga når panelet vert oppdatert" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Desse spørjingane er kanskje ikkje synlege for alle brukarane som kan sjå utforminga" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Nøkkelen er deaktivert" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Nøkkelen er tilbakekalla" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Nøkkelen er utgått" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Nøkkelen er fullstendig tiltrudd" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Nøkkelen er ultimat tiltrudd" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Den nye verdien er lagra" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Eigaren av ei sak" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Fann ikkje sida du bad om" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Innmeldar av ei sak" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Innstillingane du har valt er lagra i %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Systemet kan ikkje signera utgåande e-postar. Dette tyder vanlegvis på at passfrasen er feil, eller at GPG Agent ikkje køyrer. Meld frå til systemadministratoren med ein gang. Problemadressene er:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Det finst fleire nøklar eigna for kryptering." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Det finst ulesne meldingar i denne saka." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Nøkkelen er marginalt tiltrudd" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Det finst ingen nøklar eigna for kryptering." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Det finst éin eigna nøkkel, men tiltru-nivået er ikkje definert for denne nøkkelen." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Desse kommentarane er ikkje synlege for brukaren" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Desse innstillingane dekkjer det nødvendige for å setja RT i drift. Du må velja eit namn på RT-installasjonen, og oppgje domenenamnet til maskina. Du må òg velja eit passord for standard administrativ brukar." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Fleksifeltet høyrer ikkje til under dette objektet" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Denne funksjonen er berre tilgjengeleg for systemadministratorar" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Grunnen kan vera at mappa «%1» ikkje er skrivbar, eller at ein databasetabell manglar eller er øydelagd." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Denne meldinga vert send til …" #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dette verktøyet lèt brukaren køyra Perl-modular frå RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Denne transaksjonen ser ikkje ut til å ha noko innhald" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Dei %1 høgast prioriterte sakene til brukaren" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "to." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "torsdag" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Sak" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Sak %1 storoppdatering: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Koplingsdiagram for sak %1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Sak %1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Sak %1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Sak %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Sak %1 oppretta i køen «%2»" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Sak %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Fleksifelt for sak" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Saksoppdatering %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Sak løyst" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Sak-søk" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Sakstransaksjonar" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Saksinnhald" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Innhaldstype i sak" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Klarte ikkje oppretta sak, grunna ein intern feil" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Klarte ikkje lasta inn sak" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Saksvising" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Saksinformasjon" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Saksstatus endra" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "TicketSQL-søkjemodul" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Saker" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Saker %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Sak %1 av %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Saker oppretta etter" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Saker oppretta før" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Saker løyste etter" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Saker løyste før" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Saker som er avhengige av denne godkjenninga:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Estimert tidsbruk" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Tid att" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tid arbeida" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tid brukt til å generera sida" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "TidEstimert" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "TidAtt" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "TidArbeida" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Tidssone" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Tittel" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Til" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Ta kontakt med %1 for førespurnader om
opplæring, brukarstøtte, systemtilpassing eller lisensvilkår." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Varsla" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "VarslaRelativ" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Verktøy" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Totalt" #: etc/initialdata:249 msgid "Transaction" msgstr "Transaksjon" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transaksjon %1 sletta" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transaksjon oppretta" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Fleksifelt for transaksjon" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Klarte ikkje utføra «Transaction->Create», sidan du ikkje oppgav objekttype og ID" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "Transaksjonsdato" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transaksjonar kan ikkje forandrast" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Tiltru" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "ty." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "tysdag" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Type" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Type endra frå «%1» til «%2»" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Klarte ikkje fastsetja type eller ID til objekt" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Klarte ikkje abonnera på utforminga %1: nekta tilgang" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Ikkje implementert" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix-brukarnamn" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Ukjend (ingen tiltruverdi tildelt)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Ukjend (verdien er ny for dette systemet)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Ukjend teiknkoding: %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Ukjent felt: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Uavgrensa" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Uavgrensa" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Namnlaust søk" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Utan utvida løyve" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ikkje-valde fleksifelt" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Ikkje-valde objekt" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Fjern privatnøkkel" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Ikkje teken" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Oppdater" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Oppdater diagram" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Oppdater sak" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Oppdateringstype" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Oppdater format og søk" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Oppdater fleire saker" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Oppdatering ikkje loggførd." #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Oppdater sak" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Oppdater sak %1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Oppdater sak %1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Oppdateringstypen var verken svar eller kommentar." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "Oppdateringsstatus" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Oppdatert" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Oppdatert lagra søk: %1" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Last opp" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Last opp fleire filer" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Last opp fleire bilete" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Last opp enkeltfil" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Last opp enkeltbilete" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Last opp opptil %1 filer" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Last opp opptil %1 bilete" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Last opp endringar" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Bruk: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Bruk SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Bruk CSS-reglar for å visa tekst i ei fastbreiddeskrift, med formatering bevart, men med linjeskift om nødvendig. Dette fungerer ikkje bra i Internet Explorer 6, og viss du brukar denne nettlesaren, bør du derfor bruka det førre valet." #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Systemverdi (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Bruk andre administrative verktøy for RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Systemverdi (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Bruk dette for å verna reintekstformatet." #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Brukar" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Fann ikkje brukaren «%1»." #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Brukar (oppretta – utgår)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Tilpassa" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Brukardefinerte vilkår og handlingar" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Brukarløyve" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Brukaren bad om ein ukjend oppdateringstype for fleksifeltet %1 for %2 objekt %3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Klarte ikkje oppretta brukaren: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Brukar oppretta" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Brukardefinerte grupper" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Brukar deaktivert" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Brukar aktivert" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Brukaren manglar e-postadresse" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Brukar lasta" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "GnuPG-nøklar til brukar" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Brukardefinerte grupper" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Brukarnamn" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Format på brukarnamn" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Brukarar" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Brukarar i samsvar med søkjekriterium" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Brukar transaksjon %1 …" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Gyldig spørjing" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Formatkontroll" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Verdi" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Verdiar" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Variabel" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Forskjellige RT-rapportar" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Versjon" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Vis utformingar for gruppa" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Vis personlege utformingar" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Vis systemutformingar" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "Høgd på visuelt skrivefelt" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "Visuelt skrivefelt" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Åtvaringa: Meldinga er ikkje signert." #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Åtvaring: Du har ikkje noka lagra e-postadresse, og vil ikkje få utforminga før du skriv inn e-postadressa din." #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Overvak" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "OvervakSomAdminkopimottakar" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Overvakar" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "Overvakargruppe" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Overvakarar" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Fann databasen, og kan kopla til som databaseadministrator. Trykk «Tilpass detaljar» for å halda fram med å setje opp RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Du må oppgje namnet og plasseringa til databasen, samt brukarnamnet og passordet til brukaren RT skal bruka. Du må oppgje brukarnamn og passord til ein brukar med administratortilgang, slik at RT kan oppretta databasen og brukaren for deg automatisk. I steg 6 av installasjonen vert denne informasjonen brukt til å oppretta og klargjera RT-databasen." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Port" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "on." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "onsdag" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Vekentleg samandrag" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Velkommen til RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Gjort i dag" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Kva er RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Kor skal e-postmeldingar som RT ikkje kan handtera vidaresendast?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Felta «From» og «Reply-To» i meldingshovudet til e-postane vert automatisk fylte ut, slik at brukaren berre treng å bruka svarfunksjonen i e-postprogrammet for å leggja meir informasjon til saka. Systemet kan automatisk bruka forskjellige adresser for svar og for kommentarar, og forskjellige adresser for ulike køar. Adressene må setjast opp til å bruka programmet rt-mailgate." #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Når ei sak vert oppretta" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Varsla eigaren og admin-kopimottakaren når det vert oppretta ei ny godkjenningssak" #: etc/initialdata:110 msgid "When anything happens" msgstr "Når noko skjer" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Det kan oppstå ein liten pause når du trykkjer «Kontroller databasetilgang», sidan RT prøver å kopla til databasen." #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Når ei sak vert løyst" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Når ei sak vert avvist" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Når ei sak vert gjenopna" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Når ei sak vert løyst" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Når ei sak får ny eigar" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Når ei sak får ny prioritet" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Når ei sak vert flytta til ein ny kø" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Når ei sak får ny status" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Når eit brukardefinert vilkår vert utløyst" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Når ein ny kommentar vert lagt til" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Når eit svar vert lagt til" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Adressa til «sendmail»-programfila." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Slett" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Arbeid" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "TelefonArbeid" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Arbeida" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Ja" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Du eig alt denne saka" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Du er i ferd med å kryptera utgåande meldingar, men det er feil med offentlegnøklane til mottakarane. Du må ordna opp i nøkkelproblema, slå av sending av meldingar til mottakarane med nøkkelproblem, eller slå av meldingskryptering." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Du er i ferd med å kryptera utgåande meldingar, men det er feil med offentlegnøkkelen til mottakaren. Du må ordna opp i nøkkelproblema, slå av sending av meldingar til mottakaren med nøkkelproblem, eller slå av meldingskryptering." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Du er ikkje ein godkjend brukar" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Du kan hoppa til den første ulesne meldinga, eller hoppa til den første ulesne meldinga og merkja alle meldingane som lesne." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kan òg redigera søket" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Du kan ikkje velja passord" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Du kan berre velja eigar på saker som du eig, eller som manglar eigar" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Du kan berre ta saker som manglar eigar" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Du har ikkje superbrukar-løyve." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Du fann %1 saker i køen %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Du er no logga ut av RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Du har ikkje tilgang til å oppretta saker i køen." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Du har ikkje tilgang til å oppretta saker i køen." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Du må oppgje eit administrativt passord" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Du vert teken til innloggingssida. Du kan då logga inn med brukarnamnet %1 og passordet du valde tidlegare." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Du vert teken til innloggingssida. Du kan då logga inn med brukarnamnet root og passordet du valde tidlegare." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Du bør velja databasesystemet som du eller systemanadministratoren kjenner best." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Du ser denne teksten fordi du starta ein RT-tenar utan ein fungerande database. Mest sannsynleg er dette første gong du køyrer RT. Trykk Start for å opna ein vegvisar som hjelper deg å sette opp RT-tenaren og tilhøyrande database." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Du ser denne teksten fordi du starta ein RT-tenar utan ein fungerande database. Mest sannsynleg er dette første gong du køyrer RT. Trykk \"%1\" for å opna ein vegvisar som hjelper deg å sette opp RT-tenaren og tilhøyrande database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Velkommen tilbake" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Ditt noverande passord" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Passordet er ikkje registrert" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Feil brukarnamn eller passord" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Postnummer" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Ned]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Opp]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ingen]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "Legg 
-taggar rundt reintekst-vedlegg"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "etter"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "gjør det mogleg å lagra søk"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "gjer det mogleg å opna lagra søk"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "som gjeven til %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "Stolpediagram"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "før"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "botn til topp"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "Kryss av her for å bruka fleksifeltet på alle objekta."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "Kryss av her for å fjerna fleksifeltet frå alle objekta, slik at du kan bruka det på einskildobjekt."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "kryss av for å leggja til"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "trykk for å merkja eller fjerna merkinga for alle objekta"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "lukka"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "konsis"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "Globalt oppsett"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "fleksifeltet «%1»"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "dagleg"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "dagleg klokka %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dagar"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "sletta"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "Vis reintekst-vedlegg med formatering og linjeskift"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "inneheld ikkje"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "last ned"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "er lik"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "Feil: kan ikkje flytta ned"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "Feil: kan ikkje flytta til venstre"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "Feil: kan ikkje flytta opp"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "Feil: ingenting å sletta"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "Feil: ingenting å flytta"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "Feil: ingenting å byta mellom"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "kvar"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "tillegget vart køyrd"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "fullstendig"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "er større enn"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "gruppe «%1»"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "timar"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "ID"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "er lik"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "er ulik"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "nøkkel deaktivert"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "nøkkel utgått"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "nøkkel tilbakekalla"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "venstre til høgre"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "er mindre enn"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginalt"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "inneheld"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "Maksdjupn"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "minutt"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minutt"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "månadleg"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "månadleg (dag %1) klokka %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "månader"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "aldri"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "ny"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "nei"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "namnlaus"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "ingen"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "er ulik"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "ingenting"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "objekta vart fjerna"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "på"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "på dag"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "éin"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "open"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "opna/lukk"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "annan …"

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "personleg gruppe «%1» for brukaren «%2»"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "Kakediagram"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "tillegget returnerte ei tom liste"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "kø %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "avvist"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "løyst"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "høgre til venstre"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sekund"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "sjå objektliste nedanfor"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "vis godkjenningsfane"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "vis oppsettfane"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "Lokalt oppsett"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "stoppa"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "samandragsrader"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "system %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "systemgruppa «%1»"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "den kallande komponenten oppgav ikkje korfor"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "standardadressene som skal visast i «From» og «Reply-To»-felta i kommentarmeldingar."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "standardadressene som skal visast i «From» og «Reply-To»-felta i svarmeldingar."

#: NOT FOUND IN SOURCE
msgid "ticket"
msgstr "sak"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "sak %1 %2"

#: NOT FOUND IN SOURCE
msgid "ticket %1"
msgstr "sak %1"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "topp til botn"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "ultimat"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "uskildra gruppe %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "uavgrensa"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "brukar %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "utvida meldingar"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "vekentleg"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "vekentleg (%1) klokka %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "veker"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "kva port vevtenaren skal lytta på (eksempel: 8080)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "med meldingshovud"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "år"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "ja"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/hr.po0000664000175000017500000121072712262650742013755 0ustar  chmrrchmrr# Croatian localization catalog for Request Tracker (RT)
# Created by Nebojsa Tomic, CARNet
# Revised by Josip Rodin, CARNet
# Revised by Valentin Vidic, CARNet
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:42+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (nema javnog ključa!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (neprovjeren!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$prefix %1"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3. %2 %7, %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 dodano"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "prije %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 promijenjeno u %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 obrisano"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 obrisao."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 spremljeno."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 ažurirano"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 s predloškom %3"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 ovaj zahtjev\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) od %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (nepromijenjeno)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (sa ploče %2)"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "%1 - %2 prikazano"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ažuriraj postavku logiranja na ekran"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Argument za prosljeđivanje na %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Izmjene statusa se prikazuju na standardnom izlazu"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Zadajte želite li koristiti 'first', 'last' ili 'all' transakcije"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Zadajte naziv ili identifikator predložaka koje želite koristiti"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Navedi koji će se modul rada koristiti"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Zadajte zarezom odijeljenu listu tipova transakcija koje želite koristiti"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Navedi koji će se modul uvjetovanja koristiti"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Navedi koji će se modul pretraživanja koristiti"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 kontrolne ploče"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "ScripAction %1 učitano"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 dodano kao vrijednost za %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 već postoji i ima RT tablice, ali ne sadrži RT metapodatke. Kasniji korak 'Inicijalizacija baze podataka' može dodati metapodatke u postojeću bazu. Ako je to prihvatljivo, kliknite dolje na 'Osnovno podešavanje' za nastavak RT podešavanja."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 već postoji, ali ne sadrži RT tablice ili metapodatke. Kasniji korak 'Inicijalizacija baze podataka' može dodati tablice i metapodatke u postojeću bazu. Ako je to prihvatljivo, kliknite dolje na 'Osnovno podešavanje' za nastavak RT podešavanja."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 nije pronađen u datoteci iako izgleda da je lokalni objekt"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 izgleda u potpunosti inicijalizirana. Neće biti potrebno dodavati tablice i unositi metapodatke, no ako želite možete nastaviti podešavati RT klikom na 'Osnovno podešavanje' dolje."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 od %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 promijenjeno iz %2 u %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 graf po atributu %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 kopija"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 osnovna konfiguracija"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 nije moguće postaviti na %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 nije moguće promijeniti status u riješeno. RT baza podataka bi mogla biti neujednačena."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 napravljen"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 obrisan"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 deaktivirano"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 ne postoji."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 aktivirano"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 zahtjeva najvišeg prioriteta koje posjedujem"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "%1 meni dodijeljenih zahtjeva najvišeg prioriteta..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "%1 zahtjeva najvišeg prioriteta koje sam zatražio/la..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 je alat za obradu zahtjeva preko vanjskog radnog alata kao što je cron"

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 je alat namijenjen cron pokretanju koji šalje sve odgođene RT obavijesti u obliku sažetka za korisnika."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 je adresa na koju RT prima poruke elektroničke pošte. Dodavanje te adrese kao '%2' bi stvorilo petlju kod dostave poruka"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 više nije %2 u ovoj kategoriji."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 više nije %2 ovog zahtjeva."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 više nije vrijednost za vlastito polje %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 nije valjan ID za kategoriju."

#: NOT FOUND IN SOURCE
msgid "%1 matches"
msgstr "%1 sadrži"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 zadnji nadograđeni članci"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 najnoviji članci"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 najnovijih zahtjeva bez rješavatelja"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objekti"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 ovlasti"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 konfiguracija sjedišta"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 osvježen: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 osvježen: Nema promjena"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 osvježen"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 će riješiti sve članove riješenog grupnog zahtjeva."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1's %2 objekti"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 objekti"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "GnuPG ključevi korisnika %1"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "Trenutna lozinka korisnika %1"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1 kontrolne ploče"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1's pohranjene pretrage"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: privitak nije naveden"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Novi zahtjev u%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,sat)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' nije valjana vrijednost za status"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'Sustav'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'Grupe korisnika'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'Korisnici'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(Označiti za brisanje natuknice)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Označiti za brisanje)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Odaberite za deaktivaciju obavijesti primateljima s popisa)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Odaberite za aktivaciju obavijesti primateljima s popisa)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Unesite identifikatore zahtjeva ili URL-ove odvojene razmakom)"

#: NOT FOUND IN SOURCE
msgid "(If left blank, will default to %1"
msgstr "(Pri izostavljanju, automatski na %1"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Ako nije zadano, koristi se %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Nema vlastitih polja)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Nema članova)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Nema natuknica)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Nema predložaka)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Ništa)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Šalje \"slijepu\" kopiju ove nadopune grupi e-mail adresa odvojenih zarezom. Ne mijenja tko će primati buduće nadopune.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Šalje kopiju ove nadopune grupi administrativnih e-mail adresa odvojenih zarezom. Ovi primatelji će primati buduće nadopune.)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Šalje kopiju ovog ažuriranja na zarezom odijeljenu listu administrativnih adresa elektroničke pošte. Ove adrese će primati i buduća ažuriranja.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Šalje kopiju ovoe nadopune grupi e-mail adresa odvojenih zarezom. Ne mijenja tko će primati buduće nadopune.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Šalje kopiju ove nadopune grupi e-mail adresa odvojenih zarezom. Ovi primatelji će primati buduće nadopune.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Šalje kopiju ovog ažuriranja na zarezom odijeljenu listu adresa elektroničke pošte. Ove adrese će primati i buduća ažuriranja.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Koristite ova polja kad odabirete \"user defined\" za uvjet ili radnju)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Poruka neće biti poslana)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(sve)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(prazno)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(nema sažetka)"

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(nema imena na listi)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(nema imena)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(nema javnog ključa!)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(nema reference)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(nema vrijednosti)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(nema vrijednosti)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(samo jedan zahtjev)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(čeka %quant(%1,drugi zahtjev))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(čeka odobrenje)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(čeka sastavljanje)"

#: NOT FOUND IN SOURCE
msgid "(pending other tickets)"
msgstr "(čeka druge zahtjeve)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(potrebno)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(povjerenje: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(bez naslova)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(nepovjerljiv!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id je nepodržani parametar i ne može se koristiti zajedno sa --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transaction parametar može se biti samo 'first', 'last' ili 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Svi iCal izvori sadrže tajnu značku pomoću koje se autorizirate. Ako se URL nekog od vaših iCal izvora javno objavi, klikom na tipku dolje možete napraviti novu tajnu značku i time deaktivirati sve postojeće iCal izvore." #: etc/initialdata:215 msgid "A blank template" msgstr "Prazan predložak" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Lozinka nije postavljenja, pa se korisnik neće moći prijaviti." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE nije pronađeno" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEs se mogu samo praviti i brisati." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "I" #: NOT FOUND IN SOURCE msgid "Aborting to avoid unintended ticket modifications.\\n" msgstr "Prekid da bi se izbjegle neželjene promjene na zahtjevu.\\n" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "O meni" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Kontrola pristupa" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Radnja" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Radnja %1 nije pronađena" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Radnja '%1' nije pronađena" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Radnja izvršena." #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Radnja izvršena.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Radnje je obavezan argument" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Radnja u pripremi..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Radnje" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "Aktivni zahtjevi" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Dodati" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Dodati AdminCC" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Dodaj zabilješku" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Dodati Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Dodati stupce" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Dodati kriterij" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Dodati više datoteka" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Dodati prijavitelja" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Dodati vrijednost" #: NOT FOUND IN SOURCE msgid "Add a new a global scrip" msgstr "Dodaj novu globalnu natuknicu" #: NOT FOUND IN SOURCE msgid "Add a scrip to this queue" msgstr "Dodaj natuknicu na ovu kategoriju" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Dodaj natuknicu koja će se primijeniti na sve kategorije" #: NOT FOUND IN SOURCE msgid "Add additional criteria" msgstr "Dodaj dodatne kriterije" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Dodaj komentare ili odgovore odabranim zahtjevima" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Dodaj grupu" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Dodati članove" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Dodati nove promatrače" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Dodaj zadane kriterije" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Dodaj zadane kriterije i pretraži" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Dodaj korisnika" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Dodaj vrijednosti" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Dodati, brisati i mijenjati vrijednosti vlastitih polja za objekte" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "Dodaj, ažuriraj i obriši vrijednosti vlastitog polja za objekte" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Dodan glavni parametar kao %1 za ovu kategoriju" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Dodan glavni parametar kao %1 za ovaj zahtjev" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adresa" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Adresa 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adresa 1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adresa 2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin CC" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Admin komentar" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Admin korespondencija" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admin kategorije" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Globalne postavke" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "Admin/Kategorije/Osnovno" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "Administriraj sve osobne grupe" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGroup" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcovi" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminVlastitihPolja" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGrupa" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGrupnogČlanstva" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminVlastitihOsobnihGrupa" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminKategorija" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminKorisnika" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administrativni CC" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Lozinka administratora" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Napredno" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "Napredna pretraga" #: NOT FOUND IN SOURCE msgid "Advanced Search Criteria" msgstr "Kriteriji napredne pretrage" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Napredna pretraga" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "Dob" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Agregator" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Odobrena sve dozvole" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "Sve klase" #: NOT FOUND IN SOURCE msgid "All Custom Fields" msgstr "Sva vlastita polja" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "Sve kontrolne ploče" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Sve kategorije" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "Svi zahtjevi" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "

Svi iCal izvori sadrže tajnu značku pomoću koje se autorizirate. Ako se URL nekog od vaših iCal izvora javno objavi, klikom na tipku dolje možete napraviti novu tajnu značku i time deaktivirati sve postojeće iCal izvore." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Sve kategorije koje zadovoljavaju kriterij pretrage" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Svi zahtjevi" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Već kriptirano" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "I/ili" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Primijenjeno" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Odnosi se" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Odnosi se na sve objekte" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Primijeniti" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Primjeni na sve" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Primijeniti promjene" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Odobrenja" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Odobrenje #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Odobrenje #%1: Nema zabilješki zbog greške sustava" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Odobrenje #%1: Zabilježene napomene" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Odobrenje prošlo" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Odobrenje spremno za rješavatelja" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Odobrenje odbijeno" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Odobriti" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Zabilješke odobrenja: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Tra" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Apr" #: NOT FOUND IN SOURCE msgid "April" msgstr "Travanj" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "Jeste li sigurni da zelite obrisati ovaj članak?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "Članak #%1 obrisan" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "Članak #%1: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Članak nije pronađen" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "Članci" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Rastuće" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Rastuće" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Dodijeliti i odstraniti vlastita polja" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "Pridruži i obriši vlastita polja kategoriji" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "DodijelitiVlastitaPolja" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Priložiti" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Priložiti datoteku" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Priložena datoteka" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Prilog" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Datoteka '%1' se nije mogla učitati" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Prilog napravljen" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Ime datoteke u prilogu" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Prilozi" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Kriptiranje priloga je isključeno" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Atribut obrisan" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Kol" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Aug" #: NOT FOUND IN SOURCE msgid "August" msgstr "Kolovoz" #: NOT FOUND IN SOURCE msgid "AuthSystem" msgstr "AutorizacijskiSistem" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Automatski odgovor" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Automatski odgovor prijaviteljima" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Raspoloživo" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "BCC" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Nazad" #: NOT FOUND IN SOURCE msgid "Bad PGP Signature: %1\\n" msgstr "PGP-Signatura s greskama: %1\\n" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "Id priloga sadrži greske. Prilog '%1' nije pronađen\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "Podaci s greskama u %1" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Slaba privatnost za atribut: %1" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "Pogresan broj transakcije za prilog. %1 bi trebao biti %2 \\n" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Osnovno" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "BCC" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Sjeti se spremiti promjene" #: NOT FOUND IN SOURCE msgid "Binary" msgstr "Binarno" #: etc/initialdata:214 msgid "Blank" msgstr "Prazno" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Tijelo" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Podebljano" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Zabilješka" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "Spremiv URL za ovu pretragu" #: NOT FOUND IN SOURCE msgid "Bookmarkable link" msgstr "Spremiv link" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Zabilježeni zahtjevi" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Zabilježeni zahtjevi" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Kratka zaglavlja" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Skupno ažuriranje" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Nadopuna skupnih zahtjeva" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Kupi podršku" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Standardno RT koristi vremensku zonu sustava. Ovo omogućava postavljanje globalnog standarda za prikaz datuma i vremena u RT-u. Vaši korisnici u svojim postavkama mogu odabrati drugu vremensku zonu." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CCGroup" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: NOT FOUND IN SOURCE msgid "Calendar" msgstr "Kalendar" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Spremljena pretraga \"%1\" ne može se učitati" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Sistemski korisnici se ne mogu promijeniti" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Može li glavni parametar vidjeti ovu kategoriju" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Vrijednost za vlastito polje se ne može dodati bez imena" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Nije pronađena spremljena pretraga" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Zahtjev se ne može povezati na sebe!" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "Zahtjev se ne može spojiti sa sjedinjenim zahtjevom. Ovu grešku nikad ne biste smjeli dobiti" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Spremanje %1 nije uspjelo" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Ne može se spremiti ova pretraga" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Ne mogu se navesti istovremeno osnova i cilj" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Ne može se napraviti zahtjev u deaktiviranoj kategoriji." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Ne može se napraviti korisnik: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategorije se temelje na" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorija" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Kategorija deaktivirana" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "CC" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Ccovi" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Promijeni" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Promijeni status zahtjeva odobrenja na otvoreno" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Promijeniti lozinku" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Odabrati sve" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Provjeri dostupnost baze podataka" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Provjeri prijavu na bazu podataka" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Označiti za brisanje" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Označiti za poništenje ovlasti" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Djeca" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Odaberite tip baze podataka" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Grad" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "Klasa" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Ime klase" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: NOT FOUND IN SOURCE msgid "Class is" msgstr "Klasa je" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "Klase" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Poništi" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Isprazniti sve" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Kliknite dolje na \"Završetak instalacije\" da bi završili s instalacijom." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Kliknite na \"Inicijalizacija baze\" da bi napravili RT bazu i dodali početne metapodatke. To može potrajati neko vrijeme" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Zatvori prozor" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Zatvoreno" #: NOT FOUND IN SOURCE msgid "Closed Tickets" msgstr "Zatvoreni zahtjevi" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Zatvoreni zahtjevi" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Slobodan unos: Odaberite ili unesite više vrijednosti" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Slobodan unos: Odaberite ili unesite jednu vrijednost" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Slobodan unos: Odaberite ili unesite do %1 vrijednosti" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Komentar" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Adresa komentara" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Adresa komentara" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Komentiraj zahtjeve" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "KomentarNaZahtjev" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Komentari" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Komentar (ne šalje se prijaviteljima)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Komentar (ne šalje se prijaviteljima)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "Komentar o %1" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Komentar o ovom korisniku" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Komentar dodan" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Predaja odrezana" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Uvjet" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Uvjet '%1' nije pronađen" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Uvjet je obavezan parametar" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Uvjet se podudara s..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Uvjet nije pronađen" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Uvjet, radnja ili predložak" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Datoteka s postavkama %1 je zaključana" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Postavke" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Potvrditi" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Veza uspostavljena" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Sadržaj" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tip sadržaja" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "Tip sadržaja" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "Kopija" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Adresa za korespondenciju" #: etc/initialdata:283 msgid "Correspondence" msgstr "Korespondencija" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "Adresa korespondencije" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Dodana korespondencija" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "Zahtjevu se nije mogla dodati nova vrijednost vlastitog polja. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "Nije se mogla dodati nova vrijednost vlastitog polja " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "Nije se mogla dodati nova vrijednost vlastitog polja. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Nije se mogla dodati nova vrijednost vlastitog polja: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Rješavatelj nije mogao biti promijenjen. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Rješavatelj nije mogao biti promijenjen: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Vlastito polje nije moglo biti napravljeno" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Vlastito polje: %1 nije moglo biti napravljeno" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Ne može se napraviti grupa" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Predložak: %1 nije mogao biti napravljen" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Zahtjev nije mogao biti napravljen. Kategorija nije određena" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Korisnik nije mogao biti napravljen" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Ovaj korisnik nije mogao biti pronađen ili napravljen" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Ovaj glavni parametar nije mogao biti pronađen" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Atribut %1 se nije mogao učitati" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Vlastito polje %1 nije se moglo učitati" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Grupa se nije mogla učitati" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Objekt za %1 se nije mogao učitati" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Taj glavni parametar nije mogao biti postavljen kao %1 za ovu kategoriju" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Taj glavni parametar nije mogao biti postavljen kao %1 za ovaj zahtjev" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Taj glavni parametar se nije mogao ukloniti kao %1 za ovu kategoriju" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Taj glavni parametar se nije mogao ukloniti kao %1 za ovaj zahtjev" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Informacije o korisniku se nisu mogle dodati" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Dodavanje priloga nije uspjelo" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Član se nije mogao dodati grupi" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Vlastito polje nije moguće primijeniti na objekt pošto je već globalno" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Transakcija: %1 se nije mogla napraviti" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Zapis se nije mogao napraviti" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Kontrolna ploča se nije mogla obrisati" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Red nije pronađen" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Prikladna transakcija nije pronađena, preskačem" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Taj glavni parametar nije pronađen" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Ova vrijednost nije pronađena" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "%1 se nije mogao učitati iz korisničke datoteke.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Klasa %1 se nije mogla učitati" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Vlastito polje #%1 se nije moglo učitati" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Vlastito polje #%1 se nije moglo učitati" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Vlastito polje %1 nije se moglo učitati" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Kopija zahtjeva #%1 se nije mogla učitati." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Kontrolna ploča %1 se nije mogla učitati: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Kontrolna ploča %1 se nije mogla učitati: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Grupa #%1 se nije mogla učitati" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Grupa %1 se nije mogla učitati" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Link se nije mogao učitati" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Objekt %1 se nije mogao učitati" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Korisnik se nije mogao učitati ili dodati: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Kategorija se nije mogla učitati" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Kategorija #%1 se nije mogla učitati" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Kategorija %1 se nije mogla učitati" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Kategorija '%1' se nije mogla učitati" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Natuknica #%1 se nije mogla učitati" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Predložak #%1 se nije mogao učitati" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "Taj korisnik (%1) nije mogao biti učitan" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Zahtjev '%1' se nije mogao učitati" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Transakcija #%1 se nije mogla učitati" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Korisnik se nije mogao učitati" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Korisnik #%1 se nije mogao učitati" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Korisnik #%1 ili '%2' se nije mogao učitati" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Korisnik '%1' se nije mogao učitati" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Učitavanje adrese iz niza znakova '%1' nije uspjelo" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Zamjena sadržaja sa dekriptiranim podacima nije uspjela: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Zamjena sadržaja sa kriptiranim podacima nije uspjela: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Nije moguće prevesti '%1' u URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Nije moguće prevesti osnovu '%1' u URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Nije moguće prevesti vezu '%1' u URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Poruka se nije mogla poslati" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Postavljanje promatrača %1 nije moguće: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Privatni ključ nije se mogao postaviti" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Privatni ključ nije se mogao isključiti" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Zemlja" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Napravi" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Napravi zahtjeve" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "Napravi klasu" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Napravi vlastito polje" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Napravi vlastito polje za kategoriju %1" #: NOT FOUND IN SOURCE msgid "Create a CustomField which applies to all queues" msgstr "Napravi vlastito polje primjenjivo na sve kategorije" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "Napravi novi članak" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Napravi novu kontrolnu ploču" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Napravi novu grupu" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Napravi novu osobnu grupu" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Napravi novi zahtjev" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Napravi novog korisnika" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Napravi kategoriju" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "Napravi zahtjev" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Napravi natuknicu za kategoriju %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Napravi predložak" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Napravi novi zahtjev" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Napravi članak" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "Napravi članak u klasi..." #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Napravi kontrolnu ploču za ovu grupu" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Napravi nove zahtjeve temeljene na ovoj natuknici" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Napravi privatnu kontrolnu ploču" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Napravi sistemsku kontrolnu ploču" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Pošalji zahtjev" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Napravi zahtjeve u ovoj kategoriji" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Napravi zahtjeve bez spoja na mrežu" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Praviti, brisati i mijenjati vlastita polja" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Praviti, brisati i mijenjati kategorije" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Praviti, brisati i mijenjati članove korisnikovih osobnih grupa" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Praviti, brisati i mijenjati članove osobnih grupa" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Praviti, brisati i mijenjati korisnike" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "Pravljenje kontrolne ploče" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "Pravljenje grupne kontrolne ploče" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "Pravljenje osobne kontrolne ploče" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "NapraviSpremljenuPretragu" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "NapraviZahtjev" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Napravljeno" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Napravio" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Napravi vlastito polje %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Napravljeno od" #: NOT FOUND IN SOURCE msgid "Created during" msgstr "Napravljeno tijekom" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Napravljeno u rasponu datuma" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Zahtjevi napravljeni u danom periodu, grupirani po statusu" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "Napravio" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "Napravljeno (relativno)" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Prijavitelj" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kriptografija" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Trenutni linkovi" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Trenutne natuknice" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Trenutni članovi" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Trenutne ovlasti" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Trenutna pretraga" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "Trenutni kriteriji pretrage" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Trenutni promatrači" #: NOT FOUND IN SOURCE msgid "Custom Field #%1" msgstr "Deinirano polje #%1" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Vlastita polja" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Vlastita polja za %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Definirani kod čišćenja" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Definirani kod pripreme" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Definirani uvjet" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Vlastito polje #%1 nije primijenjeno na ovaj objekt" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Definirano polje %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Vlastito polje %1 ne odnosi se na ovaj objekt" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Definirano polje %1 ima vrijednost." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Definirano polje %1 nema vrijednost." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Definirano polje %1 nije pronađeno" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Vlastito polje '%1'" #: NOT FOUND IN SOURCE msgid "Custom field deleted" msgstr "Definirano polje obrisano" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Vlastito polje već je primijenjeno na objekt" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Definirano polje nije pronađeno" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Vrijednost %1 vlastitog polja %2 nije moglo biti pronađeno" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Vrijednost vlastitog polja se nije mogla obrisati" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Vrijednost vlastitog polja nije mogla biti pronađena" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Vrijednost vlastitog polja obrisana" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "DefiniranoPolje" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "Vrijednost vlastitog polja" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Izmijeni" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Osnovno podešavanje" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Podešavanje adresa elektroničke pošte" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Podešavanje postavki elektroničke pošte" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Lozinka administratora baze podataka" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Korisničko ime administratora baze podataka" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Dnevni sažetak" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Kontrolna ploča" #: NOT FOUND IN SOURCE msgid "Dashboard %1" msgstr "Kontrolna ploča %1" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Kontrolna ploča nije moguće napraviti: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Kontrolnu ploču nije moguće ažurirati: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Kontrolna ploča ažurirana" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Kontrolne ploče" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Poslužitelj baze podataka" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Ime baze podataka" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Lozinka baze podataka za RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Priključak baze podataka" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Vrsta baze podataka" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Korisničko ime baze podataka za RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Format datuma" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "DateTime ne podržava format_cldr, trebate nadograditi da bi mogli koristiti ovu funkcionalnost" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "DateTime modul nije pronađen" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "DateTime::Locale ne podržava date_format_full, trebate nadograditi da bi mogli koristiti ovu funkcionalnost" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "DateTime::Locale modul nije pronađen" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datumi" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Pro" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Pro" #: NOT FOUND IN SOURCE msgid "December" msgstr "Prosinac" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Dekriptiraj" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Standardni predložak automatskog odgovora" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Standardna kategorija" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Standardni prijavitelj" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Standardni predložak administratorskog komentara" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Standardni predložak administratorske korespondencije" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Standardni predložak korespondencije" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Standardna kategorija" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Standardni predložak transakcije" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Standardno: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standard: %1/%2 iz \"%3\" u \"%4\" promijenjen." #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Standardni format" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Prijenos ovlasti" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Proslijediti ovlasti koje su vam dodijeljene" #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "Prijenos ovlasti" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Prijenos ovlasti" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Obriši" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Obrisati predložak" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "Obrisati članak #%1" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Obrisati kontrolne ploče za ovu grupu" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Brisanje nije moguće: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Obrisati osobne kontrolne ploče" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Obrisati odabrane natuknice" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Obrisati kontrolne ploče sustava" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Obrisati zahtjeve" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Obriši vrijednosti" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "Obriši kontrolnu ploču" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "Obriši kontrolu ploču grupe" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "Obriši vlastitu kontrolnu ploču" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "ObrisatiZahtjev" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Obrisan %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Obrisana kontrolna ploča %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Obrisani upiti" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Obrisana spremljena pretraga" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "Brisanje ovog objekta može ugroziti referencijalni integritet" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Brisanje ovog objekta bi ugrozilo referencijalni integritet" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Brisanje ovog objekta bi povrijedilo referencijalni integritet" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Odbiti" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Druge stvari koje ovise o ovome" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "Ovisi o ovom zahtjevu" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Dodana ovisnost od strane %1" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Obrisana ovisnost od strane %1" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Dodana ovisnost o %1" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Obrisana ovisnost o %1" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "Ovisan o" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Ovisi o" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "Ovisi o" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Padajuće" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Padajuće" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Opiši problem ispod" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Opis" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Detalji" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Smjer" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Deaktivirano" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Prikazati" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Prikaži listu kontrole pristupa" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Prikaži stupce" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Prikaži predloške natuknica za ovu kategoriju" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Prikaži natuknice za ovu kategoriju" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Način prikaza" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Prikaži spremljene pretrage za ovu grupu" #: NOT FOUND IN SOURCE msgid "Display ticket #%1" msgstr "Prikaži zahtjev br. %1" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuirano pod verzijom 2 GNU GPL-a." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Učini bilo što i sve" #: NOT FOUND IN SOURCE msgid "Do the Search" msgstr "Pretražiti" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Ime domene" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ne upisuje se http://, samo nešto kao 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Ne osvježavaj početnu stranicu." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Ne osvježavaj rezultate pretraživanja." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ne osvježavaj ovu stranicu." #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "Ne prikazuj rezultate pretrage" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Ne vjeruj ovom ključu" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Preuzmi" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Preuzmi datoteku s tabulatorom odvojenim vrijednostima" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Preuzmi datoteku sa stanjem" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Riješiti do" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "Riješiti do (relativno)" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "GREŠKA: %1" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "GREŠKA: Zahtjev '%1' se nije mogao učitati: %2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Jednostavno osvježavanje mojih otvorenih zahtjeva" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Uredi" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Uredi vlastita polja" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Uredi vlastita polja za %1" #: NOT FOUND IN SOURCE msgid "Edit Custom Fields for Class %1" msgstr "Uredi vlastita polja za klasu %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Uredi vlastita polja za sve grupe" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Uredi vlastita polja za sve kategorije" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Uredi vlastita polja za sve korisnike" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Uredi vlastita polja za zahtjeve u svim kategorijama" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Uredi linkove" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Uredi upit" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Uredi pretragu" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Uredi predloške za kategoriju %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Uredi spremljene potrage za ovu grupu" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Uredi sistemske predloške" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "UrediSpremljenePotrage" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Tekstualno uređivanje" #: NOT FOUND IN SOURCE msgid "Editing Configuration for Class %1" msgstr "Uređivanje postavki za klasu %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Uređivanje postavki za kategoriju %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "Uređivanje postavki za korisnika %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Uređivanje vlastita polja %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Uređivanje članstva za grupu %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Uređivanje članstva za osobnu grupu %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "Efektivni identifikator" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Ili baza ili cilj mora biti definiran" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Nemate prava učitavanja spremljene pretrage %1 ili je identifikator neispravan" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-Mail" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Poruka sažetka" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "E-Mail adresa se već koristi" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Dostava pošte" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Predložak za poruke periodičkih sažetaka obavijesti" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "E-Mail adresa" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "E-MailKodiranje" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Aktivirano" #: NOT FOUND IN SOURCE msgid "Enabled (Unchecking this box disables this Class)" msgstr "Aktivirano (Uklanjanje oznake deaktivira ovu klasu)" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktivirano (Uklanjanje oznake deaktivira ovo vlastito polje)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktivirano (Uklanjanje oznake deaktivira ovu grupu)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktivirano (Uklanjanje oznake deaktivira ovu kategoriju)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "Aktivirane klase" #: NOT FOUND IN SOURCE msgid "Enabled Custom Fields" msgstr "Aktivirana vlastita polja" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Aktivirane kategorije" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Aktivne kategorije koje zadovoljavaju kriterije pretrage" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Status %1 aktiviran" #: NOT FOUND IN SOURCE msgid "Enabled status: %1" msgstr "Status %1 aktiviran" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Kriptiraj" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Uvijek kriptiraj" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Kriptiraj/Dekriptiraj" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Kriptiraj/dekriptiraj transakciju #%1 zahtjeva br. %2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Kriptiranje isključeno" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Kriptiranje uključeno" #: NOT FOUND IN SOURCE msgid "Enter Articles or URIs to link Articles to. Seperate multiple entries with spaces." msgstr "Unesi članke ili URI-je na koje se članci vezu. Visestruke unose razdvoji razmacima." #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Unesi više vrijednosti" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Unesi više vrijednosti sa automatskim nadopunjavanjem" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Unesi objekte ili URI-je na koje se objekti vezu. Višestruke unose razdvoji razmacima." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Unesi jednu vrijednost" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Unesi jednu vrijednost sa automatskim nadopunjavanjem" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Unesi kategorije ili URI-je na koje se kategorije vezu. Višestruke unose razdvoji razmacima." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Unesi zahtjeve ili URI-je na koje se zahtjevi vežu. Višestruke unose razdvoji razmacima." #: NOT FOUND IN SOURCE msgid "Enter tickets or URIs to link tickets to. Seperate multiple entries with spaces." msgstr "Unesi zahtjeve ili URI-je na koje se zahtjevi vezu. Visestruke unose razdvoji razmacima." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Unesi do %1 vrijednosti" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Unesi do %1 vrijednosti sa automatskim nadopunjavanjem" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Greška" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Greška u parametrima za Kategorija->DodajPromatrača" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DelWatcher" msgstr "Greška u parametrima za Kategorija->BrišiPromatrača" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Greška u parametrima za Kategorija->BrišiPromatrača" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Greška u parametrima za Zahtjev->DodajPromatrača" #: NOT FOUND IN SOURCE msgid "Error in parameters to Ticket->DelWatcher" msgstr "Greška u parametrima za Zahtjev->BrišiPromatrača" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Greška u parametrima za Zahtjev->BrišiPromatrača" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Greška RT vlasniku: javni ključ" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Greška: Nedostaje kontrolna ploča" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Greška: neispravni GnuPG podaci" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Greška: nema privatnog ključa" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Greška: javni ključ" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Eskalirati zahtjeve" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Očekivano" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Svatko" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Pregledaj zahtjeve napravljene između dva datuma u zadanoj kategoriji" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Pregledaj zahtjeve riješene između dva datuma u zadanoj kategoriji" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Pregledaj riješene zahtjeve u zadanoj kategoriji, grupirano po rješavatelju" #: bin/rt-crontool:356 msgid "Example:" msgstr "Primjer:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Ističe" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "Prošireni status" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Eksterna autentikacija aktivirana." #: NOT FOUND IN SOURCE msgid "ExternalAuthId" msgstr "EksterniAutorizacijskiId" #: NOT FOUND IN SOURCE msgid "ExternalContactInfoId" msgstr "EksterniKontaktInfoId" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Dodatne informacije" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Izvadi oznaku iz naslova" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: NOT FOUND IN SOURCE msgid "Extract article from ticket #%1" msgstr "Izvadi članak iz zahtjeva br. %1" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "Izvadi članak iz zahtjeva br. %1 u klasu %2" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Izvadi oznake iz naslova transakcije i dodaj ih u naslov zahtjeva." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Spajanje na bazu podataka nije moguće: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Dodavanje atributa %1 nije moguće" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Pseudogrupa 'Privilegirani' korisnici nije pronađena." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Pseudogrupa 'Neprivilegirani' korisnici nije pronađena" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Učitavanje nije moguće za %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Učitavanje nije moguće za %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Modul %1 nije mogao biti učitan. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Objekt za %1 nije mogao biti učitan" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Predložak nije mogao biti učitan" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Prevođenje predloška nije moguće" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Velj" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Velj" #: NOT FOUND IN SOURCE msgid "February" msgstr "Veljača" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Izvor vrijednosti polja:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "Ime datoteke" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Ime datoteke" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Unesi parametre" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Ispuni blokove bojom koristeći" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Ispuniti više polja u tekstu" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Ispuniti više polja sa wiki tekstom" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Ispuniti jedno polje u tekstu" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Ispuniti jedno polje sa wiki tekstom" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Ispuniti ovo polje sa URL-om." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Ispuniti do %1 polja u tekstu" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Ispuniti do %1 polja sa wiki tekstom" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Krajnji prioritet" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "Krajnji prioritet" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Pronađi sve korisnike čiji" #: NOT FOUND IN SOURCE msgid "Find group whose" msgstr "Pronađi grupu čije" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Pronađi grupe čije" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "Pronađi nove/otvorene zahtjeve" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Pronađi korisnike čiji" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Pronađi zahtjeve" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Završetak" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Prvi" #: NOT FOUND IN SOURCE msgid "First page" msgstr "Prva stranica" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Eci Peci Pec" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Pec!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Prisili na promjenu" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formatiranje" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Proslijedi" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Proslijedi poruku" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Proslijedi poruku i vrati se na zahtjev" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Proslijedi zahtjev" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Proslijedi poruku trećim osobama" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Proslijedi zahtjev br. %1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Proslijedi transakciju #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "Proslijedi poruku" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Pronađeno zahtjeva: %1" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Pronađen objekt" #: NOT FOUND IN SOURCE msgid "Freeform" msgstr "Slobodan unos" #: NOT FOUND IN SOURCE msgid "FreeformContactInfo" msgstr "SlobodanKontaktInfo" #: NOT FOUND IN SOURCE msgid "FreeformMultiple" msgstr "SlobodanVišestrukiIzbor" #: NOT FOUND IN SOURCE msgid "FreeformSingle" msgstr "SlobodanPojedinacniIzbor" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Ponavljanje" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pet" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Pet" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Petak" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Sva zaglavlja" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Općenito" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Preuzmi predložak iz datoteke" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Početak" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Dano %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Globalno" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Globalna vlastita polja" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Postavke globalnih vlastitih polja" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Prikaz stanja %1 spremljen." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Globalni predložak: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG greška. Kontaktirajte administratora" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG integracija je isključena" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG problem" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG privatni ključevi za %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG javni ključevi za %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Prikaži" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Idi!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "Idi na stranicu" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Pokaži zahtjev" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Graf" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Postavke grafa" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Prikaz grafa nije dostupan." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Grupa" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Grupne ovlasti" #: NOT FOUND IN SOURCE msgid "Group already has member" msgstr "Grupa vec ima članove" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Grupa već ima člana: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Grupa nije mogla biti napravljena: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Grupa napravljena" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Grupa deaktivirana" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Grupa aktivirana" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Grupa ne sadrži takvog člana" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Grupa nije pronađena" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Ovlasti na grupama" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupe" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupe ne mogu biti članovi svojih članova" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupe koje odgovaraju kriterijima pretrage" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Grupe kojima je korisnik član (odaberite za brisanje)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Grupe kojima korisnik nije član (odaberite za dodavanje)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Grupe kojima pripada ovaj korisnik" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "Ima člana" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Zaglavlje proslijeđenog zahtjeva" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Zaglavlje proslijeđene poruke" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Pozdrav!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Pozdrav %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ažurirajmo neke korisne standardne postavke za RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Povijest" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "Povijest za članak #%1" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Povijest grupe %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Povijest kategorije %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Povijest korisnika %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Početna stranica" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Učestalost osvježavanja početne stranice" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "KućniTelefon" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Početna stranica" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Vrijeme" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Sati" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Imam %quant(%1,mješalicu betona)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "Izgubljen sam" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Broj" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identitet" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Ako je odobrenje odbijeno, odbij original i pobriši odobrenja na čekanju" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Ako prijavitelj nije zadan, napravi zahtjeve s ovim prijaviteljem" #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Ako kategorija nije zadana, napravi zahtjeve u ovoj kategoriji" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Ako je ovaj alat 'setgid', neprijateljski lokalni korisnik bi mogao koristiti ovaj alat za dobivanje administratorskog pristupa RT-u." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Ako već imate radeći RT poslužitelj i bazu podataka, sad bi trebali provjeriti je li baza podataka pokrenuta i može li se RT poslužitelj spojiti na nju. Nakon toga zaustavite i ponovo pokrenite RT poslužitelj." #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Ako već imate radeći RT poslužitelj i bazu podataka, sad bi trebali provjeriti je li baza podataka pokrenuta i može li se RT poslužitelj spojiti na nju. Nakon toga zaustavite i ponovo pokrenite RT poslužitelj." #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Ako ste promijenili priključak na kojem se nalazi RT, trebat ćete ponovo pokrenuti poslužitelj da bi se mogli prijaviti." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Ako ste išta mijenjali iznad, ne zaboravite kliknuti ovdje" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Ako se vaša željena baza podataka ne nalazi u donjem popisu to znači da RT nije pronašao instalaciju upravljačkog programa za bazu podataka. Ovo vjerojatno možete popraviti koristeći %1 za preuzimanje i instalaciju DBD::MySQL, DBD::Oracle ili DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Nedopuštena vrijednost za %1" #: NOT FOUND IN SOURCE msgid "Image" msgstr "Slika" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Nepromjenjivo polje" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "Prikaži i deaktivirane klase." #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Prikaži i deaktivirana vlastita polja." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Prikaži i deaktivirane grupe" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Prikaži i deaktivirane kategorije." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Uključi deaktivirane korisnike u pretragu." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Uključi stranicu" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "Nepotpun upit" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "Nepotpun upit" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Pojedinačne poruke" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Obavijesti RT administratora da korisnici imaju problema sa javnim ključevima" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Obavijesti korisnika da nedostaje kontrolna ploča na koju je pretplaćen" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Obavijesti korisnika da poruka koju je poslao sadrži neispravne GnuPG podatke" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Obavijesti korisnika da ima problema s javnim ključem i ne može primati kriptirani sadržaj" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Obavijesti korisnika da mu je lozinka promijenjena" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Obavijesti korisnika da je primljena kriptirana poruka ali nemamo privatnog ključa za dekriptiranje" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Početni prioritet" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "Početni prioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inicijalizacija baze podataka" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Greška pri unosu" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Unosi moraju odgovarati %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "RT instalacija" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Interna greška" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Interna greška: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Nevažeći %1: '%2' ne izgleda kao adresa elektroničke pošte" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Nevažeći %1: očekuje se broj" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Nevažeća vrsta grupe" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Nevažeća ovlast" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Nevažeći podaci" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Nevažeći objekt" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Nevažeći vlasnik objekta" #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "Nevažeći rješavatelj. Postavljeno na 'nobody'." #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Nevažeći uzorak: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Nevažeća kategorija" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Nevažeća ovlast" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Nevažeća ovlast. Primjena prava '%1' nije uspjela" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Nevažeća sintaksa adrese elektroničke pošte" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Nevažeća vrijednost za %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Nevažeća vrijednost za vlastito polje" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Nevažeća vrijednost za status" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Nije kriptirano" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Vrlo je važno da neprivilegiranim korisnicima nije dopušteno koristiti ovaj alat." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Preporučljivo je napraviti neprivilegiranog unix korisnika s ispravnim članstvom u grupi i RT pristupom za korištenje ovog alata." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Potrebno je nekoliko parametara:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kurziv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Sij" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Sij" #: NOT FOUND IN SOURCE msgid "January" msgstr "Siječanj" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Pridruži se ili napusti ovu grupu" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Srp" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Srp" #: NOT FOUND IN SOURCE msgid "July" msgstr "Srpanj" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Sve" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Lip" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Lip" #: NOT FOUND IN SOURCE msgid "June" msgstr "Lipanj" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Ostavite 'localhost' ako niste sigurni. Ostavite prazno za lokalno spajanje preko utičnice" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "Jezik" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Jezik" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Veliko" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Zadnji" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Zadnji kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Posljednji kontaktiran" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "Posljednji obaviješten" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Posljednje osvježavano" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Posljednji osvježio" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Posljednji osvježio" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "Posljednje osvježavano" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "Posljednji osvježio" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "Posljednje osvježeno (relativno)" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Ostavite prazno za slanje na vašu trenutnu e-mail adresu (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Ostavite prazno za korištenje standardne vrijednosti za vašu bazu podataka" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Ostavite prazno za korištenje standardne vrijednosti korisničkog imena administratora vaše baze podataka" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Preostalo" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legenda" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Dužina u znakovima; Koristite '0' za direktan prikaz svih poruka, neovisno o duljini" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Dopustiti pristup RT-u ovom korisniku" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Dodijeliti više ovlasti ovom korisniku" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Krenimo!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Veza" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Link već postoji" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Link nije mogao biti napravljen" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Link napravljen (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Link obrisan (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Link nije pronađen" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Poveži na zahtjev br. %1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Poveži vrijednosti" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Povezano" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "Povezano sa" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "Povezano na" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Povezivanje. Nije dozvoljeno" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Linkovi" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Učitati" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Učitati spremljenu pretragu" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "UčitatiSpremljenuPretragu" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Učitan %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Učitana originalna \"%1\" spremljena pretraga" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Učitani Perl moduli" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Učitana spremljena pretraga \"%1\"" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Lokalizacija" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "Lokaliziran datum i vrijeme" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Adresa" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written.\\n RT can't run." msgstr "Popis prijavljivanja %1 nije pronađen ili nije mogao biti ispisan.\\n RT se ne može pokrenuti." #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Prijavljeni ste kao %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Odjavljeni ste" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Prijavi se" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "Alternativni tekst logotipa" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Odjava" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Nepodudarajući tip pretrage" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Elektronička pošta" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Osnovna vrsta veze" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Napravi rješavatelja" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Napravi status" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Napravi datum" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Napravi datum rješavanja" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Napravi datum početka" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Napravi datum počinjanja" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Napravi datum ulaza" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Napravi prioritet" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Napravi kategoriju" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Napravi temu" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Učini ovu grupu vidljivom korisniku" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Upravljanje vlastitim poljima i njihovim vrijednostima" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Upravljanje grupama i članstvom u grupama" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Upravljanje svojstvima i postavkama koji se primjenjuju na sve kategorije" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Upravljanje kategorijama i svojstvima specifičnima za kategorije" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Upravljanje spremljenim grafovima" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Upravljanje korisnicima i lozinkama" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Ožu" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Ozu" #: NOT FOUND IN SOURCE msgid "March" msgstr "Ožujak" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Označi sve poruke kao pročitane" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Redoslijed pretraživanja Mason predložaka" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "Maksimalne vrijednosti" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Najveća dužina poruke koja se prikazuje direktno" #: lib/RT/Date.pm:95 msgid "May" msgstr "Svibanj" #: NOT FOUND IN SOURCE msgid "May." msgstr "Svi" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Član" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Dodan član %1" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Obrisan član %1" #: NOT FOUND IN SOURCE msgid "Member added" msgstr "Dodan član" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Član dodan: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Obrisan član" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Član nije obrisan" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Član od" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "Član od" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Članovi" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Dodano članstvo u %1" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Obrisano članstvo u %1" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Članstva" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Članstvo korisnika %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Spajanje uspješno" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Spajanje neuspješno. EfectiveId se nije mogao postaviti" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Spajanje neuspješno. Status se nije mogao postaviti" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Spojiti u" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Spojiti u %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Poruka" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Tijelo poruke nije prikazano jer je pošiljatelj tražio da se ne prikazuje direktno." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Tijelo poruke nije prikazano jer nije čisti tekst." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Tijelo poruke nije prikazano jer je preveliko." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Visina okvira za unos poruke" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Širina okvira za unos poruke" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Poruku nije bilo moguće zabilježiti" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Poruka za korisnika" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Poruka zabilježena" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Poruke o ovom zahtjevu neće biti poslane..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minimalna duljina lozinke" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuta" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: NOT FOUND IN SOURCE msgid "Mismatched parentheses" msgstr "Pogrešne zagrade" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "%1: Nedostaje primarni ključ?" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobilni telefon" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "Mobilni telefon" #: NOT FOUND IN SOURCE msgid "Modified" msgstr "Promijenjeno" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Promijeniti" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Promijeni listu kontrole pristupa" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Promijeni vlastita polja koja se primjenjuju na %1 za sve %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Promijeni vlastita polja koja se primjenjuju na sve %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all queues" msgstr "Promijeni vlastita polja koja se primjenjuju na sve kategorije" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Promijeni grupne ovlasti" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Promijeni članove" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Promijeni ovlasti" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Promijeni predloške natuknica za ovu kategoriju" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Promijeni natuknice za ovu kategoriju" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Promijeni korisničke ovlasti" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Promijeni vlastito polje za kategoriju %1" #: NOT FOUND IN SOURCE msgid "Modify a CustomField which applies to all queues" msgstr "Promijeni vlastito polje koje se primjenjuje na sve kategorije" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Promijeni natuknicu za kategoriju %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Promijeni natuknice koje se primjenjuju na sve kategorije" #: NOT FOUND IN SOURCE msgid "Modify a scrip which applies to all queues" msgstr "Promijeni natuknice koji se primjenjuje na sve kategorije" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "Promijeni članak #%1" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Promijeni povezane objekte za %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Promijeni vrijednosti vlastitih polja" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Promijeni korisničke ploče za ovu grupu" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Promijeni datume za #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Promijeni datume za zahtjev br. %1" #: NOT FOUND IN SOURCE msgid "Modify dates for ticket #%1" msgstr "Promijeni datume za zahtjev br. %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Promijeni globalna vlastita polja" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Promijeni globalne grupne ovlasti" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Promijeni globalne grupne ovlasti." #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Promijeni globalne korisničke ovlasti" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Promijeni globalne korisničke ovlasti." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Promijeni grupne metapodatke ili obriši grupu" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Promijeni grupne ovlasti za vlastito polje %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Promijeni grupne ovlasti za grupu %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Promijeni grupne ovlasti za kategoriju %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Promijeni popis članstva za ovu grupu" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Promijeni nečiji vlastiti RT pristup" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Promijeni korisnike koji se odnose na kategoriju %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Promijeni korisnike koji se odnose na zahtjev br. %1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Promijeni osobne korisničke ploče" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Promijeni natuknice za kategoriju %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Promijeni natuknice koji se primjenjuju na sve kategorije" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Promijeni kontrolne ploče sustava" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Promijeni predložak %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Promijeni predloške koji se primjenjuju na sve kategorije" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Promijeni kontrolnu ploču %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Promijeni standardnu Početnu stranicu" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Promijeni grupu %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Promijeni upite za kontrolnu ploču %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Promijeni promatrače kategorije" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Promijeni pretplate na kontrolnu ploču %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Promijeni korisnika %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Promijeni zahtjev br. %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Promijeni zahtjev br. %1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Promijeni zahtjeve" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Promijeni korisničke ovlasti za vlastito polje %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Promijeni korisničke ovlasti za grupu %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Promijeni korisničke ovlasti za kategoriju %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "PromijeniACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "PromijeniDefiniranoPolje" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "Promijeni kontrolnu ploču" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "Promijeni grupnu kontrolnu ploču" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "Promijeni osobnu kontrolnu ploču" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "PromijeniVlastitoČlanstvo" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "PromijeniPromatračeKategorije" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "PromijeniNatuknice" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "PromijeniSebe" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "PromijeniPredložak" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "PromijeniZahtjev" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pon" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Pon" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Ponedjeljak" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "radni dan" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Više" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Više o %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Pomaknuti dolje" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Pomakni gore" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Višestruki" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Potrebno je navesti vrijednost za 'Ime'" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Moji %1 zahtjevi" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Moj dan" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Moja odobrenja" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Moje kontrolne ploče" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Moje spremljene pretrage" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "NOVI RED" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Ime" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "Ime i adresa elektroničke pošte" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Korisničko ime se već koristi" #: NOT FOUND IN SOURCE msgid "Name matches" msgstr "Ime sadrži" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Imenovana, dijeljena kolekcija prikaza stanja" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Nikad" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Novo" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "Novi članak" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Novi linkovi" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nova lozinka" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Nova odobrenja na čekanju" #: NOT FOUND IN SOURCE msgid "New Query" msgstr "Novi upit" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nova pretraga" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Novi i otvoreni zahtjevi korisnika %1" #: NOT FOUND IN SOURCE msgid "New class" msgstr "Nova klasa" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Novo vlastito polje" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Nova grupa" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nove poruke" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nova lozinka" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Poslan novi podsjetnik na novu lozinku" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Nova kategorija" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Novi podsjetnik:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nove ovlasti" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Nova natuknica" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Novi predložak" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Novi zahtjev" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Novi zahtjev ne postoji" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Novi korisnik" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Pozvan novi korisnik" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Novi promatrači" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "Nove postavke prozora" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Sljedeći" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Sljedeća stranica" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "Sljedeća stranica" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Nadimak" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Nadimak" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Ne" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "%1 nije učitan" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nema definirane klase" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Nema vlastitog polja" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nema definiranog vlastitog polja" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nema definirane grupe" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Nema upita" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nema kategorije" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Nije pronađen RT korisnik. Kontaktirajte svojeg RT administratora.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Nema naslova" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Nema predloška" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "Zahtjev nije specificiran. Prekidam " #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Nema radnji" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Nema definiranog stupca" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Nema unesenih komentara za ovog korisnika" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "Nije prikazana korespondencija" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Nema kontrolnih ploča." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Nema opisa za %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Nema detalja" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Nema definirane grupe" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Nema grupa koje odgovaraju kriterijima pretrage" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Nema odgovarajućeg ključa za kriptiranje" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Nema ključeva za ovu adresu" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Nema poruke u prilogu" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Ime nije zadano" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Ne treba kriptirati" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Lozinka nije postavljena" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Nemate ovlasti za pravljenje kategorije" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Nemate ovlasti za pravljenje zahtjeva u kategoriji '%1'" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Nemate ovlasti za pravljenje korisnika" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Nemate ovlasti za prikazivanje tog zahtjeva" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Nemate ovlasti za spremanje pretraga sustava" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Nemate ovlasti za izmjenu postavki" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Nemate ovlasti za ažuriranje zahtjeva" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Nema definiranog glavnog parametra" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Nema odabranih glavnih parametara." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Nema privatnog ključa" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Nisu pronađene kategorije koji odgovaraju kriterijima pretrage" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Ovlasti nisu zadane" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Ovlasti nisu pronađene" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Nema dodijeljenih ovlasti." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Nema pretrage za obradu." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Nema naslova" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Ključ nije dostupan ili nije prikladan za potpisivanje" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Nema zahtjeva koji zadovoljavaju zadane uvjete." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Nije naveden tip transakcije" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nema upotrebljivih ključeva." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Nisu pronađeni korisnici koji odgovaraju kriterijima pretrage" #: NOT FOUND IN SOURCE msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" msgstr "Nije pronajden valjan RT korisnik. RT CVS-handler iskljucen. Kontaktirajte svojeg RT-administratora.\\n" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Nije poslana vrijednost na _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Nitko" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Ništa" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Nepostojeće polje?" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Nije pronađeno" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Niste prijavljeni." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Nije postavljeno" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Nije još implementirano." #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "Nije još implementirano..." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Bilješke" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Obavijest nije mogla biti poslana" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Obavijesti AdminCC-ove" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "obavijesti AdminCC-ove u obliku komentara" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Obavijesti Cc-ove" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Obavijesti Cc-ove u obliku komentara" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Obavijesti ostale primatelje" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Obavijesti ostale primatelje u obliku komentara" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Obavijesti rješavatelja" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Obavijesti rješavatelja u obliku komentara" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Obavijesti rješavatelja o odbijenim zahtjevima" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Obavijesti rješavatelja da je njihov zahtjev odobren i spreman za daljnju obradu" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "Obavijesti rješavatelja da su svi odobrili zahtjev" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "Obavijesti rješavatelja da su neki odobrili zahtjev" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Obavijesti rješavatelja da su zahtjev odobrili neke ili sve nadležne osobe" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Obavijesti rješavatelja, prijavitelje, Ccove i AdminCcove" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Obavijesti rješavatelja, prijavitelje, Ccove i AdminCcove kao komentar" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Obavijesti rješavatelje i AdminCc-ove o odobrenjima na čekanju" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Obavijesti prijavitelja da su njegov zahtjev odobrile sve nadležne osobe" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Obavijesti prijavitelja da su njegovi zahtjev odobrile neke nadležne osobe" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Obavijesti prijavitelje" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Obavijesti prijavitelje i CC-ove" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Obavijesti prijavitelje i CC-ove u obliku komentara" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Obavijesti prijavitelje, CC-ove i AdminCc-ove" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Obavijesti prijavitelje, CC-ove i AdminCC-ove u obliku komentara" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Obavijesti me o nepročitanim porukama" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Stu" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Stu" #: NOT FOUND IN SOURCE msgid "November" msgstr "Studeni" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Broj rezultata pretraživanja" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "Ili" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt nije bilo moguće napraviti" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objekt nije bilo moguće obrisati" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekt napravljen" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekt obrisan" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objekt tipa %1 ne može imati vlastita polja" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Tip objekta nije odgovarajući" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Lista objekata je prazna" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Lis" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Lis" #: NOT FOUND IN SOURCE msgid "October" msgstr "Listopad" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Offline" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Offline uređivanje" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Offline slanje" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "Dana %1, %2 reče:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Pri zatvaranju" #: etc/initialdata:143 msgid "On Comment" msgstr "Pri komentaru" #: etc/initialdata:115 msgid "On Correspond" msgstr "Pri korespondenciji" #: etc/initialdata:104 msgid "On Create" msgstr "Pri pravljenju" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Pri promjeni rješavatelja" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Pri promjeni prioriteta" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Pri promjeni kategorije" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Pri odbijanju" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Pri ponovnom otvaranju" #: etc/initialdata:178 msgid "On Resolve" msgstr "Pri rješavanju" #: etc/initialdata:149 msgid "On Status Change" msgstr "Pri promjeni statusa" #: etc/initialdata:109 msgid "On Transaction" msgstr "Pri transakciji" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "BCC (samo ova poruka)" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "CC (samo ova poruka)" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Prikaži samo odobrenja za zahtjeve napravljene nakon %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Prikaži samo odobrenja za zahtjeve napravljene prije %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Prikaži samo vlastita polja za:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Otvoreno" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Otvori zahtjeve" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Otvori URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Otvori" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Otvoreni zahtjevi" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "Otvori zahtjeve (s liste) u novom prozoru" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "Otvori zahtjeve (s liste) u drugom prozoru" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Otvori zahtjeve pri korespondenciji" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Postavka" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Postavke" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sortirano prema" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "Redoslijed i sortiranje" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organizacija" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Izvorni zahtjev: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Zabilježena odlazna pošta o komentaru" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Zabilježena odlazna pošta" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Odlazna pošta" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "S vremenom prioritet raste" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "Pregled" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Rješavatelj zahtjeva" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "Rješavatelj zahtjeva" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Rješavatelj" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Rješavatelj '%1' nema prava za rješavanje ovog zahtjeva." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Rješavatelj promijenjen iz %1 u %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Nije moguće postaviti rješavatelja." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Vlasnik silom promijenjen od %1 u %2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "Rješavatelj je" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Ime rješavatelja" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Stranica" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "Stranica %1 od %2" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Stranica 1 od 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Nepostojeća stranica" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Pager" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "PagerTelefon" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Roditelji" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Lozinka" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Podsjetnik na lozinku" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Lozinka promijenjena" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Lozinka nije promijenjena." #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Lozinka treba imati bar %1 znakova" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Lozinka promijenjena" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "Lozinka je prekratka" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Lozinka: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Lozinka: Nije dozvoljeno" #: etc/initialdata:463 msgid "PasswordChange" msgstr "Promjena lozinke" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Lozinke se ne podudaraju" #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Lozinke se ne podudaraju. Lozinka nije promijenjena." #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Lokacija sendmail programa" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Osobe" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Izvedi radnju definiranu od korisnika" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl konfiguracija" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Redoslijed pretraživanja Perl biblioteka" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Nije dozvoljeno" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Nije dozvoljeno" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Osobne kontrolne ploče" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Osobne grupe" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Osobne grupe" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Osobne grupe:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Brojevi telefona" #: NOT FOUND IN SOURCE msgid "Placeholder" msgstr "Čuvar mjesta" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Molim provjerite URL i pokušajte ponovo." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Molim ispravno unesite vašu trenutnu lozinku. Lozinka nije promijenjena." #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Molim unesite vašu trenutnu lozinku." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Moguće skrivene pretrage" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Osobne postavke" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Postavke %1 za korisnika %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Postavke spremljene za %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Postavke spremljene za korisnika %1." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Postavke spremljene." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Odabrani ključ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Odabrani ključ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Priprema presječena" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Prethodni" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Prethodno" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "Prethodna stranica" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "Prethodna stranica" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Glavni parametar %1 nije pronađen." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Ispiši dobivenu poruku sažetka na standardni izlaz; ne šalji ju elektroničkom poštom. Nemoj ju označiti kao poslanu" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Ispiši ovu poruku" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioritet" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioritet počinje pri" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privatnost" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privatnost" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Privatni ključ" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilegirani" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Stanje privilegija: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Privilegirani korisnici" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Koristi se obrada bez transakcija, neki uvjeti i radnje možda neće uspjeti. Razmislite o korištenju opcije --transaction" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudogrupa za internu uporabu" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Za provjeru potpisa potreban je javni ključ '0x%1'" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Upiti" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Upit" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Kreiranje upita" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Upit:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Kategorija" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Kategorija %1 nije pronađena" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Ime kategorije" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Kategorija već postoji" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Kategoriju nije moguće napraviti" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Kategorija se ne može učitati" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Kategorija napravljena" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Kategorija deaktivirana" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Kategorija aktivirana" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Identifikator kategorije" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Kategorija nije pronađena" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Ovlasti na kategorijama" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "ključ kategorije" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "AdminCc kategorije" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "Cc kategorije" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "Ime kategorije" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "Promatrač kategorije" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Kategorije" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Kategorije koje administriram" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Kategorije za koje sam AdminCC" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Brza pretraga" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Brzo pravljenje zahtjeva" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 za %2" #: NOT FOUND IN SOURCE msgid "RT %1 from Best Practical Solutions, LLC." msgstr "RT %1 od Best Practical Solutions, LLC." #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT administracija" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Adresa elektroničke pošte RT administratora" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfiguracija" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT greška" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT samoposluga" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT veličina" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT varijable" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "Početna stranica" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "Početna stranica za korisnika %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT može komunicirati s vašim korisnicima prilikom stvaranja zahtjeva ili kod korespondencije vezane uz zahtjev. Zadajte gdje se nalazi sendmail (ili sendmail kompatibilni program kao onaj u postfixu). Za RT također treba definirati koga treba obavijestiti kad netko pošalje nevažeću poruku elektroničke pošte. To ne smije biti adresa koja se vraća nazad u RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT može uključiti sadržaj druge web usluge kod prikaza ovog vlastitog polja." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT može vrijednosti ovog vlastitog polja pretvoriti u hiperveze na drugu uslugu." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT osnovne varijable" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "Spremanje vaše RT prijave nije uspjelo." #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "Request Tracker za %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "RT je obradio vaše naredbe" #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT je vlasništvo © 1996-%1 Jesse Vincent <jesse@bestpractical.com>. Distribuira se pod Verzijom 2 GNU Opće Javne Licence." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT je profesionalni sustav za praćenje problema napravljen tako da omogućava inteligentno i efikasno upravljanje zadacima, problemima, zahtjevima, greškama ili bilo čime drugim što izgleda kao \"radni zadatak.\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT koriste Fortune 100 poduzeća, državne agencija, obrazovne institucije, bolnice, neprofitne organizacije, nevladine organizacije, knjižnice, projekti otvorenog koda i razne vrste drugih organizacija na svih sedam kontinenata. (Da, čak i na Antarktiku.)" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT će se spojiti na bazu koristeći ovog korisnika. Navedeni korisnik će biti napravljen." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT će napraviti korisnika s imenom \"root\" i postaviti ovo kao njegovu lozinku" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "Bilo koji drugi unos RT će potražiti u naslovu zahtjeva." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT će zamijeniti %1 i %2 sa identifikatorom zapisa i vrijednosti vlastitog polja, respektivno" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT će zamijeniti __id__ i __CustomField__ sa identifikatorom zapisa i vrijednosti vlastitog polja, respektivno" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT će ovaj niz znakova koristiti za jedinstvenu identifikaciju vaše instalacije i tražit će ga u naslovima poruka elektroničke pošte da bi prepoznao na koji se zahtjev poruka odnosi. Preporučamo da ovdje unesete svoju Internet domenu. (npr: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT podržava više različitih baza podataka. Podržani su MySQL, PostgreSQL, Oracle i SQLite." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT administrator/Izmjena grupe %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "Postavka RTAddressRegexp iz konfiguracije ne odgovara %1" #: NOT FOUND IN SOURCE msgid "RTFM Error" msgstr "RTFM greška" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Pravo ime" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "Pravo ime" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Primatelj" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Zabilježi sve izmjene" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekurzivni član" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Dodana referenca od strane %1" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Obrisana referenca od strane %1" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Dodana referenca za %1" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Referenca za %1 obrisana" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Druge stvari koje se odnose na ovo" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "Odnosi se na ovaj zahtjev" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Odnosi se" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "Odnosi se" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "Poboljšati pretragu" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Osvježavanje" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Osvježi početnu stranicu svakih 10 minuta." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Osvježi početnu stranicu svakih 120 minuta." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Osvježi početnu stranicu svake 2 minute." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Osvježi početnu stranicu svakih 20 minuta." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Osvježi početnu stranicu svakih 5 minuta." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Osvježi početnu stranicu svakih 60 minuta." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Osvježi rezultate pretraživanja svakih 10 minuta." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Osvježi rezultate pretraživanja svakih 120 minuta." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Osvježi rezultate pretraživanja svake 2 minute." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Osvježi rezultate pretraživanja svakih 20 minuta." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Osvježi rezultate pretraživanja svakih 5 minuta." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Osvježi rezultate pretraživanja svakih 60 minuta." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Osvježi stranicu svakih %1 minuta." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Podsjetnik '%1' dodan" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Podsjetnik '%1' završen" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Podsjetnik '%1' ponovo otvoren" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Zahtjev podsjetnik #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Podsjetnici" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Podsjetnici za zahtjev br. %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Ukloni AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Ukloni zabilješku" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Ukloni CC" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Ukloni prijavitelja" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Odgovori" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Adresa odgovora" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Odgovor prijaviteljima" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Odgovor na zahtjeve" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "OdgovorNaZahtjev" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Izvještaji" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Prijavitelj" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "E-mail adresa prijavitelja" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "Grupa prijavitelja" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Prijavitelji" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Zahtjevi trebaju biti odrađeni u" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Traženi parametar '%1' nije naveden" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Vratiti na prijašnje" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Promijeni tajnu autentikacijsku značku" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Vrati na standardne postavke" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Kuća" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Riješi" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Riješi zahtjev br. %1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Riješeno" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Rješavatelj riješio" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Riješeno u rasponu datuma" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Riješeni zahtjevi u danom periodu, grupirani po rješavatelju" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Riješeni zahtjevi, grupirani po rješavatelju" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "Riješeno (relativno)" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Odgovori" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "Odgovori svim prijaviteljima" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Rezultati" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "Rezultati po stranici" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Vrati se nazad na zahtjev" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Ponoviti lozinku" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Vratiti" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Ovlast delegirana" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Ovlast dodijeljena" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Ovlast učitana" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Ovlasti nisu mogle biti poništene" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Ovlast nije pronađena" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Ovlast nije učitana." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Ovlast poništena" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Ovlasti" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Ovlasti nisu mogle biti odobrene za %1" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "Ovlasti nisu mogle biti poništene za %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Uloge" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Zapisa" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Redova po okviru" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Redova po stranici" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite je baza podataka koja ne zahtjeva poslužitelj ili bili kakvu konfiguraciju. Autori RT-a ju preporučuju za testiranje, prezentaciju i razvoj, ali ne i za veće produkcijske RT poslužitelje." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sub" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Sub." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Subota" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Spremiti" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Spremi promjene" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Spremiti osobne postavke" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Spremi pod novim imenom" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Spremiti promjene" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Spremljena %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Spremljena pretraga %1 nije pronađena" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Spremljeni grafovi" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Spremljene pretrage" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Natuknica #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Natuknica napravljena" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Polja natuknice" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Natuknica obrisana" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Natuknice" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Natuknice i primatelji" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "Natuknice za %1\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Natuknice koji se primjenjuju na sve kategorije" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Traži" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Postavke pretraživanja" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Traži odobrenja" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Traži članke" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Pretraživanje zahtjeva" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Pretraži zahtjeve unoseći broj zahtjeva, kategoriju po imenu, Rješavatelja po korisničkom imenu ili Prijavitelja po adresi elektroničke pošte." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Pretraživanje" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Rezultati pretraživanja grupirani po %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Period osvježavanja rezultata pretraživanja" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Pretraživanje cijelog sadržaja svih zahtjeva može potrajati, ali ako je potrebno možete pretražiti po bilo kojoj riječi u povijesti zahtjeva unoseći fulltext:riječ." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Tajna autentikacijska značka" #: bin/rt-crontool:350 msgid "Security:" msgstr "Sigurnost:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Također vidi:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Pogledaj vrijednosti vlastitog polja" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Pogledaj vlastita polja" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Pogledaj odlazne e-mail poruke i njihove primatelje" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Pogledaj privatne komentare zahtjeva" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Pogledaj sažetke zahtjeva" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "PogledajDefiniranoPolje" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "Pogledaj kontrolnu ploču" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "PogledajGrupu" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "Pogledaj grupnu kontrolnu ploču" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "Pogledaj osobnu kontrolnu ploču" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "PogledajKategoriju" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Odabir" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Odaberi tip baze podataka" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Odaberi klasu" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Odaberi vlastito polje" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Odaberi grupu" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Odaberi kategoriju" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Odaberi kategoriju za novi zahtjev" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Odaberi korisnika" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Odaberi drugi jezik" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select class" msgstr "Odaberi klasu" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Odaberi vlastito polje" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Odaberi vlastita polja za sve kategorije" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Odaberi vlastita polja za sve korisničke grupe" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Odaberi vlastita polja za sve korisnike" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Odaberi vlastita polja za zahtjeve u svim kategorijama" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Odaberi vlastita polja za transakcije u zahtjevima u svim kategorijama" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Odaberi grupu" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Odaberi više vrijednosti" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Odaberi jednu vrijednost" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Odaberi kategoriju" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Odaberi kategorije koje će se prikazivati na Početnoj stranici" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Odaberi natuknicu" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Odaberi predložak" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Odaberi do %1 vrijednosti" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Odaberi korisnika" #: NOT FOUND IN SOURCE msgid "SelectMultiple" msgstr "VisestrukiIzbor" #: NOT FOUND IN SOURCE msgid "SelectSingle" msgstr "PojedinacanIzbor" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Odabrana vlastita polja" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Odabranom ključu se ne vjeruje ili više ne postoji." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Odaberi objekte" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Odabiri su promijenjeni. Molim spremite vaše izmjene" #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "Samousluga" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Poruka uspješno poslana" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Pošalji mail svim promatracima" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Pošalji mail svim promatracima kao \"Kommentar\"" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Pošalji mail rješavatelju i svim promatračima" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Pošalji mail rješavatelju i svim promatračima kao \"komentar\"" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Pošalji mail prijaviteljima i CC-ovima" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Pošalji mail prijaviteljima i CC-ovima kao komentar" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Šalje poruku prijaviteljima" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Šalje mail CC-ovima i BCC-ovima s ovog popisa" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Šalje mail CC-ovima" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Šalje mail CC-ovima kao komentar" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Šalje mail administrativnim CC-ovima" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Šalje mail administrativnim CC-ovima kao komentar" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Šalje mail rješavatelju" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Ruj" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Ruj" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "Seperate multiple URLs with spaces" msgstr "Razdvoji razlicite URL-ove razmacima" #: NOT FOUND IN SOURCE msgid "September" msgstr "Rujan" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Postavke" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "Kratka korisnička imena" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "Treba li RT slati obavijesti o izmjenama koje ste sami napravili na zahtjevima?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Pokaži" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "Pokaži odobrenja" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Pokaži stupce" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Prikaz rezultata" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Na razini %1 prikaži svojstva zahtjeva" #: NOT FOUND IN SOURCE msgid "Show advanced search options..." msgstr "Pokaži opcije za naprednu pretragu..." #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Pokaži odobrene zahtjeve" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Također prikaži" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Pokaži osnove" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Pokaži odbijene zahtjeve" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Pokaži detalje" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Pokaži opis veze" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Prvo prikaži najstarije poruke" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Pokaži zahtjeve na čekanju" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Pokaži zahtjeve koji čekaju druga odobrenja" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "Pokaži privatne komentare za zahtjev" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "Pokaži sazetke zahtjeva" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "PokažiACL-ove" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "PokažiTabOdobrenja" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "PokažiTabPostavki" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "PokažiOdlaznuPoštu" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "PokažiSpremljenePretrage" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "PokažiNatuknice" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "PokažiPredloške" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "PokažiZahtjev" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "PokažiKomentareZahtjeva" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Čistač" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Čistač zahtjeva direktorij za spremanje stanja. Molim provjerite da direktorij %1 postoji i web poslužitelj može pisati u njega." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Čistač zahtjeva direktorij za spremanje stanja. Molim provjerite da direktorij %1 postoji i web poslužitelj može pisati u njega." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Pomoćni stupac" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Potpiši" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Uvijek potpiši" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Prijavi se kao prijavitelj zahtjeva ili Cc za zahtjev ili kategoriju" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Prijavi se kao AdminCc za zahtjev ili kategoriju" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "E-mail potpis" #: NOT FOUND IN SOURCE msgid "Signed in as %1" msgstr "Prijavljen kao %1" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Potpisivanje deaktivirano" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Potpisivanje aktivirano" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Jednostavna pretraga" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Pojedinačni" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Naziv sjedišta" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Veličina" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Preskoči izbornik" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Preskačem deaktiviranog korisnika" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Malo" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Neki pretraživači učitavaju samo sadržaj sa iste domene kao vaš RT poslužitelj." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Nešto nije u redu. Kontaktirajte administratora sustava" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sortirati" #: NOT FOUND IN SOURCE msgid "Sort Order" msgstr "Redoslijed sortiranja" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "Kljuc sortiranja" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "Sortiraj rezultate prema" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "RedoslijedSortiranja" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortiranje" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Izvor" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Zadajte dali je ovo dnevno ili tjedno izvršavanje." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Preuzmi tablicu" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Stadij" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Započeto" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "Započeto (relativno)" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Počinje" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "Počinje (relativno)" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Država" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Status" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Promjena statusa" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Status se promijenio iz %1 u %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Ukrasti" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Ukrasti zahtjeve" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "UkrastiZahtjev" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Korak %1 od %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Ukradeno od %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Ukradeno od %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Naslov" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Prefiks naslova" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Naslov promijenjen u %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "Prefiks naslova" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Prefiks postavljen na %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Pošalji" #: NOT FOUND IN SOURCE msgid "Submit Query" msgstr "Traži" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Pretplati se" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Pretplati se na kontrolnu ploču %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Pretplati se na kontrolne ploče" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "Pretplata na kontrolnu ploču" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Pretplaćen na kontrolnu ploču %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Pretplata" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Dodavanje pretplate nije moguće: %1" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Uspješno" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Podaci uspješno dekriptirani" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Podaci uspješno kriptirani" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "Sazetak" #: NOT FOUND IN SOURCE msgid "Summary matches" msgstr "Sažetak sadrži" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ned" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Ned" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Nedjelja" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "Superkorisnik" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Isključeno" #: NOT FOUND IN SOURCE msgid "System" msgstr "Sistem" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Postavke sustava" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Sistemske kontrolne ploče" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Postavke sustava" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Greška sustava" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Greška sustava: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Sistemski alati" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Greška sustava. Ovlast nije dodijeljena." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Greška sustava. Ovlast nije odobrena." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Sistemske grupe" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Ovlasti na sustavu" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "Sistemska uloga grupe za internu uporabu" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRING" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Preuzmi" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Preuzmi zahtjeve" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "PreuzmiZahtjev" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Zahtjev preuzet" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Zadajte gdje se nalazi baza podataka koju će RT koristiti" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Predložak" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Predložak #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Predložak #%1 obrisan" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Predložak '%1' nije pronađen" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Predložak obrisan" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Predložak je prazan" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Predložak je obavezan argument" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Predložak nije pronađen" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Predložak analiziran" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Greška kod parsiranja predloška" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Predlošci" #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "Predlošci za %1\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "Tekst" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstualna datoteka nije prikazana jer je prikaz isključenu postavkama." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Navedena vrijednost već je postavljena" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "To nije valjana vrijednost za ovo vlastito polje" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "To je ista vrijednost" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Taj glavni parametar već ima tu ovlast" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Taj glavni parametar je već %1 za ovu kategoriju" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Taj glavni parametar je već %1 za ovaj zahtjev" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Taj glavni parametar nije %1 za ovu kategoriju" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Taj glavni parametar nije %1 za ovaj zahtjev" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Ta kategorija ne postoji" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Taj zahtjev ima neriješene ovisnosti" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "Taj korisnik vec ima tu ovlast" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Taj korisnik već posjeduje taj zahtjev" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Taj korisnik ne postoji" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Taj korisnik je već privilegiran" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Taj korisnik je već neprivilegiran" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Navedeni korisnik je sada privilegiran" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Navedeni korisnik je sada neprivilegiran" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Ovom korisniku možda ne pripadaju zahtjevi u toj kategoriji" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "To nije numerički Id" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Osnove" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "CC zahtjeva" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Lozinka administratora baze podataka" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Administrativni CC zahtjeva" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "Komentar je zabilježen" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Naziv domene poslužitelja baze podataka (kao 'db.example.com')." #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Sljedeća naredba će pronaći sve aktivne zahtjeve u kategoriji 'Općenito' i postaviti njihov prioritet na 99 ako u zadnja 4 sata nije rađeno na njima:" #: NOT FOUND IN SOURCE msgid "The following commands were not proccessed:\\n\\n" msgstr "Sljedeće naredbe nisu odrađene:\\n\\n" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Sljedeći upiti su obrisani i biti će uklonjeni sa kontrolne ploče jednom kad se njen prikaza ažurira." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Sljedeći upiti možda neće biti vidljivi svim korisnicima koji vide ovu kontrolnu ploču." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Ključ je deaktiviran" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Ključ je opozvan" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Ključ je istekao" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Ključu se potpuno vjeruje" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Ključu se beskrajno vjeruje" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Nova vrijednost je postavljena." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Rješavatelj zahtjeva" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Stranica koju ste tražili nije pronađena" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Prijavitelj zahtjeva" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Odabrane postavke spremljene su u %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Sustav ne može potpisati odlazne poruke elektroničke pošte. To obično znači da lozinka nije ispravno postavljena ili je GPG Agent ugašen. Molim odmah obavijestite administratora sustava. Problematične adrese su:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Dostupno je više ključeva za kriptiranje." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "U ovom zahtjevu ima nepročitanih poruka." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Povjerenje u ovaj ključ je marginalno" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Nema raspoloživih ključeva za kriptiranje." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Na raspolaganju je jedan ključ, ali vrijednost povjerenja nije postavljena." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Ovi komentari nisu općenito vidljivi korisniku" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Slijedeće postavke potrebno je definirati da bi RT radio. Treba zadati naziv RT instalacije i domenu na kojoj se RT nalazi. Također je potrebno postaviti lozinku standardnog RT administratora." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Ovo vlastito polje se ne primjenjuje za taj objekt" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Ova karakteristika je dostupna samo administratorima sustava" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Ovo može značiti da se u direktorij '%1' ne može pisati ili da je baza nedostupna ili pokvarena." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Ova poruka će se poslati..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Ovaj alat dopušta korisniku rad s proizvoljnim Perl modulima iz RT-a." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Ova transakcija vjerojatno nema sadržaja" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "%1 Zahtjevi najvišeg prioriteta ovog korisnika" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Čet" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Cet" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Četvrtak" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Zahtjev" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Zahtjev br. %1 sve ažurirati: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Graf veza za zahtjev br. %1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Zahtjev br. %1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Zahtjev br. %1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Zahtjev %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Zahtjev %1 napravljen u kategoriji '%2'" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "Zahtjev %1 uvitan\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Zahtjev %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Vlastita polja zahtjeva" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Tijek zahtjeva Br. %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "Broj zahtjeva" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Zahtjev riješen" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Pretraživanje zahtjeva" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Transakcije zahtjeva" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "Prilog zahtjevu" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Sadržaj zahtjeva" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Tip sadržaja zahtjeva" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Zahtjev nije mogao biti napravljen zbog interne greške" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Zahtjev nije moga biti učitan" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "Zahtjev napravljen" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "Zahtjev obrisan" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Prikaz zahtjeva" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "Broj zahtjeva nije pronađen" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Metapodaci zahtjeva" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "Zahtjev nije pronađen" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Status zahtjeva promijenjen" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "Promatrači zahtjeva" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "TicketSQL modul za pretraživanje" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Zahtjevi" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Zahtjevi %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Zahtjevi %1 od %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Zahtjevi napravljeni nakon" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Zahtjevi napravljeni prije" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "Zahtjevi od %1" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Zahtjevi riješeni nakon" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Zahtjevi riješeni prije" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Zahtjevi koji ovise o ovom odobrenju:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Procijenjeno vrijeme" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Preostalo vrijeme" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Vrijeme rada" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Preostalo vrijeme" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Vrijeme za prikaz" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Vrijeme rada" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "Predviđeno vrijeme" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "Preostalo vrijeme" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "Vrijeme rada" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Vremenska zona" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Naslov" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Za" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "Za kreiranje 'diffa' ove predaje:" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "Za kreiranje 'diffa' ove predaje:\\n" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Za pitanja o podršci, edukaciji, razvoju kao i licencama, molimo kontaktirajte %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Uneseno" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "Uneseno (relativno)" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Alati" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Ukupno" #: etc/initialdata:249 msgid "Transaction" msgstr "Transakcija" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transakcija %1 pročišćena" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transakcija napravljena" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Transakcija vlastita polja" #: NOT FOUND IN SOURCE msgid "Transaction->Create couldn't, as you didn't specify a ticket id" msgstr "Transakcija->Napraviti nije izvršeno jer nije naveden broj zahtjeva" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transakcija->Napraviti nije izvršeno jer nisu navedeni tip i id objekta" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "Datum transakcije" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transakcije su nepromjenjive" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Povjerenje" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Uto" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Uto" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Utorak" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tip" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Tip promijenjen iz '%1' u '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Određivanje tipa ili identifikatora objekta nije moguće" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "Članak nije moguće učitati" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Pretplata na kontrolnu ploču %1 nije uspjela: Nije dozvoljeno" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Nije implementirano" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix prijava" #: NOT FOUND IN SOURCE msgid "UnixUsername" msgstr "UnixKorisničkoIme" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Nepoznato (povjerenje nije postavljeno)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Nepoznato (ova vrijednost je nova u sustavu)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Nepoznato kodiranje sadržaja %1" #: NOT FOUND IN SOURCE msgid "Unknown field: $key" msgstr "Nepoznato polje: $key" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Nepoznato polje: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Neograničeno" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Neograničeno" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Nepoznata pretraga" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Neprivilegirani" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Neodabrana vlastita polja" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Neodabrani objekti" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Poništi privatni ključ" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Vraćeno" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Ažuriraj" #: NOT FOUND IN SOURCE msgid "Update All" msgstr "Ažuriraj sve" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Ažuriraj graf" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "ID ažuriranja" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Ažuriraj zahtjev" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Tip ažuriranja" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "Ažuriraj sve ove zahtjeve ođednom" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "Ažuriraj email" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Ažuriraj prikaz i pretraži" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Ažuriraj više zahtjeva" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "Ažuriraj ime" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Ažuriranje nije zabilježeno." #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "Ažuriraj odabrane zahtjeve" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "Ažuriraj potpis" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Ažuriraj zahtjev" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "Ažuriraj zahtjev br. %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Ažuriraj zahtjev br. %1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Ažuriraj zahtjev br. %1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Tip ažuriranja nije bio ni korespondencija ni komentar." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "Ažuriraj status" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Ažurirano" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Ažurirana spremljena pretraga \"%1\"" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Učitaj s računala" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Učitaj nekoliko datoteka s računala" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Učitaj nekoliko slika s računala" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Učitaj jednu datoteku s računala" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Učitaj jednu sliku s računala" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Učitaj do %1 Datoteka s računala" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Učitaj do %1 slika s računala" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Učitaj promjene" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Korištenje: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Koristi SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Koristi CSS pravila za prikaz čistog teksta sa sačuvanim formatiranjem, ali prelomi retke ako je potrebno. Ovo ne radi najbolje u IE6 pa se preporuča korištenje prethodne postavke" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Koristi standardno (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Ostali RT administrativni alati" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Koristi postavke sustava (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: NOT FOUND IN SOURCE msgid "Use the dropdown menus to select which transactions you want to extract into a new RTFM article" msgstr "Koristi padajuće izbornike za odabir transakcija koje zeliš ekstrahirati u novi RTFM članak" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Koristite ovo da bi se ispravno prikazalo formatiranje poruka u čistom tekstu" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Korisnik" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Korisnik '%1' nije pronađen." #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Korisnik (napravljen - ističe)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Definirano od strane korisnika" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Uvjeti i radnje definirani od korisnika" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "Korisnički ID" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "Korisnički ID" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Korisničke ovlasti" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Korisnik upitan o nepoznatom tipu ažuriranja za vlastito polje %1 za %2 objekt #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Korisnika nije bilo moguće napraviti: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Korisnik napravljen" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Grupe definirane od korisnika" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Korisnik deaktiviran" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Korisnik aktiviran" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Korisnik nema definiranu adresu elektroničke pošte" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "korisnik učitan" #: NOT FOUND IN SOURCE msgid "User view" msgstr "korisnički pregled" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Korisnički GnuPG ključevi" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Grupe definirane od korisnika" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Korisničko ime" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Format korisničkog imena" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Korisnici" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Korisnici koji se podudaraju s kriterijima pretrage" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Koristim transakciju #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Valjani upit" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Provjera" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Vrijednost" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "VrijednostKategorije" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Vrijednosti" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Postavka" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Različiti RT izvještaji" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Inačica" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Pregledaj korisničke ploče ove grupe" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Pregledaj osobne korisničke ploče" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Pregledaj korisničke ploče sustava" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "Visina WYSIWYG uređivača" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG uređivač poruka" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Pozor! Ovo NIJE potpisano!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Pozor: nemate postavljenu adresu elektroničke pošte i dok ju ne postavite nećete primati poruke s ove kontrolne ploče" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Promatraj" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "PromatrajKaoAdminCc" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Promatrač" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "Grupa promatrača" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Promatrači" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Baza podataka je pronađena i prijava kao administrator baze radi. Kliknite na 'Osnovno podešavanje' za nastavak RT podešavanja." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Potrebno je unijeti ime baze podataka koju će RT koristiti i gdje se ista nalazi. Također treba zadati korisničko ime i lozinku koju će RT koristiti za spajanje na bazu. RT može dodati bazu i korisnika, ali je za to potrebno unijeti korisničko ime i lozinku korisnika s administratorskim ovlastima na bazi podataka. U 6. koraku instalacijske procedure ti podaci koristit će se za stvaranje i inicijalizaciju RT baze podataka." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Web priključak" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "WebKodiranje" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Sri" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Sri" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Srijeda" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Tjedni sažetak" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Dobrodošli u RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Što sam danas radio" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Što je RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Gdje treba preusmjeriti poruke elektroničke pošte koje RT ne može obraditi?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "RT prilikom slanja poruka elektroničke pošte postavlja zaglavlja From: i Reply-To: tako da korisnici mogu ažurirati zahtjev odgovarajući na poruku iz svog klijenta za elektroničku poštu. Za odgovore i komentare koriste se različite adrese elektroničke pošte. Ove adrese mogu se podesiti za svaku od kategorija. Za te adrese potrebno je postaviti i korištenje programa rt-mailgate." #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "Kada svi odobre zahtjev, dodaj korespondenciju originalnom zahtjevu" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "Kada jedan odobri zahtjev, dodaj korespondenciju originalnom zahtjevu" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Kad je zahtjev napravljen" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Kad je zahtjev napravljen, obavijesti rješavatelja i adminCc o predmetu koji čeka njihovo odobrenje" #: etc/initialdata:110 msgid "When anything happens" msgstr "Kad se bilo što dogodi" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Kad kliknete na 'Provjeri dostupnost baze podataka' moguća je kraća pauza dok se RT pokušava spojiti na vašu bazu podataka" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Uvijek kad se zahtjev riješi" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Uvijek kad se zahtjev odbije" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Uvijek kad se zahtjev ponovo otvori" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Uvijek kad se riješi zahtjev" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Uvijek kad se promijeni rješavatelj zahtjeva" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Uvijek kad se promijeni prioritet zahtjeva" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Uvijek kad se promijeni kategorija zahtjeva" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Uvijek kad se promijeni status zahtjeva" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Uvijek kad se pojavi uvjet definiran od korisnika" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Uvijek kad uđu komentari" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Uvijek kad uđe korespondencija" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Staza do programa sendmail." #: NOT FOUND IN SOURCE msgid "Which are referred to by " msgstr "Na koje se odnosi " #: NOT FOUND IN SOURCE msgid "Which refer to" msgstr "Koji se odnose na" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Obriši" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Posao" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "Work offline" msgstr "Radi offline" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "SlužbeniTelefon" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Vrijeme rada" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Da" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Već posjedujete ovaj zahtjev" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Poslat ćete kriptirane poruke, ali sa javnim ključevima primatelja ima problema. Trebate ispraviti probleme s ključevima, isključiti slanje poruke primateljima koji imaju problema s ključevima, ili isključiti kriptiranje." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Poslat ćete kriptirane poruke, ali sa javnim ključem primatelja ima problema. Trebate ispraviti problem s ključem, isključiti slanje poruke primatelju koji ima problema s ključem, ili isključiti kriptiranje." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Niste ovlašteni korisnik" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Možete skočiti na prvu nepročitanu poruku ili skočiti na prvu nepročitanu poruku i označiti sve poruke kao pročitane." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Također možete urediti i samu predefiniranu pretragu" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Ne možete promijeniti lozinku." #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Možete samo dodjeljivati zahtjeve koje posjedujete ili koji nemaju rješavatelja" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Možete preuzeti samo zahtjeve koji nemaju rješavatelja" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Nemate prava SuperKorisnika." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Našli ste %1 zahtjeva u kategoriji %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Odjavljeni ste iz RT-a." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Nemate dopuštenje za pravljenje zahtjeva u toj kategoriji." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "U ovoj kategoriji ne smijete praviti zahtjeve." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Morate unijeti administratorsku lozinku" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Nakon ovoga trebala bi se prikazati stranica za prijavu. Možete se prijaviti sa korisničkim imenom %1 i lozinkom koju ste prije zadali." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Nakon ovoga trebala bi se prikazati stranica za prijavu. Možete se prijaviti sa korisničkim imenom root i lozinkom koju ste prije zadali." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Odaberite bazu s kojom ste vi ili vaš administrator baze podataka najviše upoznati." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Ova stranica je prikazana jer se pokrenuli RT poslužitelj bez radeće baze podataka. Najvjerojatnije ovo je prvi put da ste pokrenuli RT. Ako dolje kliknete na Krenimo!, RT će vas voditi kroz postavljanje vašeg RT poslužitelja i baze podataka." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Ova stranica je prikazana jer se pokrenuli RT poslužitelj bez radeće baze podataka. Najvjerojatnije ovo je prvi put da ste pokrenuli RT. Ako dolje kliknete na \"%1\", RT će vas voditi kroz postavljanje vašeg RT poslužitelja i baze podataka." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Možete se ponovno prijaviti" #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "Mojih %1 zahtjeva" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Vaša trenutna lozinka" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Vaša lozinka nije postavljena." #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "Vaš zahtjev je odobren od %1. Druga dopuštenja bi mogla još biti na čekanju." #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "Vaš zahtjev je odobren." #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "Vaš zahtjev je odbijen" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Vaše korisničko ime ili lozinka je neispravno" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Poštanski broj" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Dolje]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Gore]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ništa]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "Dodaj 
 oznaku oko priloga sa čistim tekstom"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "Nakon"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "Dopusti pravljenje spremljenih pretraga"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "Dopusti učitavanje spremljenih pretraga"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "and is not"
msgstr "i nije"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr "a ne"

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "odobreno za %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "Stupčasti"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "Prije"

#: NOT FOUND IN SOURCE
msgid "belongs to"
msgstr "pripada"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "tijelo"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "prema gore"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "odaberite ovu kućicu da bi se vlastito polje primijenilo na sve objekte."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "odaberite ovu kućicu za brisanje vlastitog polja sa svih objekata i omogućavanja dodavanja na pojedine objekte."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "odaberite za dodavanje"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "kliknite za dodavanje/brisanje odabira svih objekata odjednom"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "zatvoreni"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "sažeto"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "sadrži"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "sadržaj"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "vrsta sadržaja"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "osnovna konfiguracija"

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "korespondencija (vjerojatno) nije poslana"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "korespondencija poslana"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "vlastito polje '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "svaki dan"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "dnevno u %1"

# this is genitive, not nominative! -joy
#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dana"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "brisati"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "obrisano"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "Prikaži prelomljene i formatirane priloge čistog teksta"

#: NOT FOUND IN SOURCE
msgid "does not belong to"
msgstr "ne pripada"

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "ne podudara se s"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "ne sadrži"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "se ne podudara sa"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "preuzmi"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "jednako je"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "greška: ne može se pomicati dolje"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "greška: ne može se pomicati ulijevo"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "greška: ne može se pomicati gore"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "greška: nema ničega za obrisati"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "greška: nema ničega za pomicati"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "greška: nema ničega za prebaciti"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "svakih"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "dodatak uspješno izvršen"

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "ime datoteke"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "potpuno"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "veće od"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grupa '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "sati"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr "u klasi %1"

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "je"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "nije"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "ključ deaktiviran"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "ključ istekao"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "ključ opozvan"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "udesno"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "manje od"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginalno"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "se podudara sa"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maksimalna dubina"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minute"

#: NOT FOUND IN SOURCE
msgid "modifications\\n\\n"
msgstr "promjene\\n\\n"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "mjesečno"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "mjesečno (%1. u mjesecu) u %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "mjeseci"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "nikad"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "novo"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "ne"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "nema imena"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "nema vrijednosti"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "nijedan"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "nije jednako"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "ništa"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "objekti su uspješno obrisani"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "Pri"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "na datum"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "jedan"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "otvoreno"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "pokaži/sakrij"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "ostalo..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "osobna grupa '%1' za korisnika '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "Kružni"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "dodatak je vratio praznu listu"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "kategorija %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "odbijeno"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "riješeno"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "ulijevo"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "pogledajte donji popis objekata"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "prikaži karticu odobrenja"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "Pokaži tab postavki"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "konfiguracija sjedišta"

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "tablično računanje"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "zaustavljeno"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "sažetak"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "redci sažetka"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistem %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "sistemsku grupu '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "komponenta zvanja nije navela zašto"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "standardna adresa koja će se prikazivati u zaglavljima From: i Reply-To: poruka komentara"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "standardna adresa koja će se prikazivati u zaglavljima From: i Reply-To: poruka korespondencije"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "zahtjev br. %1 %2"

#: NOT FOUND IN SOURCE
msgid "till"
msgstr "do"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "prema dolje"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "beskrajno"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "neopisana grupa %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "neograničeno"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "korisnika %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "opširno"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "tjedno"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "tjedno (%1) u %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "tjedna"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "na kojem će priključku slušati vaš web poslužitelj, npr. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "sa zaglavljima"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "godine"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "da"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/ja.po0000664000175000017500000103423112262650742013730 0ustar  chmrrchmrrmsgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:34+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"
"X-Poedit-Country: JAPAN\n"
"X-Poedit-SearchPath-0: \n"
"X-Poedit-Basepath: /usr/local/share/request-tracker3.8/\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " %1 を削除しました。"

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 を %2 に変更しました。"

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 を保存しました。"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (公開鍵がありません!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (信用がありません!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "番号"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: NOT FOUND IN SOURCE
msgid "$1"
msgstr "$1"

#: NOT FOUND IN SOURCE
msgid "$DAYS_OF_WEEK[$dow]."
msgstr "$DAYS_OF_WEEK[$dow]."

#: NOT FOUND IN SOURCE
msgid "$MONTHS[$mon]."
msgstr "$MONTHS[$mon]."

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%4-%2-%3 %1"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%6-%2-%3 %1 %4:%5"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%7-%2-%3 %1 %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1に%2を追加しました"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 前"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1の%2を%3に変更しました"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1の%2を削除しました"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1の%2を削除しました"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1の%2を%3に変更しました"

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1の%2を保存しました"

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1「%2」を更新しました"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1をテンプレート%3で%2します"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) - %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (変更なし)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (%2から)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - LogToScreen 設定オプションの調整"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - %2に渡す引数"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - 更新状況をSTDOUTに出力"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr ""

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - 使いたいテンプレートの名前かidを指定"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - 使いたいアクションモジュールを指定"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - 使いたいトランザクションの種類をコンマ区切りのリストで指定"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - 使いたいconditionモジュールを指定"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - 使いたい検索モジュールを指定"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 ダッシュボード"

#: NOT FOUND IN SOURCE
msgid "%1 Dashboards"
msgstr "%1のダッシュボード"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 ScripActionを読み込みました"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%2の値に%1が追加されました"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1はすでに存在しRTのテーブルに配置されていますがRTのメタデータがありません。\r\n後の'Initialize Database'の段階でこの既存のデータベースにメタデータを追加することが可能です。\r\nそうする場合は以下の'Customize Basics'をクリックしてRTのカスタマイズを続けてください。"

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1はすでに存在しますがRTのテーブルやメタデータがありません。\r\n後の'Initialize Database'の段階でこの既存のデータベースにテーブルやメタデータを追加することが可能です。\r\nそうする場合は以下の'Customize Basics'をクリックしてRTのカスタマイズを続けてください。"

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1はローカルオブジェクトのようですがデータベースから見つけることができません。"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1は完全に初期化されているようです。\r\nテーブルの作成やメタデータの追加は必要ありませんが、\r\n以下の'Customize Basics'をクリックしてRTのカスタマイズを続けることが可能です。"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 (%2)"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1は「%2」から「%3」に変更されました"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1は「%2」から「%3」に変更されました"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%2の%1グラフで表示"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1の写し"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1を%2にセットすることはできません。"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1を解決できませんでした。RTのデータベースに一貫性がない可能性があります。"

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1を作成しました"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 を削除しました"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1を無効にしました"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1が存在しません。"

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1を有効にしました"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "最優先の担当チケット%1件"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1はcronなどの外部スケジューリングツールからチケットを操作するツールです。"

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1はRTからのお知らせをユーザごとにまとめて後から一括送信するためのcron用ユーティリティです。"

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1はもうこのキューの%2ではありません"

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1はもうこのチケットの%2ではありません"

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1はもうカスタムフィールド%2の値ではありません"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1は無効な生活環です"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1分"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1件の最近更新された記事"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1件の最新記事"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "担当者なしチケット%1件"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 件"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1の権限"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1を更新しました: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1を更新しました: 変更はありません"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1を更新しました"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1はグループチケットのすべてのメンバーを解決状態にします。"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1の%2オブジェクト"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1の%2の%3オブジェクト"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1 の GnuPG 鍵"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1 の現在のパスワード"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1のダッシュボード"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1 が保存した検索"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1:アタッチメントが指定されていません"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1チケット登録:%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1秒"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%1件の記事"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%1時間"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "%1'は無効なステータスです"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "「%1」は無効なクラス名です"

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "役割"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "システム"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "ユーザグループ"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "ユーザ"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(削除するにはボックスをチェック)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "削除するにはボックスをチェック"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(ボックスのチェックで告知受け取り先リストから削除)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(ボックスのチェックで告知受け取り先リストに追加)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(チケットIDまたはURLを空白文字で区切って入力してください)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(空白の場合、%1を指定します)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(カスタムフィールドがありません)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(メンバーなし)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(scripsがありません)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(テンプレートがありません)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(なし)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(コンマで区切った管理メールアドレスにこの更新情報のCcを送ります。更新情報を将来も受け取ることになります。)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(コンマで区切ったメールアドレスにこの更新情報のCcを送ります。更新情報を将来も受け取ることになります。)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(状態や操作に'ユーザ定義値'を選択する場合はこのフィールドを使います)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(メールを送りません)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(どれでも)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(空)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(名前なし)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(公開鍵がありません!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(値なし)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(値がありません)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(ひとつのチケットのみ)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(チケット%1件 解決待ち)"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(承認待ち)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(必須)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(件名なし)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-idという引数は推奨されません。また、--templateと同時には使えません"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transactionの引数は'first', 'last', 'all' のどれかです"

#: NOT FOUND IN SOURCE
msgid "1995-11-25 21:59:12"
msgstr "1995-11-25 21:59:12"

#: NOT FOUND IN SOURCE
msgid "1995-11-25T21:59:12Z"
msgstr "1995-11-25T21:59:12Z"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

iCal フィードには、あなたを認証する秘密のトークンが埋めこまれています。iCal フィードの URL が外部に漏洩した場合は、以下の 既存 iCal フィードを全て無効にして 新しく秘密のトークンを得ることができます。

" #: NOT FOUND IN SOURCE msgid "%1 - %2s" msgstr "%1 - %2秒" #: etc/initialdata:215 msgid "A blank template" msgstr "空のテンプレート" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "パスワードがセットされていないため、ユーザはログインできません。" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACEがみつかりません" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEは作成または削除のみ可能です。" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "かつ" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "個人情報" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "アクセス制御" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "アクション" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "アクション「%1」が見つかりません" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "操作は省略できない引数です" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "" #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "アクション" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "%1 を追加" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "管理Ccを追加する" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "ブックマークの追加" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Ccを追加する" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "コラムを追加" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "条件の追加" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "さらにファイルを追加" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "要求者を追加する" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "値の追加" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "全てのキューに適用される scrip を追加" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "選択したチケットにコメントまたは返信する" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "グループを追加" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "メンバーを追加する" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "新しいウォッチャーに追加する" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "上記の検索語を追加" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "上記の検索語を追加して検索実行" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "ユーザを追加" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "値の追加" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "オブジェクトのカスタムフィールド値の追加、削除、変更" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "%1 を このキューにおける %2 のメンバーに追加しました。" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "このキューに%1の責任者を追加しました" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "このチケットに%1の責任者を追加しました" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "メールアドレス" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "住所1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "住所2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "管理Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "管理/グローバル設定" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "管理Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "管理者Cc" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "詳細" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "高度な検索" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "アグリゲータ" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "すべてのダッシュボード" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "すべてのキュー" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "" #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "検索条件にマッチするキュー全て" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "すべてのチケット" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "適用" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "全体に適用" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "変更を適用" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "承認状況" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "承認状況" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "承認" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "4月" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "4" #: NOT FOUND IN SOURCE msgid "April" msgstr "4月" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "記事「%1」を削除しました" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "記事「%1」: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "記事「%1」" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "記事「%1」を作成しました" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "記事を削除しました" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "記事が見つかりません" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "記事" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "昇順" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "昇順" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "添付" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "添付ファイル" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "添付ファイル" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "ファイルの添付" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "添付ファイル%1は見つかりません" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "添付ファイルが作成されました" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "添付ファイル名" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "添付" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "添付ファイルは暗号化できません" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "属性を削除しました" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "8月" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "8" #: NOT FOUND IN SOURCE msgid "August" msgstr "8月" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "自動応答" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "リクエストを作成した人に自動返信" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "BCc" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "戻る" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "基本項目" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "本当に変更を保存しますか" #: etc/initialdata:214 msgid "Blank" msgstr "空" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "本文" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "ボールド" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "ブックマーク" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "ブックマークのチケット" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "ブックマークのチケット" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "簡略ヘッダー" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "まとめて更新" #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: NOT FOUND IN SOURCE msgid "Calendar" msgstr "カレンダ" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "保存した検索「%1」をロードできませんでした" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "システムユーザーを修正できません" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "名前なしにカスタムフィールドバリューの追加はできません" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "チケット自体にはリンクできません" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "ベースとターゲット両方を指定する事はできません" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "ユーザー: %1を作成できません" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "変更" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "パスワードを変更する" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "すべてをチェック" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "ボックスのチェックで削除" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "ボックスのチェックで権限を剥脱" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "下位チケット" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "市町村" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "クリア" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "すべてクリア" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "ウィンドウを閉じる" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "解決日" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "クローズしたチケット" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "コメント" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "コメントアドレス" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "コメントアドレス" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "コメント" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "コメント(作成者には送信されません)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "コメント(作成者には送信されません)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "このユーザーについての説明" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "コメントが追加されました" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "コメントが短くされました" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "条件" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "条件「%1」が見つかりません" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "システム設定" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "確認" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "内容" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Content-Type" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "" #: etc/initialdata:283 msgid "Correspondence" msgstr "" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "担当者変更ができませんでした " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "カスタムフィールドを作成できませんでした" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "カスタムフィールド %1 を作成できませんでした" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "グループを作成できませんでした" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "テンプレート %1 を作成できませんでした" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "チケットを作成できません。キューが設定されていません" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "ユーザーを作成できませんでした" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "該当するユーザーを作成または見つけることができませんでした" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "該当する責任者を見つけることができませんでした" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "グループを読み込めませんでした" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "このキューの責任者を%1にすることができませんでした" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "このチケットの責任者を%1にすることができませんでした" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "このキューの責任者%1を削除することができませんでした" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "このチケットの責任者%1を削除することができませんでした" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "グループにメンバーを追加できませんでした" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "トランザクション %1 を作成できませんでした" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "ダッシュボード「%1」は削除されません: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "責任者が見つかりませんでした" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "その値は見つかりませんでした" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "ユーザーデータベースから %1 をロードできませんでした。\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "ダッシュボード「%1」を読み込めませんでした: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "ダッシュボード「%1」を読み込めませんでした: %2" #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "グループ#%1 をロードできませんでした" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "グループ %1 を読み込めませんでした" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "リンクを読み込めませんでした" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "キューを読み込めませんでした" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "キュー#%1をロードできませんでした" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "キュー%1を読み込めませんでした" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "キュー「%1」をロードできませんでした" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "scrip#%1をロードできませんでした" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "テンプレート#%1をロードできませんでした" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "チケット'%1'を読み込めませんでした" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "国" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "作成" #: etc/initialdata:91 msgid "Create Tickets" msgstr "チケット作成" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "カスタムフィールドの作成" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "記事の作成" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "ダッシュボードの新規作成" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "グループの新規作成" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "個人グループの新規作成" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "チケットの新規作成" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "ユーザーの新規作成" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "キューの作成" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "テンプレートの作成" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "チケット作成" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "記事の作成" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "このscripテンプレートにもとづいてチケットを新規作成" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "チケットの作成" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "このキューにチケットを作成" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "オフラインでチケット作成" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "作成日" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "作成者" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "作成者" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "期間中に作成されたもの" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "期間中に作成されたチケット(ステータス別)" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "作成者" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "暗号技術" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "現在のリンク" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "現在のメンバー" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "現在の権限" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "現在の検索式" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "現在のウォッチャー" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "カスタムフィールド" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "カスタムフィールド %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "カスタムフィールド%1は値が入力されています。" #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "カスタムフィールド%1は値がありません。" #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "カスタムフィールド%1が見つかりません" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "カスタムフィールド「%1」" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "カスタムフィールド%2のカスタムフィールドバリュー%1が見つかりません" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "カスタムフィールドバリューは削除されません" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "カスタムフィールドバリューが見つかりません" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "カスタムフィールドバリューが削除されました" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "カスタマイズ" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "ダッシュボード" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "ダッシュボードを作成できませんでした: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "ダッシュボードを更新できませんでした: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "ダッシュボードを更新しました" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "ダッシュボード" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "日付" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "12月" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "12" #: NOT FOUND IN SOURCE msgid "December" msgstr "12月" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "デフォルトのキュー" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "デフォルトのリクエスト作成者" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "デフォルトのキュー" #: etc/initialdata:250 msgid "Default transaction template" msgstr "" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "デフォルト: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "権限の設定" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "権限委譲" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "削除" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "テンプレートの削除" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "記事「%1」の削除" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "チケットの削除" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "値の削除" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "%1 を削除しました" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "ダッシュボード %1 を削除しました" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "保存した検索の削除" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "このオブジェクトを削除すると指示の完全性がくずれます" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "このオブジェクトを削除すると指示の完全性が損なわれます" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "拒否" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "このチケットへの依存" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "%1 の依存を追加" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "%1 の依存を削除" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "%1 への依存を追加" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "%1 への依存を削除" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "依存しているチケット" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "詳細" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "降順" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "チケットの本文を以下に書き込んでください" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "詳細" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "表示" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "記事「%1」の表示" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "コラム表示" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "GNU GPL version 2 にて配布" #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "ページを定期的に更新しない" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "ダウンロード" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "終了予定日" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "オープンしたチケットをまとめて更新" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "編集" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "%1のカスタムフィールドを編集する" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "リンク関係を編集する" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "クエリの直接編集" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "検索の編集" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "システムテンプレートの編集" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "テキスト形式" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "キュー%1の設定編集" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "カスタムフィールド%1の編集" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "グループ%1のメンバー編集" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "個人用グループ%1のメンバー編集" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "ベースもしくはターゲットを指定してくださいなければなりません" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "お使いのemailアドレス" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "有効(このボックスのチェックを外すとこのカスタムフィールドは無効になります)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "有効(このボックスのチェックを外すとこのグループは無効になります)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "有効(このボックスのチェックを外すとこのキューは無効になります)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "" #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "" #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "リンクしたいチケットまたはURIを入力してください。入力する項目がいくつかある場合にはスペースで区切ってください。" #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "エラー" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "パラメーターのエラー Queue->AddWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "パラメーターのエラー Ticket->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "" #: bin/rt-crontool:356 msgid "Example:" msgstr "例えば、" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "その他の情報" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "記事を採取する" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "チケット「%1」から新しい記事を採取する" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "'特権のある'ユーザーの擬似グループの検索が失敗しました" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "'特権のない'ユーザーの擬似グループの検索が失敗しました" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "2月" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "2" #: NOT FOUND IN SOURCE msgid "February" msgstr "2月" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "ファイル名" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "ファイル名" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "最終優先度" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "グループをさがす:" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "関与者をさがす" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "チケットをさがす" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:651 msgid "First" msgstr "先頭" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "変更を上書きします" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "表示フォーマット" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "%1件のチケットを発見" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "金" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "金" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "金曜日" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "すべてのヘッダー" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "General" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "担当者変更: %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "グローバル" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Go" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Go!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "チケットに移動" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "グラフ表示" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "グラフ設定" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "グラフは表示できません。" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "グループ" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "グループでの権限" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "グループにはすでにメンバーがいます: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "グループが作成されました" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "グループが見つかりません" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "グループ" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "グループは彼らのメンバーにはなれません" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "このユーザーを含むグループ" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "こんにちは!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "こんにちは、%1さん" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "更新履歴" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "記事「%1」の履歴" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "グループ%1の履歴" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "ユーザー%1の履歴" #: NOT FOUND IN SOURCE msgid "Home" msgstr "ホーム" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "ホームページの再読み込み間隔" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "自宅電話" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "ホームページ" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "時間" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "時間" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "" #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "個人識別情報" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "" #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "キューの指定がなければ、このキューでチケットを作成" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "変更を反映するにはボタンを押してください" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "記事を含める" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "利用停止したキューもリストに含める" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "利用停止したユーザーも検索に含める" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "入力エラー" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "RTのインストール" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "%1 には無効な値です" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "無効なグループタイプです" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "権限がありません" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid lifecycle name" msgstr "無効な生活環です" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "無効なキューです" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "権限が無効です" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "%1 には無効な値です" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "カスタムフィールドに無効な値です" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "ステータスには無効な値です" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "イタリック" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "1月" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "1" #: NOT FOUND IN SOURCE msgid "January" msgstr "1月" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "7月" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "7" #: NOT FOUND IN SOURCE msgid "July" msgstr "7月" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "総合ビュー" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "6月" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "6" #: NOT FOUND IN SOURCE msgid "June" msgstr "6月" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "言語" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "最後" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "最終コンタクト" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "最終コンタクト" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "最終更新日" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "残り時間" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "このユーザーをRTにアクセス可能にします" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "このユーザーの権限を承認します" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Let's go!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "生活環" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "リンク" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "すでにリンクしています" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "リンクが作成されませんでした" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "リンクが見つかりません" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "リンクチケット #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "リンク" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "読み込み" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "ロードしているperlモジュール" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "保存した検索「%1」を読み込みました" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "住所" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "\"%1\"でログインしています" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "ログアウトしました" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "ログイン" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "ログアウト" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "担当者を設定" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "ステータスを設定" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "期限日を設定" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "解決した日を設定" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "開始した日を設定" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "開始する日を設定" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "指示した日を設定" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "優先度を決める" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "キューを設定" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "件名を設定" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "グループとメンバーの管理" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "保存されたグラフの管理" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "3月" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "3" #: NOT FOUND IN SOURCE msgid "March" msgstr "3月" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "5月" #: NOT FOUND IN SOURCE msgid "May." msgstr "5" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "メンバー %1 を追加しました" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "メンバー %1 を削除しました" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "追加メンバー: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "削除メンバー" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "削除されなかったメンバー" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "メンバー:" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "メンバー" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "%1 のメンバー追加" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "%1 のメンバー削除" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "メンバー所属" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "ユーザ %1 の所属" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "結合が成功しました" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "結合が失敗しました。有効なIDが設定できませんでした" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "次のチケットに結合" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "本文" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "メッセージボックスの高さ" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "メッセージボックスの横幅" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "このチケットのメッセージは以下の宛先には送信されなくなります:" #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "分" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "携帯" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "メンバー更新" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "権限を変更" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "記事「%1」を更新" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "#%1の期日を変更" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "チケット#%1の期日を変更" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "グローバルグループの権限を変更" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "グローバルグループの権限を変更" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "グローバルユーザーの権限を変更" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "グローバルユーザーの権限を変更" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "%1のグループ権限を修正" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "キュー%1のグループ権限を修正" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "キュー%1の関与者を変更" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "チケット#%1の関与者を変更" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "テンプレート%1を変更" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "ダッシュボード「%1」を更新" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "グループ%1を変更" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "ダッシュボード「%1」の予約購読を更新" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "ユーザー%1を変更" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "チケット# %1を変更" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "チケット#%1を変更" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "チケットの修正" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "グループ%1のユーザー権限を変更" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "キュー%1のユーザー権限を変更" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "月" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "月" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "月曜日" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "月曜から金曜" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "%1 について" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "'名前'の属性を指定してください" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "私の %1 チケット" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "私の一日" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "私のリマインダ" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "担当チケットの承認状況" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "私のダッシュボード" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "私のリマインダ" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "私が保存した検索" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "名前" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "現在使っている名前" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "新規" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "新しい記事" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "新しいダッシュボード" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "新しいリンク" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "新規パスワード" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "新規検索" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "%1 の新規・オープンチケット" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "新規ダッシュボード" #: NOT FOUND IN SOURCE msgid "New group" msgstr "新規グループ" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "新規パスワード" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "新しいパスワード情報が送られました" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "新規リマインダ作成:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "新しい権限" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "新規チケット" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "新しいチケットはありません" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "新規に追加されたユーザー" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "新規ウォッチャー" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "次" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "ニックネーム" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "いいえ" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "カスタムフィールドがありません" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "グループが定義されません" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "キューが定義されません" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "RTユーザーが見つかりません。RT管理者に相談してください。\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "テンプレートがありません" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "このユーザーについてのコメントはありません" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "ダッシュボードはありません" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "%1 詳細情報がありません" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "グループが指定されていません" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:851 msgid "No password set" msgstr "パスワードが設定されません" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "キューを作成する許可がされていません" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "そのチケットを表示する許可がありません" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "記事を更新する許可がされていません" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "記事を表示する許可がされていません" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "更新されたチケットを見る許可がありません" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "責任者が指定されていません" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "責任者が選択されていません" #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "検索基準にあったキューが見つかりません" #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "権限が許可されていません" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "操作のための検索ができません" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "件名なし" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "チケットが見つかりません。" #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "トランザクションタイプが指定されていません" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "検索基準にあったユーザーが見つかりません" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "なし" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "未指定" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "ログインしていません" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "未指定" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "未実装" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "付記" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "お知らせを送ることができませんでした" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "他の宛先に通知" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "他の宛先にコメント形式で通知" #: etc/initialdata:41 msgid "Notify Owner" msgstr "" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "11月" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "11" #: NOT FOUND IN SOURCE msgid "November" msgstr "11月" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "10月" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "10" #: NOT FOUND IN SOURCE msgid "October" msgstr "10月" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "オフライン" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "オフライン編集" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "オフラインからアップロード" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "" #: etc/initialdata:143 msgid "On Comment" msgstr "" #: etc/initialdata:115 msgid "On Correspond" msgstr "" #: etc/initialdata:104 msgid "On Create" msgstr "" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "" #: etc/initialdata:172 msgid "On Queue Change" msgstr "" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "" #: etc/initialdata:178 msgid "On Resolve" msgstr "" #: etc/initialdata:149 msgid "On Status Change" msgstr "" #: etc/initialdata:109 msgid "On Transaction" msgstr "" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "今回のみ Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "今回のみ Cc" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "この日よりも後に作成された承認のみ表示 %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "この日よりも前に作成された承認のみ表示 %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "チケットオープン" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "オープンする" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "チケットオープン" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "オプション" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "並びかえ順番" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "組織" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "コメントについてのメール送信を記録しました" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "メール送信を記録しました" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "時間が過ぎたら、優先度を以下に変更" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "チケットを担当する" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "担当者" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "担当者は%1から%2に変更されました" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "担当者は強制的に%1から%2に変更されました" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "ページ" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "ポケットベル" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "ポケットベルの電話番号" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "上位チケット" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "パスワード" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "パスワード通知" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "パスワード: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:463 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "関与者" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perlの設定情報" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "許可が下りませんでした" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "許可が下りませんでした" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "個人グループ" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "個人グループ" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "個人グループ:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "電話番号" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "プレファレンス" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "設定を保存しました。" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "前" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "優先度" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "プライバシー情報" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "プライバシー情報:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "秘密鍵" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "特権ステータス: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "特権のあるユーザー" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "クエリ" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "クエリ" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "クエリ作成" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "クエリ:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "キュー" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "キュー %1 はみつかりません" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "キューの名前" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "キューはすでに存在しています" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "キューを作成できませんでした" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "キューを読み込めませんでした" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "キューが作成されました" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "キューが見つかりません" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "キュー" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "担当キュー情報" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "管理Ccのキュー" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "かんたん検索" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "チケット新規作成" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "%2のRT %1" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT管理" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "RTの設定" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT エラー" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RTの各種変数" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT for %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "このフォームではあなたがチケットにつけた件名は検索されません." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "実名" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "名前" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "受取先" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "参照されているチケット" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "参照しているチケット" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "表示の更新" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "ページを%1分おきに更新する" #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "リマインダ" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "リマインダ「%1」を追加しました" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "リマインダ通知" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "チケット#%1のリマインダ" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "管理Ccを削除する" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "ブックマークの削除" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Ccを削除する" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "作成者を削除する" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "返信" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "返信アドレス" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "リクエストを作成した人に返信" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "チケットに返答する" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "レポート作成" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "作成者" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "作成者" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "リセット" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "デフォルトの設定に戻す" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "住所" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "解決済みにする" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "解決済み" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "解決済み(所有者別)" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "解決済み(期間)" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "期間中に解決されたチケット(所有者別)" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "解決済みチケット(所有者別)" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "結果" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "パスワードの再入力" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "権限が委託されました" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "権限が委譲されました" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "権限がロードされました" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "権限を無効にできませんでした" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "権限が見つかりませんでした" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "権限がロードできませんでした" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "権限が無効になりました" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "役割" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "枠の中に表示する行数" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "一度に表示する行数" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "土" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "土" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "土曜日" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "保存する" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "変更を保存" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "設定を保存" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "%1の%2 を保存しました" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "保存したグラフ" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "保存した検索" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "検索" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "検索設定" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "承認状況の検索" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "チケットの検索" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "チケットを検索するには、チケットのid番号, キューの名称, 所有者のユーザ名, リクエスト作成者のemailアドレスを入力してください." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "検索オプション" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "%1 の検索結果" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "検索結果の再読み込み間隔" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "チケットの全文検索は時間がかかりますが、もしも必要な場合は、 fulltext:検索語 と記述してください。" #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "選択" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "グループの選択" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "キューの選択" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "ユーザーの選択" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "ダッシュボードの選択" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "グループの選択" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "\"RT at a glance\" に表示するキューを選択してください" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "9月" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "9" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "9月" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "基本設定" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "表示する" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "コラム表示" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "結果を見る" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "承認されたリクエストを表示する" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "基本項目" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "拒否されたリクエストを表示する" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "詳細情報" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "保留しているリクエストを表示する" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "他の承認待ちのリクエストを表示する" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "シュレッダー" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "サイドバー" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "署名" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "シンプル検索" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "サイズ" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "並びかえ" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "並びかえ" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "表形式" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "開始した日" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "開始予定日" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "都道府県" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "ステータス" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "ステータスが%1から%2に変更されました" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "担当者変更" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "%1から担当者を変更しました" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "%1から担当者を変更しました " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "表示スタイル" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "件名" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Submit" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "予約購読をする" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "ダッシュボード「%1」に予約購読をする" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "ダッシュボードに予約購読をする" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "ダッシュボード「%1」に予約購読をしました" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "予約購読" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "予約購読することができませんでした: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "日" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "日" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "日曜日" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "" #: NOT FOUND IN SOURCE msgid "System" msgstr "システム" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "システムの設定情報" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "システムエラー" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "システムエラー: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "システムツール" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "システムエラーです。権限が委任されていません" #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "システムエラーです。権限が授与されていません" #: NOT FOUND IN SOURCE msgid "System groups" msgstr "システムグループ" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "担当する" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "チケットを担当する" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "担当" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "テンプレート" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "テンプレート #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "テンプレート「%1」が見つかりません" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "テンプレートを解析しました" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "テンプレート" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "このカスタムフィールドはその値をうけつけません" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "同じ値です" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "このキューの責任者は%1ではありません" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "このチケットの責任者は%1ではありません" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "そのキューは存在しません" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "未解決の依存関係が存在します" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "そのユーザーはすでにチケットを所有しています" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "そのユーザーは存在しません" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "そのユーザーはすでに特権が与えられています" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "そのユーザーにはすでに特権がありません" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "そのユーザーは今特権を与えられました" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "そのユーザーは今特権を失いました" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "そのユーザーはこのキューではチケットを所有していない可能性があります" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "それは数字のIDではありません" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "基本項目" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "暗号鍵は期限切れです" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "新しい値が設定されました。" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "ページが見つかりません" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "テーマ" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "それらのコメントは実際ユーザーには見ることができません" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "" #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "このメッセージは以下の宛先に送信されます:" #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "このトランザクションにはコンテンツがありません" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "このユーザーの最優先チケット%1件" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "木" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "木" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "木曜日" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "チケット #%1 更新(総合ビュー): %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "チケット #%1 %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "チケット#%1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "チケット %1がキュー '%2'で作成されました" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "チケット %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "チケットヒストリー # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "チケット検索" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "チケットコンテンツ" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "チケットコンテンツタイプ" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "チケット表示" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "チケット情報" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "チケット" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "チケット %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "所要時間(予想)" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "残り時間" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "作業時間" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "表示時間" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "使った時間" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "タイムゾーン" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "タイトル" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "サポート、トレーニング、カスタム開発またはライセンス取得については、%1までお問い合わせください" #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "表示ツール" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "合計" #: etc/initialdata:249 msgid "Transaction" msgstr "" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "トランザクション%1が消去されました" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "トランザクションが作成されました" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "トランザクションは変更されることはありません" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "火" #: NOT FOUND IN SOURCE msgid "Tue Dec 25 21:59:12 1995" msgstr "Tue Dec 25 21:59:12 1995" #: NOT FOUND IN SOURCE msgid "Tue, 25 Dec 1995 21:59:12 -0300" msgstr "Tue, 25 Dec 1995 21:59:12 -0300" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "火" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "火曜日" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "タイプ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "タイプは%1から%2に変更されました" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "記事が見つかりません" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "ダッシュボード「%1」に予約購読をできませんでした: 許可が下りませんでした" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unixログイン" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "不明なエンコーディング %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "無制限" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "名前なしのダッシュボード" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "担当者未定" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "更新" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "グラフの更新" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "チケットの更新" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "タイプの更新" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "フォーマットを更新して検索" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "複数のチケットを更新" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "更新内容は記録されませんでした" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "チケットを更新する" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "チケット #%1 を更新" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "チケット更新 #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "最終更新日時" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "保存した検索「%1」を更新しました" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "アップロード" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "変更を行う" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "デフォルト設定「%1」を使う" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "デフォルト設定(%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "ユーザー権限" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "ユーザーを作成することができませんでした: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "ユーザーが作成されました" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "ユーザー定義グループ" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "ユーザ定義グループ" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "名前" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "ユーザー" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG メッセージ作成" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "ウォッチャー" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "水" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "水" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "水曜日" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "週間ダイジェスト" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "RT へようこそ!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "今日行った作業" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "RTって何?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:110 msgid "When anything happens" msgstr "" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "抹消" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "仕事" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "累積作業時間" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "はい" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "すでにこのチケットを担当しています" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "" #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "認証されていません" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "変更できるのは自分が担当しているチケットか担当者のいないチケットだけです。" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "担当者なしのチケットを担当してください" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "キュー%2で%1件のチケットがヒットしました" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "RTからログアウトしました" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "指定のキューでチケット作成の許可がありません" #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "指定のキューでリクエストの作成ができません" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "またのログインをお待ちしています" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "あなたの現在のパスワード" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "パスワードが設定されていません" #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "あなたのリクエストは承認されました。" #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "あなたのリクエストは拒否されました。" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "あなたの名前またはパスワードが間違っています" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "郵便番号" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[なし]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "が以下より後である"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "%1に権限委譲"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "棒"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "が以下より前である"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "すべてをチェック/チェック解除する"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "クローズする"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "本体設定"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "毎日"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "日"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "削除"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "含まない"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "ダウンロード"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "等しい"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "エラー:下に移動できません"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "エラー:左に移動できません"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "エラー:上に移動できません"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "エラー: 削除するものがありません"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "エラー: 移動するものがありません"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "エラー: 切り替えられるものがありません"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "毎"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "プラグイン実行に成功しました"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "詳細"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "より大きい"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "グループ"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "グループ'%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "時間"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "ID"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "一致する"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "一致しない"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "鍵が利用できない"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "鍵が期限切れ"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "鍵が無効"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "左から右"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "より小さい"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "ある程度"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "含む"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr "分"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "分"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "毎月"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr "月"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr ""

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "新規"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "いいえ"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "名前なし"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "なし"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "等しくない"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "何もしない"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "項目の削除に成功しました"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "が以下である"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "オープン"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "オープン/クローズ"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "その他…"

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "ユーザー '%2' のパーソナルグループ '%1'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "円"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "プラグインが空のリストを返しました。"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "キュー %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "拒否"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "解決済み"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "右から左"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "秒"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "承認タブを表示"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "設定タブを表示"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "サイト設定"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "保留"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "要約"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "システム %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "システムグループ '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "呼び出しているコンポーネントはなぜ次のようなことが起こるのか特定できませんでした"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "コメントメールのFromやReply-Toのヘッダーにリストアップされるデフォルトアドレス"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "対応メールのFromやReply-Toのヘッダーにリストアップされるデフォルトアドレス"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "チケット #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "上から下へ"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "ユーザ"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "ユーザー %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "詳細"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "毎週"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "週間"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "webサーバが利用しているポート番号は?(例えば、8080)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "ヘッダーつき"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "年"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "はい"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/nb.po0000664000175000017500000122751012262650742013741 0ustar  chmrrchmrr#
# Karl Ove Hufthammer , 2010.
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:23+0000\n"
"Last-Translator: Karl Ove Hufthammer \n"
"Language-Team: Norwegian Bokmål \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (mangler offentlignøkkel)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (ikke tiltrodd)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: NOT FOUND IN SOURCE
msgid "#%1"
msgstr "#%1"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "%1: %2"

#: NOT FOUND IN SOURCE
msgid "$1"
msgstr "$1"

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$prefix %1"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 %2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %3. %2 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %3. %2 %6 %4.%5"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3. %2 %7 %4.%5.%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 lagt til"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 siden"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 «%2» endret til «%3»"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 slettet"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 slettet."

#: NOT FOUND IN SOURCE
msgid "%1 %2 of group %3"
msgstr "%1 %2 av gruppen %3"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 endret navn til %3"

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 lagret"

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 «%2» oppdatert"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1: %2 med malen «%3»"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 denne saken\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) av %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (uendret)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (fra panel %2)"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "%1 - %2 vist"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 – endre innstillingen «LogToScreen»"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 – et argument som skal sendes til %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 – send statusoppdateringer til standard ut"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Spesifiser id på malen du ønsker å bruke"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 – om du vil bruke «first» (første), «last» (siste) eller «all» (alle) transaksjoner"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 – navn eller ID til malen(e) du vil bruke"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 – handlingsmodulen du vil bruke"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 – kommadelt liste over transaksjonstypene du vil bruke"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 – betingelsesmodulen du vil bruke"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 – søkemodulen du vil bruke"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1-utforminger"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996–%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "Utløserhandling %1 lastet"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "«%1» lagt til som verdi for «%2»"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on"
msgstr "%1 alias trenger en ReferanseId å jobbe mot"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on "
msgstr "%1 alias trenger en saksnummer å jobbe mot "

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on (from %2) %3"
msgstr "%1 alias trenger et saksnummer å jobbe mot (fra %2) %3"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 finnes fra før, og har RT-tabellene på plass, men inneholder ikke RT-metadata. Steget «Gjør klar database», som kommer senere, kan automatisk sette inn de nødvendige metadataene i databasen. Hvis dette er i orden, kan du trykke «Tilpass detaljer» for å fortsette å sette opp RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 finnes fra før, men inneholder ikke tabeller eller metadata for RT. Steget «Gjør klar database», som kommer senere, kan automatisk sette inn de nødvendige tabellene og metadataene i databasen. Hvis dette er i orden, kan du trykke «Tilpass detaljer» for å fortsette å sette opp Request Tracker."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 ser ut til å være et lokalt objekt, men finnes ikke i databasen"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 ser alt ut til å være klargjort. Det er derfor ikke nødvendig å opprette tabeller eller sette inn metadata, og du kan fortsette å tilpasse Request Tracker ved trykke «Tilpass detaljer»."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 av %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 endret fra %2 til %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

# Har ikke suffikset -diagram, da dette er flyttet til %1-tekstene (for eksempel «Stolpediagram» i stedet for «Stolpe»).
#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 av %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1-kopi"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1-kjerneoppsett"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 kunne ikke settes til %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't init a transaction (%2)\\n"
msgstr "%1 kunne ikke starte en transaksjon (%2)\\n"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 kunne ikke sette statusen til løst. RT-databasen kan være inkonsistent."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 opprettet"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 slettet"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 deaktivert"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 finnes ikke."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 aktivert"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 høyest prioriterte saker jeg eier"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "Mine %1 høyst prioriterte saker..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "Mine %1 høyst prioriterte forespørsler..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 er et verktøy for å behandle saker fra eksterne verktøy, som cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 er et verktøy, ment for å bli kjørt via cron, som sender alle avviste RT-varslinger som en samle-e-post for hver bruker."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 er en adresse RT tar imot e-post på. Hvis du la henne til som en «%2», ville det oppstå en e-postløkke."

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 er ikke lenger en %2 for denne køen"

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 er ikke lenger en %2 for denne saken"

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "Fleksifeltet %2 har ikke lenger verdien %1"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 er ikke et gyldig saksnummer."

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 minutt"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 nyeste saker uten eier"

#: NOT FOUND IN SOURCE
msgid "%1 not shown"
msgstr "%1 vises ikke"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1-objekt"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 rettigheter"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1-nettstedoppsett"

#: NOT FOUND IN SOURCE
msgid "%1 succeeded\\n"
msgstr "%1 var velykket\\n"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "Oppdatering av %1: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "Oppdatering av %1: ingenting endret"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 oppdatert"

#: NOT FOUND IN SOURCE
msgid "%1 was created without a CurrentUser\\n"
msgstr "%1 ble opprettet uten en aktiv bruker\\n"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 vil løse alle medlemmer av en løst gruppesak."

#: NOT FOUND IN SOURCE
msgid "%1 will stall a [local] BASE if it's dependent [or member] of a linked up request."
msgstr "%1 vil stoppe en [lokal] BASE hvis den er avhengig av/medlem av en tilkoblet sak."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1 sine %2 objekt"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1 sine %2 sine %3 objekt"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1 sine utforminger"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1 sine lagrede søk"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: ingen vedlegg oppgitt"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1.%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1.%2.%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Ny sak i%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1 byte"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1 KiB"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,time,timer)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "«%1» er en ugyldig statusverdi"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "'%1' not a recognized action. "
msgstr "'%1' er ikke en kjent handling "

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check box to delete group member)"
msgstr "(Merk for å slette gruppemedlem)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(Merk for å slette Scrip)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Kryss av for å fjerne.)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Merk boksene for å slette)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Kryss av i feltene for å slå av varsling til mottakerne.)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Kryss av i feltene for å slå på varsling til mottakerne.)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(skriv inn saksnummer eller nettadresser, skilt med mellomrom)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(settes til %1 hvis tom)"

#: NOT FOUND IN SOURCE
msgid "(No Value)"
msgstr "(Ingen Verdi)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(ingen fleksifelt)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(ingen medlemmer)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(ingen utløsere)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(ingen maler)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(ingen)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Sender en kopi av denne oppdateringen til en kommaseparert liste med epostaddresser. Endrer ikke hvem som vil motta fremtidige oppdatreinger.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Sender en kopi av denne oppdateringen til en kommaseparert liste med epostaddresser. Endrer ikke hvem som vil motta fremtidige oppdateringer.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Sender en kopi av denne oppdateringen til en kommaseparert liste av administrative epostaddresser. Disse vil vil motta fremtidige oppdateringer.)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Sender en kopi av oppdateringen til valgte administrative e-postadresser (en kommadelt liste). Disse personene vil også motta framtidige oppdateringer.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Sender en kopi av denne oppdateringen til en komma-separert liste av epostaddresser. Endrer ikke hvem som vil motta fremtidige oppdateringer.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Sender en kopi av denne oppdateringen til en kommaseparert liste med epost-addresser. Endrer ikke hvem som vi motta fremtige utfordrer dere nå."

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Sender en kopi av dette oppdateringen til en kommaseparert liste med epostaddresser. Disse vill motta fremtidige oppdateringer.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Sender en kopi av oppdateringen til valgte e-postadresser (en kommadelt liste). Disse personene vil også motta framtidige oppdateringer.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Bruk disse feltene når du velger «Tilpasset» for en betingelse eller en handling.)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(e-post blir ikke sendt)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(vilkårlig)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(tom)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(navn ikke oppgitt)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(mangler offentlignøkkel)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(ingen overskrift)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(mangler verdi)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(mangler verdier)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(bare én sak)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(venter på %quant(%1,annen sak,andre saker))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(venter på godkjenning)"

#: NOT FOUND IN SOURCE
msgid "(pending other tickets)"
msgstr "(venter på andre saker)"

#: NOT FOUND IN SOURCE
msgid "(requestor's group)"
msgstr "(kundens gruppe)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(obligatorisk)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(tiltronivå: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(uten navn)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(ikke tiltrodd)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "–"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "«--template-id» er et utdatert argument, og kan ikke brukes med «--template»"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "«--transaction»-argumentet kan kun ta verdiene «first», «last» eller «all»"

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I own..."
msgstr "Mine 25 høyst prioriterte saker..."

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I requested..."
msgstr "Mine 25 høyst priorterte forespørsler..."

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ticket-:Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Alle iCal-adressene inneholder en hemmelig kode som identifiserer deg. Hvis andre får kjennskap til en av disse adressene, kan du få generert en ny kode. Merk at alle iCal-adressene nedenfor da ikke lenger vil fungere.

" #: NOT FOUND IN SOURCE msgid "??????" msgstr "??????" #: etc/initialdata:215 msgid "A blank template" msgstr "En tom mal" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Et passord var ikke oppgitt, så brukeren kan ikke logge inn" #: NOT FOUND IN SOURCE msgid "ACE Deleted" msgstr "ACE slettet" #: NOT FOUND IN SOURCE msgid "ACE Loaded" msgstr "ACE lastet" #: NOT FOUND IN SOURCE msgid "ACE could not be deleted" msgstr "ACE kunne ikke slettes" #: NOT FOUND IN SOURCE msgid "ACE could not be found" msgstr "fant ikke ACE" #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "Fant ikke ACE" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "Du kan bare opprette eller slette ACE-er." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "OG" #: NOT FOUND IN SOURCE msgid "Aborting to avoid unintended ticket modifications.\\n" msgstr "Avbryter for å ungå uånsket saksendring" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Om meg" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Tilgangskontroll" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Handling" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Handling %1 finnes ikke" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Fant ikke handlingen «%1»" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Handling skrevet." #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Handling utført.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Handling er et obligatorisk argument" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Handling forberedt …" #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Legg til admin-kopimottaker" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Legg til bokmerke" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Legg til kopimottaker" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Legg til kolonner" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Legg til søkekriterier" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Legg til flere filer" #: NOT FOUND IN SOURCE msgid "Add Next State" msgstr "Legg til neste status" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Legg til innmelder" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Legg til verdi" #: NOT FOUND IN SOURCE msgid "Add a Scrip to this queue" msgstr "Legg til Scrip i denne køen" #: NOT FOUND IN SOURCE msgid "Add a Scrip which will apply to all queues" msgstr "Legg til et Scrip som gjelder for alle køer" #: NOT FOUND IN SOURCE msgid "Add a keyword selection to this queue" msgstr "Legg til et nøkkelordvalg på denne køen" #: NOT FOUND IN SOURCE msgid "Add a new a global scrip" msgstr "Legg til et globalt Scrip" #: NOT FOUND IN SOURCE msgid "Add a scrip to this queue" msgstr "Legg til et Scrip til denne køen" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Legg til en utløser som vil gjelde alle køene" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Legg til kommentarer eller svar til de valgte sakene" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Legg til medlemmer" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Legg til overvåkere" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Legg til vilkårene" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Legg til vilkårene og søk" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Legg til verdier" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Legg til, fjern eller endre fleksifeltverdier for objekt" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: NOT FOUND IN SOURCE msgid "AddNextState" msgstr "AddNextState" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "%1 lagt til for køen" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "%1 lagt til for saken" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adresse 1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adresse 2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin-kopimottaker" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Admin-kommentar" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Admin-svar" # «Velg kø» er rett oversettelse, og nødvendig for å få konsekvente overskrifter. #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Velg kø" #: NOT FOUND IN SOURCE msgid "Admin users" msgstr "Adminbrukere" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administrering / globalt oppsett" #: NOT FOUND IN SOURCE msgid "Admin/Groups" msgstr "Admin/Grupper" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "Admin/Køer/Grunnleggende" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdminAllePersonligeGrupper" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminKopimottakerGruppe" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "Admin-kopimottaker" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminKopimottakere" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: NOT FOUND IN SOURCE msgid "AdminComment" msgstr "AdminKommentar" #: NOT FOUND IN SOURCE msgid "AdminCorrespondence" msgstr "AdminKorrespondanse" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminFleksifelt" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: NOT FOUND IN SOURCE msgid "AdminCustomFields" msgstr "AdminFleksifelt" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGruppe" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGruppemedlemskap" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminEgnePersonligeGrupper" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminKø" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminBrukere" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Admin-kopimottaker" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administratorpassord" #: NOT FOUND IN SOURCE msgid "Admins" msgstr "Admin" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avansert" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "Avansert Søk" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "Alder" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Sammenstilling" #: NOT FOUND IN SOURCE msgid "Alias" msgstr "Alias" #: NOT FOUND IN SOURCE msgid "Alias for" msgstr "Alias for" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Alle forespørsler godkjent" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: NOT FOUND IN SOURCE msgid "All Custom Fields" msgstr "Alle Fleksifelt" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Alle køer" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Alle iCal-adressene inneholder en hemmelig kode som identifiserer deg. Hvis andre får kjennskap til en av disse adressene, kan du få generert en ny kode. Merk at alle iCal-adressene nedenfor da ikke lenger vil fungere." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Alle køer i samsvar med søkekriteriene" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Allerede kryptert" #: NOT FOUND IN SOURCE msgid "Always sends a message to the requestors independent of message sender" msgstr "Send alltid en melding til kunden uavhengig av meldingssender" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Og/eller" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Tildelt" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Gjelder" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Gjelder alle objektene" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Bruk" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Bruk globalt" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Ta endringene i bruk" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Godkjenning" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Godkjenning %1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Godkjenning %1: klarte ikke lagre merknader, grunnet systemfeil" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Godkjenning %1: merknader lagret" #: NOT FOUND IN SOURCE msgid "Approval Details" msgstr "Godkjenning - Detaljer" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Godkjent" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Godkjenning klar for eier" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Godkjenning avslått" #: NOT FOUND IN SOURCE msgid "Approval diagram" msgstr "Godkjenningsdiagram" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Godkjenn" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Godkjenners notater: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "april" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Apr." #: NOT FOUND IN SOURCE msgid "April" msgstr "april" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "stigende" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Stigende" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Tilordne og fjern fleksifelt" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "TilordneFleksifelt" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Legg ved" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Legg ved fil" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Vedlagt fil" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Vedlegg" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Klarte ikke laste vedlegget «%1»" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Vedlegg opprettet" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Vedleggsnavn" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Vedlegg" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Kryptering av vedlegg er slått av" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Attributt fjernet" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "aug." #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Aug." #: NOT FOUND IN SOURCE msgid "August" msgstr "august" #: NOT FOUND IN SOURCE msgid "AuthSystem" msgstr "AutSystem" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Autosvar" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Autosvar til innmelder" #: NOT FOUND IN SOURCE msgid "AutoreplyToRequestors" msgstr "AutosvarTilKunde" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Tilgjengelig" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Blindkopi" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Tilbake" #: NOT FOUND IN SOURCE msgid "Bad PGP Signature: %1\\n" msgstr "Ugyldig PGP-signatur: %1\\n" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "Ugyldig vedleggsid. Kunne ikke finne vedlegg '%1'\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "Ugyldig data i %1" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Ugyldig offentligstatus for attributtet %1" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "Ugyldig transaksjonsnummer for vedlegg. %1 skulle vært %2\\n" # Dette *er* rett / ei god omsetting for dette omgrepet er i brukargrensesnittet. #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Detaljer" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Bcc" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Husk å lagre endringene dine" #: NOT FOUND IN SOURCE msgid "Begin Approval" msgstr "Begynn Godkjenning" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC" #: etc/initialdata:214 msgid "Blank" msgstr "Tom" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Hovedflate" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Halvfet" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Bokmerke" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "URL som kan brukes som bokmerke for dette søket" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Bokmerkede saker" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Kort meldingshode" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Masseoppdater" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Masseoppdatering av saker" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Kjøp kundestøtte" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Som standard vil RT bruke tidssonen for maskinen programmet kjører på. Her kan du velge en global standardverdi for vising av dato og klokkeslett. Brukerne kan eventuelt velge en annen tidssone i innstillingene sine." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "Kopigruppe" # CF = Custom Field #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "FF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: NOT FOUND IN SOURCE msgid "Calendar" msgstr "Kalender" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Klarte ikke hente det lagrede søket «%1»" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Kan ikke endre systembrukere" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Kan primærobjektet se køen" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Kan ikke legge verdi til et fleksifelt uten navn" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Fant ikke noen samlingsklasse for «%1»" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Fant ikke et lagret søk å arbeide med" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Kan ikke koble en sak til seg selv" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "Kan ikke flette inn i en flettet sak. Denne meldingen bør ikke forekomme" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Klarte ikke lagre %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Klarte ikke lagre søket" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Kan ikke velge både kilde og mål" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Kan ikke opprette saker i en deaktivert kø" #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Klarte ikke opprette brukeren: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategorier basert på" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategori" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Kategori ikke valgt" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Kopimottaker" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Kopimottakere" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Endre" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Endre godkjenningssak til status «åpen»" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Bytt passord" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Merk alle" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontroller databasetilgang" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Kontroller databaseautentisering" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Kryss av for å fjerne" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Kryss av for å trekke tilbake rettighet" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Undersaker" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Velg databasemotor" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Poststed" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Tøm" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tøm alle" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Trykk «Fullfør installering» for å avslutte veiviseren." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Trykk «Gjør klar database» for å opprette RT-databasen og sette inn de nødvendige metadataene. Dette kan ta noen minutt." #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Lukk vindu" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Lukket" #: NOT FOUND IN SOURCE msgid "Closed Tickets" msgstr "Lukkede Saker" #: NOT FOUND IN SOURCE msgid "Closed requests" msgstr "Lukkede forespørsler" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Lukkede saker" #: NOT FOUND IN SOURCE msgid "Code" msgstr "Kode" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Komboboks: velg eller skriv inn flere verdier" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Komboboks: velg eller skriv inn enkeltverdi" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Komboboks: velg eller skriv inn opptil %1 verdier" #: NOT FOUND IN SOURCE msgid "Command not understood!\\n" msgstr "Kunne ikke tolke kommando!\\n" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Kommenter" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Kommentaradresse" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Kommentaradresse" #: NOT FOUND IN SOURCE msgid "Comment not recorded" msgstr "Kommentaren ble ikke lagret" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Kommenter saker" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "KommentarAdresse" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "KommenterSak" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentarer" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Kommentar (blir ikke sendt til innmelderen)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Kommentar (blir ikke sendt til innmelderen)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "Kommentarer til %1" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Kommentarer om brukeren" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "La til kommentarer" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Utførelse klargjort" #: NOT FOUND IN SOURCE msgid "Compile Restrictions" msgstr "Kompilatorrestriksjoner" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Betingelse" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Fant ikke betingelsen «%1»" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Betingelse er et obligatorisk argument" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Betingelsen oppfyller …" #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Forutsetning ikke funnet" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Betingelse, handling og mal" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Oppsettfila %1 er låst" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Systemoppsett" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Bekreft" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Koblet til" #: NOT FOUND IN SOURCE msgid "ContactInfoSystem" msgstr "KontaktInfoSystem" #: NOT FOUND IN SOURCE msgid "Contacted date '%1' could not be parsed" msgstr "Kontatdato '%1' kunne ikke tolkes" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Melding" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Innholdstype" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "Innholdstype" #: NOT FOUND IN SOURCE msgid "Coould not create group" msgstr "Kunne ikke opprette gruppen" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Svaradresse" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "Svaradresse" #: etc/initialdata:283 msgid "Correspondence" msgstr "Svar" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "Korrespondanseaddresse" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Svar lagt til" #: NOT FOUND IN SOURCE msgid "Correspondence not recorded" msgstr "Korrespondansen ble ikke lagret" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "Kunne ikke legge til nye fleksifeltverdier for saken. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. %1 " msgstr "Kunne ikke legge til nye fleksifeltverdier for saken. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Klarte ikke legge til ny fleksifeltverdi: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Kunne ikke endre eier. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Klarte ikke endre eier: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Klarte ikke opprette fleksifelt" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Klarte ikke opprette fleksifelt: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Klarte ikke opprette gruppe" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Klarte ikke opprette mal: %1" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Klarte ikke opprette sak. Kø ikke oppgitt." #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Klarte ikke opprette bruker" #: NOT FOUND IN SOURCE msgid "Could not create watcher for requestor" msgstr "Kunne ikke opprette overvåker for kunde" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not find a ticket with id %1" msgstr "Kunne ikke finne en sak med id %1" #: NOT FOUND IN SOURCE msgid "Could not find group %1." msgstr "Kunne ikke finne gruppen %1." #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Klarte ikke finne eller opprette brukeren" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Fant ikke primærobjektet" #: NOT FOUND IN SOURCE msgid "Could not find user %1." msgstr "Kunne ikke finne brukeren %1." #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Klarte ikke laste attributtet %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Klarte ikke laste fleksifeltet %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Klarte ikke laste gruppa" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Klarte ikke laste objekt for %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Klarte ikke gjøre primærobjektet til en %1 for køen" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Klarte ikke gjøre primærobjektet til en %1 for saken" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Klarte ikke fjerne primærobjektet som %1 for køen" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Klarte ikke fjerne primærobjektet som %1 for saken" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Klarte ikke lagre brukerinfo" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Klarte ikke legge til vedlegg" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Klarte ikke legge medlem til gruppa" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Klarte ikke tildele fleksifelt til objekt, siden det alt er globalt" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Klarte ikke opprette transaksjon: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Klarte ikke opprette post" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Klarte ikke fjerne utforminga %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't figure out what to do from gpg's reply\\n" msgstr "Kunne ikke tolke gpgs svar\\n" #: NOT FOUND IN SOURCE msgid "Couldn't find group\\n" msgstr "Kunne ikke finne gruppen\\n" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Fant ikke raden" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Fant ikke en passende transaksjon – hopper over" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Fant ikke primærobjektet" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Fant ikke verdien" #: NOT FOUND IN SOURCE msgid "Couldn't find that watcher" msgstr "Kunne ikke finne den overvåkern" #: NOT FOUND IN SOURCE msgid "Couldn't find user\\n" msgstr "Kunne ikke finne bruker\\n" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Klarte ikke hente %1 fra brukerdatabasen.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Klarte ikke laste klassen %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Klarte ikke laste fleksifelt %1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Klarte ikke laste fleksifelt %1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Klarte ikke laste fleksifeltet %1" #: NOT FOUND IN SOURCE msgid "Couldn't load KeywordSelects." msgstr "Kunne ikke laste NøkkelordValg." #: NOT FOUND IN SOURCE msgid "Couldn't load RT config file '%1' %2" msgstr "Kunne ikke laste RTs konfigurasjonsfil '%1' %2" #: NOT FOUND IN SOURCE msgid "Couldn't load Scrips." msgstr "Kunne ikke laste Scripsene." #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Klarte ikke laste kopi av sak %1" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Klarte ikke laste utforminga %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Klarte ikke laste utforminga %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Klarte ikke laste gruppe %1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Klarte ikke laste gruppa %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Klarte ikke laste lenken" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Klarte ikke laste objektet %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Klarte ikke laste eller opprette brukeren: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Klarte ikke laste køen" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Klarte ikke laste kø %1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Klarte ikke laste køen %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Klarte ikke laste køen «%1»" #: NOT FOUND IN SOURCE msgid "Couldn't load scrip" msgstr "Kunne ikke laste scripet" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Klarte ikke laste utløser %1" #: NOT FOUND IN SOURCE msgid "Couldn't load template" msgstr "Kunne ikke finne mal" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Klarte ikke laste mal %1" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "Kunne ikke laste den brukeren (%1)" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Klarte ikke hente saken «%1»" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Klarte ikke laste transaksjon %1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Klarte ikke laste bruker" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Klarte ikke laste bruker %1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Klarte ikke laste bruker %1 eller brukeren «%2»" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Klarte ikke laste brukeren «%1»" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Klarte ikke tolke adresse fra teksten «%1»" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Klarte ikke bytte ut innholdet med dekryptert innhold: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Klarte ikke bytte ut innholdet med kryptert innhold: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Klarte ikke gjøre «%1» om til en adresse" #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Klarte ikke gjøre kilden «%1» om til en adresse" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Klarte ikke gjøre målet «%1» om til en adresse" #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Klarte ikke sende e-post" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Klarte ikke registrere %1-overvåker: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Klarte ikke registrere privatnøkkel" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Klarte ikke fjerne privatnøkkel" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Land" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Ny" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Opprett saker" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Nytt fleksifelt" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Opprett fleksifelt for køen %1" #: NOT FOUND IN SOURCE msgid "Create a CustomField that applies to all queues" msgstr "Opprett et fleksifelt for alle køer" #: NOT FOUND IN SOURCE msgid "Create a new Custom Field" msgstr "Opprett et nytt fleksifelt" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Ny utforming" #: NOT FOUND IN SOURCE msgid "Create a new global Scrip" msgstr "Opprett et globalt Scrip" #: NOT FOUND IN SOURCE msgid "Create a new global scrip" msgstr "Opprett et nytt globalt scrip" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Ny gruppe" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Ny personlig gruppe" #: NOT FOUND IN SOURCE msgid "Create a new queue" msgstr "Opprett en ny kø" #: NOT FOUND IN SOURCE msgid "Create a new scrip" msgstr "Opprett et nytt scrip" #: NOT FOUND IN SOURCE msgid "Create a new template" msgstr "Opprett en ny mal" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Ny sak" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Ny bruker" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Ny kø" #: NOT FOUND IN SOURCE msgid "Create a queue called" msgstr "Opprett en kø kalt" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "Opprett en forespørsel" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Opprett utløser for køen %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Opprett mal" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Ny sak" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Lag utforminger for gruppa" #: NOT FOUND IN SOURCE msgid "Create failed: %1 / %2 / %3 " msgstr "Opprettelse feilet: %1 / %2 / %3 " #: NOT FOUND IN SOURCE msgid "Create failed: %1/%2/%3" msgstr "Opprettelse feilet: %1/%2/%3" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Opprett nye saker basert på malen til denne utløseren" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Lag personlige utforminger" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Lag systemutforminger" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Opprett sak" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Opprett saker i køen" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Opprett saker frakoblet" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Opprett, slett og endre fleksifelt" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Opprett, slett og endre køer" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Opprett, slett og endre medlemmene av en brukers personlige grupper" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Opprett, slett og endre medlemmene av personlige grupper" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Opprett, slett og endre brukere" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "OpprettUtforming" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "OpprettGruppeutforming" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "OpprettEgneUtforminger" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "OpprettLagredeSøk" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "OpprettSak" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Opprettet" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Opprettet av" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Opprettet fleksifeltet %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Opprettet i perioden" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created template %1" msgstr "Opprettet malen %1" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Opprettede saker i tidsperiode – gruppert etter status" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "OpprettetAv" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "OpprettetRelativt" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Innmelder" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografi" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Gjeldende koblinger" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Gjeldende utløsere" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Gjeldende medlemmer" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Gjeldende rettigheter" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Gjeldende søk" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "Eksisterende søkekriterier" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Gjeldende overvåkere" #: NOT FOUND IN SOURCE msgid "Custom Field #%1" msgstr "Fleksifeltet #%1" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Fleksifelt" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Fleksifelt for %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Tilpasset oppryddingskode for handling" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Tilpasset foreberedelseskode for handling" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Selvvalgt betingelse" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Fleksifelt %1 blir ikke brukt på dette objektet" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Fleksifeltet %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Fleksifeltet %1 gjelder ikke dette objektet" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Fleksifeltet %1 har en verdi." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Fleksifeltet %1 har ingen verdi." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Fant ikke fleksifeltet %1" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Fleksifeltet «%1»" #: NOT FOUND IN SOURCE msgid "Custom field deleted" msgstr "Fleksifeltet slettet" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Fleksifeltet er alt brukt på dette objektet" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Fleksifeltet kunne ikke finnes" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Fant ikke feltverdien %1 for fleksifeltet %2" #: NOT FOUND IN SOURCE msgid "Custom field value changed from %1 to %2" msgstr "Fleksifeltets verdi endret fra %1 til %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Klarte ikke slette feltverdien til fleksifeltet" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Fant ikke feltverdien til fleksifeltet" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Feltverdi til fleksifelt slettet" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Fleksifelt" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "Fleksifeltverdi" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Tilpass" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Tilpass detaljer" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Tilpass e-postadresser" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Tilpass e-postoppsett" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA-passord" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA-brukernavn" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Daglig sammendrag" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Utforming" #: NOT FOUND IN SOURCE msgid "Dashboard %1" msgstr "Utforming: %1" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Klarte ikke opprette utforminga: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Klarte ikke oppdatere utforminga: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Utforming oppdatert" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Utforminger" #: NOT FOUND IN SOURCE msgid "Data error" msgstr "Datafeil" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Databasetjener" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Databasenavn" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Databasepassord for RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Databaseport" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Databasetype" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Databasebrukernavn for RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Datoformat" #: NOT FOUND IN SOURCE msgid "DateTime doesn't support format_cldr, you must upgrade to use this feature" msgstr "«DateTime» støtter ikke «format_cldr». Du må oppgradere for å kunne bruke denne funksjonen." #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Mangler modulen «DateTime»" #: NOT FOUND IN SOURCE msgid "DateTime::Locale doesn't support date_format_full, you must upgrade to use this feature" msgstr "«DateTime» støtter ikke «date_format_full». Du må oppgradere for å kunne bruke denne funksjonen." #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Mangler modulen «DateTime::Locale»" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datoer" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "des." #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Des." #: NOT FOUND IN SOURCE msgid "December" msgstr "desember" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Dekrypter" #: NOT FOUND IN SOURCE msgid "Default Autoresponse Template" msgstr "Standard Autosvarmal" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Standardmal for autosvar" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Standardkø" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Standardinnmelder" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Standardmal for adminkommentar" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Standardmal for adminsvar" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Standardmal for svar" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Standardkø" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Standardmal for transaksjoner" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Standard: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standard: %1/%2 endret fra %3 til %4" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "StandardForfallsdato" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Standardformat" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Deleger rettigheter" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Deleger rettigheter du har." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegerRettigheter" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegering" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Slett" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Slett mal" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Slett utforminger for gruppa" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Feil ved sletting: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Slett personlige utforminger" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Slett valgte utløsere" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Slett systemutforminger" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Slett saker" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Slett verdier" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "SlettUtforming" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "SlettGruppeutforming" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "SlettEgenUtforming" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "SlettSak" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Slettet %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Slettet utforminga %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Slettede søk" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Slettet lagret søk" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "Sletting av dette objektet kan føre til inkonsistens" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Sletting av dette objektet vil ødelegge referanseintegriteten" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Sletting av dette objektet vil ødelegge referanseintegriteten" #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity." msgstr "Sletting av dette objektet ville føre til inkonsisistens." #: NOT FOUND IN SOURCE msgid "Deleting this object would violate referential integrity. That's bad." msgstr "Sletting av dette objektet ville føre til inkonsistens. Det er uheldig." #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Nekt" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Avhengighet fra" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "AvhengighetFra" #: NOT FOUND IN SOURCE msgid "Dependencies: \\n" msgstr "Avhengigheter: \\n" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Avhengighet av %1 lagt til" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Avhengighet av %1 slettet" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Avhengighet av %1 lagt til" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Avhengighet av %1 slettet" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "AvhengerAv" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Avhenger av" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "AvhengerAv" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "synkende" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Synkende" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Beskriv problemet nedenfor" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Beskrivelse" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Detaljer" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Retning" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Deaktivert" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Vis" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Vis tilgangsliste" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Vis kolonner" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Vis utløsermaler for køen" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Vis utløsermaler for køen" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Visningsmodus" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Vis lagrede søk for gruppa" #: NOT FOUND IN SOURCE msgid "Display ticket #%1" msgstr "Vis saken #%1" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuert under GNU GPL 2.0." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Gjøre alt" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Domenenavn" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ta ikke med «http://», bare vertsnavnet. Eksempel: rt.eksempel.no" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Ikke oppdater hjemmesiden" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Ikke oppdater søkeresultatene" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ikke oppdater siden" #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "Ikke vis søkeresultat" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Ikke stol på denne nøkkelen" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Last ned" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Last ned som en tabulatordelt fil" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Last ned dumpfil" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Forfallsdato" #: NOT FOUND IN SOURCE msgid "Due date '%1' could not be parsed" msgstr "Innendato '%1' kunne ikke tolkes" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "ForfallsdatoRelativ" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "Feil: %1" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "FEIL: Kunne ikke laste sak '%1': %2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Enkel oppdatering av åpne saker" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Rediger" #: NOT FOUND IN SOURCE msgid "Edit Conditions" msgstr "Rediger Forhold" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Rediger fleksifelt" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Rediger fleksifelt: %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Rediger fleksifelt for alle gruppene" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Rediger fleksifelt for alle køene" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Rediger fleksifelt for alle brukerne" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Rediger fleksifelt for saker i alle køer" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Rediger koblinger" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Rediger spørring" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Rediger søk" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Rediger maler for køen %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit keywords" msgstr "Rediger nøkkelord" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Rediger lagrede søk for gruppa" #: NOT FOUND IN SOURCE msgid "Edit scrips" msgstr "Rediger scrips" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Rediger systemmaler" #: NOT FOUND IN SOURCE msgid "Edit templates for %1" msgstr "Rediger maler for %1" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "RedigerLagredeSøk" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Redigerbar tekst" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Rediger innstillinger for køen %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "Redigerer Konfigurasjonen av brukern %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Redigerer fleksifeltet %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Redigerer medlemskap for gruppa %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Redigerer medlemskap for den personlige gruppa %1" #: NOT FOUND IN SOURCE msgid "Editing template %1" msgstr "Redigerer malen %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "EffektivID" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Du må oppgi enten kilde eller mål" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Enten mangler du rettigheter til å vise det lagrede søket %1, eller så er identifikatoren feil" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-postadresse" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "E-postsammendrag" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "E-postadressen er alt i bruk" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "E-postlevering" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "E-postmal for regelmessige sammendrag" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "E-postadresse" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "EpostFormat" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Aktivert" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "I bruk (fjern krysset for å deaktivere feltet)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "I bruk (fjern krysset for å deaktivere gruppa)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "I bruk (fjern krysset for å deaktivere køen)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: NOT FOUND IN SOURCE msgid "Enabled Custom Fields" msgstr "Aktive Fleksifelt" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Aktive køer" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "Virksomme køer i samsvar med søkekriteriene" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Aktivert statusen %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Krypter" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Krypter som standard" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Krypter/dekrypter" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Krypter/dekrypter transaksjon %1 av sak %2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Kryptering slått av" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Kryptering slått på" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Skriv inn flere verdier" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Skriv inn flere verdier – med autofullføring" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Skriv inn objektene eller nettadressene du vil koble til. Du kan skille flere verdier ved å bruke mellomrom." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Skriv inn enkeltverdi" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Skriv inn enkeltverdi – med autofullføring" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Skriv inn køene eller nettadressene du vil koble køene til. Du kan skille flere verdier ved å bruke mellomrom." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Skriv inn sakene eller nettadressene du vil koble sakene til. Du kan skille flere verdier ved å bruke mellomrom." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Skriv inn opptil %1 verdier" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Skriv inn opptil %1 verdier – med autofullføring" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Feil" #: NOT FOUND IN SOURCE msgid "Error adding watcher" msgstr "Feilet ved opprettelse av Overvåker" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Feil i parametrene til «Queue->AddWatcher»" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DelWatcher" msgstr "Feil i parameterne til Queue->DelWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Feil i parametrene til «Queue->DeleteWatcher»" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Feil i parametrene til «Ticket->AddWatcher»" #: NOT FOUND IN SOURCE msgid "Error in parameters to Ticket->DelWatcher" msgstr "Feil i parameterne til Ticket->DelWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Feil i parametrene til «Ticket->DeleteWatcher»" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Feil til RT-eier: offentlignøkkel" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Feil: Mangler utforming" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Feil: Ugyldige GnuPG-data" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Feil: mangler privatnøkkel" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Feil: offentlignøkkel" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Øk saksprioriteter" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Estimert" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Alle" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Se på saker opprettet i en gitt tidsperiode" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Se på saker løst i en gitt tidsperiode" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Se på løste saker – gruppert etter eier" #: bin/rt-crontool:356 msgid "Example:" msgstr "Eksempel:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Utløper" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "UtvidetStatus" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Ekstern autentisering slått på" #: NOT FOUND IN SOURCE msgid "ExternalAuthId" msgstr "EksternAutId" #: NOT FOUND IN SOURCE msgid "ExternalContactInfoId" msgstr "EksternKontaktInfoId" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Tilleggsinformasjon" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Hent emnekode" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Hent emnekoder fra emnelinjen i en transaksjon, og legg disse til saksemnet." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Klarte ikke koble til databasen: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Klarte ikke opprette attributtet %1" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Fant ikke pseudogruppa «brukere med utvidede rettigheter»" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Fant ikke pseudogruppa «brukere uten utvidede rettigheter»" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Klarte ikke laste %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Klarte ikke laste %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Klarte ikke laste modulen %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Klarte ikke laste objektet for %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Klarte ikke laste malen" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Klarte ikke tolke malen" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "feb." #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Feb." #: NOT FOUND IN SOURCE msgid "February" msgstr "februar" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Kilde for feltverdier:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "Filnavn" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Filnavn" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Fyllargument" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Fyll boksene med farge med" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Fyll ut flere fritekstfelt" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Fyll ut flere wikitext-felt" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Fyll ut et fritekstfelt" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Fyll ut et wikitext-felt" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Fyll ut feltet med en nettadresse." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Fyll ut opptil %1 fritekstfelt" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Fyll ut opptil %1 wikitext-felt" #: NOT FOUND IN SOURCE msgid "Fin" msgstr "End" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Sluttprioritet" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "Sluttprioritet" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Finn alle brukerne der" #: NOT FOUND IN SOURCE msgid "Find group whose" msgstr "Finn grupper hvor" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Finn alle gruppene der" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "Finn nye/åpne saker" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Finn alle personene der" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Finn saker" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Fullfør" #: NOT FOUND IN SOURCE msgid "Finish Approval" msgstr "Fullfør godkjennelse" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Først" #: NOT FOUND IN SOURCE msgid "First page" msgstr "Første side" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Tving gjennom endring" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Format" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Videresend" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Videresend melding" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Videresend melding og gå tilbake" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Videresend sak" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Videresend meldinger til tredjeperson(er)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Videresend sak %1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Videresend transaksjon %1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "Videresend melding" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Fant %quant(%1,sak,saker)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Fant objekt" #: NOT FOUND IN SOURCE msgid "FreeformContactInfo" msgstr "FriforkKontaktInfo" #: NOT FOUND IN SOURCE msgid "FreeformMultiple" msgstr "FriformMultipel" #: NOT FOUND IN SOURCE msgid "FreeformSingle" msgstr "FriformSingel" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frekvens" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "fr." #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Fre." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "fredag" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Fullstendig meldingshode" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Generelt" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Hent mal fra fil" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Kom i gang" #: NOT FOUND IN SOURCE msgid "Getting the current user from a pgp sig\\n" msgstr "Henter brukerinfo fra pgp signatur\\n" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Tildelt %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Globalt" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Globale fleksifelt" #: NOT FOUND IN SOURCE msgid "Global Keyword Selections" msgstr "Globale Nøkkelordvalg" #: NOT FOUND IN SOURCE msgid "Global Scrips" msgstr "Globale Scrip" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Oppsett av globale fleksifelt" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Globalt panel «%1» lagret" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Global mal: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG-feil. Ta kontakt med systemadministratoren." #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG-integrasjonen er slått av" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG-problem" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG-privatnøkkel/-nøkler for %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG-offentlignøkkel/-nøkler for %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Kjør" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Kjør" #: NOT FOUND IN SOURCE msgid "Good pgp sig from %1\\n" msgstr "Gyldig pgp sig fra %1\\n" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "Gå til siden" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Gå til saken" #: NOT FOUND IN SOURCE msgid "Grand" msgstr "Stor" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagramegenskaper" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Diagram er ikke tilgjengelige." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Gruppe" #: NOT FOUND IN SOURCE msgid "Group %1 %2: %3" msgstr "Gruppen %1 %2: %3" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Grupperettigheter" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Alt medlem av gruppa: %1" #: NOT FOUND IN SOURCE msgid "Group could not be created." msgstr "Gruppen kunne ikke lastes." #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Klarte ikke opprette gruppa: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Gruppa er opprettet" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Gruppa er deaktivert" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Gruppa er aktivert" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Gruppa har ikke medlemmet" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Fant ikke gruppa" #: NOT FOUND IN SOURCE msgid "Group not found.\\n" msgstr "Fant ikke gruppen.\\n" #: NOT FOUND IN SOURCE msgid "Group not specified.\\n" msgstr "Ikke spesifisert gruppe.\\n" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Grupperettigheter" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupper" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupper kan ikke være medlem av sine medlemmer" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupper i samsvar med søkekriteriene" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Brukeren er medlem av (kryss av for å fjerne)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Brukeren er ikke medlem av (kryss av for å legge til)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Brukeren er medlem av" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "HarMedlem" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Overskrift til videresendt sak" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Overskrift til videresendt melding" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Hei!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hei %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Hjelp oss å sette opp noen nyttige standardverdier for RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Oppdateringer" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Gruppeendringer for %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Køendringer for %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Brukerendringer for %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Hjem" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Oppdater hjemmesiden" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "TelefonHjemme" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Hjemmeside" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Time" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "timer" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Jeg har %quant(%1,sementblander,sementblandere)." #: NOT FOUND IN SOURCE msgid "I have [quant,_1,concrete mixer]." msgstr "Jeg har [quant,_1,sementblandere]." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identitet" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Hvis en godkjenning blir avvist, avvis originalen, og slett ventende godkjenninger" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Bruk denne innmelderen hvis ingen innmelder er oppgitt." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Bruk denne køen hvis ingen kø er oppgitt." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Hvis dette verktøyet var «setgid», kunne en ondsinnet lokal bruker bruke det for å få administrativ tilgang til RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Hvis du alt har en fungerende RT-tjener og RT-database, bør du nå se til at databasetjeneren kjører, og at RT-tjeneren kan koble til den. Når du har gjort dette, bør du stoppe og så starte RT-tjeneren på nytt." #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Hvis du alt har en fungerende RT-tjener og RT-database, bør du nå se til at databasetjeneren kjører, og at RT-tjeneren kan koble til den. Når du har gjort dette, bør du stoppe og så starte RT-tjeneren på nytt." #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Hvis du endrer porten som RT kjører på, må du starte tjeneren på nytt for å kunne logge inn." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Viss du har gjort endringer her, må du huske å" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Hvis din foretrukne database ikke er synlig i feltet nedenfor, betyr det at RT ikke fant en databasedriver for denne installert. Det kan hjelpe å bruke %1 for å laste ned og installere «DBD::MySQL», «DBD::Oracle» eller «DBD::Pg»." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Ugyldig verdi for %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Låst felt" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Ta med deaktiverte fleksifelt i lista" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Ta med deaktiverte grupper i lista" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Ta med deaktiverte køer i lista" #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Ta med deaktiverte brukere i søkeresultatene" #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Vis nettside" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Enkeltmeldinger" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Varsle RT-eieren om at brukeren/brukerne har ugyldige offentlignøkler" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Varsle brukeren om at utforminga han/hun bruker er fjernet" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Varsle brukeren om at meldinga han/hun sendte har ugyldige GnuPG-data" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Varsle brukeren om at han/hun har feil i offentlignøkkelen, og derfor ikke kan motta krypterte meldinger" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Varsle brukeren om at passordet hans/hennes er nullstilt" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Varsle brukeren om mottak av kryptert e-post som RT mangler privatnøkkel for å dekryptere" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Startprioritet" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "Startprioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Gjør klar databasen" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Feil i inndata" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Inndataene må være i samsvar med %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Installer RT" #: NOT FOUND IN SOURCE msgid "Interest noted" msgstr "Interesse registrert" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Internfeil" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Internfeil: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ugyldig %1: «%2» er ikke en gyldig e-postadresse" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Ugyldig %1: må være et tall" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Ugyldig gruppetype" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Ugyldige rettigheter" #: NOT FOUND IN SOURCE msgid "Invalid Type" msgstr "Ugyldig Type" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Ugyldige data" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Ugyldig objekt" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Ugyldig eierobjekt" #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "Ugydlig eier. Setter til 'nobody'." #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Ugyldig mønster: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Ugyldig kø" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Ugyldig rettighet" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ugyldig rettighet. Klarte ikke kanonisere rettigheten «%1»." #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Ugyldig syntaks for e-postadresse" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Ugyldig verdi for %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Ugyldig verdi for fleksifelt" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Ugyldig verdi for status" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Er ikke kryptert" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Det er svært viktig at brukere uten utvidede rettigheter ikke får kjøre dette verktøyet." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Det er anbefalt at du oppretter en vanlig Unix/Linux-bruker med riktig gruppemedlemskap og tilgang til RT for å kjøre dette verktøyet." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Du kan bruke flere kommandolinjeargument:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kursiv" #: NOT FOUND IN SOURCE msgid "Items pending my approval" msgstr "Ting som venter på min godkjenning" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "jan." #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Jan." #: NOT FOUND IN SOURCE msgid "January" msgstr "januar" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Bli med i eller forlat gruppa" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "juli" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Jul." #: NOT FOUND IN SOURCE msgid "July" msgstr "juli" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Storside" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "juni" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Jun." #: NOT FOUND IN SOURCE msgid "June" msgstr "juni" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Behold «localhost» hvis du er usikker. La feltet stå tomt for å koble til via en sokkel." #: NOT FOUND IN SOURCE msgid "Keyword" msgstr "Nøkkelord" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "Språk" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Språk" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Stor" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Siste" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Siste kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Sist kontaktet" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "Sist Informert" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Sist oppdatert" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Sist oppdatert av" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Sist oppdatert av" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "SistOppdatert" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "SistOppdatertAv" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "SistOppdatertRelativ" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "La feltet stå tomt for å sende til e-postadressen din (%1)." #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "La feltet stå tomt for å bruke standardverdien for databasen" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "La feltet stå tomt for å bruke standard DBA-brukernavn for databasetypen" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Igjen" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Forklaring" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Antall tegn. Bruk «0» for å vise hele meldingene, uavhengig av meldingslengden." #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Gi brukeren tilgang til systemet" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Gi brukeren utvidede rettigheter" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Start" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: NOT FOUND IN SOURCE msgid "Limiting owner to %1 %2" msgstr "Begrenser eier til %1 %2" #: NOT FOUND IN SOURCE msgid "Limiting queue to %1 %2" msgstr "Begrenser køen til %1 %2" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Lenke" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Lenken finnes alt" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Klarte ikke opprette lenken" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Lenke opprettet (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Lenke slettet (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Fant ikke lenken" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Koble sammen sak %1" #: NOT FOUND IN SOURCE msgid "Link ticket %1" msgstr "Knytt sak %1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Lenk verdiene til" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Koblet" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "KobletFra" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "KobletTil" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Kobler. Nektet tilgang." #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Koblinger" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Åpne" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Åpne lagret søk:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "ÅpneLagretSøk" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Lastet %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Lastet opphavlig lagret søk «%1»" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Lastede perl-moduler" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Lastet lagret søk: %1" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Dato og klokkeslett" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LokaltDatoKlokkeslett" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Plassering" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written.\\n RT can't run." msgstr "Logkatalogen %1 ble ikke funnet eller kunne ikke skrives til.\\nRT kan ikke kjøre." #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Logget inn som %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Logget ut" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Logg inn" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "LogoAltTekst" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Logg ut" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Ikke typesamsvar ved feltoppslag" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "E-post" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Hovedkoblingstype" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Velg eier" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Velg status" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Velg tidsfrist" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Velg løsningsdato" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Velg startdato" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Velg startdato" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Velg dato varslet" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Velg prioritet" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Velg kø" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Velg emne" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Gjør gruppa synlig for brukeren" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Rediger brukerdefinerte felt" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Rediger grupper og gruppemedlemskap" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Rediger egenskaper og innstillinger for alle køene" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Rediger køer og egenskaper til køer" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Rediger lagrede diagram" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Rediger brukere og passord" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "mars" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Mar." #: NOT FOUND IN SOURCE msgid "March" msgstr "mars" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Merket alle meldingene som leste" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "Malrekkefølge for Mason" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "MaksVerdier" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Makslengde for direktevising av meldinger" #: lib/RT/Date.pm:95 msgid "May" msgstr "mai" #: NOT FOUND IN SOURCE msgid "May." msgstr "Mai." #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Medlem" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Medlemmet %1 lagt til" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Medlemmet %1 slettet" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Medlem lagt til: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Medlem slettet" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Medlem ikke slettet" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Medlem av" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "MedlemAv" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Medlemmer" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Lagt til som medlem i %1" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Fjernet som medlem av %1" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Medlemskap" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Medlemskap til brukeren %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Fletting utført" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Feil ved fletting. Klarte ikke lagre «EffectiveId»." #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Feil ved fletting. Klarte ikke lagre status." #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Flett inn i" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Flettet inn i %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Melding" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Meldingsteksten blir ikke vist, siden avsenderen sendte den som et vedlegg." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Meldingsteksten blir ikke vist, fordi den ikke er rentekst." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Meldingsteksten blir ikke vist, fordi den er for stor." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Høyde på meldingsfelt" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Bredde på meldingsfelt" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Klarte ikke lagre meldinga" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Melding for bruker" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Melding registrert" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Meldinger i denne saken blir ikke sendt til …" #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minste passordlengde" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "minutt" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Mangler primærnøkkel? %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "TelefonMobil" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Endre tilgangsliste" #: NOT FOUND IN SOURCE msgid "Modify Custom Field %1" msgstr "Endre Fleksifeltet %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Endre fleksifelt som gjelder %1 for alle %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Endre fleksifelt som gjelder alle %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all queues" msgstr "Endre Fleksifelt som gjelder for alle køer" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Rediger grupperettigheter" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Rediger medlemmer" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Rediger rettigheter" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Rediger utløsermaler for denne køen" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Rediger utløsere for denne køen" #: NOT FOUND IN SOURCE msgid "Modify System ACLS" msgstr "Endre SystemACLer" #: NOT FOUND IN SOURCE msgid "Modify Template %1" msgstr "Endre Malen %1" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Rediger brukerrettigheter" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Endre fleksifelt for køen %1" #: NOT FOUND IN SOURCE msgid "Modify a CustomField that applies to all queues" msgstr "Endre et fleksifelt som gjelder for alle køer" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Endre utløser for køen %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Endre utløser som gjelder alle køer" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Endre objekt knyttet til %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Endre fleksifeltverdier" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Endre utforming for gruppa" #: NOT FOUND IN SOURCE msgid "Modify dates for # %1" msgstr "Endre datoer for # %1" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Endre datoer for %1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Endre datoer for sak %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Endre globale fleksifelt" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Endre globale grupperettigheter" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Endre globale grupperettigheter" #: NOT FOUND IN SOURCE msgid "Modify global rights for groups" msgstr "Endre globale rettigheter for grupper" #: NOT FOUND IN SOURCE msgid "Modify global rights for users" msgstr "Endre globale rettigheter for brukere" #: NOT FOUND IN SOURCE msgid "Modify global scrips" msgstr "Endre globale scrips" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Endre globale brukerrettigheter" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Endre globale brukerrettigheter" #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Endre gruppemetadata eller slett gruppa" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Endre grupperettigheter for fleksifeltet %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Endre grupperettigheter for gruppa %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Endre grupperettigheter for køen %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Endre medlemsliste for gruppa" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Endre sin egen RT-konto" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Endre personer knyttet til køen %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Endre personer knyttet til sak %1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Endre personlige utforminger" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Endre utløsere for køen %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Endre utløsere som gjelder alle køene" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Endre systemutforminger" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Endre malen %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Endre maler som gjelder alle køer" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Endre utforminga %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Sett opp standardskjermbildet («RT-oversikt»)" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Endre gruppa %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Endre spørringer til utforminga %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Endre køovervåkere" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Endre abonnement til utforminga %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Endre brukeren %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Endre sak %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Endre sak %1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Endre saker" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Endre brukerrettigheter for fleksifeltet %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Endre brukerrettigheter for gruppa %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Endre brukerrettigheter for køen %1" #: NOT FOUND IN SOURCE msgid "Modify watchers for queue '%1'" msgstr "Endre overvåkere for '%1' køen" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "EndreACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "EndreFleksifelt" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "EndreUtforming" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "EndreGruppeutforming" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "EndreEgenUtforming" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "EndreEgetMedlemskap" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "EndreKøovervåkere" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "EndreUtløsere" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "EndreSegSelv" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "EndreMal" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "EndreSak" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "ma." #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Man." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "mandag" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "mandag til fredag" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Mer" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Mer om %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Flytt ned" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Flytt opp" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Flere" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Må oppgi «Name»-attributt" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Mine saker med status «%1»" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Mine saker til godkjenning" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Oppgaveoversikt" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mine godkjenninger" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mine utforminger" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mine lagrede søk" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "LINJESKIFT" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Navn" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "Navn og e-postadresse" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Navnet er alt i bruk" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Utvalg og plassering av panel" #: NOT FOUND IN SOURCE msgid "Need approval from system administrator" msgstr "Trenger godkjennelse fra systemadministrator" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Aldri" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Ny" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nye koblinger" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nytt passord" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Ny godkjenningsforespørsel" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Nytt søk" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Nye og åpne saker for %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Nytt fleksifelt" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Ny gruppe" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nye meldinger" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nytt passord" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Melding om nytt passord sendt" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Ny kø" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Ny påminnelse:" #: NOT FOUND IN SOURCE msgid "New request" msgstr "Ny forespørsel" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nye rettigheter" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Ny utløser" #: NOT FOUND IN SOURCE msgid "New search" msgstr "Nytt søk" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Ny mal" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Ny sak" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Den nye saken finnes ikke" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Ny bruker" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Ny bruker kalt" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nye overvåkere" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "Instillinger for nytt vindu" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Neste" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "Neste side" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Kallenavn" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Kallenavn" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Nei" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Ingen %1 lastet" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ingen klasse definert" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Intet fleksifelt" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Intet fleksifelt definert" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ingen gruppe definert" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Ingen spørring" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ingen kø definert" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Fant ingen RT-bruker. Ta kontakt med RT-ansvarlig.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Mangler emne" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Ingen mal" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "Ingen sak oppgitt. Avbryter sak " #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket modifications\\n\\n" msgstr "Ingen Sak oppgitt. Avbryter saksendring\\n\\n" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ingen handling" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Ingen kolonne valgt" #: NOT FOUND IN SOURCE msgid "No command found\\n" msgstr "Ingen kommando funnet\\n" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Ingen kommentar skrevet om brukeren" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "Ingen korrespondanse vedlagt" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Ingen utforminger." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Ingen beskrivelse av %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "Ingen detaljer" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Ingen gruppe valg" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Fant ingen grupper i samsvar med søkekriteriene." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Mangler egnet krypteringsnøkkel" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Ingen nøkler for adressen" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Ingen melding vedlagt" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Navn ikke oppgitt" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Kryptering unødvendig" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Passord ikke valgt" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Mangler tilgang til å opprette køer" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Mangler tilgang til å opprette saker i køen «%1»" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Ikke tilgang til å opprette brukere" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Mangler tilgang til å vise saken" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Mangler tilgang til å kjøre globale søk" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Mangler tilgang til å endre innstillingene" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Mangler tilgang til å se oppdatering av saken" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Intet primærobjekt oppgitt" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Ingen primærobjekt oppgitt." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Mangler privatnøkkel" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Fant ingen køer i samsvar med søkekriteriene." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Ingen rettigheter oppgitt" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Fant ingen rettigheter" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Ingen rettigheter tildelt." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Mangler søk å bruke" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Uten emne" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Nøkkelen mangler, eller er ikke egnet til signering" #: NOT FOUND IN SOURCE msgid "No ticket id specified" msgstr "Ingen saksid oppgitt" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Fant ingen saker." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Transaksjonstype ikke oppgitt" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ingen egnede nøkler" #: NOT FOUND IN SOURCE msgid "No user or email address specified" msgstr "Ingen bruker eller epostaddresse oppgitt" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Fant ingen brukere i samsvar med søketeksten." #: NOT FOUND IN SOURCE msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" msgstr "Fant ingen gyldig RT bruker. RT cvs handler avstengt. Kontakt din RT administrator.\\n" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Ingen verdi sendt til _Set.\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Ingen" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Ingen" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Feltet finnes ikke?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "ikke definert" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Ikke funnet" #: NOT FOUND IN SOURCE msgid "Not logged in" msgstr "Ikke logget inn" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ikke innlogget" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "ikke definert" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Ikke implementert enda." #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "Ikke implementert enda...." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Merknader" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Klarte ikke sende melding" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Varsle admin-kopimottakerne" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Varsle admin-kopimottakerne som kommentar" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Varsle kopimottakerne" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Varsle kopimottakerne som kommentar" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Varsle andre mottakere" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Varsle andre mottakere som kommentar" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Varsle sakeieren" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Varsle eieren som kommentar" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Varsle sakeieren om avvist sak" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Varsle sakeieren at saken er godkjent, og blir behandlet" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Varsle sakeieren at saken er godkjent av noen eller alle godkjennerne" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Varsle sakeieren, innmelderne, kopimottakerne og admin-kopimottakerne" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Varsle sakeieren, innmelderne, kopimottakerne og admin-kopimottakerne som kommentar" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Varsle sakeieren og admin-kopimottakerne om nye førespørsler som krever deres godkjenning" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Varsle innmelderen når saken er godkjent av alle godkjennerne" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Varsle innmelderen når saken er godkjent av minst én godkjenner" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Varsle innmelderne" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Varsle innmelderne og kopimottakerne" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Varsle innmelderne og kopimottakerne som kommentar" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Rapporter til Kunder Cc og AdminCc" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Rapporter til Kunder Cc og AdminCc som Kommentar" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Gi beskjed om uleste meldinger" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "nov." #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Nov." #: NOT FOUND IN SOURCE msgid "November" msgstr "november" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Antall søketreff" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ELLER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Klarte ikke opprette objektet" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Klarte ikke slette objektet" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekt opprettet" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekt slettet" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objekt av typen %1 kan ikke inneholde fleksifelt" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Ikke samsvar i objekttype" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektlista er tom" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "okt." #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Okt." #: NOT FOUND IN SOURCE msgid "October" msgstr "oktober" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Frakoblet" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Frakoblet-oppdateringer" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Frakoblet-opplasting" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "%1 skrev %2:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Ved lukking" #: etc/initialdata:143 msgid "On Comment" msgstr "Ved kommentar" #: etc/initialdata:115 msgid "On Correspond" msgstr "Ved svar" #: etc/initialdata:104 msgid "On Create" msgstr "Ved opprettelse" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Ved eierskifte" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Ved prioritetsendring" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Ved købytte" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Ved avvising" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Ved gjenåpning" #: etc/initialdata:178 msgid "On Resolve" msgstr "Ved løsning" #: etc/initialdata:149 msgid "On Status Change" msgstr "Ved statusendring" #: etc/initialdata:109 msgid "On Transaction" msgstr "Ved transaksjon" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Engangsblindkopi" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Engangskopi" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Vis kun godkjenninger for saker opprettet etter %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Vis kun godkjenninger for saker opprettet før %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Vis bare fleksifelt for:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Åpne" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Åpne saker" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Åpne adresse" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Åpne saken" #: NOT FOUND IN SOURCE msgid "Open requests" msgstr "Åpne forespørsler" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Åpne saker" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "Åpne saker (fra utlisting) i et nytt vindu" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "Åpne saker (fra utlisting) it et annet vinud" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Åpne saker ved svar" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Valg" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Valg" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sorter etter" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "Rekkefølge og sortering" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organisasjon" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Opprinnelig sak: %1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Utgående e-post om en kommentar registrert" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Utgående e-post registrert" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "Utgående e-post" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Flytt prioriteten over tid mot" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Egne saker" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "EieSak" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Eier" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Eieren «%1» har ikke rettigheter til å eie denne saken." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Eier byttet fra %1 til %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Klarte ikke registrere eier" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Eier ble tvangsendret fra %1 til %2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "Eier er" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "Eiernavn" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Side" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Side 1 av 2" #: share/html/dhandler:48 msgid "Page not found" msgstr "Fant ikke siden" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Personsøker" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "TelefonPersonsøker" #: NOT FOUND IN SOURCE msgid "Parent" msgstr "Forelder" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Oversaker" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Passord" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Passordhint" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Passord endret" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "Passordet er ikke registrert" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Passordet må være minst %1 tegn langt" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Passord registrert" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "For kort passord" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Passord: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Passord: nektet tilgang" #: etc/initialdata:463 msgid "PasswordChange" msgstr "PassordBytte" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "De to passordene er ikke like." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "De to passordene er ikke like. Passordet ble derfor ikke endret." #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Adresse til «sendmail»" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Personer" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Kjør en brukerdefinert handling" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Include-adresser for Perl (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl-oppsett" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "Søkerekkefølge for Perl-bibliotek" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Nektet tilgang" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Nektet tilgang" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Personlige utforminger" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Personlige grupper" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Personlige grupper" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Personlige grupper:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefonnummer" #: NOT FOUND IN SOURCE msgid "Placeholder" msgstr "Stedholder" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Kontroller adressen, og prøv så på nytt." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "Skriv inn ditt nåværende passord riktig" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "Skriv inn ditt nåværende passord" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Mulige skjulte søk" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: NOT FOUND IN SOURCE msgid "Pref" msgstr "Pref" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Innstillinger" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Innstillinger %1 for brukeren %2" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Innstillinger lagret for %1" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Innstillinger lagret for brukeren %1" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Innstillinger lagret" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Foretrukket nøkkel: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Foretrukket nøkkel" #: NOT FOUND IN SOURCE msgid "Prefs" msgstr "Pref" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Forberedelse klargjort" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Forrige" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Forrige" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "Forrige side" #: NOT FOUND IN SOURCE msgid "Pri" msgstr "Pri" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Fant ikke primærobjektet %1" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Send meldingssammendragene til standard ut i stedet for via e-post. Disse blir ikke markert som sendt." #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Vis denne meldinga" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioritet" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioriteten starter på" # Omgrepet seier om ei utforming er privat eller offentleg. Dette er derfor ei rett «omsetting». #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Offentlig" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Offentlig:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Privatnøkkel" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Med utvidede rettigheter" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Utvidede rettigheter: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Brukere med utvidede rettigheter" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Kjører uten transaksjon. Det kan oppstå feil for noen betingelser og handlinger. Vurder å bruke argumentet «--transaction»." #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseduogruppe for intern bruk" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Offentlignøkkelen «0x%1» er nødvendig for bekreftelse av signaturen" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Spørringer" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Spørring" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Avansert søk" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Spørring:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Kø" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Fant ikke køen %1" #: NOT FOUND IN SOURCE msgid "Queue '%1' not found\\n" msgstr "Køen '%1' ikke funnet\\n" #: NOT FOUND IN SOURCE msgid "Queue Keyword Selections" msgstr "Nøkkelordvalg for kø" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Kønavn" #: NOT FOUND IN SOURCE msgid "Queue Scrips" msgstr "Køscrip" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Køen finnes fra før" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Klarte ikke opprette køen" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Klarte ikke laste køen." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Kø opprettet" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Kø deaktivert" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Kø aktivert" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Kø-ID" #: NOT FOUND IN SOURCE msgid "Queue is not specified." msgstr "Køen er ikke oppgitt." #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Fant ikke køen" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Kørettigheter" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Kønøkkel" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "KøAdminKopimottaker" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "KøKopimottaker" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "Kønavn" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "KøOvervåker" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Køer" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Køer jeg administrerer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Køer jeg er administrativ kopimottaker for" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Kjappsøk" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Kjapp saksoppretting" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC 2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC 2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 for %2" #: NOT FOUND IN SOURCE msgid "RT %1 from Best Practical Solutions, LLC." msgstr "RT %1 fra Best Practical Solutions, LLC." #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n" msgstr "RT %1. Copyright 1996-%1 Jesse Vincent \\n" #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-2002 Jesse Vincent \\n" msgstr "RT %1. Copyright 1996-2002 Jesse Vincent \\n" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT-administrering" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "E-post til RT-administrator" #: NOT FOUND IN SOURCE msgid "RT Authentication error." msgstr "RT Autentiseringsfeil." #: NOT FOUND IN SOURCE msgid "RT Bounce: %1" msgstr "RT Avvisning: %1" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "RT-oppsett" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT-oppsett" #: NOT FOUND IN SOURCE msgid "RT Configuration error" msgstr "RT Konfigurasjonsfeil" #: NOT FOUND IN SOURCE msgid "RT Critical error. Message not recorded!" msgstr "Kritisk RT feil. Meldingen ble ikke lagret!" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT-feil" #: NOT FOUND IN SOURCE msgid "RT Received mail (%1) from itself." msgstr "RT Mottok mail (%1) fra seg selv." #: NOT FOUND IN SOURCE msgid "RT Recieved mail (%1) from itself." msgstr "RT Mottok mail (%1) fra seg selv." #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT-selvbetjening" #: NOT FOUND IN SOURCE msgid "RT Self Service / Closed Tickets" msgstr "RT Selvbetjening / Lukkede Saker" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT-størrelse" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT-variabler" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT-oversikt" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT-oversikt for brukeren %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT kan kommunisere med brukerne om nye saker, og om svar på saker. Oppgi hvor sendmail (eller et sendmail-kompatibelt program, som det som følger med Postfix) er installert. RT må også vite hvem som skal kontaktes når noen sender en ugyldig e-post. Dette kan ikke være en adresse som fører til RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan vise innhold fra en annen nettjeneste i dette fleksifeltet." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan gjøre feltverdiene til fleksifeltet til lenker til en nettside." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT-kjernevariabler" #: NOT FOUND IN SOURCE msgid "RT couldn't authenticate you" msgstr "RT kunne ikke autentisere deg" #: NOT FOUND IN SOURCE msgid "RT couldn't find requestor via its external database lookup" msgstr "RT kunne ikke finne kunde via sitt eksterne databaseoppslag" #: NOT FOUND IN SOURCE msgid "RT couldn't find the queue: %1" msgstr "RT kunne ikke finne køen: %1" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "Klarte ikke lagre økten" #: NOT FOUND IN SOURCE msgid "RT couldn't validate this PGP signature. \\n" msgstr "RT kunne ikke validere denne PGP signaturen. \\n" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT for %1" #: NOT FOUND IN SOURCE msgid "RT for %1: %2" msgstr "RT for %1: %2" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "RT har behandlet dine kommandoer" #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT er © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. Den er distribuert under Version 2 of the GNU General Public License." #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-2002 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT er © Copyright 1996-2002 Jesse Vincent <jesse@bestpractical.com>. Den er distribuert under Version 2 of the GNU General Public License." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT er et profesjonelt sakshåndteringssystem som lar deg smart og enkelt håndtere oppgaver, problemer, forespørsler, feilinnmeldinger og andre ting som krever handling." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT blir brukt av Fortune 100-bedrifter, enkeltmannsforetak, offentlige virksomheter, utdanningsinstitusjoner, sykehus, ideelle organisasjoner, bibliotek, fri programvare-prosjekter og mange andre typer virksomheter, på alle kontinentene (ja, også i Antarktika!)." #: NOT FOUND IN SOURCE msgid "RT thinks this message may be a bounce" msgstr "RT tror denne meldingen kan være en returmail" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT vil koble til databasen som denne brukeren. Den blir automatisk opprettet." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vil lage brukeren «root», og registrere dette som passord." #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "Alle andre søkeord blir brukt til søk i emnefeltet til sakene." #: NOT FOUND IN SOURCE msgid "RT will process this message as if it were unsigned.\\n" msgstr "RT vil behandle denne meldingen som om den var usignert" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT vil automatisk bytte ut %1 og %2 med henholdsvis saksnummeret og verdien til fleksifeltet." #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT vil automatisk bytte ut __id__ og __CustomField__ med henholdsvis saksnummeret og verdien til fleksifeltet." #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT vil bruke denne koden for å identifisere installasjonen, og se etter den i emnefeltet i e-postmeldinger for å finne ut hvilken sak meldinga gjelder. Du bør sette verdien lik nettdomenet ditt. Eksempel: eksempel.no" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT kan bruke ulike databaser, og både MySQL, PostgreSQL, Oracle og SQLite er støttet." #: NOT FOUND IN SOURCE msgid "RT's email command mode requires PGP authentication. Either you didn't sign your message, or your signature could not be verified." msgstr "RT's epost kommandomodus krever PGP autentisering. Meldingen din var enten ikke signert, eller signaturen din kunne ikke bekreftes." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT / Admin / Rediger gruppa %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "«RTAddressRegexp»-valget i oppsettet er ikke i samsvar med «%1»" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Fullt navn" # Blir bare brukt som overskrift i en tabell, og kan derfor ha mellomrom. #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "Fullt navn" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Mottaker" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Lagre alle oppdateringene" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekursivt medlem" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Referanse fra %1 lagt til" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Referanse fra %1 slettet" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Referanse til %1 lagt til" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Referanse til %1 slettet" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Referert til av" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "ReferertTilAv" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Refererer til" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "ReferererTil" #: NOT FOUND IN SOURCE msgid "Refine" msgstr "Redefiner" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "Redefiner søket" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Oppdatering" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Oppdater hjemmesiden hvert 10. minutt" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Oppdater hjemmesiden hvert 120. minutt" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Oppdater hjemmesiden hvert 2. minutt" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Oppdater hjemmesiden hvert 20. minutt" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Oppdater hjemmesiden hvert 5. minutt" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Oppdater hjemmesiden hvert 60. minutt" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Oppdater søkeresultatene hvert 10. minutt" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Oppdater søkeresultatene hvert 120. minutt" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Oppdater søkeresultatene hvert 2. minutt" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Oppdater søkeresultatene hvert 20. minutt" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Oppdater søkeresultatene hvert 5. minutt" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Oppdater søkeresultatene hvert 60. minutt" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Oppdater siden hvert %1. minutt" #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Påminnelsen «%1» lagt til" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Påminnelsen «%1» fullført" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Påminnelsen «%1» gjenåpnet" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Påminningssak %1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Påminnelser" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Påminnelser for sak %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Fjern admin-kopimottaker" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Fjern bokmerke" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Fjern kopimottaker" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Fjern innmelder" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Svar" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Svaradresse" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Svar til innmeldere" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Svar på sak" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "SvarPåSak" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Rapporter" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Innmelder" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "Kundens epostaddresse" #: NOT FOUND IN SOURCE msgid "Requestor(s)" msgstr "Kunde(r)" #: NOT FOUND IN SOURCE msgid "RequestorAddresses" msgstr "KundeAddresser" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "Innmeldergruppe" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Innmelder" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Forespørsler må behandles innen" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Obligatorisk parameter «%1» ikke oppgitt" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Tilbakestill" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Generer hemmelig brukerkode" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Tilbakestill til standard" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Hjemme" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Løs" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Løs sak %1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Løst" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Løst av eieren" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Løst i perioden" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Løste saker i perioden – gruppert etter eier" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Løste saker – gruppert etter eier" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "LøstRelativ" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Svar" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "Svar til kunder" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultat" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "Resultater per side" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Gå tilbake til saken" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Skriv passordet på nytt" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Tilbakestill" #: NOT FOUND IN SOURCE msgid "Right %1 not found for %2 %3 in scope %4 (%5)\\n" msgstr "Rettighet %1 kunne ikke finnes for %2 %3 in scope %4 (%5)\\n" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Rettighet delegert" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Rettighet tildelt" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Rettighet lastet" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Rettigheten kunne ikke trekkes tilbake" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Fant ikke rettighet" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Rettighet ikke lastet." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Rettighet trukket tilbake" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Rettigheter" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Rettigheter kunne ikke tildeles for %1" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "Rettigheter kunne ikke trekkes tilbake for %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Roller" #: NOT FOUND IN SOURCE msgid "RootApproval" msgstr "RootGodkjenning" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Rader" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Rader per boks" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rader per side" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite er en database som ikke trenger databasetjener eller oppsett. Den er anbefalt for testing, demonstrasjoner og utvikling, men bør ikke brukes i produksjonsmiljø." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "lø." #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Lør." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "lørdag" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Lagre" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Lagre endringer" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Lagre innstillingene" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Lagre som ny" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Lage endringer" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Lagret %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Fant ikke det lagrede søket %1" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Lagret diagram" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Lagrede søk" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Utløser %1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Utløser opprettet" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Utløserfelt" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Utløser slettet" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Utløsere" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Utløsere og mottakere" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "Scrip for %1\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Utløsere som gjelder alle køene" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Søk" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: NOT FOUND IN SOURCE msgid "Search Criteria" msgstr "Søkekriteria" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Søkeinnstillinger" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Søk etter godkjenninger" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Søk etter saker" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Søk etter saker basert på saksnummer, eller brukernavn/e-postadresse til eier eller innmelder." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Søkevalg" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Søkeresultat gruppert etter %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Oppdater søkeresultatene" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Det kan ta lang tid å søke gjennom hele sakstekstene, men hvis du har behov for det, kan du bruke søkeuttrykket fulltext:søkeord til å søke etter enkeltord i tekst, kommentarer og svar." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Hemmelig brukerkode" #: bin/rt-crontool:350 msgid "Security:" msgstr "Sikkerhet:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Se også:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Se fleksifeltverdier" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Se fleksifelt" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Se utgående e-postmeldinger og mottakerne" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Se private sakskommentarer" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Se sakssammendrag" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "SeFleksifelt" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "SeUtforming" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "SeGruppe" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "SeGruppeutforming" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "SeEgneUtforminger" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "SeKø" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Velg" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Velg databasetype" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Velg fleksifelt" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Velg gruppe" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Velg kø" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Velg kø for den nye saken" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Velg bruker" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Velg et annet språk" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Velg fleksifelt" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Velg fleksifelt for alle køene" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Velg fleksifelt for alle brukergruppene" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Velg fleksifelt for alle brukerne" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Vel fleksifelt for saker i alle køene" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Velg fleksifelt for transaksjoner på saker i alle køene" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Velg gruppe" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Velg flere verdier" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Velg enkeltverdi" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Velg kø" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Velg køene som skal vises på «RT-oversikt»-siden" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Velg utløser" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Velg mal" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Velg opptil %1 verdier" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Velg bruker" #: NOT FOUND IN SOURCE msgid "SelectMultiple" msgstr "VelgFlere" #: NOT FOUND IN SOURCE msgid "SelectSingle" msgstr "VelgEnkelt" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valgte fleksifelt" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Den valgte nøkkelen er ikke tiltrodd, eller finnes ikke lenger" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Valgte objekt" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Utvalg endret. Du bør lagre endringene." #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "Selvbetjening" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "E-posten ble sendt" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Send epost til alle overvåkere" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Send epost til alle overvåkere som \"kommentar\"" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Send e-post til eier og overvåkere" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Send e-post til eier og overvåkere som kommentar" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Send e-post til innmeldere og kopimottakere" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Send e-post til innmeldere og kopimottakere som kommentar" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Send melding til innmelderne" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Send e-post til eksplisitt oppgitte kopi- og blindkopimottakere" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Send e-post til kopimottakerne" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Send e-post til kopimottakerne som kommentar" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Send e-post til de administrative kopimottakerne" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Send e-post til de administrative kopimottakerne som kommentar" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Send e-post til eieren" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "sep." #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Sep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "september" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Innstillinger" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "Korte brukernavn" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "Skal RT sende deg e-post med dine egne saksoppdateringer?" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Vis" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Vis kolonner" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Vis søkeresultat" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Vis saksegenskaper på nivå %1" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Vis godkjente forespørsler" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Vis også" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Vis detaljer" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Vis avviste forespørsler" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Vis detaljer" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Vis koblingsbeskrivelser" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Vis eldste oppdatering først" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Vis ventende forespørsler" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Vis forespørsler som venter på andre godkjenninger" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "Vis sakens private kommentarer" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "Vis sakssammendrag" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "VisACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "VisGodkjenningsfane" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "VisOppsettfane" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "VisUtgåendeEpost" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "VisLagredeSøk" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "VisUtløsere" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "VisMal" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "VisSak" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "VisSakskommentarer" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Makulering" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Makulatoren trenger en mappe å lagre databasedumper i. Se til at mappa %1 finnes, og at vevtjeneren har skrivetilgang til den." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Makulatoren trenger en mappe å lagre databasedumper i. Se til at mappa %1 finnes, og at vevtjeneren har skrivetilgang til den." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Sidestolpe" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Signer" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Signer som standard" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Registrer som innmelder eller kopimottaker for sak eller kø" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Registrer som admin-kopimottaker for sak eller kø" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Signatur" #: NOT FOUND IN SOURCE msgid "Signed in as %1" msgstr "Logget inn som %1" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Signering deaktivert" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Signering aktivert" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Enkelt søk" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Enkel" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Nettstednavn" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Størrelse" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Hopp over menyen" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Hopper over deaktivert bruker" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Liten" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Merk at noen nettlesere bare kan laste inn innhold fra samme domene som RT kjører på." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Noko er galt. Ta kontakt med systemadministratoren." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sorter" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "Sorter nøkkel" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "Sorter resultater etter" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "SorteringsRekkefølge" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortering" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Kilde" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Velg om denne skal kjøres daglig eller ukentlig." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Regneark" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Nivå" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: NOT FOUND IN SOURCE msgid "Stalled" msgstr "Pauset" #: NOT FOUND IN SOURCE msgid "Start page" msgstr "Startside" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Startet" #: NOT FOUND IN SOURCE msgid "Started date '%1' could not be parsed" msgstr "Startdato '%1' kunne ikke tolkes" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "StartetRelativ" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Startdato" #: NOT FOUND IN SOURCE msgid "Starts By" msgstr "Starter Etter" #: NOT FOUND IN SOURCE msgid "Starts date '%1' could not be parsed" msgstr "Startdato '%1' kunne ikke tolkes" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "StartdatoRelativ" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Delstat/region" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Status" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Statusendring" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Status endret fra %1 til %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: NOT FOUND IN SOURCE msgid "StatusChange" msgstr "EndreStatus" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Stjel" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Stjel saker" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "StjeleSak" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Steg %1 av %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Stjålet fra %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Stjålet fra %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Emne" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Emnekode" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Emnet endret til %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "Emnekode" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Emnekode endret til %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Send inn" #: NOT FOUND IN SOURCE msgid "Submit Workflow" msgstr "Send Arbeidsflyt" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Abonner" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Abonner på utformingen %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Abonner på utforminger" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "AbonnerPåUtforming" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Abonnerer på utforminga «%1»" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Abonnement" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Klarte ikke starte abonnement: %1" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Lykkes" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Data dekryptert" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Data kryptert" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "sø." #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Søn." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "søndag" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "Superbruker" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Stoppet" #: NOT FOUND IN SOURCE msgid "System" msgstr "System" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Systemoppsett" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Systemutforminger" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemverdi" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Systemfeil" #: NOT FOUND IN SOURCE msgid "System Error. Right not granted." msgstr "Systemfeil. Rettighet ikke tildelt." #: NOT FOUND IN SOURCE msgid "System Error. right not granted" msgstr "Systemfeil. rettigheter ikke tildelt" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Systemfeil: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systemverktøy" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Systemfeil. Rettigheten ble ikke delegert." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Systemfeil. Rettigheten ble ikke tildelt." #: NOT FOUND IN SOURCE msgid "System error. Unable to grant rights." msgstr "Systemfeil. Kunne ikke tildele rettigheter." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Systemgrupper" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Systemrettigheter" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "Systemrollegruppe for intern bruk" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRENG" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Ta" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Ta saker" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "TaSak" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Tatt" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Oppgi hvor databasen som RT skal bruke er plassert" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Mal" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Mal %1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Mal %1 ble slettet" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Fant ikke malen «%1»" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Mal slettet" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Malen er tom" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Mal er et obligatorisk argument" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Kunne ikke finne mal" #: NOT FOUND IN SOURCE msgid "Template not found\\n" msgstr "Kunne ikke finne mal\\n" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Mal tolket" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Feil ved maltolking" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Maler" #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "Maler for %1\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstfila blir ikke vist, da denne visingen er slått av i innstillingene." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Verdien ble ikke endret" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Dette er ikke en gyldig verdi for fleksifeltet" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Dette er den gamle verdien" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Det primærobjektet har alltid denne rettigheten" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Det primærobjektet har alt en %1 for denne køen" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Det primærobjektet har alt en %1 for denne saken" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Det primærobjektet er ikke en %1 for denne køen" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Det primærobjektet er ikke en %1 for denne saken" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Køen finnes ikke" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Saken har uløste avhengigheter" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "Den brukeren har allerede den rettigheten" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Brukeren eier allerede saken" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Brukeren finnes ikke" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Brukeren har alt utvidede rettigheter" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Brukeren har alt bare enkle rettigheter" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Brukeren har nå utvidede rettigheter" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Brukeren har nå bare enkle rettigheter" #: NOT FOUND IN SOURCE msgid "That user is now unprivilegedileged" msgstr "Den brukeren er allerede upriviligert" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Brukeren kan ikke eie saker i denne køen" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Dette er ikke en numerisk ID" # «Detaljer» er bedre oversettelse enn «Grunnleggende» o.l. i denne sammenhengen. #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Detaljer" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Kopimottaker til en sak" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Databasepassord til DBA" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Administrativ kopimottaker for en sak" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "Kommentarer er lagret" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Domenenavnet til databasetjeneren (eksempel: «db.eksempel.no»)" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Denne kommandoen finner alle aktive saker i køen «general», og setter prioriteten til 99 hvis de ikke har blitt rørt de siste 4 timene:" #: NOT FOUND IN SOURCE msgid "The following commands were not proccessed:\\n\\n" msgstr "De følgende kommandoene ble ikke behandlet:\\n\\n" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Disse spørringene er slettet, og blir fjernet fra utforminga når panelet blir oppdatert" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Disse spørringene er kanskje ikke synlige for alle brukerne som kan se utforminga" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Nøkkelen er deaktivert" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Nøkkelen er tilbakekalt" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Nøkkelen er utløpt" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Nøkkelen er fullstendig tiltrodd" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Nøkkelen er ultimat tiltrodd" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Den nye verdien er lagret" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Eieren av en sak" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Fant ikke siden du ba om" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Innmelder av en sak" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Innstillingene du har valgt er lagret i %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Systemet kan ikke signere utgående e-poster. Dette tyder vanligvis på at passfrasen er feil, eller at GPG Agent ikke kjører. Meld fra til systemadministratoren med en gang. Problemadressene er:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Det finnes flere nøkler egnet for kryptering." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Det finnes uleste meldinger i denne saken." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Nøkkelen er marginalt tiltrodd" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Det finnes ingen nøkler egnet for kryptering." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Det finnes én egnet nøkkel, men tiltro-nivået er ikke definert for denne nøkkelen." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Disse kommentarene er ikke synlige for brukeren" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Disse innstillingene dekker det nødvendige for å sette RT i drift. Du må velge et navn på RT-installasjonen, og oppgi domenenavnet til maskinen. Du må også velge et passord for standard administrativ bruker." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Fleksifeltet hører ikke til under dette objektet" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Denne funksjonen er bare tilgjengelig for systemadministratorer" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Grunnen kan være at mappa «%1» ikke er skrivbar, eller at en databasetabell mangler eller er ødelagt." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Denne meldinga blir sendt til …" #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: NOT FOUND IN SOURCE msgid "This ticket %1 %2 (%3)\\n" msgstr "Denne saken %1 %2 (%3)\\n" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dette verktøyet lar brukeren kjøre Perl-moduler fra RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Denne transaksjonen ser ikke ut til å ha noe innhold" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Denne brukerens %1 høyst prioriterte saker" #: NOT FOUND IN SOURCE msgid "This user's 25 highest priority tickets" msgstr "Denne brukerens 23 høys prioriterte saker" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "to." #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Tor." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "torsdag" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Sak" #: NOT FOUND IN SOURCE msgid "Ticket # %1 %2" msgstr "Sak # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket # %1 Jumbo update: %2" msgstr "Sak $ %1 Jumbo oppdater: %2" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Sak %1 storoppdatering: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Koblingsdiagram for sak %1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "Sak %1:" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Sak %1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Sak %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Sak %1 opprettet i køen «%2»" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "Sak %1 lastet\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Sak %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Fleksifelt for sak" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Saksoppdatering %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "SaksId" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Sak løst" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Sak-søk" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Sakstransaksjoner" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "Saks-vedlegg" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Saksinnhold" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Innholdstype i sak" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Klarte ikke opprette sak, grunnet en intern feil" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Klarte ikke laste inn sak" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "Sak opprettet" #: NOT FOUND IN SOURCE msgid "Ticket creation failed" msgstr "Saksopprettelse feilet" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "Sak slettet" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Saksvising" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "Saksid ikke funnet" #: NOT FOUND IN SOURCE msgid "Ticket killed" msgstr "Sak drept" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Saksinformasjon" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "Sak ikke funnet" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Saksstatus endret" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "Saksovervåkere" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "TicketSQL-søkemodul" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Saker" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Saker %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Sak %1 av %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Saker opprettet etter" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Saker opprettet før" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "Saker fra %1" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Saker løst etter" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Saker løst før" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Saker som er avhengige av denne godkjenningen:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Estimert tidsbruk" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Tid igjen" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tid arbeidet" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Tid igjen" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tid brukt til å generere siden" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Arbeidstid" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "TidEstimert" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "TidIgjen" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "TidArbeidet" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Tidssone" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Tittel" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Til" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "For å generere en diff av denne bekreftelsen:" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "For å genere en diff av denne bekreftelsen" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Ta kontakt med %1 for forespørsler om
opplæring, brukerstøtte, systemtilpassing eller lisensvilkår." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Varslet" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "VarsletRelativ" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Verktøy" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Totalt" #: etc/initialdata:249 msgid "Transaction" msgstr "Transaksjon" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transaksjon %1 slettet" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transaksjon opprettet" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Fleksifelt for transaksjon" #: NOT FOUND IN SOURCE msgid "Transaction->Create couldn't, as you didn't specify a ticket id" msgstr "Transaction->Create kunne ikke, siden du ikke spesifiserte en saksid" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Klarte ikke utføre «Transaction->Create», siden du ikke oppgav objekttype og ID" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "Transaksjonsdato" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transaksjoner kan ikke forandres" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Tiltro" #: NOT FOUND IN SOURCE msgid "Trying to delete a right: %1" msgstr "Prøver å slette en rettighet: %1" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "ti." #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Tir." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "tirsdag" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Type" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Type endret fra «%1» til «%2»" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Klarte ikke fastsette type eller ID til objekt" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Klarte ikke abonnere på utforminga %1: nektet tilgang" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Ikke implementert" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix-brukernavn" #: NOT FOUND IN SOURCE msgid "UnixUsername" msgstr "UnixBrukerNavn" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Ukjent (ingen tiltroverdi tildelt)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Ukjent (verdien er ny for dette systemet)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Ukjent tegnkoding: %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Ukjent felt: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Ubegrenset" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ubegrenset" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Navnløst søk" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Uten utvidede rettigheter" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ikke-valgte fleksifelt" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Ikke-valgte objekt" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Fjern privatnøkkel" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Ikke tatt" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Oppdater" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Oppdater diagram" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "Oppdater ID" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Oppdater sak" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Oppdateringstype" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "Oppdater alle disse sakene samtidig" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "Oppdater epost" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Oppdater format og søk" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Oppdater flere saker" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "Oppdater navn" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Oppdatering ikke loggført." #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "Oppdater valgte saker" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "Oppdater signatur" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Oppdater sak" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "Ooppdater sak # %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Oppdater sak %1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Oppdater sak %1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Oppdateringstypen var verken svar eller kommentar." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "Oppdateringsstatus" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Oppdatert" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Oppdatert lagret søk: %1" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Last opp" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Last opp flere filer" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Last opp flere bilder" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Last opp enkeltfil" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Last opp enkeltbilde" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Last opp opptil %1 filer" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Last opp opptil %1 bilder" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Last opp endringer" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Bruk: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Bruk SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Bruk CSS-regler for å vise tekst i en fastbreddeskrift, med formatering bevart, men med linjeskift om nødvendig. Dette fungerer ikke bra i Internet Explorer 6, og hvis du bruker denne nettleseren, bør du derfor bruke det forrige valget." #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Systemverdi (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Bruk andre administrative verktøy for RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Systemverdi (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Bruk dette for å beskytte rentekstformatet." #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Bruker" #: NOT FOUND IN SOURCE msgid "User %1 %2: %3\\n" msgstr "Bruker %1 %2: %3\\n" #: NOT FOUND IN SOURCE msgid "User %1 Password: %2\\n" msgstr "Bruker %1 Passord: %2\\n" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Fant ikke brukeren «%1»." #: NOT FOUND IN SOURCE msgid "User '%1' not found" msgstr "Brukeren '%1' ble ikke funnet" #: NOT FOUND IN SOURCE msgid "User '%1' not found\\n" msgstr "Brukeren '%1' ble ikke funnet" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Bruker (opprettet – utløper)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Tilpasset" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Brukerdefinerte vilkår og handlinger" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "BrukerID" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "BrukerId" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Brukerrettigheter" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Brukeren ba om en ukjent oppdateringstype for fleksifeltet %1 for %2 objekt %3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Klarte ikke opprette brukeren: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Bruker opprettet" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Brukerdefinerte grupper" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Bruker deaktivert" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Bruker aktivert" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Brukeren mangler e-postadresse" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Bruker lastet" #: NOT FOUND IN SOURCE msgid "User notified" msgstr "Bruker informert" #: NOT FOUND IN SOURCE msgid "User view" msgstr "Brukervisning" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "GnuPG-nøkler til bruker" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Brukerdefinerte grupper" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Brukernavn" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Format på brukernavn" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Brukere" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Brukere i samsvar med søkekriterium" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Bruker transaksjon %1 …" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Gyldig spørring" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Formatkontroll" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Verdi" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "KøVerdi" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Verdier" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "Variabel" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Forskjellige RT-rapporter" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Versjon" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Vis utforminger for gruppa" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Vis personlige utforminger" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Vis systemutforminger" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: NOT FOUND IN SOURCE msgid "VrijevormEnkele" msgstr "VrijevormEnkele" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "Høyde på visuelt skrivefelt" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "Visuelt skrivefelt" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Advarsel: Meldinga er ikke signert." #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Advarsel: Du har ikke noen lagret e-postadresse, og vil ikke motta utforminga før du skriver inn e-postadressen din." #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Overvåk" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "OvervåkSomAdminkopimottaker" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Overvåker" #: NOT FOUND IN SOURCE msgid "Watcher loaded" msgstr "Overvåker lastet" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "Overvåkergruppe" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Overvåkere" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Fant databasen, og kan koble til som databaseadministrator. Trykk «Tilpass detaljer» for å forsette å sette opp RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Du må oppgi navnet og plasseringen til databasen, samt brukernavnet og passordet til brukeren RT skal bruke. Du må oppgi brukernavn og passord til en bruker med administratortilgang, slik at RT kan opprette databasen og brukeren for deg automatisk. I steg 6 av installasjonen vert denne informasjonen brukt til å opprette og klargjøre RT-databasen." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Port" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "WebFormatering" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "on." #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Ons." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "onsdag" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Ukentlig sammendrag" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Velkommen til RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Gjort i dag" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Hva er RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Hvor skal e-postmeldinger som RT ikke kan håndtere videresendes?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Feltene «From» og «Reply-To» i meldingshodet til e-postene blir automatisk fylt ut, slik at brukeren bare trenger å bruke svarfunksjonen i e-postprogrammet for å legge mer informasjon til saken. Systemet kan automatisk bruke forskjellige adresser for svar og for kommentarer, og forskjellige adresser for ulike køer. Adressene må settes opp til å bruke programmet rt-mailgate." #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "Når en sak har blitt godkjent av alle godkjennere, legg til korrespondanse for den opprinnelige saken" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "Når en sak har blitt godkjent av en godkjenner, legg til korrespondanse til den orginale saken" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Når en sak blir opprettet" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Varsle eieren og admin-kopimottakeren når det blir opprettet en ny godkjenningssak" #: etc/initialdata:110 msgid "When anything happens" msgstr "Når noe skjer" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Det kan oppstå en liten pause når du trykker «Kontroller databasetilgang», siden RT prøver å koble til databasen." #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Når en sak blir løst" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Når en sak blir avvist" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Når en sak blir gjenåpnet" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Når en sak blir løst" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Når en sak får ny eier" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Når en sak får ny prioritet" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Når en sak flyttes til en ny kø" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Når en sak får ny status" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Når en brukerdefinert betingelse intreffer" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Når en ny kommentar blir lagt til" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Når et svar blir lagt til" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Adressen til «sendmail»-programfila." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Slett" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Arbeid" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "TelefonArbeid" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Arbeidet" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Ja" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Du eier allerede denne saken" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Du er i ferd med å kryptere utgående meldinger, men det er feil med offentlignøklene til mottakerne. Du må ordne opp i nøkkelproblemene, slå av sending av meldinger til mottakerne med nøkkelproblemer, eller slå av meldingskryptering." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Du er i ferd med å kryptere utgående meldinger, men det er feil med offentlignøkkelen til mottakeren. Du må ordne opp i nøkkelproblemet, slå av sending av meldinger til mottakeren med nøkkelproblem, eller slå av meldingskryptering." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Du er ikke en godkjent bruker" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Du kan hoppe til den første uleste meldinga, eller hoppe til den første uleste meldinga og merke alle meldingene som leste." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kan også redigere søket" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "Du kan ikke velge passord" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Du kan bare velge eier på saker som du eier, eller som mangler eier" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Du kan bare ta saker som mangler eier" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Du har ikke superbruker-rettigheter." #: NOT FOUND IN SOURCE msgid "You don't have permission to view that ticket.\\n" msgstr "Du har ikke tilgang til å se den saken.\\n" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Du fant %1 saker i køen %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Du er nå logget ut av RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Du har ikke tilgang til å opprette saker i køen." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Du har ikke tilgang til å opprette saker i køen." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Du må oppgi et administrativt passord" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Du blir tatt til innloggingssiden. Du kan da logge inn med brukernavnet %1 og passordet du valgte tidligere." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Du blir tatt til innloggingssiden. Du kan da logge inn med brukernavnet root og passordet du valgte tidligere." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Du bør velge databasesystemet som du eller systemadministratoren kjenner best." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Du ser denne teksten fordi du startet en RT-tjener uten en fungerende database. Mest sannsynlig er dette første gang du kjører RT. Trykk Start for å åpne en veiviser som hjelper deg å sette opp RT-tjeneren og tilhørende database." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Du ser denne teksten fordi du startet en RT-tjener uten en fungerende database. Mest sannsynlig er dette første gang du kjører RT. Trykk \"%1\" for å åpne en veiviser som hjelper deg å sette opp RT-tjeneren og tilhørende database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Velkommen tilbake" #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "Dine %1 forespørsler" #: NOT FOUND IN SOURCE msgid "Your RT administrator has misconfigured the mail aliases which invoke RT" msgstr "Din RT administrastor har feilkonfigurert mail aliasene som kaller RT" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Ditt nåværende passord" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "Passordet er ikke registrert" #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "Din forespørsel har blitt godkjent av %1. Andre godkjennelser avventer kanskje fortsatt" #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "Din forespørsel ble godkjent." #: NOT FOUND IN SOURCE msgid "Your request was rejected" msgstr "Din forespørsel ble avvist" #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "Din forespørsel ble avvist" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Feil brukernavn eller passord" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Postnummer" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Ned]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Opp]" #: NOT FOUND IN SOURCE msgid "[no subject]" msgstr "[ikke noe emne]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ingen]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "Legg 
-tagger rundt rentekst-vedlegg"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "etter"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "gjør det mulig å lagre søk"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "gjør det mulig å åpne lagrede søk"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "som gitt til %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "Stolpediagram"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "før"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "bunn til topp"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "Kryss av her for å bruke fleksifeltet på alle objektene."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "Kryss av her for å fjerne fleksifeltet fra alle objektene, slik at du kan bruke det på enkeltobjekt."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "kryss av for å legge til"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "trykk for å merke eller fjerne merkingen for alle objektene"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "lukket"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "konsis"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "inneholder"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "innhold"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "innholdstype"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "Globalt oppsett"

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "korrespondanse (sansynligvis) ikke sendt"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "korrespondanse sendt"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "fleksifeltet «%1»"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "daglig"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "daglig klokka %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dager"

#: NOT FOUND IN SOURCE
msgid "dead"
msgstr "død"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "slett"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "slettet"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "Vis rentekst-vedlegg med formatering og linjeskift"

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "treffer ikke"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "inneholder ikke"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "inneholder ikke"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "last ned"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "er lik"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "Feil: kan ikke flytte ned"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "Feil: kan ikke flytte til venstre"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "Feil: kan ikke flytte opp"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "Feil: ingenting å slette"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "Feil: ingenting å flytte"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "Feil: ingenting å bytte mellom"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "hver"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "tillegget ble kjørt"

#: NOT FOUND IN SOURCE
msgid "false"
msgstr "usant"

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "filnavn"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "fullstendig"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "er større enn"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "gruppe «%1»"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "timer"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "ID"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "er lik"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "er ulik"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "nøkkel deaktivert"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "nøkkel utløpt"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "nøkkel tilbakekalt"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "venstre til høyre"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "er mindre enn"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginalt"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "inneholder"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "Maksdybde"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "minutt"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minutt"

#: NOT FOUND IN SOURCE
msgid "modifications\\n\\n"
msgstr "endringer\\n\\n"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "månedlig"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "månedlig (dag %1) klokka %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "måneder"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "aldri"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "ny"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "nei"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "uten navn"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "ingen verdi"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "ingen"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "er ulik"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "ingenting"

#: NOT FOUND IN SOURCE
msgid "notlike"
msgstr "ikkelik"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "objektene ble fjernet"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "på"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "på dag"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "én"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "åpen"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "åpne/lukk"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "annen …"

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "personlig gruppe «%1» for brukeren «%2»"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "Kakediagram"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "tillegget returnerte en tom liste"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "kø %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "avvist"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "løst"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "høyre til venstre"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sekund"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "se objektliste nedenfor"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "vis godkjenningsfane"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "vis oppsettfane"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "Lokalt oppsett"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "stoppet"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "sammendragsrader"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "system %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "systemgruppa «%1»"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "den kallende komponenten oppga ikke hvorfor"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "standardadressene som skal vises i «From» og «Reply-To»-feltene i kommentarmeldinger."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "standardadressene som skal vises i «From» og «Reply-To»-feltene i svarmeldinger."

#: NOT FOUND IN SOURCE
msgid "ticket"
msgstr "sak"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "sak %1 %2"

#: NOT FOUND IN SOURCE
msgid "ticket %1"
msgstr "sak %1"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "topp til bunn"

#: NOT FOUND IN SOURCE
msgid "true"
msgstr "sant"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "ultimat"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "ubeskrevet gruppe %1"

#: NOT FOUND IN SOURCE
msgid "undescripbed group %1"
msgstr "ubeskrevet gruppe %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "ubegrenset"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "bruker %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "utvidede meldinger"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "ukentlig"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "ukentlig (%1) klokken %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "uker"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "hvilken port vevtjeneren skal lytte på (eksempel: 8080)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "med meldingshode"

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "med malen %1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "år"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "ja"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/fi.po0000664000175000017500000114024112262650742013733 0ustar  chmrrchmrr# Finnish localization catalog for Request Tracker (RT)
# First Author: Janne Pirkkanen , Jul 2002
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:18+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (ei julkista avainta)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (ei luotettu)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "Tiketti #%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3.%2 %7 %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 lisätty"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 sitten"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1: %2 muutettu arvoon %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 poistettu"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 postettu."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 uudelleenimetty muotoon %3"

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 tallennettu."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 päivitetty"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 mallia %3"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 tässä tapauksessa\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) lähettäjä %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Ei muutoksia)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (lähtöisin paneelista %2)"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "näkyvillä %1 - %2"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Mukauta LogToScreen konfiguraatioparametria"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Argumentti %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Tulosta tilan muutokset STDOUT:iin"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Määrittele haluamasi mallin id-numero"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 Määrittele haluatko käyttää 'first','last' vai 'all' tapahtumia"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Määritä nimi tai id-tunniste niille mallipohjille joita haluat käyttää"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Määrittele toimintomoduli jota haluat käyttää"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Määrittele lista toimintojen tyypeistä joita haluat käyttää (pilkulla erotettuna)"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Määrittele ehto-moduli jota haluat käyttää"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 Määrittele hakumoduli jota haluat käyttää"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Työtilat"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "Automaattitoiminto %1 ladattu"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 lisätty %2 arvoksi"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on"
msgstr "%1 aliakset vaativat tapauksen id:n"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on "
msgstr "%1 aliakset vaativat tapauksen id:n "

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on (from %2) %3"
msgstr "%1 aliakset vaativat tapauksen id:n (osoite %2) %3"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 on jo olemassa ja sisältää RT:n taulut mutta tauluissa ei ole RT:n metatiedot. 'Alusta tietokanta' askel voi lisätä metatiedot olemassa olevaan tietokantaan. Jos hyväksytte tämän klikatkaa 'Muokkaa perustietoja' valintaa alapuolella jatkaaksenne RT:n kustomointia."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 on jo olemassa mutta ei sisällä RT:n tauluja tai metatietoja. 'Alusta tietokanta' askel voi lisätä taulut ja metatiedot tietokantaan. Jos hyväksytte tämän klikatkaa 'Muokkaa perustietoja'-valintaa alapuolella jatkaaksenne RT:n kustomointia."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 on paikallinen objekti mutta sitä ei löydy tietokannasta"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 on alustettu. Tauluja ei tarvitse luoda uudestaan eikä metatietoja tarvitse lisätä, voit jatkaa RT:n kustomointia klikkaamalla 'Muokkaa perustietoja'-valintaa alapuolella"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 - %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 muutettu arvosta %2 arvoon %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 muutettu arvosta '%2' arvoon '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 kaavio %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 kopio"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 arvoa ei voitu asettaa arvoksi %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't init a transaction (%2)\\n"
msgstr "%1 ei voinut suorittaa tapahtumaa (%2)\\n"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 ei voinut asettaa tilaa päätetyksi. RT:n tietokanta saattaa olla vioittunut."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 luotu"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 poistettu"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 ei käytössä"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 ei ole olemassa."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 käytössä"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 tärkeintä minun tikettiä"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "%1 tärkeintä omistamaani tapausta..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "%1 tärkeintä tilaamaani tapausta..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 on työkalu joka reagoi tiketteihin ulkoisista ajastusohjelmista kuten cron-palvelusta."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 on apuohjelma joka on tarkoitettu ajettavaksi cron-palvelusta, joka lähettää kaikki lykätyt RT:n ilmoitukset lyhennelminä."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "RT lähettää sähköpostia osoitteesta %1. Lisäämällä sen '%2' luodaan sähköpostisilmukka (jota et halua)."

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 ei ole enää %2 tälle jonolle."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 ei ole enää %2 tälle tiketille."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 ei ole enää kentän %2 arvo"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 ei ole kelvollinen työjonon id"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 minuuttia"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 viimeksi päivitettyä artikkelia"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 uusinta artikkelia"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 uusinta osoittamatonta tikettiä"

#: NOT FOUND IN SOURCE
msgid "%1 not shown"
msgstr "%1 ei näy"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objektia"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 sivuston asetukset"

#: NOT FOUND IN SOURCE
msgid "%1 succeeded\\n"
msgstr "%1 onnistui\\n"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 päivitys: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 päivitys: Ei muutoksia"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 päivitetty"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 ratkaisee kaikki tikettiryhmän tapaukset."

#: NOT FOUND IN SOURCE
msgid "%1 will stall a [local] BASE if it's dependent [or member] of a linked up request."
msgstr "%1 jäädyttää [paikallisen] BASE jos se riippuu linkitetystä tapauksesta [tai on sen jäsen]."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1:n %2 objektia"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1:n %2:n %3 objektia"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "käyttäjän %1 GnuPG avaimet"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "käyttäjän %1 nykyinen salasana"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1:n työtilat"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1:n tallennettua hakua"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: liitetiedostoa ei ole määritelty"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Uusi tiketti%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1t"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hour)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' ei kelpaa tilan arvoksi"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "'%1' not a recognized action. "
msgstr "'%1' ei ole tunnettu tapahtuma. "

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "Roolit"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'Järjestelmä'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'Käyttäjäryhmät'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'Käyttäjät'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check box to delete group member)"
msgstr "(Rastita laatikko poistaaksesi ryhmän jäsenen)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(Rastita laatikko poistaaksesi toiminnon)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Valitse poistettavat)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Rastita laatikko poistaaksesi)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Valitse vastaanottajat joille ei lähetetä ilmoituksia)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Valitse vastaanottajat joille lähetetään ilmoituksia)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "Kirjoita tikettien numerot tai URLit välilyönneillä erotettuna"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Jos jätetty tyhjäksi, asetetaan oletusarvoisesti arvoon %1)"

#: NOT FOUND IN SOURCE
msgid "(No Value)"
msgstr "(Ei arvoa)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Ei kenttiä)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Ei jäseniä)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Ei komentosarjoja)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Ei mallineita)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Ei mitään)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Lähettää piilokopion vain tästä päivityksestä pilkulla erotettuihin sähköpostiosoitteisiin. Ei lisää pysyviksi vastaanottajiksi.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Lähettää piilokopion vain tästä päivityksestä pilkulla erotettuihin sähköpostiosoitteisiin. Ei lisää pysyviksi vastaanottajiksi.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Lähettää kopion tästä päivityksestä pilkulla erotettuihin hallinnollisiin sähköpostiosoitteisiin. Lisää pysyviksi vastaanottajiksi.)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Lähettää kopion tästä muutoksesta pääkäyttäjien sähköpostiosoitteisiin. Osoitteiden tulee olla erotettuina toisistaan pilkulla. Nämä henkilöt vastaanottavat myös kaikki tulevaisuudessa tapahtuvat päivitykset.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Lähettää kopion vain tästä päivityksestä pilkulla erotettuihin sähköpostiosoitteisiin. Ei lisää pysyviksi vastaanottajiksi.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Lähettää kopion vain tästä päivityksestä pilkulla erotettuihin sähköpostiosoitteisiin. Ei lisää pysyviksi vastaanottajiksi.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Lähettää kopion tästä päivityksestä pilkulla erotettuihin sähköpostiosoitteisiin. Lisää pysyviksi vastaanottajiksi.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Lähettää kopion tästä muutoksesta näihin sähköpostiosoitteisiin. Osoitteiden tulee olla erotettuina toisistaan pilkulla. Nämä henkilöt vastaanottavat myös kaikki tulevaisuudessa tapahtuvat päivitykset.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Käytä näitä kenttiä kun valitset ehdoksi tai toiminnoksi 'Käyttäjän määrittelemä')"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Ei lähetetä sähköpostia)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(mikä tahansa)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(tyhjä)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(ei yhteenvetoa)"

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(ei nimiä listattuna)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(ei nimeä)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(ei julkista avainta!)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(ei otsikkoa)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(ei arvoa)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(ei arvoja)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(vain yksi tiketti)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(%quant(%1,muuta tikettiä) odottaa)"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(odottaa hyväksyntää)"

#: NOT FOUND IN SOURCE
msgid "(pending other tickets)"
msgstr "(odottaa toisia tapauksia)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(pakollinen)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(luota: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(nimetön)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(epäluotettu!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id on vanhentunut komentoparametri, eikä sitä voida käyttää yhdessä --template parametrin kanssa"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--tapahtuman argumentti voi olla vain 'first', 'last' tai 'all'"

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I own..."
msgstr "25 tärkeintä omistamaani tapausta..."

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I requested..."
msgstr "25 tärkeintä tilaamaani tapausta..."

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Kaikki iCal syötteet sisältävät salaisen tunnisteen. Jos jonkin iCal syötteen osoite paljastuu kolmansille osapuolille voit hankkia uuden tunnisteen.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Tyhjä malli" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Koska salasanaa ei asetettu, käyttäjä ei pysty kirjautumaan järjestelmään." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE ei löytynyt" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACE:ja voi vain luoda ja poistaa." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "JA" #: NOT FOUND IN SOURCE msgid "Aborting to avoid unintended ticket modifications.\\n" msgstr "Peruutetaan tarkoittamattomien tapausmuutosten välttämiseksi.\\n" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Omat asetukset" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Pääsynvalvonta" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Tapahtuma" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Tapahtumaa %1 ei löydetty" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Toiminto '%1' ei löydy" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Toiminto kommentoitu.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Toiminto on välttämätön argumentti" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Toiminto valmisteltu..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Toimenpiteet" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "Lisää %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Lisää kopio ylläpidolle" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Lisää suosikkeihin" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Lisää kopio" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Lisää rivejä" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Lisää ehto" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Liitä" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Lisää tilaaja" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Lisää arvo" #: NOT FOUND IN SOURCE msgid "Add a new a global scrip" msgstr "Lisää uusi yleinen toiminto" #: NOT FOUND IN SOURCE msgid "Add a scrip to this queue" msgstr "Lisää toiminto tähän työjonoon" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Lisää kaikille jonoille yhteinen toiminto" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Lisää kommentteja tai vastauksia valituille tiketeille" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Lisää ryhmä" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Lisää jäseniä" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Lisää uusia valvojia" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Lisää nämä ehdot" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Lisää nämä ehdot ja hae" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Lisää käytttäjä" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Lisää arvoja" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Lisää, poista tai muokkaa erikoiskentän arvoja objektille" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Lisätty toimeksiantaja %1:ksi tähän jonoon" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Lisätty ehto %1 tälle tiketille" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Osoite" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Osoite 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Osoite1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Osoite2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Kopio ylläpidolle" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Ylläpidon kommentti" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Ylläpidon vastaus" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Jonojen ylläpito" #: NOT FOUND IN SOURCE msgid "Admin users" msgstr "Käyttäjien ylläpito" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Ylläpito/Yleiset asetukset" #: NOT FOUND IN SOURCE msgid "Admin/Groups" msgstr "Ylläpito/Ryhmät" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "Ylläpito/Työjono/Perustiedot" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGroup" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "Kopio ylläpidolle" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCcs" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminCustomField" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGroup" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGroupMembership" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminOwnPersonalGroups" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminQueue" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminUsers" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Kopio ylläpidolle" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Hallintasalasana" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Lisäasetukset" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "Tarkennettu haku" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Tarkennettu haku" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "Ikä" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Yhdistäjä" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Kaikki hyväksynnät saatu" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "Kaikki luokat" #: NOT FOUND IN SOURCE msgid "All Custom Fields" msgstr "Kaikki kentät" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Kaikki jonot" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "Kaikki tiketit" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Kaikki iCal syötteet sisältävät salaisen tunnisteen. Jos jonkin iCal syötteen osoite paljastuu kolmansille osapuolille voit hankkia uuden tunnisteen." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Kaikki hakukriteerejä vastaavat jonot" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Kaikki tiketit" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Kaikki aiheet" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "Salli hakujen tallentaminen" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "Salli tallennettujen hakujen lataaminen" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Salattu" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Ja/Tai" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Mikä tahansa kenttä" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Asetettu voimaan" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Pätee" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Koskee kaikkia objekteja" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Käytä" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Ota käyttöön kaikkialla" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Käytä" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Hyväksyntä" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Hyväksyntä #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Hyväksyntä #%1: Merkintöjä ei tallennettu järjestelmävirheen takia" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Hyväksyntä #%1: Merkinnät tallennettu" #: NOT FOUND IN SOURCE msgid "Approval Details" msgstr "Hyväksynnän lisätiedot" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Hyväksytty" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Hyväksyntä valmiina yhteyshenkilölle" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Hylätty" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Hyväksy" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Hyväksyjän merkintöjä: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "huhti" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "huhti" #: NOT FOUND IN SOURCE msgid "April" msgstr "huhtikuu" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "Haluatko poistaa artikkelin?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "Artikkeli %1 poistettu" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "Artikkeli %1: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "Artikkeli %1" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "Artikkeli %1 luotu" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Artikkelien hallinta" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "Artikkeli poistettu" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artikkelia ei löydy" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "Artikkelit" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "Artikkelit kohteessa %1" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artikkelit ilman aihetta" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Asc" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Nouseva" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Määritä ja poista erikoiskentät" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "AssignCustomFields" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Liitetiedosto" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Lisää tiedosto" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Liitetiedostot" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Liite" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Liitteen '%1' lataaminen ei onnistunut" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Liitetiedosto luotu" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Liitetiedoston nimi" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Liitetiedostot" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Liitteiden salaus on pois käytöstä" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Määrite poistettu" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "elokuu" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "elo" #: NOT FOUND IN SOURCE msgid "August" msgstr "elokuu" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Automaattivastaus" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Automaattivastaus tilaajille" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Käytettävissä" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Piilokopio" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Takaisin" #: NOT FOUND IN SOURCE msgid "Bad PGP Signature: %1\\n" msgstr "Virheellinen PGP allekirjoitus: %1\\n" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "Virheellinen liitteen numero. Liitetiedostoa '%1' ei löytynyt\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "Virheellistä dataa kentässä %1" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Huono yksitysisyysmäärite %1" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "Virheellinen tapahtuman numero liitetiedostolle. %1 pitäisi olla %2\\n" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Perustiedot" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Piilokopio" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Muista tallentaa muutokset" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC yrityksen logo" #: etc/initialdata:214 msgid "Blank" msgstr "Tyhjä" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Sisältö" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Lihavoitu" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Suosikki" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "Osoite tähän kyselyyn (selaimen kirjanmerkkeihin)" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Suosikit" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Normaali" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Selaa aiheittain" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Tikettien päivitys" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Tapausten ryhmäpäivitys" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Osta tuki" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Tikettijärjestelmä käyttää oletuksena järjestelmäsi aikavyöhykettä. Tämä mahdollistaa järjestelmänlaajuisen oletuksen päivämäärien ja ajan näyttämiselle. Käyttäjät voivat vaihtaa aikavyöhykettä omista asetuksistaan." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "Kopio-ryhmä" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Talletettua hakua \"%1\" ei pystytä lataamaan" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Järjestelmäkäyttäjien muokkaus ei ole sallittua" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Näkeekö toimeksiantaja tämän jonon" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Kentän lisääminen ilman nimeä ei onnistu" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Kokoelmaa luokalle '%1' ei löydy" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Tallennettuja hakuja ei löydy" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Tiketti ei voi viitata itseensä" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "Et voi yhdistää jo yhdistettyyn tapaukseen. Sinun ei pitäisi saada tätä virhettä koskaan." #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Ei voida tallentaa %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Ei voida tallentaa tätä hakua" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Sekä juuren ja kohteen määritteleminen samalla ei ole mahdollista" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Ei voitu luoda tikettejä passiiviseen ryhmään." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Käyttäjää ei voitu luoda: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Luokittelut pohjautuvat" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Luokka" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Luokittelu poistettu" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Kopio" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Kopio" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Muuta" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Muuta Hyväksytty tiketti avoimeksi" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Vaihda salasanaa" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Valitse kaikki" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Tarkista tietokantayhteys" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Tarkista tietokantayhteyksien käyttäjätiedot" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Valitse laatikko poistaaksesi" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Valitse laatikko peruaksesi oikeuden" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Tarkista tietokannan oikeudet" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Johdannaiset" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Valitse tietokanta" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Valitse tietokantamoottori" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Kaupunki" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "Luokka" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Luokan nimi" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "Luokan tunnus" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "Luokka on jo käytössä kohteelle %1" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "Luokat" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Tyhjennä" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tyhjennä kaikki" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Valitse \"Valmistele asennus\" alapuolelta lopettaaksesi automaattisen toiminnon." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Valitse \"Alusta tietokanta\" luodaksesi tikettijärjestelmän tietokanta ja lisätäksesi metatiedot. Tämä voi kestää hetken" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Sulje ikkuna" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Valmistunut" #: NOT FOUND IN SOURCE msgid "Closed requests" msgstr "Suljetut tapaukset" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Suljetut tiketit" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Monivalinta: Valitse tai lisää vaihtoehtoja" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Monivalinta: Valitse tai lisää yksi arvo" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Monivalinta: Valitse tai lisää %1 arvo" #: NOT FOUND IN SOURCE msgid "Command not understood!\\n" msgstr "Komentoa ei ymmärretty!\\n" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Kommentoi" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Kommenttien osoite" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Kommenttiosoite" #: NOT FOUND IN SOURCE msgid "Comment not recorded" msgstr "Kommenttia ei tallennettu" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Kommentoi tikettejä" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "CommentAddress" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "CommentOnTicket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentit" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Kommentti (ei lähetetä tilaajille)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Kommentti (ei lähetetä tilaajille)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "Kommentit kohteesta %1" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Kommentit tästä käyttäjästä" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Kommentti lisätty" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Suorita tumppi" #: NOT FOUND IN SOURCE msgid "Compile Restrictions" msgstr "Kokoa rajoitukset" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Ehto" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Ehtoa '%1' ei löydy" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Tila on pakollinen määrite" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Ehto täsmää..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Ehtoa ei löydetty" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Ehto, Toiminto ja Malli" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Asetustiedosto %1 on lukittu" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Ylläpito" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "Jonon %1 asetukset" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Vahvista" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Yhteys muodostettu" #: NOT FOUND IN SOURCE msgid "ContactInfoSystem" msgstr "Yhteystietojärjestelmä" #: NOT FOUND IN SOURCE msgid "Contacted date '%1' could not be parsed" msgstr "Järjestelmä ei ymmärrä päivää '%1'" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Sisältö" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "Sisältö ei ole kelvollinen IP-osoite" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "Sisältö ei ole kelvollinen IP-osoitealue" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Sisällön tyyppi" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "ContentType" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Tilaajan osoite" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "CorrespondAddress" #: etc/initialdata:283 msgid "Correspondence" msgstr "Vastaus" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "Kirjeenvaihdon osoite" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Kirjeenvaihto lisätty" #: NOT FOUND IN SOURCE msgid "Correspondence not recorded" msgstr "Vastausta ei tallennettu" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "Uuden tiedon lisääminen kenttään epäonnistui " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. %1 " msgstr "Uuden kentän lisäys tapaukselle epäonnistui. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Ei voitu lisätä uutta erikoiskentän arvoa: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Omistajaa ei voitu vaihtaa. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Ei voida vaihtaa yhteyshenkilöä: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Uuden kentän lisääminen epäonnistui" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Ei voitu luoda erikoiskenttää: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Ryhmän luominen epäonnistui" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "Ei voitu luoda hakua: %1" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Mallin luonti epäonnistui: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Ei voitu luoda tikettiä passiiviseen jonoon \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Tiketin luonti epäonnistui. Jonoa ei ole asetettu" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Käyttäjän luonti epäonnistui" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not find a ticket with id %1" msgstr "Tapausta numerolla %1 ei löytynyt." #: NOT FOUND IN SOURCE msgid "Could not find group %1." msgstr "Ryhmää %1 ei löytynyt." #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Käyttäjää ei löydetty eikä pystytty luomaan" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Tätä toimeksiantajaa ei löytynyt" #: NOT FOUND IN SOURCE msgid "Could not find user %1." msgstr "Käyttäjää %1 ei löytynyt." #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Ei voitu ladata %1 määritettä" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Luokan %1 lataaminen ei onnistunut" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Ei voitu ladata erikoiskenttää %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Ryhmän lataaminen ei onnistunut" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Ei voitu ladata objektia %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Ei voinut tehdä toimeksiantajaa %1:ksi tälle jonolle" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Ei voitu lisätä ehtoa %1 tälle tiketille" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Toimeksiantajaa ei voitu poistaa tältä jonolta: %1" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Ehtoa ei voitu poistaa tästä tiketistä: %1" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Ei voitu asettaa käyttäjätietoa" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Ei voitu lisätä liitetiedostoa" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Jäsenen lisääminen ryhmään ei onnistunut" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Tapahtuman luominen ei onnistunut: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Ei voitu luoda merkintää" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "Tietueen luominen ei onnistunut: %1" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Ei voitu poistaa työtilaa %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't figure out what to do from gpg's reply\\n" msgstr "Järjestelmä ei gpg:n vastauksesta ymmärtänyt mitä tehdä\\n" #: NOT FOUND IN SOURCE msgid "Couldn't find group\\n" msgstr "Ryhmää ei löytynyt\\n" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Riviä ei löytynyt" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Sopivaa tapahtumaa ei löydy, hypätään yli" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Toimeksiantajaa ei löytynyt" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Arvoa ei löytynyt" #: NOT FOUND IN SOURCE msgid "Couldn't find that watcher" msgstr "Tarkkailijaa ei löytynyt" #: NOT FOUND IN SOURCE msgid "Couldn't find user\\n" msgstr "Käyttäjää ei löytynyt\\n" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Ei onnistuttu lataamaan käyttäjää %1 tietokannasta.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Ei voitu ladata luokkaa %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Ei voitu ladata erikoiskenttää #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Ei voitu ladata erikoiskenttää #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load RT config file '%1' %2" msgstr "RT-asetustiedoston lataaminen ei onnistunut:'%1' %2" #: NOT FOUND IN SOURCE msgid "Couldn't load Scrips." msgstr "Toimintojen lataaminen ei onnistunut." #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Ei voitu ladata tiketin #%1 kopiota" #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Ei voitu ladata työtilaa %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Ei voitu ladata työtilaa %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Ei voitu ladata ryhmää #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Ryhmän %1 lataaminen ei onnistunut" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Linkin lataaminen ei onnistunut" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Ei voitu ladata objektia %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Ei voitu ladata tai luoda käyttäjää: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Jonon lataaminen ei onnistunut" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Ei voitu ladata jonoa #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Jonon %1 lataaminen ei onnistunut" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Ei voitu ladata jonoa '%1'" #: NOT FOUND IN SOURCE msgid "Couldn't load scrip" msgstr "Toiminnon lataaminen ei onnistunut" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Ei voitu ladata automaattitoimintoa #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load template" msgstr "Pohjan lataaminen ei onnistunut" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Ei voitu ladata mallia #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "Tämän käyttäjän lataaminen ei onnistunut (%1)" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Tiketin '%1' lataaminen ei onnistunut" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Ei voitu ladata toimintoa #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Ei voitu ladata käyttäjää" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Ei voitu ladata käyttäjää #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Ei voitu muodostaa osoitetta merkkijonosta '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Ei voitu korvata sisältöä salaamattomalla tiedolla: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Ei voitu korvata sisältöä salatulla tiedolla: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Ei voitu muodostaa '%1' osoitteeksi." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Ei voitu selvittää '%1' osoitteeksi." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Ei voitu selvittää kohdetta '%1' osoitteeksi." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Ei voitu lähettää sähköpostia" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Ei voitu asettaa %1 valvojaa: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Ei voitu asettaa henkilökohtaista avainta" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Ei voitu poistaa henkilökohtaista avainta" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Maa" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Luo" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Luo tikettejä" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Luo kenttä" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Luo kenttä jonolle %1" #: NOT FOUND IN SOURCE msgid "Create a CustomField that applies to all queues" msgstr "Luo kenttä, jota sovelletaan kaikkiin työjonoihin" #: NOT FOUND IN SOURCE msgid "Create a new Custom Field" msgstr "Luo uusi kenttä" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "Uusi artikkeli" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Uusi artikkeli kohteeseen" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Luo uusi työtila" #: NOT FOUND IN SOURCE msgid "Create a new global scrip" msgstr "Luo uusi yleinen toiminto" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Luo uusi ryhmä" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Luo uusi henkilökohtainen ryhmä" #: NOT FOUND IN SOURCE msgid "Create a new queue" msgstr "Luo uusi työjono" #: NOT FOUND IN SOURCE msgid "Create a new scrip" msgstr "Luo uusi toiminto" #: NOT FOUND IN SOURCE msgid "Create a new template" msgstr "Luo uusi pohja" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "Uusi mallipohja jonolle %1" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Luo uusi tiketti" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Luo uusi käyttäjä" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Luo uusi jono" #: NOT FOUND IN SOURCE msgid "Create a queue called" msgstr "Luo työjono nimeltään" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "Luo tapaus" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Luo toiminto jonolle %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Luo malli" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Luo tiketti" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Uusi artikkeli" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "Uusi artikkeli luokassa..." #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "Uusi artikkeli tähän luokkaan" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Luo uusi työtila tälle ryhmälle" #: NOT FOUND IN SOURCE msgid "Create failed: %1 / %2 / %3 " msgstr "Luonti epäonnistui %1 / %2 / %3 " #: NOT FOUND IN SOURCE msgid "Create failed: %1/%2/%3" msgstr "Luonti epäonnistui: %1/%2/%3" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Luo uusia tikettejä tämän automaattitoiminnon perusteella" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Luo henkilökohtaisia työtiloja" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Luo järjestelmän työtiloja" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Luo tiketti" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "Luo tikettejä" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Luo tikettejä tähän jonoon" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Luo tikettejä yhteydettömässä tilassa" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Luo, muokkaa ja poista kenttiä" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Luo, poista ja muokkaa jonoja" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Luo, poista ja muokkaa kenen tahansa henkilökohtaisten ryhmien jäseniä" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Luo, poista ja muokkaa henkilökohtaisten ryhmien jäseniä" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Luo, poista ja muokkaa käyttäjiä" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "Luo, muuta ja poista jonoja" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "Luo, muuta ja poista tallennettuja hakuja" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "Luo, muuta ja poista käyttäjiä" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "Luo työtila" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "Luo ryhmän työtila" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "Luo oma työtila" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "Luo tallennettu haku" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "CreateTicket" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Luotu" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Tekijä" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Luotu kenttä %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Luonut" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Luotu ajanjaksolla" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "Luotiin haku %1" #: NOT FOUND IN SOURCE msgid "Created template %1" msgstr "Luotu pohja %1" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Luotu tikettejä ajanjaksolla, ryhmitelty tilan mukaan" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "CreatedBy" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "CreatedRelative" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Luoja" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografia" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Viittaukset" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Tämänhetkinen toiminto" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Tämänhetkiset jäsenet" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Tämänhetkiset oikeudet" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Nykyinen haku" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "Tämänhetkiset hakumääritteet" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Nykyiset valvojat" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Kentät" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Erikoiskentät %1 varten" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "Omat kentät jonolle %1" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Erikoistoiminto cleanup-koodille" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Erikoistoiminto valmistelukoodille" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Erikoisehto" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Omaa kenttää %1 ei käytetä tässä kohteessa" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Kenttä %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Erikoiskenttä %1 ei vastaa tätä objektia" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Kentällä %1 on arvo" #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Kentällä %1 ei ole arvoa" #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Erikoistkenttää %1 ei löydy" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Erikoiskenttä '%1'" #: NOT FOUND IN SOURCE msgid "Custom field deleted" msgstr "Kenttä poistettu" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "Oma kenttä on jo käytössä" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Kenttää ei löytynyt" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Kentän arvoa %1 ei löytynyt kentälle %2" #: NOT FOUND IN SOURCE msgid "Custom field value changed from %1 to %2" msgstr "Kentän arvo muutettu arvosta %1 arvoon" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Kentän arvoa ei pystytty poistamaan" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Kentän arvoa ei löydetty" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Kentän arvo poistettu" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CustomField" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "CustomFieldValue" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Mukauta" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Muokkaa perustietoja" #: NOT FOUND IN SOURCE msgid "Customize Database Details" msgstr "Muokkaa tietokannan tietoja" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Muokkaa sähköpostiosoitetta" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Muokkaa sähköpostiasetuksia" #: NOT FOUND IN SOURCE msgid "Customize Global" msgstr "Muokkaa järjestelmän laajuisesti" #: NOT FOUND IN SOURCE msgid "Customize Global Defaults" msgstr "Muokkaa järjestelmän vakioasetuksia" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "Muokkaa RT:n ulkoasua" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA salasana" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA käyttäjätunnus" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Päivän luetuimmat" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Työtila" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Työtilaa ei voitu luoda: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Työtilaa ei voitu päivittää: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Työtila päivitetty" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Työtilat" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Tietokantapalvelin" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Tietokannan nimi" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Tikettijärjestelmän tietokannan salasana" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Tietokannan portti" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tietokannan tyyppi" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Tietokannan käyttäjänimi" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Päivämäärän muoto" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Päivämäärät" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "joulukuu" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "joulu" #: NOT FOUND IN SOURCE msgid "December" msgstr "joulukuu" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Pura salaus" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Vakio automaattivastausmalli" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Oletus jono" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Oletusarvoinen tilaaja" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Vakio pääkäyttäjän kommentin malli" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Pääkäyttäjän vakiovastauksen malli" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Vakiovastauksen malli" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Oletus jono" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Oletustapahtumamalli" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Oletus: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Oletus: %1/%2 muutettu arvosta %3 arvoon %4" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "DefaultDueIn" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Delegoi oikeuksia" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Delegoi erikoisoikeuksia jotka on myönnetty sinulle." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "DelegateRights" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Delegointi" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Poista" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Poista malli" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "Poista artikkeli %1" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "Poista artikkelit tästä luokasta" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Poista tämän ryhmän työtilat" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Poistaminen epäonnistui: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Poista henkilökohtaiset työtilat" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Poista valitut automaattitoiminnot" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Poista järjestelmän työtilat" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Poista tiketit" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Poista arvot" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "Poista työtila" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "Poista ryhmän työtila" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "Poista oma työtila" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "DeleteTicket" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Poistettu %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Poista työtila %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Poista tallennettu haku" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "Tämän objektin poistaminen saattaa rikkoa tietokannan viitteet" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Tämän objektin poistaminen rikkoo tietokannan viitteet" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Tämän objektin poistaminen rikkoo tietokannan viitteet" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Estä" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Riippuvuus tähän tikettiin" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "DependedOnBy" #: NOT FOUND IN SOURCE msgid "Dependencies: \\n" msgstr "Riippuvuudet: \\n" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Riippuvuus %1 lisätty" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Riippuvuus %1 poistettu" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Riippuvuus %1 lisätty" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Riippuvuus %1 poistettu" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "DependentOn" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Riippuvuus tiketistä" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "DependsOn" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Kuvaus" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Laskeva" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Kuvaus" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Kuvaus" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "Tarkat tiedot RT:n asennuksesta" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Yksityiskohdat" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Suunta" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Poistettu käytöstä" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Näytä" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Näytä käyttöoikeuslista" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Näytä rivit" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Näytä jonon automaattisien toimintojen mallit" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Näytä jonon toiminnot" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Näkymä" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Näytä tallennetut haut tälle ryhmälle" #: NOT FOUND IN SOURCE msgid "Display ticket #%1" msgstr "Näytä tapaus #%1" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Julkaistu GNU GPL v.2 lisenssin alla." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Tee mitä tahansa ja kaikki" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Domainnimi" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Älä lisää http://, vain 'localhost', 'rt.example.com' tms." #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Älä päivitä kotisivua" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Älä päivitä haun tuloksia" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Älä päivitä tätä sivua" #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "Älä näytä hakutuloksia" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Älä luota tähän avaimeen" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Lataa" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Lataa sarkaimilla erotettu tiedosto" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Lataa dump-tiedosto" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Määräaika" #: NOT FOUND IN SOURCE msgid "Due date '%1' could not be parsed" msgstr "Erääntymispäivää '%1' ei onnistuttu tulkkaamaan järjestelmälle." #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "DueRelative" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "VIRHE: %1" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "VIRHE: Tapauksen '%1' lataaminen ei onnistunut: %2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Avoimien tikettien helppo muokkaus" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Muokkaa" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Muokkaa erikoiskenttiä" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Muokkaa jonon %1 kenttiä" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Muokkaa erikoiskenttiä kaikille ryhmille" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Muokkaa erikoiskenttiä kaikille jonoille" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Muokkaa erikoiskenttiä kaikille käyttäjille" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Muokkaa erikoiskenttiä kaikille tiketeille, kaikissa jonoissa" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Muokkaa viittauksia" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Muokkaa kyselyä" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Muokkaa hakua" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Muokkaa jonon %1 malleja" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit keywords" msgstr "Muokkaa avainsanoja" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Muokkaa tämän ryhmän hakuja" #: NOT FOUND IN SOURCE msgid "Edit scrips" msgstr "Muokkaa toimintoja" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Muokkaa järjestelmäpohjia" #: NOT FOUND IN SOURCE msgid "Edit templates for %1" msgstr "Muokkaa työjonon %1 pohjia" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "Muokkaa tallennettuja hakuja" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Muokattava teksti" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Muokataan jonon %1 asetuksia" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "Muokataan käyttäjän %1 asetuksia" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Muokataan kenttää %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Muokataan ryhmän %1 jäseniä" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Muokataan henkilökohtaisen ryhmän %1 jäseniä" #: NOT FOUND IN SOURCE msgid "Editing template %1" msgstr "Muokataan pohjaa %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "EffectiveId" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Joko juuri tai kohde täytyy olla määritelty" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Sinulla ei ole oikeuksia katsella tallennettua hakua %1 tai tunniste on väärä" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Sähköposti" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "Sähköpostiosoite" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "Sähköpostiasetukset" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Sähköpostin tiivistelmä" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Sähköpostiosoite on jo käytössä" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Sähköpostin lähetys" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Sähköpostimalli säännöllisille huomautusviesteille" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "Sähköpostiosoite" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "Sähköpostin koodaus" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Käytössä" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktiivinen (rastin poistaminen passivoi kentän)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktiivinen (rastin poistaminen passivoi ryhmän)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktiivinen (valinnan poistaminen passivoi jonon)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Aktiiviset jonot" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Aktivoitu tila %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Salaa" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Salaa oletuksena" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Salaa/Pura salaus" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Salaa/Pura salaus tapahtumalle #%1 tiketissä #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Salaus poistettu käytöstä" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Salaus käytössä" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "Syötä useita IP-osoitteita" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Anna useampi arvo" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Anna monta arvoa automaattitäydennykselle" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Kirjoita objektit tai verkko-osoitteet joihin haluat linkittää objekteja (erota tiedot välilyönnillä)." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "Syötä yksi IP-osoite" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Anna yksi arvo" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Anna arvo automaattitäydennyksen kera" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Kirjoita jonot tai verkko-osoitteet linkittääksesi jonoja (erota tiedot välilyönnillä)." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Kirjoita tikettien numerot tai www-osoitteet (erota tiedot välilyönnillä)." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "Syötä korkeintaan %1 IP-osoitetta" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Anna %1 arvoa" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Anna %1 arvoa automaattitäydennyksien kera" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Virhe" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Virhe parametreissa: Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DelWatcher" msgstr "Virhe parametreissa: Queue->DelWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Virhe parametrissa Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Virhe parametreissa: Ticket->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Ticket->DelWatcher" msgstr "Virhe parametreissa: Ticket->DelWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Virhe parametrissa Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Virhe: Julkinen avain virheellinen" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Virhe: Työtilaa ei löydy" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Virhe: viallinen GnuPG tieto" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Virhe: ei julkista avainta" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Virhe: julkinen avain" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Arvioitu" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Kaikki" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Tarkastele tikettejä jotka on luotu tietyllä ajanjaksolla" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Tarkastele valmistuneita tikettejä jonossa tietyllä, ajanjaksolla" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Tarkastele valmistuneita tikettejä jonossa, luokiteltuna käyttäjän mukaan" #: bin/rt-crontool:356 msgid "Example:" msgstr "Esimerkki:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "" #: NOT FOUND IN SOURCE msgid "ExternalAuthId" msgstr "Ulkoinen autentikointitunnus" #: NOT FOUND IN SOURCE msgid "ExternalContactInfoId" msgstr "Ulkoinen yhteystietotunnus" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Lisätieto" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Tietokantaan yhdistäminen ei onnistunut: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "'Erioikeutettu'-valeryhmää ei löytynyt" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Käyttäjäryhmää 'Käyttöoikeudeton' ei löydy" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Ei voitu ladata mallia" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Ei voitu muodostaa mallia" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "helmi" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "helmi" #: NOT FOUND IN SOURCE msgid "February" msgstr "helmikuu" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Tiedostonimi" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "" #: NOT FOUND IN SOURCE msgid "Fin" msgstr "Fin" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Loppuprioriteetti" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "" #: NOT FOUND IN SOURCE msgid "Find group whose" msgstr "Etsi ryhmä, jonka" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "Etsi uudet/avoimet tapaukset" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Etsi käyttäjät, joiden" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Hae tikettejä" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "Sormenjälki" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Valmis" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Ensimmäinen" #: NOT FOUND IN SOURCE msgid "First page" msgstr "Viimeinen sivu" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Pakota muutos" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Ulkoasu" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Välitä" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Välitä viesti" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Lähetä eteenpäin ja palaa" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Välitä tiketti" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Lähetä eteenpäin" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Välitä viestit kolmannelle osapuolelle" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Välitä tiketti #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Välitä tapahtuma #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "Välitä viesti" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Löytyi %1 tikettiä" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Objekti löytyi" #: NOT FOUND IN SOURCE msgid "FreeformContactInfo" msgstr "Vapaamuotoiset yhteystiedot" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "pe" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Pe" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Perjantai" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Otsikkotiedot" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Yleiset" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Hae malli tiedostosta" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Annettu käyttäjälle %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Yleiset" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Scrips" msgstr "Yleiset toiminnot" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "" #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Yleinen malli: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG virhe. Ota yhteyttä ylläpitäjään." #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Siirry" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Siirry käyttäjään" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Ok!" #: NOT FOUND IN SOURCE msgid "Good pgp sig from %1\\n" msgstr "Hyvä PGP-allekirjoitus käyttäjältä %1\\n" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "Siirry sivulle" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Siirry tikettiin" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Ryhmä" #: NOT FOUND IN SOURCE msgid "Group %1 %2: %3" msgstr "Ryhmä %1 %2: %3" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Ryhmän oikeudet" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Ryhmässä on jo jäsen: %1" #: NOT FOUND IN SOURCE msgid "Group could not be created." msgstr "Ryhmää ei voitu luoda." #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Ryhmää ei voitu luoda: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Ryhmä luotu" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Ryhmä poistettu käytöstä" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Ryhmä käytössä" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Ryhmässä ei ole sellaista jäsentä" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "Ryhmän nimi '%1' on jo käytössä" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Ryhmää ei löydy" #: NOT FOUND IN SOURCE msgid "Group not found.\\n" msgstr "Ryhmää ei löydetty.\\n" #: NOT FOUND IN SOURCE msgid "Group not specified.\\n" msgstr "Ryhmää ei määritelty.\\n" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Ryhmän oikeudet" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Ryhmät" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Ryhmät eivät voi olla jäsentensä jäseniä" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Ryhmät joihin tämä käyttäjä kuuluu" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Välitettävän tiketin otsikko" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Välitettävän viestin otsikko" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Hei!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hei, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historia" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Ryhmän %1 historia" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Käyttäjän %1 historia" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "Kotipuhelin" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Kotipuhelin" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Etusivu" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "tunti" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "tuntia" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "" #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Numero" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identiteetti" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Jos hyväksyntä hylätään, hylkää alkuperäinen ja poista siitä riippuvat hyväksynnät" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Jos tilaajaa ei ole määritelty, luo tiketit tälle tilaajalle." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Jos jonoa ei ole määritelty, luo tiketit tähän jonoon." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Jos muutat tietoliikenneporttia jossa RT on käynnissä sinun täytyy käynnistää palvelin uudelleen kirjautuaksesi." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Jos olet muuttanut tietoja, muista tallentaa" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Kelpaamaton arvo %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Muuttumaton kenttä" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Sisällytä passiiviset kentät listaukseen" #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "" #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Sisällytä listaukseen myös passiiviset jonot." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Sisällytä listaukseen myös passiiviset käyttäjät." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Ota yhteys ylläpitoon: käyttäjällä on ongelmia julkisten avaimien kanssa" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Ilmoita työtilan käyttäjille että sitä ei löydy" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Tiedota käyttäjälle että viestin GnuPG-data on virheellinen" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Tiedota käyttäjää että hänen salasanansa on resetoitu" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Alkuprioriteetti" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Virhe syötteessä" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Sisäinen virhe" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Sisäinen virhe: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Virheellinen %1: sen täytyy olla numero" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Ryhmän tyyppi ei kelpaa" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Kelpaamaton oikeus" #: NOT FOUND IN SOURCE msgid "Invalid Type" msgstr "Kelpaamaton tyyppi" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Kelpaamatonta dataa" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "Omistaja ei kelpaa. Asetetaan oletusasetusten mukaan 'ei kukaan'" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Kelpaamaton jono" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Kelpaamaton oikeus" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Kelpaamaton arvo kohteelle %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Kelpaamaton arvo kentälle" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Kelpaamaton arvo tilalle" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kursiivi" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "tammi" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Tammi" #: NOT FOUND IN SOURCE msgid "January" msgstr "tammikuu" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Liity tai jätä ryhmä" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "heinä" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Heinä" #: NOT FOUND IN SOURCE msgid "July" msgstr "Heinäkuu" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Muokkaa" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "kesä" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "kesä" #: NOT FOUND IN SOURCE msgid "June" msgstr "kesäkuu" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: NOT FOUND IN SOURCE msgid "Keyword" msgstr "Avainsana" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "Kieli" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Kieli" #: NOT FOUND IN SOURCE msgid "Language." msgstr "Kieli." #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Suuri" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Viimeinen" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Viimeinen viesti" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Viimeksi otettu yhteyttä" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "Viimeksi huomautettu" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Viimeksi päivitetty" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Viimeksi päivitetty" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Päivittänyt viimeksi" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Jäljellä" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Päästä tämä käyttäjä sisään RT:iin" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Tälle käyttäjälle voidaan antaa oikeuksia" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Okei, aloitetaan!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: NOT FOUND IN SOURCE msgid "Limiting owner to %1 %2" msgstr "Rajoitetaan omistajaa %1 %2" #: NOT FOUND IN SOURCE msgid "Limiting queue to %1 %2" msgstr "Rajoitetaan työjonoa %1 %2" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Linkki on jo olemassa" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Linkkiä ei voitu luoda" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Linkki luotu (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Linkki poistettu (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Linkkiä ei löydy" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Lisää viittaus" #: NOT FOUND IN SOURCE msgid "Link ticket %1" msgstr "Lisää viittaus" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Viittaukset" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Perl-moodulit ladattu" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "Ladataan..." #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Maa-asetukset" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Sijainti" #: NOT FOUND IN SOURCE msgid "Log directory %1 not found or couldn't be written.\\n RT can't run." msgstr "Lokihakemistoa %1 ei löytynyt tai kirjoittaminen ei onnistunut.\\n RT ei voi toimia." #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "Kirjautunut" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Käyttäjä: %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Kirjauduttu ulos" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Kirjaudu sisään" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Kirjaudu ulos" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Sähköposti" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Aseta yhteyshenkilö" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Aseta tila" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Aseta erääntymisaika" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Aseta päätösaika" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Aseta aloitusaika" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Aseta alkuaika" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Aseta viimeisen viestin lähetysaika" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Aseta prioriteetti" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Aseta jono" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Aseta otsikko" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Hallinnoi ryhmiä ja jäsenyyksiä" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Hallinnoi yleisiä asetuksia, jotka vaikuttavat kaikkiin jonoihin" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Hallinnoi jonoja ja työjonokohtaisia asetuksia" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Hallinnoi käyttäjiä ja salasanoja" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "maalis" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Maalis" #: NOT FOUND IN SOURCE msgid "March" msgstr "Maaliskuu" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Kaikki viestit merkitty luetuiksi" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Toukokuu" #: NOT FOUND IN SOURCE msgid "May." msgstr "Touko" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "Minä" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Jäsen" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Jäsen %1 lisätty" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Jäsen %1 poistettu" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Jäsen lisätty: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Jäsen poistettu" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Jäsentä ei poistettu" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Jäsen:" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Jäsenet" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Jäsenyydet" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Käyttäjän %1 jäsenyydet" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Yhdistäminen onnistui" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Yhdistäminen epäonnistui. EffectiveId:n arvoa ei pystytty asettamaan" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Yhdistä" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Viesti" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Viestikentän korkeus" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Viestikentän leveys" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Viesti käyttäjälle" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Viesti tallennettu" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Viestiä ei lähetetä seuraaville käyttäjille" #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Salasanan minimipituus" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuuttia" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Kännykkä" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "Matkapuhelin" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "Kännykkä" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Muokkaa käyttöoikeusluetteloa" #: NOT FOUND IN SOURCE msgid "Modify Custom Field %1" msgstr "Muokkaa kenttää %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all queues" msgstr "Muokkaa kaikkia työjonoja koskevia kenttiä" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Muokkaa tämän jonon toimintopohjia" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Muokkaa tämän jonon toimintoja" #: NOT FOUND IN SOURCE msgid "Modify System ACLS" msgstr "Muokkaa järjestelmän käyttöoikeusluetteloa" #: NOT FOUND IN SOURCE msgid "Modify Template %1" msgstr "Muokkaa mallia %1" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Muokkaa jonon %1 toimintoa" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Muokkaa toimintoa, jota sovelletaan kaikkiin jonoihin" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Muokkaa tämän ryhmän työtiloja" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Muokkaa tiketin #%1 päivämääriä" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Muokkaa tiketin #%1 päivämääriä" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Muokkaa ryhmien yleisiä oikeuksia" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Muokkaa ryhmien yleisiä oikeuksia." #: NOT FOUND IN SOURCE msgid "Modify global scrips" msgstr "Muokkaa yleisiä toimintoja" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Muokkaa yleisiä käyttäjien oikeuksia" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Muokkaa käyttäjien yleisiä oikeuksia." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Muokkaa ryhmän metatietoja tai poista ryhmä" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Muokkaa ryhmän %1 oikeuksia." #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Muokkaa ryhmän oikeuksia jonossa %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Muokkaa tämän ryhmän jäsenlistaa" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Muokkaa omaa RT-tunnustasi" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Muokkaa jonoon %1 liittyviä käyttäjiä" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Muokkaa tiketin #%1 käyttäjiä" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Muokkaa henkilökohtaisia työtiloja" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Muokkaa jonoon %1 liittyviä toimintoja" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Muokkaa toimintoja, joita sovelletaan kaikkiin jonoihin" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Muokkaa järjestelmän työtiloja" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Muokkaa mallia %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Muokkaaa pohjia, joita sovelletaan kaikkiin jonoihin" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Muokkaa työtilaa %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Muokkaa ryhmää %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Muokkaa työtilan kyselyitä" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Muokkaa jonon valvojia" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Muokkaa työtilan %1 tilauksia" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Muokkaa käyttäjää %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Muokkaa tikettiä #%1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Muokkaa tikettiä #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Muokkaa tikettejä" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Muokkaa ryhmän %1 käyttäjien oikeuksia" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Muokkaa jonoon %1 liittyviä käyttäjien oikeuksia" #: NOT FOUND IN SOURCE msgid "Modify watchers for queue '%1'" msgstr "Muokkaa tapauksen %1 seuraajia" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "Muokkaa työtilaa" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "Myökkaa ryhmän työtilaa" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "Muokkaa omaa työtilaa" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "MuokkaaMallia" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "Moduuli" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "ma" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Ma" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "maanantai" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Lisätietoa: %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Siirrä alas" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Siirrä ylös" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Monta" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "'Nimi' täytyy määritellä" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Minun %1 tiketit" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Hyväksyntäni" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Päivänäkymä" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Hyväksyntäni" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Omat työtilat" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Nimi" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Nimi on käytössä" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Nimi:" #: NOT FOUND IN SOURCE msgid "Need approval from system administrator" msgstr "Tarvitsee järjestelmän ylläpitäjän hyväksynnän" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Ei ikinä" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Uusi" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Uusi viittaus" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Uusi salasana" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Uusi haku" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Käyttäjän %1 uudet ja käsittelemättömät tiketit" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Uusi työtila" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Uusi ryhmä" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Uudet viestit" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Uusi salasana" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Uusi salasana" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Uusi työjono" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Uusi muistutus:" #: NOT FOUND IN SOURCE msgid "New request" msgstr "Uusi tapaus" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Uudet oikeudet" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Uusi toiminto" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Uusi malli" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Uusi tiketti" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Uutta tikettiä ei ole olemassa" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Uusi käyttäjä" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Uusi käyttäjä pyydetty" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Uusi valvoja" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "Uusi ikkunan asetus" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Seuraava" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "Seuraava sivu" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Lempinimi" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Lempinimi" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Ei" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Ei kenttiä" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ryhmää ei ole määritelty" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Jonoa ei ole määritelty" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Käyttäjää ei löydy. Ole hyvä ja ota yhteyttä tikettijärjestelmän ylläpitäjään.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Ei otsikkoa" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Ei mallia" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "Tapausta ei määritelty. Perutaan tapaus " #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket modifications\\n\\n" msgstr "Tapausta ei määritelty. Poistutaan tapauksen muokkauksesta\\n\\n" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ei toimintoa" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "" #: NOT FOUND IN SOURCE msgid "No command found\\n" msgstr "Komentoa ei löytynyt\\n" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Ei kommentteja" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "Ei kirjeenvaihtoa liitettynä" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Ei työtiloja." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Ei kuvausta kohteelle %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Ryhmää ei ole määritelty" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Ryhmää ei löydy." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Ei avaimia tälle osoitteelle" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Ei liitettyä viestiä" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Salasanaa ei ole asetettu" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Ei oikeutta luoda jonoja" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Ei oikeutta luoda tikettejä jonoon '%1'" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Ei oikeutta luoda käyttäjiä" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Ei oikeutta tarkastella tätä tikettiä" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Ei oikeutta nähdä tikettiä" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Toimeksiantajaa ei ole määritelty" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Toimeksiantajia ei ole valittu." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Ei henkilökohtaista avainta" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Yhtään tikettiä ei löytynyt." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Oikeuksia ei ole" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Ei myönnettyjä oikeuksia." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Ei työstettävää hakua" #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Ei otsikkoa" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "" #: NOT FOUND IN SOURCE msgid "No ticket id specified" msgstr "Tapauksen numeroa ei ole määritelty" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Tikettejä ei löydy." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Tapahtuman tyyppiä ei ole määritelty" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ei käyttökelpoisia avaimia." #: NOT FOUND IN SOURCE msgid "No user or email address specified" msgstr "Käyttäjää tai sähköpostiosoitetta ei ole määritelty" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Yhtään käyttäjää ei löydy." #: NOT FOUND IN SOURCE msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" msgstr "Ei kelpaa RT-käyttäjäksi. RT:n cvs-käsittelijä irrottautuu. Ole hyvä ja ota yhteyttä RT:n ylläpitäjään.\\n" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Tuntematon" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Ei mitään" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Olematon kenttä?" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Ei tuloksia" #: NOT FOUND IN SOURCE msgid "Not logged in" msgstr "Sisäänkirjautumaton" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Et ole kirjautunut järjestelmään" #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Ei asetettu" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Ei vielä toteutettu." #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "Ei vielä toteutettu..." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Merkintöjä" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Ilmoitusta ei pystytty lähettämään" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:41 msgid "Notify Owner" msgstr "" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "marras" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Marras" #: NOT FOUND IN SOURCE msgid "November" msgstr "marraskuu" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Hakutulosten lukumäärä" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "TAI" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objektia ei voitu luoda" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objektia ei voitu poistaa" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekti luotu" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekti poistettu" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "loka" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Loka" #: NOT FOUND IN SOURCE msgid "October" msgstr "lokakuu" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Yhteydetön tila" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Yhteydetön tila - muokkaus" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Yhteydetön tila - tietojen lisäys" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "" #: etc/initialdata:143 msgid "On Comment" msgstr "" #: etc/initialdata:115 msgid "On Correspond" msgstr "" #: etc/initialdata:104 msgid "On Create" msgstr "" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Yhteyshenkilön vaihtuessa" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Prioriteetin muuttuessa" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Jonon muuttuessa" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Uudelleenavauksen yhteydessä" #: etc/initialdata:178 msgid "On Resolve" msgstr "" #: etc/initialdata:149 msgid "On Status Change" msgstr "Tilan muuttuessa" #: etc/initialdata:109 msgid "On Transaction" msgstr "" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Piilokopio" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Kopio" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Näytä vain pyynnöt, jotka on luotu jälkeen %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Näytä vain pyynnöt, jotka on luotu ennen %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Avoin" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Avoimet tiketit" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Avaa osoite" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Avaa" #: NOT FOUND IN SOURCE msgid "Open requests" msgstr "Avoimet tapaukset" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Avaa tikettejä" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "Avoimet tapaukset (listasta) uudessa ikkunassa" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "Avoimet tapaukset (listasta) toisessa ikkunassa" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Avaa tiketit kun esiintyy kirjeenvaihtoa" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "Järjestäminen" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Laitos" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Alkuperäinen tiketti: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Lähtevä sähköposti lisätty" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Lähtevä sähköposti lisätty" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Ajan kuluessa prioriteetti muuttuu kohti" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Omat tiketit" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Yhteyshenkilö" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Yhteyshenkilöksi vaihdettu %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Yhteyshenkilöä ei voitu asettaa." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Yhteyshenkilöksi vaihdettu %2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "Yhteyshenkilö" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Sivu" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Sivu 1/1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Sivua ei löydy" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Hakulaite" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Hakulaite-puhelin" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Vanhemmat" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Salasana" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Salasanan muistutus" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Salasana vaihdettu" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Salasanan tulee olla vähintään %1 merkkiä pitkä" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Salasana asetettu" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "Salasana liian lyhyt" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Salasana: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:463 msgid "PasswordChange" msgstr "Salasanan vaihto" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Salasanat eivät täsmää." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Salasanat eivät täsmää. Salasanaasi ei vaihdettu" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Käyttäjät" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "Perl" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Pääsy kielletty" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Pääsy evätty" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Henkilökohtaiset työtilat" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Omat ryhmät" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Omat ryhmät" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Omat ryhmät:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Puhelinnumerot" #: NOT FOUND IN SOURCE msgid "Placeholder" msgstr "Paikanpitäjä" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Asetukset" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: NOT FOUND IN SOURCE msgid "Prefs" msgstr "Asetukset" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Valmistele tumppi" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Edellinen" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Edellinen" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "Edellinen sivu" #: NOT FOUND IN SOURCE msgid "Pri" msgstr "Pri" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Toimeksiantajaa %1 ei löydy" #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Tulosta tämä viesti" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioriteetti" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioriteetti alkaa arvosta" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Yksityisyys" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Yksityisyys:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Salainen avain" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Erioikeutettu" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Erioikeutuksen tila: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Erioikeutetut käyttäjät" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Valeryhmä sisäiseen käyttöön" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Kyselyt" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Tietokantakysely" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Tietokantahaku" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Jono" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Jonoa %1 ei löydy" #: NOT FOUND IN SOURCE msgid "Queue '%1' not found\\n" msgstr "Työjonoa '%1' ei löytynyt" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Jonon nimi" #: NOT FOUND IN SOURCE msgid "Queue Scrips" msgstr "Työjonon toiminnot" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Jono on jo olemassa" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Jonoa ei voitu luoda" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Jonoa ei voitu ladata." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Jono luotu" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "" #: NOT FOUND IN SOURCE msgid "Queue is not specified." msgstr "Työjonoa ei määritelty" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Jonoa ei löydy" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "Jonon valvoja" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Jonot" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Pikahaku" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Tiketin pika-avaus" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 - %2" #: NOT FOUND IN SOURCE msgid "RT %1 from Best Practical Solutions, LLC." msgstr "RT %1, tekijä: Best Practical Solutions, LLC." #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n" msgstr "RT %1. Copyright 1996-%1 Jesse Vincent \\n" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Tikettijärjestelmän ylläpito" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Tikettijärjestelmän ylläpitäjän sähköposti" #: NOT FOUND IN SOURCE msgid "RT Authentication error." msgstr "RT Virhe tunnistamisessa" #: NOT FOUND IN SOURCE msgid "RT Bounce: %1" msgstr "RT palautus: %1" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Configuration error" msgstr "RT Konfiguraatiovirhe" #: NOT FOUND IN SOURCE msgid "RT Critical error. Message not recorded!" msgstr "RT Kriittinen virhe. Viestiä ei tallennettu!" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT Virhe" #: NOT FOUND IN SOURCE msgid "RT Received mail (%1) from itself." msgstr "RT Sai sähköpostin (%1) itseltään." #: NOT FOUND IN SOURCE msgid "RT Self Service / Closed Tickets" msgstr "RT Itsepalvelu / Suljetut tapaukset" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "Tikettijärjestelmä" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: NOT FOUND IN SOURCE msgid "RT couldn't authenticate you" msgstr "RT Ei pystynyt tunnistamaan sinua" #: NOT FOUND IN SOURCE msgid "RT couldn't find requestor via its external database lookup" msgstr "RT ei löytänyt tilaajaa ulkopuolisesta tietokannasta" #: NOT FOUND IN SOURCE msgid "RT couldn't find the queue: %1" msgstr "RT ei löytänyt työjonoa: %1" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "Tikettijärjestelmä ei voinut tallentaa istuntoasi." #: NOT FOUND IN SOURCE msgid "RT couldn't validate this PGP signature. \\n" msgstr "RT ei pystynyt tarkistamaan tätä PGP allekirjoitusta.\\n" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "%1: RT" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "RT on prosessoinut antamasi komennot" #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT on tekijänoikeuslain alainen, © 1996-%1 Jesse Vincent <jesse@bestpractical.com>. Se on jakelussa seuraavalla lisenssillä: Version 2 of the GNU General Public License." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: NOT FOUND IN SOURCE msgid "RT thinks this message may be a bounce" msgstr "RT luulee että tämä viesti on palautus" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "Voit hakea myös viestien otsikoista haluamallasi hakusanalla." #: NOT FOUND IN SOURCE msgid "RT will process this message as if it were unsigned.\\n" msgstr "RT prosessoi tämän viestin kuten se olisi allekirjoittamaton." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: NOT FOUND IN SOURCE msgid "RT's email command mode requires PGP authentication. Either you didn't sign your message, or your signature could not be verified." msgstr "RT:n sähköpostiohjaustila vaatii PGP-tunnistamista. Et allekirjoittanut (PGP) viestiä tai allekirjoitustasi ei pystytty vahvistamaan." #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Oikea nimi" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "Oikea nimi" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Vastaanottaja" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "Vastaanottajat" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Tallenna kaikki päivitykset" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Viittaus tähän tikettiin" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Viittaus toiseen tikettiin" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "" #: NOT FOUND IN SOURCE msgid "Refine" msgstr "Päivitä" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "Päivitä haku" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Päivitä" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Päivitä tämä sivu %1 minuutin välein" #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Muistutus '%1' lisätty" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Muistutustiketti #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Muistutukset" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Muistutukset tiketistä #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Poista kopio ylläpidolle" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Poista kopio" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Poista tilaaja" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Vastaa" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Vastaa tiketteihin" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Raportit" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Tilaaja" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "Tilaajan sähköpostiosoite" #: NOT FOUND IN SOURCE msgid "Requestor(s)" msgstr "Tilaaja" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Tilaajat" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Pyynnöt suoritettava mennessä" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Palauta" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Palauta oletus" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Koti" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Päätä" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Ratkaise tiketti #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Valmis" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Käyttäjän mukaan" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Valmistunut ajanjaksolla" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Vastaa" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "Vastaus tilaajille" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Tulokset" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "Tuloksia sivulle:" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Palaa tikettiin" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Vahvista salasana" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Palauta" #: NOT FOUND IN SOURCE msgid "Right %1 not found for %2 %3 in scope %4 (%5)\\n" msgstr "Oikeutta %1 ei löydetty %2 %3 laajuudessa %4 (%5)\\n" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Oikeus delegoitu" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Oikeus myönnetty" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Oikeus ladattu" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Oikeutta ei voitu perua" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Oikeutta ei löydy" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Oikeutta ei ladattu" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Oikeus peruttu" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Oikeudet" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Oikeuksia ei voitu myöntää: %1" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "Oikeuksia ei voitu perua: %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Roolit" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "la" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "La" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Lauantai" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Tallenna" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Tallenna muutokset" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Tallenna asetukset" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Tallenna muutokset" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Tallennettu %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Tallennettua hakua %1 ei löydy" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "Tallennetut haut" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Tallennetut haut" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Toiminto #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Toiminto luotu" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Toiminto poistettu" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Toiminnot" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Automaattitoiminnot ja vastaanottajat" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "Toiminnot työjonolle %1\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Toiminnot, joita sovelletaan kaikkiin jonoihin" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Hae" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: NOT FOUND IN SOURCE msgid "Search Criteria" msgstr "Hakukriteerit" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Haku" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Hae tikettejä kirjoittamalla id-numero , jonot, käyttäjänimi ja lähettäjän sähköpostiosoite." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "Haun tulokset" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Voit etsiä myös tiketin sisällön perusteella kirjoittamalla hakukenttään fulltext:hakusana. HUOM! Tämä voi kestää jonkin aikaa joten odota ole hyvä." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Katso myös:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "Esikatsele työtilaa" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "Esikatsele ryhmän työtilaa" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "Esikatsele omaa työtilaa" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Valitse" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Valitse tietokannan tyyppi" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Valitse ryhmä" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Valitse jono" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Valitse käyttäjä" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vaihda kieli" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Valitse työtila" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Valitse ryhmä" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Valitse useita arvoja" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Valitse yksi arvo" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Valitse työjono" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Valitse toiminto" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Valitse malli" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Valitse käyttäjä" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Valitut objektit" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Valintaa muokattu. Muista tallentaa muutokset" #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "Itsepalvelu" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Lähetä sähköposti kaikille valvojille" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Lähetä sähköposti kaikille valvojille kommenttina" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Lähetä postia yhteyshenkilölle" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Syys" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "syyskuu" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Näytä" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Näytä tulokset" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Näytä myös" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Näytä perustiedot" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Näytä yksityiskohdat" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Näytä linkkien kuvaukset" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "Näytä tapauksen kommentointi" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "Näytä tapausten yhteenvedot" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "NäytäMalli" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Silppuri" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Sivupalkki" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Allekirjoitus" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Haku" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Yksittäinen" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Koko" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Järjestä" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "Järjestys" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "Järjestä tulokset" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "Lajittelujärjestys" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: NOT FOUND IN SOURCE msgid "Stalled" msgstr "Jäädytetty" #: NOT FOUND IN SOURCE msgid "Start page" msgstr "Etusivu" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Työ aloitettu" #: NOT FOUND IN SOURCE msgid "Started date '%1' could not be parsed" msgstr "Aloittamisaikaa '%1' ei pystytty tulkitsemaan" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Työn aloitus" #: NOT FOUND IN SOURCE msgid "Starts By" msgstr "Alkaa mennessä" #: NOT FOUND IN SOURCE msgid "Starts date '%1' could not be parsed" msgstr "Alkamisaikaa '%1' ei pystytty tulkitsemaan" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Osavaltio" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Tila" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Tilan muuttuminen" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Tila muutettu arvosta %1 arvoon %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Kaappaa" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Vaihe %1/%2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Kaapattu käyttäjältä %1" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Tyyli" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Otsikko" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Aihe muutettu: %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Aihe-tagi muutettu %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Lähetä" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Tilaa työtila %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Tilaa työtiloja" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "Tilaa työtila" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Tilattu työtila %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Onnistui" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Su" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "" #: NOT FOUND IN SOURCE msgid "System" msgstr "Järjestelmä" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Järjestelmän työtilat" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Järjestelmän oletus" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Järjestelmävirhe" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Järjestelmävirhe: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Järjestelmätyökalut" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Järjestelmävirhe. Oikeutta ei delegoitu." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Järjestelmävirhe. Oikeutta ei luovutettu." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Järjestelmäryhmät" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TESTIMERKKIJONO" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Ota itselle" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Otettu" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Malli" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Malli #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Malli #%1 poistettu" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Mallia '%1' ei löydy" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Pohja poistettu" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Malli on tyhjä" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Malli on välttämätön argumentti" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Pohjaa ei löydetty" #: NOT FOUND IN SOURCE msgid "Template not found\\n" msgstr "Pohjaa ei löydetty\\n" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Malli muodostettu" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Mallin muodostamisessa on ongelma" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Mallit" #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "Pohjat työjonolle %1\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Ei ole arvo tälle kentälle" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Tämä on sama arvo" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Toimeksiantaja on jo %1 tälle jonolle" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Ehto %1 on jo tälle tiketille" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Toimeksiantaja ei ole %1 tälle jonolle" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Toimeksiantaja ei ole %1 tälle tiketille" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Jonoa ei ole olemassa" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Tiketti sisältää keskeneräisiä riippuvuuksia" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "Käyttäjällä on jo tuo oikeus" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Käyttäjä omistaa jo tämän tiketin" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Käyttäjää ei ole olemassa" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Käyttäjä on jo erioikeutettu" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Käyttäjä on jo käyttöoikeudeton" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Käyttäjä on nyt erioikeutettu" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Käyttäjä on nyt käyttöoikeudeton" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Käyttäjä ei voi omistaa tikettejä jonossa" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Ei ole numero" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Perustiedot" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "Kommentti on tallennettu" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Tietokantapalvelimesi domainnimi (esim. 'db.esimerkki.com')" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Seuraava komento etsii kaikki aktiiviset tiketit jonosta 'yleiset' ja asettaa niiden prioriteetin 99:si jos niihin ei ole koskettu viimeiseen neljään tuntiin:" #: NOT FOUND IN SOURCE msgid "The following commands were not proccessed:\\n\\n" msgstr "Seuraavia komentoja ei suoritettu:\\n\\n" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Seuraavat kyselyt eivät ehkä ole mahdollisia kaikille käyttäjille jotka voivat nähdä tämän työtilan." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Avain on vanhentunut" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Uusi arvo asetettu." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Tiketin yhteyshenkilö" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Sivua ei löydy" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Tiketin tilaaja" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Teema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Sinulla on lukemattomia viestejä tässä tiketissä." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Nämä viestit eivät ole yleisesti näkyvillä käyttäjille" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "" #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Tämä viesti lähetetään" #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: NOT FOUND IN SOURCE msgid "This ticket %1 %2 (%3)\\n" msgstr "Tämä tapaus %1 %2 (%3)\\n" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Tämä tapahtuma ei näytä sisältävän mitään" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Käyttäjän %1 tärkeintä tikettiä" #: NOT FOUND IN SOURCE msgid "This user's 25 highest priority tickets" msgstr "Käyttäjän 25 tärkeintä tapausta" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "To" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Tiketti" #: NOT FOUND IN SOURCE msgid "Ticket # %1 %2" msgstr "Tapaus # %1 %2" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Tiketti #%1: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Tiketti #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Tiketti %1 luotu jonoon '%2'" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "Tapaus %1 ladattu\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Tiketti %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Tiketti #%1: %2" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "Tapauksen numero" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "Tapauksen liitteen" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Tiketin sisältö" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Tiketin sisällön tyyppi" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Tikettiä ei voitu luoda sisäisen virheen takia" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Tikettiä ei voitu ladata" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "Tapaus luotu" #: NOT FOUND IN SOURCE msgid "Ticket creation failed" msgstr "Tapauksen luonti epäonnistui" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "Tapaus poistettu" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Tikettinäkymä" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "Tapauksen numeroa ei löytynyt" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Tiketin tiedot" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "Tapausta ei löydy" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Tiketin tila muutettu" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "Tapauksen tarkkailijat" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Tietokantahaku" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Tiketit %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Alkamisaika" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Päättymisaika" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "Tapaukset %1" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Alkamisaika" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Päättymisaika" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Arvioitu työaika" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "SLA" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Työaikaa käytetty" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Aikaa jäljellä" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Aika" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Aikaa käytetty" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Aikavyöhyke" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "Luodaksesi diffin tästä käskystä:" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "To generate a diff of this commit:\\n" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Viimeinen viesti" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Työkalut" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "" #: etc/initialdata:249 msgid "Transaction" msgstr "" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Tapahtuma %1 puhdistettu" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Tapahtuma luotu" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Tapahtumat ovat muuttumattomia" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "" #: NOT FOUND IN SOURCE msgid "Trying to delete a right: %1" msgstr "Yritetään poistaa oikeus: %1" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Ti" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Tyyppi" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Tyyppi muutettu '%1' -> '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Ei voitu tilata työtilaa %1: Pääsy estetty" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Toteuttamaton" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix login" #: NOT FOUND IN SOURCE msgid "UnixUsername" msgstr "Käyttäjän Unix-tunnus" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Tuntematon sisällön koodaus %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Rajoittamaton" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Käyttöoikeudeton" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Ottamaton" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Päivitä" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "Päivitä numero" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Tallenna muutokset" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Päivitä tyyppi" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "Päivitä kaikki nämä tapaukset kerralla" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "Päivitä sähköposti" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Päivitä ja Hae" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Päivitä useita tikettejä" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "Päivitä nimi" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Päivitystä ei tallennettu" #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "Päivitä valitut tapaukset" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "Päivitä allekirjoitus" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Muokkaa tikettiä" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "Päivitä tapaus # %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Muokkaa tikettiä #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Muokkaa tikettiä #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Päivityksen tyyppi ei ollut kirjeenvaihto eikä kommentti." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Päivitetty" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Lähetä muutokset" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "" #: NOT FOUND IN SOURCE msgid "Use monospace font" msgstr "Käytä monospace-fonttia" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Käytä muita RT:n hallinnointityökaluja" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Käyttäjä" #: NOT FOUND IN SOURCE msgid "User %1 %2: %3\\n" msgstr "Käyttäjä %1 %2: %3\\n" #: NOT FOUND IN SOURCE msgid "User %1 Password: %2\\n" msgstr "Käyttäjä %1 Salasana: %2\\n" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Käyttäjää '%1' ei löydy." #: NOT FOUND IN SOURCE msgid "User '%1' not found" msgstr "Käyttäjää '%1' ei löydetty" #: NOT FOUND IN SOURCE msgid "User '%1' not found\\n" msgstr "Käyttäjää '%1' ei löydetty\\n" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "Käyttäjätunnus" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "Käyttäjätunnus" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Käyttäjän oikeudet" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Käyttäjää ei voitu luoda: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Käyttäjä luotu" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Käyttäjän luomat ryhmät" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Käyttäjällä on tyhjä sähköpostiosoite" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "" #: NOT FOUND IN SOURCE msgid "User notified" msgstr "Käyttäjää informoitu" #: NOT FOUND IN SOURCE msgid "User view" msgstr "Käyttäjän näkymä" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Käyttäjän GnuPG-avaimet" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Käyttäjätunnus" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Käyttäjänimen esitystapa" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Käyttäjät" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Hakua vastaavat käyttäjät" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "Tapauksen arvo" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Arvot" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Tikettijärjestelmän luomat raportit" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Katsele tämän ryhmän työtiloja" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Katsele omia työtiloja" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Katsele järjestelmän työtiloja" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "WYSIWYG editorin korkeus" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "Käytä WYSIWYG viestieditoria" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Varoitus: et ole asettanut sähköpostiosoitetta joten et voi vastaanottaa tätä työtilaa" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Valvoja" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "Valvontaryhmä" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Valvoja" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "Web-koodaus" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Ke" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Päivänäkymä" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Mikä on RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Kun RT llähettää sähköpostia asetetaan Lähettäjä: ja Vastaus: kentät niin että käyttä voi lisätä keskustelua suoraan klikkaamalla Vastaa sähköpostiohjelmasta. Se käyttää eri osoitteita Vastauksille ja Kommenteille. Näitä voidaan muuokata jokaiselle jonolle erikseen. Nämä osoitteet täytyy konfiguroida käyttämään rt-mailgate ohjelmaa." #: etc/initialdata:105 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:110 msgid "When anything happens" msgstr "" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Aina kun tiketti avataan uudelleen" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Aina kun tiketin yhteyshenkilö muuttuu" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Aina kun tiketin prioriteetti muuttuu" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Aina kun tiketin jono muuttuu" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Aina kun tiketin tila muuttuu" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Työ" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "Työpuhelin" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Työaika" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Kyllä" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Omistat jo tämän tiketin" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "" #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Et ole valtuutettu käyttäjä" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Voit hypätä ensimmäiseen uuteen viestiin tai hypätä ensimmäiseen viestiin ja merkitä kaikki viestit luetuiksi." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Voit vaihtaa yhteyshenkilöä vain jos tikettiä ei ole osoitettu tai se on osoitettu sinulle" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Sinulla ei ole pääkäyttäjän oikeuksia." #: NOT FOUND IN SOURCE msgid "You don't have permission to view that ticket.\\n" msgstr "Sinulla ei ole valtuuksia tarkastella tätä tapausta.\\n" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Löytyi %1 tikettiä jonosta %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Olet kirjautunut ulos tikettijärjestelmästä" #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Sinulla ei ole valtuuksia luoda tikettejä tähän jonoon." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Et voi luoda tikettejä jonoon." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Tervetuloa uudelleen" #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "Sinun %1 tapaustasi" #: NOT FOUND IN SOURCE msgid "Your RT administrator has misconfigured the mail aliases which invoke RT" msgstr "RT:n ylläpitäjä on konfiguroinut RT:n käynnisävät sähköpostialiakset väärin." #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Käyttäjätunnuksesi tai salasanasi on väärä" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Postinumero" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "Jälkeen"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "sallittu käyttäjälle %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "ennen"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "valmis"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "sisältää"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "sisältö"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "sisällön tyyppi"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "kirjeenvaihtoa (luultavasti) ei ole lähetetty"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "kirjeenvaihto lähetetty"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "päivittäin"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "päivää"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "poista"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "Poistettu"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "ei sisällä"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "ei sisällä"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "ei täsmää"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "lataa"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr "kesto"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "on yhtäsuuri"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "joka"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "tiedostonimi"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "täysi"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "on suurempi kuin"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "ryhmä"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "ryhmä %1"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "tuntia"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "numero"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "on"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "ei ole"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "vasemmalta oikealle"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "on pienempi kuin"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "sisältää"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr "minuuttia"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minuuttia"

#: NOT FOUND IN SOURCE
msgid "modifications\\n\\n"
msgstr "muokkaukset\\n\\n"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "kuukausittain"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr "kuukautta"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "ei koskaan"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "Uusi"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "ei"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "ei nimeä"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "ei mitään"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "on erisuuri kuin"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "ei mitään"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "kohteet poistettiin onnistuneesti"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "-"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "päivänä"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "yksi"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "Käsittelyssä"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "avaa/sulje"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "muu"

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "oma ryhmä '%1' käyttäjälle '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "lisäosa palautti tyhjän listan"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "jono %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "Hylätty"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "Valmis"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "oikealta vasemmalle"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sec"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "objektit"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "näytä Hyväksynnät-välilehti"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "näytä Asetukset-välilehti"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "Odottaa"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "yhteenveto"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "yhteenveto"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "järjestelmä %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "järjestelmäryhmä '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "kutsuva komponentti ei eritellyt syytä"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "vakio-osoitteet jotka listataan Lähettäjä: ja Reply-To: kentissä viestien otsikkotiedoissa"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "vakio-osoitteet jotka listataan Lähettäjä: ja Reply-To: kentissä viestien otsikkotiedoissa"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "tiketti #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "ylhäältä alas"

#: NOT FOUND IN SOURCE
msgid "true"
msgstr "tosi"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "äärimmäinen"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "kuvailematon ryhmä %1"

#: NOT FOUND IN SOURCE
msgid "undescripbed group %1"
msgstr "kuvailematon ryhmä %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "rajoittamaton"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "käyttäjä"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "käyttäjä %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "käyttäjänimi"

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "monisanainen"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "viikoittain"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "viikoittain (%1) klo %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "viikkoa"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "mitä porttia WWW-palvelimesi kuuntelee, esim. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "otsikkotietojen kanssa"

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "pohjalla %1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "vuosia"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "kyllä"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/is.po0000664000175000017500000074022212262650742013754 0ustar  chmrrchmrr# Icelandic translation for rt
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:34+0000\n"
"Last-Translator: Anna Jonna Armannsdottir \n"
"Language-Team: Icelandic \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (vantreyst!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %3 %2 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %3 %2 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3 %2 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 bætt við"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 síðan"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 breytt í %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 eytt"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 eytt."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 vistað."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 uppfært."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr ""

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) eftir %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Óbreytt)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr ""

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr ""

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr ""

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr ""

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr ""

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr ""

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr ""

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr ""

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr ""

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr ""

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Höfundarréttur 1996-%3 %4."

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 bætt við sem gildi fyrir %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr ""

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr ""

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr ""

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 eftir %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 breyttist úr %2 í %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 línurit eftir %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 afrit"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "Ekki var hægt að breyta %1 í %2."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 búið til"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 eytt"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 óvirkt"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 er ekki til."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 virkt"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 hæstu forgangsmál sem ég á"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr ""

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 er ekki lengur %2 fyrir þessa biðröð."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 er ekki lengur %2 fyrir þetta mál."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr ""

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 mín"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 nýjustu mál sem enginn á"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 hlutir"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 uppfærsla: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 uppfærsla: Engin breyting"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 uppfært"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1's %2 hlutir"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 hlutir"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr ""

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: ekkert viðhengi tilgreint"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Nýtt mál í%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr ""

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr ""

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Hakaðu í boxið til að eyða)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Hakaðu í kassana ef ekki á að senda tilkynningar til móttakendanna)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Hakaðu í kassana ef senda á  tilkynningar til móttakendanna)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Skrifaðu málsnúmer eða URL, með bil á milli þeirra)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(verður sjálfgefið %1 ef þetta er látið vera autt)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr ""

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr ""

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Ekkert)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr ""

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr ""

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(tómt)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr ""

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(ekkert)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(engin gildi)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(aðeins eitt mál)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(bíður samþykkis)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(krafist)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(traust: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(án titils)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(vantreyst!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr ""

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr ""

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: etc/initialdata:215
msgid "A blank template"
msgstr ""

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr ""

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr ""

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr ""

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "OG"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "Um mig"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "Aðgangsstjórnun"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "Aðgerð"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr "Aðgerðin '%1' fannst ekki"

#: bin/rt-crontool:228
msgid "Action committed."
msgstr ""

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr ""

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr ""

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr ""

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr ""

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "Bæta við AdminCc"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr "Bæta við bókamerki"

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "Bæta við Cc"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr ""

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr ""

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "Bæta við spyrjanda"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr ""

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr ""

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "Bæta athugasemdum eða svörum við þetta mál"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr ""

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr ""

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "Bæta við nýjum áhorfendum"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr ""

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr "Bæta við þessum orðum"

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr "Bæta við þessum orðum og Leita"

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr ""

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr "Bæta gildum við"

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr ""

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr "Vistfang"

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr ""

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "Vistfang1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "Vistfang2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr ""

#: etc/initialdata:292
msgid "Admin Comment"
msgstr ""

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr ""

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr ""

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr ""

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr ""

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr ""

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr ""

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr ""

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr ""

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr ""

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr ""

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr ""

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "Nánar"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr ""

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr ""

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr ""

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr ""

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr ""

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr ""

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr ""

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr ""

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr ""

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr ""

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr ""

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr ""

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "Og/Eða"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr ""

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "Á við"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr "Á við alla hluti"

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "Nota"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr "Nota alsstaðar"

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "Virkja breytingarnar þínar"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "Samþykki"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr ""

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr ""

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr ""

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr ""

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr ""

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr ""

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr "Samþykkja"

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr ""

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr ""

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr ""

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr ""

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr ""

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr ""

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr ""

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr ""

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr ""

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr ""

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "Hækkandi"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr ""

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr ""

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr ""

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr ""

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr ""

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr ""

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr ""

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr ""

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr "ágú"

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr ""

#: etc/initialdata:218
msgid "Autoreply"
msgstr ""

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr "Sjálfvirkt svar til spyrjenda"

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr "Til taks"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr "Til baka"

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "Grunnatriði"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr ""

#: etc/initialdata:214
msgid "Blank"
msgstr "Autt"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr "Meginmál"

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "Feitletrað"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr "Bókamerki"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr ""

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr "Bókmerkt mál"

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Brief headers"
msgstr "Úrdráttur bréfhausa"

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr ""

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr ""

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr ""

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr ""

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr ""

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr ""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr ""

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr ""

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr ""

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr "Ekki er hægt að tengja mál við sjálft síg"

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr "Ekki er hægt að vista %1"

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "Ekki er hægt að vista þessa leit"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr ""

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr ""

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr "Flokkar eru byggðir á"

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr "Flokkur"

#: NOT FOUND IN SOURCE
msgid "Category unset"
msgstr "Flokkur er ekki stillur"

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr ""

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr "Breyta"

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "Breyta lykilorði"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr ""

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr ""

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "Velja allt"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr ""

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr ""

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr ""

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "Afkvæmi"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "Borg"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr ""

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr ""

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr ""

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr ""

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr ""

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr "Hreinsa"

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "Hreinsa allt"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr ""

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Close window"
msgstr "Loka glugga"

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "Lokað"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr "Lokuð mál"

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr ""

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr ""

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "Athugasemd"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr ""

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr ""

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr ""

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr ""

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "Athugasemdir"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "Athugasemdir (Ekki sendar til spyrjenda)"

#: NOT FOUND IN SOURCE
msgid "Comments (not sent to requestors)"
msgstr "Athugasemdir (ekki sendar til spyrjenda)"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr "Athugasemdir um þennan spyrjanda"

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "Athugasemd bætt við"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr ""

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "Skilyrði"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr ""

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr ""

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr ""

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr ""

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr ""

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "Uppsetning"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr ""

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr ""

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "Innihald"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr ""

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr ""

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr ""

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr ""

#: etc/initialdata:283
msgid "Correspondence"
msgstr ""

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr ""

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr ""

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr ""

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr ""

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr ""

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr ""

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr ""

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr ""

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr ""

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr ""

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr ""

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr ""

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr ""

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr ""

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr ""

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr ""

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr ""

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr ""

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr ""

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr ""

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr ""

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr ""

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr ""

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr ""

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr ""

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr ""

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr ""

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr ""

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr ""

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr ""

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr ""

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr ""

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr ""

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr ""

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr ""

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr ""

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr ""

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr ""

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr ""

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr ""

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr ""

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr ""

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr ""

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr ""

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "Land"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "Búa til"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "Búa til mál"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr ""

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr ""

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr ""

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "Búa til nýjan hóp"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr ""

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "Búa til nýtt mál"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "Búa til nýjan notanda"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr ""

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr ""

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr "Búa til mál"

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr ""

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr ""

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr ""

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr ""

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr "Búa til mál"

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create tickets in this queue"
msgstr "Búa til mál í þessari biðröð"

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify users"
msgstr "Búa til, eyða eða breyta notendum"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr ""

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr ""

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr ""

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr ""

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr ""

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "BúiðTil"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr "Þetta Gerði"

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Created in a date range"
msgstr "Búið til á gefnu tímabili"

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Created tickets in period, grouped by status"
msgstr "Mál sem búin voru til á gefnu tímabili, flokkuð eftir stöðu"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr "Höfundur"

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr "Dulritun"

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "Núverandi Tengingar"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr ""

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr ""

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr ""

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr ""

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr ""

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr ""

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr "Sérsniðnir reitir"

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr ""

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr ""

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr ""

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr ""

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr ""

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr ""

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr ""

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr ""

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr ""

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr ""

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr ""

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr ""

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr ""

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr ""

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr ""

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr "Sérsníða"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr ""

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr ""

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr ""

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr ""

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr ""

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr ""

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr ""

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr "Stjórnborð"

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr "Stjórnborð uppfært"

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr "Stjórnborð"

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr "Gagnagrunnsþjónn"

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr "Nafn á gagnagrunni"

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr ""

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr ""

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr ""

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr ""

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr "Snið dagsetningar"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "Dagsetningar"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr "des"

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr ""

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr ""

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr ""

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr ""

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr ""

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr ""

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr ""

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr ""

#: etc/initialdata:250
msgid "Default transaction template"
msgstr ""

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr ""

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr ""

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr ""

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "Eyða"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr "Eyða sniðmáti"

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr ""

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr ""

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr ""

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr ""

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr ""

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr ""

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr ""

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr ""

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr ""

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr ""

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr ""

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr ""

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "Leysist fyrst"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr "LeysistFyrst"

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr ""

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr ""

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "Leysist á eftir"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr "LeysistÁEftir"

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "Lækkandi"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "Lýsing"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr "Stefna"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr "Óvirkt"

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr "Sýna"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr ""

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr "Sýna Dálka"

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr ""

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr "Nafn léns"

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr ""

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr "Ekki uppfæra heimasvæðið."

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "Hala niður"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr ""

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "Skiladagur"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr ""

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr ""

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr ""

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr "Breyta"

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr ""

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr ""

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr "Breyta Tengingum"

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr "Breyta Leit"

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr "Breyta Leit"

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Edit saved searches for this group"
msgstr "Breyta vistuðum leitum fyrir þennan hóp"

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr "BreytaVistuðumLeitum"

#: NOT FOUND IN SOURCE
msgid "Editable text"
msgstr "Breytanlegur texti"

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr ""

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr ""

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "Tölvupóstfang"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr ""

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr ""

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr ""

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr ""

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr "Virkt"

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr ""

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr ""

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr ""

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr ""

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr "Dulrita"

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr "Dulritun er sjálfgefin"

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr ""

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr ""

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr ""

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr ""

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr ""

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr ""

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr ""

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr "Villa"

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr ""

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr ""

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr ""

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr ""

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr "Öll"

#: bin/rt-crontool:356
msgid "Example:"
msgstr ""

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr "Útrunnið"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr ""

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr ""

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr ""

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr ""

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr ""

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr ""

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr ""

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr ""

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr "feb"

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr "Skráarnafn"

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr ""

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr ""

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr ""

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr ""

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr ""

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr ""

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr ""

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr ""

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr ""

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr ""

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr ""

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr "Ljúka"

#: share/html/Elements/Tabs:651
msgid "First"
msgstr "Fyrsta"

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr ""

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr "Snið"

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr "Áfram"

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr ""

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr ""

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr ""

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr ""

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr ""

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr ""

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr "Tíðni"

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr "fös"

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr "Föstudagur"

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Full headers"
msgstr "Allir bréfhausar"

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr ""

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr "Almennt"

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr ""

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr ""

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr "Altækt"

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr ""

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr ""

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr ""

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr ""

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr "Áfram"

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr ""

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "Nú!"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr ""

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr "Línurit"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr ""

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr "Hópur"

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr ""

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr ""

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr ""

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr ""

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr ""

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr ""

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr ""

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr ""

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr ""

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "Hópar"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr ""

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr ""

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr ""

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr ""

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr "Halló!"

#: NOT FOUND IN SOURCE
msgid "Hello, %1"
msgstr "Hallo, %1"

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "Ferill"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr ""

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr ""

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr ""

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Home"
msgstr "Heimasvæðið þitt"

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr ""

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "Heimasíða"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr "Klst."

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr "Klukkustundir"

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr ""

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr "ISO"

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr "Id"

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "Auðkenni"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr ""

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr ""

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr ""

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr ""

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr ""

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr ""

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr ""

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr ""

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr ""

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr ""

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr ""

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr ""

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr ""

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr ""

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr ""

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr ""

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr ""

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr "Innri villa"

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr "Innri villa: %1"

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr ""

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr ""

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr ""

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr ""

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr ""

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr ""

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr ""

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr ""

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr ""

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr ""

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr ""

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr ""

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr ""

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr "Skáletrað"

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr "jan"

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr ""

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr "júl"

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr "Risa"

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr "jún"

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr ""

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr ""

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr "Stórt"

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr "Síðasta"

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr "Síðast í sambandi"

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr ""

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr ""

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr ""

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr "Vinstri"

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr ""

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr ""

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr ""

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr ""

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr ""

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr ""

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr "Tengill"

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr ""

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr ""

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr ""

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr ""

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr "Tengt"

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr ""

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr ""

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr ""

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr ""

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr "Tengingar"

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr "Hlaða inn"

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr ""

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr ""

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr ""

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr "Hlóð inn %1 %2"

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr ""

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr ""

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr "Tungumál"

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr "Staðsetning"

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr ""

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr "Innskráning sem %1"

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr "Útskráningu lokið"

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr "Innskráning"

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr "Útskráning"

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr "Póstur"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr ""

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr ""

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr ""

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr ""

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr ""

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr ""

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr ""

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr ""

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr "Búa til biðröð"

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr ""

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr ""

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr ""

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr ""

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr ""

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr ""

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr ""

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr "mar"

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr "maí"

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr "Meðlimur"

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr ""

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr ""

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr ""

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr ""

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr ""

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr "Meðlimir"

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr ""

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr ""

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr ""

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr ""

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr ""

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr ""

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr ""

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr ""

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr ""

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr "Skilaboð"

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr ""

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr ""

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr ""

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr "Mínútur"

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr ""

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr "Farsími"

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "MobilePhone"
msgstr "Farsími"

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr ""

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr ""

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr ""

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr ""

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr ""

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr ""

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr ""

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr ""

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr ""

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr ""

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr ""

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr ""

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr ""

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr ""

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr ""

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr ""

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr ""

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr ""

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr ""

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr ""

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr ""

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr ""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr ""

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr ""

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr ""

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr ""

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr ""

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr ""

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr ""

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr ""

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr ""

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr "mán"

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr "Mánudagur"

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "More"
msgstr "Meira"

#: NOT FOUND IN SOURCE
msgid "More about %1"
msgstr "Nánar varðandi %1"

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr "Færa niður"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr "Færa upp"

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr ""

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr ""

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr ""

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr ""

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr ""

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr ""

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr ""

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr "Nafn"

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr ""

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr "Aldrei"

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr "Nýtt"

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr ""

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr ""

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr "Nýjar Tengingar"

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr ""

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr "Ný leit"

#: NOT FOUND IN SOURCE
msgid "New group"
msgstr "Nýr hópur"

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr ""

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr "Nýtt lykilorð"

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr ""

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr "Ný áminning:"

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr ""

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr ""

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr ""

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr ""

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr ""

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr ""

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr "Næst"

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr ""

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr "Gælunafn"

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr "Nei"

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr ""

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr ""

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr "Ekkert viðfangsefni"

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr ""

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr "Engin aðgerð"

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr ""

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr ""

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr ""

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr ""

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr ""

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr ""

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr "Ekkert lykilorð sett"

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr ""

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr ""

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr ""

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr ""

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr ""

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr ""

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr ""

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr ""

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr ""

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr ""

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr ""

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr ""

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr ""

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr "Ekkert viðfangsefni"

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr ""

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr ""

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr ""

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr "Enginn"

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr "Ekkert"

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr ""

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr ""

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr "Innskráning er eftir."

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr ""

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr ""

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr "Glósur"

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr ""

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr ""

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr ""

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr ""

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr ""

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr ""

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr ""

#: etc/initialdata:41
msgid "Notify Owner"
msgstr ""

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr ""

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr ""

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr "Senda  eiganda, spyrjendum, Cc og AdminCC"

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr "Senda  eiganda, spyrjendum, Cc og AdminCC með athugasemd"

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr ""

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr "Senda spyrjendum"

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr ""

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr ""

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr ""

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr "nóv"

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr "EÐA"

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr "Hlutur"

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr ""

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr ""

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr ""

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr ""

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr "okt"

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr "Aftengjast"

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr ""

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr ""

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr ""

#: etc/initialdata:143
msgid "On Comment"
msgstr ""

#: etc/initialdata:115
msgid "On Correspond"
msgstr ""

#: etc/initialdata:104
msgid "On Create"
msgstr ""

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr ""

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr ""

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr ""

#: etc/initialdata:172
msgid "On Queue Change"
msgstr ""

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr ""

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr ""

#: etc/initialdata:178
msgid "On Resolve"
msgstr ""

#: etc/initialdata:149
msgid "On Status Change"
msgstr ""

#: etc/initialdata:109
msgid "On Transaction"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr ""

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr ""

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr ""

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr ""

#: etc/initialdata:95
msgid "Open Tickets"
msgstr ""

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr ""

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr ""

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr "Valkostur"

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr "Valkostir"

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr ""

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr "Raða eftir"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr "Stofnun/félag"

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr ""

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr ""

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr ""

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr ""

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr ""

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr "Eigandi"

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr ""

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr ""

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr ""

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr "Síða"

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr ""

#: share/html/dhandler:48
msgid "Page not found"
msgstr ""

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr "Flettir"

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr "Foreldri"

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr "Lykilorð"

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr ""

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr ""

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr ""

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr "Lykilorð sett"

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr "Lykilorð: %1"

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr ""

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr "Lykilorðin stemma ekki."

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr "Fólk"

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr ""

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr "Heimild ekki veitt"

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr "Aðgangi hafnað"

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr ""

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr ""

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr "Kjörstillingar"

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr ""

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr ""

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr ""

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr ""

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr ""

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr ""

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr ""

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr "Fyrra"

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr "Fyrri"

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr ""

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr ""

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr ""

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr "Forgangur"

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr ""

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr "Friðhelgi"

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr "Friðhelgi:"

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr ""

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr ""

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr ""

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr ""

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr ""

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr ""

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr "Fyrirspurn"

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr "Biðröð"

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr "Biðröð %1 fannst ekki"

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr ""

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr ""

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr ""

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr ""

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr "Biðröð búin til"

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr ""

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr "Biðröð nr"

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr "Biðröð fannst ekki"

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr ""

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr ""

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr "Biðraðir"

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr ""

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr ""

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr ""

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr "Flýtileit"

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr ""

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr ""

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr ""

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr ""

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr ""

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr ""

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr ""

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr ""

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr ""

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr ""

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr ""

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr ""

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr ""

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr "Viðtakandi"

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr ""

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr ""

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr ""

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr "Tilvísun frá"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr "TilvísunFrá"

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr "Vísar til"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr "VísarTil"

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr "Endurlesa (uppfæra)"

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr ""

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr ""

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr ""

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr ""

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr ""

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr "Bætt við áminningu '%1'"

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr "Lokið er minningu '%1'"

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr "Áminning '%1' endurvakin"

#: NOT FOUND IN SOURCE
msgid "Reminder ticket #%1"
msgstr "Áminningarmál #%1"

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr "Áminningar"

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr "Áminningar fyrir mál #%1"

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr ""

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr "Fjarlægja bókamerki"

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr ""

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr ""

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr ""

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr "Svara"

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr ""

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr "Svara spyrjendum"

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Reports"
msgstr "Skýrslur"

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr ""

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr "Spyrjendur"

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr ""

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr ""

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr "Frumstilla"

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr ""

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr ""

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr "Leysa"

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr ""

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr "Leyst"

#: NOT FOUND IN SOURCE
msgid "Resolved by owner"
msgstr "Leyst eftir eiganda"

#: NOT FOUND IN SOURCE
msgid "Resolved in date range"
msgstr "Leyst á tímabili"

#: NOT FOUND IN SOURCE
msgid "Resolved tickets in period, grouped by owner"
msgstr "Leyst mál á tímabili, raðað eftir eiganda"

#: NOT FOUND IN SOURCE
msgid "Resolved tickets, grouped by owner"
msgstr "Leyst mál, raðað eftir eiganda"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr "Svara"

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr "Niðurstöður"

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr ""

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr "Skrifa lykilorð aftur"

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr "Afturkalla"

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr ""

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr ""

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr ""

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr ""

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Roles"
msgstr "Hlutverk"

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr "Raðir"

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr ""

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr ""

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr ""

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr "lau"

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr "Laugardagur"

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr "Vista"

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr "Vista breytingar"

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr "Vista kjörstillingar"

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr "Vista sem Nýtt"

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr "Vistaði %1 %2"

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr ""

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr ""

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr ""

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr ""

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr ""

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr ""

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr "Leita"

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr ""

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr "Leitarstillingar"

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr ""

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr ""

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr ""

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address."
msgstr "Leita að málum. Skráið málsnr. númer, biðraðir eftir nafni, Eigendur notendanafn og spyrjendur eftir netfangi."

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr "Leitarmöguleikar"

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr ""

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr ""

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word."
msgstr "Leit í öllum texta hvers máls, getur tekið langan tíma en ef þú þarft að gera þetta, geturðu leitað að að hvaða orði sem er í málasögunni með því að skrifa\n fulltext:orðið."

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr "Öryggi:"

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr "Sjá einnig:"

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr ""

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr ""

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr ""

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr ""

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr "Velja"

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr ""

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr ""

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr ""

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr ""

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr ""

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr ""

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr ""

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr ""

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr ""

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select group"
msgstr "Velja hóp"

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr ""

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr ""

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr ""

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr ""

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr ""

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr "Senda póst til spyrjenda og Cc"

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr ""

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr "Sendir spyrjendum skilaboð"

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr ""

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr ""

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr ""

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr ""

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr ""

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr ""

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr "sep"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr "Stillingar"

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr "Sýna"

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr ""

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr "Sýna niðurstöður"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Show details"
msgstr "Sýna nánar"

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr ""

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr ""

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr ""

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr "SýnaSamþykkisflipa"

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr ""

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr ""

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr "Tætari"

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr "Hliðarslá"

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr "Skrifa undir"

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr "Undirskrift"

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr ""

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr "Einföld leit"

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr "Stakt"

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr "Nafn vefs"

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr "Stærð"

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr ""

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr "Smátt"

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr "Raða"

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr "Röðun"

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr "Uppruni"

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr "Töflureiknir"

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr "Þrep"

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr ""

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr "Byrjaði"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr "Byrjar"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr "Fylki"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr "Staða"

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr ""

#: etc/initialdata:307
msgid "Status Change"
msgstr "Breyta stöðu"

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr "Staða máls breyttist úr %1 í %2"

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr "Stela málum"

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr "Stela máli"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr "Skref %1 af %2"

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr "Stolið af %1"

#: NOT FOUND IN SOURCE
msgid "Stolen from %1 "
msgstr "Stolið af %1 "

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr "Stíll"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr "Viðfangsefni"

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr "Viðfangsefni breytt í %1"

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr "Senda"

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr "Gerast áskrifandi"

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr "Áskrift"

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr ""

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr ""

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr "sun"

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr "Sunnudagur"

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr ""

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr "Stillingar kerfis"

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr ""

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr ""

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr "Kerfistól"

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr ""

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr ""

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr ""

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr ""

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr "Taka málin"

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr ""

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr "Tekið"

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr "Sniðmát"

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr ""

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr ""

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr ""

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr ""

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr ""

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr ""

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr "Sniðmát"

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr ""

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr ""

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr ""

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr ""

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr ""

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr ""

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr ""

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr ""

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr ""

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr ""

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr ""

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr ""

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr ""

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr ""

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr ""

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr ""

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr ""

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr ""

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr ""

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr ""

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr ""

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr ""

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr ""

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "This user's %1 highest priority tickets"
msgstr "%1 hæstu forgangsmál þessa notanda"

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr "fim"

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr "fimmtudagur"

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr "Mál"

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr "Mált #%1 Risauppfærsla: %2"

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr "Mál #%1 venslagraf"

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr "Mál #%1:"

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr "Mál #%1: %2"

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr "Mál %1"

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr "Mál %1 búið til í biðröð '%2'"

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr "Mál %1: %2"

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr ""

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr "Saga Máls # %1 %2"

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr "Mál Leyst"

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr "Leit í Málum"

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr ""

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr ""

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr "Innihald máls"

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr ""

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr ""

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr ""

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr "Lýsigögn máls"

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr "Staða máls breyttist"

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr ""

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr "Mál"

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr "Mál %1 %2"

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr "Mál %1 eftir %2"

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Tickets created after"
msgstr "Mál gerð eftir"

#: NOT FOUND IN SOURCE
msgid "Tickets created before"
msgstr "Mál gerð fyrir"

#: NOT FOUND IN SOURCE
msgid "Tickets resolved after"
msgstr "Mál leyst eftir"

#: NOT FOUND IN SOURCE
msgid "Tickets resolved before"
msgstr "Mál leyst fyrir"

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr "Mál sem eru háð þessu samþykki:"

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr ""

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr "Tími eftir"

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr ""

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr "Tími til birtingar"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr ""

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr "Tímabelti"

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr "Titill"

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr "Til"

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr ""

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr "Áhöld"

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr ""

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr ""

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr ""

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr "Heild"

#: etc/initialdata:249
msgid "Transaction"
msgstr ""

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr ""

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr ""

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr ""

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr ""

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr "Traust"

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr "þri"

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr "Þriðjudagur"

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr "Tegund"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr ""

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr ""

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr ""

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr ""

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr ""

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr ""

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr ""

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr "Ótakmarkað"

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr ""

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr ""

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr ""

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr "Laust"

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr "Uppfæra"

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr ""

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr ""

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr ""

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr ""

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr ""

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr "Uppfæra mál"

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr "Uppfæra mál #%1"

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr "Uppfæra mál #%1 (%2)"

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr "StaðaUppfærslu"

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr "Uppfært"

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr "Senda"

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr ""

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr ""

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr ""

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr ""

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr ""

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr ""

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr ""

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr ""

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr ""

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr ""

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr ""

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr ""

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr "Notandi"

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr "Skilgreint af notanda"

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr ""

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr ""

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr ""

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr ""

#: lib/RT/User.pm:262
msgid "User created"
msgstr ""

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr ""

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr ""

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr ""

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr "Notandanafn"

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr ""

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr "Notendur"

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr ""

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr ""

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr "Prófun"

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr "Gildi"

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr "Breyta"

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr "Útgáfunúmer"

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr ""

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr ""

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr ""

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr ""

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr "Fylgjast með"

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr ""

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr "Áhorfandi"

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr ""

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr "mið"

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr "Miðvikudagur"

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr ""

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr ""

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr "Velkomin(n) í RT!"

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr ""

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr "Hvað er RT?"

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr ""

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr ""

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr ""

#: etc/initialdata:110
msgid "When anything happens"
msgstr ""

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr ""

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr ""

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr ""

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr ""

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr ""

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr ""

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr ""

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr ""

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr ""

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr "Útmá"

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr "Vinna"

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr ""

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr "Já"

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr ""

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr ""

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr ""

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr ""

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr ""

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr ""

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr ""

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr ""

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr ""

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr ""

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr ""

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr ""

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr ""

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr "[ekkert]"

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr ""

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "eftir"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "fyrir"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "daglega"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "daglega kl. %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dagar"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "eytt"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "sækja"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "jafnt og"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "fullt"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "stærri en"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr ""

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "klukkustundir"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr ""

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "er ekki"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "lykill óvirkur"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "lykill útrunninn"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "lykill afturkallaður"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "frá vinstri til hægri"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "minna en"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr "mín"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "mínútur"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "mánaðarlega"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr "mánuðir"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "aldrei"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "nýtt"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "ekkert"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "ekki jafnt og"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "ekkert"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "eitt"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "stalled"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr ""

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr ""

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr ""

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "Sýna Samþykkisflipa"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "Sýna stillingaflipa"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "biðstaða"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr ""

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr ""

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr ""

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr ""

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "ótakmarkað"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "fjölyrt"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "vikur"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr ""

#: lib/RT/Date.pm:362
msgid "years"
msgstr "ár"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "Já"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/oc.po0000664000175000017500000073277612262650742013761 0ustar  chmrrchmrr# Occitan (post 1500) translation for rt
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: rt\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
"POT-Creation-Date: 2013-01-24 23:12+0000\n"
"PO-Revision-Date: 2012-04-29 09:55+0000\n"
"Last-Translator: Cédric VALMARY (Tot en òc) \n"
"Language-Team: Occitan (post 1500) \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-14 16:29+0000\n"
"X-Generator: Launchpad (build 16532)\n"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "n°"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "n°%1 : %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 n°%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4 : %5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4 : %5 : %6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 apondut"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "i a %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 cambiat en %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 suprimit"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 suprimits"

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 salvats."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 mes a jorn"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 amb lo modèl %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) per %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (incambiat)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (del panèl %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ajustatz l'opcion de configuracion LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Un paramètre de passar a %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Escriu las mesas a jorn d'estatuts sus STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Precisatz se volètz utilizar la primièra (first), la darrièra (last) o totas (all) las transaccions"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Especificatz lo nom o l'id del modèl que volètz utilizar"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Precisatz l'accion que volètz utilizar"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Precisatz per una lista separada per de virgulas, los tipes de transaccions que volètz utilizar"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Precisatz la condicion que volètz utilizar"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Precisatz la recèrca que volètz utilizar"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 apondut(da) coma valor de %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr ""

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr ""

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr ""

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 per %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 cambiat(ada) de %2 a %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 cambiat de '%2' en '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "grafic %1 per %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "còpia de %1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "Configuracion centrala %1"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 a pas pogut èsser posicionat a %2."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 creat(ada)"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 suprimit(ida)"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 desactivat(ada)"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 existís pas."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 activat(ada)"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr ""

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr ""

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr ""

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr ""

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 articles los mai recents"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr ""

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objèctes"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "Configuracion de site %1"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 mesa a jorn : %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr ""

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 mes a jorn"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1 de %2 objèctes"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1 de %2 de %3 objèctes"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "Claus GnuPG de %1"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "Senhal actual de %1"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Tablèus de bòrd de %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Recèrcas salvadas de %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1 : pas d'estacament especificat"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1 : %2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1 : %2 : %3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Crear un tiquet dins%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1 m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1 s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,ora)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' es un estatut invalid"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr "%1 es pas un nom valid."

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "Ròtles"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "Sistèma"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "Gropes d'utilizaires"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "Utilizaires"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr ""

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Pas de camp personalizat)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Pas cap de membre)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Pas cap de Scrip)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Pas cap de modèl)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Pas cap)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr ""

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr ""

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(totes)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(sens nom)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(pas de clau publica !)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(pas cap de valor)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(pas cap de valors)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(un sol tiquet)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr ""

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(requesit)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(fisança : %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(sens títol)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr ""

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: etc/initialdata:215
msgid "A blank template"
msgstr "Un modèl void"

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr ""

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr "ACE pas trobat"

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr ""

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "E"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "A prepaus de ieu"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "Contraròtle d'accès"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "Accion"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr "Accion '%1' pas trobada"

#: bin/rt-crontool:228
msgid "Action committed."
msgstr ""

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr "L'argument 'Accion' es obligatòri"

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr "Accion preparada..."

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr "Accions"

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr ""

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr "Apondre %1"

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "Apondre AdminCC"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr "Apondre un signet"

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "Apondre CC"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr "Apondre de colomnas"

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr "Apondre un critèri"

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "Apondre d'autres fichièrs"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "Apondre un Demandaire"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr "Apondre una valor"

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr ""

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr ""

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr "Apondre un grop"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr ""

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr "Apondre de membres"

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr ""

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr ""

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr "Apondre aqueles tèrmes"

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr ""

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr "Apondre un utilizaire"

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr "Apondre las valors"

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr ""

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr "Adreça"

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr "Adreça 2"

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "Adreça1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "Adreça2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr "Admin Cc"

#: etc/initialdata:292
msgid "Admin Comment"
msgstr "Comentari Admin"

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr "Correspondéncia Admin"

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr "Administrators de filas"

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr "Configuracion globala / administracion"

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr "AdminCCGroup"

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr "AdminCc"

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr "AdminCcs"

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr "GerirCampPersonalizat"

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr "GerirGropes"

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr "GerirFila"

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr ""

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr "GerirUtilizaires"

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr "Cc Administratiu"

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr "Senhal d'administrator"

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "Avançat"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr ""

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr ""

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr "Totas las aprovacions obtengudas"

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr ""

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr ""

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr "Totas las filas"

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr ""

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr ""

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr ""

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr ""

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr ""

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr ""

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr ""

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr "Ja chifrat"

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "E/O"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr ""

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr "Aplicat"

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "S'aplica a"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "Aplicar"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "Aplicar vòstres cambiaments"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "Aprovacion"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr "Aprovacion #%1 : %2"

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr ""

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr ""

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr "Aprovacion obtenguda"

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr ""

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr "Aprovacion refusada"

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr "Aprovar"

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr "Abr"

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr ""

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr "Article #%1: %2"

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr "Article %1"

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr ""

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr ""

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr "Articles"

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr ""

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr ""

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr ""

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr "Creis."

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "Creissent"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr ""

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "Jónher"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr "Jónher un fichièr"

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "Fichièr junt"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr "Fichièr junt"

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr ""

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "Estacament creat"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "Nom de fichièr de l'estacament"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "Pèças juntas"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr ""

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr "Atribut suprimit"

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr "Ago"

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr ""

#: etc/initialdata:218
msgid "Autoreply"
msgstr "ResponsaAuto"

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr ""

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr "Disponible(a)"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr "Retorn"

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr ""

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr "Cci"

#: etc/initialdata:214
msgid "Blank"
msgstr "Void"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr "Còs"

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "Gras"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr "Marcapagina"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr ""

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr ""

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr ""

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr ""

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr ""

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr "Mesa a jorn en massa"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr "CCGroup"

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr "CF"

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr ""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr ""

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr ""

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr ""

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr ""

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr "Impossible de salvar %1"

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "Impossible de salvar aquesta recèrca"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr ""

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr ""

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr "Categoria"

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "Còpia a (CC)"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr "Ccs"

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr "Modificar"

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "Modificar lo senhal"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr "Diagrama"

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr ""

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "Marcar tot"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr ""

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr ""

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr ""

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "Enfants"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "Vila"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr "Classa"

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr ""

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr ""

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr ""

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr ""

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr "Classas"

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr "Escafar"

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "Tot escafar"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr ""

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr ""

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "Tampat"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr ""

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr ""

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr ""

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "Comentari"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr "Adreça de comentari"

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr "Adreça de comentari"

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr ""

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr ""

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "Comentaris"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr ""

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr ""

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "Comentaris aponduts"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr "tr(Commit Stubbed)"

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "Condicion"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr "Condicion '%1' pas trobada"

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr "L'argument condicion es obligatòri"

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr ""

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr ""

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr ""

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "Configuracion"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr ""

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr "Connexion capitada"

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "Contengut"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr ""

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr "Tipe de contengut"

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr "TipeDeContengut"

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr "Adreça de responsa"

#: etc/initialdata:283
msgid "Correspondence"
msgstr ""

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr ""

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr ""

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr ""

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr "Impossible de crear un grop"

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr ""

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr "Impossible de crear lo modèl : %1"

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr ""

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr "Impossible de crear l'utilizaire"

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr ""

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr ""

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr ""

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr "Impossible de cargar l'atribut %1"

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr "Impossible de cargar aqueste grop"

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr "Impossible de cargar l'objècte per %1"

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr ""

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr ""

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr ""

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr ""

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr ""

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr "Colomna introbabla"

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr ""

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr "Valor introbabla"

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr "Impossible de cargar la classa %1"

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr ""

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr ""

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr ""

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr "Impossible de cargar lo grop %1"

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr ""

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr "Impossible de cargar l'objècte %1"

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr ""

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr "Impossible de cargar la fila"

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr "Impossible de cargar la fila #%1"

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr "Impossible de cargar la fila %1"

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr "Impossible de cargar la fila '%1'"

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr ""

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr ""

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr ""

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr ""

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr ""

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr ""

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr ""

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr ""

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr ""

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr ""

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr ""

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr ""

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr ""

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr ""

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "País"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "Crear"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr ""

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr ""

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr ""

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "Crear un grop novèl"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr ""

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr ""

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "Creacion d'un utilizaire novèl"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr "Apondre una fila"

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr "Apondre un modèl"

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr ""

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr ""

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr ""

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr ""

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr ""

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr ""

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr ""

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr ""

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr ""

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr ""

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr ""

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "Creat"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr "Creat per"

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr "Creat per"

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr "CreatPer"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr "Creator"

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr "Chiframent"

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "Ligams corrents"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr "Scrips actuals"

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr ""

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr "Membres actuals"

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr "Dreches actuals"

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr ""

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr ""

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr "Camps personalizats"

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr ""

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr ""

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr ""

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr ""

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr ""

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr ""

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr ""

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr ""

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr ""

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr ""

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr ""

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr ""

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr ""

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr ""

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr ""

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr "Personalizar"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr "Personalizacion de basa"

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr ""

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr ""

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr ""

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr "Senhal de l'administrator"

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr "Identificant DBA"

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr "Cada jorn"

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr ""

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr "Tablèu de bòrd"

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr "Tablèus de bòrd"

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr ""

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr "Nom de banca de donadas"

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr "Senhal de la banca de donadas per RT"

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr "Pòrt de connexion a la banca"

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr ""

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr ""

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr "Format de la data"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "Datas"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr "Dec"

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr "Deschifrar"

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr ""

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr "Fila per defaut"

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr ""

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr ""

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr ""

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr ""

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr "Fila per defaut"

#: etc/initialdata:250
msgid "Default transaction template"
msgstr ""

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr "Per defaut : %1"

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr ""

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr "DefaultFormat"

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "Suprimir"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr ""

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr ""

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr ""

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr ""

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr ""

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr ""

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr ""

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr ""

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr ""

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr "Suprimit %1"

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr ""

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr ""

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr ""

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr "Refusar"

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr ""

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr ""

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr ""

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "Depend de"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr "DependDe"

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr "Desc."

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "Òrdre descreissent"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "Descripcion"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr "Detalhs"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr "Direccion"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr "Desactivat"

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr "Afichatge"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr ""

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr ""

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr ""

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr "Nom de domeni"

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr ""

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr ""

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "Telecargar"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr ""

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "Tèrme"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr "ERROR : %1"

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr ""

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr ""

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr "Editar"

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr ""

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr ""

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr "Modificar los ligams"

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr "Modificar la requèsta"

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr "Mod. recèrca"

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr ""

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr ""

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "Corrièr electronic"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr "Adreça electronica"

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr ""

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr ""

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr ""

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr "Activat"

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr ""

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr ""

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr ""

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr ""

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr "Chifrar"

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr "Chifrar per defaut"

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr ""

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr ""

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr ""

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr ""

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr ""

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr ""

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr ""

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr "Error"

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr ""

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr ""

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr ""

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr "Estimat"

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr "Tot lo monde"

#: bin/rt-crontool:356
msgid "Example:"
msgstr "Exemple :"

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr "Expiracion"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr ""

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr ""

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr ""

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr ""

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr ""

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr ""

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr ""

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr ""

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr "Feb"

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr "Fluxes"

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr "Camp"

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr "Nom del fichièr"

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr ""

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr ""

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr ""

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr ""

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr ""

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr ""

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr ""

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr ""

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr ""

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr ""

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr "Emprencha digitala"

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr "Acabar"

#: share/html/Elements/Tabs:651
msgid "First"
msgstr "Primièr"

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr ""

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr "Formatar"

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr "Transferiment"

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr ""

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr ""

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr ""

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr ""

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr ""

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr ""

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr "Frequéncia"

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr "Div"

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr "Divendres"

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr "De"

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr ""

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr "General"

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr ""

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr "Per començar"

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr "Balhat a %1"

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr "Global"

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr ""

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr ""

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr "Modèl global : %1"

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr "GnuPG"

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr "Problèmas GnuPG"

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr "Anem !"

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr ""

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "Anem !"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr ""

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr "Grafic"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr ""

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr "Grop"

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr ""

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr ""

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr ""

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr ""

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr ""

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr "Grop activat"

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr ""

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr ""

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr "Grop introbable"

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "Gropes"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr ""

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr ""

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr ""

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr ""

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr "Bonjorn !"

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "Istoric"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr ""

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr ""

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr ""

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr "Telefòn personal"

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "Site web"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr "Ora"

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr "Oras"

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr ""

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr "ISO"

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr "Id"

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "Identitat"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr ""

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr ""

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr ""

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr ""

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr ""

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr ""

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr ""

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr ""

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr ""

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr ""

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr ""

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr ""

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr ""

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr ""

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr ""

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr "Error d’entrada"

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr ""

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr "Error intèrna"

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr "Error intèrna : %1"

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr ""

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr ""

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr ""

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr "Donada invalida"

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr "Objècte invalid"

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr "Motiu invalid : %1"

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr ""

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr ""

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr ""

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr ""

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr ""

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr ""

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr ""

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr ""

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr "Italica"

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr "Gen"

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr ""

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr "Jul"

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr "Jumbo"

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr "Jun"

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr ""

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr "Lenga"

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr "Granda"

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr "Darrièr"

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr ""

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr ""

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr "Darrièra mesa a jorn"

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr ""

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr "Restant"

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr "Legendas"

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr ""

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr ""

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr ""

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr "Es partit !"

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr ""

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr "Ligam"

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr ""

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr ""

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr ""

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr ""

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr "Ligat"

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr ""

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr ""

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr ""

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr ""

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr "Ligams"

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr "Lista"

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr "Cargar"

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr ""

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr ""

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr ""

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr "%1 %2 cargat"

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr ""

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr "Cargament en cors..."

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr "Localizacion"

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr "Emplaçament"

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr "Connectat"

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr ""

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr "Desconnectat"

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr "Se connectar"

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr "Se desconnectar"

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr "Corrièl"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr "Attribuer"

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr ""

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr ""

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr ""

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr ""

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr ""

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr ""

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr ""

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr ""

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr ""

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr ""

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr ""

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr ""

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr ""

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr ""

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr ""

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr "Mar"

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr "Mai"

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr "Me"

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr "Membre"

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr ""

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr ""

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr ""

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr ""

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr ""

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr "Membres"

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr ""

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr ""

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr ""

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr ""

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr ""

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr ""

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr ""

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr ""

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr ""

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr "Messatge"

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr ""

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr ""

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr ""

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr "Minutas"

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr "Divèrs"

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr "Telefonet"

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr "Telefonet"

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr "Modificar"

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr ""

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr ""

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr ""

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr ""

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr ""

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr ""

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr ""

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr ""

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr ""

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr ""

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr ""

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr ""

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr ""

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr ""

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr ""

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr ""

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr ""

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr ""

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr ""

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr ""

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr ""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr ""

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr ""

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr ""

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr ""

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr ""

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr ""

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr ""

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr ""

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr "Modul"

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr "Dil"

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr "Diluns"

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr "Cada mes"

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr "Desplaçar cap aval"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr "Desplaçar cap amont"

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr "Multiple"

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr ""

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr ""

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr ""

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr ""

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr ""

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr ""

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr "MySQL"

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr "NBSP"

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr "Nom"

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr ""

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr "Nom ja utilizat"

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr "Nom :"

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr "Pas jamai"

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr "Novèl"

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr ""

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr ""

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr ""

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr ""

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr "Recèrca novèla"

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr "Messatges novèls"

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr "Senhal novèl"

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr ""

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr ""

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr ""

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr ""

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr ""

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr ""

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr ""

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr ""

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr "Seguent"

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr ""

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr "Escais"

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr "Non"

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr ""

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr ""

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr "Sens subjècte"

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr ""

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr "Pas cap d'accion"

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr ""

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr ""

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr ""

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr ""

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr ""

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr ""

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr ""

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr ""

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr ""

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr ""

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr ""

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr ""

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr ""

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr ""

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr ""

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr ""

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr ""

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr ""

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr ""

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr ""

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr "Sens objècte"

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr ""

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr ""

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr ""

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr "Degun"

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr "Pas cap"

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr ""

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr "Pas trobat"

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr "Pas connectat."

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr ""

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr ""

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr "Nòtas"

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr ""

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr ""

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr ""

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr ""

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr ""

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr ""

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr ""

#: etc/initialdata:41
msgid "Notify Owner"
msgstr ""

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr ""

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr ""

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr ""

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr ""

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr ""

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr ""

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr ""

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr ""

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr ""

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr "Nov"

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr "O"

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr "Objècte"

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr ""

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr ""

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr ""

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr "Objècte suprimit"

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr "Oct"

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr "Desconnectat"

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr ""

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr ""

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr ""

#: etc/initialdata:143
msgid "On Comment"
msgstr ""

#: etc/initialdata:115
msgid "On Correspond"
msgstr ""

#: etc/initialdata:104
msgid "On Create"
msgstr ""

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr ""

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr ""

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr ""

#: etc/initialdata:172
msgid "On Queue Change"
msgstr ""

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr ""

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr ""

#: etc/initialdata:178
msgid "On Resolve"
msgstr ""

#: etc/initialdata:149
msgid "On Status Change"
msgstr ""

#: etc/initialdata:109
msgid "On Transaction"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr ""

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr ""

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr ""

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr ""

#: etc/initialdata:95
msgid "Open Tickets"
msgstr ""

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr "Dobrir l'URL"

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr ""

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr "Оpcion"

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr "Opcions"

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr "Oracle"

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr "Triar per"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr "Organizacion"

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr ""

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr ""

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr ""

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr ""

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr "Vista d'ensemble"

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr ""

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr "Proprietari"

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr ""

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr ""

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr ""

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr "Pagina"

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr "Pagina 1 sus 1"

#: share/html/dhandler:48
msgid "Page not found"
msgstr "Impossible de trobar la pagina"

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr "Messatgièr de pòcha"

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr "Parents"

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr "Senhal"

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr ""

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr ""

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr ""

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr ""

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr ""

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr ""

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr "Los senhals correspondon pas."

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr "Personas"

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr ""

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr "Perl"

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr "Permission Refusada"

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr "Permission refusada"

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr "Numèros de telefòn"

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr "PostgreSQL"

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr "Preferéncias"

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr ""

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr ""

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr ""

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr ""

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr ""

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr ""

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr ""

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr "Precedent"

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr "Precedent"

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr ""

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr ""

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr "Estampar lo messatge"

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr "Prioritat"

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr ""

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr "Confidencialitat"

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr "Confidencialitat :"

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr "Clau privada"

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr ""

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr ""

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr ""

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr ""

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr "Requèstas"

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr "Requèsta"

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr "Metre en fila d'espèra"

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr ""

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr ""

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr ""

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr ""

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr ""

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr ""

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr ""

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr ""

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr ""

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr ""

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr ""

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr ""

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr ""

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr ""

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr "Recèrca rapida"

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr "RFC2616"

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr "RFC2822"

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr "RSS"

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr ""

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr ""

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr ""

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr ""

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr ""

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr ""

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr ""

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr ""

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr ""

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr "Nom vertadièr"

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr ""

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr "Destinatari"

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr ""

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr "Destinataris"

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr ""

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr ""

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr "Actualizar"

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr ""

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr ""

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr "Regetar"

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr ""

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr "Rapèl"

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr ""

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr ""

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr ""

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr "Rapèls"

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr ""

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr ""

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr "Suprimir lo marcapaginas"

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr ""

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr ""

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr ""

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr "Respondre"

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr ""

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr ""

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr ""

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr ""

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr ""

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr ""

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr "Reïnicializar"

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr "Restablir per defaut"

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr ""

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr "Resòlvre"

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr ""

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr "Resolgut"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr "Respondre"

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr "Resultats"

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr ""

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr ""

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr "Restablir"

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr ""

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr ""

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr ""

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr ""

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr "Linhas"

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr ""

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr ""

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr "SQLite"

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr "Dis"

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr "Dissabte"

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr "Enregistrar"

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr "Enregistrar las modificacions"

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr ""

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr ""

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr "Recèrcas enregistradas"

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr ""

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr ""

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr ""

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr ""

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr ""

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr "Recercar"

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr ""

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr "Preferéncias de recèrca"

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr ""

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr ""

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr ""

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr "Opcions de recèrca"

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr "Resultats de la recèrca"

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr ""

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr "Seguretat :"

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr "Vejatz tanben :"

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr ""

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr ""

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr ""

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr ""

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr "Seleccionar"

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr ""

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr ""

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr ""

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr ""

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr ""

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr ""

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr ""

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr ""

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr ""

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr ""

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr ""

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr ""

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr ""

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr ""

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr ""

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr ""

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr ""

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr ""

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr ""

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr ""

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr ""

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr ""

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr ""

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr ""

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr "Paramètres"

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr "Afichar"

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr "Afichar las colomnas"

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr ""

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr ""

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr ""

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr ""

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr ""

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr ""

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr "Barra laterala"

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr "Signar"

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr "Signatura"

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr ""

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr "Recèrca simpla"

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr ""

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr "Nom del site"

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr "Talha"

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr ""

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr "Pichon"

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr "Triada"

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr "Triada"

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr "Font"

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr "Fuèlh de calcul"

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr ""

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr ""

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr "Aviat"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr "Comença"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr "Estat"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr "Estat"

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr ""

#: etc/initialdata:307
msgid "Status Change"
msgstr "Cambiament d'estat"

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr ""

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr ""

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr "Estil"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr "Subjècte"

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr "Mandar"

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr "S'inscriure"

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr "Inscripcion"

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr ""

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr "Resumit"

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr "Dim"

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr "Dimenge"

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr ""

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr "Suspendut"

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr "Configuracion del sistèma"

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr "Error del sistèma"

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr ""

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr "Aisinas pel sistèma"

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr "Error del sistèma"

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr ""

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr ""

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr "Prene"

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr ""

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr ""

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr ""

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr "Modèl"

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr ""

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr "Lo modèl es void"

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr ""

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr "Modèl analisat"

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr "Error d'analisi del modèl"

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr "Error de format de modèl : %1"

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr "Modèls"

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr "Modèls per la fila %1"

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr "Tèxte"

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr ""

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr ""

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr "Valor identica"

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr "Fila desconeguda"

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr ""

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr ""

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr ""

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr ""

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr ""

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr ""

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr ""

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr ""

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr ""

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr ""

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr ""

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr ""

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr ""

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr ""

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr ""

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr ""

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr ""

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr ""

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr ""

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr ""

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr ""

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr ""

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr ""

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr ""

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr ""

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr ""

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr ""

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr ""

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr ""

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr ""

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr ""

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr ""

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr ""

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr ""

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr ""

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr ""

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr ""

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr ""

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr ""

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr ""

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr ""

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr ""

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr ""

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr ""

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr ""

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr ""

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr ""

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr ""

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr ""

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr ""

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr ""

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr ""

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr ""

#: etc/initialdata:249
msgid "Transaction"
msgstr ""

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr ""

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr ""

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr ""

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr ""

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr ""

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr ""

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr ""

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr ""

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr ""

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr ""

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr ""

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr ""

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr ""

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr ""

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr ""

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr "Sens limit"

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr ""

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr ""

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr ""

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr ""

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr "Mesa a jorn"

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr ""

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr ""

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr ""

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr ""

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr ""

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr ""

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr ""

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr ""

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr "Mes a jorn"

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr "Mandar"

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr ""

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr ""

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr ""

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr ""

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr ""

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr ""

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr ""

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr "Utilizacion :"

#: NOT FOUND IN SOURCE
msgid "Usage: "
msgstr "Utilizacion : "

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr ""

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr ""

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr ""

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr ""

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr "Utilizaire"

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr "Definit per l'utilizaire"

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr ""

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr ""

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr ""

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr ""

#: lib/RT/User.pm:262
msgid "User created"
msgstr ""

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr ""

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr ""

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr ""

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr ""

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr ""

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr "Utilizaires"

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr ""

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr ""

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr "Validacion"

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr "Valor"

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr "Valors"

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr "Variabla"

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr "Version"

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr ""

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr ""

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr ""

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr ""

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr ""

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr "Susvelhança"

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr ""

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr "Mèc"

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr "Dimècres"

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr "Jorn de la setmana"

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr "Cada setmana"

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr ""

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr ""

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr ""

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr ""

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr ""

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr ""

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr ""

#: etc/initialdata:110
msgid "When anything happens"
msgstr ""

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr ""

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr ""

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr ""

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr ""

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr ""

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr ""

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr ""

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr ""

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr ""

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr ""

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr "Trabalh"

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr "Telefòn professional"

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr ""

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr "Òc"

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr ""

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr ""

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr ""

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr ""

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr ""

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr ""

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr ""

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr ""

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr ""

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr ""

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr ""

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr ""

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr ""

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr "[pas cap]"

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr "actiu"

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "aprèp"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "bar"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "abans"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "còs"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "tampat"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "cada jorn"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "jorns"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "escafat"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "telecargar"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr "durada"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "egal a"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "cada"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "complet"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "superior a"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "grop"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr ""

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "oras"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr "inactiu"

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr "indèx"

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "es"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "es pas"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "mai pichon que"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginal"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "correspondéncias"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minutas"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "cada mes"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr "meses"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "pas jamai"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "novèl"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "non"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "pas cap de nom"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "pas cap"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "es pas egal a"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "pas res"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "lo"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "una ora"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "dobrir"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr ""

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "rejetat"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "resolgut"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr ""

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "seg"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr ""

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr "estat"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "resumit"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr ""

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr ""

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr ""

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr ""

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "ultima"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "illimitat"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "utilizaire"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "nom d'utilizaire"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "cada setmana"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "setmanas"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr ""

#: lib/RT/Date.pm:362
msgid "years"
msgstr "annadas"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "òc"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/ar.po0000664000175000017500000100750512262650742013744 0ustar  chmrrchmrr# Arabic translation for rt
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: rt\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
"POT-Creation-Date: 2013-01-24 23:12+0000\n"
"PO-Revision-Date: 2013-01-27 01:15+0000\n"
"Last-Translator: uwe \n"
"Language-Team: Arabic \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-14 16:28+0000\n"
"X-Generator: Launchpad (build 16532)\n"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %3 %2"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%6%5%4%3%2%1"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 أضيفت"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "منذ %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 تغيرت إلى 3%"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "تم حذف 1% 2%"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "تم حذف %2 %1"

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "تم حفظ1% 2%"

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "ثم تحديث %1 %2"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 مع القالب 3%"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) بواسطة %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (لم تتغير)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (من اللوحة 2%)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr ""

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - معامل لتمريره إلى %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - أخرج تحديثات الحالة إلى STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - حدد ما إذا كنت تريد استخدام  'أول' أو  'آخر' أو 'كلّ' العمليات"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - حدد الاسم أو الرقم الفريد للقالب/القوالب المراد استخدامها"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - حدّد وحدة الفعل المراد استخدامها"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - حدّد قائمة بالفاصلات لأنواع العمليات  المراد استخدامها"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - حدّد وحدة الشرط المراد استخدامها"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - حدّد وحدة البحث المراد استخدامها"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 حقوق الطبع 1996-%3 %4"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "عُيّنت %1 كقيمة %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr ""

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr ""

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr "%1 لديه هذذه الصلاحية مسبقا"

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr ""

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 بواسطة %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 تغير من 2% إلى 3%"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 تغيرت من '%2' إلى '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 الرسم البياني بواسطة 2%"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "نسخ 1%"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 التكوين الأساسي"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr ""

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "تم إنشاء %1"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "تم حذف %1"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 تمعطلة"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 غير موجود"

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "تم تمكين 1%"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 طلبات لي ذات الأولوية الأعلى"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 أداة تؤدي عملا على الطلبات بأداة جدولة مهام خارجية مثل cron"

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "لم يعد %1 %2 لهذا الطلب"

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr ""

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr "%1 ليس %2 لهذا الطلب"

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 دقيقة"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 المقالات الاكتر تحديثا مؤخرا"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "المقالات %1 الأحدث"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "آخر %1 طلبات بلا مالك"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "تحديث %1 %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 ثم التحديث: لم يتغير شيء"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "تم تحديث %1"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr ""

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "كلمة المرور الحالية ل%1"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "لوحة القراءات %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr ""

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: لم يتم تحديد مرفقات"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr ""

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1طلب جديد في%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1 ميغا"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1 ث"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr ""

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr ""

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr "'%1' ليس إسما صالحا."

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "الأدوار"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'مجموعات المستخدمين'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'المستخدمين'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(إختر الصناديق للمسح)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(إختر الصناديق للمسح)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(أدخل مُعرِّفات الطلبات أو مساراتها مفصولة بمسافات)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(في حال ترك فارغا، ستحال قيمته للقيمة المبدئية %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(لا حقول مخصصة)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(لا أعضاء)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(لا سكربتات)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(لا قوالب)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(لا شيء)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(يرسل نسخة من هذا التحديث إلى قائمة بفاصلات من عناوين البريد الإدارية. هؤلاء الناس سوف يتلقون كذلك التحديثات المستقبلية.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(يرسل نسخة من هذا التحديث إلى قائمة بفاصلات من عناوين البريد. هؤلاء الناس سوف يتلقون كذلك التحديثات المستقبلية.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(استخدم هذه الحقول عندما تختار 'يعرّفها المستخدم' لشرط أو فِعل)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(لن يُرسل له بريد)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(أيّها)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(لا ملخص)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(بلا اسم)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(لا يوجد pubkey)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(لا يوجد قيمة)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(لا يوجد قيم)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(طلب واحدة فقط)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(في إنتظار التصديق)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(ضروري)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(بدون عنوان)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(غير موثوق!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr ""

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: etc/initialdata:215
msgid "A blank template"
msgstr "قالب فارغ"

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr "لا يوجد كلمة سر بعد, لذا لا يستطيع المستخدون تسجيل الدخول بعد."

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr ""

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr ""

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "و"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "عن نفسى"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "تحكم بالوصول"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "إجراء"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr ""

#: bin/rt-crontool:228
msgid "Action committed."
msgstr ""

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr ""

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr ""

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr "أفعال"

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr "الطلبات الفاعلة"

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr "الطلبات الفاعلة ل %1"

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr "أضف %1"

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "أضف نسخة إدارية"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr "أضف إشارة مرجعية"

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "أضف نسخة"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr "إضافة أعمدة"

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr "أضف معيار"

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "أضف المزيد من الملفات"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "أضف مقدم طلب"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr "أضف قيمة"

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr "أضِف سكربت يتم تطبيقه على كل الطوابير"

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "أضف تعليقا أو ردا على الطلبات المختارة"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr "أضف مجموعة"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr "أضف هنا"

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr "أضف أعضاء"

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "أضف مراقبين جدد"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr "أضف صلاحيات ل %1"

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr "أضف هذه المصطلحات"

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr "أضف هذه المصطلحات و إبدأ البحث"

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr "أضف مستخدما"

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr "أضف قيم"

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr ""

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr "تمت إضافة %1 إلى أعضاء %2 لهذا الطابور"

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr "عنوان"

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr "العنوان 2"

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "عنوان 1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "عنوان 2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr "نسخة إدارية"

#: etc/initialdata:292
msgid "Admin Comment"
msgstr "تعليق إداري"

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr ""

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr "أدِر الطوابير"

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr "الإعدادات الإدارية/العامّة"

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr ""

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr ""

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr ""

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr ""

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr ""

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr ""

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr ""

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr ""

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "متقدم"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr "بحث متقدّم"

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr "بعد الولوج ستنقلون إلى غايتكم الأصلية:"

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr ""

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr "كل الطلبات من هذه الفئة ينبغي أن تُدرج في قائمة في صفحة ردود الطلب"

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr ""

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr "كل لوحات القراءات"

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr "كل الطوابير"

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr "كل الطلبات"

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr "كل الطوابير المطابقة معايير البحث"

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr "كل الطلبات"

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr "كل الموضوعات"

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr ""

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr ""

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr ""

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr "معمّى بالفعل"

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "أو/و"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr "سنويا"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr ""

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr "طُبّق"

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "تنطبق على"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "تطبيق"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr "طبّق عموما"

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "طبق التغييرات"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "إعتماد"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr "إعتماد #%1: %2"

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr ""

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr ""

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr ""

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr ""

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr "تمّ رفض الموافقة"

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr ""

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr "إبريل"

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr "امتأكد أنك تود حذف هذا المقالة؟"

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr "تم حذف المقالة #%1"

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr "المقالة #%1: %2"

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr "المقالة %1"

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr "تم إنشاء مقال %1"

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr "إدارة المقالات"

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr "تم حذف المقال"

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr "تعذر ايجاد المقال"

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr "المقالات"

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr "المقالات في %1"

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr "المقالات التي تطابق %1"

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr "المقالات بلا موضوعات"

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr "تصاعدي"

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "تصاعدي"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr "عيِّن و أزِل حقولا مطوعة للطوابير"

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "إلحاق"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr "إلحاق ملف"

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "إلحاق ملف"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr "مرفق"

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr ""

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "تم إنشاء الملحق"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "إسم الملف الملحق"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "ملحقات"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr "تعمية الملحقات معطل"

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr ""

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr ""

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr "تيمة الألوان المقترحة آليا ليست متاحة لصورتك. قد يكون ذلك لأنك رفعت صورة من صيغة لا تدعمها تنصيبة GD المستخدمة. الصيغ المدعومة هي: %1. بوسعك إعادة تجميع libgd و GD.pm لتضمين دعم لصيغ أخرى للصور."

#: etc/initialdata:218
msgid "Autoreply"
msgstr "رد آلي"

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr "قم بإرسال رد للطالب تلقائيا"

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr "متوفر"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr "إلى الخلف"

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "البيانات الأساسية"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr ""

#: etc/initialdata:214
msgid "Blank"
msgstr "فارغ"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr "الجسم"

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "عريض"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr ""

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr ""

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr "طلبات مُعلّمة"

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr "طلبات مُعلّمة"

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr ""

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr ""

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr "تحديث جماعي"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr ""

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr ""

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr ""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr "لا يمكن تعديل مستخدمي النظام"

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr ""

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr ""

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr "لا يمكن ربط الطلب إلى ذاته"

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr "تعذر حفظ %1"

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "تعذر حفظ هذا البحث"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr ""

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr ""

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr "لا يمكن إنشاء طلب في طابور مُعطَّل"

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr "التصنيفات مبنية على"

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr "فئة"

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "نسخة إلى"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr ""

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr "تغيير"

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "غير كلمة السر"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr ""

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr ""

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "حدد الكلّ"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr "إفحص الإتصال مع قاعدة البيانات"

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr "إفحص بيانات الولوج لقاعدة البيانات"

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr "إختر الصندوق للمسح"

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr "إختر الصندوق لسحب الصلاحية"

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "أولاد"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr "إختر مشغل قاعدة البيانات"

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr "إختر من المواضيع ل%1"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "المدينة"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr ""

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr ""

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr ""

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr ""

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr ""

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr "أفرغ"

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "تفريغ الكل"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr "انقر \"أنهِ التنصيب\" لإتمام هذا المرشد."

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr ""

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "أغلقت"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr "الطلبات المغلقة"

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr ""

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr ""

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "تعليق"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr "عنوان التعليقات"

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr "عنوان التعليقات"

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr "علّق على الطلب"

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr ""

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "ملاحظات"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "ملاحظات (لا تُرسَل إلى الطالب)"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr ""

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "تم إضافة التعليقات"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr ""

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "شرط"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr "الشرط '%1' غير موجود"

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr ""

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr ""

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr ""

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr ""

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "التعديلات"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr "تضبيطات الطابور %1"

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr "نجح الإتصال"

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "المحتويات"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr "المحتوى عنوان إنترنت غير صالح"

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr "المحتوى نطاق عناوين إنترنت غير صالح"

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr "Content-Type"

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr ""

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr "عنوان الردود"

#: etc/initialdata:283
msgid "Correspondence"
msgstr "الردود"

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr "تم إضافة رد"

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr ""

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr "تعذر تغيير المالك: %1"

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr ""

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr "تعذّر إنشاء المجموعة"

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr ""

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr ""

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr "تعذَّر إنشاء الطلب. الطابور غير مُعدّ"

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr "تعذر إنشاء المستخدم"

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr ""

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr "تعذر إيجاد أو إنشاء ذاك المستخدم"

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr ""

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr "تعذّر تحميل المجموعة"

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr ""

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr "تعذر وضع بيانات المستخدم"

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr "تعذر إلحاق الملفات"

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr "تعذّرت إضافة عضو إلى المجموعة"

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr ""

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr "تعذّر حذف لوحة القراءات %1: %2"

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr "تعذر إيجاد الصف"

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr ""

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr "تعذر إيجاد تلك القيمة"

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr ""

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr ""

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr "تعذر تحميل نسخة من الطلب #%1."

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr "تعذّر تحميل لوحة القراءات %1: %2"

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr "تعذّر تحميل المجموعة #%1"

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr "تعذّر تحميل المجموعة %1"

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr "تعذر تحميل الوصلة"

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr ""

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr "تعذر تحميل أو إنشاء المستخدم: %1"

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr "تعذَّر تحميل الطابور"

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr "تعذَّر تحميل الطابور #%1"

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr "تعذَّر تحميل الطابور %1"

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr "تعذَّر تحميل الطابور '%1'"

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr ""

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr "تعذر تحميل الطلب '%1'"

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr "تعذر تحميل العضوية في الموضوع أثناء محاولة مسحه"

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr ""

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr "تعذر تحميل المستخدم"

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr "تعذر تحميل المستخدم #%1"

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr ""

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr "تعذر تحميل المستخدم '%1'"

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr ""

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr ""

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr ""

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr "تعذّر تفسير '%1' كرابط."

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr "تعذّر تفسير '%1' كمسار."

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr "تعذّر تفسير المصدر '%1' كمسار."

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr "تعذّر تفسير الوجهة '%1' كمسار."

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr "تعذر إرسال البريد الإلكتروني"

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr ""

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "البلد"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "إنشاء"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "أنشئ طلبات"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr ""

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr "أنشئ مقالة جديدة"

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr "أنشئ مقالة جديدة في"

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr "أنشئ لوحة قراءات جديدة"

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "أنشئ مجموعة جديدة"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr ""

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "إنشاء طلب جديد"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "أنشئ مستخدم جديد"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr "أنشئ طابورا"

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr ""

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr "إنشاء طلب جديد"

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr "أنشئ مقالة"

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr "أنشئ مقالة من الفئة"

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr "أنشئ مقالة في هذه الفئة"

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr "أنشء لوحة قراءات لمجموعة مستخدمين"

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr "أنشئ طلبات جديدة بناء على قالب هذا السكربت"

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr "أنشئ لوحة قراءات شخصية"

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr "أنشئ لوحة قراءات للنظام"

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr "إنشاء طلب جديد"

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr "أنشئ طلبات"

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr "أنشئ طلبات بلا اتصال"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr "أنشئ أو عدّل أو احذف طابورا"

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr ""

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr ""

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr ""

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr ""

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr ""

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr "أنشئها"

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr ""

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr ""

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr "التعمية"

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "الوصلات الحالية"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr ""

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr ""

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr "الأعضاء الحاليون"

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr "الصلاحيات الحالية"

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr "البحث الجاري"

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr "المراقبون الحاليون"

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr ""

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr ""

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr "حقول مطوّعة للطابور %1"

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr ""

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr ""

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr ""

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr ""

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr ""

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr ""

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr ""

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr ""

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr ""

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr ""

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr ""

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr ""

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr ""

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr "خصّص"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr ""

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr ""

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr ""

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr ""

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr ""

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr "يومياً"

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr ""

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr "لوحة القراءات"

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr "تعّر إنشاء لوحة القراءات: %1"

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr "تعذّر تحديث لوحة القراءات: %1"

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr "تم تحديث لوحة القراءات"

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr "لوحة القراءات"

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr "مستضيف قاعدة البيانات"

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr "اسم قاعدة البيانات"

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr ""

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr ""

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr "نوع قاعدة البيانات"

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr ""

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr "نَسَق التاريخ"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "التواريخ"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr "Dec"

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr "فك التعمية"

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr ""

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr "الطابور المبدئي"

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr ""

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr ""

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr ""

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr ""

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr "الطابور المبدئي"

#: etc/initialdata:250
msgid "Default transaction template"
msgstr ""

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr "المبدئي: %1"

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr ""

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr ""

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "احذف"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr "احذف القالب"

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr "احذف المقالة #%1"

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr "احذف المقالات من هذه الفئة"

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr "فشل الحذف: %1"

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr "احذف لوحات قراءات مجموعة مستخدمين"

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr "احذف لوحات قراءات شخصية"

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr "احذف لوحات قراءات النظام"

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr "احذف طلبات"

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr ""

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr ""

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr ""

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr "تم حذف %1"

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr "إحذف الطابور"

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr ""

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr ""

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr "منع"

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "معتمد عليها لـ"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr ""

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr "تمت إضافة هذا كمُتَطلَّب للطلب %1"

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr "تم حذف هذا كمُتَطلَّب للطلب %1"

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr "تم إضافة %1 كمُتطلَّب لهذا الطلب"

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr "تم حذف %1 كمُتطلَّب لهذا الطلب"

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "تعتمد على"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr ""

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr "تنازلي"

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "تنازلي"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr "إشرح المسألة  بالأسفل"

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "الوصف"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr "التفاصيل"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr "الإتجاه"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr "معطّل"

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr "عرض"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr ""

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr "استعرض المقالة %1"

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr "اعرض الأعمدة"

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr "إفعل أي شيء وكل شيء"

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr "اسم النطاق"

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr ""

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr ""

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr "لا تحدث هذه الصفحة"

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "تنزيل"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr "نزّل ملفا خاما"

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "في غضون"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr "خطأ: %1"

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr "تحديث سهل لطلباتك"

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr "مطالعة سهلة لتنبيهاتك"

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr "تحرير"

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr ""

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr "حرّر الحقول المُطوّعة لكل المجموعات"

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr "حرّر الحقول المطوّعة لكل الطوابير"

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr "حرّر الحقول المطوّعة للمقالات من كل الفئات"

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr "حرّر الحقول المطوّعة للطلبات في كل الطوابير"

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr ""

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr ""

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr "تحرير البحث"

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr "تحرير عضوية مجموعة %1"

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr ""

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "البريد الإلكتروني"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr ""

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr ""

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr ""

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr ""

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr "مفعّل"

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr ""

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr "مُفعّل (إخلاء تأشير هذا الخيار يُعطّل هذه المجموعة)"

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr "مُفعَّل (إخلاء هذه التأشيرة يُعطِّل الطابور)"

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr ""

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr "الطوابير المُفعَّلة"

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr "الطوابير المفعلة المطابقة معايير البحث"

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr "عمِّ"

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr "عمِّ مبدئيا"

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr "عمِّ\\ظهِّر"

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr "أدخل مقالات أو طلبات أو مسارات أخرى ذات علاقة بهذه المقالة."

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr ""

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr ""

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr ""

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr "أدخل طوابيرا أو مسارات روابط إلى طوابير. افصل ما بين المدخلات بمسافات."

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr "أدخل طلبات أو مسارات لربط الطلبات بها، فاصلا ما بينها بمسافات."

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr ""

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr "عطل"

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr ""

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr ""

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr "خطأ: لوحة قراءات مفقودة"

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr "الطلبات المُصعَّدة"

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr "الوقت المتوقع"

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr ""

#: bin/rt-crontool:356
msgid "Example:"
msgstr ""

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr ""

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr "استخرج مقالة"

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr "استخرج مقالة حديثة من الطلب #%1"

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr "استخرج مقالة من الطلب #%1 إلى الفئة %2"

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr "تعذّر إيجاد شبه المجموعة 'المُخَولون'"

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr ""

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr "فشل تحميل %1 %2"

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr "فشل تحميل %1 %2: %3"

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr ""

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr ""

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr ""

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr "اسم الملف"

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr ""

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr ""

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr ""

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr ""

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr ""

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr ""

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr "الأولوية النهائية"

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr "أقصى أولوية"

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr "أوجد المجموعات التي"

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr ""

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr "ابحث في الطلبات"

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr ""

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr ""

#: share/html/Elements/Tabs:651
msgid "First"
msgstr ""

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr ""

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr "تنسيق"

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr "أمام"

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr ""

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr ""

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr "تمرير الرسائل خارج النظام"

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr ""

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr ""

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr ""

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr ""

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr "الدورية"

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr "جمع"

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr "الجمعة"

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr ""

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr "GD مُعطّل أو غير مُنَصَّب. يمكنك رفع صورة إلى أنك لن تحصل على اقتراحات آلية لتيمة الألوان."

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr "عام"

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr ""

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr ""

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr ""

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr ""

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr ""

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr ""

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr "انطلق"

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr "اذهب إلى المجموعة"

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "انطلق"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr ""

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr ""

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr "مجموعة"

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr "صلاحيات المجموعات"

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr "المجموعة تضم بالفعل المستخدم: %1"

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr "تعذّر إنشاء المجموعة: %1"

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr "تم إنشاء المجموعة"

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr "تم تعطيل المجموعة"

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr "تم تفعيل المجموعة"

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr "هذا العضو لا ينتمي إلى المجموعة"

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr "اسم المجموعة '%1' مستخدم بالفعل"

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr "المجموعة غير موجودة"

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "المجموعات"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr "لا يمكن لمجموعة أن تكون عضوة في أعضائها"

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr "المجموعات المطابقة معايير البحث"

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr "المجموعات التي ينتمي إليها المستخدم (أشر أمامها لإخراجه منها)"

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr "المجموعات التي لا ينتمي إليها"

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr "المجموعات التي ينتمي إليها المستخدم"

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr ""

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "التأريخ"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr "تأريخ المقالة #%1"

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr "تأريخ مجموعة %1"

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr "تأريخ الطابور %1"

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr ""

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "الرئيسية"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr "السّاعة"

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr "ساعات"

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr ""

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr ""

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr "مُعرِّف"

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "الهوية"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr "إن رُفِضَت الموافقة فارفض الأصل و ألغِ الموافقات المنتَظرة"

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr "إن لم يحدد طالب أنشئ الطلب بهذا الطلب"

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr "إن لم يُحدَّد طابور فإن الطلبات ستوضع في هذا الطابور مبدئيا"

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr ""

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr ""

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr "إن كان نوع نظام إدارة قواعد البيانات المفضّل لك غير مدرج في القائمة التالية فإن هذا يعني أن RT لم يجد مشغّل قواعد بيانات منصّب لها محليّا. قد يكون بوسعك تدارك ذلك باستخدم %1 لتنزيل و تنصيب DBD::MySQL أو DBD::Oracle أو DBD::Pg."

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr ""

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr "الطلبات غير المُفعّلة"

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr "ضمّن المقالة:"

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr ""

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr ""

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr "ضمّن في القائمة المجموعات المُعطّلة"

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr "ضمّن في القائمة الطوابير المُعطّة."

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr "رسائل مفردة"

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr "خبّر المستخدم أن لوحة القراءات المشترِك فيها مفقودة"

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr "اﻷولوية المبدئية"

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr ""

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr ""

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr ""

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr "خطأ داخلي"

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr "خطأ داخلي: %1"

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr ""

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr "نوع مجموعة غير صحيح"

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr "طابور غير صحيح. تعذّر تطبيق الفئة %1"

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr "كائن خاطيء"

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr ""

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr "طابور غير صحيح"

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr "نوعُ مجموعةِ أدوارِ طابورٍ غيرُ صحيحٍ"

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr ""

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr ""

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr ""

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr ""

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr "من المحبّذ أن تنشئ مستخدم يونكس غبر ذي صلاحيات و بعضوية المجموعات المطلوبة و النفاذية إلى RT لكي تشغِّل هذه الأداة."

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr ""

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr "مائل"

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr "يناير"

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr "الانضمام إلى المجموعات أو تركها"

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr "يوليو"

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr "الكل"

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr "يونيو"

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr ""

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr "اللغة"

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr "كبير"

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr "الأخيرة"

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr ""

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr ""

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr "اخر تحديث"

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr "آخر تحديث ل"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr "آخر تحديث"

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr "آخر تحديث ل"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr "على اليسار"

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr ""

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr "الطول بالأحرف؛ ضع 0 لإظهار كل الرسائل في المتن بغض النظر عن طولها"

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr ""

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr ""

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr ""

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr ""

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr "رابط"

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr ""

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr ""

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr ""

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr ""

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr ""

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr ""

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr ""

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr ""

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr ""

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr "روابط"

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr "قائمة"

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr "حمّل"

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr ""

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr ""

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr ""

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr ""

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr "يجري التحميل..."

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr "المحلية"

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr "الموقع"

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr "والج"

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr "والج باسم %1"

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr "تم الخروج"

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr "لِج"

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr "تسجيل الخروج"

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr "البريد الإلكتروني"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr ""

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr ""

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr ""

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr ""

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr ""

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr ""

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr ""

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr "اجعلها ذات أولوية"

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr "أنشئ طابورا"

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr ""

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr ""

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr "إدارة المجموعات و عضويتها"

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr "أدِر الخصائص و التضبيطات التي تنطبق على كل الطوابير"

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr "أدر الطوابير و الخصائص الخاصة بالطوابير"

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr ""

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr "لم تتمّ مقابلة دورات حياة الطوابير. اتّصل بمدير النظام."

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr ""

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr "تمَ تعليم كل الرسائل بأنها طولعت"

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr "مايو"

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr "أنا"

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr "عضو"

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr ""

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr ""

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr ""

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr ""

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr ""

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr ""

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr ""

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr ""

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr ""

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr ""

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr ""

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr ""

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr ""

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr ""

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr ""

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr "رسالة"

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr ""

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr "تم تسجيل الرسالة"

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr ""

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr "دقائق"

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr ""

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr ""

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr "عدّل"

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr "عدّل الأعضاء"

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr "عدّل حقلا مُطوعا للطابور %1"

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr "عدّل سكربت للطابور %1"

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr "عدّل سكربت ينطبق على كل الطوابير %1"

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr "حرّر و أنشئ حقولا مُطوّعة للمقالات"

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr "عدّل المقالة #%1"

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr ""

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr ""

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr ""

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr "عدّل الموضوعات العمومية للمقالات"

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr ""

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr "تعديل صلاحيات المجموعات العمومية"

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr ""

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr ""

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr "تعديل لوحات قراءات مجموعات المستخدمين"

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr "تعديل توصيف المجموعات و حذف المجموعات"

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr "عدّل صلاحيات المجموعات على الطابور %1"

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr ""

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr "عدذل أو احضف المقالات من هذه الفئة"

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr "عدّل الأشخاص المرتبطين بالطلب #%1"

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr "عدّل لوحات قراءات شخصية"

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr "عدّل مراقبي الطابور"

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr "عدّل سكربتات الطابور %1"

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr "عدّل السكربتات التي تنطبق على كل الطوابير"

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr "عدّل لوحات قراءات النظام"

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr ""

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr "عدّل القالب %1 للطابور %2"

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr "عدّل القوالب التي تنطبق على كل الطوابير"

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr ""

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr "عدّل محتوى لوحة القراءات %1"

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr "عدّل لوحة القراءات %1"

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr ""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr "عدّل الاشتراك في لوحة القراءات %1"

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr ""

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr ""

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr "عدّل الطلبات"

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr ""

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr ""

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr "عدّل موضوعات المقالات من هذه الفئة"

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr ""

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr "عدّل صلاحيات المستخدمين على الطابور %1"

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr ""

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr ""

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr ""

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr ""

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr ""

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr "حرّك إلى الأسفل"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr "حرّك إلى الأعلى"

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr ""

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr ""

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr "طلباتي ال%1"

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr "موافقاتي"

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr "يومي"

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr "تنبيهاتي"

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr "موافقاتي"

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr "لوحات قراءاتي"

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr "تنبيهاتي"

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr "بحوثي المحفوظة"

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr "الاسم"

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr ""

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr "أبدًا"

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr "جديدة"

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr "مقالة جديدة"

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr "لوحة قراءات جديدة"

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr ""

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr ""

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr "بحث جديد"

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr "رسائل حديثة"

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr "كلمة سر جديدة"

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr ""

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr "تنبيه جديد:"

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr ""

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr "طلب جديد"

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr ""

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr "الطلبات الحديثة في هذا الطابور لا يمكن أن تكون حالتها '%1'."

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr ""

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr ""

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr "اللاحق"

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr ""

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr "الاسم المستعار"

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr "لا"

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr "لا مقالات تطابق %1"

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr ""

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr "لا طابور مُعرَّف"

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr ""

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr ""

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr ""

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr ""

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr ""

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr ""

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr ""

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr ""

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr ""

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr ""

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr "ليست لك صلاحية إنشاء طوابير"

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr "ليست لك صلاحية إنشاء طلبات في الطابور '%1'"

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr ""

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr "ليست لك صلاحية تعديل المقالة"

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr ""

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr "ليست لك صلاحية مطالعة المقالة"

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr ""

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr ""

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr ""

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr ""

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr "لا طوابير تطابق معايير البحث."

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr ""

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr ""

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr ""

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr ""

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr ""

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr ""

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr "لا أحد"

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr "لا شيء"

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr ""

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr "غير موجود"

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr "غير والج"

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr ""

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr ""

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr "ملاحظات"

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr ""

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr ""

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr ""

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr ""

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr ""

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr ""

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr ""

#: etc/initialdata:41
msgid "Notify Owner"
msgstr "نبّه المالك"

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr "نبّه المالك كتعليق"

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr "نبّه المالكين بطلباتهم المرفوضة"

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr ""

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr ""

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr ""

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr ""

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr ""

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr ""

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr "نبّهني إلى الرسائل غير المقروءة"

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr ""

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr "أو"

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr ""

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr ""

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr ""

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr ""

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr ""

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr "Oct"

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr ""

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr ""

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr ""

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr "عند الإغلاق"

#: etc/initialdata:143
msgid "On Comment"
msgstr "علق على الطلب"

#: etc/initialdata:115
msgid "On Correspond"
msgstr "عند التراسل"

#: etc/initialdata:104
msgid "On Create"
msgstr "عند الإنشاء"

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr "عند التمرير"

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr "عند تغيّر المالك"

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr "عند تغيّر الأولوية"

#: etc/initialdata:172
msgid "On Queue Change"
msgstr "عند تغيّر حالة الطابور"

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr "عند الرفض"

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr ""

#: etc/initialdata:178
msgid "On Resolve"
msgstr "عند الحلّ"

#: etc/initialdata:149
msgid "On Status Change"
msgstr ""

#: etc/initialdata:109
msgid "On Transaction"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr ""

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr ""

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr ""

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr ""

#: etc/initialdata:95
msgid "Open Tickets"
msgstr ""

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr "فتح الرابط"

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr ""

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr ""

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr "الخيارات"

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr ""

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr "حسب"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr "المنظّمة"

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr ""

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr ""

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr ""

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr "بمرور الوقت فإن الأولولية تنحو إلى"

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr "تملّك الطلب"

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr ""

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr "المالك"

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr ""

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr ""

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr ""

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr "صفحة"

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr "عدد الصفوف في الصفحة"

#: share/html/dhandler:48
msgid "Page not found"
msgstr ""

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr "بيجر"

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr "الطلب الأعلى"

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr "كلمة السر"

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr "تذكير بكلمة السر"

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr "لقد تم تغيير كلمة المرور"

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr ""

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr ""

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr "كلمة السر: %1"

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr ""

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr "كلمتا المرور لا تتطابقان."

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr "الأشخاص"

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr "الأشخاص ذوي العلاقة بالطابور %1"

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr "رُفض التّصريح"

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr "رُفض التّصريح"

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr ""

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr ""

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr "التفضيلات"

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr ""

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr ""

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr ""

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr ""

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr ""

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr ""

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr ""

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr ""

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr "السابق"

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr ""

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr "اطبع الرسالة المجمّعة الناتجة إلى STDOUT بدلا من إرسالها بالبريد، و لا تعلّمها بأنها تم إرسالها"

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr ""

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr "الأولوية"

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr "الأولوية تبدأ عند"

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr ""

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr ""

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr ""

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr ""

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr "تجري المعالجة بلا عمليات لذا فإن بعض الشروط و الأفعال قد تفشل. فكّر في استخدام معامل ‭--transactions‬"

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr ""

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr "إستعلام"

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr "طابور"

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr "الطابور %1 لم يُعثر عليه"

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr "اسم الطابور"

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr "الطابور موجود بالفعل"

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr "تعذّر إنشاء الطابور"

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr "تعذَّر تحميل الطابور."

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr "تمّ إنشاء الطابور"

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr "تمّ تعطيل الطابور"

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr "تمّ تفعيل الطابور"

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr "مُعرِّف الطابور"

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr "لم يُعثَر على الطابور"

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr "مفتاح الطابور"

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr ""

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr "الطوابير"

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr "الطوابير التي أديرها"

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr "الطوابير التي أشارك في إدارتها (AdminCC)"

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr ""

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr "بحث سريع"

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr "إنشاء سريع لطلب"

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr ""

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr ""

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr ""

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr ""

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr ""

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr "لمحة سريعة"

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr "لمحة سريعة للمستخدم %1"

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr ""

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr ""

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr ""

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr ""

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr ""

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr "الاسم الحقيقي"

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr ""

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr ""

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr ""

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr ""

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr ""

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr "مشار إليها في"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr "إشارة إلى"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr ""

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr "تحديث"

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr "حدّث الصفحة الأولى كل 10 دقائق."

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr "حدّث الصفحة الأولى كل 120 دقيقة."

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr "حدّث الصفحة الأولى كل دقيقتين."

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr "حدّث الصفحة الأولى كل 20 دقيقة."

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr "حدّث الصفحة الأولى كل 5 دقائق."

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr "حدّث الصفحة الأولى كل 60 دقيقة."

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr ""

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr "قم بتحديث الصفحة كل %1 دقيقة"

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr "ارفض"

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr "تذكَّر الطابور المبدئي"

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr "تنبيه"

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr "تمت إضافة التنبيه '%1'"

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr "تم التنبيه '%1'"

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr "تمت إعادة فتح التنبيه '%1'"

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr "تنبيهات"

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr "تنبيهات الطلب #%1"

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr ""

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr "إزالة الإشارة المرجعية"

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr ""

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr ""

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr "تمت إزالة %1 من أعضاء %2 لهذا الطابور"

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr ""

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr ""

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr ""

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr ""

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr "الطالب"

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr "الطالب"

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr ""

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr ""

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr "صفّر"

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr "إعادة الضبط للإفتراض"

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr ""

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr "حلّها"

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr "حلّ الطلب #%1 (%2)"

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr "حُلّت"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr ""

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr ""

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr ""

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr ""

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr "استرجاع"

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr ""

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr ""

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr ""

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr ""

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr "سطور"

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr ""

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr "عدد الصفوف في الصفحة"

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr ""

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr ""

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr "حفظ"

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr "حفظ التّغييرات"

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr ""

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr ""

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr ""

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr ""

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr ""

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr ""

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr ""

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr ""

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr "السكربتات التي تنطبق على كل الطوابير"

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr "بحث"

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr "ابحث في المقالات"

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr "أوجد المقالات المطابقة"

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr ""

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr "ابحث في المقالات"

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr "بحث عن بطاقات"

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr "خيارات البحث"

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr ""

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr ""

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr "أمن"

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr "راجع كذلك:"

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr "أظهر المقالات من هذه الفئة"

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr "أظهر التعديلات على المقالات من هذه الفئة"

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr ""

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr ""

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr "إنتقاء"

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr "اختر الحقول المُطوّعة للمقالات من كل الفئات"

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr ""

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr ""

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr ""

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr "اختر طابورا"

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr "اختر طابورا للطلب الجديد"

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr "اختر مستخدما"

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr "اختر مقالة من %1"

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr "اختر مقالة لتضمينها"

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr ""

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr "اختر حقولا مُطوّعة لكل الطوابير"

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr "اختر حقولا مطوّعة للطلبات في كل الطوابير"

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr "اختر حقولا مُطوّعة لكل العمليات على الطلبات في كل الطوابير"

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr ""

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr ""

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr "اختر الطوابير التي تُعرض في صفحة \"لمحة سريعة\""

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr "اختر موضوعات لهذه المقالة"

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr "اختر الطوابير"

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr ""

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr ""

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr ""

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr ""

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr ""

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr ""

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr ""

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr ""

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr ""

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr ""

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr ""

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr ""

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr "الإعدادات"

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr "عرض"

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr "أعرض الأعمدة"

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr ""

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr ""

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr "أظهر الطلبات العشرة الأَولى التي للطالب"

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr ""

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr ""

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr ""

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr ""

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr ""

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr ""

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr ""

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr "بحث بسيط"

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr ""

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr "الحجم"

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr ""

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr "صغير"

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr "رتب"

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr "ترتيب"

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr ""

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr "جدول ممتد"

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr ""

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr "علّقها"

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr "تبدأ"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr "الولاية"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr "الحالة"

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr "الحالة '%1' ليست صحيحة للطلبات في هذا الطابور"

#: etc/initialdata:307
msgid "Status Change"
msgstr ""

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr "تم تحديث حالة الطلب من %1 إلى %2"

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr "اسرقها"

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr "اسرق الطلب"

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr ""

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr ""

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr "الشكل"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr "الموضوع"

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr ""

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr ""

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr "اشترك في لوحة القراءات %1"

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr "اشترك في لوحات قراءات"

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr "تم إشراكك في لوحة القراءات %1"

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr ""

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr ""

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr ""

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr "الأحد"

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr ""

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr ""

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr ""

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr "مبدئي النظام"

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr ""

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr ""

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr "أدوات النّظام"

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr ""

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr ""

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr ""

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr ""

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr ""

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr ""

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr ""

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr "قالب"

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr ""

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr ""

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr ""

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr ""

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr ""

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr ""

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr ""

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr "قوالب الطابور %1"

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr ""

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr ""

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr ""

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr "هذا الطابور غير موجود"

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr "لهذا الطلب متطلبات غير محلولة"

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr ""

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr ""

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr ""

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr ""

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr ""

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr ""

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr "ذلك المستخدم لا يمكنه تملك طلبات في هذا الطابور"

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr ""

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr "البيانات الأساسية"

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr ""

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr "فئة هذه المقالة المعرفة %1 لم تُطبّق على هذا الطابور"

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr ""

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr "الأمر التالي سيجد كل الطلبات الفاعلة في الطابور العمومي و يعيّن لها درجة الأولوية 99 إن كان أجلها قد فات:"

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr "الاستعلامات التالية تم حذفها و كل منها سيزال من لوحة القراءات فور تحديثها"

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr "الاستعلامات التالية ربما كانت غير ظاهرة لكل المستخدمين الذين بوسعهم مطالعة لوحة القراءات هذه."

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr ""

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr ""

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr ""

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr "النظام ليس بوسعه توقيع الرسائل الصادرة. عادة ما يكون ذلك بسبب خطا في عبارة سرّ مفتاح التوقيع أو لأن عميل GPG غير عامل. نبّه مدير النظام فورا. العناوين المشكلة هي:"

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr "السِمة"

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr "توجد رسائل غير مقروءة في هذه الطلب"

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr "لا مقابلة للحالات ما بين هذه الطوابير. اتّصل بمدير النظام."

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr ""

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr ""

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr ""

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr "الطلبات %1 ذات الحالة %2 الأَولى لهذا المستخدم"

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr ""

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr ""

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr "طلب"

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr "تحديث كل حقول الطلب #%1: %2"

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr "الطلب #%1: %2"

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr "الطلب %1"

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr "تمّ إنشاء الطلب %1 في الطابور '%2'"

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr "الطلب %1 %2"

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr ""

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr ""

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr "تمّ حل الطلب"

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr ""

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr "عمليات الطلبات"

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr ""

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr ""

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr ""

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr ""

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr ""

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr ""

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr ""

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr "الطلبات"

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr "الطلبات %1 %2"

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr ""

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr "الوقت المتوقع"

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr "الوقت المتبقي"

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr "وقت العمل"

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr ""

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr "المنطقة الزمنية"

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr "عنوان"

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr "إلى"

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr ""

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr "أدوات"

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr ""

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr ""

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr ""

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr "الإجمالي"

#: etc/initialdata:249
msgid "Transaction"
msgstr ""

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr ""

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr ""

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr ""

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr ""

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr "العمليات صمداء"

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr ""

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr ""

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr ""

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr "النوع"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr "النوع a: قبل أرقام المقالات و t: قبل أرقام الطلبات."

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr "تعذّر تحميل المقالة"

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr "تعذّر الاشتراك في لوحة القراءات %1: ليسن لك الصلاحية"

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr ""

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr ""

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr ""

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr ""

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr ""

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr "غير محدود"

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr "لوحة قراءات بلا اسم"

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr ""

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr ""

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr "طوابير غير مختارة"

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr ""

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr ""

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr "تحديث"

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr ""

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr ""

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr ""

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr "تحديث تنسيق و بحث"

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr ""

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr ""

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr ""

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr ""

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr "حُدّث"

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr ""

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr ""

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr ""

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr ""

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr ""

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr ""

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr ""

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr ""

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr ""

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr ""

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr "استخدم المبدئي (%1)"

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr ""

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr "اختر من القائمة المنسدلة أي تحديثات الطلبات تريد استخراجها في مقالة جديدة."

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr "مستخدِم"

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr "لم يمكن إيجاد المستخدِم '%1'."

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr "يُعرِّفها المستخدم"

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr "شروط و أفعال يُعرِّفها المستخدم"

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr ""

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr ""

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr ""

#: lib/RT/User.pm:262
msgid "User created"
msgstr ""

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr ""

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr ""

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr ""

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr "أسم المستخدم"

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr ""

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr "المستخدمون"

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr ""

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr ""

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr "طالع رسائل البريد الصادرة و متلقيها"

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr "استعرض لوحات قراءات مجموعات المستخدمين"

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr "استعرض لوحات القراءات الشخصية"

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr "استعرض الطابور"

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr "استعرض لوحات قراءات النظام"

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr ""

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr ""

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr "تحذير: ليس لديك عنوان بريد مسجّل لذا فإنك لن تتلقى لوحة القراءات هذه إلى أن تُسجّل عنوانا."

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr ""

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr ""

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr ""

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr ""

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr ""

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr ""

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr "مرحبا بك في RT!"

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr ""

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr ""

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr "عندما يرسل النظام رسالة بريد فإنه يضع ترويستي From و Reply-To لكي يُمكن للمستخدمين المشاركة في النقاش بالرد على الرسالة التي وردتهم. يستخدم النظام عنوانين مختلفين لكل من الردود و التعليقات يمكن ضبط كلٍّ منهما لكل طابور. تلك العناوين ينبغي أن تُضبط في برمجية rt-mailgate"

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr ""

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr ""

#: etc/initialdata:110
msgid "When anything happens"
msgstr ""

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr "كلّما رُفضت طلب"

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr "كلّما تمّ حل طلب"

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr ""

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr "كلّما تغيّرت درجة أولوية الطلب"

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr "كلّما تغيّر طابور طلب"

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr ""

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr ""

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr ""

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr ""

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr ""

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr "وقت العمل"

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr "نعم"

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr "يمكنك تحرير لوحة القراءات هذه و اشتراكك فيها في نظام متابعة الطلبات RT"

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr "لقد طلبتَ تعمية الرسائل الصادرة إلا أنه توجد مشكلة في المفاتيح العلنية لمتلقين. ينبغي إما إصلاح مشكلات المفاتيح، أو تعطيل الإرسال إلى المتلقين ذوي المشكلات في مفاتيحهم، أو تعطيل التعمية."

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr "لقد طلبتَ تعمية الرسائل الصادرة إلا أنه توجد مشكلة في المفتاح العلنية لمتلق. ينبغي إما إصلاح مشكلة المفتاح، أو تعطيل الإرسال إلى ذلك المتلقي، أو تعطيل التعمية."

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr "يمكنك القفز إلى أوّل رسالة غير مقروءة أو القفز إلى أوّل رسالة غير مقروءة و تعليم كل الرسائل بأنها طولعت."

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr ""

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr ""

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr "تم خروجك من RT."

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr "لقد فعّلت دعم GnuPG لكنك لم تضبط عنوان التعليق لهذا الطابور."

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr "لقد فعّلت دعم GnuPG لكنك لم تضبط عنوان المراسلات لهذا الطابور."

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr "ليست لك صلاحية إنشاء طلبات في هذا الطابور."

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr "يمكنك إدخال روابط إلى مقالات على النحو \"a:###\" معوضا ### برقم المقالة."

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr "ليس لك إنشاء طلبات في هذا الطابور."

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr "عليك ادخال كلمة المرور الإدارية"

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr "ينبغي ضبط عنوان بريد للتعليقات لهذا الطابور لأجل تعيين مفتاح GnuPG سرّي."

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr "ينبغي ضبط عنوان بريد للمراسلات لهذا الطابور لأجل تعيين مفتاح GnuPG سرّي."

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr ""

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr "كلمة مرورك لم تعد"

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr "Zip"

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr "[لاشيء]"

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr "نشط"

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "بعد"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr "و قبل"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "شريط"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr ""

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "المتن"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "من أسفل إلى أعلى"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr "أشّر هذا الخيار لتطبيق هذه الفئة على كل الطوابير"

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr "أشِّر هذا الخيار لإزالة تطبيق هذه الفئة على كل الطوابير و ليكون بإمكانك اختيار طوابير بعينها."

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "اغلِقَت"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "يوميًا"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "أيّام"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "محذوفة"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "تنزيل"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "يساوي"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "خطأ: لايوجد ما يُحذف"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "خطأ:لايوجد شيء للأزاحة"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "كل"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "تنفيذ الملحق بنجاح"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "ممتلئ"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "أكبر من"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "مجموعة"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "مجموعة '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "ساعات"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "تعريف"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr "في الصنف %1"

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr "غير مفعل"

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr "يحتوي %1"

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr "فهرس"

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "يكون"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "ليست"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "المفتاح معطل"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "المفتاح منتهية صلاحيته"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "المفتاح ملغي"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "من اليسار إلى اليمين"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "أقل من"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "مطابق"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "أقصى عمق"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "دقائق"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "دقائق"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "شهريًا"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr "أشهر"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "أبدًا"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "جديدة"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "لا"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "بلا اسم"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "لا شيء"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "لا يساوي"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "ﻻ شئ"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "تمت ازالة العناصر بنجاح"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "على"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "خلال يوم"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "واحد"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "مفتوحة"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "فتح/إغلاق"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "أخرى..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "الملحق يرجع قائمة فارغة"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "الطابور %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "مرفوضة"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "حُلّت"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "من اليمين إلى اليسار"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "ثانية"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "'طالع قائمة العناصر بالاسفل"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "إعدادات الموقع"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "مُعلّقة"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "ملخص"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "ملخص الصفوف"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "نظام %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "مجموعة النظام '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "المكون الداعي لم يحدد سببا"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "الطلب #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "من أعلى إلى أسفل"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "غير محدود"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr "تحديث التذكرة"

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr "حدّث موافقة"

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr "تحديث المقال"

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "المستخدم"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "المستخدم %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "اسم المستخدم"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "أسبوعيًا"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "أسبوعياً (في 1%) عند 2%"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "أسابيع"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "ما المنفذ الذي يستمع عليه خادم الوِب لديك، مثال المنفذ 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "مع التفاصيل"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "سنوات"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "نعم"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/ca.po0000664000175000017500000111512712262650742013725 0ustar  chmrrchmrr# Catalan translation for rt
# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: rt\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
"POT-Creation-Date: 2013-01-24 23:12+0000\n"
"PO-Revision-Date: 2013-03-14 14:40+0000\n"
"Last-Translator: Ton \n"
"Language-Team: Catalan \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-14 16:28+0000\n"
"X-Generator: Launchpad (build 16532)\n"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "Afegit %1 %2"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "Fa %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 ha canviat a %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "S'ha esborrat %1 %2"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "S'ha esborrat %1 %2."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 guardat."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "S'ha actualitzat %1 %2 ."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 amb la plantilla %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) por %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Sense canvis)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (del panell %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ajusta la opció LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Un argument per a passar a %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Els missatges d'estat actualitzen STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Especifica si vols utilitzar les transaccions 'first' (primera), 'last' (darrera) o 'all' (totes)"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Especifiqueu el nom o l'identificador de la(es) plantilla(es) que voleu emprar"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Especifiqueu el mòdul que voleu emprar"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Especifiqueu la llista separada per comes de tipus de transaccions que voleu emprar"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Especifiqueu la condició del mòdul que voleu utilitzar"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Especifiqueu el mòdul de cerca que voleu emprar"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 afegit com a valor per %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 ja existeix i té les taules de RT al seu lloc, però no contenen les metadades de RT. Mitjançant 'Inicialitzat la base de dades', més endavant pots afegir les metadades a la base de dades preexistent. Si això és acceptable, clica a 'Personalització Bàsica' a sota per seguir personalitzant RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 ja existeix, però no conté les taules ni les metadades de RT. Més endavant, al pas 'Inicialitzar la base de dades', pots afegir les metadades en aquesta base de dades existent. Si això és acceptable, clica a 'Personalitzacions bàsiques' a sota per seguir personalitzant RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr "%1 ja té aquest permís"

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 apareix com a objecte local, però no s'ha pogut trobar dins la base de dades"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "Senbla que %1 ja està completament inicialitzat. No hem de crear les taules ni les metadades de RT,  però pots continuar personalitzant RT clicant a 'Personalització Bàsica' a sota."

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 per %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 canviat de %2 a %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "S'ha modificat %1 de '%2' a '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "Gràfica de %1 per %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 copiar"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "Configuració principal de %1"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "No s'ha pogut posar %1 com a %2."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 creat"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 eliminat"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "S'ha inhabilitat %1"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 no existeix"

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "S'ha habilitat %1"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 tickets amb més prioritat que poseeixo"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 és una eina per efectuar actuacions a tiquets de servei des d'una eina externa de planificació, com cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 és una utilitat, feta per ser executada des de cron, que reparteix les notificacions diferides de RT en forma de resum per usuari"

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr "%1 ja és %2 per a aquesta cua"

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr "%1 ja és %2 per a aquest tiquet"

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 és una adreça en la que RT reb el correu. Afegir-la com a '%2' podria crear un bucle de correu"

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 ja no és %2 per a aquest tiquet."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 ja no és un valor per al camp personalitzat %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr "%1 no és %2 per a aquesta cua"

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr "%1 no és un %2 per a aquest tiquet"

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr "%1 no és un cicle de vida vàlid"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 articles actualitzats més recentment"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 articles més nous"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "Els %1 tiquets més recents no assignats"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objectes"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 configuració del lloc"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 actualitzar: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%2 actualitzar: Res ha canviat"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 actualitzat"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1's %2 objectes"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 objectes"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "Claus GnuPG de %1"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "Contrasenya actual de %1"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Taulers de %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "cerques guardades de %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: no s'ha especificat cap adjunt"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Nou tiquet a%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr "%quant(%1,article)"

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hora,hores)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' no és un valor vàlid per a l'estat"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr "'%1' no és un nom vàlid"

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' no és un identificador de classe vàlid"

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "Rols"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "Sistema"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'Grups d'Usuaris'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'Usuaris'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Marca la casella per completar)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "Marcar la casella per eliminar"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Marca les caselles a eliminar)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Introdueix els IDs o les URL dels tiquets, separats per espais)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Si es deixa en blanc, per defecte serà %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Sense camps personalitzats)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Cap membre)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Cap scrip)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Cap plantilla)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Cap)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Envia una còpia d'aquesta actualització a una llista delimitada per comes d'adreces de correu administratives. Aquestes persones rebran futures actualitzacions.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Envia una còpia exacta d'aquesta actualització a una llista d'adreces separada per comes. Aquestes persones rebràn futures actualitzacions.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Utilitza aquests camps quan escullis 'Definit per l'Usuari' per a una condició o acció)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(No s'enviarà correu)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(qualsevol)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(sense Sumari)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(sense nom)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(no hi ha clau pública!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(sense valor)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(sense valors)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(només un tiquet)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(pendent %quant(%1,altre tiquet,altres tiquets))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(pendent d'aprovació)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(necessari)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(confiança: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(sense títol)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(sense confiança!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id és un argument obsolet (deprecated) i no es pot utilitzar amb --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "l'argument de --transaction només pot ser 'first', 'last' o 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr "<% $field->{'name'} %>"

#: etc/initialdata:215
msgid "A blank template"
msgstr "Una plantilla en blanc"

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr "No s'ha introduït contrasenya, així que l'usuari no podrà iniciar sessió"

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr "ACE no trobat"

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr "Les ACEs només es poden crear o esborrar."

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "I"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "Quant a mi"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "Control d'accés"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "Acció"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr "No es troba l'acció '%1"

#: bin/rt-crontool:228
msgid "Action committed."
msgstr "Acció realitzada."

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr "L'acció és un argument obligatori"

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr "Acció preparada..."

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr "Accions"

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr "Tiquets actius"

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr "Tiquets actius per a %1"

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr "Afegeix %1"

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "Afegeix AdminCc"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr "Afegeix una adreça d'interès"

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "Afegeix Cc"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr "Afegeix columnes"

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr "Afegeix criteris"

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "Afegeix més fitxers"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "Afegeix sol·licitant"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr "Afegeix valor"

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr "Afegeix un 'script' que s'aplicarà a totes les cues"

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "Afegeix comentaris o respostes als tiquets sel·leccionats"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr "Afegeix grup"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr "Afegeix aquí"

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr "Afegeix membres"

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "Afegeix nous observadors"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr "Afegeix permisos per aquest %1"

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr "Afegeix aquests termes"

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr "Afegeix aquests termes i Cerca"

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr "Afegeix usuari"

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr "Afegeix valors"

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr "Afegeix, modifica o esborra valors de camp personalitzats per als objectes"

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr "S'ha afegit %1 com a %2 per a aquest tiquet"

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr "S'ha afegit %1 com a membre de %2 per a aquesta cua"

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr "Adreça"

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr "Adreça 2"

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "Adreça 1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "Adreça 2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr "Admin Cc"

#: etc/initialdata:292
msgid "Admin Comment"
msgstr "Administra comentaris"

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr "Administra correspondència"

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr "Administra cues"

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr "Configuració global"

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr "AdminCCGroup"

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr "AdminCc"

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr "AdminCcs"

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr "AdminClass"

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr "AdminCustomField"

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr "AdminCustomFieldValues"

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr "AdminGroup"

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr "AdminGroupMembership"

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr "AdminQueue"

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr "AdminTopics"

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr "AdminUsers"

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr "Cc Administrativa"

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr "Contrasenya administrativa"

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "Avançat"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr "Cerca avançada"

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr "Un cop iniciïs sessió, seràs enviat al destí original"

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr "Aggregator"

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr "Totes les aprovacions estan acceptades"

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr "Tots els articles d'aquesta classe haurien de llistar-se en un menú desplegable de la pàgina de resposta al tiquet"

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr "Totes les classes"

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr "Tots els taulers"

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr "Totes les cues"

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr "Totes els tiquets"

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr "Tots els feeds de iCal inclouen un token secret que els identifica i autoritza. Si la URL d'un dels teus feeds iCal s'ha vist compromesa, pots obtenir un nou token, inhabilitant tots els feeds d'iCal existents a sota."

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr "Totes les cues coincidents amb el criteri de cerca"

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr "Tots els tiquets"

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr "Tots els temes"

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr "Permet la creació de cerques desades"

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr "Permet carregar cerques desades"

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr "Permet escriure codi Perl a les plantilles, scripts, etc"

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr "Ja xifrat"

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "I/O"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr "Anualment"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr "Qualsevol camp"

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr "Qualsevol paraula que no sigui reconeguda per RT es busca a l'assumpte dels tiquets."

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr "Aplicat"

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "S'aplica a"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr "S'aplica a tots els objectes"

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "Aplica"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr "Aplica globalment"

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "Aplica els canvis"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "Aprovació"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr "Aprovació #%1: %2"

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr "Aprovació #%1: No s'han desat les notes degut a un error del sistema"

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr "Aprovació #%1: Notes desades"

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr "Aprovació passada"

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr "Aprovació preparada pel propietari"

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr "Aprovació rebutjada"

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr "Aprova"

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr "Abr"

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr "Estas segur que vols esborrar aquest article?"

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr "Article #%1 esborrat"

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr "Article #%1: %2"

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr "Article %1"

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr "Article %1 creat"

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr "Administració d'articles"

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr "Article esborrat"

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr "No s'ha trobat l'article"

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr "Articles"

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr "Articles a %1"

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr "Articles coincidents amb %1"

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr "Articles sense temes"

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr "Asc"

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "Ascendent"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr "Assignar i esborrar camps personalitzats de la cua"

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr "AssignarCampsPersonalitzats"

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "Adjunta"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr "Adjunta un fitxer"

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "Fitxer adjunt"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr "Fitxer adjunt"

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr "No s'ha pogut carregar el fitxer adjunt '%1'"

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "Fitxer adjunt creat"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "Nom del fitxer adjunt"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "Fitxers adjunts"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr "El xifrat de fitxers adjunts està deshabilitat"

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr "Atribut esborrat"

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr "Ago"

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr "Els colors del tema suggerits automàticament no estan disponibles per a la teva imatge. Això pot ser segut a que has pujat un tipus d'imatge que no suporta la versió instal·lada de GD. Els tipus suportats son: %1. Pots recompilar libgd i GD.pm per a afegir suport per a altres tipus d'imatges."

#: etc/initialdata:218
msgid "Autoreply"
msgstr "Resposta automàtica"

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr "Resposta automàtica als sol·licitants"

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr "Disponible"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr "Enrere"

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr "Privacitat errònia per a l'atribut %1"

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "Opcions bàsiques"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr "CCO"

#: etc/initialdata:214
msgid "Blank"
msgstr "En blanc"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr "Cos del missatge"

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "Negreta"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr "Marcador"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr "Enllaç afegible als marcadors per a aquesta cerca"

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr "Tiquets a marcadors"

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr "Tiquets a marcadors"

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr "Navega per tema"

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr "Buscar les consultes SQL fetes en aquest procés"

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr "Actualizació en bloc"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr "CCGroup"

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr "Camp Pers."

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr "Es pot buscar als camps personalitzats utilitzant una sintaxis similar a l'anterior amb %1."

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr "No es pot carregar la cerca desada \"%1\""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr "No es poden modificar els usuaris de sistema"

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr "No es pot afegir un valor de camp personalitzat sense nom"

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr "No es pot trobar una cerca desada per treballar-hi"

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr "No es pot enllaçar un tiquet amb ell mateix"

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr "No es pot desar %1"

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "No es pot desar aquesta cerca"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr "No es pot especificar l'origen i el destí al mateix temps"

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr "No es pot afegir un enllaç a un número pla"

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr "No es poden crear tiquets en una cua deshabilitada"

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr "Les categories es basen en"

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr "Categoria"

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "CC"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr "CCs"

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr "Canvia"

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr "Canvia el tiquet d'aprovació a estat obert"

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "Canvia la contrasenya"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr "Gràfic"

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr "Propietats del gràfic"

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "Marca-ho tot"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr "Verifica la connectivitat a la base de datos"

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr "Verifica les credencials de la base de dades"

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr "Marca la casella per a esborrar"

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr "Marca la casella per a revocar el permís"

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "Fills"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr "Escull un motor de base de dades"

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr "Escull d'entre els temes per a %1"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "Població"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr "Classe"

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr "Nom de la classe"

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr "No s'ha pogut crear la classe: %1"

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr "ID de la classe"

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr "Aquesta classe ja s'aplica globalment"

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr "Aquesta classe ja s'aplica a %1"

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr "Classes"

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr "Neteja"

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "Neteja-ho tot"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr "Fes click a \"Finalitzar instal·lació\" a sota per a completar l'assistent"

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr "Fes click  a \"Inicialitzar la base de dades\" per a crear la base de dades de RT i inserir les metadades originals. Això pot trigar uns instants"

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "Tancat"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr "Tiquets tancats"

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr "Combobox: Escull o introdueix múltiples valors"

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr "Combobox: Escull o introdueix un valor"

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr "Combobox: Escull o introdueix fins a %1 valors"

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "Comenta"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr "Adreça del comentari"

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr "Adreça del comentari"

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr "Comenta als tiquets"

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr "CommentOnTicket"

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "Comentaris"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "Comentaris (no s'envien als sol·licitants)"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr "Comentaris sobre aquest usuari"

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "Comentaris afegits"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr "Acció realitzada"

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "Condició"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr "No s'ha trobat la condició '%1'"

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr "La condició és un argument obligatori"

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr "La condició es correspon amb..."

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr "Condició, Acció i Plantilla"

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr "El fitxer de configuració %1 està bloquejat"

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "Configuració"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr "Configuració per la cua %1"

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr "Connectat correctament"

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "Contingut"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr "El contingut no és una adreça IP vàlida"

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr "El contingut no és un rang d'adreces IP vàlid"

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr "Tipus de contingut"

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr "ContentType"

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr "Adreça de correspondència"

#: etc/initialdata:283
msgid "Correspondence"
msgstr "Correspondència"

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr "Correspondència afegida"

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr "No s'ha pogut afegir el valor del camp personalitzat: %1"

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr "No s'ha pogut canviar el propietari: %1"

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr "No s'ha pogut crear el camp personalitzat"

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr "No s'ha pogut crear el grup"

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr "No s'ha pogut crear la cerca: %1"

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr "No s'ha pogut crear la plantilla: %1"

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr "No s'ha pogut crear el tiquet. No s'ha definit la cua"

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr "No s'ha pogut crear l'usuari"

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr "No s'ha pogut esborrar la cerca %1: %2"

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr "No s'ha pogut trobar o crear aquest usuari"

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr "No s'ha pogut trobar aquest principal"

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr "No s'ha pogut carregar l'atribut %1"

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr "No s'ha pogut carregar la classe %1"

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr "No s'ha pogut carregar el camp personalitzat %1"

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr "No s'ha pogut carregar el grup"

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr "No s'ha pogut carregar l'objecte per a %1"

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr "No s'ha pogut fer %2 a %1 per a aquesta cua"

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr "No s'ha pogut fer %2 a %1 per a aquest tiquet"

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr "No s'ha pogut esborrar %1 com a %2 d'aquesta cua"

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr "No s'ha pogut esborrar %1 com a %2 d'aquest tiquet"

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr "No s'ha pogut establir l'informació de l'usuari"

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr "No s'ha pogut afegir el fitxer adjunt"

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr "No s'ha pogut afegir el membre al grup"

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr "No s'ha pogut aplicar el camp personalitzat a un objecte que ja és global"

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr "No s'ha pogut compilar el bloc %1 de codi '%2': %3"

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr "No s'ha pogut compilar el bloc de codi de la plantilla '%1': %2"

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr "No s'ha pogut crear la transacció: %1"

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr "No s'ha pogut crear el registre: %1"

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr "No s'ha pogut esborrar el tauler %1: %2"

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr "No s'ha trobat la fila"

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr "No s'ha trobat una transacció adequada, ometent"

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr "No s'ha trobat aquest principal"

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr "No s'ha trobat aquest valor"

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr "No s'ha pogut carregar la classe %1"

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr "No s'ha pogut carregar el camp personalitzat #%1"

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr "No s'ha pogut carregar el camp personalitzat #%1"

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr "No s'ha pogut carregar el camp personalitzat %1"

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr "No s'ha pogut carregar la còpia del tiquet #%1."

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr "No s'ha pogut carregar el tauler %1: %2"

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr "No s'ha pogut carregar el grup #%1"

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr "No s'ha pogut carregar el grup %1"

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr "No s'ha pogut carregar l'enllaç"

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr "No s'ha pogut carregar l'objecte %1"

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr "No s'ha pogut carregar o crear l'usuari: %1"

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr "No s'ha pogut carregar la cua"

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr "No s'ha pogut carregar la cua #%1"

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr "No s'ha pogut carregar la cua %1"

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr "No s'ha pogut carregar la cua '%1'"

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr "No s'ha pogut carregar el script #%1"

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr "No s'ha pogut carregar la plantilla #%1"

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr "No s'ha pogut carregar el principal especificat"

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr "No s'ha pogut carregar el tiquet '%1'"

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr "No s'ha pogut carregar la pertinència del tema mentre s'intentava esborrar"

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr "No s'ha pogut carregar la transacció #%1"

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr "No s'ha pogut carregar l'usuari"

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr "No s'ha pogut carregar l'usuari #%1"

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr "No s'ha pogut carregar l'usuari #%1 ni l'usuari '%2'"

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr "No s'ha pogut carregar l'usuari '%1'"

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr "No s'ha pogut parsejar l'adreça des de la cadena de text '%1'"

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr "No s'ha pogut substituir el contingut amb l'informació desxifrada: %1"

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr "No s'ha pogut substituir el contingut amb l'informació xifrada: %1"

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr "No s'ha pogut resoldre '%1' com a un enllaç."

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr "No s'ha pogut resoldre '%1' en una URI."

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr "No s'ha pogut resoldre '%1' en una URI."

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr "No s'ha pogut resoldre el destí '%1' en una URI."

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr "No s'ha pogut enviar el correu electrònic"

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr "No s'ha pogut establir %1 observador: %2"

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr "No s'ha pogut establir la clau privada"

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr "No s'ha pogut desassignar la clau privada"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "País"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "Crea"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "Crea tiquets"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr "Crea una classe"

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr "Crea un camp personalitzat"

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr "Crea un camp personalitzat per a la cua %1"

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr "Crea un nou article"

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr "Crea un nou article a"

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr "Crea un nou tauler"

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "Crea un grup nou"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr "Crea una nova plantilla per a la cua %1"

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "Crea un nou tiquet"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "Crea un nou usuari"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr "Crea una cua"

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr "Crea un script per a la cua %1"

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr "Crea una plantilla"

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr "Crea un tiquet"

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr "Crea un article"

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr "Crea un article a la classe..."

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr "Crea un article en aquesta classe"

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr "Crea taulers de grup"

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr "Crea nous tiquets basats en la plantilla d'aquest script"

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr "Crea taulers personalitzats"

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr "Crea taulers de sistema"

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr "Crea tiquet"

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr "Crea tiquets"

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr "Crea tiquets fora de línia"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr "Crea, modifica i esborra entrades a les Llistes de control d'accés"

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr "Crea, modifica i esborra camps personalitzats"

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr "Crea, modifica i esborra valors de camps personalitzats"

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr "Crea, modifica i esborra cues"

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr "Crea, modifica i esborra cerques desades"

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr "Crea, modifica i esborra usuaris"

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr "CreateArticle"

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr "CreateDashboard"

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr "CreateGroupDashboard"

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr "CreateOwnDashboard"

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr "CreateSavedSearch"

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr "CreateTicket"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "Creat"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr "Creat per"

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr "Camp personalitzat %1 creat"

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr "Creat per"

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr "Cerca %1 creada"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr "CreatedBy"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr "CreatedRelative"

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr "Autor"

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr "Criptografia"

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "Enllaços actuals"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr "Scripts actuals"

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr "Cerca actual"

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr "Membres actuals"

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr "Permisos actuals"

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr "Cerca actual"

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr "Observadors actuals"

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr "Camps personalitzats"

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr "Camps personalitzats per a %1"

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr "Camps personalitzats per a la cua %1"

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr "Codi de neteja de l'acció personalitzada"

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr "Codi de preparació de l'acció personalitzada"

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr "Condició personalitzada"

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr "El camp personalitzat #%1 no s'aplica a aquest objecte"

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr "Camp personalitzat %1 %2 %3"

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr "El camp personalitzat %1 no s'aplica a aquest objecte"

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr "El camp personalitzat %1 té un valor."

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr "El camp personalitzat %1 no té cap valor."

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr "No s'ha trobat el camp personalitzat %1"

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr "Camp personalitzat '%1'"

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr "El camp personalitzat ja s'aplica a l'objecte"

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr "No s'ha trobat el valor de camp personalitzat %1 per al camp personalitzat %2"

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr "No s'ha pogut esborrar el valor de camp personalitzat"

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr "No s'ha trobat el valor de camp personalitzat"

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr "S'ha esborrat el valor de camp personalitzat"

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr "CustomField"

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr "CustomFieldValue"

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr "Personalitza"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr "Personalització Bàsica"

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr "Personalitza les adreces de correu electrònic"

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr "Configuració de correu electrònic"

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr "Personalitza l'aparença del RT"

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr "Contrasenya DBA"

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr "Nom d'usuari DBA"

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr "Diàriament"

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr "Resum diari"

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr "Tauler"

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr "No s'ha pogut crear el tauler: %1"

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr "No s'ha pogut actualitzar el tauler: %1"

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr "Tauler actualitzat"

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr "Taulers"

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr "Host de la base de dades"

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr "Nom de la base de dades"

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr "Contrasenya de la base de dades per a RT"

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr "Port de la base de dades"

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr "Tipus de base de dades"

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr "Usuari de la base de dades per a RT"

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr "Format de data"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "Dates"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr "Des"

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr "Desxifra"

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr "Plantilla d'autoresposta per defecte"

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr "Cua per defecte"

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr "Sol·licitant per defecte"

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr "Plantilla de comentari de l'administrador per defecte"

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr "Plantilla de correspondència de l'administrador per defecte"

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr "Plantilla de correspondència per defecte"

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr "Cua per defecte"

#: etc/initialdata:250
msgid "Default transaction template"
msgstr "Plantilla de transacció per defecte"

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr "Per defecte: %1"

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr "Per defecte: %1/%2 ha canviat de %3 a %4"

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr "DefaultFormat"

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "Esborra"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr "Esborra la plantilla"

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr "Esborra l'article #%1"

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr "Esborra els articles d'aquesta classe"

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr "Error a l'esborrar: %1"

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr "Esborra taulers de grup"

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr "L'operació d'esborrat ha estat desactivada per la configuració del cicle de vida"

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr "Esborra taulers personalitzats"

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr "Esborra els scripts seleccionats"

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr "Esborra taulers de sistema"

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr "Esborra els tiquets"

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr "Esborra els valors"

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr "DeleteArticle"

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr "DeleteDashboard"

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr "DeleteGroupDashboard"

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr "DeleteOwnDashboard"

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr "DeleteTicket"

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr "S'ha esborrat %1"

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr "S'han esborrat les consultes"

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr "S'ha esborrat la cerca desada"

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr "S'ha esborrat la cerca %1"

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr "Esborrar aquest objecte trencarà la integritat referencial"

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr "A l'esborrar aquest objecte es violarà l'integritat referencial"

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr "Denega"

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "Depenen de per"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr "DependedOnBy"

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr "Dependència per %1 afegida"

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr "Dependència per %1 esborrada"

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr "Dependència de %1 afegida"

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr "Dependència de %1 esborrada"

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr "DependentOn"

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "Depèn de"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr "DependsOn"

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr "Desc"

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "Descendent"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr "Descriu el problema a sota"

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "Descripció"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr "Informació detallada sobre la teva instal·lació de RT"

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr "Detalls"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr "Direcció"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr "Deshabilitat"

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr "Visualitza"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr "Mostra la llista de control d'accés"

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr "Mostra article %1"

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr "Mostra columnes"

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr "Distribuït sota la %1versió 2 de la GNU GPL%2"

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr "Fes tot el possible"

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr "Nom de domini"

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr "No incloguis http://, només alguna cosa com ara 'localhost' o 'rt.exemple.cat'"

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr "No refresquis la pàgina principal"

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr "No refresquis els resultats de la cerca"

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr "No refresquis aquesta pàgina"

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr "No confiïs mai en aquesta clau"

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "Descarrega"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr "Descarrega fitxer de bolcat (dump)"

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr "Desplegable"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "Venciment"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr "DueRelative"

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr "ERROR: %1"

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr "Actualitza fàcilment els teus tiquets oberts"

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr "Visualitza fàcilment els teus recordatoris"

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr "Edita"

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr "Edita els camps personalitzats"

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr "Edita els camps personalitzats per a %1"

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr "Edita els camps personalitzats per a tots els grups"

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr "Edita els camps personalitzats per a totes les cues"

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr "Edita els camps personalitzats per a tots els usuaris"

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr "Edita els camps personalitzats pels articles de totes les classes"

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr "Edita els camps personalitzats per als tiquets de totes les cues"

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr "Edita els enllaços"

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr "Edita la consulta"

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr "Edita la cerca"

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr "Edita la jerarquia de temes global"

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr "Edita les plantilles de sistema"

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr "Edita la jerarquia de temes per a %1"

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr "EditSavedSearches"

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr "Editant el camp personalitzat %1"

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr "Editant els membres del grup %1"

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr "EffectiveId"

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr "S'han d'especificar la base o el destinatari"

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr "O no tens permís per veure la la cerca desada %1 o bé l'identificador és incorrecte"

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "Correu electrònic"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr "Adreça de correu electrònic"

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr "Resum per correu electrònic"

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr "L'adreça de correu electrònic ja està en ús"

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr "Enviament per correu electrònic"

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr "Plantilla de correu electrònic per a notificacions de resum periòdiques"

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr "EmailAddress"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr "Habilitat"

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr "Habilitat (al desactivar aquesta casella es deshabilitarà aquesta classe)"

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr "Habilitat (al desactivar aquesta casella es deshabilitarà aquest camp personalitzat)"

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr "Habilitat (al desactivar aquesta casella es deshabilitarà aquest grup)"

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr "habilitat (Al desmarcar aquesta casella es deshabilita aquesta cua)"

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr "Classes habilitades"

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr "Cues habilitades"

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr "Cues habilitades que coincideixen amb el criteri de cerca"

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr "Estat habilitat %1"

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr "Xifra"

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr "Xifra per defecte"

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr "Xifra/Desxifra"

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr "Xifra/Desxifra transacció #%1 del tiquet #%2"

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr "Xifrat deshabilitat"

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr "Xifrat habilitat"

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr "Introdueix articles, tiquets o altres URLs relacionades amb aquest article."

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr "Introdueix múltiples rangs d'adreces IP"

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr "Introdueix múltiples adreces IP"

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr "Introdueix múltiples valors"

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr "Introdueix múltiples valors amb autocompletat"

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr "Introdueix objectes o URIs als quals enllaçar els objectes. Separa múltiples estrades amb espais."

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr "Introdueix una adreça IP"

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr "Introdueix un rang d'adreces IP"

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr "Introdueix un valor"

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr "Introdueix un valor amb autocompletat"

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr "Introdueix les cues o URIs a on enllaçar les cues. Separa múltiples entrades amb espais."

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr "Introdueix els tiquets o URIs a on enllaçar els tiquets. Separa múltiples entrades amb espais."

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr "Introdueix el temps en hores per defecte"

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr "Introdueix fins a %1 rangs d'adreces IP"

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr "Introdueix fins a %1 adreces IP"

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr "Introdueix fins a %1 valors"

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr "Introdueix fins a %1 valors amb autocompletat"

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr "Introduint %1, %2, %3 o %4 es limiten els resultats als tiquets amb un dels respectius tipus d'estat. Qualsevol nom d'estat individual limita els resultats només als estats anomenats."

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr "S'ha produït un error"

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr "Error als paràmetres de Tiquet->AfegeixObservador"

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr "Error als paràmetres de Tiquet->EsborraObservador"

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr "Error al propietari de RT: clau pública"

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr "Error: No s'ha trobat el tauler"

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr "Error: Dades GnuPG incorrectes"

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr "Error: No es pot canviar el nivell de privacitat d'una cerca existent"

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr "Error: no s'ha pogut carregar la cerca desada %1: %2"

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr "Error: no hi ha clau privada"

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr "Error: clau pública"

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr "Error: cerca %1 no actualitzada: %2"

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr "Escalar tiquets"

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr "Aproximat"

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr "Tothom"

#: bin/rt-crontool:356
msgid "Example:"
msgstr "Exemple:"

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr "ExecuteCode"

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr "Venç"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr "ExtendedStatus"

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr "Autenticació externa habilitada"

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr "Informació addicional"

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr "Extreu article"

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr "Extreu etiqueta de l'assumpte"

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr "Extreu un nou article del tiquet #%1"

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr "Extreu un article del tiquet #%1 per a la classe %2"

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr "Extreu etiquetes de l'assumpte de la transacció i afegeix-les a l'assumpte del tiquet."

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr "Error al connectar a la base de dades: %1"

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr "Error al crear %1 atribut"

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr "Error al buscar el pseudogrup d'usuaris 'Privilegiat'"

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr "Error al buscar el pseudogrup d'usuaris 'No Privilegiat'"

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr "Error al carregar %1 %2"

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr "Error al carregar %1 %2: %3"

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr "Error al carregar el mòdul %1. (%2)"

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr "Error al carregar l'objecte per a %1"

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr "Error al carregar la plantilla"

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr "Error al parsejar la plantilla"

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr "Feb"

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr "Feeds"

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr "Camp"

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr "Origen dels valors del camp:"

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr "Nom de fitxer"

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr "Omple els arguments"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr "Omple les caixes amb color utilitzant"

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr "Omple en múltiples àrees de text"

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr "Omple en múltiples àrees de wikitext"

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr "Omple en una àrea de text"

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr "Omple en una àrea de wikitext"

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr "Omple aquest camp amb una URL."

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr "Omple fins a %1 àrees de text"

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr "Omple fins a %1 àrees de wikitext"

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr "Prioritat Final"

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr "FinalPriority"

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr "Troba tots els usuaris pel quals"

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr "Troba grups pels quals"

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr "Troba gent pels quals"

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr "Troba tiquets"

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr "Empremta digital"

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr "Finalitza"

#: share/html/Elements/Tabs:651
msgid "First"
msgstr "Primer"

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr "Per a obtenir la màxima potència en les cerques de RT, si us plau visita la %1interfície de construcció de cerques%2."

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr "Força el canvi"

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr "Format"

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr "Reenvia"

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr "Reenvia el missatge"

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr "Reenvia el missatge i torna"

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr "Reassigna el tiquet"

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr "Reenvia els missatges fora de RT"

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr "Reassigna el tiquet #%1"

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr "Reassigna la transacció #%1"

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr "ForwardMessage"

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr "Tiquet transferit a %1"

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr "Transacció #%1 transferida a %2"

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr "Trobat %quant(%1,tiquet)"

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr "Objete trobat"

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr "Freqüència"

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr "Div"

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr "Divendres"

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr "De"

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr "GD està desactivat o no està instal·lat. Pots carregar una imatge, però no obtindràs suggeriments automàtics de color."

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr "General"

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr "Permisos generals"

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr "Crear plantilla des de fitxer"

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr "Com començar"

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr "Assignat a %1"

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr "Global"

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr "Atributs globals"

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr "Temes globals"

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr "Configuració global de camps personalitzats"

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr "Portlet global %1 desat."

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr "Plantilla global: %1"

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr "GnuPG"

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr "Error de GnuPG. Contacta amb l'administrador"

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr "Integració amb GnuPG  deshabilitada"

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr "Referent a GnuPG"

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr "Clau(s) privada(es) GnuPG  per a %1"

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr "Claus privades GnuPG"

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr "Clau(s) pública(es) GnuPG  per a %1"

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr "Vés"

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr "Vés al grup"

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr "Vés a l'usuari"

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "Vés!"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr "Vés al tiquet"

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr "Vés al tiquet"

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr "Gràfic"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr "Propietats del gràfic"

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr "Els diagrames gràfics no estan disponibles."

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr "Grup"

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr "Permisos del grup"

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr "El grup ja té un membre: %1"

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr "No s'ha pogut crear el grup: %1"

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr "S'ha creat el grup"

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr "S'ha deshabilitat el grup"

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr "S'ha habilitat el grup"

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr "El grup no té aquest membre"

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr "El nom de grup '%1' ja s'està utilitzant"

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr "No s'ha trobat el grup"

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "Grups"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr "Els grups no poden ser membres dels seus propis membres"

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr "Grups que coincideixen amb el criteri de cerca"

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr "Grups pels que l'usuari és membre (marca la casella per esborrar)"

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr "Grups pels que l'usuari no és membre (marca la casella per afegir)"

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr "Grups als que pertany l'usuari"

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr "HasMember"

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr "Capçalera d'un tiquet reassignat"

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr "Capçalera d'un missatge reenviat"

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr "Hola!"

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr "Ajuda'ns a establir alguns valors per defecte útils per a RT"

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr "Amaga tot el text citat"

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr "Amaga el text citat"

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr "Amaga l'historial del tiquets per defecte"

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "Historial"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr "Historial de l'article #%1"

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr "Historial del grup %1"

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr "Historial de la cua %1"

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr "Historial de l'usuari %1"

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr "Telèfon de casa"

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr "Interval de refresc de la pàgina d'inici"

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "Pàgina d'inici"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr "Hora"

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr "Cada hora"

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr "Hores"

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr "Tinc %quant(%1,formigonera,formigoneres)."

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr "Vull restablir el meu token de seguretat"

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr "ISO"

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr "Id"

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "Identitat"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr "Si una aprobació es rebutja, rebutjar la original i esborrar les aprobacions pendents"

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr "Si no s'especifica cap sol·licitant, crear els tiquets amb aquest sol·licitant."

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr "Si no s'especifica cap cua, crear els tiquets amb aquesta cua."

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr "Si això no és el que esperaves, surt d'aquesta pàgina sense iniciar sessió."

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr "Si aquesta eina era setgid, un usuari local hostil podria utilitzar-la per a obtenir accés administratiu a RT."

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr "Si ja tens un servidor i base de dades funcional de RT, hauries d'aprofitar aquesta oportunitat per comprovar que el servidor de base de dades funciona i que el servidor RT s'hi pot connectar. Un cop fet això, para i torna a engegar el servidor RT."

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr "Si realment vols visitar %1 i %2, llavors %3fes clic aquí per a continuar%4."

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr "Si has canviat el port pel qual treballa RT, necessitaràs reiniciar el servei per poder iniciar sessió."

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr "Si has actualitzat algun paràmeter de més amunt, assegura't de"

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr "Si la teva base de dades preferida no apareix al desplegable de sota, vol dir que RT no pot trobar el driver de base de dades corresponent instal·lat localment. Pots solucionar-ho utilitzant %1 per a descarregar i instal·lar DBD::MySQL, DBD::Oracle o DBD::Pg."

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr "Valor il·legal per a %1"

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr "Camp immutable"

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr "Tiquets inactius"

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr "Inclou article:"

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr "Inclou les classes deshabilitades al llistat."

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr "Inclou els camps personalitzats deshabilitatats al llistat."

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr "Inclou els grups deshabilitats al llistat."

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr "Inclou les consultes deshabilitades al llistat."

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr "Inclou els usuaris deshabilitats a la cerca."

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr "Inclou pàgina"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr "Inclou subtemes"

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr "Missatges individuals"

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr "Informa al propietari de RT que el(s) usuari(s) tenen problemes amb les claus públiques"

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr "Informa a l'usuari que el tauler al que s'havia subscrit no existeix"

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr "Informa a l'usuari que el missatge que ha enviat té dades GnuPG no vàlides"

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr "Informa a l'usuari que té problemes amb la clau pública i no s'ha pogut rebre el contingut xifrat"

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr "Informa a l'usuari que se li ha restablert la contrasenya"

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr "Informa a l'usuari que hem rebut un correu xifrat i no disposem de claus privades per desxifrar-lo"

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr "Prioritat inicial"

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr "InitialPriority"

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr "Inicialitza la base de dades"

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr "El text introduït no es pot interpretar com a una adreça IP"

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr "El text introduït no es pot interpretar com a un rang d'adreces IP"

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr "Error d'entrada"

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr "L'entrada ha de coincidir amb %1"

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr "Error intern"

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr "Error intern: %1"

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr "Error intern: %1"

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr "%1 invàlid"

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr "Argument %1 invàlid"

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr "Invàlid %1: '%2' no és una adreça de correu vàlida"

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr "Invàlid %1: s'espera un número"

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr "Classe invàlida"

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr "Orígen de valors de camps personalitzats invàlid"

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr "Tipus de grup invàlid"

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr "Cua invàlida, impossible aplicar-hi la classe: %1"

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr "Tipus de presentació invàlid"

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr "Tipus de presentació invàlid pel camp personalitzat del tipus %1"

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr "Dades no vàlides"

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr "Clave %1 invàlida per a l'adreça '%2'"

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr "Objecte no vàlid"

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr "Patró no vàlid: %1"

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr "Cua no vàlida"

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr "Tipus de grup de rols de cua %1 no vàlid"

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr "Permís no vàlid"

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr "Permís no vàlid. No es pot normalitzar el permís '%1'"

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr "Sintaxis de l'adreça de correu electrònic no vàlida"

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr "Valor no vàlid per a %1"

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr "Valor no vàlid per al camp personalitzat"

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr "No està xifrat"

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr "És increiblement importante que els usuaris sense privilegis no puguin executar aquesta eina"

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr "És recomanable crear un usuari unix sense privilegis que pertanyi al grup correcte i que tingui accés a executar aquesta eina."

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr "Té diversos arguments:"

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr "Cursiva"

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr "Gen"

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr "Uneix-te o abandona el grup"

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr "Jul"

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr "Jumbo"

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr "Jun"

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr "Deixa 'localhost' si no n'estas segur. Deixa en blanc per a connectar a nivell local per socket"

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr "Cerca basada en paraules clau i intuició"

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr "Idioma"

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr "Idioma"

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr "Gran"

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr "Últim"

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr "Últim contacte"

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr "Últim contactat"

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr "Darrera actualització"

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr "Darrera actualització per"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr "Darrera actualització"

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr "Darrera actualització per"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr "LastUpdated"

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr "LastUpdatedBy"

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr "LastUpdateRelative"

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr "Deixa en blanc per enviar-ho a la teva adreça de correu actual (%1)"

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr "Deixa en blanc per per utilitzar el valor per defecte per a la teva base de dades"

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr "Deixa en blanc per per utilitzar l'usuari DBA per defecte per a la teva base de dades"

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr "Esquerra"

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr "Llegendes"

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr "Longitut en caràcters; Utilitza '0 'per mostrar tots els missatges en línia, independentment de la longitut de"

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr "Permet a aquest usuari accedir a RT"

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr "Permet la concessió de permisos a aquest usuari"

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr "Som-hi!"

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr "Cicle de vida"

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr "Enllaç"

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr "Ja existeix l'enllaç"

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr "No s'ha pogut crear l'enllaç"

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr "No s'ha trobat l'enllaç"

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr "Enllaça el tiquet #%1"

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr "Enllaça els valors a"

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr "Enllaçat"

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr "LinkedFrom"

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr "LinkedTo"

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr "Enllaçant. No es pot enllaçar a un tiquet que s'ha esborrat"

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr "Enllaçant. Permís denegat"

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr "Enllaços"

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr "Llista"

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr "Carrega"

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr "Carrega una cerca desada"

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr "Carrega una cerca desada"

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr "Carrega una cerca desada:"

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr "LoadSavedSearch"

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr "Carregat %1 %2"

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr "S'ha carregat la cerca desada original \"%1\""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr "Mòduls perl carregats"

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr "S'ha carregat la cerca desada \"%1\""

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr "Carregant..."

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr "Locale"

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr "LocalizedDateTime"

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr "Ubicació"

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr "Sessió iniciada"

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr "Sessió iniciada com a %1"

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr "Desconnectat"

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr "Inicia sessió"

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr "LogoAltText"

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr "Tanca la sessió"

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr "No coincideixen els tipus de cerca"

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr "M-F a les %1"

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr "Correu"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr "Tipus principal d'enllaços"

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr "Fes-ne propietari a"

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr "Estableix estat"

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr "Estableix data de venciment"

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr "Estableix data de resolució"

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr "Estableix data d'inici"

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr "Estableix data d'inici"

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr "Estableix data esmentada"

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr "Estableix prioritat"

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr "Estableix cua"

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr "Estableix assumpte"

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr "Gestionar camps personalitzats i valors de camp personalitzats"

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr "Administra grups i els seus membres"

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr "Administra propietats i configuració que aplica a totes les cues"

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr "Administra cues i les seves propietats"

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr "Administra gràfics desats"

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr "Administra usuaris i contrasenyes"

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr "La correspondència entre els cicle de vida de les cues no està complet. Contacta amb l'administrador del sistema."

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr "Mar"

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr "S'han marcat tots els missatges com a llegits"

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr "Ordre de cerca de plantilla Mason"

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr "MaxValues"

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr "Longitud màxima del missatge"

#: lib/RT/Date.pm:95
msgid "May"
msgstr "Mai"

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr "Jo"

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr "Membre"

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr "S'ha afegit el membre %1"

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr "S'ha esborrat el membre %1"

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr "Membre afegit: %1"

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr "Membre esborrat"

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr "Membre no esborrat"

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr "Membre de"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr "MemberOf"

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr "Membres"

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr "S'ha afegit la pertinença a %1"

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr "S'ha esborrat la pertinença a %1"

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr "Pertinences"

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr "Pertinences de l'usuari %1"

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr "S'ha fusionat amb èxit"

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr "Error al fusionar. No s'ha pogut establir el EffectiveId"

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr "Error al fusionar. No s'ha pogut establir l'estat"

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr "Fusiona dins de"

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr "S'ha fusionat dins de %1"

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr "Missatge"

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr "No es mostra el cos del missatge perquè és massa gran."

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr "No es mostra el cos del missatge perquè el sol·licitant va demanar no incloure'l."

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr "No es mostra el cos del missatge perquè no és text pla."

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr "Alçada del quadre de missatge"

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr "Amplada del quadre de missatge"

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr "Redueix els quadres de missatge"

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr "No s'ha pogut gravar el missatge"

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr "Missatge per l'usuari"

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr "Missatge gravat"

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr "Longitud mínima de la contrasenya"

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr "Minuts"

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr "Varis"

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr "Falta una clau primària?: %1"

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr "Mòbil"

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr "Telèfon mòbil"

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr "Modifica"

#: NOT FOUND IN SOURCE
msgid "Modify Access Control List"
msgstr "Modifica la llista de control d'accés"

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr "Modifica els membres"

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr "Modifica les plantilles de Scrip"

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr "Modifica scrips"

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr "Modifica un camp personalitzat per a la cua %1"

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr "Modifica un scrip per a la cua %1"

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr "Modifica un scrip que s'aplica a totes les cues"

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr "Modifica i crea classes"

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr "Modifica i crea camps personalitzats per a articles"

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr "Modifica article #%1"

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr "Modifica objectes associats per a %1"

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr "Modifica valors de camp personalitzats"

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr "Modifica dates per a #%1"

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr "Modifica dates per al tiquet # %1"

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr "Modifica els temes d'articles globals"

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr "Modifica els camps personalitzats globals"

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr "Modifica els permisos de grup globals"

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr "Modifica els temes globals"

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr "Modifica els permisos d'usuari globals"

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr "Modifica els taulers de grup"

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr "Modifica la pla de pertinença de grup"

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr "Modifica les metadades del grup o esborra el grup"

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr "Modifica els permisos de grup per la classe %1"

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr "Modifica els permisos de grup per al camp personalitzat %1"

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr "Modifica els permisos de grup per al grup %1"

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr "Modifica els permisos de grup per la cua %1"

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr "Modifica les metadades i els camps personalitzats per a aquesta classe"

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr "Modifica el propi compte de RT"

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr "Modifica o esborra articles d'aquesta classe"

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr "Modifica les persones relacionades amb el tiquet #%1"

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr "Modifica els taulers personalitzats"

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr "Modifica els observadors de la cua"

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr "Modifica els scrips per la cua %1"

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr "Modifica els scrips que s'apliquen a totes les cues"

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr "Modifica els taulers de sistema"

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr "Modifica la plantilla %1"

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr "Modifica la plantilla%1 per a la cua %2"

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr "Modifica les plantilles que s'apliquen a totes les cues"

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr "Modifica la classe %1"

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr "Modifica el contingut del tauler %1"

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr "Modifica el tauler %1"

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr "Modifica la vista per defecte de \"RT d'un cop d'ull\""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr "Modifica el grup %1"

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr "Modifica la subscripció al tauler %1"

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr "Modifica l'usuari %1"

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr "Modifica aquesta cerca..."

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr "Modifica el tiquet # %1"

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr "Modifica el tiquet #%1"

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr "Modifica els tiquets"

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr "Modifica el tema per a %1"

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr "Modifica la jerarquia de temes associada a aquesta classe"

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr "Modifica els temes per als articles d'aquesta classe"

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr "Modifica els permisos d'usuari per la classe %1"

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr "Modifica els permisos d'usuari pel camp personalitzat %1"

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr "Modifica els permisos d'usuari pel grup %1"

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr "Modifica els permisos d'usuari per la cua %1"

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr "Modifica qui rep correus pel tiquet #%1"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr "ModifyACL"

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr "ModifyArticle"

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr "ModifyArticleTopics"

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr "ModifyCustomField"

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr "ModifyDashboard"

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr "ModifyGroupDashboard"

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr "ModifyOwnDashboard"

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr "ModifyOwnMembership"

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr "ModifyQueueWatchers"

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr "ModifyScrips"

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr "ModifySelf"

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr "ModifyTemplate"

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr "ModifyTicket"

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr "Mòdul"

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr "Dll"

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr "Dilluns"

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr "De dilluns a divendres"

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr "Mensualment"

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr "Més informació dels sol·licitants"

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr "Mou avall"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr "Mou aquí"

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr "Mou amunt"

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr "Múltiple"

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr "S'ha d'especificar un nom"

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr "Els meus %1 tiquets"

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr "Les meves aprovacions"

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr "El meu dia"

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr "Els meus recordatoris"

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr "Les meves aprovacions"

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr "Els meus taulers"

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr "Els meus recordatoris"

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr "Les meves cerques desades"

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr "MySQL"

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr "NBSP"

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr "NEWLINE"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr "Nom"

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr "Nom i adreça de correu electrònic"

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr "Nom ja utilitzat"

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr "Nom:"

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr "Mai"

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr "Nou"

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr "Nou article"

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr "Nou tauler"

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr "Nous enllaços"

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr "Nova aprovació pendent"

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr "Nova cerca"

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr "Nous missatges"

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr "Contrasenya nova"

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr "S'ha enviat la notificació de nova contrasenya"

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr "Nou recordatori:"

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr "Nous permisos"

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr "Nou tiquet"

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr "El nou tiquet no existeix"

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr "Els tiquets nous no poden tenir l'estat '%1' en aquesta cua."

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr "Nou usuari anomenat"

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr "Nous observadors"

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr "Següent"

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr "Sobrenom"

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr "Sobrenom"

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr "No"

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr "%1 no carregat"

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr "Cap article coincideix amb %1"

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr "No s'ha definit la classe"

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr "No s'ha trobat cap classe que coincideixi amb el criteri de cerca."

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr "Cap camp personalitzat"

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr "Cap camp personalitzat definit"

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr "Cap grup definit"

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr "Cap consulta"

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr "Cap cua definida"

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr "No s'ha trobat l'usuari de RT. Si us plau consulta amb l'administrador de RT."

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr "Sense assumpte"

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr "Cap plantilla"

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr "Cap acció"

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr "Cap columna especificada"

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr "No hi ha cap comentari sobre aquest usuari"

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr "Cap descripció per a %1"

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr "Sense detalls"

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr "Cap grup especificat"

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr "No s'ha trobat cap grup que coincideix amb el criteri de cerca."

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr "No existeix cap clau adecuada per al xifratge"

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr "No existeix cap clau per a aquesta adreça"

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr "No hi ha cap missatge adjunt"

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr "No s'ha introduït cap nom"

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr "No és necessari xifrar"

#: lib/RT/User.pm:851
msgid "No password set"
msgstr "No s'ha establert contrasenya"

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr "No tens permís per crear cues"

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr "No tens permís per crear tiquets a la cua '%1'"

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr "No tens permís per visualitzar aquest tiquet"

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr "No tens permís per modificar l'article"

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr "No tens permís per desar cerques a tot el sistema"

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr "No tens permís per canviar la configuració"

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr "No tens permís per visualitzar l'article"

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr "No tens permís per visualitzar l'actualització del tiquet"

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr "No s'ha definit un principal"

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr "No s'ha sel·leccionat cap principal"

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr "Sense clau privada"

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr "No s'ha trobat cap cua que coincideixi amb els criteris de cerca."

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr "No s'han definit permisos"

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr "No s'han trobat permisos"

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr "No s'han concedit permisos"

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr "No hi ha cap cerca sobre la qual treballar."

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr "Sense assumpte"

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr "No existeix la clau o no és vàlida per firmar"

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr "No s'han trobat tiquets."

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr "No s'ha especificat el tipus de transacció"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr "Sense claus utilitzables."

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr "No s'han trobat usuaris que coincideixin amb els criteris de cerca."

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr "No s'ha enviat cap valor a _Set!"

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr "Ningú"

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr "Cap"

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr "Camp inexistent?"

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr "No s'ha trobat"

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr "No has iniciat sessió"

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr "No establert"

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr "No estas utilitzant un navegador mòbil?"

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr "Encara no s'ha implementat."

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr "Notes"

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr "No s'ha pogut enviar la notificació"

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr "Notificar AdminCcs"

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr "Notificar AdminCcs com a comentari"

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr "Notificar Ccs"

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr "Notifica Ccs com a comentari"

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr "Notifica altres destinataris"

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr "Notifica altres destinataris com a comentari"

#: etc/initialdata:41
msgid "Notify Owner"
msgstr "Notifica al propietari"

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr "Notifica al propietari com a comentari"

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr "Notifica al propietari del tiquet al ser rebutjat"

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr "Notifica al propietari del tiquet al ser aprovat i a punt per treballar-hi"

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr "Notifica al propietari del tiquet al ser aprovat per algun o tots els aprovadors."

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr "Notifica al propietari, sol·licitants, Ccs i AdminCcs"

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr "Notifica al propietari, sol·licitants, Ccs i AdminCcs com a comentari"

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr "Notifica als propietaris i a AdminCcs de que tenen elements esperant la seva aprovació"

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr "Notifica al sol·licitant si el seu tiquet s'ha aprovat per tots els aprovadors"

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr "Notifica al sol·licitant si el seu tiquet s'ha aprovat per algun aprovador"

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr "Notifica als sol·licitants"

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr "Notifica als sol·licitants i Ccs"

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr "Notifica als sol·licitants i Ccs com a comentari"

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr "Notifica'm sobre els missatges no llegits"

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr "Nov"

#: NOT FOUND IN SOURCE
msgid "Number of search results"
msgstr "Número de resultats de cerca"

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr "O"

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr "Objecte"

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr "No s'ha pogut crear l'objecte"

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr "No s'ha pogut esborrar l'objecte"

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr "S'ha creat l'objecte"

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr "S'ha esborrat l'objecte"

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr "Tipus d'objetes no compatibles"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr "La llista d'objetes està buida"

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr "Oct"

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr "Fora de línia"

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr "Càrrega fora de línia"

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr "Sobre %1, %2 ha escrit:"

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr "Al tancar"

#: etc/initialdata:143
msgid "On Comment"
msgstr "Al comentar"

#: etc/initialdata:115
msgid "On Correspond"
msgstr "En cas de correspondència"

#: etc/initialdata:104
msgid "On Create"
msgstr "Al crear"

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr "Al reassignar"

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr "Al reassignar un tiquet"

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr "Al reassignar una transacció"

#: etc/initialdata:164
msgid "On Owner Change"
msgstr "Al canviar de propietari"

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr "Al canviar de prioritat"

#: etc/initialdata:172
msgid "On Queue Change"
msgstr "Al canviar de cua"

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr "Al rebutjar"

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr "Al reobrir"

#: etc/initialdata:178
msgid "On Resolve"
msgstr "Al resoldre"

#: etc/initialdata:149
msgid "On Status Change"
msgstr "Al canviar l'estat"

#: etc/initialdata:109
msgid "On Transaction"
msgstr "Al fer la transacció"

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr "Bcc només aquest cop"

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr "Cc només aquest cop"

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr "Només per introduïr, no per visualitzar"

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr "Mostra només les aprovacions per a sol·licituds creades després del %1"

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr "Mostra només les aprovacions per a sol·licituds creades després del %1"

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr "Mostra només els camps personalitzats per a:"

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr "Obre'l"

#: etc/initialdata:95
msgid "Open Tickets"
msgstr "Tiquets oberts"

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr "Obre l'URL"

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr "Tiquets oberts"

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr "Obrir tiquets al rebre correspondència"

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr "Opció"

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr "Opcions"

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr "Oracle"

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr "Ordena per"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr "Organització"

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr "Tiquet orígen: #%1"

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr "Correu sortint sobre un comentari registrat"

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr "Correu sortint registrat"

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr "Correu sortint"

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr "Passat el temps, la prioritat canvia a"

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr "Visió general"

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr "Fer-se propietari d'un tiquet"

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr "OwnTicket"

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr "Propietari"

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr "El propietari '%1' no té permisos per a assignar-se aquest tiquet"

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr "S'ha canviat el propietari de %1 a %2"

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr "No s'ha pogut establir el propietari"

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr "S'ha canviat forçosament el propietari de %1 a %2"

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr "OwnerName"

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr "Pàgina"

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr "Pàgina 1 de 1"

#: share/html/dhandler:48
msgid "Page not found"
msgstr "No s'ha trobat la pàgina"

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr "Cercapersones"

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr "Telèfon del cercapersones"

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr "Pares"

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr "Contrasenya"

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr "Recordatori de contrasenya"

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr "S'ha canviat la contrasenya"

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr "No s'ha establert la contrasenya."

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr "La contraseña necessita tenir com a mínim %1 caràcters de longitud"

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr "No es mostra la contrasenya"

#: lib/RT/User.pm:861
msgid "Password set"
msgstr "S'ha establert contrasenya"

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr "Contrasenya: %1"

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr "Contrasenya: Permís denegat"

#: etc/initialdata:463
msgid "PasswordChange"
msgstr "PasswordChange"

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr "Les contrasenyes no coincideixen."

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr "Ruta del sendmail"

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr "Persones"

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr "Persones relacionades a la cua %1"

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr "Realitza una acció definida per l'usuari"

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr "Perl"

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr "Configuració de Perl"

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr "Ordre de cerca de la libreria Perl"

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr "Esborrar permanentment tota la informació de RT"

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr "S'ha denegat el permís"

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr "S'ha denegat el permís"

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr "Números de telèfon"

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr "Si us plau, comprova la URL i torna-ho a intentar."

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr "Si us plau introdueix la teva contrasenya actual correctament."

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr "Si us plau introdueix la teva contrasenya actual."

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr "Possible atac de falsificació de petició de llocs creuats (CSRF)"

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr "Possibles cerques ocultes"

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr "PostgreSQL"

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr "No s'ha trobat la cerca predefinida %1"

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr "Preferències"

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr "Preferències %1 per a l'usuari %2."

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr "S'han desat les preferències per a %1."

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr "S'han desat les preferències per a l'usuari %1."

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr "S'han desat les preferències."

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr "Clau preferida: %1"

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr "Clau preferida"

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr "Preparació interrompuda"

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr "Previ"

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr "Previ"

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr "No s'ha trobat el principal %1."

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr "Imprimir els missatges resumits resultants a STDOUT, no enviar-los per correu. No marcar-los com a enviats"

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr "Imprimeix aquest missatge"

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr "Prioritat"

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr "La prioritat comença a"

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr "Privacitat"

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr "Privacitat:"

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr "Clau privada"

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr "Privilegiat"

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr "Estat privilegiat: %1"

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr "Usuaris privilegiats"

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr "Processant sense transacció, algunes condicions i accions podríen fallar. Considera utilitzar l'argument --transaction"

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr "Pseudogrup d'us intern"

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr "La clau pública '0x%1' és necessària per a verificar la signatura"

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr "Consultes"

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr "Consulta"

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr "Constructor de consultes"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr "Cua"

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr "No s'ha trobat la cua %1"

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr "Nom de la cua"

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr "Ja existeix la cua"

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr "No s'ha pogut crear la cua"

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr "No s'ha pogut carregar la cua"

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr "S'ha creat la cua"

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr "S'ha deshabilitat la cua"

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr "S'ha habilitat la cua"

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr "Id de cua"

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr "No s'ha trobat la cua"

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr "Clau de la cua"

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr "QueueAdminCc"

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr "QueueCc"

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr "QueueName"

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr "QueueWatcher"

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr "Cues"

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr "Cues que gestiono"

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr "Cues per les que soc AdminCc"

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr "Creació ràpida"

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr "Cerca ràpida"

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr "Creació ràpida de tiquet"

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr "RFC2616"

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr "RFC2822"

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr "RSS"

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr "Administració del RT"

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr "Correu de l'administrador del RT"

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr "Configuració del RT"

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr "Error del RT"

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr "Tamany del RT"

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr "RT d'un cop d'ull"

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr "RT d'un cop d'ull per a l'usuari %1"

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr "RT pot comunicar-se amb els seus usuaris sobre nous tiquets o nova correspondència pels tiquets. Digues on trobar el sendmail (o un executable compatible amb sendmail, com el que proporciona postfix). El RT també necessita saber a qui notificar quan algú envia un correu invàlid. Aquesta no pot ser una adreça que retroalimenti el RT."

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr "El RT pot incloure contingut d'un altre servei web quan es mostra aquest camp personalitzat."

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr "El RT pot convertir aquests valors de camp personalitzat en enllaços a un altre servei."

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr "Variables de nucli de RT"

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr "El RT no ha pogut desar la teva sessió."

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr "RT per a %1"

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr "El RT ha detectat una possible %1falsificació de petició de llocs creuats (CSRF)%2 per a aquesta petició, per %3. Un atacant maliciós podria estar tractant de %1%4%2 en nom teu. Si no has iniciat aquesta petició has d'alertar al teu equip de seguretat."

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr "El RT és un sistema de seguiment d'incidències d'ús empresarial, dissenyat per a permetre gestionar de forma intel·ligent i eficient tasques, incidències, peticions, defectes o qualsevol altra cosa similar com ara una \"acció a prendre\""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr "El RT és utilitzat per empreses de la llista Fortune 100, negocis personals, agències governamentals, institucions educatives, hospitals, ONGs, biblioteques, projectes de codi obert i tot tipus d'organitzacions dels set continents (Si, inclús a l'Antàrtida)"

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr "El RT es connectarà a la base de dades amb aquest usuari. Serà creat per a tu."

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr "El RT crearà un usuari anomenat \"root\"  i establirà això com a contrasenya"

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr "El RT substituirà %1 i %2 amb l'id del registre i el valor del camp personalitzat, respectivament."

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr "El RT utilitzarà aquesta cadena de text per a identificar de forma única la teva instal·lació, i buscarà a l'assumpte dels correus per decidir a quin tiquet correspon cada missatge. Et recomanem que estableixis el valor al del teu domini d'internet (per exemple: exemple.cat)"

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr "El RT funciona amb un gran número de bases de dades diferents. MySQL, PostgreSQL, Oracle y SQLite estan suportades."

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr "La opció RTDireccionRegexp de la configuració no coincideix amb %1"

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr "Tornar a obrir"

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr "Nom real"

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr "RealName"

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr "Destinatari/a"

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr "El destinatari ha de ser una adreça de correu electrònic"

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr "Destinataris"

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr "Desa tots els canvis"

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr "Membre recursiu"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr "Fa referència a"

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr "S'ha afegit la referència per a %1"

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr "S'ha esborra la referència per a %1"

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr "S'ha afegit la referència a %1"

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr "S'ha esborrat la referència a %1"

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr "Referit a per"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr "ReferredToBy"

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr "Fa referència a"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr "RefersTo"

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr "Refresca"

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr "Refresca la pàgina principal cada 10 minuts."

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr "Refresca la pàgina principal cada 120 minuts."

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr "Refresca la pàgina principal cada 2 minuts."

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr "Refresca la pàgina principal cada 20 minuts."

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr "Refresca la pàgina principal cada 5 minuts."

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr "Refresca la pàgina principal cada 60 minuts."

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr "Refresca els resultats de cerca cada 10 minuts."

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr "Refresca els resultats de cerca cada 120 minuts."

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr "Refresca els resultats de cerca cada 2 minuts."

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr "Refresca els resultats de cerca cada 20 minuts."

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr "Refresca els resultats de cerca cada 5 minuts."

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr "Refresca els resultats de cerca cada 60 minuts."

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr "Refresca aquesta pàgina cada %1 minuts."

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr "Rebutja"

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr "Recorda la cua per defecte"

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr "Recordatori"

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr "S'ha afegit el recordatori '%1'"

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr "S'ha completat el recordatori '%1'"

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr "S'ha reobert el recordatori '%1'"

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr "Recordatoris"

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr "Recordatoris per al tiquet #%1"

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr "Esborra el AdminCc"

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr "Esborra el marcador"

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr "Esborra el Cc"

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr "Esborra el sol·licitant"

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr "S'ha esborrat %1 dels membres de %2 per a aquesta cua."

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr "Tipus de visualització"

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr "Substitueix els desplegables del propietari per caselles de text"

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr "Respon"

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr "Adreça de resposta"

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr "Respon als sol·licitants"

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr "Respon als tiquets"

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr "ReplyToTicket"

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr "Sol·licitant"

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr "RequestorGroup"

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr "Sol·licitants"

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr "Les sol·licituds haurien de vèncer en"

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr "No s'ha especificat el paràmetre requerit '%1'"

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr "Restaura"

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr "Restaura l'RT en un instant"

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr "Restaura el token d'autenticació secret"

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr "Restaura als valors per defecte"

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr "Residència"

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr "Resol"

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr "Resol el tiquet #%1 (%2)"

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr "S'ha resolt"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr "ResolvedRelative"

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr "Respon"

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr "Resultats"

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr "Torna al tiquet"

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr "Torna a introduir la contrasenya"

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr "Desfés"

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr "Permís assignat"

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr "Permís carregat"

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr "No s'ha pogut revocar el permís"

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr "Permís no carregat"

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr "Permís revocat"

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr "No s'han pogut assignar els permisos a %1"

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr "Permisos per a administradors"

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr "Permisos per al personal"

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr "Files"

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr "Files per caixa"

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr "Files per pàgina"

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr "Consultes SQL"

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr "SQLite"

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr "SQLite és una base de dades que no necessita un servidor ni configuració especial. Els autors de RT la recomanen per a proves, demostracions i fase de disseny, però no és suficient per a un servidor RT de producció amb un alt volum de dades."

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr "Dis"

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr "Dissabte"

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr "Desa"

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr "Desa els canvis"

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr "Desa les preferències"

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr "Desa com a nou"

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr "Desa nou"

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr "Desa aquesta cerca"

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr "S'ha desat %1 %2"

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr "No s'ha trobat la cerca desada %1"

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr "Cerques desades"

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr "Gràfics desats"

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr "Cerques desades"

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr "Scrip #%1"

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr "S'ha creat el scrip"

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr "Camps del scrip"

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr "S'ha esborrat el scrip"

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr "Scrips"

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr "Scrips i destinataris"

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr "Scrips que s'apliquen a totes les cues"

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr "Cerca"

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr "S'ha actualitzat la cerca %1"

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr "Cerca articles"

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr "Preferències de cerca"

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr "Cerca articles que coincidèixin"

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr "Cerca aprovacions"

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr "Cerca articles"

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr "Cerca tiquets"

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr "Cerca tiquets introduïnt números de %1id%2, paraules de l'assumpte %1\"entre cometes\"%2, %1cues%2 per nom, propietaris per %1nom d'usuari%2, sol·licitants per %1adreça de correu electrònic%2, i %1estats%2 de tiquets."

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr "Opcions de cerca"

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr "Resultats de la cerca"

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr "Resultats de la cerca agrupats per %1"

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr "Interval de refresc dels resultats de cerca"

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr "Cercar el text complet de cada tiquet pot trigar molt temps, però si necessites fer-ho, pots buscar qualsevol paraula a tot l'historial del tiquet escrivint %1paraula."

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr "Token d'autenticació secret"

#: bin/rt-crontool:350
msgid "Security:"
msgstr "Seguretat:"

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr "Veure també:"

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr "Veure els articles d'aquesta classe"

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr "Veure canvis dels articles d'aquesta classe"

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr "Veure si aquesta classe existeix"

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr "SeeClass"

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr "SeeCustomField"

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr "SeeDashboard"

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr "SeeGroup"

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr "SeeGroupDashboard"

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr "SeeOwnDashboard"

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr "SeeQueue"

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr "Escull"

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr "Escull els camps personalitzats per als articles de totes les classes"

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr "Escull el tipus de base de dades"

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr "Escull una classe"

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr "Escull un camp personalitzat"

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr "Escull un color per a la secció"

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr "Escull un grup"

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr "Escull una cua"

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr "Escull una cua per al teu nou tiquet"

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr "Escull una secció"

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr "Escull un usuari"

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr "Escull un article de %1"

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr "Escull un article a incloure"

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr "Escull un altre idioma"

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr "Casella de selecció"

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr "Escull els camps personalitzats per a totes les cues"

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr "Escull els camps personalitzats per a tots els grups"

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr "Escull els camps personalitzats per a tots els usuaris"

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr "Escull els camps personalitzats per als tiquets de totes les cues"

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr "Escull els camps personalitzats per les transaccions en tiquets de totes les cues"

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr "Escull data"

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr "Escull data i hora"

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr "Escull múltiples dates"

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr "Escull múltiples dates i hores"

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr "Escull múltiples valors"

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr "Escull un valor"

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr "Escull les cues que es mostraran a la pàgina \"RT d'un cop d'ull\""

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr "Escull els temes per a aquest article"

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr "Escull fins a %1 dates"

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr "Escull fins a %1 dates i hores"

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr "Escull fins a %1 valors"

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr "Camps personalitzats seleccionats"

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr "Cues seleccionades"

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr "La clau seleccionada o no és de confiança o bé ja no existeix."

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr "Objectes seleccionats"

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr "Seleccions modificades. Si us plau desa el canvis"

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr "Envia un correu al propietari i a tots els observadors"

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr "Envia un correu al propietari i a tots els observadors com a comentari"

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr "Envia un correu als sol·licitants i Ccs"

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr "Envia un correu als sol·licitants i Ccs com a comentari"

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr "Envia un missatge als sol·licitants"

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr "Envia un correu als Ccs i Bccs llistats explicitament"

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr "Envia un correu als Ccs"

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr "Envia un correu als Ccs com a comentari"

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr "Envia un correu als AdminCcs"

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr "Envia un correu als AdminCcs com a comentari"

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr "Envia un correu al propietari"

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr "S'ha enviat el correu amb èxit"

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr "Set"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr "Separa múltiples entrades amb espais."

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr "Defineix la clau privada"

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr "Configuració"

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr "Noms d'usuari curts"

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr "Vols que l'RT t'enviï un correu per cada modificació que facis a un tiquet?"

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr "Mostra"

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr "Mostra la pestanya d'aprovacions"

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr "Mostra columnes"

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr "Mostra la pestanya de configuració"

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr "Mostra els resultats"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr "Mostra les propietats del tiquet de nivell %1"

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr "Mostra tot el text citat"

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr "Mostra les peticions aprovades"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr "Mostra també"

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr "Mostra capçaleres curtes"

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr "Mostra peticions denegades"

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr "Mostra les capçaleres completes"

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr "Mostra les plantilles globals"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr "Mostra les descripcions de l'enllaç"

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr "No mostris els tiquets pel sol·licitant"

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr "Mostra primer l'historial més antic"

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr "Mostra les sol·licituds pendents"

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr "Mostra el text citat"

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr "Mostra les sol·licituds pendents d'altres aprovacions"

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr "Mostra els 10 tiquets actius del sol·licitant amb més prioritat"

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr "Mostra els 10 tiquets inactius del sol·licitant amb més prioritat"

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr "Mostra els 10 tiquets del sol·licitant amb més prioritat"

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr "Mostra l'historial del tiquet"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr "ShowACL"

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr "ShowApprovalsTab"

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr "ShowArticle"

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr "ShowArticleHistory"

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr "ShowConfigTab"

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr "ShowGlobalTemplates"

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr "ShowOutgoingEmail"

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr "ShowSavedSearches"

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr "ShowScrips"

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr "ShowTemplate"

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr "ShowTicket"

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr "ShowTicketComments"

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr "Trituradora"

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr "La trituradora necessita un directori on escriure els bolcats. Si us plau assegura't que el directori %1 existeix i que el teu servidor web hi pot escriure."

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr "Barra lateral"

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr "Signa"

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr "Signa tots els correus auto-generats. %1Atenció%2: Activar aquesta opció canvia la signatura de proporcionar %3autenticació%4 a proporcionar %3integritat%4."

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr "Signa per defecte"

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr "Registrar-se com a sol·licitant d'un tiquet o Cc del tiquet o la cua"

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr "Registrar-se com a AdminCc del tiquet o la cua"

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr "Signa%1%2 utilitzant %3"

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr "Signatura"

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr "Signatura deshabilitada"

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr "Signatura habilitada"

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr "Senzill"

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr "Cerca simple"

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr "Únic"

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr "Nom del lloc"

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr "Mida"

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr "Salta Menú"

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr "Saltant l'usuari deshabilitat"

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr "Petita"

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr "Alguns navegadors només podran carregar contingut del mateix domini que el teu servidor RT."

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr "Alguna cosa ha fallat. Contacta amb l'administrador del sistema."

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr "Ordena"

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr "Ordenació"

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr "Orígen"

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr "Especifica si s'ha d'executar diàriament o setmanal."

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr "Full de càlcul"

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr "Fase"

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr "Casella"

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr "Comença el terme de cerca amb el nom d'un camp suportat seguit per dos punts, com a %1 i %2, per a indicar explícitament el tipus de cerca."

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr "Iniciat"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr "StartedRelative"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr "Comença"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr "StartsRelative"

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr "Estat"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr "Estat"

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr "L'estat '%1' no és un estat vàlid per als tiquets d'aquesta cua."

#: etc/initialdata:307
msgid "Status Change"
msgstr "Canvia l'estat"

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr "S'ha canviat l'estat de %1 a %2"

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr "Canvis d'estat"

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr "Robar"

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr "Robar tiquets"

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr "StealTicket"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr "Pas %1 de %2"

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr "Robat a %1"

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr "Estil"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr "Assumpte"

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr "Etiqueta de l'assumpte"

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr "S'ha canviat l'assumpte a %1"

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr "SubjectTag"

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr "Envia"

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr "Subscriu-m'hi"

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr "Subscriu-me al tauler %1"

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr "Subscriu-me als taulers"

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr "SubscribeDashboard"

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr "Subscrit al tauler %1"

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr "Subscripció"

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr "No s'ha pogut crear la subscripció: %1"

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr "Dades desxifrades amb èxit"

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr "Dades xifrades amb èxit"

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr "Resum"

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr "Diu"

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr "Diumenge"

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr "Superusuari"

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr "Suspesa"

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr "Configuració del sistema"

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr "Valor predeterminat del sistema"

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr "Error del sistema"

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr "Error del sistema: %1"

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr "Eines del sistema"

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr "Error del sistema"

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr "Error del sistema. Permís denegat."

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr "SystemRolegroup d'us intern"

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr "Assignar-me"

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr "Assignar-me els tiquets"

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr "TakeTicket"

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr "Assignades"

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr "Digues quelcom sobre com localitzar la base de dades que utilitzarà l'RT"

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr "Plantilla"

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr "Plantilla #%1 esborrada"

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr "No s'ha trobat la plantilla '%1'"

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr "La plantilla compila"

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr "La plantilla no inclou codi Perl"

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr "La plantilla està buida"

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr "La plantilla és un argument obligatori"

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr "Plantilla processada"

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr "Error al processar la plantilla"

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr "Error al processar la plantilla: %1"

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr "Plantilles"

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr "Plantilles per la cua %1"

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr "Text"

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr "El fitxer de text no es mostra perquè està deshabilitat a les preferències."

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr "Aquest ja és el valor actual"

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr "Aquest no és un valor correcte per a aquest camp personalitzat"

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr "Aquest és el mateix valor"

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr "No existeix aquesta cua"

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr "Aquest tiquet té dependències no resoltes"

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr "Aquest usuari ja és propietari d'aquest tiquet"

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr "No existeix aquest usuari"

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr "Aquest usuari ja és privilegiat"

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr "Aquest usuari ja és no privilegiat"

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr "Aquest usuari és ara privilegiat"

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr "Aquest usuari és ara no privilegiat"

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr "Aquest usuari pot no ser propietari de tiquets en aquesta cua"

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr "Això no és un identificador numèric"

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr "El més bàsic"

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr "El Cc d'un tiquet"

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr "La classe de l'article identificat per %1 no s'aplica a la cua actual"

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr "La contrasenya del DBA de la base de dades"

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr "L'AdminCc d'un tiquet"

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr "El nom de domini del servidor de base de dades (com ara 'db.exemple.cat')."

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr "La següent comanda buscarà tot els tiquets actius a la cua 'general' i els hi establirà la prioritat a 99 si ja han vençut:"

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr "S'ha eliminat les següents consultes i s'esborraran del tauler un cop s'actualitzi el panell."

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr "Les següents consultes podrien no ser visibles per a tots els usuaris que poden veure aquest tauler."

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr "S'ha deshabilitat la clau"

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr "S'ha revocat la clau"

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr "La clau ha expirat"

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr "La clau és plenament de confiança"

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr "La clau és en última instància de confiança"

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr "S'ha establert el nou valor"

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr "El propietari d'un tiquet"

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr "No s'ha trobat la pàgina sol·licitada"

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr "El sol·licitant d'un tiquet"

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr "Les preferències que has escollit s'emmagatzemen a %1."

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr "El sistema es incapaç de signar els correus sortints. Això normalment indica que la frase de pas (passphrase) no està ben configurada, o que l'agent GPG està aturat. Si us plau, avisa al teu administrador de sistemes immediatament. Les adreces amb problemes son:"

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr "Tema"

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr "Hi ha diverses claus adequades per al xifratge."

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr "Hi ha missatges sense llegir d'aquest tiquet"

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr "Hi hy una confiança marginal en aquesta clau"

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr "Hi ha més d'un grup amb el nom '%1'. Això pot provocar inconsistències a parts de l'interfície d'administració, pel que es recomana canviar el nom als grups en conflicte."

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr "Hi ha cap clau adequada per al xifratge."

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr "No hi ha concordància per als estats entre aquestes cues. Posa't en contacte amb l'administrador del sistema."

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr "Hi ha una clau adequada, però no se li ha establert el nivell de confiança."

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr "Aquests comentaris generalment no són visibles per a l'usuari"

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr "Aquestes opcions de configuració cobreixen el més essencial per a fer funcionar l'RT. Necessitem saber el nom de la teva instal·lació de RT i el nom del domini al qual s'inclou RT. També hauràs d'establir la contrasenya per a l'usuari administrador per defecte."

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr "Aquest camp personalitzat no pot contenir llistes de valors"

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr "Aquesta classe no s'aplica a aquest objecte"

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr "Aquest camp personalitzat no s'aplica a aquest objecte"

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr "Aquest camp personalitzat no té tipus de presentació"

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr "Aquesta característica només està disponible per a administradors del sistema"

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr "Aquesta característica només està disponible per a administradors del sistema."

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr "Això pot voler dir que no es pot escriure al directori '%1' o que una taula de la base de dades no existeix o està corrompuda."

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr "Aquest procés de servidor no ha registrat consultes SQL."

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr "Aquesta eina permet a l'usuari executar mòduls Perl arbitraris des de RT."

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr "Sembla que aquesta transacció no té contingut"

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr "Els %1 tiquets %2 amb més prioritat per a aquest usuari"

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr "Dij"

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr "Dijous"

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr "Tiquet"

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr "Actualització massiva per al tiquet #%1: %2"

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr "Gràfic de relacions del tiquet #%1"

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr "Tiquet #%1:"

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr "Tiquet #%1: %2"

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr "Tiquet %1"

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr "Tiquet %1 creat a la cua '%2'"

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr "Tiquet %1: %2"

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr "Camps personalitzats del tiquet"

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr "Historial del tiquet # %1 %2"

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr "S'ha resolt el tiquet"

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr "Cerca tiquets"

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr "Transaccions del tiquet"

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr "Tiquet i transacció"

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr "Redacció del tiquet"

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr "Contingut del tiquet"

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr "Tipus de contingut del tiquet"

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr "No s'ha pogut crear el tiquet degut a un error intern"

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr "No s'ha pogut carregar el tiquet"

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr "Visualitza el tiquet"

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr "Metadades del tiquet"

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr "S'ha canviat l'estat del tiquet"

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr "Actualitza el tiquet"

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr "Mòdul de cerca TicketSQL"

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr "Tiquets"

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr "Tiquets %1 %2"

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr "Tiquets %1 per %2"

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr "Tiquets que tinc assignats"

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr "Tiquets que depenen d'aquesta aprovació:"

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr "Temps estimat"

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr "Temps restant"

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr "Temps treballat"

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr "Temps a mostrar"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr "TimeEstimated"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr "TimeLeft"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr "TimeWorked"

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr "Zona horària"

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr "Títol"

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr "Per a"

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr "Per a crear un article, primer has de crear una classe i tenir accés a aquesta classe."

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr "Per a consultes sobre suport, formació, desenvolupaments a mida i llicenciament, si us pla contacta amb %1."

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr "Mostra/Amaga %quant(%1,consulta,consultes)"

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr "Mostra/Amaga bolcat de pila"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr "Darrera actualització"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr "ToldRelative"

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr "Eines"

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr "Nom del tema"

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr "S'ha afegit la pertinença al tema"

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr "S'ha esborrat la pertinença al tema"

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr "No s'ha trobat el tema"

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr "Temes"

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr "Total"

#: etc/initialdata:249
msgid "Transaction"
msgstr "Transacció"

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr "Transacció %1 purgada"

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr "Transacció creada"

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr "Camps personalitzats de la transacció"

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr "Transacció->Crea no ha pogut, ja que no has especificat un tipus d'objecte i ID"

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr "TransactionDate"

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr "Les transaccions són immutables"

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr "Confia"

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr "Dmt"

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr "Dimarts"

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr "Tipus"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr "Tipus a: abans dels números d'article i t: abans dels números de tiquet."

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr "S'ha canviat el tipus de '%1' a '%2'"

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr "No s'ha pogut afegir la pertinença al tema"

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr "No s'ha pogut esborrar la pertinença al tema"

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr "No s'ha pogut determinar el tipus d'objecte o ID"

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr "No s'ha pogut carregar l'article"

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr "No s'ha pogut establir UserCSS: %1"

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr "No s'ha pogut establir UserLogo: %1"

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr "No s'ha pogut establir l'ID de privacitat: %1"

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr "No s'ha pogut establir l'objecte o ID de privacitat: %1"

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr "No s'ha pogut establir l'objecte de privacitat: %1"

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr "No s'ha pogut subscriure al tauler %1: Permís denegat"

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr "Desmarca les caselles per a deshabilitar les notificacions per als destinataris llistats només per a aquesta transacció; el silenciament persistent s'administra a la pàgina Persones."

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr "Desfès la supressió"

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr "No implementat"

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr "Usuari Unix"

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr "Desconegut (no hi ha valor de confiança assignat)"

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr "Desconegut (aquest valor és nou al sistema)"

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr "Codificació de contingut desconeguda: %1"

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr "Camp desconegut: %1"

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr "Tipus d'observador desconegut %1"

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr "A no ser que especifiquis un estat en concret, només es buscaran els tiquets amb estats actius (%1)."

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr "Treu el límit"

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr "Sense límit"

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr "Tauler sense nom"

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr "Cerca sense nom"

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr "Tiquets no assignats"

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr "No privilegiat"

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr "Camps personalitzats no sel·leccionats"

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr "Cues no sel·leccionades"

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr "Objectes no sel·leccionats"

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr "Desassigna la clau privada"

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr "No assignat"

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr "Actualitza"

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr "Actualitza el gràfic"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr "Actualitza el gràfic"

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr "Actualitza el tiquet"

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr "Actualitza el tipus"

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr "Actualitza el format i cerca"

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr "Actualitza múltiples tiquets"

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr "Actualització no registrada."

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr "Actualitza el tiquet"

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr "Actualitza el tiquet #%1"

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr "Actualitza el tiquet #%1 (%2)"

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr "El tipus d'actualització no era ni una resposta ni un comentari"

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr "UpdateStatus"

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr "Actualitzat"

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr "S'ha actualitzar la cerca desada \"%1\""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr "Puja"

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr "Puja un nou logo"

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr "Puja múltiples fitxers"

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr "Puja múltiples imatges"

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr "Puja un fitxer"

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr "Puja una imatge"

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr "Puja fins a %1 fitxers"

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr "Puja fins a %1 imatges"

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr "Puja els canvis"

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr "Ús:"

#: NOT FOUND IN SOURCE
msgid "Usage: "
msgstr "Ús: "

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr "Utilitza SSL?"

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr "Utilitzar una distribució de dues columnes per als formularis de creació i actualització?"

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr "Utilitzar autocompletar per tobar propietaris?"

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr "Utiliza regles de css per mostrar el text monoespaiat i amb el format intacte, però ajustat si es necessari. Això no funciona bé amb IE6 i hauries d'utilitzar l'opció anterior"

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr "Per defecte (%1)"

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr "Utilitza altres eines administratives de RT"

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr "Utilitza el per defecte del sistema (%1)"

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr "Utilitza els desplegables per seleccionar quines actualitzacions del tiquet vols extreure en un nou article."

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr "Utilitza això per protegir el format de text pla"

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr "Usuari"

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr "No s'ha trobat l'usuari '%1'"

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr "Usuari (creat - expira)"

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr "Definit per l'usuari"

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr "Condicions i accions definides per l'usuari"

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr "Permisos de l'usuari"

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr "L'usuari ha sol·licitat un tipus d'actualització desconeguda per al camp personalitzat %1 per a l'objecte %2 #%3"

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr "No s'ha pogut crear l'usuari: %1"

#: lib/RT/User.pm:262
msgid "User created"
msgstr "S'ha creat l'usuari"

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr "S'ha deshabilitat l'usuari"

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr "S'ha habilitat l'usuari"

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr "L'usuari no té adreça de correu electrònic"

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr "S'ha carregat l'usuari"

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr "Grups definits per l'usuari"

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr "Nom d'usuari"

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr "Format pel nom d'usuari"

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr "Usuaris"

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr "Usuaris que coincideixen amb el criteri de cerca"

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr "Utilitzant la transacció #%1..."

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr "Consulta vàlida"

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr "Validació"

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr "Valor"

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr "Valors"

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr "Variable"

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr "Versió"

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr "Mostra plantilles d'scrips"

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr "Mostra scrips"

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr "Mostra els valors de camp personalitzats"

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr "Mostra els camps personalitzats"

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr "Mostra el detall dels correus sortints i els seus destinataris"

#: lib/RT/Group.pm:99
msgid "View group"
msgstr "Mostra el grup"

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr "Mostra els taulers de grup"

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr "Mostra els taulers personalitzats"

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr "Mostra la cua"

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr "Mostra les cerques desades"

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr "Mostra els taulers de sistema"

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr "Mostra el comentaris privats del tiquet"

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr "Mostra el resum del tiquet"

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr "W3CDTF"

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr "ATENCIÓN: Desant la cerca a nivell de privacitat d'usuari"

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr "Alçada de l'editor WYSIWYG"

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr "Editor de missatges WYSIWYG"

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr "Atenció! NO està signat!"

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr "Avís: no tens definida una adreça de correu electrònic, així que no rebràs aquest tauler fins que te n'assignis una."

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr "Vigila"

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr "WatchAsAdminCc"

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr "Observador"

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr "WatcherGroup"

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr "Observadors"

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr "No ha estat possible connectar a la base de dades com a DBA. Pots clicar a 'Personalització bàsica' per continuar personalitzant l'RT."

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr "Actualment no ho podem presentar com una llista quan es basen les categories en un altre camp personalitzat. Si us plau, utilitza un altre tipus de visualització."

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr "Necessitem conèixer el nom de la base de dades que l'RT utilitzarà i on trobar-la. També necessitem conèixer l'usuari i la contrasenya de l'usuari que utilitzarà l'RT. L'RT pot crear la base de dades i l'usuari per tu, per la qual cosa demanem l'usuari i la contrasenya d'un usuari amb privilegis de DBA. Durant el pas 6 del procés d'instal·lació, utilitzarem aquesta informació per a crear i inicialitzar la base de dades de RT."

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr "Port web"

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr "Dmc"

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr "Dimecres"

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr "Dia de la setmana"

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr "Setmanalment"

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr "Resum setmanal"

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr "Benvingut a RT!"

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr "Què he fet avui"

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr "Què és RT?"

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr "Quan RT no pugi gestionar un missatge de correu, on s'hauria de reenviar?"

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr "Quan l'RT envia un correu, configura les capçaleres \"De:\" y \"Respondre-A:\" de manera que els usuaris puguin afegir-se a la conversa clicant a Respondre al seu client de correu. Utilitza adreces diferents per a Respostes i Comentaris. Això es pot canviar per a cada una de les cues. Aquestes adreces han d'estar configurades per utilitzar el programa rt-mailgate."

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr "Al crear un tiquet"

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr "Al crear un tiquet d'aprovació, notifica el propietari i l'AdminCc de l'element que espera la seva aprovació"

#: etc/initialdata:110
msgid "When anything happens"
msgstr "Quan passa qualsevol cosa"

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr "Cuando l'editor WYSIWYG no està habilitat, aquesta opció determina si els ajustos automàtics de línia al quadre de text del tiquet s'envien a RT o no."

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr "Quan cliques a 'Comprovar la connectivitat amb la base de dades' hi pot haver un cert retard mentre l'RT intenta connectar a la teva base de dades."

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr "Sempre que es tanca un tiquet"

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr "Sempre que es reassigna un tiquet"

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr "Sempre que es rebutja un tiquet"

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr "Sempre que es reobre un tiquet"

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr "Sempre que es resol un tiquet"

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr "Sempre que es reassigna un tiquet o una transacció"

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr "Sempre que canvia el propietari d'un tiquet"

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr "Sempre que canvia la prioritat d'un tiquet"

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr "Sempre que canvia la cua d'un tiquet"

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr "Sempre que canvia l'estat d'un tiquet"

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr "Sempre que es reassigna una transacció"

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr "Sempre que succeeix una condició definida per l'usuari"

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr "Sempre que entra algun comentari"

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr "Sempre que es rep una correcpondència"

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr "On en troba el binari del sendmail."

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr "Buida"

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr "Feina"

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr "Telèfon de la feina"

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr "Treballat"

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr "Si"

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr "Pots editar aquest tauler i la teva subscripció corresponent a l'RT."

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr "Ja ets propietari d'aquest tiquet"

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr "Et disposes a xifrar els correus sortints, però hi ha problemes amb la clau pública dels destinataris. Has de solucionar els problemes  amb les claus, deshabilitar l'enviament de missatges als destinataris que tenen problemes amb la clau, o deshabilitar el xifrat."

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr "Et disposes a xifrar els correus sortints, però hi ha problemes amb la clau pública d'un destinatari. Has de solucionar els problemes amb la clau, deshabilitar l'enviament de missatges a aquest destinatari, o deshabilitar el xifrat."

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr "Pots anar al primer missatge sense llegir o anar al primer missatge sense llegir i marcar tots els missatges com a llegits."

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr "També pots editar directament la cerca predefinida"

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr "Pots introduir el contingut del tiquet a qualsevol camp de text lliure, text o camp de text wiki."

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr "No pots establir la contrasenya."

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr "Només pots reassignar tiquets teus o que tenen un propietari"

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr "Només et pots assignar tiquets que no tenen un propietari"

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr "Pots cercar qualsevol paraula a tot l'historial escrivint %1paraula."

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr "No es pot canviar l'estat de '%1' a '%2'."

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr "No tens permisos de Superusuari."

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr "S'ha tancat la teva sessió de RT"

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr "Has activat el suport GnuPG però no has definit cap adreça de comentari per a aquesta cua."

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr "Has activat el suport GnuPG però no has definit cap adreça de correspondència per a aquesta cua."

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr "No tens permís per crear tiquets a aquesta cua."

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr "Hauries de poder introduir enllaços a articles de la forma \"a:###\", on ### representa el número d'article."

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr "No hauries de poder crear sol·licituds per a aquesta cua."

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr "Has d'introduir una contrasenya d'administrador"

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr "Has de definir StatementLog a \"true\" per a activar aquesta pàgina d'historial de consulta."

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr "Has de definir una adreça de comentari per a aquesta cua per tal de configurar una clau GnuPG privada."

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr "Has de definir una adreça de correspondència per a aquesta cua per tal de configurar una clau GnuPG privada."

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr "Seràs redirigit a la pàgina d'inici de sessió. Podràs iniciar sessió amb l'usuari %1 i la contrasenya definida prèviament."

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr "Hauries d'escollir la base de dades amb la que tu o el teu DBA local us sentiu més còmodes."

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr "Estas veient aquesta pantalla degut a que has iniciat un servidor RT sense cap base de dades funcional. El més probable és que sigui el primer cop que inicies l'RT. Si fas clic a \"%1\" a sota, l'RT et guiarà a través de la configuració del servidor RT i de la base de dades."

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr "Ets benvingut a tornar en qualsevol moment."

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr "No tens una contrasenya definida."

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr "El teu sistema suporta suggeriments automàtics de color per a: %1"

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr "Nom o contrasenya d'usuari incorrectes"

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr "Codi Postal"

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr "[Avall]"

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr "[Amunt]"

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr "[cap]"

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr "un camp personalitzat"

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr "actiu"

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr "afegeix l'etiqueta 
 al voltant dels adjunts de text pla"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "després"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr "i abans"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr "i no"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "barra"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "abans de"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "cos"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "del final al principi"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr "marca aquesta casella per a aplicar aquesta classe globalment a totes les cues."

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr "Marca aquesta casella per aplicar aquest camp personalitzat a tots els objectes."

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr "marca aquesta casella per esborrar aquesta classe globalment i ser capaç d'escollir cues específiques."

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr "marca aquesta casella per esborrar aquest camp personalitzat de tots els objectes i ser capaç d'escollir objectes específics."

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "marca per afegir"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "clica que marcar/desmarcar tots els objectes de cop"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "tancat"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "configuració de nucli"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr "crea un tiquet"

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "camp personalitzat '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "diariament"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "diariament a les %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dies"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "eliminat"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "mostra els adjunts de text pla ajustats i formatejats"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "no coincideix"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "descarrega"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr "durada"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "igual que"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "error: no es pot moure avall"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "error: no es pot moure a l'esquerra"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "error: no es pot moure amunt"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "error: res a esborrar"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "error: res a moure"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "error: res a commutar"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "cada"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "plugin executat amb èxit"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "completa"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "major que"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "grup"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grup '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "hores"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr "a la classe %1"

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr "inactiu"

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr "inclou %1"

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr "índex"

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "és"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "no és"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "clau deshabilitada"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "clau expirada"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "clau revocada"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "d'esquerra a dreta"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "menor que"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginal"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "coincideix amb"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "profunditat màxima"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minuts"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr "modifica la configuració de RT"

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr "modifica el tauler"

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr "modifica o accedeix a una cerca"

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr "modifica les teves preferències"

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "mensualment"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "mensualment (dia %1) fins %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "mesos"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "mai"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "nou"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "no"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "sense nom"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "cap"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "diferent de"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "res"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "S'han esborrat els objectes amb èxit"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "a"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "el dia"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "un"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "obre"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "obrir/tancar"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "un altre..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr "realitza accions"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "formatge"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "el plugin ha retornat una llista buida"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "cua %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "rebutjat"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr "requereix una instància de rt-crontool executant-se"

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "resolt"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "de dreta a esquerra"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "seg."

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "mira la llista d'objectes a sota"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "configuració del lloc"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "encallat"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr "sentència"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "resum"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "files de totals"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistema %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "grup de sistema '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr "la capçalera Sol·licitant proporcionada per teu navegador (%1) no està permesa pel nom de màquina configurat a l'RT (%2)"

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr "la capçalera Sol·licitant proporcionada per teu navegador (%1) no està permesa pel nom de host configurat a l'RT (%2) o els hosts de la llista blanca (%3)"

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "el component que s'ha cridat no especifica perquè"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "les adreces predeterminades que es llistaran a les capçaleres De: i Respon a: als correus electrònics sobre comentaris"

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "les adreces predeterminades que es llistaran a les capçaleres De: i Respon a: als correus electrònics sobre correspondència"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "ticket #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "del principi al final"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "absolut"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "grup sense descripció %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "il·limitat"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr "actualitza un tiquet"

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr "actualitza una aprovació"

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr "actualitza un article"

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "usuari"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "usuari %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "Usuari"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "setmanalment"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "setmanalment (el %1) a les %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "setmanes"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr "el qual podria %1 el en teu nom."

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "el port en el que estarà escoltant el vostre servidor web, per exemple, 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "amb capçaleres"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "anys"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "si"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr "el teu navegador no ha proporcionat una capçalera Sol·licitant"

rt-4.0.19/share/po/da.po0000664000175000017500000123060512262650742013725 0ustar  chmrrchmrrmsgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:00+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " %1 slettet."

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 omdøbt til %2."

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 gemt."

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (ingen offentlig nøgle!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: NOT FOUND IN SOURCE
msgid "#%1"
msgstr "#%1"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: NOT FOUND IN SOURCE
msgid "$1"
msgstr "$1"

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$præfiks %1"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%2 %1 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 tilføjet"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 siden"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 ændret til %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 slettet"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 slettet."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 omnavngivet til %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 gemt."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 opdateret."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 med skabelon %3"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 denne sag\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) af %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Uændret)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (fra rude %2)"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "%1 - %2 vist"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Juster LogToScreen konfigurations option"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - En parameter til afsendelse til %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Send statusopdateringer til STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Angiv ID på den skabelon, du vil bruge"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify if you want to use either 'first' or 'last' tarnsaction"
msgstr "%1 - Angiv om du vil bruge enten 'første' eller 'sidste' transaktion"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Specificer om du ønsker at bruge enten første ('first), sidste ('last') eller alle ('all') transaktioner"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Specificer navnet eller ID'et på de(n) skabelon(er) du ønsker at bruge"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Angiv det handlingsmodul, du vil bruge"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Angiv den komma separerede liste af transaktionstyper du ønsker at bruge"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Angiv det betingelsesmodul, du vil bruge"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Angiv det søgemodul, du vil bruge"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify the type of a transaction you want to use"
msgstr "%1 - Angiv typen på den transaktion, du vil bruge"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Instrument panel"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 Scrip-handling indlæst"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 tilføjet som en værdi til %2"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on"
msgstr "et %1 alias skal tilknyttes et sagsnummer"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on (from %2) %3"
msgstr "et %1 alias skal tilknyttes et sagsnummer (fra %2) %3"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 eksisterer allerede og indeholder RT's tabeller, men indeholder ikke RT's metadata. 'Initialiser database' trinnet senere i dette forløb can indsætte omtalte metadata i den eksisterende database, hvis dette er en acceptabel løsning, klik da på 'Grundlæggende tilpasning' nedenfor for at fortsætte med at tilpasse RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 eksisterer allerede men indeholder ikke RT's tabeller eller metadata. 'Initialiser database' trinnet senere i dette forløb can indsætte omtalte tabekller og metadata i den eksisterende database, hvis dette er en acceptabel løsning, klik da på 'Grundlæggende tilpasning' nedenfor for at fortsætte med at tilpasse RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 er tilsyneladende et lokalt objekt, men eksisterer ikke i databasen"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 ser ud til at være fuldt initialiseret. Vi behøver ikke at indsætte nogen tabeller eller metadata, men du kan fortsætte med at tilpasse RT ved at klikke 'Grundlæggende tilpasning' nedenfor"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 af %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 ændret fra %2 til %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 ændret fra '%2' til '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 diagram på grundlag af %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 kopi"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 kerne konfiguration"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 kunne ikke sættes til %2"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't init a transaction (%2)\\n"
msgstr "%1 kunne ikke igangsætte en handling (%2)\\n"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 kunne ikke sætte status til afsluttet. Der er muligvis inkonsekvens i RT-databasen."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 oprettet"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 slettet"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 deaktiveret"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 eksisterer ikke."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 aktiveret"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "Mine %1 højest prioriterede sager"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "Mine %1 højest prioriterede sager..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "De %1 højest prioriterede sager, jeg har rekvireret"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 er et værktøj, der arbejder med sager fra et bestemt planlægningsværktøj som f.eks. cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 er et program, beregnet til kørsel som et cron-job, til visning af alle udskudte RT notifikationer, opsamlet, på brugerniveau."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 er en mail-adresse som RT modtager mail på. Hvis du tilføjer den som '%2' skaber du en mail - løkke."

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 er ikke længere en %2 til denne kø."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 er ikke længere en %2 til denne sag."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 er ikke længere en værdi til ekstrafelt %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1 er ikke en gyldig livscyklus"

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 er ikke et lovligt kø-ID."

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min."

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 senest opdaterede artikler."

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 nyeste artikler"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 nyeste sager uden ejer"

#: NOT FOUND IN SOURCE
msgid "%1 not shown"
msgstr "%1 ikke vist"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objekter"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 rettigheder"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 site konfiguration"

#: NOT FOUND IN SOURCE
msgid "%1 succeeded\\n"
msgstr "%1 lykkedes"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 opdatering: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 opdatering: Intet ændret"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 opdateret"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 vil løse alle medlemmer af en løst gruppesag."

#: NOT FOUND IN SOURCE
msgid "%1 will stall a [local] BASE if it's dependent [or member] of a linked up request."
msgstr "%1 vil sætte en [lokal] BASE i bero, hvis den er afhængig [eller medlem] af en tilknyttet sag."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1's %2 objekter"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 objekter"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1's GnuPG nøgler"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1's nuværende password"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1's instrumentpaneler"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1's gemte søgninger"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: ingen vedhæftet fil er angivet"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Ny sag i%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1 s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,time)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' er ikke en gyldig statusværdi"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' er ikke en valid klasseidentifikator"

#: NOT FOUND IN SOURCE
msgid "'%1' not a recognized action. "
msgstr "'%1' er ikke en anerkendt handling. "

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "Roller"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'System'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "Brugergrupper"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "Brugere"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Afkryds boks for at færdiggøre)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(Markér for at slette scrip)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Markér for at slette)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Afkryds bokse for at slette)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Markér for at fravælge besked til de angive modtagere)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Markér for at tilvælge besked til de angivne modtagere)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Indtast sagsnummer eller URL'er, adskilt af mellemrum)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Hvis intet angives, vil det som standard være %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Ingen ekstrafelter)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Ingen medlemmer)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Ingen scrips)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Ingen skabeloner)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Ingen)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Sender en blind kopi af denne opdatering til en kommasepareret liste af e-mail-adresser. Ændrer ikke, hvem der vil modtage fremtidige opdateringer)."

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Sender en blind kopi af denne opdatering til en kommasepareret liste af e-mail-adresser. Ændrer ikke, hvem der vil modtage fremtidige opdateringer)."

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Sender en blind kopi af denne opdatering til en kommasepareret liste af e-mail-adresser. Ændrer ikke hvem der vil modtage fremtidige opdateringer)."

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Sender en kopi af denne opdatering til en kommasepareret liste af administrative e-mail-adresser. Disse personer vil modtage fremtidige opdateringer)."

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Sender en kopi af denne opdatering til en kommasepareret liste af administrative e-mail-adresser. Disse personer vil  modtage fremtidige opdateringer)."

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Sender en kopi af denne opdatering til en kommasepareret liste af e-mail-adresser. Ændrer IKKE, hvem der vil modtage fremtidige opdateringer)."

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Sender en kopi af denne opdatering til en kommasepareret liste af e-mail-adresser. Ændrer IKKE, hvem der vil modtage fremtidige opdateringer)."

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Sender en kopi af denne opdatering til en kommasepareret liste af e-mail-adresser. Ændrer ikke hvem der vil modtage fremtidige opdateringer)."

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Sender en kopi af denne opdatering til en kommasepareret liste af e-mail-adresser. Disse personer vil modtage fremtidige opdateringer)."

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Sender en kopi af denne opdatering til en kommasepareret liste af e-mail-adresser. Disse personer vil  modtage fremtidige opdateringer)."

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Brug disse felter, når du vælger 'brugerdefineret' som betingelse eller handling)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(E-mail vil ikke blive sendt)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(vilkårlig)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(tom)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(ingen Opsummering)"

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(intet navn angivet)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(intet navn)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(ingen offentlig nøgle!)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(intet emne)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(ingen værdi)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(ingen værdier)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(kun én sag)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(afventer %quant(%1,anden sag, andre sager))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(afventer godkendelse)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(afventer anden gruppe)"

#: NOT FOUND IN SOURCE
msgid "(pending other tickets)"
msgstr "(afventer andre sager)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(obligatorisk)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "troværdig: %1"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(uden titel)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(uden troværdighed!)"

#: NOT FOUND IN SOURCE
msgid "(yyyy/mm/dd)"
msgstr "(åååå/mm/dd)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id er et forældet argument og kan ikke bruges sammen med --template"

#: NOT FOUND IN SOURCE
msgid "--transaction argument could be only 'first' or 'last'"
msgstr "--transaktionsparameter kan kun være  'først' eller 'sidst'"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "argumentet --transaction skal være 'first', 'last' eller 'all'"

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I own..."
msgstr "Mine 25 højest prioriterede sager..."

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I requested..."
msgstr "De 25 højest prioriterede sager, jeg rekvirerede..."

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ticket->Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "<%$Action%> here"
msgstr "<%$Action%> her"

#: NOT FOUND IN SOURCE
msgid "<%$_%>"
msgstr "<%$_%>"

#: NOT FOUND IN SOURCE
msgid "<%$field%>"
msgstr "<%$field%>"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Alle iCal feeds indholder en hemmelig token med det formål at verificere din identitet. Hvis en af dine iCal feeds' URL er blevet eksponeret for omverdenen kan du få en ny token, med det resultat at alle forudgående iCal feeds ophører med at fungere.

" #: NOT FOUND IN SOURCE msgid "%1 - %2s" msgstr "%1 - %2s" #: etc/initialdata:215 msgid "A blank template" msgstr "En tom skabelon" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Adgangskode er ikke blevet tildelt, så brugeren kan ikke logge ind." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE ikke fundet" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACE'er kan kun oprettes og slettes." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "OG" #: NOT FOUND IN SOURCE msgid "Aborting to avoid unintended ticket modifications.\\n" msgstr "Afbryder for at undgå utilsigtede sagsændringer.\\n" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Om mig" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Adgangskontrol" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Handling" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Handling %1 ikke fundet" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Handling '%1' findes ikke" #: bin/rt-crontool:228 msgid "Action committed." msgstr "Handling igangsat." #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Handling igangsat.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Handlingen er en obligatorisk parameter" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Handling forberedt..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Handlinger" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "Aktive sager" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "Aktive sager for %1" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Tilføj" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "Tilføj %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Tilføj AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Tilføj bogmærke" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Tilføj Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Tilføj kolonner" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Tilføj kriterier" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Tilføj flere filer" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Tilføj rekvirent" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Tilføj værdi" #: NOT FOUND IN SOURCE msgid "Add a new a global scrip" msgstr "Tilføj en ny global scrip" #: NOT FOUND IN SOURCE msgid "Add a scrip to this queue" msgstr "Tilføj en scrip til denne kø" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Tilføj en scrip, som vil gælde for alle køer" #: NOT FOUND IN SOURCE msgid "Add additional criteria" msgstr "Tilføj yderligere kriterier" #: NOT FOUND IN SOURCE msgid "Add and Search" msgstr "Tilføj og søg" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Tilføj kommentarer til eller svar på de udvalgte sager" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Tilføj gruppe" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Tilføj medlemmer" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Tilføj nye observatører" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "Tilføj rettigheder for denne %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Tilføj disse kriterier" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Tilføj disse kriterier og søg" #: NOT FOUND IN SOURCE msgid "Add these terms to your search" msgstr "Tilføj disse ord til din søgning" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Tilføj bruger" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Tilføj værdier" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Tilføj, slet og rediger ekstrafeltværdier for objekter" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "Tilføj, tilpas and slet tilpassede feltværdier for objekter" #: NOT FOUND IN SOURCE msgid "AddNextState" msgstr "TilføjNæsteStatus" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "Føjede %1 til medlemmer af %2 for denne kø." #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Tilføjede principal som %1 for denne kø" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Tilføjede principal som %1 for denne sag" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Adresse 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adresse1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adresse2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin Cc" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Admin kommentar" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Admin korrespondance" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admin køer" #: NOT FOUND IN SOURCE msgid "Admin users" msgstr "Admin brugere" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Global konfiguration" #: NOT FOUND IN SOURCE msgid "Admin/Groups" msgstr "Admin/Grupper" #: NOT FOUND IN SOURCE msgid "Admin/Queue/Basics" msgstr "Admin/Køer/Stamdata" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "AdminAllePersonligeGrupper" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "AdminCCGruppe" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "AdminCc" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "AdminCc'er" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "AdminKlasse" #: NOT FOUND IN SOURCE msgid "AdminComment" msgstr "AdminKommentar" #: NOT FOUND IN SOURCE msgid "AdminCorrespondence" msgstr "AdminKorrespondance" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminEkstrafelt" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: NOT FOUND IN SOURCE msgid "AdminCustomFields" msgstr "AdminEkstrafelter" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGruppe" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGruppeMedlemskab" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminEgnePersonligeGrupper" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminKø" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminBrugere" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administrativ Cc" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administrativt password" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avanceret" #: NOT FOUND IN SOURCE msgid "Advanced Search" msgstr "Avanceret søgning" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Avanceret søgning" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: NOT FOUND IN SOURCE msgid "Age" msgstr "Alder" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Aggregator" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Alle godkendelser accepteret" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "Alle klasser" #: NOT FOUND IN SOURCE msgid "All Custom Fields" msgstr "Alle ekstrafelter" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "Alle instrumentpaneler" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Alle køer" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "Alle Sager" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Alle iCal feeds indholder en hemmelig token med det formål at verificere din identitet. Hvis en af dine iCal feeds' URL er blevet eksponeret for omverdenen kan du få en ny token, med det resultat at alle forudgående iCal feeds ophører med at fungere." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Alle køer der tilsvarer søgekriterierne" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Alle sager" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Alle emner" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "Tillad oprettelse af gemte søgninger" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "Tillad indlæsning af gemte søgninger" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Tillad at der skrives Perl-kode i skabeloner, skripter, etc." #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Allerede krypteret" #: NOT FOUND IN SOURCE msgid "Always sends a message to the requestors independent of message sender" msgstr "Sender altid en besked til rekvirenten uafhængigt af beskedens afsender" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Og/eller" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Ethvert felt" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Anvendt" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Gælder for" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Gælder for alle objekter" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Anvend" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Anvend globalt" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Anvend dine ændringer" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Godkendelse" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Godkendelse #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Godkendelse #%1: Noter ikke gemt på grund af en systemfejl" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Godkendelse #%1: Noter blev gemt" #: NOT FOUND IN SOURCE msgid "Approval Details" msgstr "Godkendelsesdetaljer" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Godkendelse accepteret" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Godkendelse Klar til Ejer" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Godkendelse afvist" #: NOT FOUND IN SOURCE msgid "Approval diagram" msgstr "Godkendelsesdiagram" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Godkend" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Godkenderens noter: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Apr" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Apr." #: NOT FOUND IN SOURCE msgid "April" msgstr "April" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "Er du sikker på at du vil slette denne artikel?" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "Artkiel #%1 slettet" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "Artikel #%1: %2" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "Artikel %1" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "Artikel %1 oprettet" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administration af artikler" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "Artikel slettet" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artikel ikke fundet" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "Artikler" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "Artikler i %1" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "Artikler som matcher %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artikler som ikke har emne" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Stigende" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Stigende" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Tilknyt og slet ekstrafelter" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "TilknytEkstrafelter" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Vedhæft" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Vedhæft fil" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Vedhæftet fil" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Vedhæftet fil" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Vedhæftede fil '%1' kunne ikke indlæses" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Vedhæftet fil oprettet" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Navn på vedhæftet fil" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Vedhæftede filer" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Kryptering af vedhæftede filer er slået fra" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Egenskab slettet" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Aug" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Aug." #: NOT FOUND IN SOURCE msgid "August" msgstr "August" #: NOT FOUND IN SOURCE msgid "AuthSystem" msgstr "AuthSystem" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatisk foreslåede tema-farver er ikke tilgængelige for dit billede. Dette kan være på grund af at du overførte en billedtype som din installerede version af GD ikke understøtter. Understøttede typer er: %1. Du kan rekompilere libgd og GD.pm for at inkludere understøttelse af andre billedtyper." #: etc/initialdata:218 msgid "Autoreply" msgstr "Autosvar" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Autosvar til rekvirenter" #: NOT FOUND IN SOURCE msgid "AutoreplyToRequestors" msgstr "AutoSvarTilRekvirenter" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Tilgængelig" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "BCc" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Tilbage" #: NOT FOUND IN SOURCE msgid "Bad PGP Signature: %1\\n" msgstr "Ubrugelig PGP-signatur: %1\\n" #: NOT FOUND IN SOURCE msgid "Bad attachment id. Couldn't find attachment '%1'\\n" msgstr "Ubrugelig vedhæftnings-ID. Kunne ikke finde vedhæftet fil '%1'\\n" #: NOT FOUND IN SOURCE msgid "Bad data in %1" msgstr "Ubrugelige data i %1" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Dårlig fortrolighed for attribut %1" #: NOT FOUND IN SOURCE msgid "Bad transaction number for attachment. %1 should be %2\\n" msgstr "Ubrugeligt transaktionsnummer for vedhæftet fil. %1 skulle være %2\\n." #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Stamdata" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Bcc" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Sørg for at gemme dine ændringer" #: NOT FOUND IN SOURCE msgid "Begin Approval" msgstr "Påbegynd godkendelse" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC firmalogo" #: NOT FOUND IN SOURCE msgid "Binary" msgstr "Binær" #: etc/initialdata:214 msgid "Blank" msgstr "Tom" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Brødtekst" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Fed" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Bogmærke" #: NOT FOUND IN SOURCE msgid "Bookmarkable URL for this search" msgstr "URL for denne søgning kan bogmærkes" #: NOT FOUND IN SOURCE msgid "Bookmarkable link" msgstr "Reference kan bogmærkes" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "Henvisninger som kan gøres til bogmærke for denne søgning" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Bogmærkede Sager" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Bogmærkede sager" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Korte overskrifter" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Gennemse efter emne" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "Gennemse SQL-forespørgsler som er dannet i denne proces" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Masseopdatering" #: NOT FOUND IN SOURCE msgid "Bulk ticket update" msgstr "Masse-sagsopdatering" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Køb support" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Pr. default bruger RT den samme tidszone som den server RT er installeret på. Dette felt tillader dig at sætte en global værdi for hvordan dato og tid vises i RT. Dine brugere kan vælge en anden tidszone i deres præferencer." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "CcGruppe" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "BF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Kan ikke indlæse gemte søgning \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Kan ikke rette systembrugere" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Kan denne principal se denne kø" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Kan ikke tilføje ekstrafeltværdier uden navn" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Kan ikke finde gruppeklasse for '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Kan ikke finde en gemt søgning at arbejde med" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Kan ikke referere en sag til sig selv" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Can't merge into a merged ticket. You should never get this error" msgstr "Kan ikke føjes ind i en sammenføjet sag. Denne fejl skulle aldrig opstå." #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Kan ikke gemme %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Kan ikke gemme denne søgning" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Kan ikke angive både kilde og destination" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "Kan ikke føje henvisning til rent tal" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Kan ikke oprette sager i en nedlagt kø." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Kan ikke oprette bruger: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategorier er baseret på" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategori" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Af-kategoriseret" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Cc" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Cc'er" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Ændring" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Skift adgangskode" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "Diagram" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "Egenskaber for diagram" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Vælg alle" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontroller database adgang" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Kontroller database brugernavn/password" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Markér for at slette" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Markér for at inddrage rettighed" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Børn" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Vælg database type" #: NOT FOUND IN SOURCE msgid "Choose a date" msgstr "Vælg en dato" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "Vælg fra Emner for %1" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "By" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "Klasse" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klassenavn" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "Klasse-id" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "Klasse er allerede anvendt globalt" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "Klasse er allerede anvendt på %1" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "Klasser" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Ryd" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Fravælg alle" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Tryk \"Afslut installation\" nedenfor for at afslutte guiden" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Klik på \"Initialiser Database\" for at oprette RT's database og indsætte oprindelige metadata. Dette kan tage et øjeblik" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Luk vindue" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Lukket" #: NOT FOUND IN SOURCE msgid "Closed Tickets" msgstr "Lukkede sager" #: NOT FOUND IN SOURCE msgid "Closed requests" msgstr "Lukkede sager" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Lukkede sager" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Vælg eller indtast flere værdier" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Combobox: Vælg eller indtast en værdi" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Combobox: Vælg eller indtast op til %1 værdier" #: NOT FOUND IN SOURCE msgid "Command not understood!\\n" msgstr "Kommando ikke forstået!\\n" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Kommentar" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Kommentar - adresse" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Kommentar adresse" #: NOT FOUND IN SOURCE msgid "Comment not recorded" msgstr "Kommentar ikke gemt" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Kommentar på sager" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "KommentarAdresse" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "KommentarPåSag" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentarer" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Kommentarer (ikke sendt til rekvirenter)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Kommentarer (ikke sendt til rekvirenter)" #: NOT FOUND IN SOURCE msgid "Comments about %1" msgstr "Kommentarer om %1" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Kommentarer om denne bruger" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Kommentarer tilføjet" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Commit tømt" #: NOT FOUND IN SOURCE msgid "Compile Restrictions" msgstr "Kompilere afgrænsninger" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Betingelse" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Betingelse '%1' ikke fundet" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Betingelsen er en obligatorisk parameter" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Betingelser stemmer overens..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Betingelse ikke fundet" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Konfigurationsfil %1 er låst" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Konfiguration" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "Konfiguration for køen %1" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Bekræft" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Forbindelse Lykkedes" #: NOT FOUND IN SOURCE msgid "ContactInfoSystem" msgstr "KontaktInfoSystem" #: NOT FOUND IN SOURCE msgid "Contacted date '%1' could not be parsed" msgstr "Dato kontaktet '%1' kunne ikke fortolkes" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Indhold" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "Indhold er en ugyldig IP-adresse" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "Indhold er en ugyldig række af IP-adresser" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Indhold-Type" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "IndholdsType" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "Kopi" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Korrespondent adresse" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "KorrespondentAdresse" #: etc/initialdata:283 msgid "Correspondence" msgstr "Korrespondance" #: NOT FOUND IN SOURCE msgid "Correspondence Address" msgstr "Korrespondanceadresse" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Korrespondance tilføjet" #: NOT FOUND IN SOURCE msgid "Correspondence not recorded" msgstr "Korrespondance ikke gemt" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value for ticket. " msgstr "Kunne ikke tilføje ny ekstrafeltværdi til sag. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "Kunne ikke tilføje ny ekstrafeltværdi. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "Kunne ikke tilføje ny ekstrafeltværdi. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Kunne ikke tilføje følgende ny værdi til brugerdefineret felt: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Kunne ikke at skifte ejer. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Kunne ikke ændre ejer: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Kunne ikke oprette ekstrafelt" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Kunne ikke oprette ekstrafelt: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Kunne ikke oprette gruppe" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "Kunne ikke oprette søgning: %1" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Kunne ikke oprette skabelon: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Kunne ikke oprette sag i nedlagt kø \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Kunne ikke at oprette sag. Kø ikke sat." #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Kunne ikke oprette bruger" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "Kunne ikke slette søgning %1: %2" #: NOT FOUND IN SOURCE msgid "Could not find a ticket with id %1" msgstr "Kunne ikke finde sag med ID %1" #: NOT FOUND IN SOURCE msgid "Could not find group %1." msgstr "Kunne ikke finde gruppe %1." #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Kunne ikke finde eller oprette den bruger" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Kunne ikke finde den principal" #: NOT FOUND IN SOURCE msgid "Could not find user %1." msgstr "Kunne ikke finde bruger %1." #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Kunne ikke indlæse %1 attribut" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Kunne ikke indlæse Klasse %1" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Kunne ikke indlæse ekstrafelt %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Kunne ikke indlæse gruppe" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Kunne ikke indlæse objekt til %1" #: NOT FOUND IN SOURCE msgid "Could not load search attribute" msgstr "Kunne ikke indlæse søgeegenskab" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Kunne ikke gøre den principal til %1 for denne kø" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Kunne ikke gøre den prinicipal til %1 for denne sag" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Kunne ikke slette den principal som %1 for denne kø" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Kunne ikke slette den principal som %1 for denne sag" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Kunne ikke angive brugerinfo" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Kunne ikke tilføje fil" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Kunne ikke tilføje medlem til gruppe" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "Kunne ikke anvende tilpasset felt på et objekt da det allerede er globalt" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Kunne ikke kompilere %1 kodeblok '%2': %3" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "Kunne ikke kompilere skabelon kodeblok '%1': %2" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Kunne ikke oprette en transaktion: %1" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "Kunne ikke oprette post: %1" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Kunne ikke slette instrumentpanel %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't figure out what to do from gpg's reply\\n" msgstr "Kunne ikke afgøre, hvad der skulle foretages ud fra GPG's svar\\n" #: NOT FOUND IN SOURCE msgid "Couldn't find group\\n" msgstr "Kunne ikke finde gruppe\\n" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Kunne ikke finde række" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Kunne ikke finde passende transaktion, springer over" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Kunne ikke finde den principal" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Kunne ikke finde den værdi" #: NOT FOUND IN SOURCE msgid "Couldn't find user\\n" msgstr "Kunne ikke finde bruger\\n" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Kunne ikke indlæse %1 fra brugerdatabase.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Kunne ikke indlæse klasse %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Kunne ikke indlæse Custom Field #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "Kunne ikke indlæse TilpassetFelt #%1" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Kunne ikke indlæse ekstrafelt %1" #: NOT FOUND IN SOURCE msgid "Couldn't load RT config file '%1' %2" msgstr "Kunne ikke indlæse RT-konfigurationsfil '%1' %2" #: NOT FOUND IN SOURCE msgid "Couldn't load Scrips." msgstr "Kunne ikke indlæse scrips." #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Kunne ikke indlæse kopi af sag #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Kunne ikke indlæse instrumentpanel %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Kunne ikke indlæse instrument panel %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Kunne ikke indlæse gruppe #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Kunne ikke indlæse gruppe %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Kunne ikke indlæse reference" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Kunne ikke indlæse objekt %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Kunne ikke indlæse eller oprette bruger: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Kunne ikke indlæse kø" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Kunne ikke indlæse kø #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Kunne ikke indlæse kø %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Kunne ikke indlæse kø '%1'" #: NOT FOUND IN SOURCE msgid "Couldn't load scrip" msgstr "Kunne ikke indlæse scrip" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Kunne ikke indlæse scrip #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load template" msgstr "Kunne ikke indlæse skabelon" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Kunne ikke indlæse skabelon #%1" #: NOT FOUND IN SOURCE msgid "Couldn't load that user (%1)" msgstr "Kunne ikke indlæse den bruger (%1)" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Kunne ikke indlæse sag '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "Kunne ikke indlæse emne-medlemskab mens det blev forsøgt slettet" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Kunne ikke indlæse transaktion #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Kunne ikke indlæse bruger" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Kunne ikke indlæse bruger #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Kunne ikke indlæse bruger #%1 eller bruger '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Kunne ikke indlæse bruger '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Kunne ikke fortolke adresse fra strengen '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Kunne ikke erstatte indhold med dekrypteret data: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Kunne ikke erstatte indhold med krypteret data: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "Kunne ikke få gjort '%1' til et Link." #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Kunne ikke konvertere '%1' til en URL." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Kunne ikke få gjort basen '%1' til en URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Kunne ikke gøre målet '%1' til en URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Kunne ikke sende email" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Kunne ikke sætte %1 observatør: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "kunne ikke sætte privat nøgle" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Kunne ikke nulstille private nøgle" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Land" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Opret" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Opret sager" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "Opret en klasse" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Opret et ekstrafelt" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Opret et ekstrafelt til kø %1" #: NOT FOUND IN SOURCE msgid "Create a CustomField that applies to all queues" msgstr "Opret et ekstrafelt, der gælder for alle køer" #: NOT FOUND IN SOURCE msgid "Create a new Custom Field" msgstr "Opret et nyt ekstrafelt" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "Opret en ny artikel" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Opret en ny artikel i" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Opret nyt instrumentpanel" #: NOT FOUND IN SOURCE msgid "Create a new global scrip" msgstr "Opret en ny global scrip" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Opret en ny gruppe" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Opret en ny personlig gruppe" #: NOT FOUND IN SOURCE msgid "Create a new queue" msgstr "Opret en ny kø" #: NOT FOUND IN SOURCE msgid "Create a new scrip" msgstr "Opret en ny scrip" #: NOT FOUND IN SOURCE msgid "Create a new template" msgstr "Opret en ny skabelon" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "Opret en ny skabelon for køen %1" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Opret en ny sag" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Opret en ny bruger" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Opret en ny kø" #: NOT FOUND IN SOURCE msgid "Create a queue called" msgstr "Opret en kø med ved navn" #: NOT FOUND IN SOURCE msgid "Create a request" msgstr "Opret en sag" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Opret en scrip for kø %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Opret en skabelon" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Opret en sag" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Opret en artikel" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "Opret en artikel i klasse..." #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "Opret artikler i denne klasse" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Opret instrument panel til denne gruppe" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "Opret gruppe for instrumentpaneler" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Opret en ny sag baseret på denne scrips skabelon" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Opret personligt instrumentpanel" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Opret system instrumentpanel" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Opret sag" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "Opret sager" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Opret sager i denne kø" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Opret sager offline" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Opret, slet og rediger ekstrafelter" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Opret, slet og rediger køer" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Opret, slet og rediger medlemmerne af hvilken som helst brugers personlige grupper" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Opret, slet og rediger medlemmernes personlige grupper" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Opret, slet og rediger brugere" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "Opret, tilpas og slet poster i Adgangskontrolliste" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "Opret, tilpas og slet tilpassede felter" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "Opret, tilpas og slet værdier for tilpassede felter" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "Opret, tilpas og slet kø" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "Opret, tilpas og slet gemte søgninger" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "Opret, tilpas og slet brugere" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "OpretArtikel" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "OpretInstrumentPanel" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "OpretGruppeInstrumentPanel" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "OpretEgetInstrumentPanel" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "OpretGemtSøgning" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "OpretSag" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Oprettet" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Oprettet af" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Ekstrafelt %1 oprettet" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Oprettet af" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Oprettet i et datointerval" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "Oprettede søgning %1" #: NOT FOUND IN SOURCE msgid "Created template %1" msgstr "Skabelon %1 oprettet" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Sager oprettet i en periode, fordelt pr. status" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "OprettetAf" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "OprettetRelativt" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Opretter" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografi" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Aktuelle referencer" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Aktuelle scrips" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "Nuværende søgning" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Aktuelle medlemmer" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Aktuelle rettigheder" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Aktiv søgning" #: NOT FOUND IN SOURCE msgid "Current search criteria" msgstr "Aktuelle søgekriterier" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Aktuelle observatører" #: NOT FOUND IN SOURCE msgid "Custom Field #%1" msgstr "Ekstrafelt #%1" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Ekstrafelter" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Ekstrafelter for %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "Tilpassede felter for køen %1" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Oprydningskode for specialtilpasset handling" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Ekstrahandling til forberedelseskode" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Ekstra betingelse" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "Tilpasset felt #%1 er ikke anvendt på dette projekt" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Ekstrafelt %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Brugerdefineret felt %1 er ikke gyldigt for dette element" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Ekstrafelt %1 har en værdi." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Ekstrafelt %1 har ingen værdi." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Ekstrafelt %1 ikke fundet" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Ekstrafelt '%1'" #: NOT FOUND IN SOURCE msgid "Custom field deleted" msgstr "Ekstrafelt slettet" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "" #: NOT FOUND IN SOURCE msgid "Custom field not found" msgstr "Ekstrafelt ikke fundet" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Ekstrafeltværdi %1 kunne ikke findes til ekstrafelt %2" #: NOT FOUND IN SOURCE msgid "Custom field value changed from %1 to %2" msgstr "Ekstrafeltværdi ændret fra %1 til %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Ekstrafeltværdi kunne ikke slettes" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Ekstrafeltværdi kunne ikke findes" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Ekstrafeltværdi slettet" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Ekstrafelt" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "BrugerdefineretFeltVærdi" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Tilpas" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Grundlæggende tilpasning" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Tilpas Email Adresser" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Tilpas Email Konfiguration" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBa kodeord" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA brugernavn" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Instrumentpanel" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Instrumentpanel kunne ikke oprettes: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Instrumentpanel kunne ikke opdateres: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Instrumentpanel opdateret" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Instrumentpaneler" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Database vært" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Database navn" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT's database password" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Database port" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Database type" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "RT's database brugernavn" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Dato format" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "Modulet DateTime mangler" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "Modulet DateTime::Locale mangler" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datoer" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dec" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Dec." #: NOT FOUND IN SOURCE msgid "December" msgstr "December" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Dekrypter" #: NOT FOUND IN SOURCE msgid "Default Autoresponse Template" msgstr "Standard Autosvarskabelon" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Standard Autosvarskabelon" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Standard kø" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Standard rekvirent" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Standard administrator kommentarskabelon" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Standard administrator korrespondanceskabelon" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Standard korrespondanceskabelon" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Standard kø" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Standard transaktionsskabelon" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Standard: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standard: %1/%2 ændret fra %3 til %4" #: NOT FOUND IN SOURCE msgid "DefaultDueIn" msgstr "StandardForfaldenOm" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "StandardFormat" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Overdrag rettigheder" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Overdrag specifikke rettigheder, som er blevet tildelt til dig." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "OverdragRettigheder" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Overdragelse" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Slet" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Slet skabelon" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Slet instrument paneler for denne gruppe" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Sletning mislykkedes: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "Slet gruppe for instrumentpaneler" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Slette-handling er deaktiveret i konfiguration for livscyklus" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Slet personlige instrumentpaneler" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Slet valgte scrips" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Slet system instrumentpaneler" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Slet sager" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Slet værdier" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "SletDashboard" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "SletGruppeDashboard" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "SletejetDashboard" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "SletSag" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Slettet %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Slettede instrument panel %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Slettet Forespørgelser" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Slettet gemt søgning" #: NOT FOUND IN SOURCE msgid "Deleted search" msgstr "Søgning slettet" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Deleting this object could break referential integrity" msgstr "Sletning af dette objekt kan ødelægge referentiel integritet" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Sletning af dette objekt vil ødelægge referentiel integritet" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Sletning af dette objekt vil stride mod referentiel integritet" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Afvis" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Afhængighed til" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "Afhængighedsforhold til" #: NOT FOUND IN SOURCE msgid "Dependencies: \\n" msgstr "Afhængigheder: \\n" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Afhængighed til %1 tilføjet" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Afhængighed til %1 slettet" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Afhængighed af %1 tilføjet" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Afhængighed af %1 slettet" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "AfhængigAf" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Afhængig af" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "AfhængigAf" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Faldende" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Faldende" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Beskriv problemet nedenfor" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Beskrivelse" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Detaljer" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Retning" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Deaktiveret" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Vis" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Vis adgangskontrolliste" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Vis kolonner" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Vis scrip-skabeloner for denne kø" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Vis scrips for denne kø" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Vis tilstand" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Vis gemte søgninger for denne gruppe" #: NOT FOUND IN SOURCE msgid "Display ticket #%1" msgstr "Vis sag #%1" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribueret under version 2 af GNU GPL'en." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Gør hvad som helst" #: NOT FOUND IN SOURCE msgid "Do the Search" msgstr "Udfør søgningen" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Domæne navn" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Undlad at inkludere 'http://', skriv noget lignende 'localhost' eller 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Opdater ikke denne side." #: NOT FOUND IN SOURCE msgid "Don't show search results" msgstr "Vis ikke søgeresultater" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Undlad helt at stole på denne nøgle" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Download" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Download som en tabulatoropdelt fil" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Download dumpfil" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Forfalden" #: NOT FOUND IN SOURCE msgid "Due date '%1' could not be parsed" msgstr "Forfaldsdato '%1' kunne ikke fortolkes" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "ForfaldenRelativt" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "FEJL: %1" #: NOT FOUND IN SOURCE msgid "ERROR: Couldn't load ticket '%1': %2.\\n" msgstr "FEJL: Kunne ikke indlæse sag '%1': %2.\\n" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Nem opdatering af dine åbne sager" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Rediger" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Rediger ekstrafelter" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Rediger ekstrafelter for %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Rediger ekstrafelter for alle grupper" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Rediger Custom Fields for alle køer" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Rediger ekstrafelter for alle brugere" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Rediger ekstrafelter for sager i alle køer" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Rediger referencer" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Rediger søgning" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Rediger søgning" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Rediger skabeloner for kø %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Rediger gemte søgninger for denne gruppe" #: NOT FOUND IN SOURCE msgid "Edit scrips" msgstr "Rediger scrips" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Rediger systemskabeloner" #: NOT FOUND IN SOURCE msgid "Edit templates for %1" msgstr "Rediger skabeloner for %1" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "RedigerGemteSøgninger" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Redigerbar tekst" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Redigerer konfiguration for kø %1" #: NOT FOUND IN SOURCE msgid "Editing Configuration for user %1" msgstr "Redigerer konfiguration for bruger %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Redigerer ekstrafelt %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Redigerer medlemskab for gruppe %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Redigerer medlemskab for personlig gruppe %1" #: NOT FOUND IN SOURCE msgid "Editing template %1" msgstr "Redigerer skabelon %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "EffektivId" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Enten kilde eller destination skal angives" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Enten har du ikke rettigheder til at se den gemte søgning %1 eller den angivne identifikator er ikke korrekt" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-mail" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "E-post-adresse" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "E-mail-adresse i brug" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Email leverance" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "E-mailAdresse" #: NOT FOUND IN SOURCE msgid "EmailEncoding" msgstr "E-mailKodning" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Aktiveret" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktiveret (fravalg af denne boks deaktiverer dette ekstrafelt)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktiveret (fravalg af denne boks deaktiverer denne gruppe)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktiveret (fravalg af denne boks deaktiverer denne kø)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: NOT FOUND IN SOURCE msgid "Enabled Custom Fields" msgstr "Aktiverede ekstrafelter" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Aktiverede køer" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Aktiveret status %1" #: NOT FOUND IN SOURCE msgid "Enabled status: %1" msgstr "Aktiveret status: %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Krypter" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Krypter som standard" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Kryptér/dekryptér" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Kryptér/dekryptér transaktion #%1 i sag #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Kryptering slået fra" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Kryptering slået til" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Indtast flere værdier" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "tilføj flere værdier for autokomplettering" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Angiv objekter eller URL'er til tilknytning af objekter. Flere indtastninger adskilles med mellemrum." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Indtast en værdi" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "tilføj en værdi for autokomplettering" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Angiv køer eller URL'er til tilknytning af køer. Flere indtastninger adskilles med mellemrum." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Angiv sager eller URL'er til tilknytning af sager. Flere værdier adskilles med mellemrum." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Angiv op til %1 værdier" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Indtast op til %1 værdier med autofuldførelse" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Fejl" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Fejl i parametre til Kø->TilføjObservatør" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DelWatcher" msgstr "Fejl i parametre til Kø->SletObservatør" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Fejl i parametre til Kø->SletObservatør" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Fejl i parametre til Sag->TilføjObservatør" #: NOT FOUND IN SOURCE msgid "Error in parameters to Ticket->DelWatcher" msgstr "Fejl i parametre til Sag->SletObservatør" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Fejl i parametre til Sag->SletObservatør" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Fejl til RT ejer: Offentlig nøgle" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Fejl: Manglende instrumentpanel" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Fejl: ugyldig GnuPG data" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "Fejl: kan ikke ændre værdi for beskyttelse af personlige oplysninger for eksisterende søgning" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "Fejl: kan ikke indlæse gemt søgning %1: %2" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Fejl: ingen privat nøgle" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Fejl: Offentlig nøgle" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "Fejl: søgning %1 ikke opdateret: %2" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Opprioriter sager" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Estimeret" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Alle" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Undersøg sager oprettet i en kø imellem to givne datoer" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "undersøger sager løste i en kø imellem to givne datoer" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Undersøg løste sager i en given kø, grupperet på grundlag af ejer" #: bin/rt-crontool:356 msgid "Example:" msgstr "Eksempel:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Udløber" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "UdvidStatus" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "Ekstern godkendelsesmetode aktiveret." #: NOT FOUND IN SOURCE msgid "ExternalAuthId" msgstr "EksternAuthID" #: NOT FOUND IN SOURCE msgid "ExternalContactInfoId" msgstr "EksternKontaktInfoID" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Ekstra information" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "Udtræk artikel" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Udtræk emnemærke" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Udtræk mærker fra en transaktions emne og tilføj dem til sagens emne linie." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Kunne ikke få kontakt til database: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Kunne ikke oprettet %1 attibutten" #: NOT FOUND IN SOURCE msgid "Failed to create search attribute" msgstr "Kunne ikke oprette søgeegenskab" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Kunne ikke finde 'privilegerede' brugeres pseudogruppe." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Kunne ikke finde 'uprivilegerede' brugeres pseudogruppe." #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "kunne ikke indlæse %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Kunne ikke indlæse %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Kunne ikke indlæse modul %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Kunne ikke indlæse objekt for %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Kunne ikke indlæse skabelon" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "kunne ikke fortolke skabelon" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Feb" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Feb." #: NOT FOUND IN SOURCE msgid "February" msgstr "Februar" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "Nyhedskilder" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "Felt" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Kilde til feltets værdier:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "FilNavn" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Filnavn" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Udfyld flere tekstområder" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Udfyld flere wikitekst-områder" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Udfyld et tekstområde" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Udfyld et wikitekst-område" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Udfyld dette felt med en URL." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Udfyld op til %1 tekstområder" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Udfyld op til %1 wikitekst-områder" #: NOT FOUND IN SOURCE msgid "Fin" msgstr "Slut" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Endelig prioritet" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "EndeligPrioritet" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Find alle brugere hvis" #: NOT FOUND IN SOURCE msgid "Find group whose" msgstr "Find gruppe hvis" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Find grupper hvis" #: NOT FOUND IN SOURCE msgid "Find new/open tickets" msgstr "Find nye/åbne sager" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Find personer hvis" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Find sager" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "Fingeraftryk" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Udfør" #: NOT FOUND IN SOURCE msgid "Finish Approval" msgstr "Afslut godkendelse" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Første" #: NOT FOUND IN SOURCE msgid "First page" msgstr "Første side" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Gennemtving ændring" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Format" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Videresend" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Videresend Besked" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Videresend Besked og Returner" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Videresend sag" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Videresend besked" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "Videresend beskeder udenfor RT" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Videresend besked til trediepart(er)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Videresend sag #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Videresend transaktion #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "VideresendBesked" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "Videresendte sag til %1" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "Videresendte transaktion #%1 til %2" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Fandt %quant(%1,ticket)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Object fundet" #: NOT FOUND IN SOURCE msgid "Freeform" msgstr "Frihånd" #: NOT FOUND IN SOURCE msgid "FreeformContactInfo" msgstr "FrihåndKontaktInfo" #: NOT FOUND IN SOURCE msgid "FreeformMultiple" msgstr "FrihåndMange" #: NOT FOUND IN SOURCE msgid "FreeformSingle" msgstr "FrihåndEnkelt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frekvens" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Fre" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Fre." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Fredag" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Hele overskrifter" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD er deaktiveret eller er ikke installeret. Du kan overføre et billed, men du vil ikke få automatiske farveforslag." #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Generelt" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Hent skabelon fra fil" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Kom godt igang" #: NOT FOUND IN SOURCE msgid "Getting the current user from a pgp sig\\n" msgstr "Henter den aktuelle bruger fra en PGP-signatur\\n" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Givet til %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Global" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Globale ekstrafelter" #: NOT FOUND IN SOURCE msgid "Global Scrips" msgstr "Globale scrips" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Global ekstrafelt-konfiguration" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Global portlet %1 gemt." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Global skabelon: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG fejl. Contact med administrator" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG integration er slået fra" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "GnuPG problemer" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG private nøgle(r) til %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "GnuPG private nøgler" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG offentlig nøgle(r) til %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Start" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Gå til gruppe" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Gå til bruger" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Start!" #: NOT FOUND IN SOURCE msgid "Good pgp sig from %1\\n" msgstr "Brugbar PGP-signatur fra %1\\n" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Gå til sag" #: NOT FOUND IN SOURCE msgid "Goto page" msgstr "Gå til side" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Gå til sag" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Graf" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Graf egenskaber" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "grafiske diagrammer er ikke tilgænglige" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Gruppe" #: NOT FOUND IN SOURCE msgid "Group %1 %2: %3" msgstr "Gruppe %1 %2: %3" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Grupperettigheder" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Gruppe har allerede medlem: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Gruppe kunne ikke oprettes: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Gruppe oprettet" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Gruppe deaktiveret" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Gruppe aktiveret" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Gruppen har ikke et sådant medlem" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "Gruppenavnet '%1' er allerede i brug" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Gruppe ikke fundet" #: NOT FOUND IN SOURCE msgid "Group not found.\\n" msgstr "Gruppe ikke fundet.\\n" #: NOT FOUND IN SOURCE msgid "Group not specified.\\n" msgstr "Gruppe ikke angivet.\\n" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Gruppe rettigheder" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupper" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupper kan ikke være medlem af deres medlemmer" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupper som opfylder søgekriterier" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Grupper som brugeren er medlem af(sæt kryds i gruppen for at slette)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Grupper som brugeren ikke er medlem af(sæt kryds i gruppen for at tilføje)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Grupper denne bruger hører til" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "HarMedlem" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Overskrift for en videresendt sag" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Overskrift for en videresendt besked" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Hej!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hej, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Hjælp os med at få lavet nogle nyttige defaults for RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Skjul citeret tekst" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "Skjul sagshistorik som standard" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historik" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "Historik for artikel #%1" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Historik for gruppen %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Kø historik %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Historik for brugeren %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Hjem" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "Hjemmetelefon" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Hjemmeside opdateringsinterval" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Telefon hjemme" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Forside" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Time" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Timer" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Jeg har %quant(%1,concrete mixer)." #: NOT FOUND IN SOURCE msgid "I have [quant,_1,concrete mixer]." msgstr "Jeg har [quant,_1,concrete mixer]." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "Jeg er faret vild" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identitet" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Hvis en godkendelse bliver afvist, afvis den oprindelige og slet afventende godkendelser" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Hvis ingen rekvirent er angivet, opret sager med denne rekvirent." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Hvis ingen kø er oprettet, opret sager i denne kø." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Hvis dette værktøj var \"setgid\", kunne en fjendtlig bruger benytte det til at opnå administratoradgang til RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Hvis du allerede har en fungerende RT server og database, bør du bruge denne lejlighed til at sikre dig at din database server kører og at RT serveren kan få forbindelse til den. Når du har gjort det, bør du starte og stoppe RT serveren.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Hvis du allerede har en fungerende RT server og database, bør du bruge denne lejlighed til at sikre dig at din database server kører og at RT serveren kan få forbindelse til den. Når du har gjort det, bør du starte og stoppe RT serveren.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "hvis du har ændret porten som RT bruger, skal du genstarte serveren før du kan logge ind." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Hvis du har ændret porten som RT kører på, så skal du genstarte serveren for at kunne logge ind." #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Hvis du har foretaget opdateringer ovenfor, sørg for at..." #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Hvis din foretrukne database ikke er i rullemenuen nedenfor, betyder det at RT ikke kunne finde en database driver installeret lokalt. Du kan muligvis afhjælpe dette ved hjælp af %1 for at downloade og installere DBD::MySQL, DBD::Oracle or DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Ulovlig værdi for %1" #: NOT FOUND IN SOURCE msgid "Image" msgstr "Billede" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Felt kan ikke ændres" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "Inaktive sager" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Inkludér artikel:" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "Inkludér deaktiverede klasser i listning." #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Medtag deaktiverede ekstrafelter på liste." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Medtag deaktiverede grupper på denne liste." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Medtag deaktiverede køer på liste." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Medtag deaktiverede brugere i søgning." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Medtag side" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Inkludér underemner" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "Ufuldstændig søgning" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "Ufuldstændig søgning" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "individuelle beskeder" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informer RT ejeren om at en eller flere brugere har problemer med offentlige nøgler" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informer bruger om at det instrumentpanel brugeren abonnerede på, ikke findes" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Infromer brugeren om at en afsendt besked indeholder ugyldig GnuPG data" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informer brugeren om at han/hun har problemer med sin offentlige nøgle og derfor ikke var i stand til at modtage krypteret indhold" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "informer brugeren at hans kodeord er blevet nulstillet" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informer brugeren om at vi modtog en krypteret email og ikke havde nogen privat nøgle til at dekryptere" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Første prioritet" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "FørstePrioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "initialisere Databasen" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "Input kan ikke fortolkes som en IP-adresse" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "Input kan ikke fortolkes som et IP-adresseinterval" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Inputfejl" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Input skal stemme overens med %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Installér RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Intern fejl" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Intern fejl: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "Intern fejl: %1" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "Ugyldig %1" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "Ugyldig %1 argument" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ugyldigt %1: '%2' ligner ikke en email adresse" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Ugyldigt %1: burde være et tal" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "Ugyldig klasse" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Ugyldig gruppetype" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Ugyldig rettighed" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Ugyldige data" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid lifecycle name" msgstr "Ugyldigt navn for livscyklus" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Ugyldtigt objekt" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Ugyldig ejer objekt" #: NOT FOUND IN SOURCE msgid "Invalid owner. Defaulting to 'nobody'." msgstr "Ugyldig ejer, sætter standard til 'ingen'" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Ugyldigt mønster: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Ugyldig kø" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Ugyldig rettighed" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Ugyld syntax for email adresse" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Ugyldig værdi for %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Ugyldig værdi for ekstrafelt" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Ugyldig værdi for status" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Er ikke krypteret" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Det er yderst vigtigt, at ikke-privilegerede brugere ikke får adgang til at bruge dette værktøj." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Det anbefales, at du opretter en ikke-privilegeret Unix-bruger med det korrekte gruppemedlemskab og RT-adgang for at benytte dette værktøj." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Flere parametre er nødvendige:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kursiv" #: NOT FOUND IN SOURCE msgid "Items pending my approval" msgstr "Punkter, der afventer min godkendelse" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Jan." #: NOT FOUND IN SOURCE msgid "January" msgstr "Januar" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Tilmeld dig eller forlad denne gruppe" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jul" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Jul." #: NOT FOUND IN SOURCE msgid "July" msgstr "Juli" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Jumbo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jun" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Jun." #: NOT FOUND IN SOURCE msgid "June" msgstr "juni" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Behold 'localhost' hvis du ikke er sikker. Efterlad blank for at oprette forbindelse lokalt over en sokkel" #: NOT FOUND IN SOURCE msgid "Keyword" msgstr "Nøgleord" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "Sprog" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Sprog" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Stor" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Sidste" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Sidste kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Sidst kontaktet" #: NOT FOUND IN SOURCE msgid "Last Notified" msgstr "Sidst notificeret" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Sidst opdateret" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Sidst Opdateret af" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Senest opdateret" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Sidst opdateret af" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "SidstOpdateret" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "SidstOpdateretAf" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "SidstOpdateretSlægtning" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Undlad at udfylde dette felt for at sende til din nuværende email adresse (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Efterlad tom for at bruge standard værdien for din database" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Undlad at ændre dette felt hvis du vil bruge standard databaseadministrator brugernavn, for den databasetype du anvender" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Tilbage" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Signaturforklaringer" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Længde talt i bogstaver; Brug '0' for at få vist alle beskeder, uanset længden" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Lad denne bruger få adgang til RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Lad denne bruger få rettigheder" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Lad os komme igang!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "Livscyklus" #: NOT FOUND IN SOURCE msgid "Limiting owner to %1 %2" msgstr "Begrænser ejer til %1 %2" #: NOT FOUND IN SOURCE msgid "Limiting queue to %1 %2" msgstr "Begrænser kø til %1 %2" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Reference" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Reference eksisterer allerede" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Reference kunne ikke oprettes" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Reference oprettet (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Reference slettet (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Reference ikke fundet" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Referér sag #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Referér værdier til" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Refereret" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "RefereretTilAf" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "RefereretTil" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Reference - adgang nægtet." #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Referencer" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Indlæs" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "Indlæs en gemt søgning" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Indlæs gemt søgning" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Indlæs gemt søgning:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "IndlæsGemtSøgning" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Indlæste %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Indlæste den originale \"%1\" gemte søgning" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Indlæste Perl-moduler" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Indlæste gemte søgning \"%1\"" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "Søgning %1 indlæst" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "Indlæser..." #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Lokalitet" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Lokation" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "Logget på" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Logget ind som %1" #: NOT FOUND IN SOURCE msgid "Logged in as %1" msgstr "Logget på som %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Logget ud" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Log ind" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Log ud" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Opslagstype mismatch" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Mail" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Primær type af links" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Sæt ejer" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Sæt status" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Sæt forfaldsdato" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Sæt løsningsdato" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Sæt startdato" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Sæt datostart" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Sæt dato meddelt" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Sæt prioritet" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Sæt kø" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Sæt emne" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Gør denne gruppe synlig for bruger" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Administrer ekstrafelter og ekstrafeltværdier" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administrer grupper og gruppemedlemskab" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Administrer egenskaber og konfiguration som gælder for alle køer" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administrer køer og kø-specifikke egenskaber" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Håndter gemte grafer" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administrer brugere og adgangskoder" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "Kortlægning mellem køer for livcyklusser er ikke komplet. Kontakt din systemadminstrator." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mar" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Mar." #: NOT FOUND IN SOURCE msgid "March" msgstr "Marts" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Markerede alle beskeder som set" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Maksimal længde for integreret besked" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maj" #: NOT FOUND IN SOURCE msgid "May." msgstr "Maj." #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "Mig" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Medlem" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Medlem %1 tilføjet" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Medlem %1 slettet" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Medlem tilføjet: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Medlem slettet" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Medlem ikke slettet" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Medlem af" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "MedlemAf" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Medlemmer" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Medlemskab af %1 tilføjet" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Medlemskab af %1 slettet" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Medlemskaber" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Medlemskaber for brugeren %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Sammenføjning udført med succes" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Sammenføjning lykkedes ikke. Kunne ikke sætte EffektivID." #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Sammenføjning lykkedes ikke. Kunne ikke sætte status." #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Føj ind i" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Føjet ind i %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Besked" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Beskedens brødtekst er ikke vist fordi afsenderen ikke ønskede at integrere den." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Beskedens indhold blev ikke vist fordi den ikke er klar tekst." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Meddelelsens indhold er ikke vist, fordi meddelelsen er for stor, eller fordi den ikke er i almindelig tekst." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Beskedens indhold blev ikke vist fordi den er for stor." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Besked feltets højde" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Besked feltets bredde" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Besked kunne ikke gemmes" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Besked til bruger" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Besked gemt" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Beskeder angående denne sag vil ikke blive sendt til..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Minimum password længde" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutter" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "Forskelligt" #: NOT FOUND IN SOURCE msgid "Mismatched parentheses" msgstr "Ikke-matchende parenteser" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Mangler en primærnøgle?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "Mobiltelefon" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "Mobiltelefon" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Tilpas" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Rediger adgangskontrolliste" #: NOT FOUND IN SOURCE msgid "Modify Custom Field %1" msgstr "Rediger ekstrafelt %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Rediger ekstrafelter, der gælder for %1 for alle %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Rediger ekstrafelter, der gælder for alle %1" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all queues" msgstr "Rediger ekstrafelter, der gælder for alle køer" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Rediger grupperettigheder" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Rediger medlemmer" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Rediger rettigheder" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Rediger scrip-skabeloner for denne kø" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Rediger scrips for denne kø" #: NOT FOUND IN SOURCE msgid "Modify Template %1" msgstr "Rediger skabelon %1" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Rediger brugerrettigheder" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Rediger et ekstrafelt for kø %1" #: NOT FOUND IN SOURCE msgid "Modify a CustomField that applies to all queues" msgstr "Rediger et ekstrafelt, der gælder for alle køer" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Rediger et scrip for kø %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Rediger et scrip, der gælder for alle køer" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "Tilpas artikel #%1" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Rediger tilhørende objekter til %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Modificer det brugerdefinerede felts værdier" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Modificer denne gruppes instrument paneler" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Rediger datoer for #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Rediger datoer for sag # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Rediger globale ekstrafelter" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Rediger globale grupperettigheder" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Rediger globale grupperettigheder." #: NOT FOUND IN SOURCE msgid "Modify global scrips" msgstr "Rediger globale scrips" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Rediger globale brugerrettigheder" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Rediger globale brugerrettigheder." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "Modificer gruppe-instrumentpaneler" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Rediger gruppemetadata eller slet gruppe" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Rediger grupperettigheder for ekstrafelter %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Rediger grupperettigheder for gruppe %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Rediger grupperettigheder for kø %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Rediger medlemskabsliste for denne gruppe" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Rediger din egen RT-konto" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Rediger personer, der tilhører kø %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Rediger personer, der tilhører sag #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Modificer personlige instrumentpaneler" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Rediger scrips for kø %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Rediger scrips, der gælder for alle køer" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Modificer instrumentpaneler for system" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Rediger skabelon %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Rediger skabeloner, der gælder for alle køer" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "Modificer indholdet af instrumentpanel %1" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Modificer instrumentpanelet %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Tilpas standardvisningen af \"RT set fra oven\"" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Rediger gruppen %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Modificer søgninger i instrument panel %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Rediger observatører for køen" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Modificer abonnement på instrumentpanel %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Rediger brugeren %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Rediger sag # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Rediger sag #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Rediger sager" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Rediger brugerrettigheder for ekstrafelter %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Rediger brugerrettigheder for gruppe %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Rediger brugerrettigheder for kø %1" #: NOT FOUND IN SOURCE msgid "Modify watchers for queue '%1'" msgstr "Rediger observatører for kø '%1'" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "RedigerACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "RedigerEkstrafelt" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "ModificerInstrumentPanel" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "ModificerGruppeInstrmentPanel" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "ModificerEgetInstrumentPanel" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "RedigeretEgetMedlemskab" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "RedigerKøObservatører" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "RedigerScrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "RedigerSelv" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "RedigerSkabelon" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "RedigerSag" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Man" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Man." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Mandag" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Mandag til fredag" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Mere" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Mere om %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Flyt ned" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Flyt op" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Flere" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Egenskab 'Navn' skal angives" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Mine %1 sager" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "Mine godkendelser" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Min dag" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mine godkendelser" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mine instrumentpaneler" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mine gemte søgninger" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "NYLINIE" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Navn" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Navn i brug" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Need approval from system administrator" msgstr "Kræver godkendelse af systemadministrator" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Aldrig" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Ny" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "Nyt Instrumentpanel" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nye referencer" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Ny adgangskode" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Ny afventende godkendelse" #: NOT FOUND IN SOURCE msgid "New Query" msgstr "Ny søgning" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Ny søgning" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Nye og åbne sager tilhørende %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Nyt ekstrafelt" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Nyt instrument panel" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Ny gruppe" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nye beskeder" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Ny adgangskode" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Ny meddelelse om adgangskode sendt" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Ny kø" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Ny påmindelse:" #: NOT FOUND IN SOURCE msgid "New request" msgstr "Ny sag" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nye rettigheder" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Ny scrip" #: NOT FOUND IN SOURCE msgid "New search" msgstr "Ny søgning" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Ny skabelon" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Ny sag" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Ny sag eksisterer ikke" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "New user" msgstr "Ny bruger" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Ny bruger ved navn" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nye observatører" #: NOT FOUND IN SOURCE msgid "New window setting" msgstr "Ny indstilling for vindue" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Næste" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Næste side" #: NOT FOUND IN SOURCE msgid "Next page" msgstr "Næste side" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "KaldeNavn" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Kaldenavn" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Nej" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Ingen %1 indlæst" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ingen klasse defineret" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Intet ekstrafelt" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Intet ekstrafelt defineret" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ingen gruppe defineret" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Ingen søgning" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ingen kø defineret" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Ingen RT-bruger fundet. Kontakt venligst din RT-administrator.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Intet emne" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Ingen skabelon" #: NOT FOUND IN SOURCE msgid "No Ticket specified. Aborting ticket " msgstr "Ingen sag angivet. Afbryder sag. " #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ingen handling" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Ingen kolonne angivet" #: NOT FOUND IN SOURCE msgid "No command found\\n" msgstr "Ingen kommando fundet\\n" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Ingen kommentar indtastet for denne bruger" #: NOT FOUND IN SOURCE msgid "No correspondence attached" msgstr "Ingen korrespondance vedhæftet" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Ingen instrument paneler." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Ingen beskrivelse af %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Ingen gruppe angivet" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Ingen grupper fundet, der opfylder søgekriterier" #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Ingen nøgle egnet til kryptering" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Ingen nøgler til denne adresse" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Ingen meddelelse vedhæftet" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Ingen grund til kryptering" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Ingen adgangskode sat" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Ingen adgang til at oprette køer" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Ingen adgang til at oprette sager i denne kø '%1'" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Ingen adgang til at oprette brugere" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Ingen adgang til at vise denne sag" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Ingen tilladelse til at gemme søgninger for hele systemet" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Ingen tilladelse til at ændre indstillinger" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Ingen adgang til at se opdater sag" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Ingen principal angivet" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Ingen principaler valgt." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Ingen privat nøgle" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Ingen køer fundet, der opfylder søgekriterier." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Ingen rettigheder specificeret" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Ingen rettigheder fundet" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Ingen rettigheder tildelt." #: NOT FOUND IN SOURCE msgid "No search loaded" msgstr "Ingen søgning indlæst" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Ingen søgning at arbejde med." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Intet emne" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Angivne nøgle findes ikke eller er ikke egnet til signering" #: NOT FOUND IN SOURCE msgid "No ticket id specified" msgstr "Intet sagsnummer angivet" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Ingen sager fundet." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Ingen transaktionstype angivet" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ingen brugbare nøgler." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Ingen brugere fundet, der opfylder søgekriterier" #: NOT FOUND IN SOURCE msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n" msgstr "Ingen gyldig RT-bruger fundet. RT CVS-administrator frakoblet. Kontakt venligst din RT-administrator.\\n" #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Ingen værdi sendt til _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Ingen" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Ingen" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Ikke-eksisterende felt?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Ikke sat" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Ikke fundet" #: NOT FOUND IN SOURCE msgid "Not logged in" msgstr "Ikke logget ind" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ikke logget ind." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Ikke sat" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Endnu ikke implementeret." #: NOT FOUND IN SOURCE msgid "Not yet implemented...." msgstr "Endnu ikke implementeret..." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Noter" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Besked kunne ikke sendes" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Giv besked til AdminCc'ere" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Giv besked til AdminCc'ere som kommentar" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Giv besked til Cc'ere" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Giv besked til Cc'ere som kommentarer" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Giv besked til andre modtagere" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Giv besked til andre modtagere som kommentar" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Giv besked til ejer" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Giv besked til ejer som kommentar" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Giv besked til ejer om deres afviste sag" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notificer ejer om at deres sag er godkendt og er klar til at blive arbjedet videre på" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "Giv besked til ejere om, at deres sag er blevet godkendt af alle godkendere" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "Giv besked til ejere om, at deres sag er blevet godkendt af nogle godkendere" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notificer ejer om at deres sag er blevet godkendt af nogle eller alle godkendere" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Notificer ejere, rekvirenter Cc'er og AdminCc'er" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notificer ejere, rekvirenter, Cc'er og AdminCc'er" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Giv besked til ejere og AdminCc'ere om nye emner, som afventer deres godkendelse" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notificer rekvirent om at deres sag er blevet godkendt af alle godkendere" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Notificer rekvirent om at deres sag er blevet godkendt af en godkender" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Giv besked til rekvirenter" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Giv besked til rekvirenter og Cc'ere" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Giv besked til rekvirenter og Cc'ere som kommentar" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Giv besked til rekvirenter, Cc'ere og AdminCc'ere" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Giv besked til rekvirenter, Cc'ere og AdminCc'ere som kommentar" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Gør mig opmærksom på ulæste beskedder" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Nov" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Nov." #: NOT FOUND IN SOURCE msgid "November" msgstr "November" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Antal søgeresultater" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ELLER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt kunne ikke oprettes" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objekt kunne ikke slettes" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekt oprettet" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekt slettet" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objekt af typen %1 kan ikke håndtere ekstrafelter" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Objekttype mismatch" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Element listen er tom" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Okt." #: NOT FOUND IN SOURCE msgid "October" msgstr "Oktober" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Off-line" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Off-line redigeringer" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Off-line dataoverførsel" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "På %1, skrev %2:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "Ved Lukning" #: etc/initialdata:143 msgid "On Comment" msgstr "Ved kommentar" #: etc/initialdata:115 msgid "On Correspond" msgstr "Ved korrespondance" #: etc/initialdata:104 msgid "On Create" msgstr "Ved oprettelse" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Ved ændring af ejer" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Ved ændring af prioritet" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Ved ændring af kø" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "Ved Afvisning" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "Ved Genåbning" #: etc/initialdata:178 msgid "On Resolve" msgstr "Ved løsning" #: etc/initialdata:149 msgid "On Status Change" msgstr "Ved statusændring" #: etc/initialdata:109 msgid "On Transaction" msgstr "Ved transaktion" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Engangs Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Engangs Cc" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Vis kun godkendelser for sager oprettet efter %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Vis kun godkendelser for sager oprettet før %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Vis kun ekstrafelter for:" #: NOT FOUND IN SOURCE msgid "Open" msgstr "Åben" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Åbne sager" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Åbn URL" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Åbn den" #: NOT FOUND IN SOURCE msgid "Open requests" msgstr "Åbne sager" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Åbne sager" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in a new window" msgstr "Åbn sager (fra liste) i et nyt vindue" #: NOT FOUND IN SOURCE msgid "Open tickets (from listing) in another window" msgstr "Åbn sager (fra liste) i et andet vindue" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Åbn sager ved korrespondance" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Valgmuligheder" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sorteret efter" #: NOT FOUND IN SOURCE msgid "Ordering and sorting" msgstr "Sortering" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organisation" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Oprindelig sag: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Udgående e-mail omkring en kommentar er gemt" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Udgående e-mail gemt" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Tid overskredet, prioritet går mod" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Egne sager" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "EgenSag" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Ejer" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Ejer '%1' har ikke rettigheder til at eje denne sag." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Ejer ændret fra %1 til %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Ejer kunne ikke defineres." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Ejer tvungent ændret fra %1 til %2" #: NOT FOUND IN SOURCE msgid "Owner is" msgstr "Ejer er" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "EjerNavn" #: NOT FOUND IN SOURCE msgid "PVCS Files" msgstr "PVCS-filer" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Side" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "Side %1 af %2" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Side 1 af 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Side ikke fundet" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Personsøger" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "Personsøgertelefon" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Forældre" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Adgangskode" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Adgangskodepåmindelse" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Adgangskode ændret" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Adgangskode skal være på mindst %1 karakterer" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Adgangskode sat" #: NOT FOUND IN SOURCE msgid "Password too short" msgstr "Adgangskode for kort" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Adgangskode: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Adgangskode: Adgang afvist" #: etc/initialdata:463 msgid "PasswordChange" msgstr "KodeordsÆndring" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Adgangskoder stemmer ikke overens." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Adgangskoder stemmer ikke overens. Din adgangskode er ikke blevet ændret." #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Sti til sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Personer" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Udfør en brugerdefineret handling" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Perl Include stier (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl-konfiguration" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Adgang afvist" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Adgang afvist" #: NOT FOUND IN SOURCE msgid "Permissions denied" msgstr "Tilladelser ikke givet" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Personlige instrument paneler" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Personlige grupper" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Personlige grupper" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Personlige grupper:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefonnumre" #: NOT FOUND IN SOURCE msgid "Placeholder" msgstr "Placeholder" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Tjek venligst URL igen." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Mulige skjulte søgninger" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Præferencer" #: NOT FOUND IN SOURCE msgid "Preferences %1 for user %2 ." msgstr "Præferencer %1 for bruger %2 ." #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Præferencer %1 for bruger %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Præferencer gemt for %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Præferencer for bruger %1 gemt." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Indstillinger gemt." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Foretrukne nøgle: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Foretrukket nøgle" #: NOT FOUND IN SOURCE msgid "Prefs" msgstr "Præferencer" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Forbered tømning" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Forr." #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Forrige" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "Forrige side" #: NOT FOUND IN SOURCE msgid "Previous page" msgstr "Forrige side" #: NOT FOUND IN SOURCE msgid "Pri" msgstr "Pri" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Principal %1 ikke fundet." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Udskriv denne besked" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioritet" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioritet starter ved" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privat" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privat:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Privat nøgle" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilegeret" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Privilegeret status: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Privilegerede brugere" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: NOT FOUND IN SOURCE msgid "Product area" msgstr "Produktområde" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudogruppe til internt brug" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Offentlig nøgle '0x%1' er påkrævet for at kunne verificere signatur" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Forespørgsler" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Søgning" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Søgedefinition" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Søgning:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Kø" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Kø %1 ikke fundet" #: NOT FOUND IN SOURCE msgid "Queue '%1' not found\\n" msgstr "Kø '%1' ikke fundet\\n" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Navn på kø" #: NOT FOUND IN SOURCE msgid "Queue Scrips" msgstr "Kø-scrips" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Kø eksisterer allerede" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Kø kunne ikke oprettes" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Kø kunne ikke indlæses." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Kø oprettet" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Kø deaktiveret" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Kø aktiveret" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Kø id" #: NOT FOUND IN SOURCE msgid "Queue is not specified." msgstr "Kø ikke angivet." #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Kø ikke fundet" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "kø rettigheder" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Køs nøgle" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "KøAdminCc" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "KøCc" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "KøNavn" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "KøObservatør" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Køer" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Køer som jeg administrerer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Køer: Jeg er en AdminCc for" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Hurtigsøgning" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Hurtigoprettelse af sager" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1" msgstr "RT %1" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 for %2" #: NOT FOUND IN SOURCE msgid "RT %1 from Best Practical Solutions, LLC." msgstr "RT %1 fra Best Practical Solutions, LLC." #: NOT FOUND IN SOURCE msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n" msgstr "RT %1. Copyright 1996-%1 Jesse Vincent \\n" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT-administration" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "RT Administrator Email" #: NOT FOUND IN SOURCE msgid "RT Authentication error." msgstr "RT-godkendelsesfejl." #: NOT FOUND IN SOURCE msgid "RT Bounce: %1" msgstr "RT-afvisning: %1" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Configuration error" msgstr "RT-konfigurationsfejl" #: NOT FOUND IN SOURCE msgid "RT Critical error. Message not recorded!" msgstr "RT kritisk fejl. Meddelelse ikke gemt!" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT-fejl" #: NOT FOUND IN SOURCE msgid "RT Received mail (%1) from itself." msgstr "RT modtog e-mail (%1) fra sig selv" #: NOT FOUND IN SOURCE msgid "RT Self Service / Closed Tickets" msgstr "RT selvbetjening / lukkede sager" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT størrelse" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT variable faktorer" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "Request Tracker - hurtigt overblik" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "Request Tracker - hurtigt overblik for bruger %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT kan informere dine brugere om nye sager eller nye svar på eksisterende sager. Fortæl os hvor sendmail (eller et sendmail kompatibelt binært program, såsom postfix) kan findes. RT skal også vide hvem der skal kontaktes hvis den modtager en ugyldig email, den email addresse der angives til dette formål må ikke være en der peger tilbage ind i RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan medtage indhold fra en anden web-service, når dette ekstrafelt vises." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan gøre dette ekstrafelts værdier til hyperlinks til en anden tjeneste." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: NOT FOUND IN SOURCE msgid "RT couldn't authenticate you" msgstr "RT kunne ikke godkende dig" #: NOT FOUND IN SOURCE msgid "RT couldn't find requestor via its external database lookup" msgstr "RT kunne ikke finde rekvirent via sit eksterne databaseopslag" #: NOT FOUND IN SOURCE msgid "RT couldn't find the queue: %1" msgstr "RT kunne ikke finde køen: %1" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT kunne ikke gemme din session." #: NOT FOUND IN SOURCE msgid "RT couldn't validate this PGP signature. \\n" msgstr "RT kunne ikke validere denne PGP-signatur. \\n" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT for %1" #: NOT FOUND IN SOURCE msgid "RT for %1: %2" msgstr "RT for %1: %2" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: NOT FOUND IN SOURCE msgid "RT has proccessed your commands" msgstr "RT har behandlet dine kommandoer" #: NOT FOUND IN SOURCE msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. It is distributed under Version 2 of the GNU General Public License." msgstr "RT er © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>. Bliver distribueret under Version 2 af 'GNU General Public License'." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT bliver brugt af firmaer der figurerer på Fortune 100-listen, enmands firmaer, statslige organer, undervisnings institutioner, hospitaler, ikke statsstyrede organisationer (NGO), biblioteker, open source projekter og alle mulige andre typer af organisationer på alle syv kontinenter." #: NOT FOUND IN SOURCE msgid "RT thinks this message may be a bounce" msgstr "RT tror, at denne besked er en afvisning" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT vil oprette forbindelse til databasen ved hjælp af denne bruger. Den vil blive oprettet for dig." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vil oprette en bruger kaldet \"root\" og anvende dette som brugerens password" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT vil kigge efter alt andet, som du indtaster i sagsemnerne." #: NOT FOUND IN SOURCE msgid "RT will process this message as if it were unsigned.\\n" msgstr "RT vil behandle denne besked, som om den ikke var underskrevet.\\n" #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT vil erstatte %1 og %2 med henholdsvis sagsnummer og ekstrafeltværdi" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT vil erstatte __ID__ og __EkstraFelt__ med henholdsvis sagsnummer og ekstrafeltværdi" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT anvender denne streng til at identificere præcis denne instans af RT, den vil søge i emne felterne i indkomne mails efter denne streng for at bestemme hvilken sag en given mail hører til. Vi anbefaler at du indtaster dit internet domæne i dette felt. (F.eks. eksempel.dk)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT kan samarbejde med et antal forskellige databaser. MySQL, PostgreSQL, Oracle og SQLite er alle understøttede." #: NOT FOUND IN SOURCE msgid "RT's email command mode requires PGP authentication. Either you didn't sign your message, or your signature could not be verified." msgstr "RT's e-mail-kommandotilstand kræver PGP-verificering. Enten har du ikke underskrevet din besked, eller også kunne din signatur ikke verificeres." #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Fulde navn" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "FuldeNavn" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Modtager" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Rekursivt medlem" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Reference fra %1 tilføjet" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Reference fra %1 slettet" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Reference til %1 tilføjet" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Reference til %1 slettet" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Refereret til af" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "RefereretTilAf" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Refererer til" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "ReferererTil" #: NOT FOUND IN SOURCE msgid "Refine" msgstr "Præciser" #: NOT FOUND IN SOURCE msgid "Refine search" msgstr "Præciser søgning" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Genopfrisk" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Opdater denne side hver %1 minut." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Påmindelse '%1' tilføjet" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Påmindelse '%1' afsluttet" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Påmindelse '%1' genåbnet" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Påmindelse for sag #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Påmindelser" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Påmindelser for sag #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Fjern AdminCc" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Fjern bogmærker" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Fjern Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Fjern rekvirent" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Svar" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Svaradresse" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Svar til rekvirenter" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Svar på sager" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "SvarPåSag" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Rapporter" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Rekvirent" #: NOT FOUND IN SOURCE msgid "Requestor email address" msgstr "Rekvirent e-mail-adresse" #: NOT FOUND IN SOURCE msgid "Requestor(s)" msgstr "Rekvirent(er)" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "RekvirentGruppe" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Rekvirenter" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Sager skulle være forfaldne om" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Påkrævet parameter '%1' ikke angivet" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Nulstil" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Nulstil hemmelig autentificering token" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Sæt tilbage til standard" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Hjemme" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Løs" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Løs sag #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Løst" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Løst af ejer" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Løst i datorækkefølge" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Sager løst i en periode, fordelt pr. ejer" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Sager løst, fordelt pr. ejer" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "LøstRelativt" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Svar" #: NOT FOUND IN SOURCE msgid "Response to requestors" msgstr "Svar til rekvirenter" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultater" #: NOT FOUND IN SOURCE msgid "Results per page" msgstr "Resultater pr. side" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Vend tilbage til sagen" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Gentag adgangskoden" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Gå tilbage" #: NOT FOUND IN SOURCE msgid "Right %1 not found for %2 %3 in scope %4 (%5)\\n" msgstr "Rettighed %1 ikke fundet for %2 %3 i område %4 (%5)\\n" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Rettighed overdraget" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Rettighed tildelt" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Rettighed indlæst" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Rettighed kunne ikke inddrages" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Rettighed ikke fundet" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Rettighed ikke indlæst." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Rettighed inddraget" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Rettigheder" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Rettigheder kunne ikke tildeles %1" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "Rettigheder kunne ikke inddrages for %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Roller" #: NOT FOUND IN SOURCE msgid "RootApproval" msgstr "RodGodkendelse" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Rækker" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Rækker pr. boks" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rækker pr. side" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite er en database der udmærker sig ved ikke at have behov for en selvstændig server eller nogen form for konfiguration. RT's udviklere anbefaler denne database til test, demo og udviklingsformål, men ikke til høj-volumen produktions systemer." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Lør" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Lør." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Lørdag" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Gem" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Gem ændringer" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Gem præferencer" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Gem som ny" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Gem ændringer" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Gemte %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Gemt søgning %1 kunne ikke findes" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Gemte diagrammer" #: NOT FOUND IN SOURCE msgid "Saved search %1" msgstr "Gemt søgning %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Gemte søgninger" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip oprettet" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Scrip-felter" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip slettet" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Scrips og modtagere" #: NOT FOUND IN SOURCE msgid "Scrips for %1\\n" msgstr "Scrip for %1\\n" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scrips der gælder for alle køer" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Søg" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: NOT FOUND IN SOURCE msgid "Search Criteria" msgstr "Søgekriterier" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Søgepræferencer" #: NOT FOUND IN SOURCE msgid "Search attribute load failure" msgstr "Indlæsningsfejl på søgeegenskab" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Søg efter godkendelser" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Søg efter sager" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name" msgstr "Søg efter sager. Indtast ID-numre, køer inddelt efter navn." #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Søg efter sager. Angiv id numre, køer ved navn, ejere ved brugernavn og rekvirenter ved email adresser." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Søgemuligheder" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Søgeresultater fordelt pr. %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Interval mellem genopfriskning af søgeresultater" #: NOT FOUND IN SOURCE msgid "Search update: %1" msgstr "Søgeopdatering: %1" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Det kan tage lang tid at søge på den fulde tekst i hver sag, men hvis det er nødvendigt at gøre det, kan du søge efter hvilket som helst ord i den komplette sagshistorik ved at taste fulltext:ord." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "Sikkerhed:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Se også:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Se værdier for det brugerdefinerede felt" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Se ekstrafelter" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Se udgående e-mail-beskeder og deres modtagere" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Se private kommentarer for sager" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Se resumé af sager" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "SeEkstrafelt" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "SeInstrumentPanel" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "SeGruppe" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "SeGruppeInstrumentPanel" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "SeEgetInstrumentPanel" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "SeKø" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Vælg" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Vælg databasetype" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Vælg et ekstrafelt" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Vælg en gruppe" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Vælg en kø" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Vælg en kø til din nye sag" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Vælg en bruger" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vælg et andet sprog" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Vælg ekstrafelt" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Vælg brugerdefinerede feltet til alle køer" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Vælg ekstrafelter for alle brugergrupper" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Vælg ekstrafelter for alle brugere" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Vælg ekstrafelter for sager i alle køer" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Vælg ekstrafelter for transaktioner på sager i alle køer" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Vælg instrument panel" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Vælg gruppe" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Vælg flere værdier" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Vælg en værdi" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Vælg kø" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Vælg køer, der skal vises på siden \"Request Tracker - hurtigt overblik\"" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Vælg scrip" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Vælg skabelon" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Vælg op til %1 værdier" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Vælg bruger" #: NOT FOUND IN SOURCE msgid "SelectMultiple" msgstr "VælgFlere" #: NOT FOUND IN SOURCE msgid "SelectSingle" msgstr "VælgEnkelt" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valgte ekstrafelter" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Den valgte nøgle har enten ingen troværdighed eller den eksisterer ikke længere." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Valgte objekter" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Det udvalgte er ændret. Gem dine ændringer." #: NOT FOUND IN SOURCE msgid "Self Service" msgstr "Selvbetjening" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Email afsendt" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Send e-mail til alle observatører" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Send e-mail til alle observatører som en \"kommentar\"" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Send mail til ejer og alle rekvirenter" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Send mail til ejer og alle rekvirenter i form af en kommentar" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Send e-mail til rekvirenter og Cc'ere" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Send e-mail til rekvirent og Cc'ere som en kommentar" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Sender en besked til rekvirenterne" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Sender e-mail til synligt angivne Cc'ere og Bcc'ere" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Sender e-mail til Cc'erne" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Sender e-mail to Cc'ere som en kommentar" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Sender e-mail til de administrative Cc'ere" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Sender e-mail til de administrative Cc'ere som en kommentar" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Sender e-mail til ejeren" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Sep" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Sep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "September" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Indstillinger" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Vis" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "Vis godkendelser" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Vis kolonner" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Vis resultater" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Vis egenskaber for sager på %1 niveau" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Vis godkendte sager" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Vis også" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Vis stamdata" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Vis afviste sager" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Vis detaljer" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Vis henvisningsbeskrivelser" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Vis den ældste historie først" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Vis afventende sager" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Vis sager, som afventer andre godkendelser" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: NOT FOUND IN SOURCE msgid "Show ticket private commentary" msgstr "Vis private kommentarer for sager" #: NOT FOUND IN SOURCE msgid "Show ticket summaries" msgstr "Vis resumé for sager" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "VisACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "VisGodkendelserFane" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "VisKonfigTab" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "VisUdgåendeEmail" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "VisGemteSøgninger" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "VisScrips" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "VisSkabelon" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "VisSag" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "VisSagKommentarer" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Makulator" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Der skal eksistere et katalog som makulatoren kan skrive dumps i. Du bedes venligst verificere at kataloget %1 findes og at din webserver har rettigheder til at skrive i det." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Der skal eksistere et katalog som makulatoren kan skrive dumps i. Du bedes venligst verificere at kataloget %1 findes og at din webserver har rettigheder til at skrive i det." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Underskriv" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Underskriv som standard" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Tilmeld som sagsrekvirent, sag eller kø-Cc" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Tilmeld som sag eller kø-AdminCc" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Signatur" #: NOT FOUND IN SOURCE msgid "Signed in as %1" msgstr "Logget ind som %1" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Underskrivning slået fra" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Underskrivning slået til" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Enkel søgning" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Enkelt" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Størrelse" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Spring menu over" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Springer over bruger som er slået fra" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Lille" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Nogle browsere indlæser kun indhold fra det samme domæne som din RT-server." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sorter" #: NOT FOUND IN SOURCE msgid "Sort key" msgstr "Sorteringsnøgle" #: NOT FOUND IN SOURCE msgid "Sort results by" msgstr "Sorter resultat efter" #: NOT FOUND IN SOURCE msgid "SortOrder" msgstr "SorteringsRækkefølge" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortering" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Specificer om dette er en daglig eller ugentlig kørsel." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Regneark" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Trin" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: NOT FOUND IN SOURCE msgid "Stalled" msgstr "Sat i bero" #: NOT FOUND IN SOURCE msgid "Start page" msgstr "Startside" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Startet" #: NOT FOUND IN SOURCE msgid "Started date '%1' could not be parsed" msgstr "Startdato '%1' kunne ikke fortolkes" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "StartetRelativt" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Starter" #: NOT FOUND IN SOURCE msgid "Starts By" msgstr "Starter den" #: NOT FOUND IN SOURCE msgid "Starts date '%1' could not be parsed" msgstr "Startdato '%1' kunne ikke fortolkes" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "StarterRelativt" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Stat" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Status" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Statusændring" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Status ændret fra %1 til %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: NOT FOUND IN SOURCE msgid "StatusChange" msgstr "StatusÆndring" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Stjæl" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Stjæl sager" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "StjælSag" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Trin %1 af %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Stjålet fra %1" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Emne" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Emne mærke" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Emne ændret til %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Emnemærke ændret til %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Indsend" #: NOT FOUND IN SOURCE msgid "Submit Workflow" msgstr "Godkend arbejdsgang" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Abonner" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Abonner på instrumentpanel %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Abonner på instrumentpaneler" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "AbonnerInstrumentPanel" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Abonner på instrumentpanel %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Abonnement" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Abonnement kunne ikke oprettes: %1" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Lykkedes" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Data dekrypteret uden problemer" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Data krypteret uden problemer" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Søn" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Søn." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Søndag" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "Superbruger" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Suspenderet" #: NOT FOUND IN SOURCE msgid "System" msgstr "System" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Systemkonfiguration" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "System instrument paneler" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemforvalg" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Systemfejl" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Systemfejl: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systemværktøjer" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Systemfejl. Rettighed ikke overdraget." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Systemfejl. Rettighed ikke tildelt." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Systemgrupper" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "System rettigheder" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRolleGruppe til internt brug" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRENG" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Tag" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Tag sager" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "TagSag" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Taget" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Fortæl os lidt om hvordan vi finder den database RT kommer til at bruge" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Skabelon" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Skabelon #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Skabelon %1 slettet" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Skabelon '%1' kunne ikke findes" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Skabelon slettet" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Skabelonen er tom" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Skabelonen er en obligatorisk parameter" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Skabelon ikke fundet" #: NOT FOUND IN SOURCE msgid "Template not found\\n" msgstr "Skabelon ikke fundet\\n" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Skabelon fortolket" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Skabelonfortolkningsfejl" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Skabeloner" #: NOT FOUND IN SOURCE msgid "Templates for %1\\n" msgstr "Skabeloner til %1\\n" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "Tekst" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Indholdet af tekst filen bliver ikke vist fordi dette er slået fra i præferencer." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Det er allerede den nuværende værdi" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Det er ikke værdi for dette ekstrafelt" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Det er den samme værdi" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Den principal har allerede den rettighed" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Den principal er allerede en %1 for denne kø" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Den principal er allerede en %1 for denne sag" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Den principal er ikke en %1 for denne kø" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Den principal er ikke en %1 for denne sag" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Den kø eksisterer ikke" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Denne sag har uløste afhængigheder" #: NOT FOUND IN SOURCE msgid "That user already has that right" msgstr "Den bruger har allerede den rettighed" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Brugeren ejer allerede den sag" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Brugeren eksisterer ikke" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Brugeren er allerede privilegeret" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Brugeren er allerede uprivilegeret" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Brugeren er nu privilegeret" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Brugeren er nu uprivilegeret" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Den bruger må ikke eje sager i den kø" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Dette er ikke et numerisk ID" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Stamdata" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "En sags CC" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Database administratorens database password" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "En sags administrative CC" #: NOT FOUND IN SOURCE msgid "The comment has been recorded" msgstr "Kommentaren er gemt" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Din database servers domæne navn (F.eks. 'database.eksempel.dk')." #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Den følgende kommando vil finde alle aktive sager i køen 'generel' og vil sætte deres prioritet til 99, hvis de ikke er blevet rørt i 4 timer:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Følgende søgninger er blevet slettet og hver enkelt vil blive fjernet fra instrumentpanelet næste gang det opdateres." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Følgende søgninger er muligvis ikke synlige, for alle brugere der kan se dette instrumentpanel." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Nøglen er slået fra" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Nøglen er blevet trukket tilbage" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Nøglen er udløbet" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Nøglen har fuld troværdighed" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Nøglen har ultimativ troværdighed" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Den nye værdi er sat." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Sagens ejer" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Kunne ikke finde den ønskede side" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Sagens rekvirent" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "De valgte indstillinger er gemt i %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Systemet er ikek i stand til at signere udgående email beskeder. Dette indikere normalt at løsenet ikke blev sat korrekt eller at GPG Agent er nede. Du bedes venligst informere din system administrator om dette øjeblikkeligt. De problemramte adresser er:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Adskillige af de tilgængelige nøgler er passende at bruge til kryptering." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Der er ulæste beskeder i denne sag." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Denne nøgle har marginal troværdighed." #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Der er ingen tilgængelige nøgler som er passende at bruge til kryptering." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Der er en enkelt passende nøgle, men dens troværdighedsniveau er ikke defineret." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Disse kommentarer er normalt ikke synlige for brugeren" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Disse konfigurationsmuligheder dækker nogle af de grundlæggende informationer RT behøver for at fungere. Vi skal kende navnet på din RT installation og domænenavnet hvor RT bor. Du skal også definere et løsen til din administrative bruger." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Dette ekstrafelt gælder ikke for dette objekt" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Denne funktion er kun tilgængelig for systemadministratorer" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Dette kan betyde at kataloget '%1' ikke er skrivbart eller at en tabel i databasen enten mangler eller er korrumperet." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Denne besked vil blive sendt til..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: NOT FOUND IN SOURCE msgid "This ticket %1 %2 (%3)\\n" msgstr "Denne sag %1 %2 (%3)\\n" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dette værktøj tillader brugeren at benytte vilkårlige Perl-moduler inde fra RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Denne transaktion har tilsyneladende ikke noget indhold" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Denne brugers %1 højest prioriterede sager" #: NOT FOUND IN SOURCE msgid "This user's 25 highest priority tickets" msgstr "Denne bruger 25 højest prioriterede sager" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Tor" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Tors." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Torsdag" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Sag" #: NOT FOUND IN SOURCE msgid "Ticket # %1 %2" msgstr "Sag # %1 %2" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Sag #%1 Jumbo-opdatering: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Forholdsdiagram for sag #%1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Sag #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Sag %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Sag %1 oprettet i kø '%2'" #: NOT FOUND IN SOURCE msgid "Ticket %1 loaded\\n" msgstr "Sag %1 indlæst\\n" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Sag %1 : %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Sagens ekstrafelter" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Sagshistorik # %1 %2" #: NOT FOUND IN SOURCE msgid "Ticket Id" msgstr "Sagsnummer" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Sag løst" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Søgning efter sager" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Sagstransaktioner" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket attachment" msgstr "Vedhæftet fil til sag" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Sagsindhold" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Sagsindholdstype" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Sag kunne ikke oprettes på grund af en intern fejl" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Sagen kunne ikke indlæses" #: NOT FOUND IN SOURCE msgid "Ticket created" msgstr "Sag oprettet" #: NOT FOUND IN SOURCE msgid "Ticket creation failed" msgstr "Oprettelse af sag mislykkedes" #: NOT FOUND IN SOURCE msgid "Ticket deleted" msgstr "Sag slettet" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Sagsvisning" #: NOT FOUND IN SOURCE msgid "Ticket id not found" msgstr "Sagsnummer ikke fundet" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Sagens metadata" #: NOT FOUND IN SOURCE msgid "Ticket not found" msgstr "Sag ikke fundet" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Satsstatus ændret" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: NOT FOUND IN SOURCE msgid "Ticket watchers" msgstr "Sagsobservatører" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "SagSQL søgemodul" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Sager" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Sager %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Sager %1 af %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Sager oprettet efter" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Sager oprettet før" #: NOT FOUND IN SOURCE msgid "Tickets from %1" msgstr "Sager fra %1" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Sager løst efter" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Sager løst før" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Sager som afhænger af denne godkendelse:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Anslået tid" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Resterende tid" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tid brugt" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Resterende tid" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tid for sidevisning" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Tid brugt" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "EstimeretTidsforbrug" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "TidTilbage" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "TidBrugt" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Tidszone" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Titel" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Til" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:" msgstr "For at generere en difference af denne beslutning:" #: NOT FOUND IN SOURCE msgid "To generate a diff of this commit:\\n" msgstr "For at generere en difference af denne beslutning:\\n" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Ved forespørgsel om support, undervisning, specialudvikling eller licenser, kontakt venligst %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Meddelt" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Værktøjer" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Total" #: etc/initialdata:249 msgid "Transaction" msgstr "Transaktion" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transaktion %1 tømt" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transaktion oprettet" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Transaktions-ekstrafelter" #: NOT FOUND IN SOURCE msgid "Transaction->Create couldn't, as you didn't specify a ticket id" msgstr "Transaktion->Kunne ikke oprette, fordi du ikke angav et sagsnummer" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaktion->Kunne ikke oprette, fordi ikke angav en objekttype og et ID" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "TransaktionsDato" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transaktioner kan ikke ændres" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Troværdighed" #: NOT FOUND IN SOURCE msgid "Trying to delete a right: %1" msgstr "Forsøger at slette en rettighed: %1" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Tir" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Tirs." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Tirsdag" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Type" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Type ændret fra '%1' til '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Var ikke i stand til at afgøre elementets type eller id" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Det er ikke muligt at abonnere på instrumentpanel %1: Utilstrækkelige tilladelser" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Ikke implementeret" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix log-ind" #: NOT FOUND IN SOURCE msgid "UnixUsername" msgstr "UnixBrugernavn" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Ukendt (ingen troværdighedsværdi tildelt)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Ukendt (denne værdi er ny for systemet)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Ukendt IndholdsKodning %1" #: NOT FOUND IN SOURCE msgid "Unknown field: $key" msgstr "Ukendt felt: $key" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Ukendt felt: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ubegrænset" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "Unavngivet instrumentpanel" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Unavngiven søgning" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Uprivilegeret" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ikke-valgte ekstrafelter" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Ikke-valgte objekter" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Fjern privat nøgle" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Ikke taget" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Opdater" #: NOT FOUND IN SOURCE msgid "Update All" msgstr "Opdater alle" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Opdater graf" #: NOT FOUND IN SOURCE msgid "Update ID" msgstr "Opdater ID" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Opdater sag" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Opdater type" #: NOT FOUND IN SOURCE msgid "Update all these tickets at once" msgstr "Opdater alle disse sager på en gang" #: NOT FOUND IN SOURCE msgid "Update email" msgstr "Opdater e-mail" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Opdater formattering og udfør søgning" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Opdater flere sager" #: NOT FOUND IN SOURCE msgid "Update name" msgstr "Opdater navn" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Opdatering ikke registreret." #: NOT FOUND IN SOURCE msgid "Update selected tickets" msgstr "Opdater valgte sager" #: NOT FOUND IN SOURCE msgid "Update signature" msgstr "Opdater signatur" #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Opdater sag" #: NOT FOUND IN SOURCE msgid "Update ticket # %1" msgstr "Opdater sag # %1" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Opdater sag #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Opdater sag #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Opdateringstype var hverken korrespondance eller kommentar" #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "OpdaterStatus" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Opdateret" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Opdaterede den gemte søgning ved navn \"%1\"" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Overfør" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Overfør flere filer" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Overfør flere billeder" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Overfør en fil" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Overfør et billede" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Overfør op til %1 filer" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Overfør op til %1 billeder" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Overfør dine ændringer" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Brug: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Brug SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Brug standard (%1)" #: NOT FOUND IN SOURCE msgid "Use fixed-width font to display plaintext messages" msgstr "Brug en fast-bredde font til at vise beskeder der kun indeholder tekst" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Brug andre RT-administrative værktøjer" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Brug systemstandard (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Bruger" #: NOT FOUND IN SOURCE msgid "User %1 %2: %3\\n" msgstr "Bruger %1 %2: %3\\n" #: NOT FOUND IN SOURCE msgid "User %1 Password: %2\\n" msgstr "Bruger %1 adgangskode: %2\\n" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Bruger '%1' kunne ikke findes" #: NOT FOUND IN SOURCE msgid "User '%1' not found" msgstr "Bruger '%1' ikke fundet" #: NOT FOUND IN SOURCE msgid "User '%1' not found\\n" msgstr "Bruger '%1' ikke fundet\\n" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Bruger (oprettet - udløber)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Brugerdefineret" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Brugerdefinerede betingelser og handlinger" #: NOT FOUND IN SOURCE msgid "User ID" msgstr "Bruger-ID" #: NOT FOUND IN SOURCE msgid "User Id" msgstr "Bruger-ID" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Brugerrettigheder" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Bruger bad om en ukendt opdateringstype for ekstrafelt %1 til %2 objekt #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Bruger kunne ikke oprettes: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Bruger oprettet" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Brugerdefinerede grupper" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Bruger deaktiveret" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Bruger aktiveret" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Brugeren har en tom email adresse" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Bruger indlæst" #: NOT FOUND IN SOURCE msgid "User notified" msgstr "Sendt besked til bruger" #: NOT FOUND IN SOURCE msgid "User view" msgstr "Brugervisning" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Brugers GnuPG nøgle" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Brugerdefinerede grupper" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Brugernavn" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Format på brugernavn" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Brugere" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Brugere som opfylder søgekriterier" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Bruger transaktion #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Gyldig søgning" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Validering" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: NOT FOUND IN SOURCE msgid "ValueOfQueue" msgstr "KøVærdi" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Værdier" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Diverse RT rapporter" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Se denne gruppes instrument paneler" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "Vis instrumentpaneler for gruppe" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Vis personlige instrumentpaneler" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Vis instrumentpaneler for system" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "Højden på HDSEHDF skriveværktøjet" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "HDSEHDF skriveværktøj" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Advarsel! Beskeden er IKKE signeret!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Advarsel: Du har ikke angivet nogen e-post-adresse, du vil ikke modtage dette instrumentpanel før du har angivet en e-post-adresse" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Observer" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "ObserverSomAdminCC" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Observatør" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "ObservatørGruppe" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Observatører" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Den angivne database kunne findes og der er oprettet forbindelse som database administrator. Du kan klikke på 'Grundlæggende tilpasning' for at fortsætte med at tilpasse RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Web port" #: NOT FOUND IN SOURCE msgid "WebEncoding" msgstr "WebKodning" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Ons" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Ons." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Onsdag" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Velkommen til RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Hvad lavede jeg i dag" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Hvad er RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Når RT ikke kan håndtere en email, hvor skal den da sendes hen?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "Når en sag er blevet godkendt af alle godkendere, tilføj korrespondance til den oprindelige sag" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "Når en sag er blevet godkendt af hvilken som helst godkender, tilføj korrespondance til den oprindelige sag" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Når en sag oprettes" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Når en godkendelsessag oprettes, giv besked til ejeren og AdminCc om det punkt, der afventer deres godkendelse" #: etc/initialdata:110 msgid "When anything happens" msgstr "Når der sker noget som helst" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Når en sag bliver lukket" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Når en sag bliver afvist" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Når en sag er blevet løst" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Når en sags ejer ændres" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Når en sags prioritet ændres" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Når en sags kø ændres" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Når en sags status ændres" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Når en brugerdefineret betingelse forekommer" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Når kommentarer kommer ind" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Når korrespondance kommer ind" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Angiv hvor et sendmail binært-kompatibelt program kan findes." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Arbejde" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "Work offline" msgstr "Arbejde off-line" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "Arbejdstelefon" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Arbejdet" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Ja" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Du kan redigere dette instrumentpanel og dine abonnementer for det i RT." #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Du ejer allerede denne sag" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "" #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Du er ikke en autoriseret bruger" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Du kan hoppe videre til den første ulæste besked eller hoppe videre til den første ulæste besked samtidig med at du markerer alle beskeder som læste." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kan også redigere selve den foruddefinerede søgning" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Du kan kun videretildele sager, som du ejer, eller som ikke har en ejer" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Du kan kun tage sager uden ejer" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Du har ikke SuperBruger rettigheder." #: NOT FOUND IN SOURCE msgid "You don't have permission to view that ticket.\\n" msgstr "Du har ikke tilladelse til at se den sag.\\n" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Du fandt %1 sager i kø %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Du er blevet logget ud af RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Du har ikke tilladelse til at oprette sager i den kø." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Du må ikke oprette sager i den kø." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Du skal indtaste en administrativ adgangskode" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Du bør vælge den database du eller din lokale database administrator er mest fortrolig med." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Du er velkommen til at logge ind igen" #: NOT FOUND IN SOURCE msgid "Your %1 requests" msgstr "Dine %1 sager" #: NOT FOUND IN SOURCE msgid "Your RT administrator has misconfigured the mail aliases which invoke RT" msgstr "Din RT-administrator har ikke konfigureret de mail-alias'er, der starter RT, korrekt" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "Din sag er blevet godkendt af %1. Andre godkendelser afventer muligvis stadigvæk." #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "Din sag er blevet godkendt." #: NOT FOUND IN SOURCE msgid "Your request was rejected" msgstr "Din sag blev afvist." #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "Din sag blev afvist." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Dit brugernavn eller din adgangskode er forkert." #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Postnummer" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ingen]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "Efter"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "tillad oprettelse af gemte søgninger"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "tillad indlæsning af gemte søgninger"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "som givet til %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "søjle"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "Før"

#: NOT FOUND IN SOURCE
msgid "belongs to"
msgstr "tilhører"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "bund til top"

#: NOT FOUND IN SOURCE
msgid "chart"
msgstr "diagram"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "klik for at markere/afmarkere alle elementer på en gang"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "lukket"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "indeholder"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "indhold"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "indholdstype"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "korrespondance (sandsynligvis) ikke sendt"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "korrespondance sendt"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "brugerdefineret felt '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "dagligt"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "dagligt kl. %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dage"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "slet"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "slettet"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not belong to"
msgstr "tilhører ikke"

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "stemmer ikke overens"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "indeholder ikke"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "stemmer ikke"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "download"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "lig med"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "fejl: kan ikke flytte ned"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "fejl: kan ikke flytte til venstre"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "fejl: kan ikke flytte op"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "fejl: intet at slette"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "fejl: intet at flytte"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "fejl: intet at skifte"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "hver"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "afviklede udvidelsesmodul problemfrit"

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "filnavn"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "fuld"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "større end"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "gruppe '%1'"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "fordelt pr. %1"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "timer"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "ID"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "er"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "er ikke"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "nøgle deaktiveret"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "nøgle udløbet"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "nøgle tilbagekaldt"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "venstre til højre"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "mindre end"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginal"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "stemmer overens"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maksimal dybde"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min."

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minutter"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "månedligt"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "månedligt (dag nummer %1) kl. %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "måneder"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "aldrig"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "ny"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "nej"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "intet navn"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "ingen værdi"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "ingen"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "ikke lig med"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "ingenting"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "elementer blev fjernet uden problemer"

#: NOT FOUND IN SOURCE
msgid "offer"
msgstr "tilbud"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "Ved"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "åben"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "åben/luk"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "anden..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "personlig gruppe '%1' for bruger '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "tærte"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "udvidelsesmodul returnerede en tom liste"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "kø %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "afvist"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "løst"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "højre til venstre"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek."

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "se elementlisten nedenfor"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "vis godkendelsesfanen"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "vis konfigurationsfane"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "regneark"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "sat i bero"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "style: %1"
msgstr "stil: %1"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "oversigtsrækker"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "system %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "systemgruppe '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "den kaldende komponent angav ikke hvorfor"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "standard adresserne der vil blive vist i From: og Reply-To: hovederne i en korrespondance mail."

#: NOT FOUND IN SOURCE
msgid "ticket #%1"
msgstr "sag #%1"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "sag #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "top til bund"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "ultimativ"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "ubeskrevet gruppe %1"

#: NOT FOUND IN SOURCE
msgid "undescripbed group %1"
msgstr "ubeskrevet gruppe %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "bruger %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "udførlig"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "ugentlig"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "ugentligt (på en %1) kl. %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "uger"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "hvilken port din webserver vil lytte på, f.eks. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "med brevhoved"

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "med skabelon %1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "år"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "ja"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/pl.po0000664000175000017500000115224112262650742013753 0ustar  chmrrchmrr# Copyright (c) 2002 Jesse Vincent 
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-05 23:57+0000\n"
"Last-Translator: Alex Vandiver \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:12+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (brak klucza publicznego!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (niezaufany!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "Nr"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "nr %1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 nr%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr ""

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr ""

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %3 %2 %7, %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 zostały dodane"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "przed %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 zostało zamienione na %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 zostało usunięte"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 zostało usunięte."

#: NOT FOUND IN SOURCE
msgid "%1 %2 of group %3"
msgstr "%1 %2 z groupy %3"

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 zmieniono na %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 zapisano."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 zaktualizowano"

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 wg szablonu %3"

#: NOT FOUND IN SOURCE
msgid "%1 (%2) %3 this ticket\\n"
msgstr "%1 (%2) %3 tego zgłoszenia\\n"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) przez %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Niezmienione)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (z %2)"

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "wyświetlone %1 - %2"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Ustaw \"Zaloguj się do\" w opcjach konfiguracji"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - warunek przejścia na %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Status wyjściowy zaktualizowany na STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Podaj id szablonu, który ma być użyty"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr ""

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Określ nazwę lub ID szablonu(ów) który chcesz użyć."

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Określ moduł działań, którego chcesz użyć"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr ""

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Określ moduł warunków, którego chcesz użyć"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Określ moduł wyszukiwania, którego chcesz użyć"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Wszelkie prawa zastrzeżone 1996-%3 %4"

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "Skrypt %1 został załadowany"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "dodano %1 jako wartość dla %2"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on"
msgstr "do określenia aliasów dla %1 wymagany numer zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on "
msgstr "do określenia aliasów dla %1 wymagany numer zgłoszenia "

#: NOT FOUND IN SOURCE
msgid "%1 aliases require a TicketId to work on (from %2) %3"
msgstr "do określenia aliasów dla %1 wymagany numer zgłoszenia (od %2) %3"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr ""

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr ""

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "Wydaje się, że %1 to obiekt lokalny, ale nie udało się wyszukać go w bazie danych"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 przez %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 zmieniło się z %2 na %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 wykres przez %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "kopia %1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "nie udało się ustawić %1 na %2"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't init a transaction (%2)\\n"
msgstr "%1 nie udało się rozpocząć transakcji (%2)\\n"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 nie udało się ustawić statusu na zamknięty. Baza danych RT może być niespójna"

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 utworzono"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 usunięto"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr ""

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 nie istnieje."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr ""

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 zgłoszeń o najwyższym priorytecie, których jestem właścicielem"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "%1 zgłoszeń o najwyższym priorytecie, których właścicielem jest użytkownik..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "%1 zgłoszeń o najwyższym priorytecie zarejestrowanych przez użytkownika..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 jest narzędziem umożliwiającym obsługę zgłoszeń z zewnętrznej aplikacji do sporządzania wykazów, takiej jak cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 nie jest już %2 dla tej kolejki"

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 nie jest już %2 dla tego zgłoszenia"

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 nie jest już wartością pola %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 isn't a valid Queue id."
msgstr "%1 nie jest aktualnie obowiązującym Id kolejki"

#: NOT FOUND IN SOURCE
msgid "%1 matches"
msgstr "%1 pasuje"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min."

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 ostatnio zaktualizowanych artykułów"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 najnowszych artykułów"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 zgłoszeń bez właściciela"

#: NOT FOUND IN SOURCE
msgid "%1 not shown"
msgstr "%1 nie zostało wyświetlone"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objets"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 - uprawnienia"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 succeeded\\n"
msgstr "%1 udało się"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 aktualizacja: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "Aktualizacja %1: Bez dokonanych zmian"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 zaktualizowano"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 zamknie wszystkie części zamykanego zgłoszenia grupowego."

#: NOT FOUND IN SOURCE
msgid "%1 will stall a [local] BASE if it's dependent [or member] of a linked up request."
msgstr "%1 zamknie bazę lokalną, jeśli jest powiązana z podłączonym zgłoszeniem (lub jest jego częścią)"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr ""

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Zapisane zapytania %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: nie określono załącznika"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr ""

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr ""

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Nowe zgłoszenie w%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr ""

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' to nieprawidłowa wartość statusu"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "'%1' not a recognized action. "
msgstr "'%1' n'est pas une action connue. "

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check box to delete group member)"
msgstr "(Zaznacz pole, aby usunąć element z grupy)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(Zaznacz pole, aby usunąć skrypt)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Zaznacz pole, aby usunąć)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Zaznacz pola, aby usunąć)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Zaznacz pola przy odbiorcach na liście, aby zablokować wysyłanie powiadomień)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Zaznacz pola przy odbiorcach na liście, aby uruchomić wysyłanie powiadomień)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Wprowadź numery lub adresy URL zgłoszeń, oddzielone spacjami)"

#: NOT FOUND IN SOURCE
msgid "(Enter ticket ids or URLs, seperated with spaces)"
msgstr "(Wprowadź numery lub adresy URL zgłoszeń, oddzielone spacjami)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Jeśli pozostawisz puste, domyślnie zostanie ustawione na %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Brak pól definiowanych przez użytkownika)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Brak członków grupy)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Brak skryptów)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Brak szablonów)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Brak)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Wysyła kopię zgłoszenia na listę adresów mailowych oddzielonych przecinkami, umieszczonych w polu BCC. Nie zmienia tego, kto będzie otrzymywał informacje o stanie zgłoszenia)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Wysyła kopię zgłoszenia na listę adresów mailowych oddzielonych przecinkami, umieszczonych w polu BCC. Nie zmienia tego, kto będzie otrzymywał informacje o stanie zgłoszenia)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Wysyła kopię zgłoszenia na listę administracyjnych adresów mailowych oddzielonych przecinkami. Te osoby  będą otrzymywać informacje o stanie zgłoszenia)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Wysyła kopię zgłoszenia na listę adresów mailowych oddzielonych przecinkami. Nie zmienia tego, kto będzie otrzymywał informacje o stanie zgłoszenia)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will recieve future updates.)"
msgstr "(Wysyła kopię zgłoszenia na listę adresów mailowych oddzielonych przecinkami. Nie zmienia tego, kto będzie otrzymywał informacje o stanie zgłoszenia)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Wysyła kopię zgłoszenia na listę adresów mailowych oddzielonych przecinkami. Te osoby będą otrzymywać informacje o stanie zgłoszenia)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Skorzystaj z tych pól jeśli wybrano 'Definiowany przez użytkownika' w atrybutach warunku lub operacji)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr ""

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(pusta)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(brak streszczenia)"

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(brak listy użytkowników)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(brak nazwy)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(brak klucza publicznego!)"

#: NOT FOUND IN SOURCE
msgid "(no subject)"
msgstr "(brak tematu)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(brak wartości)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(aucune valeur)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(tylko jedno zgłoszenie)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(oczekuje na zatwierdzenie)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(oczekuje na inną Kolekcję)"

#: NOT FOUND IN SOURCE
msgid "(pending other tickets)"
msgstr "(oczekuje na inne zgłoszenia)"

#: NOT FOUND IN SOURCE
msgid "(requestor's group)"
msgstr "(groupe du demandeur)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(wymagana)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(nienazwany)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(niezaufany!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr ""

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I own..."
msgstr "25 zgłoszeń o najwyższym priorytecie, których właścicielem jest użytkownik..."

#: NOT FOUND IN SOURCE
msgid "25 highest priority tickets I requested..."
msgstr "25 zgłoszeń o najwyższym priorytecie zarejestrowanych przez użytkownika..."

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ticket->Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: etc/initialdata:215
msgid "A blank template"
msgstr "Pusty szablon"

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr ""

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr "Nie udało się odnaleźć ACE"

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr "ACE mogą być tylko utworzone lub usunięte."

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "I"

#: NOT FOUND IN SOURCE
msgid "Aborting to avoid unintended ticket modifications.\\n"
msgstr "Przerwanie operacji, aby uniknąć niezamierzonych modyfikacji zgłoszenia.\\n"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "Użytkownika"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "Kontrola dostępu"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "Operacja"

#: NOT FOUND IN SOURCE
msgid "Action %1 not found"
msgstr "Operacja %1 nie została odnaleziona"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr ""

#: bin/rt-crontool:228
msgid "Action committed."
msgstr "Operacja została zatwierdzona"

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr ""

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr "Operacja została przygotowana..."

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr ""

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Add"
msgstr "Dodaj"

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr ""

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "Dodaj AdminCc"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr ""

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "Dodaj Cc"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr ""

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr "Dodaj kryterium"

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "Dodaj więcej plików"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "Dodaj zgłaszającego"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr "Dodaj wartość"

#: NOT FOUND IN SOURCE
msgid "Add a new a global scrip"
msgstr "Dodaj nowy skrypt globalny"

#: NOT FOUND IN SOURCE
msgid "Add a scrip to this queue"
msgstr "Dodaj skrypt dla tej kolejki"

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr "Dodaj skrypt, który będzie dotyczył wszystkich kolejek"

#: NOT FOUND IN SOURCE
msgid "Add additional criteria"
msgstr "Dodaj kolejne kryterium"

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "Dodaj komentarze lub odpowiedzi do wybranych zgłoszeń"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr ""

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr "Dodaj członków grupy"

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "Dodaj nowych obserwatorów"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr ""

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr ""

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr ""

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr ""

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr ""

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "AddNextState"
msgstr "Dodaj następny status"

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Added principal as a %1 for this queue"
msgstr "Został dodany zarządzający %1 dla tej kolejki"

#: NOT FOUND IN SOURCE
msgid "Added principal as a %1 for this ticket"
msgstr "Został dodany zarządzający %1 dla tego zgłoszenia"

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr ""

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "Adres 1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "Adres 2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr "Admin Cc"

#: etc/initialdata:292
msgid "Admin Comment"
msgstr "Administracja komentarzami"

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr "Administracja korespondencją"

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr "Administracja kolejkami"

#: NOT FOUND IN SOURCE
msgid "Admin users"
msgstr "Administracja użytkownikami"

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr "Globalna konfiguracja - administracja"

#: NOT FOUND IN SOURCE
msgid "Admin/Groups"
msgstr "Grupy - administracja"

#: NOT FOUND IN SOURCE
msgid "Admin/Queue/Basics"
msgstr "Administracja kolejkami . podstawowe informacje"

#: NOT FOUND IN SOURCE
msgid "AdminAllPersonalGroups"
msgstr "AdminAllPersonalGroups"

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr ""

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr "AdminCc"

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr ""

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "AdminComment"
msgstr "AdminComment"

#: NOT FOUND IN SOURCE
msgid "AdminCorrespondence"
msgstr "AdminCorrespondence"

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr "AdminPolamiUżytk"

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "AdminCustomFields"
msgstr "AdminCustomFields"

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr "AdminGroup"

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr "AdminGroupMembership"

#: NOT FOUND IN SOURCE
msgid "AdminOwnPersonalGroups"
msgstr "AdminOwnPersonalGroups"

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr "AdminQueue"

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr ""

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr "AdminUsers"

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr "Administracyjne Cc"

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Admins"
msgstr "Administrateurs"

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "Zaawansowane"

#: NOT FOUND IN SOURCE
msgid "Advanced Search"
msgstr "Wyszukiwanie zaawansowane"

#: NOT FOUND IN SOURCE
msgid "Advanced Search Criteria"
msgstr "Kryteria wyszukiwania zaawansowanego"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Age"
msgstr "Wiek"

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Alias for"
msgstr "Alias pour"

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr "Wszystkie warunki poprawności spełnione"

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr "Wszystkie klasy"

#: NOT FOUND IN SOURCE
msgid "All Custom Fields"
msgstr "Wszystkie pola definiowane przez użytkownika"

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr ""

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr "Wszystkie kolejki"

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr ""

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr ""

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr ""

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr ""

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr ""

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr ""

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr ""

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Always sends a message to the requestors independent of message sender"
msgstr "Zawsze wysyła wiadomość do zgłaszających niezależnie od nadawcy wiadomości"

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "I/Lub"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr ""

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "Zastosuj do:"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "Zastosuj"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "Zastosuj zmiany"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "Potwierdzenia"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr "Potwierdzenie #%1: %2"

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr "Potwierdzenie #%1: Uwagi nie zostały zapisane z powodu błędu systemu"

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr "Potwierdzenie #%1: Uwagi zostały zapisane"

#: NOT FOUND IN SOURCE
msgid "Approval Details"
msgstr "Szczegóły zatwierdzenia"

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr "Zatwierdzone"

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr ""

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr "Odrzucone"

#: NOT FOUND IN SOURCE
msgid "Approval diagram"
msgstr "Diagram potwierdzenia"

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr "Zatwierdź"

#: NOT FOUND IN SOURCE
msgid "Approver's notes: %1"
msgstr "Uwagi zatwierdzającego: %1"

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Apr."
msgstr "Kwi."

#: NOT FOUND IN SOURCE
msgid "April"
msgstr "Kwiecień"

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr "Czy jestes pewien, że chcesz usunąć ten artykuł?"

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr "Artykuł #%1 został usunięty"

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr "Artykuł #%1: %2"

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr ""

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr ""

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr ""

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr "Artykuł nie został odnaleziony"

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr "Artykuły"

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr ""

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr ""

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr ""

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "Rosnąco"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr ""

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "Załączniki"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr "Załącz plik"

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "Plik został załączony"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr "Załącznik"

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr "Nie udało się dodać załącznika '%1'"

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "Załącznik został utworzony"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "Nazwa pliku załącznika"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "Załączniki"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr ""

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr "Atrybut usunięty"

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Aug."
msgstr "Sie."

#: NOT FOUND IN SOURCE
msgid "August"
msgstr "Sierpień"

#: NOT FOUND IN SOURCE
msgid "AuthSystem"
msgstr "AuthSystem"

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr ""

#: etc/initialdata:218
msgid "Autoreply"
msgstr "Automatyczna odpowiedź"

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr "Automatyczna odpowiedź wysyłana do zgłaszających"

#: NOT FOUND IN SOURCE
msgid "AutoreplyToRequestors"
msgstr "Automatyczna odpowiedź wysyłana do zgłaszających"

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr "Dostępne"

#: NOT FOUND IN SOURCE
msgid "Available Columns"
msgstr "Dostępne kolumny"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr "Wstecz"

#: NOT FOUND IN SOURCE
msgid "Bad PGP Signature: %1\\n"
msgstr "Niewłaściwy podpis PGP: %1\\n"

#: NOT FOUND IN SOURCE
msgid "Bad attachment id. Couldn't find attachment '%1'\\n"
msgstr "Niewłaściwy numer id załącznika. Nie udało się wyszukać załącznika '%1'\\n"

#: NOT FOUND IN SOURCE
msgid "Bad data in %1"
msgstr "Niewłaściwe dane w %1"

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Bad transaction number for attachment. %1 should be %2\\n"
msgstr "Niewłaściwy numer transakcji dla załącznika. %1 należy zastąpić przez %2\\n"

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "Podst. informacje"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr "Bcc"

#: NOT FOUND IN SOURCE
msgid "Be sure to save your changes"
msgstr "Pamiętaj, aby zapisać zmiany"

#: NOT FOUND IN SOURCE
msgid "Begin Approval"
msgstr "Rozpocznij zatwierdzanie"

#: NOT FOUND IN SOURCE
msgid "Binary"
msgstr "Binaire"

#: etc/initialdata:214
msgid "Blank"
msgstr "Pusty"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr "Treść"

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "Pogrubienie"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr "Zakładka"

#: NOT FOUND IN SOURCE
msgid "Bookmarkable URL for this search"
msgstr "Adres URL do zapamiętania dla tego wyszukiwania"

#: NOT FOUND IN SOURCE
msgid "Bookmarkable link"
msgstr "URL do zapamiętania"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr ""

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr "Zgłoszenia zapisane w zakładkach"

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Brief headers"
msgstr "Krótkie nagłówki"

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr ""

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr ""

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr "Hurtowa Aktualizacja"

#: NOT FOUND IN SOURCE
msgid "Bulk ticket update"
msgstr "Hurtowa aktualizacja zgłoszeń"

#: NOT FOUND IN SOURCE
msgid "Buy Support"
msgstr "Wykup wsparcie"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr ""

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr ""

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr ""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr "Nie można zmienić użytkowników systemu"

#: NOT FOUND IN SOURCE
msgid "Can this principal see this queue"
msgstr "Czy ten zarządzający widzi tę kolejkę"

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr "Nie można wprowadzić wartości pola bez nazwy"

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr ""

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr "Nie można połączyć zgłoszenia z tym samym zgłoszeniem"

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Can't merge into a merged ticket. You should never get this error"
msgstr "Niemożliwe połączenie w jedno zgłoszenie"

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "Niemożliwe jest zapisanie tego zapytania"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr "Niemożliwe określenie jednocześnie podstaw i celu"

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr ""

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Cannot create user: %1"
msgstr "Niemożliwe utworzenie użytkownika: %1"

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr "Kategoria"

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "Cc"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr ""

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr "Zmodyfikuj"

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "Zmień hasło"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr ""

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr ""

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "Zaznacz wszystko"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr ""

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr "Zaznacz pole, aby usunąć"

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr "Zaznacz pole, aby odebrać uprawnienie"

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "Zgłoszenia podrzędne"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Choose a database engine"
msgstr "Wybierz silnik bazy danych"

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "Miasto"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr "Klasa"

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr "Nazwa klasy"

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr ""

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Class is"
msgstr "Klasą jest"

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr ""

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr ""

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr "Klasy"

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr "Wyczyść"

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "Odznacz wszystko"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr ""

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Close window"
msgstr "Zamknij okno"

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "Zamknięte"

#: NOT FOUND IN SOURCE
msgid "Closed Tickets"
msgstr "Zamknięte zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "Closed requests"
msgstr "Demandes closes"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr "Zamknięte zgłoszenia"

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr ""

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Command not understood!\\n"
msgstr "Niezrozumiałe polecenie!\\n"

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "Komentuj"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr "Adres komentarza"

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Comment not recorded"
msgstr "Komentarz nie został zapisany"

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr "Komentarz do zgłoszeń"

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr "CommentOnTicket"

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "Komentarze"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "Komentarze (które nie zostaną wysłane zgłaszającym)"

#: NOT FOUND IN SOURCE
msgid "Comments (not sent to requestors)"
msgstr "Komentarze (które nie zostały wysłane zgłaszającym)"

#: NOT FOUND IN SOURCE
msgid "Comments about %1"
msgstr "Komentarze dotyczące %1"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr "Uwagi dotyczące użytkownika"

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "Komentarze zostały dodane"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr "Potwierdzenie wysłane do zgłaszającego"

#: NOT FOUND IN SOURCE
msgid "Compile Restrictions"
msgstr "Ograniczenia kompilacji"

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "Warunek"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr ""

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr ""

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr "Warunek zgadza się z ..."

#: NOT FOUND IN SOURCE
msgid "Condition not found"
msgstr "Warunek nie został odnaleziony"

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr ""

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr ""

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "Konfiguracja"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Confirm"
msgstr "Potwierdź"

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "ContactInfoSystem"
msgstr "ContactInfoSystem"

#: NOT FOUND IN SOURCE
msgid "Contacted date '%1' could not be parsed"
msgstr "Nie udało się rozpoznać daty modyfikacji'%1'"

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "Zawartość"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr ""

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr "Typ zawartości"

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Copy"
msgstr "Kopiuj"

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr ""

#: etc/initialdata:283
msgid "Correspondence"
msgstr "Korespondencja"

#: NOT FOUND IN SOURCE
msgid "Correspondence Address"
msgstr "Adres korespondencyjny"

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr "Korespondencja została dodana"

#: NOT FOUND IN SOURCE
msgid "Correspondence not recorded"
msgstr "Korespondencja nie została zapisana"

#: NOT FOUND IN SOURCE
msgid "Could not add new custom field value for ticket. "
msgstr "Nie udało się wprowadzić nowej wartości pola dla zgłoszenia. "

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not change owner. "
msgstr "Nie udało się zmienić właściciela. "

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not create CustomField"
msgstr "Nie udało się utworzyć pola definiowanego przez użytkownika"

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr ""

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr "Nie udało się utworzyć grupy"

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr ""

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr "Nie udało się utworzyć szablonu: %1"

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr "Nie udało się utworzyć zgłoszenia. Nie określono kolejki"

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr "Nie udało się utworzyć użytkownika"

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not find a ticket with id %1"
msgstr "Nie udało się wyszukać zgłoszenia o numerze %1"

#: NOT FOUND IN SOURCE
msgid "Could not find group %1."
msgstr "Nie udało się wyszukać grupy %1."

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr "Nie udało się wyszukać ani utworzyć tego użytkownika"

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr "Nie udało się wyszukać tego zarządzającego"

#: NOT FOUND IN SOURCE
msgid "Could not find user %1."
msgstr "Nie udało się wyszukać użytkownika %1."

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr "Nie udało się załadować grupy"

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr ""

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not make that principal a %1 for this queue"
msgstr "Nie udało się przypisać tego zarządzającego jako %1 dla tej kolejki"

#: NOT FOUND IN SOURCE
msgid "Could not make that principal a %1 for this ticket"
msgstr "Nie udało się przypisać tego zarządzającego jako %1 dla tego zgłoszenia"

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not remove that principal as a %1 for this queue"
msgstr "Nie udało się usunąć tego zarządzającego jako %1 dla tej kolejki"

#: NOT FOUND IN SOURCE
msgid "Could not remove that principal as a %1 for this ticket"
msgstr "Nie udało się usunąć tego zarządzającego jako %1 dla tego zgłoszenia"

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr "Niemożliwe było zapisanie danych użytkownika"

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr ""

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr "Nie udało się dodać nowego członka grupy"

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr "Nie udało się utworzyć transakcji: %1"

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Couldn't figure out what to do from gpg's reply\\n"
msgstr "Nie udało się ustalić, co zrobić na podstawie odpowiedzi z gpg\\n"

#: NOT FOUND IN SOURCE
msgid "Couldn't find group\\n"
msgstr "Nie udało się wyszukać grupy\\n"

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr "Nie udało się wyszukać wiersza"

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr "Nie udało się wyszukać tego zarządzającego"

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr "Nie udało się wyszukać tej wartości"

#: NOT FOUND IN SOURCE
msgid "Couldn't find user\\n"
msgstr "Nie udało się wyszukać użytkownika\\n"

#: NOT FOUND IN SOURCE
msgid "Couldn't load %1 from the users database.\\n"
msgstr "Nie udało się załadować %1 z bazy użytkowników.\\n"

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr "Nie udało się załadować klasy %1"

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr "Nie udało się załadować pola %1"

#: NOT FOUND IN SOURCE
msgid "Couldn't load RT config file '%1' %2"
msgstr "Nie udało się załadować pliku konfiguracji RT '%1' %2"

#: NOT FOUND IN SOURCE
msgid "Couldn't load Scrips."
msgstr "Nie udało się załadować skryptów"

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr ""

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr ""

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr "Nie udało się załadować grupy %1"

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr "Nie udało się załadować połączenia"

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr "Impossible de charger l'objet %1"

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr ""

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr "Nie udało się załadować kolejki"

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr "Nie udało się załadować kolejki %1"

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Couldn't load scrip"
msgstr "Nie udało się załadować skryptu"

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Couldn't load template"
msgstr "Nie udało się załadować szablonu"

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Couldn't load that user (%1)"
msgstr "Nie udało się załadować użytkownika (%1)"

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr "Nie udało się załadować zgłoszenia '%1'"

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr ""

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr ""

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr ""

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr ""

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr ""

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr ""

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr ""

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr ""

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr ""

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr ""

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr ""

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr ""

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "Kraj"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "Utwórz"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "Utwórz zgłoszenia"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr "Utwórz klasę"

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr "Utwórz pole definiowane przez użytkownika"

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr "Utwórz pole dla kolejki %1"

#: NOT FOUND IN SOURCE
msgid "Create a CustomField that applies to all queues"
msgstr "Utwórz pole, które dotyczy wszystkich kolejek"

#: NOT FOUND IN SOURCE
msgid "Create a new Custom Field"
msgstr "Utwórz nowe pole definiowane przez użytkownika"

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr "Utwórz nowy artykuł"

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr ""

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create a new global scrip"
msgstr "Utwórz nowy skrypt globalny"

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "Utwórz nową grupę"

#: NOT FOUND IN SOURCE
msgid "Create a new personal group"
msgstr "Utwórz nową grupę prywatną"

#: NOT FOUND IN SOURCE
msgid "Create a new queue"
msgstr "Utwórz nową kolejkę"

#: NOT FOUND IN SOURCE
msgid "Create a new scrip"
msgstr "Utwórz nowy skrypt"

#: NOT FOUND IN SOURCE
msgid "Create a new template"
msgstr "Utwórz nowy szablon"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr ""

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "Utwórz nowe zgłoszenie"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "Utwórz nowego użytkownika"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr "Utwórz kolejkę"

#: NOT FOUND IN SOURCE
msgid "Create a queue called"
msgstr "Utwórz kolejkę nazwaną"

#: NOT FOUND IN SOURCE
msgid "Create a request"
msgstr "Utwórz zgłoszenie"

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr "Utwórz skrypt dla kolejki %1"

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr "Utwórz szablon"

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr "Utwórz zgłoszenie"

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr "Utwórz artykuł"

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr "Utwórz artykuł w ramach klasy..."

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr ""

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr ""

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr "Utwórz nowe zgłoszenia na podstawie szablonu tego skryptu"

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr ""

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr "Utwórz zgłoszenie"

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create tickets in this queue"
msgstr "Utwórz zgłoszenia w tej kolejce"

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify custom fields"
msgstr "Utwórz, usuń i zmodyfikuj pola def. przez użytkownika"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify queues"
msgstr "Utwórz, usuń i zmodyfikuj kolejki"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify the members of any user's personal groups"
msgstr "Utwórz, usuń i zmodyfikuj członków którejś z prywatnych grup użytkownika"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify the members of personal groups"
msgstr "Utwórz, usuń i zmodyfikuj członków prywatnych grup"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify users"
msgstr "Utwórz, usuń i zmodyfikuj użytkowników"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr ""

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr ""

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr ""

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr ""

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr ""

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr "CreateTicket"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "Zarejestrowane"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr "Utworzono przez"

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr "Pole %1 zostało utworzone"

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr "Utworzony przez"

#: NOT FOUND IN SOURCE
msgid "Created during"
msgstr "Utworzony podczas"

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Created template %1"
msgstr "Szablon %1 został utworzony"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr "Zgłaszający"

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr "Kryptografia"

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "Aktualne powiązania"

#: NOT FOUND IN SOURCE
msgid "Current Relationships"
msgstr "Aktualne powiązania"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr "Aktualne skrypty"

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr ""

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr "Aktualni członkowie"

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr "Aktualne uprawnienia"

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr "Aktualne wyszukiwanie"

#: NOT FOUND IN SOURCE
msgid "Current search criteria"
msgstr "Aktualne kryteria wyszukiwania"

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr "Aktualni obserwatorzy"

#: NOT FOUND IN SOURCE
msgid "Custom Field #%1"
msgstr "Pole def. przez użytkownika #%1"

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr "Pola def. przez użytkownika"

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr ""

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr ""

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr "Treść procedury czyszczenia definiowana przez użytkownika"

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr "Treść procedury definiowana przez użytkownika"

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr "Warunek definiowany przez użytkownika"

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr ""

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr "Pole definiowane przez użytkownika %1 %2 %3"

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr ""

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr "Pole %1 definiowane przez użytkownika ma wartość."

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr "Brak wartości w polu %1 definiowanym przez użytkownika."

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr "Nie udało się wyszukać pola %1 definiowanego przez użytkownika"

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Custom field deleted"
msgstr "Pole definiowane przez użytkownika zostało usunięte"

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Custom field not found"
msgstr "Nie udało się wyszukać pola definiowanego przez użytkownika"

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr "Nie udało się wyszukać wartości %1 dla pola %2"

#: NOT FOUND IN SOURCE
msgid "Custom field value changed from %1 to %2"
msgstr "Wartość pola zmieniła się z %1 na %2"

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr "Nie można usunąć wartości pola"

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr "Nie udało się wyszukać wartości pola"

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr "Wartość pola została usunięta"

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr "Pole"

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr ""

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr "Dostosuj"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr ""

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr ""

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr ""

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr ""

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr ""

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr ""

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr ""

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr ""

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr ""

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr ""

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr "Nazwa bazy danych"

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr ""

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr ""

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr "Typ bazy danych"

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr ""

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr "Format daty"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "Daty"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr "Gru"

#: NOT FOUND IN SOURCE
msgid "Dec."
msgstr "Gru."

#: NOT FOUND IN SOURCE
msgid "December"
msgstr "Grudzień"

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr "Odszyfrowanie"

#: NOT FOUND IN SOURCE
msgid "Default Autoresponse Template"
msgstr "Domyślnie wybierany szablon odpowiedzi wysyłanej automatycznie"

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr "Domyślnie wybierany szablon odpowiedzi wysyłanej automatycznie"

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr "Domyślna kolejka"

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr "Domyślny zgłaszający"

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr "Domyślnie wybierany szablon komentarza administratora"

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr "Domyślnie wybierany szablon korespondencji administratora"

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr "Domyślnie wybierany szablon korespondencji"

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr "Domyślna kolejka"

#: etc/initialdata:250
msgid "Default transaction template"
msgstr "Domyślnie wybierany szablon transakcji"

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr "Domyślnie: %1"

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr "Domyślnie: %1/%2 zmieniane z \"%3\" na \"%4\""

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Delegate rights"
msgstr "Przekaż uprawnienia"

#: NOT FOUND IN SOURCE
msgid "Delegate specific rights which have been granted to you."
msgstr "Przekaż specyficzne uprawnienia, które zostały Ci przyznane"

#: NOT FOUND IN SOURCE
msgid "DelegateRights"
msgstr "DelegateRights"

#: NOT FOUND IN SOURCE
msgid "Delegation"
msgstr "Przekazywanie uprawnień"

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "Usuń"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr "Usuń szablon"

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr "Usuń artykuł #%1"

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr ""

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr ""

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr ""

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr "Usuń zaznaczone skrypty"

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr "Usuń zgłoszenia"

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr ""

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr ""

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr "DeleteTicket"

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr "Usunięto %1"

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr ""

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr "Usunięto zapisane wyszukiwanie"

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Deleting this object could break referential integrity"
msgstr "Usunięcie tego obiektu mogło spowodować brak spójności"

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr "Usunięcie tego obiektu spowoduje brak spójności"

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr "Usunięcie tego obiektu naruszy spójność"

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr "Odrzucić"

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "Zgłoszenia zależne"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Dependencies: \\n"
msgstr "Zależności"

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr "Zależność %1 dodana"

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr "Zależność %1 usunięta"

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr "Zależność od %1 dodana"

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr "Zależność od %1 usunięta"

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "Zależy od"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr "ZależyOd"

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "Malejąco"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr "Opis zgłoszenia"

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "Opis"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr "Szczegóły"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr "Nieaktywne"

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr "Wyświetl"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr "Wyświetl Listę Praw Dostępu"

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr "Wybierz kolumny"

#: NOT FOUND IN SOURCE
msgid "Display Scrip templates for this queue"
msgstr "Wyświetl szablony skryptów dla tej kolejki"

#: NOT FOUND IN SOURCE
msgid "Display Scrips for this queue"
msgstr "Wyświetl skrypty dla tej kolejki"

#: NOT FOUND IN SOURCE
msgid "Display mode"
msgstr "Tryb wyświetlania"

#: NOT FOUND IN SOURCE
msgid "Display ticket #%1"
msgstr "Wyświetl zgłoszenie #%1"

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Distributed under version 2  of the GNU GPL."
msgstr "Rozpowszechniane na mocy wersji 2 licencji GNU GPL ."

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr "Zrób cokolwiek i wszystko"

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr "Nazwa domeny"

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr ""

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr ""

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr "Nie odświeżaj tej strony."

#: NOT FOUND IN SOURCE
msgid "Don't show search results"
msgstr "Nie wyświetlaj wyników wyszukiwania"

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "Pobierz"

#: NOT FOUND IN SOURCE
msgid "Download as a tab-delimited file"
msgstr "Pobierz jako listę [dane każdego użytkownika/grupy w jednej linii, odzielone tabulatorem]"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr ""

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "Termin realizacji"

#: NOT FOUND IN SOURCE
msgid "Due date '%1' could not be parsed"
msgstr "Termin realizacji '%1' nie może być rozpoznany"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr "BŁĄD: %1"

#: NOT FOUND IN SOURCE
msgid "ERROR: Couldn't load ticket '%1': %2.\\n"
msgstr "BŁĄD: Nie udało się załadować zgłoszenia: '%1': %2.\\n"

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr ""

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr ""

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr "Edytuj"

#: NOT FOUND IN SOURCE
msgid "Edit Conditions"
msgstr "Modifier les conditions"

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr "Edytuj pola dla kolejki %1"

#: NOT FOUND IN SOURCE
msgid "Edit Custom Fields for Class %1"
msgstr "Edytuj pola dla klasy %1"

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr "Edycja zdefiniowanych przez użytkownia pól dla zgłoszeń we wszystkich kolejkach"

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr "Edytuj powiązania"

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr "Zmodyfikuj zapytanie"

#: NOT FOUND IN SOURCE
msgid "Edit Relationships"
msgstr "Edytuj powiązania"

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr "Modyfikacja wyszukiwania"

#: NOT FOUND IN SOURCE
msgid "Edit Templates for queue %1"
msgstr "Edytuj szablony kolejki %1"

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Edit scrips"
msgstr "Edytuj skrypty"

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr "Edytuj szablony systemowe"

#: NOT FOUND IN SOURCE
msgid "Edit templates for %1"
msgstr "Edytuj szablony dla %1"

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr "EdytujZapisaneZapytania"

#: NOT FOUND IN SOURCE
msgid "Editing Configuration for Class %1"
msgstr "Edytuj konfigurację klasy %1"

#: NOT FOUND IN SOURCE
msgid "Editing Configuration for queue %1"
msgstr "Edytuj konfigurację kolejki %1"

#: NOT FOUND IN SOURCE
msgid "Editing Configuration for user %1"
msgstr "Edytuj konfigurację użytkownika %1"

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr "Edytuj pole %1"

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr "Edytuj listę członków grupy %1"

#: NOT FOUND IN SOURCE
msgid "Editing membership for personal group %1"
msgstr "Edytuj listę członków prywatnej grupy %1"

#: NOT FOUND IN SOURCE
msgid "Editing template %1"
msgstr "Edytuj szablon %1"

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr "Podstawy lub cel muszą być określone"

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "e-mail"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Email Configuration"
msgstr "Konfiguracja Poczty"

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr ""

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr "Używany adres e-mail"

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr ""

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr "adres e-mail"

#: NOT FOUND IN SOURCE
msgid "EmailEncoding"
msgstr "kodowanie e-maila"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr "Włączone"

#: NOT FOUND IN SOURCE
msgid "Enabled (Unchecking this box disables this Class)"
msgstr "Udostępniona (nieoznaczenie tego pola spowoduje, że klasa będzie niedostępna)"

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr "Udostępnione (nieoznaczenie tego pola spowoduje, że pole będzie niedostępne)"

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr "Udostępniona (nieoznaczenie tego pola spowoduje, że grupa będzie niedostępna)"

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr "Udostępniona (nieoznaczenie tego pola spowoduje, że kolejka będzie niedostępna)"

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr "Dostępne klasy"

#: NOT FOUND IN SOURCE
msgid "Enabled Custom Fields"
msgstr "Dostępne pola definiowane przez użytkownika"

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr "Dostępne kolejki"

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr "Aktywny status %1"

#: NOT FOUND IN SOURCE
msgid "Enabled status: %1"
msgstr "Statut actif: %1"

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr "Zaszyfruj"

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr ""

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Enter Articles or URIs to link Articles to. Seperate multiple entries with spaces."
msgstr "Aby powiązać artykuły, wprowadź artykuły lub URI oddzielone spacjami."

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr ""

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr "Wprowadzanie wielu wartości"

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr "Aby powiązać obiekty, wprowadź URI obiektów oddzielone spacjami."

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr ""

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr ""

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr "Wprowadzanie jednej wartości"

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr "Aby powiązać kolejki, wprowadź URI kolejek oddzielone spacjamii."

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr "Aby powiązać zgłoszenia, wprowadź numery zgłoszeń lub URI oddzielone spacjami."

#: NOT FOUND IN SOURCE
msgid "Enter tickets or URIs to link tickets to. Seperate multiple entries with spaces."
msgstr "Aby powiązać zgłoszenia, wprowadź numery zgłoszeń lub URI oddzielone spacjami."

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr "Wprowadź wartości aż do %1"

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr "Błąd"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Queue->AddWatcher"
msgstr "Błąd w określeniu parametrów kolejki->Dodaj Obserwatora"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Queue->DelWatcher"
msgstr "Błąd w określeniu parametrów kolejki -> Usuń Obserwatora"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Queue->DeleteWatcher"
msgstr "Błąd w określeniu parametrów kolejki -> Usuń Obserwatora"

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr "Błąd w określeniu parametrów zgłoszenia -> Dodaj Obserwatora"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Ticket->DelWatcher"
msgstr "Błąd w określeniu parametrów zgłoszenia -> Usuń Obserwatora"

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr "Błąd w określeniu parametrów Zgłoszenia-> Usuń Obserwatora"

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr ""

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr "Eskaluj zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "Estimate"
msgstr "Estimer"

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr "Szacowane"

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr "Wszyscy"

#: bin/rt-crontool:356
msgid "Example:"
msgstr "Przykład:"

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "ExternalAuthId"
msgstr "Zewnętrzne AuthId"

#: NOT FOUND IN SOURCE
msgid "ExternalContactInfoId"
msgstr "ExternalContactInfoId"

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr "Informacje dodatkowe"

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Extract article from ticket #%1"
msgstr "Wydziel artykuł ze zgłoszenia #%1"

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr "Wydziel artykuł ze zgłoszenia #%1 w klasie %2"

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr "Nie udało się wyszukać członków grupy 'Uprawnieni'"

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr "Nie udało się wyszukać członków grupy 'Nieuprawnieni'"

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr ""

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr ""

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr "Nie udało się załadować modułu %1. (%2)"

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr ""

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr "Lut"

#: NOT FOUND IN SOURCE
msgid "Feb."
msgstr "Lut."

#: NOT FOUND IN SOURCE
msgid "February"
msgstr "Luty"

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

# Nie jestem pewien: jedno słowo!
#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr "Nazwa pliku"

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr "Podaj argumenty"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr "Wypełń pola tekstowe"

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr ""

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr "Wypełń jedno pole tekstowe"

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr ""

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr "Saisir dans %1 champs de type texte maximum"

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Fin"
msgstr "Koniec"

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr "Końcowy priorytet"

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr "Końcowy priorytet"

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Find group whose"
msgstr "Wyszukaj grupę, której"

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr "Wyszukaj grupy, których:"

#: NOT FOUND IN SOURCE
msgid "Find new/open tickets"
msgstr "Wyszykaj nowe/otwarte zgłoszenia"

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr "Wyszukaj użytkowników, których"

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr "Wyszukaj zgłoszenia"

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr ""

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Finish Approval"
msgstr "Zakończ zatwierdzanie"

#: share/html/Elements/Tabs:651
msgid "First"
msgstr "Pierwsze"

#: NOT FOUND IN SOURCE
msgid "First page"
msgstr "Pierwsza strona"

#: NOT FOUND IN SOURCE
msgid "Foo Bar Baz"
msgstr "Ble ble"

#: NOT FOUND IN SOURCE
msgid "Foo!"
msgstr "ble ble"

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr "Wymuś zmianę"

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr "Format"

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr "Przekaż"

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr "Przekaż wiadomość"

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr "Przekaż Wiadomość i Powróć"

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Forward message"
msgstr "Przekaż wiadomość"

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Forward messages to third person(s)"
msgstr "Przekaż wiadomości do trzecich osób"

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr ""

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr "PrzekażWiadomość"

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr "Wyszukano %1 zgłoszeń"

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr "Wyszukany obiekt"

#: NOT FOUND IN SOURCE
msgid "Freeform"
msgstr "FormulaireLibre"

#: NOT FOUND IN SOURCE
msgid "FreeformContactInfo"
msgstr "FreeformContactInfo"

#: NOT FOUND IN SOURCE
msgid "FreeformMultiple"
msgstr "FreeformMultiple"

#: NOT FOUND IN SOURCE
msgid "FreeformSingle"
msgstr "FreeformSingle"

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr "Częstotliwość"

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr "Pt"

#: NOT FOUND IN SOURCE
msgid "Fri."
msgstr "Pt."

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr "Piątek"

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Full headers"
msgstr "Pełne nagłówki"

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr ""

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr "Ogólne"

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr "Pobierz szablon z pliku"

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Getting the current user from a pgp sig\\n"
msgstr "Uzyskanie aktualnego użytkownika na podstawie podpisu pgp\\n"

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr "Nadany dla %1"

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr "Globalna"

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Global Scrips"
msgstr "Skrypty globalne"

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr ""

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr ""

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr "Szablon globalny: %1"

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr ""

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr "Pobierz"

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr ""

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "Start!"

#: NOT FOUND IN SOURCE
msgid "Good pgp sig from %1\\n"
msgstr "Poprawny podpis pgp dla %1\\n"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Goto page"
msgstr "Przejdź do strony"

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr "Przejdź do zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "Grand"
msgstr "Accorder"

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr "Wykres"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr ""

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr "Grupa"

#: NOT FOUND IN SOURCE
msgid "Group %1 %2: %3"
msgstr "Grupa %1 %2: %3"

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr "Uprawnienia grupowe"

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr "Grupa ma już członka: %1"

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr "Nie udało się utworzyć grupy: %1"

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr "Grupa została utworzona"

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr ""

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr ""

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr "Nie ma takiego członka grupy"

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr ""

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr "Nie udało się wyszukać grupy"

#: NOT FOUND IN SOURCE
msgid "Group not found.\\n"
msgstr "Nie udało się wyszukać grupy.\\n"

#: NOT FOUND IN SOURCE
msgid "Group not specified.\\n"
msgstr "Grupa nie została określona.\\n"

#: NOT FOUND IN SOURCE
msgid "Group rights"
msgstr "Uprawnienia grupowe"

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "Grupy"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr "Nie można przypisac grup jako członków tych grup"

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr ""

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr ""

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr "Grupy do których należy ten użytkownik"

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr "Witaj!"

#: NOT FOUND IN SOURCE
msgid "Hello, %1"
msgstr "Witaj, %1"

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "Historia"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr "Historia artykułu #%1"

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr "Historique du groupe %1"

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr ""

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr "Historique de l'utilisateur %1"

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr ""

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "HomePhone"
msgstr "Tel. domowy"

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "Strona domowa"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr "Godzina"

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr "Godziny"

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr "Posiadam %quant(%1,concrete mixer)."

#: NOT FOUND IN SOURCE
msgid "I have [quant,_1,concrete mixer]."
msgstr "I have [quant,_1,concrete mixer]."

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr ""

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr "Nr"

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "Identyfikacja użytkownika"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr "Jeśli potwierdzenie zostało odrzucone, odrzuć oryginał i usuń oczekujące potwierdzenia"

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr "Jeśli zgłaszający nie został określony, twórz zgłoszenia dla tego użytkownika."

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr "Jeśli kolejka nie została określona, twórz zgłoszenia w tej kolejce."

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr "Jeśli ta aplikacja została zachwiana, obcy lokalny użytkownik mógł używać tej aplikacji, aby uzyskać do RT dostęp na prawach administratora"

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr "Jeśli zmodyfikowałeś coś powyżej"

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr ""

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr "Niedopuszczalna wartość dla %1"

#: NOT FOUND IN SOURCE
msgid "Image"
msgstr "Image"

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr "Pole, które nie może być powielane"

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr "Uwzględnij na liście nieaktywne klasy"

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr "Uwzględnij na liście nieaktywne pola."

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr "Uwzględnij na liście nieaktywne grupy."

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr "Uwzględnij na liście nieaktywne kolejki."

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr "Uwzględnij w wyszukiwaniu nieaktywnych użytkowników."

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr ""

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr ""

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr "Początkowy priorytet"

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr "Początkowy priorytet"

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr "Błąd na wejściu"

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr ""

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr "Błąd wewnętrzny"

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr "Błąd wewnętrzny: %1"

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr ""

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr "Nieprawidłowy typ grupy"

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr ""

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Invalid Right"
msgstr "Nieprawidłowe uprawnienie"

#: NOT FOUND IN SOURCE
msgid "Invalid Type"
msgstr "Type invalide"

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr "Nieprawidłowe dane"

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr "Niepoprawny obiekt"

#: NOT FOUND IN SOURCE
msgid "Invalid owner. Defaulting to 'nobody'."
msgstr "Nieprawidłowy właściciel. Domyślnie 'nikt'"

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr ""

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr "Nieprawidłowa kolejka"

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr ""

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr "Nieprawidłowe uprawnienie"

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr "Nieprawidłowa wartość dla %1"

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr "Nieprawidłowa wartość pola"

#: NOT FOUND IN SOURCE
msgid "Invalid value for status"
msgstr "Nieprawidłowy status"

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr "Bardzo ważne, aby nieuprawnieni użytkownicy nie posiadali uprawnień do uruchomienia tej aplikacji."

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr "Sugeruje się, aby utworzyć nieuprawnionego użytkownika w odpowiedniej grupie o odpowiednim dostępie do RT, aby uruchomić tę aplikację"

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr "Wymaga kilku argumentów:"

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr "Kursywa"

#: NOT FOUND IN SOURCE
msgid "Items pending my approval"
msgstr "Pozycje oczekujące na moje zatwierdzenie"

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr "Sty"

#: NOT FOUND IN SOURCE
msgid "Jan."
msgstr "Sty."

#: NOT FOUND IN SOURCE
msgid "January"
msgstr "Styczeń"

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Join or leave this group"
msgstr "Dołącz albo opuść tę grupę"

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr "Lip"

#: NOT FOUND IN SOURCE
msgid "Jul."
msgstr "Lip."

#: NOT FOUND IN SOURCE
msgid "July"
msgstr "Lipiec"

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr "Wszystko"

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr "Cze"

#: NOT FOUND IN SOURCE
msgid "Jun."
msgstr "Cze."

#: NOT FOUND IN SOURCE
msgid "June"
msgstr "Czerwiec"

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Keyword"
msgstr "Słowo kluczowe"

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr "Język"

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr "Język"

#: NOT FOUND IN SOURCE
msgid "Language."
msgstr "Język."

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr "Duże"

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr "Ostatnie"

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr "Ostatnia modyfikacja"

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr "Ostatnio modyfikowane"

#: NOT FOUND IN SOURCE
msgid "Last Notified"
msgstr "Ostatnio powiadomiony"

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr "Ostatnio zaktualizowane"

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr "Ostatnio zaktualizowane przez"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr ""

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr "Ostatnio zaktualizowane przez"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr "OstAktualiz"

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr "OstAktPrzez"

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr "Pozostały"

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr ""

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr ""

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr "Udostępnij temu użytkownikowi RT"

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr "Przydziel uprawnienia temu użytkownikowi"

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr ""

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Limiting owner to %1 %2"
msgstr "Ograniczenie właściciela do %1 %2"

#: NOT FOUND IN SOURCE
msgid "Limiting queue to %1 %2"
msgstr "Ograniczenie kolejki do %1 %2"

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr "Łącze"

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr "Połączenie już istnieje"

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr "Nie udało się utworzyć połączenia"

#: NOT FOUND IN SOURCE
msgid "Link created (%1)"
msgstr "Połączenie zostało utworzone (%1)"

#: NOT FOUND IN SOURCE
msgid "Link deleted (%1)"
msgstr "Połączenie zostało usunięte (%1)"

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr "Połączenie nie zostało odnalezione"

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr "Powiąż zgłoszenie #%1"

#: NOT FOUND IN SOURCE
msgid "Link ticket %1"
msgstr "Lier au ticket %1"

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr ""

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr "Powiązane"

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr ""

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr ""

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr ""

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr ""

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr "Powiązania"

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr "Załaduj"

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr ""

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr "Załaduj zapisane zapytanie:"

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr ""

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr "Załadowano %1 %2"

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr "Załadowane moduły PERL"

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr ""

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr "Ustawienia regionalne"

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr "Lokalizacja"

#: NOT FOUND IN SOURCE
msgid "Log directory %1 not found or couldn't be written.\\n RT can't run."
msgstr "Ścieżka logowania %1 nie została odnaleziona lub nie mógła być zapisana.\\n Nie udało się uruchomić RT"

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr ""

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr "Zalogowano jako %1"

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr "Wylogowano"

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr "Zaloguj się"

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr "Wyloguj się"

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr "Poczta"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr "Wprowadź właściciela"

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr "Wprowadź status"

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr "Wprowadź termin realizacji"

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr "Wprowadź datę zamknięcia"

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr "Wprowadź datę rozpoczęcia realizacji"

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr "Wprowadź datę rozpoczęcia realizacji"

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr "Wprowadź datę wpływu"

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr "Wprowadź priorytet"

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr "Wprowadź kolejkę"

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr "Wprowadź temat"

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr "Administracja polami zdefiniowanymi przez użytkownika"

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr "Administracja grupami i członkami grup"

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr "Administracja właściwościami i konfiguracją, które dotyczą wszystkich kolejek"

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr "Administracja kolejkami i specyficznymi właściwościami kolejek"

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr "Administracja użytkownikami i hasłami"

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr ""

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr "Mar"

#: NOT FOUND IN SOURCE
msgid "Mar."
msgstr "Mar."

#: NOT FOUND IN SOURCE
msgid "March"
msgstr "Marzec"

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr "Zaznaczono wszystkie wiadomości jako przeczytane"

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr "Maj"

#: NOT FOUND IN SOURCE
msgid "May."
msgstr "Maj"

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr "Członek"

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr "Członek %1 dodany"

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr "Członek %1 usunięty"

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr "Członek grupy został dodany: %1"

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr "Członek grupy został usunięty"

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr "Członek grupy nie został usunięty"

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr "Członek grupy"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr "CzłonekGrupy"

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr "Członkowie grup"

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr "Członkowstwo w %1 dodane"

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr "Członkowstwo w %1 usunięte"

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr "Członkostwo"

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr "Członkostwo użytkownika %1"

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr "Udało się połączyć"

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr "Nie udało się połączyć. Nie udało się ustawić efektywnego Id"

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr ""

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr "Połączyć w"

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr "Połączono z %1"

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr "Wiadomość"

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr "Wiadomość nie mogła zostać zapisana"

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr "Wiadomość zapisana"

#: NOT FOUND IN SOURCE
msgid "Messages about this ticket will not be sent to..."
msgstr "Powiadomienie o tym zgłoszeniu nie zostanie wysłane do..."

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr ""

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr "Minuty"

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr ""

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr "Brakujący klucz główny?: %1:"

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr "Tel. komórkowy"

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "MobilePhone"
msgstr "Tel. komórkowy"

#: NOT FOUND IN SOURCE
msgid "Modified"
msgstr "Zmieniony"

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr "Zmodyfikuj"

#: NOT FOUND IN SOURCE
msgid "Modify Access Control List"
msgstr "Modyfikuj Listę Praw Dostępu"

#: NOT FOUND IN SOURCE
msgid "Modify Custom Field %1"
msgstr "Modyfikuj pole %1"

#: NOT FOUND IN SOURCE
msgid "Modify Custom Fields which apply to all queues"
msgstr "Modyfikuj pola, które dotyczą wszystkich kolejek"

#: NOT FOUND IN SOURCE
msgid "Modify Group Rights"
msgstr "Zmodyfikuj uprawnienia grup"

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr "Modyfikuj Członków"

#: NOT FOUND IN SOURCE
msgid "Modify Rights"
msgstr "Zapisz uprawnienia"

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify Scrip templates for this queue"
msgstr "Modyfikuj szablony skryptów dla tej kolejki"

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify Scrips for this queue"
msgstr "Modyfikuj skrypty dla tej kolejki"

#: NOT FOUND IN SOURCE
msgid "Modify Template %1"
msgstr "Modyfikuj szablon %1"

#: NOT FOUND IN SOURCE
msgid "Modify User Rights"
msgstr "Zmodyfikuj uprawnienia użytkowników"

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr "Modyfikuj pole dla kolejki %1"

#: NOT FOUND IN SOURCE
msgid "Modify a CustomField that applies to all queues"
msgstr "Modyfikuj pole, które dotyczy wszystkich kolejek"

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr "Modyfikuj skrypt dla kolejki %1"

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr "Modyfikuj skrypt, który dotyczy wszystkich kolejek"

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr ""

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr "Modyfikuj artykuł #%1"

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr ""

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr "Modyfikuj daty dla #%1"

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr "Modyfikuj daty dla zgłoszenia # %1"

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr ""

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr "Modyfikuj globalne pola definiowane przez użytkownika"

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr "Modyfikuj globalne uprawnienia grupowe"

#: NOT FOUND IN SOURCE
msgid "Modify global group rights."
msgstr "Modyfikuj globalne uprawnienia grupowe"

#: NOT FOUND IN SOURCE
msgid "Modify global rights for groups"
msgstr "Modifier les droits globaux des groupes"

#: NOT FOUND IN SOURCE
msgid "Modify global rights for users"
msgstr "Modifier les droits globaux des utilisateurs"

#: NOT FOUND IN SOURCE
msgid "Modify global scrips"
msgstr "Modyfikuj globalne skrypty"

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr ""

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr "Modyfikuj globalne uprawnienia użytkowników"

#: NOT FOUND IN SOURCE
msgid "Modify global user rights."
msgstr "Modyfikuj globalne uprawnienia użytkowników."

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr ""

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr "Modyfikuj grupowe dane pośrednie lub usuń grupę"

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr "Modyfikuj uprawnienia grupowe dla pola %1"

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr "Modyfikuj uprawnienia grupowe dla grupy %1"

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr "Modyfikuj uprawnienia grupowe dla kolejki %1"

#: NOT FOUND IN SOURCE
msgid "Modify membership roster for this group"
msgstr "Modyfikuj listę członków tej grupy"

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr "Modyfikuj konto w RT"

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify people related to queue %1"
msgstr "Modyfikuj użytkowników powiązanych z kolejką %1"

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr "Modyfikuj użytkowników powiązanych ze zgłoszeniem %1"

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr "Modyfikuj skrypty dla kolejki %1"

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr "Modyfikuj skrypty, które dotyczą wszystkich kolejek"

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr ""

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr "Edytuj szablon %1"

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr ""

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr "Modyfikuj szablony, które dotyczą wszystkich kolejek"

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr ""

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr ""

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr ""

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr ""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr "Modyfikuj grupę %1"

#: NOT FOUND IN SOURCE
msgid "Modify the queue watchers"
msgstr "Modyfikuj obserwatorów kolejki"

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr "Modyfikuj użytkownika %1"

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr "Modyfikuj zgłoszenie %1"

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr "Modyfikuj zgłoszenie %1"

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr "Modyfikuj zgłoszenia"

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr ""

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr ""

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr ""

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr "Modyfikuj uprawnienia użytkowników dla grupy %1"

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr "Modyfikuj uprawnienia użytkowników dla kolejki %1"

#: NOT FOUND IN SOURCE
msgid "Modify watchers for queue '%1'"
msgstr "Modyfikuj obserwatorów kolejki %1"

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr "ModifyACL"

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr "ModifyOwnMembership"

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr "ModifyQueueWatchers"

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr "ModifyScrips"

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr "ModifySelf"

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr "ModifyTemplate"

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr "ModifyTicket"

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr ""

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr "Pon"

#: NOT FOUND IN SOURCE
msgid "Mon."
msgstr "Pon."

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr "Poniedziałek"

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "More about %1"
msgstr "Więcej o %1"

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr "Przesuń w dół"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr "Przesuń w górę"

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr "Wielokrotny"

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr "Należy określić atrybut 'Nazwa'"

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr "%1 moich zgłoszeń"

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr "Moje potwierdzenia"

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr "Mój dzień"

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr ""

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr "Moje potwierdzenia"

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr ""

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr "Moje zapytania"

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr "Nazwa"

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr ""

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr "Używana nazwa"

#: NOT FOUND IN SOURCE
msgid "Name matches"
msgstr "Nazwa zgadza się z"

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Need approval from system administrator"
msgstr "Wymagane potwierdzenie od administratora systemu"

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr "Nigdy"

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr "Nowe"

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr "Nowy artykuł"

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr ""

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr "Nowe powiązania"

#: NOT FOUND IN SOURCE
msgid "New Password"
msgstr "Nowe hasło"

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr "Nowe zgłoszenie oczekujące na zatwierdzenie"

#: NOT FOUND IN SOURCE
msgid "New Query"
msgstr "Nowe zapytanie"

#: NOT FOUND IN SOURCE
msgid "New Relationships"
msgstr "Nowe powiązania"

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr "Nowe wyszukiwanie"

#: NOT FOUND IN SOURCE
msgid "New class"
msgstr "Nowa klasa"

#: NOT FOUND IN SOURCE
msgid "New custom field"
msgstr "Nowe pole def. przez użytkownika"

#: NOT FOUND IN SOURCE
msgid "New group"
msgstr "Nowa grupa"

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr "Nowe wiadomości"

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr "Nowe hasło"

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr "Nowe hasło zostało wysłane"

#: NOT FOUND IN SOURCE
msgid "New queue"
msgstr "Nowa kolejka"

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr "Nowe przypomnienie:"

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr "Nowe uprawnienia"

#: NOT FOUND IN SOURCE
msgid "New scrip"
msgstr "Nowy skrypt"

#: NOT FOUND IN SOURCE
msgid "New search"
msgstr "Nowe wyszukiwanie"

#: NOT FOUND IN SOURCE
msgid "New template"
msgstr "Nowy szablon"

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr "Nowe zgłoszenie"

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr "Nowe zgłoszenie nie istnieje"

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "New user"
msgstr "Nowy użytkownik"

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr "Nowy użytkownik został nazwany"

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr "Nowi obserwatorzy"

#: NOT FOUND IN SOURCE
msgid "New window setting"
msgstr "Nowe ustawienia okna"

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr "Następne"

#: NOT FOUND IN SOURCE
msgid "Next Page"
msgstr "Następna strona"

#: NOT FOUND IN SOURCE
msgid "Next page"
msgstr "Następna strona"

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr "Pseudonim"

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr "Pseudonim"

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr "Nie"

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr "Nie zdefiniowano klasy"

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr "Brak pola definiowanego przez użytkownika"

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr "Nie zdefiniowano pola def. przez użytkownika"

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr "Nie zdefiniowano grupy"

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr "Brak zapytania"

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr "Nie zdefiniowano kolejki"

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "No RT user found. Please consult your RT administrator.\\n"
msgstr "Nie odnaleziono użytkownika RT. Proszę skontaktować się z administratorem RT.\\n"

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr "Brak tematu"

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr "Brak szablonu"

#: NOT FOUND IN SOURCE
msgid "No Ticket specified. Aborting ticket "
msgstr "Nie określono zgłoszenia. Odrzucenie zgłoszenia "

#: NOT FOUND IN SOURCE
msgid "No Ticket specified. Aborting ticket modifications\\n\\n"
msgstr "Nie określono zgłoszenia. Odrzucenie modyfikacji zgłoszenia\\n\\n"

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr "Zawieszenie operacji"

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr "Nie określono kolumny"

#: NOT FOUND IN SOURCE
msgid "No command found\\n"
msgstr "Nie udało się wyszukać polecenia\\n"

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr "Nie wprowadzono komentarza dotyczącego tego użytkownika"

#: NOT FOUND IN SOURCE
msgid "No correspondence attached"
msgstr "Nie załączono korespondencji"

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr "Brak opisu dla %1"

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr ""

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr "Nie określono grupy"

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr ""

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr "Brak załączonej wiadomości"

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr "Nie ustawiono hasła"

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr "Brak uprawnień do tworzenia kolejek"

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr "Brak uprawnień do tworzenia zgłoszeń w kolejce '%1'"

#: NOT FOUND IN SOURCE
msgid "No permission to create users"
msgstr "Brak uprawnień do tworzenia użytkowników"

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr "Brak uprawnień do wyświetlenia tego zgłoszenia"

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr ""

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr ""

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr ""

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr "Brak uprawnień do przeglądania aktualizacji zgłoszenia"

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr "Nie określono zarządzającego"

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr "Nie wybrano zarządzających."

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr "Brak klucza prywatnego"

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr "Brak kolejek odpowiadających kryteriom wyszukiwania"

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr "Nie udało się wyszukać uprawnień"

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr "Nie przyznano uprawnień."

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr "Brak kryteriów wyszukiwania"

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr "Brak tematu"

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "No ticket id specified"
msgstr "Nie określono numeru zgłoszenia"

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr "Nie znaleziono zgłoszeń."

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr "Nie określono typu transakcji"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr "Nie znaleziono używalnych kluczy."

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr "Brak użytkowników odpowiadających kryteriom wyszukiwania"

#: NOT FOUND IN SOURCE
msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n"
msgstr "Brak aktualnego użytkownika RT. Proszę skontaktować się z administratorem RT.\\n"

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "No value sent to _Set!\\n"
msgstr "Nie wysłano wartości do zestawu!\\n"

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr "Nikt"

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr "Brak"

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr "Nieistniejące pole?"

#: NOT FOUND IN SOURCE
msgid "Not Set"
msgstr "Nie ustawiono"

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr "Nie znaleziono"

#: NOT FOUND IN SOURCE
msgid "Not logged in"
msgstr "Nie udało się zalogować"

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr "Nie udało się zalogować."

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr "Nie ustawiona"

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr "Jeszcze nie zaimplementowane."

#: NOT FOUND IN SOURCE
msgid "Not yet implemented...."
msgstr "Jeszcze nie zaimplementowane..."

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr "Uwagi"

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr "Powiadomienie nie może zostać wysłane"

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr "Wyślij powiadomienie do osób o uprawnieniach AdminCc"

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr "Wyślij powiadomienie do osób o uprawnieniach AdminCc jako komentarz"

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr "Wyślij powiadomienia do osób o uprawnieniach Cc"

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr "Wyślij powiadomienia do osób o uprawnieniach Cc jako komentarz"

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr "Wyślij powiadomienie do innych odbiorców"

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr "Wyślij powiadomienie do innych odbiorców jako komentarz"

#: etc/initialdata:41
msgid "Notify Owner"
msgstr "Wyślij powiadomienie do właściciela"

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr "Wyślij powiadomienie do właściciela jako komentarz"

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr "Powiadom Właściciela o odrzuceniu jego zgłoszenia"

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Notify Owner of their ticket has been approved by all approvers"
msgstr "Powiadom Zgłaszającego o zatwierdzeniu jego zgłoszenia przez wszystkich zatwierdzających"

#: NOT FOUND IN SOURCE
msgid "Notify Owner of their ticket has been approved by some approver"
msgstr "Powiadom Zgłaszającego o zatwierdzeniu jego zgłoszenia przez niektórych zatwierdzających"

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr ""

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr ""

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr "Wyślij powiadomienie do właścicieli i osób o uprawnieniach AdminCc o nowych pozycjach oczekujących na zatwierdzenie przez nich"

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr "Wyślij powiadomienie do zgłaszających"

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr "Wyślij powiadomienie do zgłaszających i osób o uprawnieniach Cc"

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr "Wyślij powiadomienie do zgłaszających i osób o uprawnieniach Cc jako komentarz"

#: NOT FOUND IN SOURCE
msgid "Notify Requestors, Ccs and AdminCcs"
msgstr "Wyślij powiadomienie do zgłaszających oraz osób o uprawnieniach Cc i AdminCc"

#: NOT FOUND IN SOURCE
msgid "Notify Requestors, Ccs and AdminCcs as Comment"
msgstr "Wyślij powiadomienie do zgłaszających oraz osób o uprawnieniach Cc i  AdminCC jako komentarz"

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr ""

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr "Lis"

#: NOT FOUND IN SOURCE
msgid "Nov."
msgstr "Lis."

#: NOT FOUND IN SOURCE
msgid "November"
msgstr "Listopad"

#: NOT FOUND IN SOURCE
msgid "Number of search results"
msgstr "Liczba rezultatów wyszukiwania"

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr ""

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr "Nie udało się utworzyć obiektu"

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr ""

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr "Obiekt został utworzony"

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr ""

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr "Le type d'objet ne correspond pas"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr "Paź"

#: NOT FOUND IN SOURCE
msgid "Oct."
msgstr "Paź."

#: NOT FOUND IN SOURCE
msgid "October"
msgstr "Październik"

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr "Praca zdalna"

#: NOT FOUND IN SOURCE
msgid "Offline edits"
msgstr "Zdalne modyfikacje"

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr "Załaduj modyfikowane zdalnie"

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr ""

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr "w przypadku zamknięcia"

#: etc/initialdata:143
msgid "On Comment"
msgstr "w przypadku komentarza"

#: etc/initialdata:115
msgid "On Correspond"
msgstr "w przypadku korespondencji"

#: etc/initialdata:104
msgid "On Create"
msgstr "w przypadku rejestracji zgłoszeń"

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr ""

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr "w przypadku zmiany właściciela"

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr "w przypadku zmiany priorytetu"

#: etc/initialdata:172
msgid "On Queue Change"
msgstr "w przypadku zmiany kolejki"

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr ""

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr "w przypadku ponownego otwarcia"

#: etc/initialdata:178
msgid "On Resolve"
msgstr "w przypadku zamykania zgłoszeń"

#: etc/initialdata:149
msgid "On Status Change"
msgstr "w przypadku zmiany statusu"

#: etc/initialdata:109
msgid "On Transaction"
msgstr "w przypadku transakcji"

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr ""

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr "Wyświetl tylko potwierdzenia dotyczące zgłoszeń zarejestrowanych po %1"

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr "Wyświetl tylko potwierdzenia dotyczące zgłoszeń zarejestrowanych przed %1"

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Open"
msgstr "Otwarte"

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr ""

#: etc/initialdata:95
msgid "Open Tickets"
msgstr "Otwórz zgłoszenia"

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr "Otwórz URL"

#: NOT FOUND IN SOURCE
msgid "Open it"
msgstr "Otwórz"

#: NOT FOUND IN SOURCE
msgid "Open requests"
msgstr "Ouvrir les demandes"

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr "Otwórz zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "Open tickets (from listing) in a new window"
msgstr "Otwórz zgłoszenia (z listy) w nowym oknie"

#: NOT FOUND IN SOURCE
msgid "Open tickets (from listing) in another window"
msgstr "Otwórz zgłoszenia (z listy) w innym oknie"

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr "Otwórz zgłoszenia, które są w trakcie ustalania (wymiany korespondencji)"

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr ""

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr "Ustawienia"

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr ""

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr "Uporządkuj wg"

#: NOT FOUND IN SOURCE
msgid "Ordering and sorting"
msgstr "Porządkowanie i sortowanie"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr "Firma"

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr "Zgłoszenie źródłowe: #%1"

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr "Zarejestrowano wychodzącą wiadomość o komentarzu"

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr "Zarejestrowano wiadomość wychodzącą"

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr "Z upływem czasu priorytet wzrasta do"

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr "Przegląd"

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr "Moje zgłoszenia"

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr "OwnTicket"

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr "Właściciel"

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr "Zmieniono właściciela z %1 na %2"

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr "Właściciel nie mógł być ustanowiony."

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr "Wymuszono zmianę właściciela z %1 na %2"

#: NOT FOUND IN SOURCE
msgid "Owner is"
msgstr "Właścicielem"

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr ""

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr "Strona"

#: NOT FOUND IN SOURCE
msgid "Page %1 of %2"
msgstr "Strona %1 z %2"

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr "Strona 1 z 1"

#: share/html/dhandler:48
msgid "Page not found"
msgstr "Strona nie została znaleziona"

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr "Pager"

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "PagerPhone"
msgstr "Nr pager'a"

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr "Zgłoszenia nadrzędne"

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr "Hasło"

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr "Przypomnienie o haśle"

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr "Hasło zostało zmienione"

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr ""

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr "Hasło ustawione"

#: NOT FOUND IN SOURCE
msgid "Password too short"
msgstr "Hasło jest zbyt krótkie"

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr "Hasło: %1"

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr ""

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr "Hasła są różne."

#: NOT FOUND IN SOURCE
msgid "Passwords do not match. Your password has not been changed"
msgstr "Hasła są różne. Twoje hasło nie zostało zmienione."

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr "Osoby"

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr ""

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr "Wykonaj operację zdefiniowaną przez użytkownika"

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr "Konfiguracja PERL"

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr "Odmowa dostępu"

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr "Odmowa dostępu"

#: NOT FOUND IN SOURCE
msgid "Personal Groups"
msgstr "Grupy prywatne"

#: NOT FOUND IN SOURCE
msgid "Personal groups"
msgstr "Grupy prywatne"

#: NOT FOUND IN SOURCE
msgid "Personal groups:"
msgstr "Grupy prywatne:"

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr "Numery tel."

#: NOT FOUND IN SOURCE
msgid "Placeholder"
msgstr "Placeholder"

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr ""

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr "Właściwości"

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr ""

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr ""

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr ""

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr ""

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr ""

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Prefs"
msgstr "Właściwości"

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr "Informacja o przygotowaniu została wysłana do zgłaszającego"

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr "Poprzednie"

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr "Poprzednie"

#: NOT FOUND IN SOURCE
msgid "Previous Page"
msgstr "Poprzednia strona"

#: NOT FOUND IN SOURCE
msgid "Previous page"
msgstr "Poprzednia strona"

#: NOT FOUND IN SOURCE
msgid "Pri"
msgstr "Poprzedni"

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr "Nie udało się wyszukać zarządzającego %1."

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr ""

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr "Drukuj wiadomość"

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr "Priorytet"

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr "Priorytet rozpoczyna się od"

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr "Prywatność"

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr "Prywatne:"

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr "Klucz prywatny"

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr "Uprawnieni"

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr "Uprawniony status: %1"

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr "Uprawnieni użytkownicy"

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Projects"
msgstr "Projets"

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr "Grupa do użytku wewnętrznego"

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr "Zapytania"

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr "Zapytanie"

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr "Kreator zapytań"

#: NOT FOUND IN SOURCE
msgid "Query:"
msgstr "Zapytanie:"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr "Kolejka"

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr "Nie udało się wyszukać kolejki %1"

#: NOT FOUND IN SOURCE
msgid "Queue '%1' not found\\n"
msgstr "Nie udało się wyszukać kolejki '%1 '\\n"

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr "Nazwa kolejki"

#: NOT FOUND IN SOURCE
msgid "Queue Scrips"
msgstr "Skrypty kolejki"

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr "Kolejka już istnieje"

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr "Nie udało się utworzyć kolejki"

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr "Nie udało się załadować kolejki"

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr "Kolejka została utworzona"

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr ""

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr "Id kolejki"

#: NOT FOUND IN SOURCE
msgid "Queue is not specified."
msgstr "Kolejka nie została określona."

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr "Nie udało się wyszukać kolejki"

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr ""

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr ""

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr "Kolejki"

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr ""

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr ""

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr ""

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr "Szybkie wyszukiwanie"

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr "Szybkie tworzenie zgłoszeń"

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr ""

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr ""

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr "RSS"

#: NOT FOUND IN SOURCE
msgid "RT %1"
msgstr "RT %1"

#: NOT FOUND IN SOURCE
msgid "RT %1 for %2"
msgstr "RT %1 dla %2"

#: NOT FOUND IN SOURCE
msgid "RT %1 from Best Practical Solutions, LLC."
msgstr "RT %1 wyprodukowany przez Best Practical Solutions, LLC."

#: NOT FOUND IN SOURCE
msgid "RT %1. Copyright 1996-%1 Jesse Vincent \\n"
msgstr "RT %1. Copyright 1996-%1 Jesse Vincent \\n"

#: NOT FOUND IN SOURCE
msgid "RT %1. Copyright 1996-2002 Jesse Vincent \\n"
msgstr "RT %1. Copyright 1996-2002 Jesse Vincent \\n"

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr "Administracja RT"

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr "Adres poczty elektronicznej administratora RT"

#: NOT FOUND IN SOURCE
msgid "RT Authentication error."
msgstr "Błąd autoryzacji w RT"

#: NOT FOUND IN SOURCE
msgid "RT Bounce: %1"
msgstr "Odbicie zgłoszenia przez RT: %1"

#: NOT FOUND IN SOURCE
msgid "RT Config"
msgstr "Konfiguracja RT"

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT Configuration error"
msgstr "Błąd konfiguracji RT"

#: NOT FOUND IN SOURCE
msgid "RT Critical error. Message not recorded!"
msgstr "Błąd krytyczny RT. Nie udało się zapisać wiadomości!"

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr "Błąd RT"

#: NOT FOUND IN SOURCE
msgid "RT Received mail (%1) from itself."
msgstr "RT otrzymał e-mail (%1) z RT"

#: NOT FOUND IN SOURCE
msgid "RT Self Service"
msgstr "Samoobsługa RT"

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT Variables"
msgstr "Zmienne RT"

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr "RT - przegląd podstawowych informacji"

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr "RT - przegląd podstawowych informacji dla użytkownika %1"

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr ""

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT couldn't authenticate you"
msgstr "Nieudana autoryzacja w RT"

#: NOT FOUND IN SOURCE
msgid "RT couldn't find requestor via its external database lookup"
msgstr "Nie udało się wyszukać zgłaszającego przez przejrzenie zewnętrznej bazy"

#: NOT FOUND IN SOURCE
msgid "RT couldn't find the queue: %1"
msgstr "Nie udało się wyszukać kolejki: %1"

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT couldn't validate this PGP signature. \\n"
msgstr "Nie udało się zatwierdzić tego podpisu PGP.\\n"

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr "RT dla %1"

#: NOT FOUND IN SOURCE
msgid "RT for %1: %2"
msgstr "RT dla %1: %2"

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT has proccessed your commands"
msgstr "RT wykonał twoje polecenia"

#: NOT FOUND IN SOURCE
msgid "RT is © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>.  It is distributed under Version 2 of the GNU General Public License."
msgstr "RT © Copyright 1996-%1 Jesse Vincent <jesse@bestpractical.com>.  Jest dystrybuowane jako Wersja 2 GNU General Public License."

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT thinks this message may be a bounce"
msgstr "Wg RT ta wiadomość może być informacją odbitą"

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT will process this message as if it were unsigned.\\n"
msgstr "RT będzie postępował z tą wiadomością tak, jakby była niepodpisana.\\n"

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr ""

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT's email command mode requires PGP authentication.  Either you didn't sign your message, or your signature could not be verified."
msgstr "Email w RT wymaga autoryzacji podpisu PGP. Albo nie podpisałeś wiadomości, albo Twój podpis nie może być zweryfikowany."

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RTFM Error"
msgstr "Błąd RTFM"

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr ""

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr "Imię i nazwisko"

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr "RealName"

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr "Adresat"

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr ""

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr ""

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr "Powiązanie %1 dodane"

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr "Powiązanie %1 usunięte"

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr "Powiązanie z %1 dodane"

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr "Powiązanie z %1 usunięte"

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr "Zgłoszenia powiązane"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr "Powiązane z"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr "PowiązaneZ"

#: NOT FOUND IN SOURCE
msgid "Refine"
msgstr "Popraw"

#: NOT FOUND IN SOURCE
msgid "Refine search"
msgstr "Wprowadź szczegółowe kryteria wyszukiwania"

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr "Odśwież"

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr ""

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr ""

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr "Odświeżaj tę stronę co %1 minut."

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Relationships"
msgstr "Powiązania"

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr ""

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr ""

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr "Dodano przypomnienie '%1'"

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr ""

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr ""

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr "Przypomnienia"

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr "Przypomnienia dla zgłoszenia nr %1"

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr "Usuń AdminCc"

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr "Usuń zakładkę"

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr "Usuń Cc"

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr "Usuń zgłaszającego"

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr ""

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr "Odpowiedz"

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr "Adres odpowiedzi"

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr "Odpowiedz zgłaszającym"

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr "Odpowiedz na zgłoszenia"

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr "ReplyToTicket"

#: NOT FOUND IN SOURCE
msgid "Reports"
msgstr "Raporty"

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr "Zgłaszający"

#: NOT FOUND IN SOURCE
msgid "Requestor email address"
msgstr "Adres e-mail zgłaszającego"

#: NOT FOUND IN SOURCE
msgid "Requestor(s)"
msgstr "Zgłaszający"

#: NOT FOUND IN SOURCE
msgid "RequestorAddresses"
msgstr "AdresZgłaszającego"

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr "Zgłaszający"

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr "Zgłoszenia powinny być zrealizowane w ciągu"

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr "Wymagany atrybut '%1' nie został określony"

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr "Zresetuj"

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr ""

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr "Tel. domowy"

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr "Zamknij"

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr "Zamknij zgłoszenie nr %1 (%2)"

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr "Zamknięte"

#: NOT FOUND IN SOURCE
msgid "Resolved by owner"
msgstr "Zamknięte przez właściciela"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Response to requestors"
msgstr "Odpowiedź dla zgłaszających"

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr "Wyniki"

#: NOT FOUND IN SOURCE
msgid "Results per page"
msgstr "Wyniki - liczba na stronę"

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr "Powróć do zgłoszenia"

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr "Wpisz ponownie hasło"

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr "Przywróć"

#: NOT FOUND IN SOURCE
msgid "Right %1 not found for %2  %3 in scope %4 (%5)\\n"
msgstr "Uprawnienie %1 nie zostało wyszukane dla %2 %3 w zakresie %4 (%5)\\n"

#: NOT FOUND IN SOURCE
msgid "Right Delegated"
msgstr "Uprawnienie zostało przekazane"

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr "Uprawnienie zostało przyznane"

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr "Uprawnienie zostało załadowane"

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr "Uprawnienie nie może być odebrane"

#: NOT FOUND IN SOURCE
msgid "Right not found"
msgstr "Nie udało się wyszukać uprawnienia"

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr "Nie udało się załadować uprawnienia"

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr "Uprawnienie zostało odebrane"

#: NOT FOUND IN SOURCE
msgid "Rights"
msgstr "Uprawnienia"

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr "Nie udało się przydzielić uprawnień dla %1"

#: NOT FOUND IN SOURCE
msgid "Rights could not be revoked for %1"
msgstr "Nie udało się odebrać uprawnień dla %1"

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Roles"
msgstr "Role"

#: NOT FOUND IN SOURCE
msgid "RootApproval"
msgstr "RootApproval"

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr "Wiersze"

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr ""

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr "Linii na stronie"

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr ""

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr "Sob"

#: NOT FOUND IN SOURCE
msgid "Sat."
msgstr "Sob."

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr "Sobota"

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr "Zapisz"

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr "Zapisz zmiany"

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr "Zapisz"

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr "Zapisz jako Nowe"

#: NOT FOUND IN SOURCE
msgid "Save changes"
msgstr "Zapisz zmiany"

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr "Zapisano %1 %2"

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr ""

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr "Zapisane zapytania"

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr "Skrypt #%1"

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr "Skrypt został utworzony"

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr "Atrybuty skryptu"

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr "Skrypt został usunięty"

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr "Skrypty"

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr "Skrypty i Adresaci"

#: NOT FOUND IN SOURCE
msgid "Scrips for %1\\n"
msgstr "Skrypty dla %1\\n"

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr "Skrypty, które dotyczą wszystkich kolejek"

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr "Wyszukaj"

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Search Criteria"
msgstr "Kryteria wyszukiwania"

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr "Preferencje wyszukiwania"

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr ""

# nie jestem pewien!
#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr "Wyszukaj oczekujące potwierdzenia"

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr "Wyszukaj artykuły"

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr "Wyszukiwanie zgłoszeń"

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr "Opcje wyszukiwań"

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr ""

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr ""

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr "Zabezpieczenie:"

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr "Zobacz też:"

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr ""

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "See exact outgoing email messages and their recipeients"
msgstr "Zobacz dosłowne wiadomości wychodzące i ich odbiorców"

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "See ticket private commentary"
msgstr "Zobacz prywatne komentarze do zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "See ticket summaries"
msgstr "Zobacz podsumowania zgłoszeń"

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr "DostDoPólUżytk"

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr ""

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr "SeeQueue"

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr "Wybierz"

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr ""

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr "Wybierz klasę"

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr "Wybierz pole definiowane przez użytkownika"

#: NOT FOUND IN SOURCE
msgid "Select a Custom Fields"
msgstr "Wybierz pole definiowane przez użytkownika"

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr "Wybierz grupę"

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr "Wybierz kolejkę"

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr ""

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr "Wybierz użytkownika"

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr ""

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr ""

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select class"
msgstr "Wybierz klasę"

#: NOT FOUND IN SOURCE
msgid "Select custom field"
msgstr "Wybierz pole"

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr "Wybór pól zdefiniowanych przez użytkownika dla zgłoszeń we wszystkich kolejkach"

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select group"
msgstr "Wybierz grupę"

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr "Wybór wielu wartości"

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr "Wybór jednej wartości"

#: NOT FOUND IN SOURCE
msgid "Select queue"
msgstr "Wybierz kolejkę"

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select scrip"
msgstr "Wybierz skrypt"

#: NOT FOUND IN SOURCE
msgid "Select template"
msgstr "Wybierz szablon"

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr ""

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr "Wybierz maksymalnie %1 wartości"

#: NOT FOUND IN SOURCE
msgid "Select user"
msgstr "Wybierz użytkownika"

#: NOT FOUND IN SOURCE
msgid "SelectMultiple"
msgstr "Wybór wielu wartości"

#: NOT FOUND IN SOURCE
msgid "SelectSingle"
msgstr "Wybór jednej wartości"

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr "Zaznaczone pola"

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr "Zaznaczone obiekty"

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Self Service"
msgstr "Samoobsługa"

#: NOT FOUND IN SOURCE
msgid "Send mail to all watchers"
msgstr "Wyślij e-mail do wszystkich obserwatorów"

#: NOT FOUND IN SOURCE
msgid "Send mail to all watchers as a \"comment\""
msgstr "Wyślij e-mail do wszystkich obserwatorów jako \"komentarz\""

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr "Wyślij e-mail do zgłaszających i osób o uprawnieniach Cc"

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr "Wyślij e-mail do zgłaszających i osób o uprawnieniach Cc jako komentarz"

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr "Wysyła wiadomość do zgłaszających"

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr "Wysyła e-mail do osób wymienionych w Cc i Bcc"

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr "Wysyła e-mail do użytkowników o uprawnieniach CC"

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr "Wysyła e-mail jako komentarz do użytkowników o uprawnieniach CC"

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr "Wysyła e-mail do osób wymienionych w administracyjnym Cc"

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr "Wysyła e-mail do osób wymienionych w administracyjnym Cc jako komentarz"

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr "Wysyła e-mail do właściciela"

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr "Wrz"

#: NOT FOUND IN SOURCE
msgid "Sep."
msgstr "Wrz."

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Seperate multiple URLs with spaces"
msgstr "Oddziel spacjami adresy URL"

#: NOT FOUND IN SOURCE
msgid "September"
msgstr "Wrzesień"

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr "Ustawienia"

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr "Pokaż"

#: NOT FOUND IN SOURCE
msgid "Show Approvals"
msgstr "Pokazuj potwierdzenia"

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr "Wyświetlane kolumny"

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr "Wyświetl wyniki"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Show advanced search options..."
msgstr "Wyświetl zaawansowane opcje wyszukiwania..."

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr "Wyświetl zatwierdzone zgłoszenia"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Show basics"
msgstr "Wyświetl podstawowe informacje"

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr "Wyświetl odrzucone zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "Show details"
msgstr "Wyświetl szczegóły"

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr ""

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr "Wyświetl zgłoszenia oczekujące na zatwierdzenie"

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr "Wyświetl zgłoszenia oczekujące na pozostałe zatwierdzenia"

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Show ticket private commentary"
msgstr "Wyświetl prywatny komentarz do zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "Show ticket summaries"
msgstr "Wyświetl streszczenia zgłoszeń"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr "ShowACL"

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr ""

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr ""

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr "PodglądPocztyWychodz"

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr "PodglądZapytańZapis"

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr "ShowScrips"

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr "ShowTemplate"

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr "ShowTicket"

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr "ShowTicketComments"

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr "Niszczarka"

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr "Panel boczny"

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr "Podpisz"

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr "Domyślnie podpisuj"

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr "Podpisz jako zgłaszający lub osoba o uprawnieniach Cc dla zgłoszenia lub kolejki"

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr "Podpisz jako osoba o uprawnieniach AdminCc dla zgłoszenia lub kolejki"

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr "Podpis"

#: NOT FOUND IN SOURCE
msgid "Signed in as %1"
msgstr "Wpisany jako %1"

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr "Podpisywanie nieaktywne"

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr "Podpisywanie aktywne"

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr "Proste wyszukiwanie"

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr "Pojedynczy"

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr "Nazwa strony"

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr "Rozmiar"

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr "Pomiń menu"

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr "Małe"

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr "Sortuj"

#: NOT FOUND IN SOURCE
msgid "Sort Order"
msgstr "Kryterium sortowania"

#: NOT FOUND IN SOURCE
msgid "Sort key"
msgstr "Klucz sortowania"

#: NOT FOUND IN SOURCE
msgid "Sort results by"
msgstr "Sortuj wyniki wg"

#: NOT FOUND IN SOURCE
msgid "SortOrder"
msgstr "SortOrder"

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr "Sortowanie"

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr ""

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr "Arkusz kalkulacyjny"

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr "Etap"

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Stalled"
msgstr "Zamrożone"

#: NOT FOUND IN SOURCE
msgid "Start page"
msgstr "Strona powitalna"

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr "Realizacja rozpoczęta"

#: NOT FOUND IN SOURCE
msgid "Started date '%1' could not be parsed"
msgstr "Data rozpoczęcia realizacji '%1' nie może być rozpoznana"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr "Początek realizacji"

#: NOT FOUND IN SOURCE
msgid "Starts By"
msgstr "Początek realizacji od"

#: NOT FOUND IN SOURCE
msgid "Starts date '%1' could not be parsed"
msgstr "Data rozpoczęcia realizacji '%1' nie może być rozpoznana"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr "Województwo"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr "Status"

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr ""

#: etc/initialdata:307
msgid "Status Change"
msgstr "Zmiana statusu"

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr "Status zmieniony z %1 na %2"

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "StatusChange"
msgstr "Zmiana statusu"

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr "Przejmij"

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr "Przejmij zgłoszenia"

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr "PrzejecieZgloszen"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr "Krok %1 z %2"

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr "Przejęte od %1"

#: NOT FOUND IN SOURCE
msgid "Stolen from %1 "
msgstr "Przejęte od %1 "

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr "Styl"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr "Temat"

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr "Temat został zmieniony na %1"

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr "Zastosuj"

#: NOT FOUND IN SOURCE
msgid "Submit Query"
msgstr "Wykonaj zapytanie"

#: NOT FOUND IN SOURCE
msgid "Submit Workflow"
msgstr "Wprowadź obieg (Workflow)"

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr "Subskrybuj"

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr "Subskrypcja"

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Succeeded"
msgstr "Powiodło się"

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr "Streszczenie"

#: NOT FOUND IN SOURCE
msgid "Summary matches"
msgstr "Streszczenie zgadza się z"

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr "Nd"

#: NOT FOUND IN SOURCE
msgid "Sun."
msgstr "Nie."

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr "Niedziela"

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr "SuperUser"

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr "Zawieszony"

#: NOT FOUND IN SOURCE
msgid "System"
msgstr "System"

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr "Konfiguracja systemu"

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr "Domyślne ustawienie systemu"

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr "Błąd systemowy"

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr ""

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr "Narzędzia systemowe"

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "System error. Right not delegated."
msgstr "Błąd systemowy. Uprawnienie nie zostało przekazane"

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr "Błąd systemowy. Uprawnienie nie zostało przydzielone"

#: NOT FOUND IN SOURCE
msgid "System groups"
msgstr "Grupy systemowe"

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr "Grupa ról systemowych do użytku wewnętrznego"

#: NOT FOUND IN SOURCE
msgid "TEST_STRING"
msgstr "TEST_STRING"

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr "Przyjmij"

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr "Przyjmij zgłoszenia"

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr "PrzyjęcieZgłoszeń"

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr "Przyjęty"

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr "Szablon"

#: NOT FOUND IN SOURCE
msgid "Template #%1"
msgstr "Szablon #%1"

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr ""

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Template deleted"
msgstr "Szablon został usunięty"

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr ""

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Template not found"
msgstr "Nie udało się wyszukać szablonu"

#: NOT FOUND IN SOURCE
msgid "Template not found\\n"
msgstr "Nie udało się wyszukać szablonu\\n"

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr "Szablon nie został rozpoznany"

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr ""

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr ""

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr "Szablony"

#: NOT FOUND IN SOURCE
msgid "Templates for %1\\n"
msgstr "Szablony dla %1\\n"

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr "Texte"

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr "To już jest aktualna wartość"

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr "To nie jest wartość tego pola"

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr "To jest ta sama wartość"

#: NOT FOUND IN SOURCE
msgid "That principal already has that right"
msgstr "Ten użytkownik/ grupa już dysponują tym prawem"

#: NOT FOUND IN SOURCE
msgid "That principal is already a %1 for this queue"
msgstr "Ten zarządzający jest już %1 dla tej kolejki"

#: NOT FOUND IN SOURCE
msgid "That principal is already a %1 for this ticket"
msgstr "Ten zarządzający jest już %1 dla tego zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "That principal is not a %1 for this queue"
msgstr "Ten zarządzający nie jest %1 dla tej kolejki"

#: NOT FOUND IN SOURCE
msgid "That principal is not a %1 for this ticket"
msgstr "Ten zarządzający nie jest %1 dla tego zgłoszenia"

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr "Ta kolejka nie istnieje"

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr "To zgłoszenie ma niewykonane zgłoszenia zależne"

#: NOT FOUND IN SOURCE
msgid "That user already has that right"
msgstr "Ten użytkownik już posiada to uprawnienie"

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr "Ten użytkownik już jest właścicielem tego zgłoszenia"

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr "Taki użytkownik nie istnieje"

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr "Ten użytkownik już posiada to uprawnienie"

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr "Ten użytkownik nie jest uprawniony"

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr "Ten użytkownik jest już uprawniony"

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr "Ten użytkownik jest teraz nieuprawniony"

#: NOT FOUND IN SOURCE
msgid "That user is now unprivilegedileged"
msgstr "Cet utilisateur a perdu ses droits"

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr "Ten użytkownik może nie posiadać zgłoszeń w tej kolejce"

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr "To nie jest id typu liczbowego"

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr "Podstawowe informacje"

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr "CC zgłoszenia"

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr ""

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr "Administracyjne CC zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "The comment has been recorded"
msgstr "Komentarz został zapisany"

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:"
msgstr "Następujące polecenie wyszuka wszystkie aktywne zgłoszenia w kolejce głównej i ustawi ich priorytet na 99, jeśli nie zostały zmodyfikowane w ciągu ostatnich 4 godzin:"

#: NOT FOUND IN SOURCE
msgid "The following commands were not proccessed:\\n\\n"
msgstr "Następujące polecenia nie zostały wykonane:\\n\\n"

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr "Ustawiono nową wartość."

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr "Właściciel zgłoszenia"

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr "Zgłaszający"

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr ""

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr "Motyw"

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr "To zgłoszenie zawiera nieprzeczytane wiadomości."

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr "Te komentarze nie są generalnie widoczne dla użytkownika"

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr "Ta funkcja jest dostępna tylko dla administratora systemu"

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "This message will be sent to..."
msgstr "Ta wiadomość zostanie wysłana do..."

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "This ticket %1 %2 (%3)\\n"
msgstr "To zgłoszenie %1 %2 (%3)\\n"

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr "Ta aplikacja pozwala użytkownikowi na przypadkowe uruchomienie tzw. perl modułów z RT"

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr "Nie określono zawartości tej transakcji"

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "This user's %1 highest priority tickets"
msgstr "%1 zgłoszeń tego użytkownika o najwyższym priorytecie"

#: NOT FOUND IN SOURCE
msgid "This user's 25 highest priority tickets"
msgstr "25 zgłoszeń tego użytkownika o najwyższym priorytecie"

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr "Czw"

#: NOT FOUND IN SOURCE
msgid "Thu."
msgstr "Czw."

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr "Czwartek"

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr "Zgłoszenie"

#: NOT FOUND IN SOURCE
msgid "Ticket # %1  %2"
msgstr "Zgłoszenie nr %1  %2"

#: NOT FOUND IN SOURCE
msgid "Ticket # %1 Jumbo update: %2"
msgstr "Ticket n°%1 Jumbo update: %2"

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr "Pełna aktualizacja: %2 zgłoszenia nr %1"

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr "Zgłoszenie nr %1  %2"

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr "Zgłoszenie %1"

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr "Zgłoszenie %1 zostało utworzone w kolejce '%2'"

#: NOT FOUND IN SOURCE
msgid "Ticket %1 loaded\\n"
msgstr "Zgłoszenie %1 zostało załadowane\\n"

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr "Zgłoszenie %1:  %2"

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr ""

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr "Historia zgłoszenia nr %1  %2"

#: NOT FOUND IN SOURCE
msgid "Ticket Id"
msgstr "Nr zgłoszenia"

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr "Zgłoszenie zamknięte"

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr "Wyszukiwanie zgłoszeń"

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr ""

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ticket attachment"
msgstr "Załącznik do zgłoszenia, którego"

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr "Zawartość zgłoszenia"

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr "Typ zawartości zgłoszenia"

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr "Nie udało się utworzyć zgłoszenia z powodu wewnętrznego błędu"

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr "Zgłoszenie nie mogło być załadowane"

#: NOT FOUND IN SOURCE
msgid "Ticket created"
msgstr "Zgłoszenie zostało utworzone"

#: NOT FOUND IN SOURCE
msgid "Ticket creation failed"
msgstr "Nie udało się utworzyć zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "Ticket deleted"
msgstr "Zgłoszenie zostało usunięte"

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ticket id not found"
msgstr "Nie udało się wyszukać numeru zgłoszenia"

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr "Meta-dane zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "Ticket not found"
msgstr "Nie udało się wyszukać zgłoszenia"

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr "Zmienił się status zgłoszenia"

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ticket watchers"
msgstr "Obserwatorzy zgłoszenia"

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr ""

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr "Zgłoszenia"

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr "Zgłoszenia %1 %2"

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr "Zgłoszenia %1 do %2"

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Tickets created after"
msgstr "Zgłoszenia utworzone po"

#: NOT FOUND IN SOURCE
msgid "Tickets created before"
msgstr "Zgłoszenia utworzone przed"

#: NOT FOUND IN SOURCE
msgid "Tickets from %1"
msgstr "Zgłoszenia od %1"

#: NOT FOUND IN SOURCE
msgid "Tickets resolved after"
msgstr "Zgłoszenia zamknięte po"

#: NOT FOUND IN SOURCE
msgid "Tickets resolved before"
msgstr "Zgłoszenia zamknięte przed"

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr "Zgłoszenia, które zależą od tego zatwierdzenia:"

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr "Szacowany czas"

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr "Pozostały czas"

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr "Czas realizacji"

#: NOT FOUND IN SOURCE
msgid "Time left"
msgstr "Pozostały czas"

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr "Wyświetlany czas"

#: NOT FOUND IN SOURCE
msgid "Time worked"
msgstr "Czas realizacji"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr "PozostałyCzas"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr "Czas realizacji"

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr "Strefa czasowa"

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr "Tytuł"

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr "Do"

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "To generate a diff of this commit:"
msgstr "Aby wygenerować różnice tego zatwierdzenia:"

#: NOT FOUND IN SOURCE
msgid "To generate a diff of this commit:\\n"
msgstr "Aby wygenerować różnice tego zatwierdzenia:\\n"

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr "Więcej o wsparciu, szkoleniach, rozwoju i licencjonowaniu dostępne jest w %1."

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr "Wpłynęło"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr "Narzędzia"

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr ""

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr ""

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr ""

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr "Łącznie"

#: etc/initialdata:249
msgid "Transaction"
msgstr "Transakcja"

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr "Transakcja %1 została wyczyszczona"

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr "Transakcja została utworzona"

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Transaction->Create couldn't, as you didn't specify a ticket id"
msgstr "Transakcja-> Nie udało się utworzyć, ponieważ nie określono numeru zgłoszenia"

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr ""

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr "Transakcje nie są możliwe do powielenia"

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr "Zaufanie"

#: NOT FOUND IN SOURCE
msgid "Trying to delete a right: %1"
msgstr "Próba usunięcia uprawnienia: %1"

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr "Wt"

#: NOT FOUND IN SOURCE
msgid "Tue."
msgstr "Wto."

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr "Wtorek"

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr "Typ"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr ""

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr "Nie udało się załadować artykułu"

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr "Niezaimplementowane"

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr "Unix login"

#: NOT FOUND IN SOURCE
msgid "UnixUsername"
msgstr "Nazwa użytkownika typu 'unix'"

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr ""

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr "Nieznany Typ Zawartości %1"

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr ""

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr ""

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr "Nieograniczona"

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr "Zapytanie bezimienne"

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr ""

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr "Nieuprawnieni"

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr "Niezaznaczone Pola"

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr ""

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr "Niepobrany"

#: NOT FOUND IN SOURCE
msgid "Untitled search"
msgstr "Recherche sans titre"

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr "Zaktualizuj"

#: NOT FOUND IN SOURCE
msgid "Update All"
msgstr "Zaktualizuj wszystko"

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Update ID"
msgstr "Zaktualizuj ID"

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr "Zaktualizuj zgłoszenie"

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr "Zaktualizuj typ"

#: NOT FOUND IN SOURCE
msgid "Update all these tickets at once"
msgstr "Zaktualizuj wszystkie te zgłoszenia jednocześnie"

#: NOT FOUND IN SOURCE
msgid "Update email"
msgstr "Zaktualizuj e-mail"

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr ""

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr "Zaktualizuj wiele zgłoszeń jednocześnie"

#: NOT FOUND IN SOURCE
msgid "Update name"
msgstr "Zaktualizuj nazwę"

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr "Aktualizacja nie została zapisana."

#: NOT FOUND IN SOURCE
msgid "Update selected tickets"
msgstr "Zaktualizuj wybrane zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "Update signature"
msgstr "Zaktualizuj podpis"

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr "Zaktualizuj zgłoszenie"

#: NOT FOUND IN SOURCE
msgid "Update ticket # %1"
msgstr "Zaktualizuj zgłoszenie nr %1"

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr "Zaktualizuj zgłoszenie nr %1"

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr "Zaktualizuj zgłoszenie nr %1 (%2)"

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr "Aktualizacja nie dotyczyła korespondencji ani komentarza."

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr ""

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr "Zaktualizowane"

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr "Zapisz"

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr ""

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr "Wyślij wiele plików"

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr "Wyślij wiele obrazków"

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr "Wyślij jeden plik"

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr "Wyślij jeden obrazek"

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr "Wyślij aż do %1 plików"

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr "Wyślij aż do %1 obrazków"

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr "Zapisz swoje zmiany"

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Usage: "
msgstr "Użycie: "

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr "Używać SSL?"

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr ""

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr ""

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Use the dropdown menus to select which transactions you want to extract into a new RTFM article"
msgstr "Użyj rozwijalnych list, aby wybrać transakcje, z których chcesz utworzyć nowy artykuł RTFM"

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr "Użytkownik"

#: NOT FOUND IN SOURCE
msgid "User %1 %2: %3\\n"
msgstr "Użytkownik %1 %2: %3 \\n"

#: NOT FOUND IN SOURCE
msgid "User %1 Password: %2\\n"
msgstr "Hasło użytkownika %1: %2\\n"

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr "Nie można znaleźć użytkownika %1."

#: NOT FOUND IN SOURCE
msgid "User '%1' not found"
msgstr "Nie udało się wyszukać użytkownika '%1'"

#: NOT FOUND IN SOURCE
msgid "User '%1' not found\\n"
msgstr "Nie udało się wyszukać użytkownika '%1'\\n"

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr "Definiowany przez użytkownika"

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr "Warunki i operacje zdefiniowane przez użytkownika"

#: NOT FOUND IN SOURCE
msgid "User ID"
msgstr "Id"

#: NOT FOUND IN SOURCE
msgid "User Id"
msgstr "Id"

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr "Uprawnienia użytkowników"

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr ""

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr "Nie udało się utworzyć użytkownika: %1"

#: lib/RT/User.pm:262
msgid "User created"
msgstr "Użytkownik został utworzony"

#: NOT FOUND IN SOURCE
msgid "User defined groups"
msgstr "Grupy def. przez użytkownika"

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr "Użytkownik ma pusty adres poczty elektronicznej"

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr "Użytkownik załadowany"

#: NOT FOUND IN SOURCE
msgid "User notified"
msgstr "Użytkownik został powiadomiony"

#: NOT FOUND IN SOURCE
msgid "User view"
msgstr "Widok użytkownika"

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr "Grupy zdefiniowane przez użytkownika"

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr "Nazwa"

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr "Format nazwy użytkownika"

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr "Użytkownicy"

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr "Użytkownicy odpowiadający kryteriom wyszukiwania"

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr ""

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr "Sprawdź zapytanie"

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "ValueOfQueue"
msgstr "Wartość kolejki"

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr "Wartości"

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr ""

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr ""

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr ""

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr ""

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr "Obserwuj"

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr "WatchAsAdminCc"

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr "Obserwator"

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr "Obserwatorzy"

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "WebEncoding"
msgstr "Web-kodowanie"

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr "Śr"

#: NOT FOUND IN SOURCE
msgid "Wed."
msgstr "Śro."

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr "Środa"

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr ""

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr ""

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr "Witaj w RT!"

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr "Co dziś zrobiłem"

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr "Czym jest RT?"

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket"
msgstr "Po zatwierdzeniu zgłoszenia przez wszystkich zatwierdzających, dodaj korespondencję do oryginalnego zgłoszenia"

#: NOT FOUND IN SOURCE
msgid "When a ticket has been approved by any approver, add correspondence to the original ticket"
msgstr "Po zatwierdzeniu zgłoszenia przez któregokolwiek z zatwierdzających, dodaj korespondencję do oryginalnego zgłoszenia"

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr "Po utworzeniu zgłoszenia"

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr "Po utworzeniu zgłoszenia podlegającego zatwierdzeniu, powiadom właściciela i osoby o uprawnieniach AdminCc o zadaniu oczekującym zatwierdzenie przez nich"

#: etc/initialdata:110
msgid "When anything happens"
msgstr "Jeśli cokolwiek się wydarzy"

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr ""

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr "Zawsze gdy zgłoszenie będzie zamykane"

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr "Zawsze gdy zmieni się właściciel zgłoszenia"

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr "Zawsze gdy zmieni się priorytet zgłoszenia"

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr "Zawsze gdy zmieni się kolejka zgłoszenia"

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr "Zawsze gdy zmieni się status zgłoszenia"

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr "Zawsze gdy wystąpi warunek definiowany przez użytkownika"

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr "Zawsze gdy wystąpią komentarze"

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr "Zawsze gdy wpłynie korespondencja"

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Which are referred to by "
msgstr "Które są zgłoszeniami powiązanymi "

#: NOT FOUND IN SOURCE
msgid "Which refer to"
msgstr "Które dotyczą"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr ""

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr "Praca"

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Work offline"
msgstr "Praca zdalna"

#: NOT FOUND IN SOURCE
msgid "WorkPhone"
msgstr "Tel. do pracy"

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr "Czas pracy"

#: NOT FOUND IN SOURCE
msgid "XXX CHANGEME You are not an authorized user"
msgstr "XXX CHANGEME Nie jesteś użytkownikiem z uprawnieniami"

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr "Tak"

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr ""

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr "Jesteś już właścicielem tego zgłoszenia"

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "You are not an authorized user"
msgstr "Nie jesteś autoryzowanym użytkownikiem"

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr ""

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr "Możesz ponownie przydzielić tylko te zgłoszenia, których jesteś właścicielem lub te, które nie mają właściciela"

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr ""

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "You don't have permission to view that ticket.\\n"
msgstr "Nie masz uprawnień do przeglądania tego zgłoszenia.\\n"

#: NOT FOUND IN SOURCE
msgid "You found %1 tickets in queue %2"
msgstr "Wyszukałeś zgłoszenia %1 w kolejce %2"

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr "Zostałeś wylogowany z RT."

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr ""

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr ""

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr "Nie masz uprawnień do rejestrowania zgłoszeń w tej kolejce."

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr ""

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr "Nie możesz rejestrować zgłoszeń w tej kolejce."

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr ""

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr "Proszę zalogować się ponownie"

#: NOT FOUND IN SOURCE
msgid "Your %1 requests"
msgstr "Twoje zgłoszenia %1"

#: NOT FOUND IN SOURCE
msgid "Your RT administrator has misconfigured the mail aliases which invoke RT"
msgstr "Administrator RT niewłaściwie skonfigurował aliasy maila, które wywołują RT"

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Your request has been approved by %1. Other approvals may still be pending."
msgstr "Twoje zgłoszenie zostało zatwierdzone przez %1. Może nadal oczekiwać na inne zatwierdzenia."

#: NOT FOUND IN SOURCE
msgid "Your request has been approved."
msgstr "Twoje zgłoszenie zostało zatwierdzone."

#: NOT FOUND IN SOURCE
msgid "Your request was rejected"
msgstr "Twoje zgłoszenie zostało odrzucone"

#: NOT FOUND IN SOURCE
msgid "Your request was rejected."
msgstr "Twoje zgłoszenie zostało odrzucone"

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr "Nazwa użytkownika lub hasło jest nieprawidłowe"

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr "Kod pocztowy"

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "[no subject]"
msgstr "[Pas de sujet]"

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr "[brak]"

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr ""

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "po"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "and is not"
msgstr "i nie jest"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr "i nie"

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "tak jak przydzielone dla %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "pasek"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "przed"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "od dołu do góry"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "zamknięte"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "zawiera"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "zawartość"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "typ zawartości"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "korespondencja (prawdopodobnie) nie została wysłana"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "korespondencja została wysłana"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "dzienna"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "co dzień o %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dniami"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "usuń"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "usunięte"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "nie zgadza się z"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "nie zawiera"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "nie pasuje"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "pobierz"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "email address"
msgstr "adresse email"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "równy"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "co"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "false"
msgstr "faux"

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "nazwa pliku"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "pełne"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "większy od"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grupy '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "godz."

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "Numer"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr "w ramach klasy %1"

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "jest"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "nie jest"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "klucz wygasł"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "od lewej do prawej"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "mniejszy od"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginalne"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "zgadza się z"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min."

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minuty"

#: NOT FOUND IN SOURCE
msgid "modifications\\n\\n"
msgstr "modyfikacje\\n\\n"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "miesięcznie"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "miesięcznie (dzień %1) o %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "miesiącami"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "nigdy"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "nowe"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "nie"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "bez nazwy"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "brak wartości"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "żaden"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "różny od"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nic"

#: NOT FOUND IN SOURCE
msgid "notlike"
msgstr "necontientpas"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "dnia"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "w dniu"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "otwarte"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "otwórz/zamknij"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "inne..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "prywatna grupa '%1' użytkownika '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "kołowy"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "kolejka %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "odrzucone"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "zamknięte"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "od prawej do lewej"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek."

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "Arkusz kalk."

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "zamrożone"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr ""

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "system %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "grupy systemowej '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "przywoływany komponent nie określił powodu"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "ticket #%1"
msgstr "ticket n°%1"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "zgłoszenie #%1 %2"

#: NOT FOUND IN SOURCE
msgid "till"
msgstr "do"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "od góry do dołu"

#: NOT FOUND IN SOURCE
msgid "true"
msgstr "vrai"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "absolutne"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "nieopisana grupa %1"

#: NOT FOUND IN SOURCE
msgid "undescripbed group %1"
msgstr "nieopisana grupa %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "użytkownika %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "z dodatkowymi informacjami"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "tygodniowo"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "tygodniami"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "z nagłówkami"

#: NOT FOUND IN SOURCE
msgid "with template %1"
msgstr "wg szablonu %1"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "rokiem/latami"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "tak"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/tr.po0000664000175000017500000105533612262650742013774 0ustar  chmrrchmrr# Turkish localization catalog for Request Tracker (RT)
# First Author: Burak Gürsoy , Jun 2007
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-05 23:59+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " %1 silindi."

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 değeri %2 olarak yeniden adlandırıldı."

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 kaydedildi."

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%3 %2 %7 %1, %4:%5:%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 eklendi"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 önce"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1: %2 değeri %3 olarak değiştirildi"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 silindi"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 silindi."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 kaydedildi."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 güncellendi."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 ile şablon %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) oluşturan: %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Değişmemiş)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr ""

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr ""

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - %2 komutuna geçilecek bir argüman"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - STDOUT' a gönderilen çıktı durumu güncellemeleri"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Kullanmak istediğiniz şablonun adını belirtin"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify if you want to use either 'first' or 'last' tarnsaction"
msgstr "%1 - 'first' veya 'last' hareketlerinden hangisini kullanacağınızı belirtin"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr ""

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr ""

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Kullanmak istediğiniz eylem modülünü belirtin"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr ""

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Kullanmak istediğiniz durum modülünü belirtin"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Kullanmak istediğiniz arama modülünü belirtin"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify the type of a transaction you want to use"
msgstr "%1 - Kullanmak istediğiniz hareket türünü belirtin"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT sürüm %2 Telif Hakkı: 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "ScriptAction %1 yüklendi"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1, %2 için bir değer olarak eklendi"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr ""

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr ""

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 yerel bir nesne olarak gözüküyor, fakat veritabanında mevcut değil"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 - %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1, %2 değerinden %3 değerine değişti"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 kopya"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1, %2 olarak atanamıyor"

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1, durumunu çözülmüş olarak değiştiremiyor. RT' nin veritabanı tutarsız olabilir"

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 oluşturuldu"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 silindi"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr ""

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr ""

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr ""

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "Sahibi olduğum yüksek öneme sahip %1 bilet"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1, biletlere dışarıdan müdahale edebilen bir araçtır (cron gibi)"

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1, artık bu kuyruk için %2 değil."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr ""

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr ""

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 dakika"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "Sahibi olmayan en yeni %1 bilet"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 nesne"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 hak"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr ""

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr ""

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 güncellendi"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1, çözülmüş bir grup biletinin tüm üyelerini çözecektir"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1 için %2 nesne"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1 ve %2 için %3 nesne"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1 için kaydedilmiş aramalar"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: herhangi bir eklenti belirtilmedi"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Yeni bilet:%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr ""

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1', durum için geçersiz bir değer"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Silmek için kutucuğu işaretleyin)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Listelenen alıcılara uyarı gitmesini iptal etmek için kutucukları işaretleyin)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "Listelenen alıcılara uyarı gitmesi için kutucukları işaretleyin)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Boşluklarla ayrılmış olarak, bilet numaralarını veya URL' lerini girin)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Boş bırakılırsa, varsayılan olarak %1 değerini alacaktır)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Özel alan yok)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Üye yok)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Senet yok)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Şablon yok)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Hiçbiri)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Bu güncellemeyi, virgülle ayrılmış eposta listesine, görünmez karbon kopya olarak gönderir. İleriki güncellemeleri kimin alıp almayacağını değiştirmez.)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Bu güncellemeyi, virgülle ayrılmış eposta listesine, karbon kopya olarak gönderir. Listedeki kişiler ileriki güncellemeleri alacaktır.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Bu güncellemeyi, virgülle ayrılmış eposta listesine, karbon kopya olarak gönderir. İleriki güncellemeleri kimin alıp almayacağını değiştirmez.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Bu güncellemeyi, virgülle ayrılmış eposta listesine, karbon kopya olarak gönderir. Listedeki kişiler ileriki güncellemeleri alacaktır.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Bir durum veya eylem için 'Kullanıcı Tanımlı' yı seçtiğinizde, bu alanları kullanın)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Eposta gönderilmeyecek)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(boş)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(herhangi bir ad listelenmedi)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr ""

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(değer yok)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(değer yok)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(sadece bir bilet)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(onaylanmayı bekliyor)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(diğer bir Koleksiyonu bekliyor)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(gerekli)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(başlıksız)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(yyyy/mm/dd)"
msgstr "(yyyy/aa/gg)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "--transaction argument could be only 'first' or 'last'"
msgstr "--transaction argümanı sadece 'first' veya 'last' olabilir"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr ""

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: etc/initialdata:215
msgid "A blank template"
msgstr "Boş bir şablon"

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr "Bir parola atanmamış, dolayısıyla, kullanıcı giriş yapamayacak"

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr "ACE bulunamadı"

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr "ACE' ler sadece oluşturulabilir ve silinebilirler."

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "VE"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "Hakkımda"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "Erişim denetimi"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "Eylem"

#: NOT FOUND IN SOURCE
msgid "Action %1 not found"
msgstr "%1 eylemi bulunamadı"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr ""

#: bin/rt-crontool:228
msgid "Action committed."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Action committed.\\n"
msgstr "Eylem yapıldı"

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr "Eylem, zorunlu bir argüman"

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr "Eylem hazırlanıyor..."

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr ""

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Add"
msgstr "Ekle"

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr ""

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "Yöneticiye karbon kopya ekle"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr "Yer İmi Ekle"

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "Karbon kopya ekle"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr "Sütun ekle"

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr "Kıstas ekle"

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "Daha fazla dosya ekle"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "İstekçi ekle"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr "Değer ekle"

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr "Bütün kuyruklara etki edecek bir senet ekle"

#: NOT FOUND IN SOURCE
msgid "Add and Search"
msgstr "Ekle ve Ara"

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "Seçilen senetlere yorum veya cevap ekle"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr ""

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr "Üye ekle"

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "Yeni gözcüler ekle"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr ""

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr "Bu terimleri ekle"

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr "Bu terimleri ekle ve Ara"

#: NOT FOUND IN SOURCE
msgid "Add these terms to your search"
msgstr "Aramanıza bu terimleri ekleyin"

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr ""

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr "Değer ekle"

#: NOT FOUND IN SOURCE
msgid "Add, delete and modify custom field values for objects"
msgstr "Nesneler için, kişiselleştirilmiş alanları ekleyin, silin ve değiştirin"

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr ""

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Added principal as a %1 for this queue"
msgstr "Bu kuyruk için, asıl, %1 olarak eklendi"

#: NOT FOUND IN SOURCE
msgid "Added principal as a %1 for this ticket"
msgstr "Bu bilet için, asıl, %1 olarak eklendi"

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr "Adres"

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr ""

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "Adres1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "Adres2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr "Yönetici Karbon Kopya"

#: etc/initialdata:292
msgid "Admin Comment"
msgstr "Yönetici Yorumu"

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr "Yönetici Yazışması"

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr "Yönetici kuyrukları"

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr "Yönetici/Küresel ayarlar"

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr ""

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr ""

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr ""

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr ""

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr ""

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr ""

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr "Yönetimsel karbon kopya"

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr ""

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "Gelişmiş"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr ""

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr "Toplayıcı"

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr "Bütün Onaylar Geçti"

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr ""

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr ""

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr "Bütün Kuyruklar"

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr ""

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr ""

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr ""

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr ""

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr ""

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr ""

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr ""

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr ""

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "Ve/Veya"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr ""

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr "Uygulandı"

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "Etki edeceği bölümler:"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "Uygula"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "Değişikliklerinizi uygulayın"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "Onaylama"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr "Onaylama #%1: %2"

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr "Onaylama #%1: Bir sistem hatası nedeniyle, notlar kaydedilemedi"

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr "Onaylama #%1: Notlar kaydedildi"

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr "Onay Geçti"

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr ""

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr "Onay Reddedildi"

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr "Onayla"

#: NOT FOUND IN SOURCE
msgid "Approver's notes: %1"
msgstr "Onaylayanın notları: %1"

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr "Nis"

#: NOT FOUND IN SOURCE
msgid "Apr."
msgstr "Nis."

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr ""

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr ""

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr ""

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr ""

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr ""

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr ""

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr ""

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr ""

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr ""

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr "Art"

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "Artan"

#: NOT FOUND IN SOURCE
msgid "Assign and remove custom fields"
msgstr "Kişisel alanları ata ve kaldır"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr ""

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "Ekle"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr "Dosya ekle"

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "Eklenmiş dosya"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr "Eklenti '%1' yüklenemiyor"

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "Eklenti oluşturuldu"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "Eklenti dosya adı"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "Eklentiler"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr ""

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr "Öznitelik Silindi"

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr "Ağu"

#: NOT FOUND IN SOURCE
msgid "Aug."
msgstr "Ağu."

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr ""

#: etc/initialdata:218
msgid "Autoreply"
msgstr "Otomatik cevap"

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr "İstekçileri Otomatik Cevapla"

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr "Hazır"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr ""

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "Temeller"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr "Gizli karbon kopya"

#: NOT FOUND IN SOURCE
msgid "Be sure to save your changes"
msgstr "Değişikliklerinizi kaydettiğinizden emin olun"

#: NOT FOUND IN SOURCE
msgid "Best Practical Solutions, LLC corporate logo"
msgstr "Best Practical Solutions, LLC şirket logosu"

#: etc/initialdata:214
msgid "Blank"
msgstr "Boş"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr ""

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "Kalın"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr "Yer İmi"

#: NOT FOUND IN SOURCE
msgid "Bookmarkable link"
msgstr "Yer imi olarak eklenebilir bağlantı"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr ""

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr ""

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Brief headers"
msgstr "Kısa başlıklar"

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr ""

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr ""

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr "Toplu Güncelleme"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr ""

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr ""

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr ""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr "Sistem kullanıcıları değiştirilemez"

#: NOT FOUND IN SOURCE
msgid "Can this principal see this queue"
msgstr "Bu yetkili, bu kuyruğu gördü mü"

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr "Bir ad olmadan, kişisel alan değeri eklenemez"

#: NOT FOUND IN SOURCE
msgid "Can't find a collection class for '%1'"
msgstr "'%1' için bir koleksiyon sınıfı bulunamadı"

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr "Üzerinde çalışılabilecek bir kaydedilmiş arama bulunamadı"

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr "Bir bileti kendisine bağlayamazsınız"

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr "%1 kaydedilemedi"

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "Bu arama kaydedilemiyor"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr "Taban ve hedefin ikisini birden belirtemezsiniz"

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr ""

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Cannot create user: %1"
msgstr "Kullanıcı oluşturulamadı: %1"

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr "Kategori"

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "Karbon kopya"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr ""

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr "Değiştir"

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "Parolayı değiştir"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr ""

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr ""

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "Hepsini işaretle"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr ""

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr "Silmek için kutucuğu işaretleyin"

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr "Hak vermek için kutucuğu işaretleyin"

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "Çocuklar"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Choose a date"
msgstr "Bir tarih seçin"

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "Şehir"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr ""

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr ""

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr ""

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr ""

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr ""

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr "Temizle"

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "Hepsini Temizle"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr ""

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Close window"
msgstr "Pencereyi Kapat"

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "Kapatıldı"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr "Kapatılmış biletler"

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr "Seçim kutusu: Birden fazla değeri seçin veya girin"

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr "Seçim kutusu: Bir tek değeri seçin veya girin"

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr "Seçim kutusu: 1-%1 arası değer seçin veya girin"

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "Yorum"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr "Yorum Adresi"

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr ""

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr "Biletler üzerine yorum yap"

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr ""

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "Açıklamalar"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "Yorumlar (istekçilere gönderilmedi)"

#: NOT FOUND IN SOURCE
msgid "Comments (not sent to requestors)"
msgstr "Yorumlar (istekçilere gönderilmedi)"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr "Bu kullanıcı hakkındaki yorumlar"

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "Yorumlar eklendi"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr "Saplanmışları Ada"

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "Durum"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr ""

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr "Durum, zorunlu bir argüman"

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr "Durum eşleşiyor..."

#: NOT FOUND IN SOURCE
msgid "Condition not found"
msgstr "Durum bulunamadı"

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr ""

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr ""

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "Ayarlar"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Confirm"
msgstr "Onayla"

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr ""

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "İçerik"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr ""

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr ""

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Copy"
msgstr "Kopya"

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr ""

#: etc/initialdata:283
msgid "Correspondence"
msgstr "Uygunluk"

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr "Uygunluk eklendi"

#: NOT FOUND IN SOURCE
msgid "Could not add new custom field value. "
msgstr "Yeni özel bölüm eklenemiyor. "

#: NOT FOUND IN SOURCE
msgid "Could not add new custom field value. %1 "
msgstr "Yeni özel bölüm eklenemiyor. %1 "

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not change owner. "
msgstr "Sahip değiştirilemiyor. "

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not create CustomField"
msgstr "Özel bölüm oluşturulamıyor"

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr "Özel bölüm oluşturulamıyor: %1"

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr "Grup oluşturulamıyor"

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr ""

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr "Şablon oluşturulamıyor: %1"

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr "Bilet oluşturulamıyor. Kuyruk atanmadı"

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr "Kullanıcı oluşturulamıyor"

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr ""

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr "Bu kullanıcı bulunamıyor veya oluşturulamıyor"

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr "Bu yetkili bulunamıyor"

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr "Özel bölüm yüklenemiyor %1"

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr "Grup yüklenemiyor"

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr "%1 için nesne yüklenemiyor"

#: NOT FOUND IN SOURCE
msgid "Could not load search attribute"
msgstr "Arama özniteliği yüklenemiyor"

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not make that principal a %1 for this queue"
msgstr "Bu yetkili, bu kuyruk için bir %1 yapılamıyor"

#: NOT FOUND IN SOURCE
msgid "Could not make that principal a %1 for this ticket"
msgstr "Bu yetkili, bu bilet için bir %1 yapılamıyor"

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not remove that principal as a %1 for this queue"
msgstr "Bu yetkili, bu kuyruktan %1 olarak ayrılamıyor"

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr "Kullanıcı bilgisi atanamıyor"

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr "Eklenti eklenemiyor"

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr "Kullanıcı gruba eklenemiyor"

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr "Bir hareket oluşturulamıyor: %1"

#: NOT FOUND IN SOURCE
msgid "Couldn't create record"
msgstr "Kayıt oluşturulamadı"

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr ""

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr "Satır bulunamadı"

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr "Bu yetkili bulunamadı"

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr "Bu değer bulunamadı"

#: NOT FOUND IN SOURCE
msgid "Couldn't load %1 from the users database.\\n"
msgstr "%1 değeri, kullanıcı veritabanından yüklenemedi.\\n"

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr "%1 sınıfı yüklenemedi"

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr "Özel bölüm %1 yüklenemedi"

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr "#%1 numaralı biletin kopyası yüklenemedi"

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr ""

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr "%1 grubu yüklenemedi"

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr "Bağlantı yüklenemedi"

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr "%1 nesnesi yüklenemedi"

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr ""

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr "Kuyruk yüklenemedi"

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr "%1 kuyruğu yüklenemedi"

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr ""

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr "Senet #%1 yüklenemedi"

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr ""

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr "'%1' bileti yüklenemedi"

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr ""

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr ""

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr "Kullanıcı yüklenemedi"

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr "Kullanıcı yüklenemedi #%1"

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr ""

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr "Kullanıcı yüklenemedi '%1'"

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr ""

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr ""

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr ""

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr ""

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr "'%1' değeri bir URI olarak çözülemiyor"

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr ""

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr ""

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr ""

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "Ülke"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "Oluştur"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "Bilet Oluştur"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr "Özel Bölüm Oluştur"

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr "%1 kuyruğu için özel bir bölüm oluştur"

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr ""

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr ""

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "Yeni bir grup oluştur"

#: NOT FOUND IN SOURCE
msgid "Create a new personal group"
msgstr "Yeni bir kişisel grup oluştur"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr ""

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "YEni bir bilet oluştur"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "Yeni bir kullanıcı oluştur"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr "Yeni bir kuyruk oluştur"

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr "%1 kuyruğu için yeni bir senet oluştur"

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr "Bir şablon oluştur"

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr "Yeni bir bilet oluştur"

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr ""

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr ""

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr ""

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr "Bu senedin şablonunu temel alarak yeni biletler oluştur"

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr ""

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr "Yeni bilet oluştur"

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create tickets in this queue"
msgstr "Bu kuyrukta yeni biletler oluştur"

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify custom fields"
msgstr "Özel bölümleri oluştur, sil ve değiştir"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify queues"
msgstr "Kuyrukları oluştur, sil ve değiştir"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify the members of personal groups"
msgstr "Kişisel grup üyelerini oluştur, sil ve değiştir"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify users"
msgstr "Kullanıcıları oluştur, sil ve değiştir"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr ""

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr ""

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr ""

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr ""

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr ""

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "Oluşturuldu"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr "Özel bölüm %1 oluşturuldu"

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Created in a date range"
msgstr "Bir zaman aralığı içinde oluşturuldu"

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Created tickets in period, grouped by status"
msgstr "Bir devir içinde biletle oluşturuldu ve duruma göre sıralandı"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr "Oluşturan"

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr ""

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "Geçerli bağlantılar"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr "Geçerli senetler"

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr ""

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr "Geçerli üyeler"

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr "Geçerli haklar"

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr "Geçerli arama"

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr "Geçerli izleyiciler"

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr "Özel bölümler"

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr "%1 için özel bölümler"

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr ""

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr "Özel hareket temizleme kodu"

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr "Özel hareket hazırlama kodu"

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr "Özel durum"

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr ""

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr ""

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr ""

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr "Özel bölüm %1, bir değere sahip"

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr "Özel bölüm %1, bir değere sahip değil"

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr "Özel bölüm %1, bulunamadı"

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr "Özel bölüm '%1'"

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr "Özel bölüm %2 için, özel bölüm değeri %1 bulunamıyor"

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr "Özel bölüm değeri silinemiyor"

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr "Özel bölüm değeri bulunamıyor"

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr "Özel bölüm değeri silindi"

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr "Özel Bölüm"

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr ""

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr "Özelleştir"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr ""

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr ""

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr ""

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr ""

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr ""

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr ""

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr ""

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr ""

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr ""

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr ""

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr "Veritabanı adı"

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr ""

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr ""

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr "Veritabanı türü"

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr ""

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr "Tarih biçimi"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "Tarihler"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr "Ara"

#: NOT FOUND IN SOURCE
msgid "Dec."
msgstr "Ara."

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr ""

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr "Varsayılan OtoCevap şablonu"

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr "Varsayılan Kuyruk"

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr "Varsayılan İstekçi"

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr "Varsayılan yönetici yorum şablonu"

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr "Varsayılan yönetici cevap şablonu"

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr "Varsayılan cevap şablonu"

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr ""

#: etc/initialdata:250
msgid "Default transaction template"
msgstr "Varsayılan hareket şablonu"

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr "Varsayılan: %1"

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr ""

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Delegate rights"
msgstr "Yetkileri devret"

#: NOT FOUND IN SOURCE
msgid "Delegate specific rights which have been granted to you."
msgstr "Size verilen belirli yetkileri devredin"

#: NOT FOUND IN SOURCE
msgid "DelegateRights"
msgstr "HaklarıDevret"

#: NOT FOUND IN SOURCE
msgid "Delegation"
msgstr "Devretmek"

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "Sil"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr "Şablonu Sil"

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr ""

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr ""

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr "Silme işlemi başarısız: %1"

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr ""

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr "Seçilen senetleri sil"

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr "Biletleri sil"

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr "Değerleri sil"

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr ""

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr "BiletSil"

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr "%1 silindi"

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr ""

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Deleted search"
msgstr "Arama sil"

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr "Bu nesneyi silmek, tercihli bütünlüğü bozacaktır"

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr "Bu nesneyi silmek, tercihli bütünlüğü ihlal edecektir"

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr "Reddet"

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "Şunun tarafından bağımlılığa sahip:"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr ""

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr "%1 ile bağımlılık eklendi"

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr "%1 ile bağımlılık silindi"

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr "%1 için bağımlılık eklendi"

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr "%1 için bağımlılık silindi"

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "Bağımlılık"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr ""

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr "Azal"

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "Azalan"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr "Sorunu aşağıda tanımlayın"

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "Tanım"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr "Yön"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr ""

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr "Görüntüle"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr "Erişim Denetim Listesini Görüntüle"

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr "Sütunları Görüntüle"

#: NOT FOUND IN SOURCE
msgid "Display Scrip templates for this queue"
msgstr "Bu kuyruk için senet şablonlarını görüntüle"

#: NOT FOUND IN SOURCE
msgid "Display Scrips for this queue"
msgstr "Bu kuyruk için senetleri görüntüle"

#: NOT FOUND IN SOURCE
msgid "Display mode"
msgstr "Görüntüleme kipi"

#: NOT FOUND IN SOURCE
msgid "Display saved searches for this group"
msgstr "Bu grup için, kaydedilmiş aramaları görüntüle"

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Distributed under version 2  of the GNU GPL."
msgstr "GNU GPL' nin 2. sürümü altında dağıtılmaktadır."

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr "Hiçbirşeyi ve herşeyi yapın"

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr "Alan adı"

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr ""

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr ""

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr "Bu sayfayı yenilemeyin"

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "İndir"

#: NOT FOUND IN SOURCE
msgid "Download as a tab-delimited file"
msgstr "Sekme ile ayrılmış dosya olarak indir"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr ""

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "Vade"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr "HATA: %1"

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr ""

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr ""

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr "Düzenle"

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr "Özel Bölümleri Düzenle"

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr "%1 için özel bölümleri düzenle"

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr "Bütün gruplar için özel bölümleri düzenle"

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr "Bütün kullanıcılar için özel bölümleri düzenle"

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr "Bütün kuyruklardaki bütün biletler için özel bölümleri düzenle"

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr "Bağlantıları Düzenle"

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr "Sorguyu Düzenle"

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr "Aramayı Düzenle"

#: NOT FOUND IN SOURCE
msgid "Edit Templates for queue %1"
msgstr "%1 kuyruğundaki şablonları düzenle"

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Edit saved searches for this group"
msgstr "Bu grup için kaydedilmiş aramaları düzenle"

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr "Sistem şablonlarını düzenle"

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr "KaydedilmişAramalarıDüzenle"

#: NOT FOUND IN SOURCE
msgid "Editing Configuration for queue %1"
msgstr "%1 kuyruğunun ayarları düzenleniyor"

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr "Özel bölüm %1 düzenleniyor"

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr "%1 grubu için üyelik düzenleniyor"

#: NOT FOUND IN SOURCE
msgid "Editing membership for personal group %1"
msgstr "Özel grup %1 için üyelik düzenleniyor"

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr "Taban veya hedef belirtilmeli"

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "Eposta"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr ""

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr ""

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr "Eposta adresi kullanımda"

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr ""

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr "Etkinleştirildi (Bu kutudaki işareti kaldırmak, bu özel bölümü iptal eder)"

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr "Etkinleştirildi (Bu kutudaki işareti kaldırmak, bu grubu iptal eder)"

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr "Etkinleştirildi (Bu kutudaki işareti kaldırmak, bu kuyruğu iptal eder)"

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr ""

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr "Etkinleştirilmiş Kuyruklar"

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr "Etkinleştirilme durumu %1"

#: NOT FOUND IN SOURCE
msgid "Enabled status: %1"
msgstr "Etkinleştirilme durumu %1"

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr ""

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr ""

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr ""

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr "Çoklu değer girin"

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr "Bu nesneleri bağlamak için, nesneler veya URIler girin. Çoklu girdileri boşluk ile ayırın."

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr ""

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr ""

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr "Bir değer girin"

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr "Bu kuyrukları bağlamak için, kuyruklar veya URIler girin. Çoklu girdileri boşluk ile ayırın."

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr "Bu biletleri bağlamak için, biletler veya URIler girin. Çoklu girdileri boşluk ile ayırın."

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr "%1 adet değer girin"

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr "Hata"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Queue->AddWatcher"
msgstr "Queue->AddWatcher için geçilen parametrelerde hata var"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Queue->DeleteWatcher"
msgstr "Queue->DeleteWatcher için geçilen parametrelerde hata var"

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr "Ticket->AddWatcher için geçilen parametrelerde hata var"

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr "Ticket->DeleteWatcher için geçilen parametrelerde hata var"

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr ""

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr "Biletleri Yükselt"

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr "Tahmini"

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr "Herkes"

#: bin/rt-crontool:356
msgid "Example:"
msgstr "Örnek:"

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr "Ek Bilgi"

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr ""

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Failed to create search attribute"
msgstr "Arama özniteliği oluşturulamadı"

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr "'Ayrıcalıklı' sahte kullanıcı grubu bulunamadı"

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr "'Ayrıcalıksız' sahte kullanıcı grubu bulunamadı"

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr ""

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr ""

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr "%1 modülü yüklenemedi. (%2)"

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr "%1 için nesne yüklenemedi"

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr "Şub"

#: NOT FOUND IN SOURCE
msgid "Feb."
msgstr "Şub."

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr "Dosya adı"

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr "Çoklu metin alanları doldur"

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr "Çoklu wikimetin alanları doldur"

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr "Tek bir metin alanı doldur"

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr "Tek bir wikimetin alanı doldur"

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr "Bu bölümü bir URL ile doldur"

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr "En fazla %1 adet metin alanı doldur"

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr "En fazla %1 adet wikimetin alanı doldur"

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr "Son Öncelik"

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr "SonÖncelik"

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr "Grupları bul:"

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr "Kişileri bul:"

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr "Biletleri bul"

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr ""

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr ""

#: share/html/Elements/Tabs:651
msgid "First"
msgstr "İlk"

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr "Değişikliği zorla"

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr "Biçim"

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr ""

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr ""

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr ""

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr ""

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr ""

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr "%quant(%1,ticket) bulundu"

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr "Nesne bulundu"

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr ""

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr "Cum"

#: NOT FOUND IN SOURCE
msgid "Fri."
msgstr "Cum."

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr "Cuma"

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Full headers"
msgstr "Tüm Başlıklar"

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr ""

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr "Genel"

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr "Dosyadan şablon al"

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr ""

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr "Verilen: %1"

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr "Küresel"

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Global Custom Fields"
msgstr "Küresel Özel Alanlar"

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr "Küresel Özel Alan Ayarları"

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr "Küresel portlet %1 kaydedildi"

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr "Küresel şablon: %1"

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr "GnuPG"

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr "Git"

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr ""

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "Git!"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr "Bilete git"

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr "Grafik"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr "Grafik Özellikleri"

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr "Grup"

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr "Grup Yetkileri"

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr "Grup üyeye sahip: %1"

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr "Grup oluşturulamıyor: %1"

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr "Grup oluşturuldu"

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr ""

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr ""

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr "Grupta böyle bir üye yok"

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr ""

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr "Grup bulunamadı"

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "Gruplar"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr "Gruplar, üyelerinin üyeleri olamazlar"

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr "Arama kıstaslarına uyan gruplar"

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr ""

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr "Bu kullanıcının kayıtlı olduğu gruplar"

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr "Merhaba!"

#: NOT FOUND IN SOURCE
msgid "Hello, %1"
msgstr "Merhaba, %1"

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "Geçmiş"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr ""

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr "%1 grubunun geçmişi"

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr ""

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr "%1 üyesinin geçmişi"

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr ""

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "Ev Sayfası"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr "Saat"

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr "Saat"

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr ""

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "I'm lost"
msgstr "Kayboldum"

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr "ISO"

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr "Numara"

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "Kimlik"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr "Eğer bir onaylama reddedilmişse, özgün kaydı reddet ve bekleyen onayları sil"

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr "Eğer bir istekçi belirtilmemişse, biletleri, bu istekçi üzerinden oluştur"

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr "Eğer bir kuyruk belirtilmemişse, biletleri bu kuyrukta oluştur."

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr "Eğer bu araş setgid ise, saldırgan bir yerel kullanıcı, bu aracı kullanarak RT' ye yönetici erişimi hakkı kazanabilir."

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr "Eğer yukarıda herhangi bir şeyi değiştirdiyseniz, mutlaka"

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr ""

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr "%1 için geçersiz değer"

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr "Değişmez alan"

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr ""

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr ""

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr "Listelerken, etkinleştirilmemiş grupları ekle"

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr "Listelerken, etkinleştirilmemiş kuyrukları ekle"

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr "Listelerken, iptal edilmiş üyeleri ekle"

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr "Sayfayı İçer"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Incomplete Query"
msgstr "Eksik Sorgu"

#: NOT FOUND IN SOURCE
msgid "Incomplete query"
msgstr "Eksik sorgu"

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr ""

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr ""

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr "Başlangıç Önceliği"

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr "BaşlangıçÖnceliği"

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr "Girdi Hatası"

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr "Girdi, %1 ile eşleşmeli"

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr "İç Hata"

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr "İç Hata: %1"

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr ""

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr "Geçersiz Grup Türü"

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr ""

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Invalid Right"
msgstr "Geçersiz Hak"

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr "Geçersiz veri"

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr "Geçersiz nesne"

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr "Geçersiz desen: %1"

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr "Geçersiz kuyruk"

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr ""

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr "Geçersiz hak"

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr "%1 için geçersiz değer"

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr "Özel alan için geçersiz değer"

#: NOT FOUND IN SOURCE
msgid "Invalid value for status"
msgstr "Durum için geçersiz değer"

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr "Yetkisiz kullanıcıların, bu aracı kullanmasını engellemek çok önemlidir."

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr "Bu araca erişim için, doğru grup üyeliğiyle yetkisiz bir unix kullanıcısı oluşturmanız ve RT erişimi vermeniz gerekmektedir."

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr "Çeşitli argümanlar alır:"

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr "Eğik"

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr "Oca"

#: NOT FOUND IN SOURCE
msgid "Jan."
msgstr "Oca."

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Join or leave this group"
msgstr "Bu gruba katılın veya ayrılın"

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr "Tem"

#: NOT FOUND IN SOURCE
msgid "Jul."
msgstr "Tem."

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr ""

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr "Haz"

#: NOT FOUND IN SOURCE
msgid "Jun."
msgstr "Haz."

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr ""

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr "Dil"

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr "Geniş"

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr "Son"

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr "Son Temas"

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr "Son Temasedilen"

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr "Son Güncelleme"

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr ""

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr "SonGüncelleyen"

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr "Kalan"

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr ""

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr ""

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr "Bu kullanıcının RT' ye erişimine izin ver"

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr "Bu kullanıcının yetkiye sahip olmasına izin ver"

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr "Hadi gidelim!"

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr ""

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr "Bağlantı"

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr "Bağlantı mevcut"

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr "Bağlantı oluşturulamıyor"

#: NOT FOUND IN SOURCE
msgid "Link created (%1)"
msgstr "Bağlantı oulşturuldu (%1)"

#: NOT FOUND IN SOURCE
msgid "Link deleted (%1)"
msgstr "Bağlantı silindi (%1)"

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr "Bağlantı bulunamadı"

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr "Bileti bağla #%1"

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr "Değerleri bağla:"

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr ""

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr ""

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr ""

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr ""

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr "Bağlanıyor. Erişim reddedildi"

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr "Bağlantılar"

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr "Yükle"

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr ""

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr "Kaydedilmiş aramayı yükle:"

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr ""

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr "Yüklenmiş Perl modülleri"

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Loaded search %1"
msgstr "Yüklenmiş arama %1"

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr ""

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr ""

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr "Konum"

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr ""

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr "%1 olarak giriş yapıldı"

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr ""

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr "Giriş yap"

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr "Çık"

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr "Arama türü eşleşmedi"

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr "Posta"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr "Yapım Sahibi"

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr "Yapım Durumu"

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr "Yapım Zamanlaması"

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr "Yapım tarihi Çözümlendi"

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr "Yapma tarihi Başladı"

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr "Yapma tarihi Başlangıcı"

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr "Yapım tarihi Belirtilen"

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr "Yapım önceliği"

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr "Yapım kuyruğu"

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr "Yapım başlığı"

#: NOT FOUND IN SOURCE
msgid "Make this group visible to user"
msgstr "Bu grubun, kullanıcıya görünür olmasını sağla"

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr "Özel alanları ve özel alan değerlerini yönet"

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr "Grupları ve grup üyeliklerini yönet"

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr "Bütün kuyruklara etki eden özellikleri ve ayarları yönetin"

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr "Kuyrukları ve kuyruğa-özel özellikleri yönetin"

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr "Kullanıcıları ve parolaları yönetin"

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr ""

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr "Mar"

#: NOT FOUND IN SOURCE
msgid "Mar."
msgstr "Mar."

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr "May"

#: NOT FOUND IN SOURCE
msgid "May."
msgstr "May."

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr "Üye"

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr "Üye %1 eklendi"

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr "Üye %1 silindi"

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr "Üye eklendi: %1"

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr "Üye Silindi"

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr "Üye Silinemedi"

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr "Üye olduğu yer:"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr "Üyeler"

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr "%1 için üyelik eklendi"

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr "%1 için üyelik silindi"

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr "Üyelikler"

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr "%1 üyesinin üyelikleri"

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr "Birleştirme başarılı"

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr "Birleştirme başarısız. Etkin Numara atanamıyor"

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr "Birleştirme başarısız. Durum atanamıyor"

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr "Şununla birleştir:"

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr "%1 içinde birleştirildi"

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr "İleti"

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Message body not shown because it is too large or is not plain text."
msgstr "İleti gövdesi, çok büyük veya düz metin olmadığından gösterilmiyor."

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr "İleti kaydedilemedi"

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr "İleti kaydedildi"

#: NOT FOUND IN SOURCE
msgid "Messages about this ticket will not be sent to..."
msgstr "Bu bilet hakkındaki iletiler gönderilmeyecek..."

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr ""

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr "Dakika"

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Mismatched parentheses"
msgstr "Eşleşmemiş parantezler"

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr "Başlıca anahtarlardan birisi eksik mi?: %1"

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr "Hareketli"

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr ""

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify Access Control List"
msgstr "Erişim Denetim listesini Değiştir"

#: NOT FOUND IN SOURCE
msgid "Modify Custom Fields which apply to %1 for all %2"
msgstr "Bütün %2 için, %1 etki eden bütün özel alanları değiştir"

#: NOT FOUND IN SOURCE
msgid "Modify Custom Fields which apply to all %1"
msgstr "Bütün %1 etki eden özel alanları değiştir"

#: NOT FOUND IN SOURCE
msgid "Modify Group Rights"
msgstr "Grup yetkilerini değiştir"

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr "Üyeleri Değiştir"

#: NOT FOUND IN SOURCE
msgid "Modify Rights"
msgstr "Yetkileri Değiştir"

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify Scrip templates for this queue"
msgstr "Bu kuyruk için, senet şablonlarını değiştir"

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify Scrips for this queue"
msgstr "Bu kuyruk için senetleri değiştir"

#: NOT FOUND IN SOURCE
msgid "Modify User Rights"
msgstr "Kullanıcı haklarını değiştir"

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr "%1 kuyruğu için bir ÖzelAlanı değiştir"

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr "%1 kuyruğu için bir senet değiştir"

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr "Bütün kuyruklara etki eden bir senedi değiştir"

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr ""

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr "%1 için, ilişkili nesneleri değiştir"

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr "#%1 için tarihleri değiştir"

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr "Bilet # %1 için, tarihleri değiştir"

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr ""

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr "Küresel özel alanları değiştir"

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr "Küresel grup izinlerini değiştir"

#: NOT FOUND IN SOURCE
msgid "Modify global group rights."
msgstr "Küresel grup izinlerini değiştir."

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr ""

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr "Küresel kullanıcı izinlerini değiştir"

#: NOT FOUND IN SOURCE
msgid "Modify global user rights."
msgstr "Küresel kullanıcı izinlerini değiştir."

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr ""

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr "Grup mal bilgisini değiştir veya grubu sil"

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr "Özel alan %1 için grup izinlerini değiştir"

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr "%1 grubu için, grup izinlerini değiştir."

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr "%1 kuyruğu için, grup izinlerini değiştir."

#: NOT FOUND IN SOURCE
msgid "Modify membership roster for this group"
msgstr "Bu grup için, üyelik listesini değiştir"

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr "Kişinin kendi RT hesabını değiştir"

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify people related to queue %1"
msgstr "%1 ile ilişkili kişileri değiştir"

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr "%1 bileti ile ilişkili kişileri değiştir"

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr "%1 kuyruğu için senetleri değiştir"

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr "Bütn kuyruklara etki eden senetleri değiştir"

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr ""

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr "%1 şablonunu değiştir"

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr ""

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr "Bütün kuyruklara etki eden şablonları değiştir"

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr ""

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr ""

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr ""

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr "Varsayılan \"Bir bakışta RT\" görünümünü değiştir"

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr "%1 grubunu değiştir"

#: NOT FOUND IN SOURCE
msgid "Modify the queue watchers"
msgstr "Kuyruk gözcülerini değiştir"

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr "%1 kullanıcısını değiştir"

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr "#%1 biletini değiştir"

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr "#%1 biletini değiştir"

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr "Biletleri değiştir"

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr ""

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr ""

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr ""

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr "Özel alan %1 için kullanıcı haklarını değiştir"

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr "%1 grubu için kullanıcı haklarını değiştir"

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr "%1 kuyruğu için kullanıcı haklarını değiştir"

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr ""

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr ""

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr "Modül"

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr "Pts"

#: NOT FOUND IN SOURCE
msgid "Mon."
msgstr "Pzt."

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr "Pazartesi"

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr "Pazartesiden Cumaya"

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "More"
msgstr "Daha fazla"

#: NOT FOUND IN SOURCE
msgid "More about %1"
msgstr "%1 hakkında daha fazla bilgi"

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr "Aşağı git"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr "Yukarı git"

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr "Çoklu"

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr "'Ad' özniteliği belirtilmeli"

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr "Benim %1 biletim"

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr ""

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr "Benim Günüm"

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr ""

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr "Benim Onaylarım"

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr ""

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr "Benim kaydedilmiş aramalarım"

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr "MySQL"

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr "Ad"

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr ""

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr "Kullanımdaki ad"

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr "Asla"

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr "Yeni"

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr ""

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr ""

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr "Yeni bağlantılar"

#: NOT FOUND IN SOURCE
msgid "New Password"
msgstr "Yeni parola"

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr "Yeni bekleyen onay"

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr "Yeni arama"

#: NOT FOUND IN SOURCE
msgid "New custom field"
msgstr "Yeni özel alan"

#: NOT FOUND IN SOURCE
msgid "New group"
msgstr "Yeni grup"

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr "Yeni mesajlar"

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr "Yeni parola"

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr "Yeni parola uyarısı iletildi"

#: NOT FOUND IN SOURCE
msgid "New queue"
msgstr "Yeni kuyruk"

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr "Yeni hatırlatıcı:"

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr "Yeni yetkiler"

#: NOT FOUND IN SOURCE
msgid "New scrip"
msgstr "Yeni senet"

#: NOT FOUND IN SOURCE
msgid "New template"
msgstr "Yeni şablon"

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr "Yeni bilet"

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr "Yeni bilet yok"

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "New user"
msgstr "Yeni kullanıcı"

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr "Yeni kullanıcı:"

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr "Yeni gözcüler"

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr "İleri"

#: NOT FOUND IN SOURCE
msgid "Next Page"
msgstr "Sonraki Sayfa"

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr "Rumuz"

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr "Rumuz"

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr ""

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr "Bir sınıf tanımlanmadı"

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr "Özel alan yok"

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr "Özel alan tanımlanmadı"

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr "Grup alan tanımlanmadı"

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr "Sorgu Yok"

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr "Kuyruk tanımlanmadı"

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "No RT user found. Please consult your RT administrator.\\n"
msgstr "RT kullanıcısı bulunamadı. Lütfen RT yöneticinize danışın.\\n"

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr ""

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr "Şablon Yok"

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr "Eylem Yok"

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr "Sütun belirtilmedi"

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr "Bu kullanıcı hakkında yorum yapılmadı"

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr "%1 için herhangi bir tanım yok"

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr "Detay yok"

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr "Grup belirtilmedi"

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr "Arama kıstaslarıyla örtüşen bir grup bulunamadı."

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr "Herhangi bir ileti eklenmedi"

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr "Herhangi bir parola atanmadı"

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr "Kuyruk oluşturmak için gerekli yetki yok"

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr "%1 kuyruğunda bilet oluşturmak için gerekli yetki yok"

#: NOT FOUND IN SOURCE
msgid "No permission to create users"
msgstr "Kullanıcı oluşturmak için gerekli yetki yok"

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr "Bu bileti görüntülemek için gerekli yetki yok"

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr ""

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr "Sistem genelinde yapılan aramaları kaydetmek için gerekli yetki yok"

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr ""

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr "Bilet güncellemeyi görüntülemek için gerekli yetki yok"

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr "Yetkili belirtilmedi"

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr "Herhangi bir yetkili seçilmedi"

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr ""

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr "Arama kıstaslarıyla örtüşen bir kuyruk bulunamadı."

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr "Herhangi bir yetki bulunamadı"

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr "Herhangi bir yetki verilmedi."

#: NOT FOUND IN SOURCE
msgid "No search loaded"
msgstr "Herhangi bir arama yüklenemedi"

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr "İşlenecek bir arama bulunamadı"

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr "Konu yok"

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr ""

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr "Aktarım türü belirtilmedi"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr ""

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr "Arama kıstaslarıyla örtüşen herhangi bir kullanıcı bulunamadı."

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "No value sent to _Set!\\n"
msgstr "_Set için herhangi bir değer gönderilmedi!\\n"

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr "Hiçkimse"

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr ""

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr "Varolmayan Alan?"

#: NOT FOUND IN SOURCE
msgid "Not Set"
msgstr "Atanmadı"

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr "Bulunamadı"

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr "Giriş yapılmadı"

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr "Atanmadı"

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr "Henüz oluşturulmadı."

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr "Notlar"

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr "Uyarı gönderilemiyor"

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr "Yönetici Kk' ları bildir"

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr "Yönetici Kk' ları yorum olarak bildir"

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr "Kk' ları bildir"

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr "Kk' ları yorum olarak bildir"

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr "Diğer alıcıları uyar"

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr "Diğer alıcıları yorum olarak uyar"

#: etc/initialdata:41
msgid "Notify Owner"
msgstr "Sahibi uyar"

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr "Sahibi yorum olarak uyar"

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr "Sahipleri, reddedilen biletleri hakkında uyar"

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Notify Owner of their ticket has been approved by all approvers"
msgstr "Bütün onaycılar tarafından onaylanan bileti hakkında sahibi uyar"

#: NOT FOUND IN SOURCE
msgid "Notify Owner of their ticket has been approved by some approver"
msgstr "Herhangi bir onaycı tarafından onaylanan bileti hakkında sahibi uyar"

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr ""

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr ""

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr "Onaylanmayı bekleyen yeni öğeler hakkında sahipleri ve Yönetici Kk' ları uyar"

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr "İstekçileri Uyar"

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr "İstekçileri ve Kk' ları uyar"

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr "İstekçileri ve Kk' ları yorum olarak uyar"

#: NOT FOUND IN SOURCE
msgid "Notify Requestors, Ccs and AdminCcs"
msgstr "İstekçileri, Kk' ları ve Yönetici Kk' ları uyar"

#: NOT FOUND IN SOURCE
msgid "Notify Requestors, Ccs and AdminCcs as Comment"
msgstr "İstekçileri, Kk' ları ve Yönetici Kk' ları yorum olarak uyar"

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr ""

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr "Kas"

#: NOT FOUND IN SOURCE
msgid "Nov."
msgstr "Kas."

#: NOT FOUND IN SOURCE
msgid "Number of search results"
msgstr "Arama sonuçlarının sayısı"

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr "VEYA"

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr "Nesne"

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr "Nesne oluşturulamıyor"

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr "Nesne silinemiyor"

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr "Nesne oluşturuldu"

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr "Nesne silindi"

#: NOT FOUND IN SOURCE
msgid "Object of type %1 cannot take custom fields"
msgstr "%1 türündeki nesneler, özel alanlar alamazlar"

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr "Nesne türü eşleşmiyor"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr "Eki"

#: NOT FOUND IN SOURCE
msgid "Oct."
msgstr "Eki."

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr "Çevrimdışı"

#: NOT FOUND IN SOURCE
msgid "Offline edits"
msgstr "Çevrimdışı düzenlemeler"

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr "Çevrimdışı yükleme"

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr "%1 tarihinde, %2 yazdı:"

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr ""

#: etc/initialdata:143
msgid "On Comment"
msgstr "Yorumda"

#: etc/initialdata:115
msgid "On Correspond"
msgstr "Cevapta"

#: etc/initialdata:104
msgid "On Create"
msgstr "Oluşturmada"

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr ""

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr "Sahiplik değişiminde"

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr "Öncelik değişiminde"

#: etc/initialdata:172
msgid "On Queue Change"
msgstr "Kuyruk değişiminde"

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr ""

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr ""

#: etc/initialdata:178
msgid "On Resolve"
msgstr "Çözümde"

#: etc/initialdata:149
msgid "On Status Change"
msgstr "Durum değişikliğinde"

#: etc/initialdata:109
msgid "On Transaction"
msgstr "Harekette"

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr ""

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr "Sadece %1 sonrası oluşturulmuş isteklere ait onayları göster"

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr "Sadece %1 öncesi oluşturulmuş isteklere ait onayları göster"

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr "Sadece şunun için özel alanları göster:"

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr ""

#: etc/initialdata:95
msgid "Open Tickets"
msgstr "Biletleri Aç"

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr "URL Aç"

#: NOT FOUND IN SOURCE
msgid "Open it"
msgstr "Aç"

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr "Biletleri aç"

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr "Cevap geldiğinde biletleri aç"

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr "Seçenek"

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr "Seçenekler"

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr "Oracle"

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr "Sıralama:"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr "Kurum"

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr "Kaynak alınan bilet: #%1"

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr "Bir yorum hakkındaki giden eposta kaydedildi"

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr "Giden eposta kaydedildi"

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr "Zaman içinde, öncelik ilerler"

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr "Biletleri sahiplen"

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr "BiletleriSahiplen"

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr "Sahip"

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr ""

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr "Sahip atanamıyor"

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr "Sahip, zorla %1 den %2 ye değiştirildi"

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr ""

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr "Sayfa"

#: NOT FOUND IN SOURCE
msgid "Page %1 of %2"
msgstr "Sayfa %1/%2"

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr ""

#: share/html/dhandler:48
msgid "Page not found"
msgstr "Sayfa bulunamadı"

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr "Sayfalayıcı"

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr "Ana bölüm"

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr "Parola"

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr "Parola Hatırlatıcı"

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr "Parola değişti"

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr ""

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr "Parola en az %1 karakter uzunluğunda olmalı"

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr "Parola atandı"

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr "Parola: %1"

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr "Parola: İzin Reddedildi"

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr "Parolalar eşleşmiyor"

#: NOT FOUND IN SOURCE
msgid "Passwords do not match. Your password has not been changed"
msgstr "Parolalar eşleşmiyor. Parolanız değişmedi"

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr "Kişiler"

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr ""

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr "Kullanıcı tanımlı bir eylemi yerine getir"

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr "Perl ayarları"

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr "Pääsy kielletty"

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr "İzin Reddedildi"

#: NOT FOUND IN SOURCE
msgid "Permissions denied"
msgstr "İzin Reddedildi"

#: NOT FOUND IN SOURCE
msgid "Personal Groups"
msgstr "Kişisel gruplar"

#: NOT FOUND IN SOURCE
msgid "Personal groups"
msgstr "Kişisel gruplar"

#: NOT FOUND IN SOURCE
msgid "Personal groups:"
msgstr "Kişisel gruplar:"

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr "Telefon numaraları"

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr "PostgreSQL"

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr "Tercihler"

#: NOT FOUND IN SOURCE
msgid "Preferences %1 for user %2 ."
msgstr "%2 kullanıcısı için %1 tercihleri"

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr ""

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr "%1 için tercihler kaydedildi"

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr ""

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr "Tercihler kaydedildi."

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr ""

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr ""

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr "Küt hazırla"

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr "Önceki"

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Previous Page"
msgstr "Önceki sayfa"

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr "%1 yetkilisi bulunamadı"

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr ""

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr "Bu mesajı yazdır"

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr "Öncelik"

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr "Öncelik başlangıcı:"

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr "Gizlilik"

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr "Gizlilik:"

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr ""

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr "Ayrıcalıklı"

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr "Ayrıcalık durumu: %1"

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr "Ayrıcalıklı kullanıcılar"

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr ""

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr "İç kullanım için sahte grup"

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr "Sorgular"

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr "Sorgu"

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr "Sorgu Oluşturucu"

#: NOT FOUND IN SOURCE
msgid "Query:"
msgstr "Sorgu:"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr "Kuyruk"

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr "%1 kuyruğu bulunamadı"

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr "Kuyruk adı"

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr "Kuyruk halihazırda mevcut"

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr "Kuyruk oluşturulamıyor"

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr "Kuyruk yüklenemiyor."

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr "Kuyruk oluşturuldu"

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr ""

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr ""

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr "Kuyruk bulunamadı"

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr ""

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr ""

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr "Kuyruklar"

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr "Yönettiğim kuyruklar"

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr "Yönetici Kk olduğum kuyruklar"

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr ""

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr "Hızlı arama"

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr "Hızlı bilet oluşturumu"

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr "RFC2616"

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr "RFC2822"

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr "RSS"

#: NOT FOUND IN SOURCE
msgid "RT %1 for %2"
msgstr "RT %1 - %2"

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr "RT Yönetimi"

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr "RT Hatası"

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT Variables"
msgstr "RT Değişkenleri"

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr "Bir bakışta RT"

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr "%1 kullanıcısı için bir bakışta RT"

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr "RT, bu özel alanı gösterirken, diğerbir ağ hizmetinden içerik ekleyebilir"

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr "RT, bu özel alanın değerlerini, diğer bir hizmetin hiperbağlantılarına dönüştürebilir."

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr "RT, oturumunuzu kaydedemiyor."

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr "%1: RT"

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT will look for anything else you enter in ticket subjects."
msgstr "RT, bilet başlıklarına gireceğiniz herhangi bir şeyi araştıracaktır."

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr "RT, %1 ve %2 değerlerini, kayıt numarası ve özel alan değeri ile değiştirecektir"

#: NOT FOUND IN SOURCE
msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively"
msgstr "RT, __id__ ve __CustomField__ değerlerini, kayıt numarası ve özel alan değeri ile değiştirecektir"

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr ""

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr "Gerçek Ad"

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr ""

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr "Alıcı"

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr ""

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr ""

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr "Tüm güncellemeleri kaydet"

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr "%1 ile başvuru eklendi"

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr "%1 ile başvuru silindi"

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr "%1 için başvuru eklendi"

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr "%1 için başvuru silindi"

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr "Kaynak gösteren:"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr "Kaynak gösterdiği:"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr ""

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr "Yenile"

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr "Anasayfayı her 20 dakikada bir yenile."

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr "Anasayfayı her 5 dakikada bir yenile."

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr "Anasayfayı her 60 dakikada bir yenile."

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr "Arama sonuçlarını her 10 dakikada bir yenile."

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr "Arama sonuçlarını her 120 dakikada bir yenile."

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr "Arama sonuçlarını her 2 dakikada bir yenile."

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr "Arama sonuçlarını her 20 dakikada bir yenile."

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr "Arama sonuçlarını her 5 dakikada bir yenile."

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr "Arama sonuçlarını her 60 dakikada bir yenile."

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr "Bu sayfayı, her %1 dakikada bir yenile"

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr ""

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr ""

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr ""

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr "'%1' hatırlatıcısı eklendi"

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr "'%1' hatırlatıcısı tamamlandı"

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr "'%1' hatırlatıcısı tekrar açıldı"

#: NOT FOUND IN SOURCE
msgid "Reminder ticket #%1"
msgstr "Hatırlatıcı bilet  #%1"

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr "Hatırlatıcılar"

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr "#%1 bileti için hatırlatıcılar"

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr "Yönetici Kk Kaldır"

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr "Yer İmini Kaldır"

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr "Kk kaldır"

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr "İstekçi kaldır"

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr ""

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr "Yanıtla"

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr "Yanıtlama Adresi"

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr "İstekçileri Yanıtla"

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr "Biletleri Yanıtla"

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr "BiletiYanıtla"

#: NOT FOUND IN SOURCE
msgid "Reports"
msgstr "Raporlar"

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr "İstekçi"

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr "İstekçiler"

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr "İsteklerin yapılacağı zaman:"

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr "Gerekli parametre '%1' belirtilmedi"

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr "Sıfırla"

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr "Varsayılana sıfırla"

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr "Hane"

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr "Çöz"

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr "#%1 biletini çözümle (%2)"

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr "Çözüldü"

#: NOT FOUND IN SOURCE
msgid "Resolved by owner"
msgstr "Sahip tarafından çözüldü"

#: NOT FOUND IN SOURCE
msgid "Resolved in date range"
msgstr "Zaman aralığında çözüldü"

#: NOT FOUND IN SOURCE
msgid "Resolved tickets in period, grouped by owner"
msgstr "Dönemdeki çözülmüş biletler (sahip ile gruplandırılmış)"

#: NOT FOUND IN SOURCE
msgid "Resolved tickets, grouped by owner"
msgstr "Çözülmüş biletler (sahip ile gruplandırılmış)"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr ""

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr "Sonuçlar"

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr ""

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr "Parolayı tekrar yazın"

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr "Eskiye dön"

#: NOT FOUND IN SOURCE
msgid "Right Delegated"
msgstr "Yetki Aktarıldı"

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr "Yetki Verildi"

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr "Yetki Yüklendi"

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr "Yetki geri alınamıyor"

#: NOT FOUND IN SOURCE
msgid "Right not found"
msgstr "Yetki bulunamadı"

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr "Yetki yüklenemedi"

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr "Yetki geri alındı"

#: NOT FOUND IN SOURCE
msgid "Rights"
msgstr "Yetkiler"

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr "Yetkiler %1 için verilemiyor"

#: NOT FOUND IN SOURCE
msgid "Rights could not be revoked for %1"
msgstr "Yetkiler %1 için geri alınamıyor"

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Roles"
msgstr "Roller"

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr ""

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr "Kutu başına satır"

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr "Sayfa başına satır"

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr "SQLite"

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr "Cts"

#: NOT FOUND IN SOURCE
msgid "Sat."
msgstr "Cmt."

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr "Cumartesi"

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr "Kaydet"

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr "Değişiklikleri Kaydet"

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr "Tercihleri Kaydet"

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr "Yeni olarak Kaydet"

#: NOT FOUND IN SOURCE
msgid "Save changes"
msgstr "Değişiklikleri kaydet"

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr ""

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr ""

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Saved search %1"
msgstr "Kaydedilmiş arama %1"

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr "Senet #%1"

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr "Senet oluşturuldu"

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr "Senet alanları"

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr "Senet silindi"

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr "Senetler"

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr "Bütün kuyruklara etki eden senetler"

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr "Arama"

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr ""

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr "Arama Tercihleri"

#: NOT FOUND IN SOURCE
msgid "Search attribute load failure"
msgstr "Arama özniteliği yükleme hatası"

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr "Onayları ara"

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr ""

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr "Biletleri ara"

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address. RT will look for anything else you enter in ticket bodies and attachments."
msgstr "Biletleri ara. Bilet numarasını, Kuyrukları adı ile, Sahipleri kulanıcı adı ile ve İstekçileri eposta adresi ile girin. RT, girdiğiniz diğer şeyleri bilet gövdelerinde ve eklentilerde arayacaktır."

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr "Arama tercihleri"

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr ""

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr "Arama sonuçları %1 ile gruplandırılmıştır."

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Search update: %1"
msgstr "Arama güncellemesi: %1"

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word."
msgstr "Her bir biletin tüm metninin aranması uzun sürebilir, ama eğer bunu yapmanız gerkiyorsa, fulltext:kelime yazarak tüm bilet tarihçesindeki herhangi bir kelimeyi aratabilirsiniz."

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr "Güvenlik:"

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr "Bakınız:"

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr ""

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "See custom fields"
msgstr "Özel alanları gör"

#: NOT FOUND IN SOURCE
msgid "See exact outgoing email messages and their recipeients"
msgstr "Giden eposta iletilerinin tamamını ve alıcılarını gör"

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "See ticket private commentary"
msgstr "Biletin gizli yorumlarını gör"

#: NOT FOUND IN SOURCE
msgid "See ticket summaries"
msgstr "Bilet özetlerini gör"

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr "ÖzelAlanıGör"

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr "GrubuGör"

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr "KuyruğuGör"

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr "Seç"

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr ""

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr "Veritabanı Türünü Seçin"

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr ""

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr "Özel bir alanı seç"

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr "Bir grubu seç"

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr "Bir kuyruğu seç"

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr "Yeni biletiniz için bir kuyruk seçin"

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr "Bir kullanıcı seçin"

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr ""

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr "Başka bir dil seçin"

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select custom field"
msgstr "Özel alan seçin"

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr "Bütün kullanıcı grupları için özel alanları seçin"

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr "Bütün kullanıcılar için özel alanları seçin"

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr "Bütün kuyruklardaki biletler için özel alanlar seç"

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr "Bütün kuyruklardaki biletlerin hareketleri için özel alanlar seçin"

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select group"
msgstr "Grup seçin"

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr "Çoklu değer seçin"

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr "Bir değer seçin"

#: NOT FOUND IN SOURCE
msgid "Select queue"
msgstr "Kuyruk seçin"

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr "\"Bir bakışta RT\" sayfasında görüntülenecek kuyrukları seçin"

#: NOT FOUND IN SOURCE
msgid "Select scrip"
msgstr "Senet seçin"

#: NOT FOUND IN SOURCE
msgid "Select template"
msgstr "Şablon seçin"

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr ""

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr "En çok %1 adet değer seçin"

#: NOT FOUND IN SOURCE
msgid "Select user"
msgstr "Kullanıcı seç"

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr "Seçili özel alanlar"

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr "Seçili nesneler"

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr "Seçimler değişti. Lütfen değişikliklerinizi kaydedin"

#: NOT FOUND IN SOURCE
msgid "Send mail to all watchers"
msgstr "Tüm izleyicilere posta gönder"

#: NOT FOUND IN SOURCE
msgid "Send mail to all watchers as a \"comment\""
msgstr "Tüm izleyicilere \"yorum\" olarak posta gönder"

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr "İstekçilere ve Kk' lara posta gönder"

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr "İstekçilere ve Kk' lara yorum olarak posta gönder"

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr "İstekçilere posta gönderir"

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr "Belirtilmiş Kk ve GKk listesine posta gönderir"

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr "Kk' lara posta gönderir"

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr "Kk' lara yorum olarak eposta gönderir"

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr "Yönetimsel Kk' lara eposta gönderir"

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr "Yönetimsel Kk' lara yorum olarak eposta gönderir"

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr "Sahibe posta gönderir"

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr "Eyl"

#: NOT FOUND IN SOURCE
msgid "Sep."
msgstr "Eki."

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr "Ayarlar"

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr "Göster"

#: NOT FOUND IN SOURCE
msgid "Show Approvals"
msgstr "Onayları Göster"

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr "Sütunları göster"

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr "Sonuçları Göster"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr "Onaylanmış istekleri göster"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Show basics"
msgstr "Temelleri Göster"

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr "Reddedilmiş istekleri göster"

#: NOT FOUND IN SOURCE
msgid "Show details"
msgstr "Ayrıntıları göster"

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr ""

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr "Bekleyen istekleri göster"

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr "Diğer onayları bekleyen istekleri göster"

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr ""

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr ""

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr ""

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr ""

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr ""

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr "Bilet istekçisi veya bilet veya kuyruk Kk olarak yazılın"

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr "Bilet veya kuyruk Kk olarak yazılın"

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr "İmza"

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr ""

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr "Basit Arama"

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr "Tekil"

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr "Site adı"

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr "Boyut"

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr "Menüyü Geç"

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr "Küçük"

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr "Bazı gezginler, sadece aynı alan adından (RT sunucunuz gibi) içerik yükleyebilirler."

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr "Sırala"

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr "Kaynak"

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr ""

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr "Aşama"

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr ""

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr "Başlangıcı"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr "Başlayacak"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr "Durum"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr "Durum"

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr ""

#: etc/initialdata:307
msgid "Status Change"
msgstr "Durum Değişikliği"

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr "Çal"

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr "Biletleri Çal"

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr ""

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr "%1 den çalındı"

#: NOT FOUND IN SOURCE
msgid "Stolen from %1 "
msgstr "%1 den çalındı "

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr "Biçem"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr "Konu"

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr "Konu değişti: %1"

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr "Gönder"

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr "Abone ol"

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr "Abonelik"

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Succeeded"
msgstr "Başarılı"

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr ""

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr "Pzr"

#: NOT FOUND IN SOURCE
msgid "Sun."
msgstr "Paz."

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr "Pazar"

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr ""

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "System"
msgstr "Sistem"

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr "Sistem Ayarları"

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr "Sistem Hatası"

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr "Sistem Hatası: %1"

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr "Sistem Araçları"

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "System error. Right not delegated."
msgstr "Sistem hatası. Yetki devredilemedi."

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr "Sistem hatası. Yetki verilemedi."

#: NOT FOUND IN SOURCE
msgid "System groups"
msgstr "Sistem grupları"

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr "İç kullanım için SistemRolGrubu"

#: NOT FOUND IN SOURCE
msgid "TEST_STRING"
msgstr "DENEME_YAZISI"

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr "Al"

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr "Biletleri al"

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr "BiletiAl"

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr "Alındı"

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr "Şablon"

#: NOT FOUND IN SOURCE
msgid "Template #%1"
msgstr "Şablon #%1"

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr "Şablon #%1 silindi"

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Template deleted"
msgstr "Şablon silindi"

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr "Şablon boş"

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr "Şablon gerekli bir argüman"

#: NOT FOUND IN SOURCE
msgid "Template not found"
msgstr "Şablon bulunamadı"

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr "Şablon ayrıştırıldı"

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr "Şablon ayrıştırma hatası"

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr ""

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr "Şablonlar"

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr "Bu, zaten şimdiki değer"

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr "Bu, bu özel alan için bir değer değil"

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr "Bu, aynı değer"

#: NOT FOUND IN SOURCE
msgid "That principal already has that right"
msgstr "Bu yetkili, zaten bu hakka sahip"

#: NOT FOUND IN SOURCE
msgid "That principal is already a %1 for this queue"
msgstr "Bu yetkili, zaten bu kuyruk için bir %1"

#: NOT FOUND IN SOURCE
msgid "That principal is already a %1 for this ticket"
msgstr "Bu yetkili, zaten bu bilet için bir %1"

#: NOT FOUND IN SOURCE
msgid "That principal is not a %1 for this queue"
msgstr "Bu yetkili, zaten bu kuyruk için bir %1 değil"

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr "Böyle bir kuyruk mevcut değil"

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr "Bu bilet, çözümlenmemiş bağımlılıklara sahip"

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr "Bu kullanıcı, zaten bu biletin sahibi"

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr "Bu kullanıcı bulunamadı"

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr "Bu kullanıcı zaten yetkili"

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr "Bu kullanıcı zaten yetkisiz"

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr "Bu kullanıcı şu anda yetkilendirildi"

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr "Bu kullanıcı artık yetkisiz"

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr "Bu kullanıcı, bu kuyruktaki biletleri sahiplenemez"

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr "Bu, sayısal bir kimlik değil"

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr "Temeller"

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr "Bir biletin KK' sı"

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr ""

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr "Bir biletin yönetimsel KK' sı"

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:"
msgstr "Sonraki komut, 'genel' kuyruğundaki bütün biletleri bulacak ve eğer son 4 saat içinde dokunulmamışlarsa, önem derecelerini 99 a yükseltecektir."

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr "Yeni değer atandı."

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr "Bir biletin sahibi"

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr "Bir biletin istekçisi"

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr ""

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr "Tema"

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr "Bu yorumlar, genellikle kullanıcıya görünür değillerdir"

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr "Bu özel alan, bu nesneye etkimez"

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr "Bu özellik, sadece sistem yöneticileri tarafından kullanılabilir"

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "This message will be sent to..."
msgstr "Bu iletinin gönderileceği kişi..."

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr "Bu araç, kullanıcının RT içinden keyfi perl modüllerini çalıştırabilmesine olanak verir."

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr "Bu hareketin bir içeriğe sahip olmadığı gözüküyor"

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "This user's %1 highest priority tickets"
msgstr "Bu kullanıcının %1 en yüksek öneme sahip biletleri"

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr "Prş"

#: NOT FOUND IN SOURCE
msgid "Thu."
msgstr "Per."

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr "Perşembe"

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr "Bilet"

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr "Bilet #%1 Büyük güncelleme: %2"

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr "Bilet #%1: %2"

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr "Bilet %1"

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr "Bilet %1, '%2' kuyruğunda oluşturuldu"

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr "Bilet %1: %2"

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr "Bilet Özel Alanları"

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr "Bilet geçmişi # %1 %2"

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr "Bilet Çözümlendi"

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr "Bilet Arama"

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr "Bilet Hareketleri"

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr ""

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr "Bilet oluşturuldu"

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr "Bilet içerik türü"

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr "Bir iç hata nedeniyle, bilet oluşturulamadı"

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr ""

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr "Bilet özel bilgisi"

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr "Bilet durumu değişti"

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr "BiletSQL arama modülü"

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr "Biletler"

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr ""

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr ""

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Tickets created after"
msgstr "Şundan sonra oluşturulan biletler:"

#: NOT FOUND IN SOURCE
msgid "Tickets created before"
msgstr "Şundan önce oluşturulan biletler:"

#: NOT FOUND IN SOURCE
msgid "Tickets resolved after"
msgstr "Şundan sonra çözümlenen biletler:"

#: NOT FOUND IN SOURCE
msgid "Tickets resolved before"
msgstr "Şundan önce çözümlenen biletler:"

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr "Bu onaya dayanan biletler:"

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr "Tahmini Süre"

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr "Kalan Süre"

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr "Çalışılan Süre"

#: NOT FOUND IN SOURCE
msgid "Time left"
msgstr "Kalan süre"

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr "Gösterilecek süre"

#: NOT FOUND IN SOURCE
msgid "Time worked"
msgstr "Çalışılan süre"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr "ÇalışılanSüre"

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr ""

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr "Başlık"

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr "Destek hakkında soru sormak için, kişisel geliştirim veya lisanslama için, lütfen %1 ile temasa geçin."

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr "Söylendi"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr "Araçlar"

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr ""

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr ""

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr ""

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr "Toplam"

#: etc/initialdata:249
msgid "Transaction"
msgstr "Hareket"

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr "Hareket %1 tasfiye edildi"

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr "Hareket Oluşturuldu"

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr "Hareket Özel Alanları"

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr "Transaction->Create gerçekleştirilemedi, çünkü bir nesne türü ve kimliği belirtmediniz"

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr "Hareketler değişemez"

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr ""

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr "Sal"

#: NOT FOUND IN SOURCE
msgid "Tue."
msgstr "Sal."

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr "Salı"

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr "Tür"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr ""

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr ""

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr "Gerçekleştirilmedi"

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr "Unix girişi"

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr ""

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr "Bilinmeyen İçerikKodlaması %1"

#: NOT FOUND IN SOURCE
msgid "Unknown field: $key"
msgstr "Bilinmeyen alan: $key"

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr "Bilinmeyen alan: %1"

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr "Limitsiz"

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr "Sınırsız"

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr "Adlandırılmamış arama"

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr ""

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr "Yetkisiz"

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr "Seçilmemiş Özel Alanlar"

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr "Seçilmemiş nesneler"

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr "Alınmamış"

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr "Güncelle"

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr ""

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr "Bileti Güncelle"

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr "Türü Güncelle"

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr ""

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr "Birden çok bileti güncelle"

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr "Güncelleme kaydedilmedi"

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr "Bileti güncelle"

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr "Bileti güncelle: #%1"

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr "Bileti güncelle: #%1 (%2)"

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr "Güncelleme türü cevap veya yorum değildi."

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr ""

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr "Güncellendi"

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr "Yükle"

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr ""

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr "Çoklu dostya yükle"

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr "Çoklu resim yükle"

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr "Tek bir dosya yükle"

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr "Tek bir resim yükle"

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr "En çok %1 dosya yükle"

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr "En çok %1 resim yükle"

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr "Değişikliklerinizi yükleyin"

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Usage: "
msgstr "Kullanımı: "

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr ""

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr ""

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr "Diğer RT yönetimsel araçlarını kullan"

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr ""

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr "Kullanıcı"

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr "Kullanıcı '%1' bulunamadı."

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr "Kullanıcı Tanımlandı"

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr "Kullanıcı tanımlı durumlar ve eylemler"

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr "Kullanıcı Hakları"

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr ""

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr "Kullanıcı oluşturulamıyor: %1"

#: lib/RT/User.pm:262
msgid "User created"
msgstr "Kullanıcı oluşturuldu"

#: NOT FOUND IN SOURCE
msgid "User defined groups"
msgstr "Kullanıcı tanımlı gruplar"

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr ""

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr "Kullanıcı yüklendi"

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr "Kullanıcı-tanımlı gruplar"

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr "Kullanıcı adı"

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr ""

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr "Kullanıcılar"

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr "Arama kıstaslarıyla eşleşen kullanıcılar"

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr "Hareket #%1 kullanılıyor..."

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr "Geçerli Sorgu"

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr "Geçerlilik"

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr "Değer"

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr "Değerler"

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr "Sürüm"

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr ""

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr ""

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr "W3CDTF"

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr "Uyarı! Bu İMZALANMADI!"

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr "Gözle"

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr "YöneticiKkOlarakGözle"

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr "İzleyici"

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr "Gözcüler"

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr "Çrş"

#: NOT FOUND IN SOURCE
msgid "Wed."
msgstr "Çar."

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr "Çarşamba"

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr ""

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr ""

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr "RT'ye Hoşgeldiniz!"

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr "Bugün ne yaptım"

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr "RT Nedir?"

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket"
msgstr "Bir bilet, bütün onaycılar tarafından onaylandığında, özgün bilete cevap yolla"

#: NOT FOUND IN SOURCE
msgid "When a ticket has been approved by any approver, add correspondence to the original ticket"
msgstr "Bir bilet, herhangi bir onaycı tarafından onaylandığında, özgün bilete cevap yolla"

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr "Bir bilet oluşturulduğunda"

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr "Bir onay bileti oluşturulduğunda, sahibi ve YöneticiKk' yı, nesnenin onaylarını beklediği konusunda uyar"

#: etc/initialdata:110
msgid "When anything happens"
msgstr "Herhangi bir şey olduğunda"

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr ""

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr "Bir bilet çözümlendiğinde"

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr "Bir biletin sahibi değiştiğinde"

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr "Bir biletin önceliği değiştiğinde"

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr "Bir biletin kuyruğu değiştiğinde"

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr "Bir biletin durumu değiştiğinde"

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr "Kullanıcı tanımlı bir durum oluştuğunda"

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr "Bir yorum geldiğinde"

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr "Cevap geldiğinde"

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr ""

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr "Çalışma"

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Work offline"
msgstr "Çevrimdışı çalışma"

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr "Çalışıldı"

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr "Evet"

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr ""

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr "Bu biletin sahibi zaten sizsiniz"

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "You are not an authorized user"
msgstr "Yetkili bir kullanıcı değilsiniz"

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr ""

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr "Öntanımlı aramanın kendisinide değiştirebilirsiniz"

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr "Sahibi olduğunuz veya sahipsiz biletleri tekrar tahsis edebilirsiniz"

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr "Sadece sahibi olmadığınız biletleri alabilirsiniz"

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "You found %1 tickets in queue %2"
msgstr "%2 kuyruğunda %1 bilet buldunuz"

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr "RT' den çıkış yaptınız"

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr ""

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr ""

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr "Bu kuyrukta bilet oluşturmaya yetkiniz yok."

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr ""

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr "Bu kuyrukta istek oluşturamazsınız."

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr ""

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr "Tekrar giriş yapabilirsiniz"

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Your request has been approved by %1. Other approvals may still be pending."
msgstr "İsteğiniz %1 tarafından onaylandı. Diğer onaylar, halen bekliyor olabilir."

#: NOT FOUND IN SOURCE
msgid "Your request has been approved."
msgstr "İsteğiniz onaylandı"

#: NOT FOUND IN SOURCE
msgid "Your request was rejected."
msgstr "İsteğiniz reddedildi."

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr "Kullanıcı adınız veya parolanız yanlış"

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr "Posta Kodu"

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr ""

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr ""

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "Sonra"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "kaydedilmiş aramaların oluşturulmasına izin ver"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "kaydedilmiş aramaların yüklenmesine izin ver"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "%1' e verildi"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "Önce"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "chart"
msgstr "şema"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "kapalı"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "içeriyor"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "gün"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "silindi"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "eşleşmiyor"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "içermiyor"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr ""

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "eşittir"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "hata: aşağı gidemiyorum"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "hata sola gidemiyorum"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "hata yukarı gidemiyorum"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "hata: silinecek bir şey yok"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "hata: taşınacak bir şey yok"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "hata: değiştirecek bir şey yok"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "büyüktür"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grup %1"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "%1 ile gruplanmış"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "saat"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "numara"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "aynıdır"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "aynı değildir"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "azdır"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "eşleşir"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr "en az"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr ""

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr "ay"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr ""

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "yeni"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "adsız"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "değersiz"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "hiçbiri"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "eşit değildir"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "Tarih:"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "açık"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "'%2' kullanıcısı için, kişisel grup '%1'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "kuyruk %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "reddedildi"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "çözüldü"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr ""

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "saniye"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "ayar sekmesini göster"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "hesap çizelgesi"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "savsaklandı"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "style: %1"
msgstr "biçem: %1"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "özet satırları"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistem %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "sistem grubu '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "çağıran bileşen, nedenini belirtmedi"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "bilet #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "betimlenmemiş grup %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "kullanıcı %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "hafta"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr ""

#: lib/RT/Date.pm:362
msgid "years"
msgstr "yıl"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr ""

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/he.po0000664000175000017500000075713212262650742013745 0ustar  chmrrchmrr#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-05 23:57+0000\n"
"Last-Translator: Alex Vandiver \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:12+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (אין מפתח ציבורי!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr ""

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr ""

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr ""

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr ""

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr ""

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 נוסף"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "לפני %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 שונה ל%3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 נמחק"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 נמחק."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 נשמר."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2  עודכן."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 עם תבנית %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) ע\"י %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (לא השתנה)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 - %2 shown"
msgstr "%1 - %2 מוצגים"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr ""

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr ""

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr ""

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr ""

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr ""

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr ""

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr ""

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - ציין את רכיב התנאי בו תרצה להשתמש"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - ציין את רכיב החיפוש בו תרצה להשתמש"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr ""

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 הוסף כערך של %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr ""

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr ""

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr ""

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 של %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 שונה מ%2 ל%3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "העתק של%1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "לא התאפשר לשנות את %1 ל%2"

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 נוצר"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 נמחק"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "מבוטל"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 אינו קיים."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "מופעל"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I own..."
msgstr "%1 הפניות עם העדיפות הגבוהה ביותר בטיפולי..."

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "%1 הפניות עם העדיפות הגבוהה ביותר שאני פתחתי..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr ""

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr ""

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr ""

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr ""

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr ""

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "זכויות"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr ""

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr ""

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr ""

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr ""

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr ""

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr ""

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr ""

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr ""

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr ""

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr ""

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check box to delete group member)"
msgstr "(סמן תיבה כדי למחוק חבר בקבוצה)"

#: NOT FOUND IN SOURCE
msgid "(Check box to delete scrip)"
msgstr "(סמן תיבה כדי למחוק סקריפ)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(סמן תיבה כדי למחוק)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(סמן תיבות כדי למחוק)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr ""

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr ""

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr ""

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr ""

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr ""

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr ""

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr ""

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr ""

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(רק פנייה אחת)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr ""

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr ""

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr ""

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: etc/initialdata:215
msgid "A blank template"
msgstr ""

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr ""

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr ""

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr ""

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr ""

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "מידע אודותי"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr ""

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr ""

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr ""

#: bin/rt-crontool:228
msgid "Action committed."
msgstr ""

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr ""

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr ""

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr ""

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr ""

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "הוסף העתק ניהולי"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr ""

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "הוסף העתק"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr ""

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "הוסף עוד קבצים"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "הוסף מבקש"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr ""

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr ""

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "הוסף הערות או תגובות לפניות הנבחרות"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr ""

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr ""

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "הוסף צופים חדשים"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr ""

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr ""

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr ""

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr ""

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr ""

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr ""

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr ""

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "כתובת1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "כתובת2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr ""

#: etc/initialdata:292
msgid "Admin Comment"
msgstr ""

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr ""

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr ""

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr ""

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr ""

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr "העתק ניהולי"

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr ""

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr ""

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr ""

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr ""

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr ""

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr "העתק ניהולי"

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr ""

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr ""

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr ""

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr ""

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr ""

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr ""

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr ""

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr ""

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr ""

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr ""

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr ""

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr ""

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr ""

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr ""

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr ""

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr ""

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "אישור"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr ""

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr ""

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr ""

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr ""

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr ""

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr ""

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr ""

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Apr."
msgstr "אפריל"

#: NOT FOUND IN SOURCE
msgid "April"
msgstr "אפריל"

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr ""

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr ""

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr ""

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr ""

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr ""

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr ""

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr ""

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr ""

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr ""

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "עולה"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr ""

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "צרף"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "קובץ מצורף"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr ""

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "קובץ צורף"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "שם קובץ מצורף"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "קבצים מצורפים"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr ""

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr ""

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Aug."
msgstr "אוגוסט"

#: NOT FOUND IN SOURCE
msgid "August"
msgstr "אוגוסט"

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr ""

#: etc/initialdata:218
msgid "Autoreply"
msgstr ""

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr ""

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr ""

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr ""

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "בסיסי"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Be sure to save your changes"
msgstr "אל תשכח לשמור את השינויים"

#: etc/initialdata:214
msgid "Blank"
msgstr ""

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr ""

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Bookmarkable URL for this search"
msgstr "הוסף כתובת זו לספר הכתובות כדי לחזור על אותו חיפוש"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr ""

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr ""

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Brief headers"
msgstr "תקציר כותרים"

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr ""

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr ""

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Bulk ticket update"
msgstr "עדכון פניות מרוכז"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr ""

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr ""

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr ""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr ""

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr ""

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr ""

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr ""

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr ""

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr ""

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr ""

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr ""

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "העתק"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr ""

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr ""

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr ""

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr ""

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr ""

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr ""

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr ""

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr "סמן תיבה כדי למחוק"

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr "סמן תיבה כדי לבטל זכות"

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "ילדים"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "עיר"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr ""

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr ""

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr ""

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr ""

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr ""

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr ""

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr ""

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr ""

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr ""

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "נסגר"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr ""

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr ""

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr ""

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "הערה"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr ""

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr ""

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr ""

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr ""

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr ""

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "הערות (לא נשלחות אל המבקשים)"

#: NOT FOUND IN SOURCE
msgid "Comments (not sent to requestors)"
msgstr "הערות (לא נשלחות אל המבקשים)"

#: NOT FOUND IN SOURCE
msgid "Comments about %1"
msgstr "הערות לגבי %1"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr "הערות לגבי משתמש זה"

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "הערות נוספו"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr ""

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr ""

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr ""

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr ""

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr ""

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr ""

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr ""

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "הגדרות"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr ""

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr ""

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "תוכן"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr ""

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr ""

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr ""

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr ""

#: etc/initialdata:283
msgid "Correspondence"
msgstr ""

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr ""

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr ""

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr ""

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr ""

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr ""

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr ""

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr ""

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr ""

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr ""

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr ""

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr ""

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr ""

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr ""

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr ""

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr ""

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr ""

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr ""

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr ""

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr ""

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr ""

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr ""

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr ""

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr ""

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr ""

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr ""

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr ""

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr ""

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr ""

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr ""

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr ""

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr ""

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr ""

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr ""

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr ""

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr ""

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr ""

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr ""

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr ""

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr ""

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr ""

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr ""

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr ""

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr ""

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr ""

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "ארץ"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "צור"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "צור פניות"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr ""

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr ""

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr ""

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create a new personal group"
msgstr "צור קבוצה פרטית חדשה"

#: NOT FOUND IN SOURCE
msgid "Create a new queue"
msgstr "צור תור חדש"

#: NOT FOUND IN SOURCE
msgid "Create a new scrip"
msgstr "צור סקריפ חדש"

#: NOT FOUND IN SOURCE
msgid "Create a new template"
msgstr "צור תבנית חדשה"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr ""

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "צור פנייה חדשה"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "צור משתמש חדש"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr "צור תור חדש"

#: NOT FOUND IN SOURCE
msgid "Create a queue called"
msgstr "צור תור שנקרא"

#: NOT FOUND IN SOURCE
msgid "Create a request"
msgstr "צור בקשה"

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr ""

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr ""

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr ""

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr ""

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr ""

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr ""

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr ""

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr ""

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr ""

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr ""

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr ""

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr ""

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "נוצר"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr ""

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr ""

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr ""

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "יחסים נוכחיים"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr ""

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr ""

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr ""

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr ""

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Current search criteria"
msgstr "קריטריוני החיפוש הנוכחיים"

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr "צופים נוכחיים"

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr ""

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr ""

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr ""

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr ""

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr ""

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr ""

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr ""

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr ""

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr ""

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr ""

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr ""

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr ""

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr ""

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr ""

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr ""

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr ""

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr ""

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr ""

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr ""

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr ""

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr ""

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr ""

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr ""

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr ""

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr ""

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr ""

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr ""

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr ""

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr ""

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr ""

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr ""

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr ""

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "תאריכים"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Dec."
msgstr "דצמבר"

#: NOT FOUND IN SOURCE
msgid "December"
msgstr "דצמבר"

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr ""

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr ""

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr ""

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr ""

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr ""

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr ""

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr ""

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr ""

#: etc/initialdata:250
msgid "Default transaction template"
msgstr ""

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr ""

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr ""

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Delegation"
msgstr "דלגציות"

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "מחק"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr ""

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr ""

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr ""

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr ""

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr ""

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr ""

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr ""

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr ""

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr ""

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr ""

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr ""

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr ""

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr ""

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "תלויים בו"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr ""

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr ""

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr ""

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "תלוי ב"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr ""

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "יורד"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "תיאור"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr "פרטים"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr ""

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr "הצג"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr ""

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Display mode"
msgstr "מצב תצוגה"

#: NOT FOUND IN SOURCE
msgid "Display ticket #%1"
msgstr "הצג פנייה #%1"

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr ""

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr ""

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr ""

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr ""

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr "אל תרענן דף זה."

#: NOT FOUND IN SOURCE
msgid "Don't show search results"
msgstr "אל תראה את תוצאות החיפוש"

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "הורד"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr ""

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "תאריך יעד"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr ""

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr ""

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr ""

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr ""

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr ""

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr ""

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr ""

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr ""

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr ""

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr ""

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr ""

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr ""

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr ""

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "אי-מייל"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr ""

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr ""

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr ""

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr ""

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr ""

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr "מופעל (מחיקת סימון תיבה זו מבטלת את קבוצה זו)"

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr ""

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr ""

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr ""

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr ""

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr ""

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr ""

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr ""

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr ""

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr ""

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr ""

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr "הכנס פניות או כתובות כדי לקשר פניות אליהן. הפרד ערכים רבים באמצעות רווחים."

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr ""

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr ""

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr ""

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr ""

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr ""

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr ""

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr ""

#: bin/rt-crontool:356
msgid "Example:"
msgstr ""

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr ""

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr ""

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr ""

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr ""

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr ""

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr ""

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr ""

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr ""

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Feb."
msgstr "פברואר"

#: NOT FOUND IN SOURCE
msgid "February"
msgstr "פברואר"

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr ""

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr ""

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr ""

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr ""

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr ""

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr ""

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr "עדיפות סופית"

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr ""

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr ""

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr "מצא אנשים ש"

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr "מצא פניות"

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr ""

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr ""

#: share/html/Elements/Tabs:651
msgid "First"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "First page"
msgstr "עמוד ראשון"

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr "הכרח שינוי"

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr ""

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr ""

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr ""

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr ""

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr ""

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr ""

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr "נמצאו %1 פניות"

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr ""

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr ""

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Fri."
msgstr "שישי"

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr ""

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Full headers"
msgstr "כותרים מלאים"

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr ""

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr ""

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr ""

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr "גלובאלי"

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr ""

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr ""

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr ""

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr ""

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr ""

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr ""

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "חפש"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr ""

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr ""

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr "קבוצה"

#: NOT FOUND IN SOURCE
msgid "Group %1 %2: %3"
msgstr "קבוצה %1 %2: %3"

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr "זכויות קבוצה"

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr ""

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr ""

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr ""

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr ""

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr ""

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr ""

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr ""

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr ""

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "קבוצות"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr ""

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr ""

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr ""

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr ""

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr ""

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "הסטוריה"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr ""

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr ""

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr ""

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr ""

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "דף הבית"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr ""

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr ""

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr ""

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr ""

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr ""

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "זהות"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr ""

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr ""

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr ""

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr ""

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr "אם עדכנת משהו לעיל, אל תשכח ל"

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr ""

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr ""

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr ""

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr ""

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr ""

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr ""

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr ""

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr ""

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr ""

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr ""

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr ""

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr ""

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr ""

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr ""

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr ""

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr ""

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr ""

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr ""

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr ""

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr ""

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr ""

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr ""

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr ""

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr ""

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr ""

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr ""

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr ""

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr ""

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Jan."
msgstr "ינואר"

#: NOT FOUND IN SOURCE
msgid "January"
msgstr "ינואר"

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr ""

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Jul."
msgstr "יולי"

#: NOT FOUND IN SOURCE
msgid "July"
msgstr "יולי"

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr "ג'מבו"

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Jun."
msgstr "יוני"

#: NOT FOUND IN SOURCE
msgid "June"
msgstr "יוני"

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr ""

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr ""

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr ""

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr ""

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr "מגע אחרון"

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr "קשר אחרון"

#: NOT FOUND IN SOURCE
msgid "Last Notified"
msgstr "נודע לאחרונה"

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr "עדכון אחרון"

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr ""

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr "נותרה"

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr ""

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr ""

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr "תן למשתמש זה לגשת ל R"

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr "תן אפשרות להעניק זכויות למשתמש זה"

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr ""

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr ""

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr ""

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr ""

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr ""

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr ""

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr ""

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr ""

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr ""

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr ""

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr ""

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr ""

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr "קישורים"

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr ""

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr ""

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr ""

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr ""

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr ""

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr ""

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr "מיקום"

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr ""

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr "מחובר כ %1"

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr ""

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr "כניסה"

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr "יציאה"

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr "שנה בעלות ל"

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr "שנה סטטוס"

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr "שנה תאריך יעד"

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr "שנה תאריך פתרון"

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr "שנה תאריך 'הותחל'"

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr "שנה תאריך התחלה"

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr "שנע תאריך מגע אחרון"

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr "שנה עדיפות"

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr "שנה תור"

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr "שנה נושא"

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr ""

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr "נהל קבוצות וחברות בקבוצות"

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr "נהל מאפיינים והגדרות שתקפים לכל התורות"

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr "נהל תורות ומאפיינים ספציפיים לתורות"

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr "נהל משתמשים וספריות"

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr ""

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Mar."
msgstr "מרץ"

#: NOT FOUND IN SOURCE
msgid "March"
msgstr "מרץ"

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr "מאי"

#: NOT FOUND IN SOURCE
msgid "May."
msgstr "מאי"

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr ""

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr ""

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr ""

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr "חבר הוסף: %1"

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr "חבר נמחק"

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr "חבר לא נמחק"

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr "חבר ב"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr "חברים"

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr ""

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr ""

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr ""

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr ""

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr "מיזוג הצליח"

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr "מיזוג נכשל. לא יכולתי להגדיר מזהה אפקטיבי"

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr ""

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr "מזג לתוך"

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr ""

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr "הודעה"

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr ""

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr ""

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr ""

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr ""

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr "חסר מפתח ראשי?: %1"

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr "נייד"

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "MobilePhone"
msgstr "טלפון נייד"

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify Access Control List"
msgstr "שנה רשימת בקרת גישה"

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr ""

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr ""

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr ""

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr ""

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr ""

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr ""

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr ""

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr ""

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr ""

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr ""

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr ""

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr ""

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr ""

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr ""

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr ""

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr ""

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr ""

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr ""

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr ""

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr ""

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr ""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr ""

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr "שנה פנייה מספר %1"

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr "שינוי פנוייה מספר %1"

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr "שינוי פניות"

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr ""

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr ""

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr ""

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr ""

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr ""

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr ""

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr ""

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Mon."
msgstr "שני"

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr ""

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "More about %1"
msgstr "עוד לגבי %1"

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr ""

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr ""

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr ""

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr ""

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr "האישורים שלי"

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr ""

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr ""

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr "האישורים שלי"

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr ""

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr "שם"

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr ""

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr "שם בשימוש"

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr "חדש"

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr ""

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr ""

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr "יחסים חדשים"

#: NOT FOUND IN SOURCE
msgid "New Password"
msgstr "סיסמא חדשה"

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr ""

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr "חיפוש חדש"

#: NOT FOUND IN SOURCE
msgid "New group"
msgstr "קבוצה חדשה"

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr ""

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr "סיסמא חדשה"

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "New queue"
msgstr "תור חדש"

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "New request"
msgstr "בקשה חדשה"

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr "זכויות חדשות"

#: NOT FOUND IN SOURCE
msgid "New scrip"
msgstr "סקריפ חדש"

#: NOT FOUND IN SOURCE
msgid "New search"
msgstr "חיפוש חדש"

#: NOT FOUND IN SOURCE
msgid "New template"
msgstr "תבנית חדשה"

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr "פנייה חדשה"

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr "פנייה חדשה לא קיימת"

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "New user"
msgstr "משתמש חדש"

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr "משתמש חדש שנקרא"

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr "צופים חדשים"

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr "הבא"

#: NOT FOUND IN SOURCE
msgid "Next page"
msgstr "דף הבא"

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr "כינוי"

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr "כינוי"

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr ""

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr ""

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr ""

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr ""

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr ""

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr ""

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr ""

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr ""

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr ""

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr ""

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr ""

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr ""

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr ""

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr ""

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr ""

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr ""

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr ""

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr ""

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr ""

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr ""

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr ""

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr ""

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr ""

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr ""

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr ""

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr ""

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr ""

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr ""

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr ""

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr ""

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr "אף אחד"

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr ""

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr ""

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Not logged in"
msgstr "לא בתוך המערכת"

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr "לא בתוך המערכת."

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr "לא הוזן"

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr ""

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr ""

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr ""

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr ""

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr ""

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr ""

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr ""

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr ""

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr ""

#: etc/initialdata:41
msgid "Notify Owner"
msgstr ""

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr ""

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr ""

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr ""

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr ""

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr ""

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr ""

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr ""

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr ""

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr ""

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Nov."
msgstr "נובמבר"

#: NOT FOUND IN SOURCE
msgid "November"
msgstr "נובמבר"

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr ""

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr ""

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr ""

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr ""

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr ""

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Oct."
msgstr "אוקטובר"

#: NOT FOUND IN SOURCE
msgid "October"
msgstr "אוקטובר"

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr ""

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr ""

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr ""

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr ""

#: etc/initialdata:143
msgid "On Comment"
msgstr ""

#: etc/initialdata:115
msgid "On Correspond"
msgstr ""

#: etc/initialdata:104
msgid "On Create"
msgstr ""

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr ""

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr ""

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr ""

#: etc/initialdata:172
msgid "On Queue Change"
msgstr ""

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr ""

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr ""

#: etc/initialdata:178
msgid "On Resolve"
msgstr ""

#: etc/initialdata:149
msgid "On Status Change"
msgstr ""

#: etc/initialdata:109
msgid "On Transaction"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr ""

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr "הצג רק אישורים עבור בקשות שנוצרו אחרי %1"

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr "הצג רק אישורים עבור בקשות שנוצרו לפני %1"

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Open"
msgstr "פתוח"

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr ""

#: etc/initialdata:95
msgid "Open Tickets"
msgstr ""

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Open it"
msgstr "פתח"

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr ""

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr ""

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr ""

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr ""

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ordering and sorting"
msgstr "סידור ומיון"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr "ארגון"

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr ""

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr ""

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr ""

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr ""

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr ""

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr "בעלים"

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr ""

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr ""

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Owner is"
msgstr "הבעלים"

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr ""

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr ""

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr ""

#: share/html/dhandler:48
msgid "Page not found"
msgstr ""

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr "ביפר"

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr "הורים"

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr "סיסמא"

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr "מזכיר סיסמא"

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr ""

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr ""

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Password too short"
msgstr "סיסמא קצרה מדי"

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr "סיסמא: %1"

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr ""

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr "הסיסמאות אינן תואמות"

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr "אנשים"

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr ""

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr ""

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Personal Groups"
msgstr "קבוצות אישיות"

#: NOT FOUND IN SOURCE
msgid "Personal groups"
msgstr "קבוצות אישיות"

#: NOT FOUND IN SOURCE
msgid "Personal groups:"
msgstr "קבוצות אישיות"

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr "מספרי טלפון"

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr ""

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr "העדפות"

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr "העדפות %1 עבור המשתמש %2."

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr "ההעדפות עבור %1 נשמרו."

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr "ההעדפות עבור המשתמש %1 נשמרו."

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr "ההעדפות נשמרו."

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr "המפתח המועדף: %1"

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr "מפתח מועדף"

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr ""

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr "הקודם"

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr "הקודם"

#: NOT FOUND IN SOURCE
msgid "Previous page"
msgstr "דף קודם"

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr "העקרון %1 לא נמצא."

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr ""

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr "הדפס הודעה זו"

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr "עדיפות"

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr ""

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr ""

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr ""

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr ""

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr ""

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr ""

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr ""

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr ""

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr "תור"

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr ""

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr ""

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr ""

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr ""

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr ""

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr ""

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr ""

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr ""

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr ""

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr ""

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr "תורים"

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr ""

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr ""

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr ""

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr "חיפוש מהיר"

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr ""

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr ""

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr ""

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr "ניהול RT"

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr ""

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr "RT ממבט כולל"

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr ""

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr ""

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr ""

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr "RT / %1"

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr ""

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr ""

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr "שם אמיתי"

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr "שם אמיתי"

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr ""

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr ""

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr ""

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr ""

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr "מתייחסים אליו"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr "מתייחס ל"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Refine search"
msgstr "חדד את החיפוש"

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr ""

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr ""

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr ""

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr "רענן דף זה כל %1 דקות."

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr ""

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr ""

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr ""

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr ""

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr ""

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr ""

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr ""

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr ""

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr "הסר העתק ניהולי"

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr ""

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr "הסר העתק"

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr "הסר מבקש"

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr ""

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr "הגב"

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr ""

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr ""

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr "מענה לפנייה"

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr "מבקש"

#: NOT FOUND IN SOURCE
msgid "Requestor email address"
msgstr "כתובת האי-מייל של המבקש"

#: NOT FOUND IN SOURCE
msgid "Requestor(s)"
msgstr "מבקש(ים)"

#: NOT FOUND IN SOURCE
msgid "RequestorAddresses"
msgstr "כתובת הפונה"

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr "מבקשים"

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr ""

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr ""

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr "אפס נתונים"

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr ""

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr "בית"

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr "פתור"

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr "פתור פנייה #%1 (%2)"

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr "נפתר"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Response to requestors"
msgstr "תגובה למבקשים"

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr "תוצאות"

#: NOT FOUND IN SOURCE
msgid "Results per page"
msgstr "תוצאות לעמוד"

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr ""

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr "הקלד שנית:"

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr ""

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr ""

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr ""

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr ""

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr ""

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr ""

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr ""

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr ""

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr ""

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Sat."
msgstr "שבת"

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr "שמירת שינויים"

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr ""

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Save changes"
msgstr "שמור שינויים"

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr ""

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr ""

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr ""

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr ""

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr ""

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr ""

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr ""

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr "חיפוש"

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr ""

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr ""

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr ""

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr ""

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr ""

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr ""

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr ""

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr ""

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr ""

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr ""

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr ""

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr ""

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr ""

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr ""

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr ""

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr ""

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr ""

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr ""

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr ""

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr ""

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr ""

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr ""

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select group"
msgstr "בחר קבוצה"

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr ""

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr ""

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr ""

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr ""

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr ""

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr ""

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr ""

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr ""

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr ""

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr ""

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr ""

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr ""

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr ""

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr ""

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Sep."
msgstr "ספטמבר"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "September"
msgstr "ספטמבר"

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr ""

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr ""

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr ""

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr "הצג בקשות שאושרו"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr "הצג בקשות שנדחו"

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr ""

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr "הצג בקשות ממתינות"

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr "הצג בקשות שממתינות לאישורים אחרים"

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr ""

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr ""

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr ""

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr ""

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr ""

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr "חתימה"

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr ""

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr ""

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr ""

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr ""

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr ""

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Sort results by"
msgstr "סדר תוצאות על פי"

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr ""

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr ""

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr ""

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Stalled"
msgstr "מושהה"

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr "התחיל"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr "מתחיל ב"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr "מדינה"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr "מצב"

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr ""

#: etc/initialdata:307
msgid "Status Change"
msgstr ""

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr "גנוב"

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr ""

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr "נגנב מ %1"

#: NOT FOUND IN SOURCE
msgid "Stolen from %1 "
msgstr "נגנב מ %1 "

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr "נושא"

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr "נושא שונה ל %1"

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr "שלח"

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr ""

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr ""

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Succeeded"
msgstr "הצליח"

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr ""

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Sun."
msgstr "ראשון"

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr ""

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr "סופר-משתמש"

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "System"
msgstr "מערכת"

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr ""

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr ""

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr ""

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr ""

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr ""

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr ""

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr ""

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr "קח"

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr ""

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr ""

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr "נלקחה"

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr ""

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr ""

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr ""

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr ""

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr ""

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr ""

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr ""

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr ""

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr ""

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr ""

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr ""

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr ""

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr ""

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr ""

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr ""

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr ""

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr ""

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr ""

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr ""

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr "מידע בסיסי"

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr ""

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr ""

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr ""

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr ""

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr ""

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr ""

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr ""

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr ""

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr ""

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr ""

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr ""

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Thu."
msgstr "חמישי"

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr ""

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr "כרטיס"

#: NOT FOUND IN SOURCE
msgid "Ticket # %1 Jumbo update: %2"
msgstr "פנייה מספר %1 עדכון ג'מבו: %2"

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr "כרטיס מספר %1 עדכון Jumbo: %2"

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr "כרטיס #%1 גרף יחסים"

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr "כרטיס #%1: %2"

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr ""

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr ""

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr ""

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr ""

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr ""

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr ""

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr ""

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr ""

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ticket attachment"
msgstr "מצורף לפנייה"

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr ""

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr ""

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr ""

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ticket created"
msgstr "פנייה נוצרה"

#: NOT FOUND IN SOURCE
msgid "Ticket deleted"
msgstr "פנייה נמחקה"

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ticket id not found"
msgstr "מזהה פנייה לא נמצא"

#: NOT FOUND IN SOURCE
msgid "Ticket killed"
msgstr "פנייה נמחקה"

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ticket not found"
msgstr "פנייה לא נמצאה"

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr "סטטוס פנייה שונה"

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ticket watchers"
msgstr "צופי הפנייה"

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr ""

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr "פניות"

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr ""

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr ""

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr ""

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr "זמן נותר"

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr "זמן עבודה"

#: NOT FOUND IN SOURCE
msgid "Time left"
msgstr "זמן נותר"

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr "זמן להציג"

#: NOT FOUND IN SOURCE
msgid "Time worked"
msgstr "זמן עבודה"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr ""

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr ""

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr ""

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr ""

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr ""

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr ""

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr ""

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr ""

#: etc/initialdata:249
msgid "Transaction"
msgstr ""

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr ""

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr ""

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr ""

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr ""

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr ""

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Tue."
msgstr "שלישי"

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr ""

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr "סוג"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr ""

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr ""

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr "לא מייושם"

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr ""

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr ""

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr ""

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr ""

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr "לא מוגבל"

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr ""

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr ""

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr ""

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr ""

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr "עדכן"

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr ""

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr ""

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr "סוג עדכון"

#: NOT FOUND IN SOURCE
msgid "Update all these tickets at once"
msgstr "עדכן את כל הפניות לעיל בבת אחת"

#: NOT FOUND IN SOURCE
msgid "Update email"
msgstr "עדכן אי-מייל"

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr ""

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Update name"
msgstr "עדכן שם"

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Update selected tickets"
msgstr "עדכן פניות נבחרות"

#: NOT FOUND IN SOURCE
msgid "Update signature"
msgstr "עדכן חתימה"

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr "עדכן פנייה"

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr ""

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr ""

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr "עודכן"

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr ""

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr ""

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr ""

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr ""

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr ""

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr ""

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr ""

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr ""

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr ""

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr ""

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr ""

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr ""

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr ""

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr ""

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr ""

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "User ID"
msgstr "מזהה המשתמש"

#: NOT FOUND IN SOURCE
msgid "User Id"
msgstr "מזהה המשתמש"

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr "זכויות המשתמש"

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr ""

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr ""

#: lib/RT/User.pm:262
msgid "User created"
msgstr ""

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr ""

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr ""

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr ""

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr "שם משתמש"

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr ""

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr "משתמשים"

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr ""

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr ""

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr ""

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr ""

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr ""

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr ""

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr ""

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr ""

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr ""

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Wed."
msgstr "רביעי"

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr ""

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr ""

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr ""

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr ""

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr ""

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr ""

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr ""

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr ""

#: etc/initialdata:110
msgid "When anything happens"
msgstr "בכל פעם שדבר כלשהוא קורה"

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr ""

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr "בכל פעם שפנייה נסגרת"

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr "בכל פעם שבעלי הפנייה משתנה"

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr ""

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr "בכל מצב שתור הפנייה משתנה"

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr "בכל פעם שמצב הפנייה משתנה"

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr "בכל פעם שמצב מוגדר על ידי משתמש קורה"

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr "בכל פעם שהערה מגיעה ב"

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr "בכל פעם שתכתובת מגיעה ב"

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr "היכן נמצאת תוכנת sendmail"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr ""

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr "עבודה"

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "WorkPhone"
msgstr "טלפון בעבודה"

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr "זמן טיפול"

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr "כן"

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr ""

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr "אתה כבר הבעלים של פנייה זו"

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "You are not an authorized user"
msgstr "אינך משתמש מורשה"

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr ""

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr "אתה יכול להציב פניה רק אם אתה הבעלים שלה, או שאין לה בעלים"

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr ""

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "You don't have permission to view that ticket.\\n"
msgstr "אין לך הרשאה כדי לראות את פנייה זו.\\n"

#: NOT FOUND IN SOURCE
msgid "You found %1 tickets in queue %2"
msgstr "מצאת %1 פניות בתור %2"

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr "התנתקת מהמערכת."

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr ""

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr ""

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr "אין לך הרשאות ליצור פניות בתור זה."

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr ""

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr "אינך מורשה ליצור פניות בתור זה."

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr ""

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr "הנך מוזמן להיכנס שנית"

#: NOT FOUND IN SOURCE
msgid "Your %1 requests"
msgstr "%1 הבקשות שלך"

#: NOT FOUND IN SOURCE
msgid "Your RT administrator has misconfigured the mail aliases which invoke RT"
msgstr "מנהל המערכת לא הגדיר את כתובות הדואר שמפעילות את התוכנה כמו שצריך"

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Your request has been approved by %1. Other approvals may still be pending."
msgstr "בקשתך אושרה על ידי %1. ייתכן שאישורים נוספים עדיין ממתינים."

#: NOT FOUND IN SOURCE
msgid "Your request has been approved."
msgstr "בקשתך אושרה."

#: NOT FOUND IN SOURCE
msgid "Your request was rejected"
msgstr "בקשתך נדחתה"

#: NOT FOUND IN SOURCE
msgid "Your request was rejected."
msgstr "בקשתך נדחתה."

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr "שם המשתמש ו/או הסיסמא אינם נכונים"

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr "מיקוד"

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "[no subject]"
msgstr "[ללא נושא]"

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr "[ללא]"

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr ""

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "אחרי"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "אפשר יצירת חיפושים שמורים"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "אפשר טעינת חיפושים שמורים"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "שהוענק ל%1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "לפני"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "סגור"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "מכיל"

#: NOT FOUND IN SOURCE
msgid "content"
msgstr "תוכן"

#: NOT FOUND IN SOURCE
msgid "content-type"
msgstr "סוג התוכן"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "correspondence (probably) not sent"
msgstr "התכתבות (כנראה) לא נשלחה"

#: NOT FOUND IN SOURCE
msgid "correspondence sent"
msgstr "התכתבות נשלחה"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "יומי בשעה %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "ימים"

#: NOT FOUND IN SOURCE
msgid "delete"
msgstr "מחק"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "מחוק"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "לא מכיל"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "לא מכיל"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "לא תואם"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "הורדה"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "שווה ל"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "שגיאה: לא ניתן להזיז למטה"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "שגיאה: לא ניתן להזיז שמאלה"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "שגיאה: לא ניתן להזיז למעלה"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "שגיאה: אין מה למחוק"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "שגיאה: אין מה להזיז"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "filename"
msgstr "שם קובץ"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "מלא"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "גדול מ"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "קבוצה %1"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "שעות"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "מזהה"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "הוא"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "הוא לא"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "מפתח מבוטל"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "מפתח אשר פג תוקפו"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "שמאל לימין"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "פחות מ"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "שולי"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "מכיל"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "עומק מרבי"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "דקות"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "דקות"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "חודשי (ביום %1) בשעה %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "חודשים"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "אף פעם"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "חדש"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "לא"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "אין שם"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "אין ערך"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "אין"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "לא שווה ל"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "ב"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "פתוח"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "אחר..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "קבוצה אישית '%1' למשתמש '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "תור %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "נדחה"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "פתור"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "ימין לשמאל"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "שניות"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "מושהה"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "שורות סיכום"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "מערכת %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "קבוצת מערכת '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "הרכיב הקורא לא הסביר מדוע"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "כתובות ברירת המחדל אשר יופיעו בשדות ה\"From\" ו\"Reply-To\" בדואל תגובות."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "כתובות ברירת המחדל אשר יופיעו בשדות ה\"From\" ו\"Reply-To\" בדואל תכתובת."

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "קבוצה ללא תאור %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "משתמש %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "שבועי (ביום %1) בשעה %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "שבועות"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr ""

#: lib/RT/Date.pm:362
msgid "years"
msgstr "שנים"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "כן"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/ru.po0000664000175000017500000126065312262650742013775 0ustar  chmrrchmrr# translation of Request Tracker to Russian
#
#
# Andrew Kornilov , 2004, 2005, 2006, 2007, 2008.
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:04+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: Koptev Oleg \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"
"X-Poedit-Country: RUSSIAN FEDERATION\n"
"X-Poedit-Language: Russian\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (нет открытого ключа!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (ненадёжный!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 добавлено"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 назад"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 изменено на %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 удалёно"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 удалено."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 переименовано в %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 сохранены."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 обновлено."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 с шаблоном %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) от %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Не менять)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (из панели %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Подстроить опцию конфига LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Аргумент для передачи в %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Выводить обновления статуса на STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Укажите id шаблона, который вы хотите использовать"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Выберите, какую передачу Вы хотите увидеть - первую, последнюю, или все."

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Укажите имя или илентификатор шаблона, который вы хотите использовать"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Выберите модуль действий, который хотите использовать"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Укажите в списке, разделенным запятыми, типы транзакций, которые вы хотите использовать"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Выберите модуль условий, который хотите использовать"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Укажите модуль поиска, который вы хотите использовать"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "Информационные панели %1"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Все права защищены 1996-%3 %4"

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 СкриплетНаДействие загружен"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 добавлено как значение для %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 уже существует и имеет таблицы от RT, но не содержит метаданных. Запуск этапа 'Инициализация БД' позже сможет вставить метаданные в существующую БД. Если это приемлемо, кликните 'Настроить Основные Параметры' ниже для продолжения настройки RT"

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 уже существует, но не имеет таблицы от RT или метаданных. Запуск этапа 'Инициализация БД' позже сможет вставить метаданные в существующую БД. Если это приемлемо, кликните 'Настроить Основные Параметры' ниже для продолжения настройки RT"

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 является локальным объектом, но не найден в базе данных"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 похоже полностью инициализирована. Мы не будем создавать таблицы или вставлять метаданные, но вы можете продолжить настройку RT кликнув 'Настроить Основные Параметры' ниже"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 пользователем %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 изменена с %2 на %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 изменено с '%2' на '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "график %1 группированный по %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "Копия %1"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "основной конфиг '%1'"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 невозможно установить в %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 не может изменить статус на Решено. Возможно, база данных RT испорчена."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 создана"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 удалена"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 отключено"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 не существует."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 включено"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 ваших заявок с наивысшими приоритетами"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 утилита для воздействия на заявки из внешнего планировщика, такого как cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 -- утилита, запускаемая из cron, которая доставляет все отложенные почтовые уведомления отдельным пользователям в виде \"дайджеста\"."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 больше не является %2 для этой очереди."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 больше не является %2 для этой заявки."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 больше не является значением для дополнительного поля %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 мин"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 последних неназначенных заявок"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 объектов"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "локальный конфиг '%1'"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 изменение: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 изменение: Ничего не изменено"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 изменено"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 решит все заявки, входящие в групповой запрос"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1 %2 объектов"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1 %2 %3 объектов"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Информационные панели %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Сохранённые запросы %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: без вложений"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Создать заявку в очереди%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1б"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1к"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,час,часа,часов)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' является неверным значением статуса"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Выделите пункты для удаления)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Выделите получателей для исключения из списка уведомляемых)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Выделите получателей для включения в список уведомляемых)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Введите идентификаторы или ссылки на заявки, разделенные пробелами)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Если не заполнено, то по умолчанию равно %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Нет дополнительных полей)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Нет пользователей)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Нет скриплетов)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Нет шаблонов)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Не задано)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Отправить копию сообщения об этом изменении на эти адреса [разделяются запятой]. Эти получатели в дальнейшем будут получать копии сообщений об изменениях.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Отправить копию сообщения об этом изменении на эти адреса [разделяются запятой]. Эти получатели в дальнейшем будут получать копии сообщений об изменениях.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Используйте эти поля при выборе 'Задано пользователем' для условий или действий)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Корреспонденция не будет отправлена)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(любое)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(пусто)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(нет открытого ключа!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(нет значения)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(нет значений)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(только одна заявка)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(в ожидании %quant(%1,other ticket))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(в ожидании подтверждения)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(требуется)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(доверие: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(без названия)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(недоверенный!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "--"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id устаревший аргумент и его нельзя использовать совместно с --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "значение аргумента --transaction может быть только 'first', 'last' или 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Все iCal-каналы включают в себя секретный токен, позволяющий вас авторизовать. Если URL iCal-канала был раскрыт, Вы можете получить новый токен, аннулирующий все iCal-каналы ниже.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Пустой шаблон" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Пароль не был установлен, поэтому пользователь не сможет зайти в систему." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE не найден" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACEы можно только создавать и удалять" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "И" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Персональные данные" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Права доступа" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Действие" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Действие '%1' не найдено" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Действие зафиксировано.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Действие является обязательным аргументом" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Действие подготовлено..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "Действия" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Добавить административную копию" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Добавить закладку" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Добавить копию" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Добавить колонки" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Добавить критерий" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Добавить еще файлы" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Добавить автора заявки" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Добавить значение" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Добавить скриплет, который будет действовать на все очереди" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Добавить комментарии или ответы на выбранные заявки" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Добавить пользователей" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Добавить наблюдателей" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Добавить эти условия" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Добавить эти условия и начать поиск" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Добавить значения" # Manual merge by Andrew Kornilov #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Добавить, удалить или изменить значения дополнительных полей для объектов" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Пользователь добавлен как %1 для этой очереди" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Пользователь добавлен как %1 для этой заявки" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Адрес" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Адрес1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Адрес2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Административная Копия" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Административный Комментарий" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Административная Корреспонденция" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Управление очередями" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Общие настройки" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "АдминистрироватьВсеПерсональныеГруппы" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "АдминистративнаяКопия" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "АдминистрироватьДополнительноеПоле" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "АдминистрироватьГруппу" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "АдминистрироватьЧленствоВГруппах" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "АдминистрироватьСобственныеГруппы" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "АдминистрироватьОчередь" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "АдминистрироватьПользователей" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Административная Копия" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Пароль администратора" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Дополнительно" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Агрегатор" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Все подтверждения получены" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "Все информационные панели" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Все очереди" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Все iCal-каналы включают в себя секретный токен, позволяющий вас авторизовать. Если URL iCal-канала был раскрыт, Вы можете получить новый токен, аннулирующий все iCal-каналы ниже." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "Запросы по критериям поиска" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Уже зашифровано" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "И/Или" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "Примененный" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Применяется к" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "Применяется ко всем объектам" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Применить" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "Применяется глобально" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Применить ваши изменения" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Подтверждения" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Подтверждение #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Подтверждение #%1: Примечания не сохранены из-за системной ошибки" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Подтверждение #%1: Примечания записаны" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Подтверждение получено" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Подтверждение отклонено" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Подтвердить" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Апр" #: NOT FOUND IN SOURCE msgid "April" msgstr "Апрель" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "Статьи" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "По возрастанию" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "В порядке возрастания" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Назначать и удалять дополнительные поля" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "НазначатьДополнительныеПоля" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Вложение" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Вложить файл" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Вложенный файл" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Вложение" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Вложение '%1' не может быть загружено" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Вложение создано" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Имя файла для вложения" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Вложения" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Шифрование вложений не используется" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Атрибут удалён" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Авг" #: NOT FOUND IN SOURCE msgid "August" msgstr "Август" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Автоответ" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Автоответ Авторам Заявки" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Доступно" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "\"Слепая\" копия" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Назад" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Основное" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Не забудьте сохранить настройки" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "корпоративная эмблема Best Practical Solutions, LLC" #: etc/initialdata:214 msgid "Blank" msgstr "Пустой" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Содержание" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Жирный" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Закладка" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Заявки, добавленные в закладки" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Сокращенные заголовки" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Множественное изменение" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Купить поддержку" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "По-умолчанию, RT использует системную временную зону. Это позволяет вам установить глобальное умолчание для отображения дат и времен в RT. Ваши пользователи смогут выбирать различные временные зоны в своих настройках." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "ДП" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "Не возможно загрузить сохраненный поиск \"%1\"" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Невозможно изменить системных пользователей" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Может ли данный пользователь просматривать эту очередь" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Невозможно добавление значения дополнительного поля без наименования" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Невозможно найти класс коллекции для '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Невозможно найти сохранённый запрос для работы с ним" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Невозможно связать заявку саму с собой" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Невозможно сохранить %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Невозможно сохранить этот запрос" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Невозможно указывать одновременно и источник и адрес назначения" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Невозможно создавать заявки в неиспользуемой очереди." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Невозможно создать пользователя: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Категории на основе" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Категория" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Категория не задана" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Копия" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Изменить" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Изменить статус заявки на открытый" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Изменить пароль" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Выбрать все" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Проверить подключение к базе данных" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Проверьте информацию о БД" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Выделите пункты для удаления" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Выделите права, которые хотите отозвать" #: NOT FOUND IN SOURCE msgid "Check your database credentials" msgstr "Проверьте реквизиты доступа к базе данных" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Потомки" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Выберите СУБД" #: NOT FOUND IN SOURCE msgid "Choose a database engine" msgstr "Выберите СУБД" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Город" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Очистить" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Очистить всё" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Нажмите \"Завершить инсталляцию\" для завершения работы этого мастера." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Кликните \"Инициализировать БД\" для создания базы данных RT и вставки метаданных. Это может занять немного времени" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Закрыть окно" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Закрыта" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Закрытые заявки" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Комбинированный список: Выберите или введите несколько значений" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Комбинированный список: Выберите или введите одно значение" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Комбинированный список: Выберите или введите до %1 значений" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Комментировать" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Адрес для комментариев" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Адрес для комментариев" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Комментировать заявки" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "АдресДляКомментариев" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "КомментироватьЗаявку" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Комментарии" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Комментарии (Не отправляются авторам заявки)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Комментарии (Не отправляются авторам заявки)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Комментарии об этом пользователе" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Добавлен комментарий" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Условие" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Условие '%1' не найдено" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Условие является обязательным аргументом" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Подходящее условие..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Условие, Действие и Шаблон" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Конфигурационный файл %1 заблокирован" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Конфигурация" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Подтвердить" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Соединение выполнено" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Содержимое" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Тип-Содержания" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "ТипСодержания" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Адрес для корреспонденции" #: etc/initialdata:283 msgid "Correspondence" msgstr "Корреспонденция" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Добавлен ответ" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Ошибка добавления нового значения для дополнительного поля. %1" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Невозможно изменить владельца: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Невозможно создать дополнительное поле" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Ошибка создания дополнительного поля: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Невозможно создать группу" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Невозможно создать шаблон: %1" #: NOT FOUND IN SOURCE msgid "Could not create ticket in disabled queue \"%1\"" msgstr "Невозможно создать заявку в неиспользуемой очереди \"%1\"" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Невозможно создать заявку. Не задана очередь." #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Невозможно создать пользователя" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Невозможно найти или создать этого пользователя" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Невозможно найти этого пользователя" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Невозможно загрузить атрибут %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Невозможно загрузить дополнительное поле %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Невозможно загрузить группу" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Ошибка загрузки объекта для %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Невозможно назначить этого пользователя %1 для этой очереди" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Невозможно назначить этого пользователя %1 для этой заявки" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Невозможно отозвать функции у пользователя как %1 для этой очереди" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Невозможно отозвать функции у пользователя как %1 для этой заявки" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Невозможно установить информацию о пользователе" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Невозможно добавить вложение" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Невозможно добавить пользователя в группу" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Невозможно создать транзакцию: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Невозможно создать запись" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Невозможно удалить информационную панель %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Невозможно найти строку" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Невозможно найти подходящую транзакцию, пропускаем" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Невозможно найти этого пользователя" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Невозможно найти это значение" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Невозможно загрузить %1 из базы пользователей.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Ошибка загрузки класса %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Ошибка загрузки дополнительного поля #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Невозможно загрузить дополнительное поле %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Невозможно загрузить копию заявки #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Невозможно загрузить информационную панель %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Невозможно загрузить информационную панель %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Ошибка загрузки группы #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Невозможно загрузить группу %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Невозможно загрузить ссылку" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Невозможно загрузить объект %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Ошибка загрузки или создания пользователя: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Невозможно загрузить очередь" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Ошибка загрузки очереди #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Невозможно загрузить очередь %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Ошибка загрузки очереди '%1'" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Невозможно загрузить скриплет #%1" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Ошибка загрузки шаблона #%1" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Невозможно загрузить заявку '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Ошибка загрузки транзакции #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Не получилось найти запись пользователя" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Ошибка загрузки пользователя #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Не получилось загрузить запись пользователя №%1 или с именем '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Не возможно загрузить пользователя '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Невозможно получить адрес из строки '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Ошибка замены контента расшифрованными данными: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Ошибка замены контента зашифрованными данными: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Ошибка преобразования '%1' в URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Невозможно преобразовать базу '%1' в URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Невозможно преобразовать цель '%1' в URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Ошибка отправки почтового сообщения" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Невозможно установить %1 наблюдателем: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Ошибка установки секретного ключа" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Ошибка сброса секретного ключа" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Страна" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Создать" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Создать заявки" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Создать дополнительное поле" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Создать дополнительное поле для очереди %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Создать новую информационную панель" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Создать новую группу" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Создать новую пользовательскую группу" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Создание новой заявки" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Создать нового пользователя" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Создать очередь" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Создать скриплет для очереди %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Создать шаблон" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Создать заявку" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Создавать информационные панели для данной группы" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Создать новые заявки на основе этого шаблона скриплета" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Создавать пользовательские информационные панели" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Создавать системные информационные панели" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Создать заявку" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Создавать заявки в этой очереди" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Создать заявки в автономном режиме" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Создать, удалить или изменить дополнительные поля" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Создавать, удалять или изменять очереди" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Создавать, удалять или изменять членов персональных групп" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Создавать, удалять или изменять пользователей" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "СоздаватьИнформационнуюПанель" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "СоздаватьГрупповуюИнформационнуюПанель" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "СоздаватьПользовательскуюИнформационнуюПанель" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "СоздаватьСохранённыйЗапрос" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "СоздаватьЗаявку" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Создана" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Создана:" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Создано дополнительное поле %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Создано в промежутке времени" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Создано заявок за период, с группировкой по статусу" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "Создана:" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "СозданаОтносительно" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Автор заявки" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Криптография" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Текущие связи" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Текущие скриплеты" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "Текущий поиск" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Текущие пользователи" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Текущие права" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Текущий запрос" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Текущие наблюдатели" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Дополнительные поля" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Дополнительные поля для %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Пользовательский код завершения действия" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Пользовательский код подготовки действия" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Пользовательское условие" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Дополнительное поле %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Дополнительное поле %1 не относится к этому объекту" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Дополнительное поле %1 имеет значение." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Дополнительное поле %1 не имеет значения." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Невозможно найти дополнительное поле %1" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Дополнительное поле '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Невозможно найти значение %1 дополнительного поля %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Невозможно удалить значение дополнительного поля" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Невозможно найти значение дополнительного поля" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Значение дополнительного поля удалено" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ДополнительноеПоле" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "ЗначениеДополнительногоПоля" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Настроить" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Изменить базовые настройки" #: NOT FOUND IN SOURCE msgid "Customize Database Details" msgstr "Настроить параметры БД" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Изменение Email'ов" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Изменить настройки email" #: NOT FOUND IN SOURCE msgid "Customize Global" msgstr "Настроить Общие" #: NOT FOUND IN SOURCE msgid "Customize Global Defaults" msgstr "Настройка Параметров по умолчанию" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "пароль администратора БД" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "имя пользователя БД" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Ежедневный дайджест" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Информационная панель" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Невозможно создать информационную панель: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Невозможно изменить информационную панель: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Информационная панель изменена" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Информационные панели" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "сервер (хост) БД" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Имя БД" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Пароль для доступа RT к базе данных" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Порт БД" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Тип БД" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Имя пользователя для доступа RT к базе даных" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Формат даты" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "perl модуль DateTime не установлен" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "perl модуль DateTime::Locale не установлен" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Даты" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Дек" #: NOT FOUND IN SOURCE msgid "December" msgstr "Декабрь" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Расшифровать" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Шаблон автоответа по умолчанию" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Очередь по умолчанию" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Автор заявки по умолчанию" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Шаблон административного комментария по умолчанию" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Шаблон административной корреспонденции по умолчанию" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Шаблон корреспонденции по умолчанию" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Очередь по умолчанию" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Шаблон транзакции по умолчанию" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "По умолчанию: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Умолчание: %1/%2 изменено с %3 на %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "ФорматПоУмолчанию" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Делегирование прав" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Делегировать выданные вам права." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "ДелегироватьПрава" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Делегирование прав" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Удалить" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Удалить шаблон" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Удалять информационные панели данной группы" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Ошибка удаления: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Удалять пользовательские информационные панели" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Удалить выбранные скриплеты" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Удалять системные информационные панели" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Удалять заявки" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Удалить значения" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "УдалятьИнформационнуюПанель" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "УдалятьГрупповуюИнформационнуюПанель" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "УдалятьПользовательскуюИнформационнуюПанель" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "УдалятьЗаявку" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Удалено %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Удалена информационная панель %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Удаленные запросы" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Удалён сохранённый запрос" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Удаление этого объекта нарушит ссылочную целостность" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Удаление этого объекта нарушит ссылочную целостность" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Отказать" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "От неё зависят" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Добавлено требование заявкой %1" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Удалено требование заявкой %1" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Добавлена зависимость от %1" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Удалена зависимость от %1" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Зависит от" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "Зависит от" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "По убыванию" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "В порядке убывания" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Опишите проблему" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Описание" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "Дополнительно" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Направление" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Не используется" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Показать" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Показать список прав доступа" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Показать колонки" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Показывать шаблоны скриплетов для этой очереди" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Показывать скриплеты для этой очереди" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Показывать сохранённые запросы для этой группы" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Распространяется по версии 2 GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Делать всё и везде" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Наименование домена" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Не используйте http://, только типа 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Не обновлять домашнюю страницу" #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Не обновлять результаты поиска" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Не обновлять эту страницу" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Больше не доверять данному ключу" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Загрузить" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Загрузить как файл со значениями, разделенными табуляцией" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Загрузить дамп" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Дан срок" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ОШИБКА: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Быстрое изменение ваших открытых заявок" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Редактировать" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Редактировать дополнительные поля" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Редактировать дополнительные поля для %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Редактировать дополнительные поля всех групп" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Редактировать дополнительные поля всех очередей" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Редактировать дополнительные поля всех пользователей" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Редактировать дополнительные поля заявок во всех очередях" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Редактировать связи" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Редактировать запрос" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Редактировать запрос" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Редактировать шаблоны для очереди %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Редактировать сохранённые запросы этой группы" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Редактировать системные шаблоны" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "РедактироватьСохранённыеЗапросы" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Редактируемый текст запроса" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Редактирование настроек очереди %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Редактирование дополнительного поля %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Редактирование списка пользователей группы %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Редактирование списка пользователей персональной группы %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Нужно указать либо источник, либо адрес назначения" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "У вас нет прав для просмотра сохранённого запроса %1 или указан неверный идентификатор" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Email" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: NOT FOUND IN SOURCE msgid "Email Configuration" msgstr "Настройка эл.почты" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Email Дайджест" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "Email адрес уже используется" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Доставка почты" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Шаблон эл.почты для периодических уведомлений в виде \"дайджестов\"" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "EmailAddress" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Используется" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Используется (снятие отметки отключает использование этого дополнительного поля)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Используется (снятие отметки отключает использование этой группы)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Используется (снятие отметки отключает использование этой очереди)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Используемые очереди" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Активирован статус %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Зашифровать" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Шифровать по умолчанию" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Зашифровать/Расшифровать" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Зашифровать/Расшифровать транзакцию #%1 заявки #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Шифрование не используется" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Шифрование активировано" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Введите несколько значений" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Введите несколько значений (с автодополнением)" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Введите объекты или ссылки на объекты. Значения разделяются пробелами." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Введите одно значение" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Введите одно значение (с автодополнением)" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Введите очереди или ссылки на очереди. Значения разделяются пробелами." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Введите заявки или ссылки на заявки. Значения разделяются пробелами." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Введите до %1 значений" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Введите до %1 значений (с автодополнением)" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Ошибка" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Ошибка в параметрах Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Ошибка в параметрах Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Ошибка в параметрах Ticket->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Ошибка в параметрах Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Ошибка к владельцу RT: публичный ключ" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Ошибка: Отсутствует информационная панель" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Ошибка: неверные данные GnuPG" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Ошибка: нет секретного ключа" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Ошибка: нет публичного ключа" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Эскалировать приоритет заявки" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Расчётное" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Просмотреть заявки, созданные в очереди в промежутке времени" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Просмотреть заявки, решённые в очереди в промежутке времени" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Просмотреть решённые в очереди заявки, сгруппированные по ответственному" #: bin/rt-crontool:356 msgid "Example:" msgstr "Пример:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Истекает" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "РасширенныйСтатус" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Дополнительная информация" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "Создать статью" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "Создать статью из заявки #%1 в класс %2" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Ошибка подключения к базе данных: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Ошибка создания атрибута %1" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Невозможно найти псевдо-группу 'Привилегированные'" #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Невозможно найти псевдо-группу 'Непривилегированные'" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Ошибка загрузки %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Ошибка загрузки %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Ошибка загрузки модуля %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Ошибка загрузки объекта для %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Ошибка загрузки шаблона" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Ошибка обработки шаблона" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Фев" #: NOT FOUND IN SOURCE msgid "February" msgstr "Февраль" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Источник значений поля:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "ИмяФайла" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Имя файла" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Заполнить параметры" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Раскрасить в соотвествии с" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Заполнить несколько текстовых полей" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Заполнить несколько полей wikitext" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Заполнить одно текстовое поле" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Заполнить одно поле wikitext" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Введите в этом поле URL." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Заполнить до %1 текстовых полей" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Заполнить до %1 полей wikitext" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Конечный приоритет" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "КонечныйПриоритет" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Найти всех пользователей, чей" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Найти группы, у которых" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Найти пользователей, у которых" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Поиск заявок" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Завершить" #: share/html/Elements/Tabs:651 msgid "First" msgstr "В начало" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Фу!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Изменить принудительно" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Форматировать" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Переслать" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Переслать сообщение" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Переслать сообщение и вернуться" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward message" msgstr "Переслать сообщение" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Пересылать сообщения третьей стороне" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "ПересылатьСообщение" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Найдено %quant(%1,ticket)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Найден объект" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Периодичность" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Птн" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "Пятница" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Все заголовки" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Общие" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Взять шаблон из файла" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Начало работы" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Назначен ответственный пользователь %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Общие" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Общие дополнительные поля" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Конфигурирование общих дополнительных полей" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Общий портлет %1 сохранен." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Общий шаблон: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "Ошибка GnuPG: Обратитесь к системному администратору" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Интеграция с GnuPG не используется" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "Проблемы GnuPG" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "Секретный ключ (-и) GnuPG для %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "Публичный ключ (-и) GnuPG для %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Отправить" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Отправить!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Показать заявку" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "График" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Настройки графика" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Графические диаграммы недоступны." #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Группа" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Права группы" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Пользователь уже входит в группу: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Невозможно создать группу: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Группа создана" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Группа не используется" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Группа используется" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "В группе нет такого пользователя" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Группа не найдена" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Права групп" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Группы" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Группы не могут быть членами входящих в них пользователей" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Группы, удовлетворяющие условию поиска" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Список групп, в которых состоит пользователь (Выделите группы для исключения из них пользователя)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Список групп, в которых пользователь не состоит (Выделите группы для добавления в них пользователя)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Группы, в которых состоит этот пользователь" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Здравствуйте!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Здравствуйте, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Помогите нам установить некоторые полезные умолчания для RT" #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Скрыть цитируемый текст" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "История" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "История группы %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "История пользователя %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "В начало" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Интервал обновления домашней страницы" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "Домашний телефон" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "В начало" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Час" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Часов" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Имеется %quant(%1,concrete mixer)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ИСО" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Заявка" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Персональные данные" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Если подтверждение отклонено, отклонить заявку-первоисточник и удалить ожидающие подтверждения" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Если не указан Автор, создать заявки от имени этого Автора." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Если очередь не указана, то создавать заявки в этой очереди." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Если бы эта программа имела установленный бит setgid, то зловредный пользователь мог бы воспользоваться этим для получения административных полномочий в RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Если у вас уже есть работающий RT сервер и база данных, вы можете воспользоваться этим, чтобы убедиться в работоспособности сервера БД и в правильности соединения c RT. После этого остановите и снова запустите сервер RT.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Если у вас уже есть работающий RT сервер и база данных, вы можете воспользоваться этим, чтобы убедиться в работоспособности сервера БД и в правильности соединения c RT. После этого остановите и снова запустите сервер RT.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Если вы изменили Порт на котором работает RT, вам необходимо перезапустить сервер для входа в систему." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "После любых изменений необходимо" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Если вы предпочитаете БД, отсутствующую в нижеследующем списке, то это значит, что RT не может найти драйвер базы данных установленный локально. Вы можете исправить это используя %1 для загрузки и установки DBD::MySQL, DBD::Oracle или DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Недопустимое значение для %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Неизменяемое поле" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Вложить статью:" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Показывать неиспользуемые дополнительные поля." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Показывать неиспользуемые группы." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Показывать неиспользуемые очереди." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Показывать отключенных пользователей." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Вставить страницу" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Отдельные сообщения" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Проинформируйте владельца RT, что у пользователя(ей) есть проблемы с публичными ключами" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Проинформируйте пользователя, что информационная панель, на которую он подписался, отсутствует" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Проинформируйте пользователя, что посланное им сообщение содержит неверные данные GnuPG" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Проинформируйте пользователя, что у него возникли проблемы с публичным ключом и он не может получить зашифрованное содержимое" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Проинформируйте пользователя, что его пароль сброшен" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Проинформируйте пользователя, что мы получили зашифрованный email и у нас нет секретных ключей для расшифровки" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Начальный приоритет" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "НачальныйПриоритет" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Инициализировать Базу Данных" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Ошибка ввода" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Ввод должен соответствовать %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Установить RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Внутренняя ошибка" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Внутренняя ошибка: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Неверное значение %1: '%2' не является адресом email" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Неверное значение %1: должно быть числом" #: NOT FOUND IN SOURCE msgid "Invalid %1: that doesn't look like an email address" msgstr "Неверное значение %1: не является адресом email" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Недопустимый тип группы" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Недопустимое право" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Недопустимые данные" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Неверный объект" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Неверный объект ответственного" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Недопустимый образец: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Недопустимая очередь" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Недопустимое право" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Недопустимое право. Невозможно канонизировать право '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Недопустимое значение для %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Недопустимое значение дополнительного поля" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Недопустимое значение статуса" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Не зашифровано" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Обратите внимание, что непривилегированные пользователи не имеют права запускать эту программу." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Предполагается, что для запуска этой программы вы должны создать непривилегированную учетную запись пользователя Unix с корректными установками групп и доступом к RT." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Это требует несколько параметров:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Наклонный" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Янв" #: NOT FOUND IN SOURCE msgid "January" msgstr "Январь" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Присоединиться или покинуть эту группу" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Июл" #: NOT FOUND IN SOURCE msgid "July" msgstr "Июль" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Все данные" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Июн" #: NOT FOUND IN SOURCE msgid "June" msgstr "Июнь" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Оставьте 'localhost' если не уверены. Или оставьте пустым для соединения через сокет." #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Язык" #: NOT FOUND IN SOURCE msgid "Language." msgstr "Язык." #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Большой" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "В конец" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Последний контакт" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Последний контакт" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Последнее изменение" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Последнее изменение:" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Последний раз изменено" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "ПоследнееИзменение" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "ПоследнийРазИзменено" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Оставьте пустым для получения на ваш текущий адрес почты (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Оставьте пустым для использования значения по умолчания для вашей базы данных" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Оставьте поле пустым для того чтобы использовать имя администратора по умолчанию для данного типа СУБД" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Осталось" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Условные обозначения" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Длина в символах; Укажите 0 для отображения всех сообщений полностью, независимо от их длины" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Разрешить доступ к RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Предоставить пользователю права" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Вперед!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Ссылка" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Связь уже существует" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Невозможно создать связь" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Связь не найдена" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Связать заявку #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Связать значения с" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Связано" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "СвязаноОт" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "СвязаноС" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Связывание. Нет доступа" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Связи" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Загрузить" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Загрузить сохранённый запрос:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "ЗагружатьСохранённыеЗапросы" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Загружено %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Загружен первоначальный\"%1\" сохранённый запрос" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Загруженные модули perl" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Загружен сохранённый запрос \"%1\"" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Региональные настройки" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Местонахождение" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "%1" #: NOT FOUND IN SOURCE msgid "Logged in as %1" msgstr "Вход выполнен под %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Завершил работу" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Войти в систему" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Выйти" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Несовпадение типа поиска" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Почта" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Основной тип связей" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Назначить ответственного" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Установить статус" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Установить конечный срок" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Установить дату решения" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Установить дату 'Начата'" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Установить дату 'Начнётся'" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Установить дату последнего контакта" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Установить приоритет" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Назначить очередь" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Установить тему" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Сделать эту группу видимой для пользователя" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Управление дополнительными полями и их значениями" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Управление группами и членами групп" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Управление свойствами и настройками, которые применяются ко всем очередям" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Управление очередями и их параметрами" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Управление сохранёнными графиками" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Управление пользователями и паролями" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Мар" #: NOT FOUND IN SOURCE msgid "March" msgstr "Март" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Отметить все сообщения как прочтённые" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Максимальная длина сообщения для отображения" #: lib/RT/Date.pm:95 msgid "May" msgstr "Май" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Участник" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Участник %1 добавлен" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Участник %1 удалён" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Пользователь добавлен в группу: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Пользователь удалён из группы" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Пользователь не удалён из группы" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Состоит в" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "СостоитВ" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Участники" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Участие в %1 добавлено" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Участие в %1 удалено" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Участие в группах" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Участие в группах данного пользователя %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Заявки успешно объединены" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Ошибка объединения. Невозможно установить идентификатор заявки." #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Ошибка объединения. Невозможно установить статус" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Объединить с заявкой" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Объединено в %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Сообщение" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Содержимое сообщения не показано, согласно предпочтениям отправителя" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Содержимое сообщения не показано, потому что это не текст" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Тело сообщения не показано потому, что оно или слишком большое или не является текстом." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Содержимое сообщения не показано, потому что оно слишком длинное" #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Высота поля с сообщением" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Ширина поля с сообщением" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Невозможно записать сообщение" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Сообщения пользователю" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Сообщение записано" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Сообщения об этой заявке не будет отправлены..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Минимальная длина пароля" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Минут" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Пропущен первичный ключ?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Мобильный" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "МобильныйТелефон" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Изменить список контроля доступа" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Изменение дополнительных полей, которые применяются к %1 для всех %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Изменить дополнительные поля, применяемые ко всем %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Изменить права группы" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Изменить участников" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Изменить права" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Изменить шаблоны скриплетов для данной очереди" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Изменить скриплеты для данной очереди" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Изменить права пользователя" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Изменить дополнительное поле для очереди %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Изменить скриплет для очереди %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Изменить скриплет, который действует для всех очередей" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Изменить ассоциированные объекты для %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Менять значения дополнительного поля" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Изменять информационные панели для данной группы" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Изменить даты заявки #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Изменить даты заявки #%1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Изменить общие дополнительные поля" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Изменить общие права группы" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Изменить общие права группы." #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Изменить общие права пользователя" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Изменить общие права пользователя." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Изменить метаданные группы или удалить ее" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Изменить права группы на дополнительное поле %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Изменить права группы на группу %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Изменить права группы на очередь %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Изменить список участников этой группы" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Изменить собственную учетную запись RT" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Изменить пользователей, относящихся к очереди %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Изменить пользователей, относящихся к заявке #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Изменять персональные информационные панели" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Изменить скриплеты для очереди %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Изменить скриплеты, которые действуют на все очереди" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Изменять системные информационные панели" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Изменить шаблон %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Изменить шаблоны, которые применяются ко всем очередям" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Изменить информационную панель %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Изменить вид по умолчанию страницы \"Обзор RT\"" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Изменить группу %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Изменить запросы информационной панели %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Изменить очередь наблюдателей" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Изменить подписки информационной панели %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Изменить пользователя %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Изменить заявку # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Изменить заявку # %1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Изменить заявки" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Изменить права пользователя на дополнительное поле %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Изменить права пользователей группы %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Изменить права пользователя на очередь %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "Изменить пользователей, получающих уведомления по почте к заявке #%1" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "ИзменятьПраваДоступа" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "ИзменятьДополнительноеПоле" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "ИзменятьИнформационнуюПанель" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "ИзменятьГрупповуюИнформационнуюПанель" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "ИзменятьПерсональнуюИнформационнуюПанель" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "ИзменятьСобственноеУчастиеВГруппах" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "ИзменятьНаблюдателейОчереди" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "ИзменятьСкриплеты" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "ИзменятьСебя" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "ИзменятьШаблон" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "ИзменятьЗаявку" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Пнд" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "Понедельник" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "С понедельника по пятницу" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Дополнительно" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Информация о %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Переместить вниз" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Переместить вверх" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Несколько значений" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Вы должны указать Имя" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Ваши заявки со статусом: %1" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Ваши сегодняшние заявки" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "Мои напоминания" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Ваши подтверждения" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Ваши информационные панели" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Мои напоминания" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Ваши сохранённые запросы" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Имя" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Имя уже используется" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Никогда" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Новых" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "Новая статья" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "Новая информационная панель" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Новые связи" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Новый пароль" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Новое ожидающее подтверждение" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Новый поиск" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Новые и открытые заявки %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Новое дополнительное поле" #: NOT FOUND IN SOURCE msgid "New dashboard" msgstr "Новая информационная панель" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Новая группа" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Новые сообщения" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Новый пароль" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Отправлено сообщение с новым паролем" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Новое напоминание:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Новые права" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Новый скриплет" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Новый шаблон" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Новая заявка" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Новая заявка не существует" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Добавить пользователя с именем" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Новые наблюдатели" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Вперёд" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Псевдоним" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Псевдоним" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Нет" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "%1 не загружен" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Класс не указан" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Нет дополнительного поля" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Дополнительное поле не указано" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Группа не указана" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Нет запроса" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Очередь не указана" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Пользователь RT не найден. Пожалуйста, обратитесь к вашему администратору RT.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Нет Темы" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Нет шаблона" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Нет действия" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Колонка не указана" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Нет комментариев о пользователе" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Нет информационных панелей." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Нет описания для %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Не указана группа" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Группы, удовлетворяющие условиям поиска, не найдены." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Нет ключа, подходящего для шифрования." #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Нет ключей для данного адреса" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Нет присоединенных сообщений" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Не требует шифрования" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Пароль не установлен" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Нет прав для создания очередей" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Нет прав для создания заявок в очереди '%1'" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Нет прав для просмотра этой заявки" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Нет доступа для сохранения поиска в общих настройках" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Нет прав для установки настроек" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Нет прав для просмотра изменений этой заявки" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Пользователь не указан" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Пользователи не выбраны." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Нет секретного ключа" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Очереди, удовлетворяющие условию поиска, не найдены." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Право не указано" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Права не найдены" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Права не выданы." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Нет запроса для поиска." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Нет темы" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Нет такого ключа или ключ не подходит для подписывания" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Заявки не найдены." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Тип транзакции не указан" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Нет пригодных к использованию ключей." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Пользователи, удовлетворяющие условию поиска, не найдены." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Никакое значение не отправлено _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Никто" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Не задано" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Несуществующее поле?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Не установлено" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Не найдено" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Вы не вошли в систему." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Не установлено" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Еще не реализовано." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Примечания" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Невозможно отправить уведомление" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Уведомлять АдминистративныеКопии" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Уведомлять АдминистративныеКопии как Комментарий" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Уведомлять Копии" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Уведомлять Копии как Комментарий" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Уведомлять других Получателей" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Уведомлять других Получателей как Комментарий" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Уведомлять Ответственного" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Уведомлять Ответственного как Комментарий" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Уведомлять Ответственного об отклонении заявки" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Оповестить владельца о подтверждении его заявки и возможности работы над ней" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Оповестить владельца о подтверждении его заявки некоторыми или всеми утверждающими" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Уведомлять Ответственных и АдминистративныеКопии о новых, ожидающих их подтверждениях" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Оповестить автора заявки о подтверждении её всеми утверждающими" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Оповестить автора заявки о подтверждении её некоторыми утверждающими" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Уведомлять АвторовЗаявки" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Уведомлять АвторовЗаявки и Копии" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Уведомлять АвторовЗаявки и Копии как Комментарий" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Уведомлять Авторов заявки, Копии и АдминистративныеКопии" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Уведомлять Авторов заявки, Копии и АдминистративныеКопии как Комментарии" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Уведомлять о непрочитанных сообщениях" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Ноя" #: NOT FOUND IN SOURCE msgid "November" msgstr "Ноябрь" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Количество строк результата поиска для отображения" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ИЛИ" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Невозможно создать объект" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Невозможно удалить объект" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Объект создан" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Объект удалён" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Тип объекта %1 не может содержать дополнительные поля" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Несовпадение типа объекта" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Список объектов пуст" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Окт" #: NOT FOUND IN SOURCE msgid "October" msgstr "Октябрь" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Автономно" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Автономное редактирование" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Автономная закачка" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "%1, %2 писал:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "При закрытии" #: etc/initialdata:143 msgid "On Comment" msgstr "На комментарий" #: etc/initialdata:115 msgid "On Correspond" msgstr "При Корреспонденции" #: etc/initialdata:104 msgid "On Create" msgstr "При Создании" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "При Изменении Ответственного" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "При Изменении Приоритета" #: etc/initialdata:172 msgid "On Queue Change" msgstr "При Изменении Очереди" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "При отклонении" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "При Переоткрытии" #: etc/initialdata:178 msgid "On Resolve" msgstr "При Решении" #: etc/initialdata:149 msgid "On Status Change" msgstr "При Изменении Статуса" #: etc/initialdata:109 msgid "On Transaction" msgstr "При Транзакции" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Однократная скрытая копия" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Однократная копия" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Показывать подтверждения только для запросов, созданных после %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Показывать подтверждения только для запросов созданных до %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Показывать дополнительные поля только для:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Открытые заявки" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Открыть ссылку" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Открыть" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Открытые заявки" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Открыть заявки при корреспонденции" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Параметры" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Сортировать по" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Организация" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Заявка-первоисточник: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Исходящая почта о комментарии записана" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Исходящая почта записана" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Со временем поднять приоритет до" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "Обзор" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Быть ответственным за заявки" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "БытьОтветственнымЗаЗаявку" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Ответственный" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Ответственный %1 не имеет достаточных прав для того, чтобы быть ответственным за эту заявку" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Ответственный изменен с %1 на %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Ответственный не может быть назначен" #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Ответственный принудительно изменен с %1 на %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "ИмяОтветственного" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Страница" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Страница 1 из 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Страница не найдена" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Пейджер" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "ТелефонПейджера" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Предки" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Пароль" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Подсказка к паролю" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Пароль изменен" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Пароль должен состоят не менее чем из %1 символов" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Пароль установлен" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Пароль: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Пароль: доступ запрещен" #: etc/initialdata:463 msgid "PasswordChange" msgstr "ИзменениеПароля" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Пароли не совпадают" #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Пароли не совпадают. Ваш пароль не был изменен" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Путь к sendmail'у" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Пользователи" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Выполнить действие, указанное пользователем" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Список директорий с perl модулями (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Конфигурация Perl" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Доступ запрещён" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Доступ запрещён" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Персональные информационные панели" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Пользовательские группы" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Пользовательские группы" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Пользовательские группы:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Номера телефонов" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Проверьте, пожалуйста, адрес и попробуйте еще раз." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the %2search builder interface%3." msgstr "Учтите, что здесь будут отображены заявки только со следующими статусами: %1. Для более гибкого поиска воспользуйтесь %2интерфейсом построения запросов%3." #: NOT FOUND IN SOURCE msgid "Please note that only tickets with one of these statuses( %1 ) are displayed here. For more powerful searches please visit the Config->Get('WebPath')%>/Search/Build.html\">search builder interface." msgstr "Учтите, что здесь будут отображены заявки только со следующими статусами: %1. Для более гибкого поиска воспользуйтесь Config->Get('WebPath')%>/Search/Build.html\">интерфейсом построения запросов." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Настройки" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Настройки %1 для пользователя %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Настройки %1 сохранены." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Настройки для пользователя %1 сохранены." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Настройки сохранены." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Предпочитаемый ключ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Предпочитаемый ключ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Подготовка не реализована" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Назад" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Предыдущая" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Пользователь %1 не найден." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Распечатать это сообщение" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Приоритет" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Приоритет начинается с" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Конфиденциальность" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Конфиденциальность:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Секретный ключ" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Состояние привилегий: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Привилегированные пользователи" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Псевдогруппы для внутреннего использования" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Публичный ключ '0x%1' необходим для проверки подписи" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Очереди" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Запрос" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Построитель запроса" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Запрос:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Очередь" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Очередь %1 не найдена" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Наименование очереди" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Очередь уже существует" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Невозможно создать очередь" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Невозможно загрузить очередь" #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Очередь создана" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Номер очереди" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Очередь не найдена" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Права очереди" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Ключ для очереди" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "АдминистративнаяКопияОчереди" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "ИмяОчереди" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "НаблюдательОчереди" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Очереди" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Очереди, которыми вы управляете" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Очереди, для которых вы являетесь АдминистративнойКопией" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Быстрый поиск" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Быстрое создание заявки" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 для %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Настройка RT" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Email администратора RT" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "Настройка RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "Ошибка RT" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "Ваш RT" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "Переменные RT" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "Обзор RT" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "Обзор RT для пользователя %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT может взаимодействовать с вашими пользователями по новым заявкам или новой корреспонденции по заявкам. Укажите нам где найти sendmail (или sendmail-совместимый бинарник, например используемый postfix'ом). RT также необходимо знать кого нужно извещать, когда кто-то отсылает неверную почту. Это не должен быть адрес для обратной связи с RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT может добавлять содержимое другого ресурса сети, когда отображает это дополнительное поле." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT может преобразовывать значения этого дополнительного поля в гиперссылки на другой сервис." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "Ошибка сохранения вашей сессии" #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT для %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT будет соединяться с базой данных под этим пользователем. Он будет создан для вас." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT создаст пользователя \"root\" и установит это в качестве его пароля" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "Всё остальное, что вы введёте, RT будет искать в темах заявок." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT заменит %1 и %2 идентификатором записи и значением дополнительного поля соответственно" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT заменит __id__ и __CustomField__ идентификатором записи и значением дополнительного поля соответственно" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT будет использовать эту строку для однозначной идентификации вашей инсталляции и будет искать её в теме писем для решения какой заявке это сообщение принадлежит. Мы рекомендуем, чтобы вы прописали здесь ваш интернет домен. Например: example.com" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT поддерживает различные СУБД: MySQL, PostgreSQL, Oracle и SQLite." #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Полное имя" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "ПолноеИмя" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Получатель" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Записать все изменения" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Ссылка на заявку заявки %1 добавлена" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Ссылка на заявку заявки %1 удалена" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Ссылка на %1 добавлена" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Ссылка на %1 удалена" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "На неё ссылаются" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "НаНеёСсылаются" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Ссылается на" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "СсылаетсяНа" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Обновлять" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "" #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "" #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "" #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "" #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "" #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "" #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "" #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "" #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "" #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "" #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "" #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "" #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Обновлять эту страницу каждые %1 минут." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: NOT FOUND IN SOURCE msgid "Reject tickets" msgstr "Отклоненные заявки" #: NOT FOUND IN SOURCE msgid "RejectTicket" msgstr "ОтклонитьЗаявку" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Напоминание '%1' добавлено" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Напоминание '%1' завершено" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Напоминание '%1' открыто заново" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Заявка напоминания #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Напоминания" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Напоминания для заявки #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Удалить административную копию" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Удалить закладку" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Удалить копию" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Удалить автора заявки" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Ответить" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Адрес для ответа" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Отвечать авторам заявки" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Отвечать на заявки" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "ОтвечатьНаЗаявку" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Отчёты" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Автор заявки" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "ГруппаАвтораЗаявки" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Авторы заявок" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Запросы должны быть обработаны за" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Необходимый параметр '%1' не указан" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Очистить" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Сбросить секретную метку аутентификации" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Сбросить на значения по умолчанию" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Домашний" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Решить" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Решить заявку #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Решено" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Решено ответственным" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Решено в промежутке времени" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Решено заявок за период, с группировкой по ответственному" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Решено заявок, с группировкой по ответственному" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Результаты" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Вернуть к заявке" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Повторите пароль" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Откатить" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Право делегировано" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Право выдано" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Право загружено" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Право не может быть отозвано" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Право не найдено" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Право не загружено" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Право отозвано" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Невозможно выдать права для %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Псевдо-группы" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Строк" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Строк для отображения" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Строк на странице" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite -- СУБД, не требующая сервера и каких-либо настроек. Авторы RT рекомендуют ее использование в целях тетсирования, демонстрации и разработки, но не рекомендуют использовать на высоконагружегнных боевых серверах." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Суб" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "Суббота" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Сохранить" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Сохранить изменения" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Сохранить настройки" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Сохранить как новый" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Сохранено %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Сохранённый запрос %1 не найден" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Сохраненные диаграммы" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Сохранённые запросы" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Скриплет #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Скриплет создан" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Поля скриплетов" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Скриплет удалён" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Скриплеты" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Скриплеты и получатели" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Скриплеты, которые действуют для всех очередей" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Поиск" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Параметры поиска" #: NOT FOUND IN SOURCE msgid "Search for Articles articles matching" msgstr "Найти статьи, содержащие" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Найти статьи, содержащие" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Поиск подтверждений" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Поиск заявок" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Поиск заявок. Введите номер идентификатора, имя очереди, имя ответственного, email-адрес автора заявки. Всё остальное, что вы введёте, RT будет искать в тексте и вложениях заявок." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Параметры поиска" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Сгруппировать результаты поиска по %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Интервал обновления страницы результатов поиска" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Полнотекстовый поиск по каждой заявке может занять длительное время, но если он необходим вам, вы можете искать любое слово по всей истории заявки, введя fulltext:слово." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Секретная метка аутентификации" #: bin/rt-crontool:350 msgid "Security:" msgstr "Безопасность:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Смотрите также:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Просматривать дополнительные поля" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Просматривать полностью исходящую почту и ее получателей" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Просматривать конфиденциальный комментарий заявки" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Просматривать сводную информацию заявки" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "ПросматриватьДополнительныеПоля" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "ПросматриватьИнформационнуюПанель" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "ПросматриватьГруппу" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "ПросматриватьГрупповуюИнформационнуюПанель" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "ПросматриватьПерсональнуюИнформационнуюПанель" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "ПросматриватьОчередь" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Выбрать" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Выберите тип базы данных" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Выберите дополнительное поле" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Выберите группу" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Выберите очередь" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Выберите очередь для вашей новой заявки" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Выберите пользователя" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Выберите другой язык" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Выберите дополнительные поля для всех очередей" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Выберите дополнительные поля всех пользовательских групп" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Выберите дополнительные поля всех пользователей" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Выберите дополнительные поля заявок во всех очередях" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Выберите дополнительные поля транзакций заявок во всех очередях" #: NOT FOUND IN SOURCE msgid "Select dashboard" msgstr "Выберите информационную панель" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Выберите группу" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Выбрать несколько значений" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Выбрать одно значение" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Выберите очереди, которые будут отображаться на странице \"Обзор RT\"" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Выберите скриплет" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Выберите шаблон" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Выберите до %1 значений" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Выбранные дополнительные поля" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Выбранный ключ либо не доверяемый, либо больше не существует." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Выбранные объекты" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Выбор изменён. Пожалуйста, сохраните ваши изменения" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Почта успешно отправлена" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Отправить сообщение всем наблюдателям" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Отправить сообщение всем наблюдателям как \"комментарий\"" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Отправить сообщение всем Авторам заявки и Копиям" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Отправить сообщение всем Авторам заявки и Копиям" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Отправляет сообщение авторам заявки" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Отправлять почту явно указанным Копиям и СкрытымКопиям" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Отправлять почту Копиям" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Отправлять почту Копиям как комментарий" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Отправлять почту АдминистративнымКопиям" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Отправлять почту АдминистративнымКопиям как комментарий" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Отправлять почту Ответственному" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Сен" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: NOT FOUND IN SOURCE msgid "September" msgstr "Сентябрь" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Настройки" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Показать" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Показать колонки" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Показать результаты" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Показать свойства заявок на %1-м уровне" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Показать подтвержденные запросы" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Отображать также" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Показать основное" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Показать отклонённые запросы" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Показать подробности" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Показать описания ссылок" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Показывать старые изменения первыми" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Показать ожидающие запросы" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Показать цитируемый текст" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Показать запросы, ждущие других подтверждений" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "ПоказыватьПраваДоступа" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "ПоказыватьЗакладкуКонфигурации" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "ПоказыватьИсходящуюПочту" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "ПоказыватьСохранённыеЗапросы" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "ПоказыватьСкриплеты" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "ПоказыватьШаблон" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "ПоказыватьЗаявку" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "ПоказыватьКомментарииЗаявки" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Зачистка" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Боковая панель" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Подписать" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Подписывать по умолчанию" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Добавлять себя как Автора заявки или Копию заявки/очереди" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Добавлять себя как АдминистративнуюКопию заявки или очереди" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Подпись" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Электронная подпись не используется" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Подписывание используется" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Простой поиск" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Одно значение" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Имя сайта" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Размер" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Пропустить меню" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Пропускаем октлюченного пользователя" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Маленький" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Некоторые обозреватели могут загружать содержимое только с такого же домена, как у сервера RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Сортировка" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Сортировка" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Укажите, когда" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Электронная таблица" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Стадия" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Начата" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Начнётся" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Состояние" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Статус" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Изменение статуса" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Статус изменен с %1 на %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Переназначать себе" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Переназначить заявки себе" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "ПереназначатьЗаявкуСебе" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Шаг %1 из %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Ответственный переназначен с %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Ответственный переназначен с %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Стиль" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Тема" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Метка темы" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Тема изменена на %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "Метка темы изменена на %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Отправить" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Подписаться" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Подписаться на содержимое информационной панели %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Подписываться на содержимое информационных панелей" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "ПодписыватьсяНаИнформационнуюПанель" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Подписан на содержимое информационной панели %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Подписка" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Невозможно создать подписку: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Данные успешно расшифрованы" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Данные успешно зашифрованы" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Вск" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "Воскресенье" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "Администратор" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Приостановлена" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Системная конфигурация" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Системные информационные панели" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Системные настройки" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Системная ошибка" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Системная ошибка: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Системные утилиты" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "Ошибка" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Системная ошибка. Право не делегировано." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Системная ошибка. Право не выдано." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Системные группы" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Системные права" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "Системная псевдо-группа для внутреннего использования" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Взять" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Назначать себя ответственным за заявки" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "НазначатьСебяОтветственнымЗаЗаявку" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Назначен ответственным" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Расскажите нам немного о" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Шаблон" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Шаблон #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Шаблон #%1 удалён" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Шаблон '%1' не найден" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Шаблон пустой" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Шаблон является обязательным аргументом" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Шаблон обработан" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Ошибка обработки шаблона" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Шаблоны" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Отображение текстовых файлов отключено в настройках." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Это уже текущее значение" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Это поле не может иметь такого значения" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Значение не изменилось" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Этот пользователь уже имеет это право." #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Этот пользователь уже %1 для этой очереди" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Этот пользователь уже %1 для этой заявки" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Этот пользователь не %1 для этой очереди" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Этот пользователь не %1 для этой заявки" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Эта очередь не существует" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Эта заявка имеет неразрешенные зависимости" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Пользователь уже ответственен за эту заявку" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Пользователь не существует" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Этот пользователь уже привилегированный" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Этот пользователь уже непривилегированный" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Этот пользователь теперь привилегированный" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Этот пользователь теперь непривилегированный" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Этот пользователь не может быть ответственным за заявки в этой очереди" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Это не числовой идентификатор" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Основное" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Копия заявки" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Пароль администратора БД" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Административная копия заявки" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Доменное имя вашего сервера базы данных (например 'db.example.com')" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Нижеследующая команда найдет все активные заявки в очереди 'Основная' и установит им приоритет 99, если в них не было активности более 4-х часов:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Ключ дезактивирован" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Ключ был отозван" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Ключ просрочен" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Данный ключ имеет полное доверие" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Данный ключ имеет абсолютное доверие" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Новое значение установлено" #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Ответственный за заявку" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Страница, которую вы запросили, не найдена." #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Автор заявки" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Системе не удалось подписать исходящую почту. Обычно, это означает, что слово-пароль неверно указано или, что GPG-агент не запущен. Пожалуйста, уведомите вашего системного администратора как можно скорее. Проблемные адреса:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Оформление" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Существует несколько ключей, подходящих для шифрования." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Есть новые непрочитанные сообщения в данной заявке." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Данный ключ имеет ограниченное доверие" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Нет подходящего для шифрования ключа." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Существует один подходящий ключ, но уровень доверия не установлен" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Эти комментарии не показываются обыкновенному пользователю" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Эти опции конфигурации позволяют задать некоторые базовые настройки, необходимые для успешного запуска RT. Нам необходимо знать имя вашей инсталляции RT и имя домена, где будет жить RT. Вам также необходимо будет установить пароль для вашего пользователя с административными правами по умолчанию." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Это дополнительное поле не относится к этому объекту" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Это возможность доступна только для системных администраторов." #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Это может означать, что каталог '%1' не доступен для записи или таблица базы данных отсутствует или повреждена." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Это сообщение будет отправлено..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Этот инструмент позволяет пользователю запускать некоторые модули Perl из RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Похоже, что эта транзакция не имеет содержимого" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "%1 заявок максимального приоритета этого пользователя" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Чтв" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "Четверг" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Заявка" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Заявка #%1 Изменение всех данных: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "График взаимосвязей заявки #%1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Заявка #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Заявка %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Заявка %1 создана в очереди '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Заявка %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Дополнительные поля заявки" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "История заявки # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Заявка решена" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Поиск заявок" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Транзакции заявки" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "Заявка" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Содержимое заявки" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Тип данных содержимого заявки" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Заявка не может быть создана из-за внутренней ошибки" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Невозможно загрузить заявку" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Отображение заявки" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Информация" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Статус заявки изменен" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "Модуль поиска TicketSQL" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Заявки" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Заявки %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Заявки %1 пользователя %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Заявки, созданные после" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Заявки, созданные до" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Заявки, решённые после" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Заявки, решённые до" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "От этого подтверждения зависят следующие заявки:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Расчётное время" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Осталось времени" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Время в работе" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Время генерации страницы" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "РасчётноеВремя" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "ОсталосьВремени" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "ВремяВработе" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Часовой пояс" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Заголовок" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "Для" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Для запроса поддержки, обучения, разработки на заказ или лицензирования обращайтесь %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Контакт" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Утилиты" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Всего" #: etc/initialdata:249 msgid "Transaction" msgstr "Транзакция" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Транзакция %1 удалена" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Транзакция создана" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Дополнительные поля транзакции" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Транзакция->Создать невозможно, так как вы не указали тип объекта и идентификатор" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "ДатаТранзакции" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Неизменяемые транзакции" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Доверие" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Втр" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "Вторник" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Тип" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Тип изменён с '%1' на '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Невозможно определить тип объекта или идентификатор" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Невозможно подписаться на содержимое информационной панели %1: Нет доступа" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Здесь вы можете отключить уведомления по почте для конкретных пользователей. Данная настройка работает только для текущей операции. Перманентное отключение настраивается на странице Пользователи." #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Не реализовано" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Логин UNIX" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Неизвестно (уровень доверия не установлен)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Неизвестно (данный уровень неизвестен системе)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Неизвестная кодировка %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Неизвестное поле: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Неограниченно" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Не ограничено" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Безымянный запрос" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Невыбранные дополнительные поля" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Невыбранные объекты" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Секретный ключ очищен" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Нет ответственного" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Изменить" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Изменить график" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Изменить заявку" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Изменить тип" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Изменить формат и искать" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Изменить несколько заявок" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Изменение не записано." #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Изменить заявку" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Изменение заявки #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Изменение заявки #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Изменение не было ни сообщением, ни комментарием." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "СтатусИзменения" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Изменена" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Сохранённый запрос \"%1\" изменён" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Загрузить" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Загрузить несколько файлов" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Загрузить несколько изображений" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Загрузить один файл" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Загрузить одно изображение" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Закачать до %1 файлов" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Закачать до %1 изображений" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Загрузить ваши изменения." #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Использование: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Использовать SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Использовать значение по умолчанию (%1)" #: NOT FOUND IN SOURCE msgid "Use fixed-width font to display plaintext messages" msgstr "Использовать моноширинный шрифт для отображения текстовых сообщений" #: NOT FOUND IN SOURCE msgid "Use monospace font" msgstr "Использовать моноширинный шрифт" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Другие административные утилиты RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Использовать системное значение по умолчанию (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Пользователь" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Пользователь '%1' не найден." #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Пользователь (создан - истекает срок)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Задано пользователем" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Заданные пользователем условия и действия" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Права пользователя" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Пользователь запросил изменение неизвестного типа для дополнительного поля %1 для объекта %2 #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Невозможно создать пользователя: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Пользователь создан" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Группы, определенные пользователем" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "У пользователя не указан адрес email" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Пользователь загружен" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "Ключи GnuPG пользователя" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Группы, заданные пользователем" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Имя пользователя" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Формат имени пользователя" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Пользователи" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Пользователи, удовлетворяющие критериям поиска" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Используется транзакция #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Проверить запрос" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Проверка корректности" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Значения" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Различные отчёты RT" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Просматривать информационные панели данной группы" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Просматривать персональные информационные панели" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Просматривать системные информационные панели" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "высота окна WYSIWYG редактора" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG компоновщик сообщения" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Внимание! Это НЕ подписано!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Внимание: вы не указали ваш адрес email, поэтому вы не будете получать содержимое данной информационной панели до тех пор, пока не укажете" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Наблюдать" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "НаблюдатьАдминистративнойКопией" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Наблюдатель" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "ГруппаНаблюдателя" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Наблюдатели" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Система установки нашла БД и подключилась как администратор БД. Вы можете нажать \"Изменить базовые настройки\" ниже для продолжения настройки RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Нам необходимо знать имя базы данных, которую будет использовать RT и её местонахождение. Также, нам необходимо знать имя пользователя RT и его пароль. RT может создать базу данных для вас, поэтому нам необходимо знать и имя пользователя с привилегиями администратора базы данных, а также его пароль. Во время этапа 6 инсталляции мы используем эту информацию для создания и инициализации базы данных RT." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Порт веб-сервера" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Срд" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "Среда" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Еженедельный дайджест" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Добро пожаловать в RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Сделано сегодня" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Что такое RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Когда RT не может обработать почтовое сообщение, куда оно должно быть переадресовано?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Когда RT отсылает почту, он устанавливает заголовки От: и Ответить: так, чтобы пользователи могли добавить к обсуждению простым нажатием Ответить в их почтовом клиенте. Он использует различные адреса для Ответов и Комментариев. Они могут быть изменены для каждой из ваших очередей. Эти адреса понадобятся при дальнейшем конфигурировании с целью использования программы rt-mailgate." #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Когда заявка создана" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "При создании заявки подтверждения уведомлять Ответственного и АдминистративнуюКопию заявки, ожидающей подтверждения" #: etc/initialdata:110 msgid "When anything happens" msgstr "Когда что-либо произойдет" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Когда вы нажимаете 'Check Database Connectivity'" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "При закрытии заявки" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Когда заявка отклонена" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Когда заявка открыта заново" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Каждый раз при решении заявки" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Каждый раз при изменении ответственного заявки" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Каждый раз при изменении приоритета заявки" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Каждый раз при изменении очереди очереди" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Каждый раз при изменении статуса заявки" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Каждый раз при срабатывании условия, заданного пользователем" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Каждый раз при добавлении комментария" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Каждый раз при приходе корреспонденции" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Где расположен исполняемый файл sendmail." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Крах" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Рабочий" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "РабочийТелефон" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "В работе" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Да" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Вы уже ответственный за эту заявку" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Вы собираетесь зашифровать исходящее почтовое сообщение, но есть некоторые проблемы с публичными ключами получателей. Вы должны исправить ситуацию с ключами, отключить отсылку сообщения к получателям по поводу проблемы с ключами или отключить шифрование." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Вы собираетесь зашифровать исходящее почтовое сообщение, но есть некоторые проблемы с публичным ключом получателя. Вы должны исправить ситуацию с ключем, отключить отсылку сообщения к этому получателю по поводу проблемы с ключем или отключить шифрование." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Вы неавторизованный пользователь" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Вы можете перейти к первому непрочитаному сообщению или перейти к первому непрочитаному сообщению и отметить все сообщения как прочитанные." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Вы также можете редактировать предварительно заданный запрос" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Вы можете назначать ответственного только для своих или ничьих заявок." #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Вы можете назначать себя ответственным только за заявки, которые никому не принадлежат" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "У вас нет прав Суперпользователя." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Найдено %1 заявок в очереди %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Вы вышли из RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "У вас нет права создавать заявки в этой очереди." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Вы также можете добавить ссылки на статьи с помощью \"a:###\", где ### - номер статьи." #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Вы не должны создавать запросы в этой очереди." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Вы должны ввести пароль администратора." #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Вы будете перенаправлены на страницу входа в систему. Вы сможете войти под именем %1 и паролем, который вы установили ранее." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Вы будете перенаправлены на страницу входа в систему. Вы сможете войти под именем root и паролем, который вы установили ранее." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Вы должны выбрать СУБД с которой вам или вашему администратору БД будет удобнее работать." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Вы видите этот экран так как сервер RT запущен без настроенной БД. Вероятнее всего это первый запуск RT. Если вы нажмёте Поехали! ниже, система установки RT проведёт Вас через все шаги, необходимые для настройки сервера и БД RT." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Вы видите этот экран так как сервер RT запущен без настроенной БД. Вероятнее всего это первый запуск RT. Если вы нажмёте \"%1\" ниже, система установки RT проведёт Вас через все шаги, необходимые для настройки сервера и БД RT." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Заходите ещё" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Имя пользователя или пароль неверные" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Индекс" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[не задано]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "После"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "разрешить создание сохранённых запросов"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "разрешить загрузку сохранённых запросов"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "с правами %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "столбчатая"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "До"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "снизу вверх"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "выберите для добавления"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "нажмите для выделения/снятия выделения всех объектов сразу"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "закрыто"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "ежедневно"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "ежедневно в %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "дней"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "удалена"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "не совпадает"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "выгрузить"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "равняется"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "ошибка: невозможно переместить вниз"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "ошибка: невозможно переместить влево"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "ошибка: невозможно переместить вверх"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "ошибка: нет данных для удаления"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "ошибка: нет данных для перемещения"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "ошибка: нет данных для переключения"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "каждые"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "плагин успешно выполнен"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "полное"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "больше чем"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "группа '%1'"

#: NOT FOUND IN SOURCE
msgid "hide quoted text"
msgstr "скрыть цитируемый текст"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "часов"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal (персональный календарь)"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "идентификатор"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "является"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "не является"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "ключ не используется"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "ключ просрочен"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "ключ отозван"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "слева направо"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "меньше чем"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "ограниченное"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "совпадает"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "максимальная глубина"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "мин"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "минут"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "ежемесячно"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "ежемесячно (по дням: %1) в %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "месяцев"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "никогда"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "новая"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "нет"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "нет имени"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "нет"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "не равно"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "ничего"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "объекты были успешно удалены"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "На"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "открыта"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "открыть/закрыть"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "другое..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "пользовательская группа '%1' для пользователя '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "круговая"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "плагин вернул пустой список"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "очередь %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "отклонена"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "решена"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "справа налево"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "сек"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "см. список объектов ниже"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "показывать закладку Конфигурация"

#: NOT FOUND IN SOURCE
msgid "show quoted text"
msgstr "показать цитируемый текст"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "приостановлена"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "строки сводной информации"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "система %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "системная группа '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "вызывающий компонент не указал причину"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "адреса по умолчанию, которые будут показаны в заголовках От: и Ответить: письма с комментарием."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "адреса по умолчанию, которые будут показаны в заголовках От: и Ответить: письма с корреспонденцией"

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "заявка #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "сверху вниз"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "абсолютное"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "группа без описания: %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "пользователь %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "подробно"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "еженедельно"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "еженедельно (по %1) в %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "недель"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "на каком порту ваш веб-сервер будет работать, напр. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "с заголовками"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "лет"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "да"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/id.po0000664000175000017500000106161612262650742013741 0ustar  chmrrchmrr# Copyright (c) 2002 Jesse Vincent 
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:13+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: rt-devel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=US-ASCII\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (tidak ada kunci publik!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (tak terpercaya!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$Awalan %1"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr ""

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr ""

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 sudah ditambah"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 yang lalu"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 diganti menjadi %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 sudah dihapus"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr ""

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr ""

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr ""

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 gunakan template %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) oleh %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Belum diubah)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr ""

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Sesuaikan opsi konfig LogToScreen"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Argumen untuk diumpankan ke %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Status Output diperbarui ke STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Pilih apakah anda ingin menggunakan transaksi 'pertama', 'terakhir' atau 'semua'"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr ""

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - menetapkan modul aksi yang ingin digunakan oleh anda"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr ""

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - menetapkan moduk kondisi yang ingin digunakan oleh anda"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - menetapkan modul pencarian yang ingin digunakan oleh anda"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Hak Cipta 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 ScripAction telah dimuat"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 ditambahkan sebagai nilai untuk %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 telah ada dan memiliki tabel RT di tempatnya, namun tidak berisi metadata RT. Langkah 'Inisialisasi Basis data' yang dilakukan selanjutnya dapat menyisipkan metadata kedalam basis data ini. Jika anda setuju dengan hal ini, klik tombol 'Customize Basics' dibawah untuk melanjutkan mengkustomisasi RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 telah ada dan memiliki tabel RT di tempatnya, namun tidak berisi metadata RT. Langkah 'Inisialisasi Basis data' yang dilakukan selanjutnya dapat menyisipkan metadata kedalam basis data ini. Jika anda setuju dengan hal ini, klik tombol 'Customize Basics' dibawah untuk melanjutkan mengkustomisasi RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 merupakan objek lokal, namun tidak dapat ditemukan dalam basis data"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 oleh %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 sudah diganti dari %2 ke %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 ditiru"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 tidak bisa diatur ke %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 tidak dapat mengatur status untuk diselesaikan. Database RT's mungkin tidak konsisten."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 sudah dibuat"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 sudah dihapus"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 dinonaktifkan"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 tidak tersedia"

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 diaktifkan"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 Tiket dengan prioritas paling tinggi yang saya miliki"

#: NOT FOUND IN SOURCE
msgid "%1 highest priority tickets I requested..."
msgstr "%1 Tiket dengan prioritas paling tinggi yang saya minta..."

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 adalah sebuah alat yang berfungsi pada tiket dari alat penjadwalan eksternal, seperti Cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 tidak lagi menjadi %2 untuk antrian ini."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr ""

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 tidak lagi menjadi nilai untuk kolom kustom %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 menit"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 tiket terbaru yang belum dimiliki"

#: NOT FOUND IN SOURCE
msgid "%1 newest unowned tickets..."
msgstr "%1 tiket terbaru yang belum dimiliki..."

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objek"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "hak-hak %1"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 diperbarui: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 diperbarui: Tak ada yang berubah"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 telah diperbarui"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 akan memecahkan semua anggota dari grup tiket yang dipecahkan."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1's %2 objek"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1's %2's %3 objek"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1's pencarian disimpan"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: tidak ada lampiran yang ditentukan"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr ""

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr ""

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr ""

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' adalah nilai yang tidak valid untuk status"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "Contreng untuk menghapus"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Klik kotak ini untuk menon-aktifkan pemberitahuan kepada penerima yang sudah terdaftar)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Klik kotak ini untuk mengaktifkan pemberitahuan kepada penerima yang sudah terdaftar)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Masukkan ID Tiket atau URL, dipisahkan dengan spasi)"

#: NOT FOUND IN SOURCE
msgid "(If left blank, will default to %1"
msgstr "(Jika ditinggalkan kosong, default akan diatur menjadi %1"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Jika ditinggalkan kosong, default akan menjadi %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Tidak ada kolom kustom)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Tidak ada anggota)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Tidak ada scrip)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Tidak ada template)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Tidak satu pun)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Kirim salinan tembusan untuk memperbaharui daftar alamat email yang dibatasi dengan koma. Tidak akan mengubah siapakah yang akan menerima pembaharuan di masa datang.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Kirim salinan tembusan untuk memperbaharui daftar alamat administrasi email. Orang-orang ini akan menerima pembaharuan di masa datang.)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Kirim salinan tembusan untuk memperbaharui daftar alamat email. Tidak akan mengubah siapakah yang akan menerima pembaharuan di masa datang.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Kirim salinan tembusan untuk memperbaharui daftar alamat email. Orang-orang ini akan menerima pembaharuan di masa datang.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "Gunakan kolom ini ketika anda memilih 'Definisikan Pengguna' untuk sebuah kondisi atau aksi"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr ""

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(kosong)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(tidak ada nama yang terdaftar)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr ""

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(Tidak ada nilai)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(Tidak ada nilai-nilai)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(hanya satu Tiket)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(izin ditunda)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(Koleksi yang lain ditunda)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(diperlukan)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(tidak ada judul)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr ""

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Tiket->Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "<%$_%>"
msgstr "<%$_%>"

#: NOT FOUND IN SOURCE
msgid "<%$field%>"
msgstr "<%$kolom%>"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: etc/initialdata:215
msgid "A blank template"
msgstr "Template kosong"

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr ""

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr "ACE tidak ditemukan"

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr "ACE hanya dapat dibuat dan dihapus."

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "DAN"

#: NOT FOUND IN SOURCE
msgid "Aborting to avoid unintended ticket modifications.\\n"
msgstr "Dibatalkan untuk menghindari modifikasi tiket yang tidak diharapkan.\\n"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "Tentang Aku"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "Kontrol Akses"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "Aksi"

#: NOT FOUND IN SOURCE
msgid "Action %1 not found"
msgstr "Aksi %1 tidak ditemukan"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr ""

#: bin/rt-crontool:228
msgid "Action committed."
msgstr "Aksi dijalankan."

#: NOT FOUND IN SOURCE
msgid "Action committed.\\n"
msgstr "Aksi dijalankan."

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr ""

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr "Aksi disiapkan..."

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr ""

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Add"
msgstr "Tambah"

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr ""

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "Tambah AdminCc"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr ""

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "Tambah Cc"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr "Tambah Kolom"

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr "Tambah Kriteria"

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "Tambah File Lagi"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "Tambah Pemohon"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr "Tambah Nilai"

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr "Tambah scrip yang akan digunakan di semua antrian"

#: NOT FOUND IN SOURCE
msgid "Add additional criteria"
msgstr "Tambahkan kriteria tambahan"

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "Tambah Komentar atau balas ke tiket yang sudah dipilih"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr ""

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr "Tambah Anggota"

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "Tambah Pengamat Baru"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr ""

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr ""

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr ""

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr ""

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Add, delete and modify custom field values for objects"
msgstr "Tambah, hapus dan ubah nilai kolom kustom untuk objek"

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr ""

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Added principal as a %1 for this queue"
msgstr "Tambahkan prinsipal sebagai %1 untuk antrian ini"

#: NOT FOUND IN SOURCE
msgid "Added principal as a %1 for this ticket"
msgstr "Tambahkan prinsipal sebagai %1 untuk Tiket ini"

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr ""

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "Alamat1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "Alamat2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr "Admin Cc"

#: etc/initialdata:292
msgid "Admin Comment"
msgstr "Komentar Admin"

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr "Korespondensi Admin"

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr "Antrian Admin"

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr "Konfigurasi Admin/Global"

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr ""

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr "AdminCc"

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr ""

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr "Kolom Kustom Admin"

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr "Grup Admin"

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr "Keanggotaan Grup Admin"

#: NOT FOUND IN SOURCE
msgid "AdminOwnPersonalGroups"
msgstr "Milik Grup Pribadi Admin"

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr "Antrian Admin"

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr ""

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr "Pengguna Admin"

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr "Cc Administrasi"

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr ""

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "Lanjutan"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr ""

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr ""

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr "Kumpulan"

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr "Semua Izin terlewati"

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr ""

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr ""

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr "Semua Antrian"

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr ""

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr ""

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr ""

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr ""

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr ""

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr ""

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr ""

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr ""

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "Dan/Atau"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr ""

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "Digunakan untuk"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "Digunakan"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr ""

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "Digunakan untuk perubahan anda"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "Izin"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr "Izin #%1: %2"

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr "Izin #%1: Catatan yang tidak dicatat karena kesalahan sistem"

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr "Izin #%1: Catatan yang dicatat"

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr "Izin dilewati"

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr ""

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr "Izin ditolak"

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr "Disetujui"

#: NOT FOUND IN SOURCE
msgid "Approver's notes: %1"
msgstr "Catatan Pemberi Persetujuan: %1"

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Apr."
msgstr "Apr."

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr ""

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr ""

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr ""

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr ""

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr ""

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr ""

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr ""

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr ""

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr ""

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr ""

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "Naik"

#: NOT FOUND IN SOURCE
msgid "Assign and remove custom fields"
msgstr "Menentukan dan memindahkan kolom kustom"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr ""

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr "Menentukan Kolom Kustom"

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "Melampirkan"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr "Melampirkan file"

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "File dilampirkan"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr "Lampiran '%1' tidak dapat dipanggil"

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "Lampiran dibuat"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "Nama File Lampiran"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "Lampiran-lampiran"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr ""

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr "Attribut sudah dihapus"

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Aug."
msgstr "Agst."

#: NOT FOUND IN SOURCE
msgid "AuthSystem"
msgstr "Sistem Otorisasi"

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr ""

#: etc/initialdata:218
msgid "Autoreply"
msgstr "Balas Otomatis"

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr "Balas Otomatis ke Pemohon"

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Available Columns"
msgstr "Kolom Tersedia"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Bad data in %1"
msgstr "Data buruk di dalam %1"

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr ""

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "Dasar-dasar"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr "Bcc"

#: NOT FOUND IN SOURCE
msgid "Be sure to save your changes"
msgstr "Pastikanlah untuk menyimpan setiap perubahan anda"

#: NOT FOUND IN SOURCE
msgid "Best Practical Solutions, LLC corporate logo"
msgstr "Pemecahan Praktis yang terbaik, Logo bisnis LLC"

#: NOT FOUND IN SOURCE
msgid "Binary"
msgstr "Binary"

#: etc/initialdata:214
msgid "Blank"
msgstr "Kosong"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr ""

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "Diberi huruf tebal"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Bookmarkable link"
msgstr "Menyimpan penunjuk link"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr ""

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr ""

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Brief headers"
msgstr "Catatan Atas Singkat"

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr ""

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr ""

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Bulk ticket update"
msgstr "Memperbaharui tiket dengan jumlah banyak pada waktu yang sama"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr ""

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr ""

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr ""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr "Tidak dapat mengubah sistem pengguna"

#: NOT FOUND IN SOURCE
msgid "Can this principal see this queue"
msgstr "Dapatkah prinsipal melihat antrian ini"

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr "Tidak dapat menambah nilai kolom kustom tanpa nama"

#: NOT FOUND IN SOURCE
msgid "Can't find a collection class for '%1'"
msgstr "Tidak dapat menemukan kelas koleksi untuk '%'"

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr "Tidak dapat menemukan pencarian yang disimpan untuk bekerja dengan"

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr "Tidak dapat menghubungkan tiket tersebut dengan dirinya sendiri"

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Can't merge into a merged ticket. You should never get this error"
msgstr "Tidak dapat digabungkan ke dalam tiket gabungan. Anda seharusnya tidak pernah mendapatkan kesalahan ini."

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "Tidak dapat menyimpan pencarian ini"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr "Tidak dapat menentukan baik dasar dan sasaran"

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr ""

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Cannot create user: %1"
msgstr "Tidak dapat membuat pengguna: %1"

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr ""

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "Cc"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr ""

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr ""

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr ""

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "Ubah Sandi"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr ""

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr ""

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "Periksa Semua"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr ""

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr ""

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr "Klik kotak ini untuk hapus"

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr "Klik kotak ini untuk menghilangkan hak-hak"

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "Anak"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "Kota"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr ""

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr ""

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr ""

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr ""

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr ""

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr ""

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "Hapus Semua"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr ""

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr ""

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "Ditutup"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr "Tiket sudah ditutup"

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr ""

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr ""

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr ""

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "Komentar"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr "Alamat Komentar"

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr ""

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr "Komentar pada Tiket"

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr "Komentar Pada Tiket"

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "Komentar"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "Komentar (Tidak dikirim ke pemohon)"

#: NOT FOUND IN SOURCE
msgid "Comments (not sent to requestors)"
msgstr "Komentar (tidak dikirim ke pemohon)"

#: NOT FOUND IN SOURCE
msgid "Comments about %1"
msgstr "Komentar mengenai %1"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr "Komentar tentang pengguna ini"

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "Komentar sudah ditambahkan"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr "Potongan Tiket Dijalankan"

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "Kondisi"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr ""

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr ""

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr "Kondisi sesuai dengan ..."

#: NOT FOUND IN SOURCE
msgid "Condition not found"
msgstr "Kondisi tidak ditemukan"

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr ""

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr ""

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "Konfigurasi"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Confirm"
msgstr "Konfirmasi"

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "ContactInfoSystem"
msgstr "Hubungi Sistem Info"

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "Isi"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr ""

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr ""

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr "Tipe - Isi"

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Copy"
msgstr "Tiru"

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr ""

#: etc/initialdata:283
msgid "Correspondence"
msgstr "Korespondensi"

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr "Korespondensi sudah ditambah"

#: NOT FOUND IN SOURCE
msgid "Could not add new custom field value for ticket. "
msgstr "Tidak dapat menambah nilai kolom kustom baru untuk tiket. "

#: NOT FOUND IN SOURCE
msgid "Could not add new custom field value. "
msgstr "Tidak dapat menambah nilai kolom kustom baru "

#: NOT FOUND IN SOURCE
msgid "Could not add new custom field value. %1 "
msgstr "Tidak dapat menambah nilai kolom kustom baru "

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not change owner. "
msgstr "Tidak dapat mengubah pemilik tiket. "

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not create CustomField"
msgstr "Tidak dapat membuat Kolom Kustom"

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr "Tidak dapat membuat Kolom Kustom:%1"

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr "Tidak dapat membuat grup"

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr ""

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr "Tidak dapat membuat template: %1"

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr "Tidak dapat membuat tiket. Antrian tidak dapat diatur"

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr "Tidak dapat membuat pengguna"

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr ""

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr "Tidak dapat menemukan atau membuat pengguna tersebut"

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr "Tidak dapat menemukan prinsipal tersebut"

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr "Tidak dapat memanggil KolomKustom %1"

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr "Tidak dapat memanggil grup"

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr "Tidak dapat memanggil objek untuk %1"

#: NOT FOUND IN SOURCE
msgid "Could not load search attribute"
msgstr "Tidak dapat memanggil attribut pencarian"

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not make that principal a %1 for this queue"
msgstr "Tidak dapat membuat prinsipal tersebut %1 untuk antrian ini"

#: NOT FOUND IN SOURCE
msgid "Could not make that principal a %1 for this ticket"
msgstr "Tidak dapat membuat prinsipal tersebut %1 untuk Tiket ini"

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Could not remove that principal as a %1 for this queue"
msgstr "Tidak dapat menghapus prinsipal tersebut sebagai  %1 untuk antrian ini"

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr "Tidak dapat mengatur informasi pengguna"

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr ""

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr "Tidak dapat menambah anggota ke grup"

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr ""

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr "Tidak dapat membuat transaksi: %1"

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr ""

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr "Tidak dapat menemukan baris"

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr ""

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr "Tidak dapat menemukan prinsipal tersebut"

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr "Tidak dapat menemukan nilai tersebut"

#: NOT FOUND IN SOURCE
msgid "Couldn't load %1 from the users database.\\n"
msgstr "Tidak dapat memanggil %1 dari database pengguna.\\n"

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr "Tidak dapat memanggil Kelas %1"

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr "Tidak dapat memanggil Kolom Kustom %1"

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr ""

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr ""

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr "Tidak dapat memanggil grup %1"

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr "Tidak dapat memanggil link"

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr "Tidak dapat memanggil objek %1"

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr ""

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr "Tidak dapat memanggil antrian"

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr "Tidak dapat memanggil antrian %1"

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr ""

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr ""

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Couldn't load that user (%1)"
msgstr "Tidak dapat memanggil pengguna tersebut (%1)"

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr "Tidak dapat memanggil Tiket '%1'"

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr ""

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr ""

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr ""

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr ""

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr ""

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr ""

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr ""

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr ""

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr ""

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr ""

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr ""

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr ""

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "Negara"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "Dibuat"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "Buat Tiket"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr "Buat Kolom Kustom"

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr "Buat Kolom Kustom untuk antrian %1"

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr ""

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr ""

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "Buat grup baru"

#: NOT FOUND IN SOURCE
msgid "Create a new personal group"
msgstr "Buat grup pribadi baru"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr ""

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "Buat tiket baru"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "Buat pengguna baru"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr "Buat antrian"

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr "Buat scrip untuk antrian %1"

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr "Buat template"

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr "Buat Tiket"

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr ""

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr ""

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr ""

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr "Buat Tiket baru berdasarkan pada template scrip ini"

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr ""

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr "Buat Tiket"

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create tickets in this queue"
msgstr "Buat tiket untuk antrian ini"

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify custom fields"
msgstr "Buat, hapus dan ubah kolom kustom"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify queues"
msgstr "Buat, hapus dan ubah antrian"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify the members of personal groups"
msgstr "Buat, hapus dan ubah anggota dari grup pribadi"

#: NOT FOUND IN SOURCE
msgid "Create, delete and modify users"
msgstr "Buat, hapus dan ubah pengguna"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr ""

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr ""

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr ""

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr ""

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr ""

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr ""

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr "Buat Pencarian yang Disimpan"

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr "Buat Tiket"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "sudah Dibuat"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr "Kolom Kustom sudah dibuat %1"

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr ""

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr "Pencipta"

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr ""

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "Link yang sekarang"

#: NOT FOUND IN SOURCE
msgid "Current Relationships"
msgstr "Hubungan Sekarang"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr "Scrips Sekarang"

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr ""

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr "Anggota Sekarang"

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr "Hak-hak Sekarang"

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Current search criteria"
msgstr "Kriteria pencarian sekarang"

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr "Pengamat sekarang"

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr "Kolom Kustom"

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr "Kolom Kustom untuk %1"

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr ""

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr "Aksi kustom membersihkan kode"

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr "Aksi kustom menyiapkan kode"

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr "Kondisi kustom"

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr ""

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr "Kolom kustom %1 %2 %3"

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr "Kolom kustom %1 tidak dapat digunakan untuk objek ini"

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr "Kolom kustom %1 memiliki nilai."

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr "Kolom kustom %1 tidak memiliki nilai."

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr "Kolom kustom %1 tidak ditemukan"

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr ""

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Custom field not found"
msgstr "Kolom kustom tidak ditemukan"

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr "Nilai kolom kustom %1 tidak dapat ditemukan untuk kolom kustom %2"

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr "Nilai kolom kustom tidak dapat dihapus"

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr "Nilai kolom kustom tidak dapat ditemukan"

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr "Nilai kolom kustom sudah dihapus"

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr "Kolom kustom"

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr ""

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr ""

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr ""

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr ""

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr ""

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr ""

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr ""

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr ""

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr ""

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr ""

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr ""

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr ""

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr ""

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr ""

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr ""

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr ""

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr ""

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "Tanggal"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Dec."
msgstr "Des."

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr ""

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr "Default template Balas Otomatis"

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr "Default Antrian"

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr "Default Pemohon"

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr "Default template komentar admin"

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr "Default template korespondensi admin"

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr "Default template korespondensi"

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr ""

#: etc/initialdata:250
msgid "Default transaction template"
msgstr "Default template transaksi"

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr ""

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr "Default: %1/%2 diganti dari %3 ke %4"

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Delegate rights"
msgstr "Hak-hak Utusan"

#: NOT FOUND IN SOURCE
msgid "Delegate specific rights which have been granted to you."
msgstr "Hak-hak spesifik utusan yang sudah diberikan kepada anda."

#: NOT FOUND IN SOURCE
msgid "DelegateRights"
msgstr "Hak-hak Utusan"

#: NOT FOUND IN SOURCE
msgid "Delegation"
msgstr "Delegasi"

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "Hapus"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr "Hapus Template"

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr "Hapus artikel #%1"

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr ""

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr "Gagal dihapus: %1"

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr ""

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr "Hapus scrip yang sudah dipilih"

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr "Hapus tiket"

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr ""

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr ""

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr ""

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr "Hapus tiket"

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr ""

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Deleted search"
msgstr "Pencarian dihapus"

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Deleting this object could break referential integrity"
msgstr "Menghapuskan objek ini dapat memutuskan integrasi referensial"

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr "Menghapuskan objek ini dapat memutuskan integrasi referensial"

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr "Menghapuskan objek ini dapat melanggar integrasi referensial"

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr "Ditolak"

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "Bergantung oleh"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr ""

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr "Ketergantungan oleh %1 sudah ditambah"

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr "Ketergantungan oleh %1 sudah dihapus"

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr "Ketergantungan oleh %1 sudah dihapus"

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr "Ketergantungan oleh %1 sudah dihapus"

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "Bergantung pada"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr ""

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr ""

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "Turun"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr "Gambarkan persoalan dibawah ini"

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "Deskripsi"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr ""

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr ""

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr "Tampilkan"

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr "Tampilkan Daftar Kontrol Akses"

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr ""

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr "Tampilkan Kolom"

#: NOT FOUND IN SOURCE
msgid "Display Scrip templates for this queue"
msgstr "Tampilkan template Scrip untuk antrian ini"

#: NOT FOUND IN SOURCE
msgid "Display Scrips for this queue"
msgstr "Tampilkan Scrip untuk antrian ini"

#: NOT FOUND IN SOURCE
msgid "Display mode"
msgstr "Tampilkan mode"

#: NOT FOUND IN SOURCE
msgid "Display saved searches for this group"
msgstr "Tampilkan pencarian yang disimpan untuk grup ini"

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Distributed under version 2  of the GNU GPL."
msgstr "Didistribusikan dibawah versi 2 dari  GNU GPL."

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr "Lakukan apa saja dan semuanya"

#: NOT FOUND IN SOURCE
msgid "Do the Search"
msgstr "Lakukan Pencarian"

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr ""

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr ""

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr ""

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr ""

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr "Jangan refresh halaman ini."

#: NOT FOUND IN SOURCE
msgid "Don't show search results"
msgstr "Jangan tampilkan hasil pencarian"

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "Download"

#: NOT FOUND IN SOURCE
msgid "Download as a tab-delimited file"
msgstr "Download sebagai file yang dibatasi dengan tab"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr ""

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "Batas Waktu"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "ERROR: Couldn't load ticket '%1': %2.\\n"
msgstr "KESALAHAN: Tidak dapat memanggil Tiket '%1': %2.\\n"

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr ""

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr ""

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr "Ubah"

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr "Ubah Kolom Kustom untuk %1"

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr "Ubah Kolom Kustom untuk semua grup"

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr "Ubah Kolom Kustom untuk semua pengguna"

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr ""

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr "Ubah Kolom Kustom untuk tiket di dalam semua antrian"

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr "Ubah Link"

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr "Ubah Query"

#: NOT FOUND IN SOURCE
msgid "Edit Relationships"
msgstr "Ubah Hubungan"

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Edit Templates for queue %1"
msgstr "Ubah Templates untuk antrian %1"

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Edit saved searches for this group"
msgstr "Ubah pencarian yang disimpan untuk grup ini"

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr "Ubah template sistem"

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr ""

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr "Ubah Pencarian yang Disimpan"

#: NOT FOUND IN SOURCE
msgid "Editing Configuration for queue %1"
msgstr "Mengubah Konfigurasi untuk antrian %1"

#: NOT FOUND IN SOURCE
msgid "Editing Configuration for user %1"
msgstr "Mengubah Konfigurasi untuk pengguna %1"

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr "Mengubah Kolom Kustom %1"

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr "Mengubah keanggotaan untuk grup ini %1"

#: NOT FOUND IN SOURCE
msgid "Editing membership for personal group %1"
msgstr "Mengubah keanggotaan untuk grup pribadi %1"

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr "Baik dasar ataupun sasaran harus ditentukan"

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "Email"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr ""

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr ""

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr "Alamat Email yang digunakan"

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr ""

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr "Alamat Email"

#: NOT FOUND IN SOURCE
msgid "EmailEncoding"
msgstr "Set Karakter Email"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr "Mengaktifkan (Klik kotak ini untuk menon-aktifkan kolom kustom)"

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr "Mengaktifkan (Klik kotak ini untuk menon-aktifkan grup ini)"

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr "Mengaktifkan (Klik kotak ini untuk menon-aktifkan antrian ini)"

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr ""

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr "Mengaktifkan Antrian"

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr "Mengaktifkan status %1"

#: NOT FOUND IN SOURCE
msgid "Enabled status: %1"
msgstr "Mengaktifkan status: %1"

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr ""

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr ""

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr ""

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr "Masukkan beberapa nilai"

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr "Masukan objek atau URI untuk menghubungkan object tersebut. Pisahkan beberapa input tersebut dengan spasi."

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr ""

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr ""

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr "Masukkan satu nilai"

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr ""

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr "Masukkan antrian atau URIs untuk menghubungkan antrian tersebut. Pisahkan beberapa input dengan spasi."

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr "Masukkan tiket atau URIs untuk menghubungkan Tiket tersebut. Pisahkan beberapa input dengan spasi."

#: NOT FOUND IN SOURCE
msgid "Enter tickets or URIs to link tickets to. Seperate multiple entries with spaces."
msgstr "Masukkan tiket atau URIs  untuk menghubungkan Tiket tersebut. Pisahkan beberapa input dengan spasi."

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr ""

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr "Masukkan sampai %1 nilai"

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr "Kesalahan"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Queue->AddWatcher"
msgstr "Kesalahan di dalam parameter ke Antrian->Tambah Pengamat"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Queue->DelWatcher"
msgstr "Kesalahan di dalam parameter Ke Antrian->Hapus Pengamat"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Queue->DeleteWatcher"
msgstr "Kesalahan di dalam parameter ke Antrian->Hapus Pengamat"

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr "Kesalahan di dalam parameter ke Tiket->Tambah Pengamat"

#: NOT FOUND IN SOURCE
msgid "Error in parameters to Ticket->DelWatcher"
msgstr "Kesalahan di dalam parameter ke Tiket->Hapus Pengamat"

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr "Kesalahan di dalam parameter ke Ticket->Hapus Pengamat"

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr ""

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr "Meningkatkan Prioritas Tiket"

#: NOT FOUND IN SOURCE
msgid "Estimate"
msgstr "Perkiraan"

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr "Diperkirakan"

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr "Setiap Orang"

#: bin/rt-crontool:356
msgid "Example:"
msgstr "Contoh:"

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "ExternalAuthId"
msgstr "AuthID Eksternal"

#: NOT FOUND IN SOURCE
msgid "ExternalContactInfoId"
msgstr "Kontak Info ID Eksternal"

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr "Info Tambahan"

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr ""

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Failed to create search attribute"
msgstr "Gagal untuk membuat atribut pencarian"

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr "Gagal untuk menemukan pengguna pseudogroup yang memiliki 'Hak-hak Istimewa'."

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr "Gagal untuk menemukan pengguna pseudogroup yang tidak memiliki  'Hak-Hak Istimewa.'"

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr ""

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr ""

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr "Gagal untuk memanggil modul %1. (%2)"

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr "Gagal memanggil objek untuk %1"

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Feb."
msgstr "Feb."

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr "Nama File"

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr "Isilah di dalam beberapa area teks"

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr "Isilah di dalam beberapa area wikiteks"

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr "Isilah di dalam satu area teks"

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr "Isilah di dalam satu area wikiteks"

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr ""

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr "Isilah sampai %1 area teks"

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr "Isilah sampai %1 area wikiteks"

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr "Prioritas Akhir"

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr "Prioritas Akhir"

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr "Cari grup yang"

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr "Cari orang yang"

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr "Cari tiket"

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr ""

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr ""

#: share/html/Elements/Tabs:651
msgid "First"
msgstr "Pertama"

#: NOT FOUND IN SOURCE
msgid "Foo Bar Baz"
msgstr "Foo Bar Baz"

#: NOT FOUND IN SOURCE
msgid "Foo!"
msgstr "Foo!"

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr "Diubah dengan paksa"

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr "Format"

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr ""

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr ""

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr ""

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr ""

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr ""

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr ""

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr "Ditemukan % quant(%1,tiket)"

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr "Objek ditemukan"

#: NOT FOUND IN SOURCE
msgid "Freeform"
msgstr "Freeform"

#: NOT FOUND IN SOURCE
msgid "FreeformContactInfo"
msgstr "FreeformContactInfo"

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr ""

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Fri."
msgstr "Jum."

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr ""

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Full headers"
msgstr "Catatan Atas Lengkap"

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr ""

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr "Ambil template dari file"

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr ""

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr "Berikan ke %1"

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr "Global"

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Global Custom Fields"
msgstr "Kolom Kustom Global"

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr "Konfigurasi kolom kustom global"

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr ""

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr "Template Global: %1"

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr ""

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr "Ambil"

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr ""

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "Ambil!"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr "Ambil tiket"

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr ""

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr "Grup"

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr "Hak Grup"

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr "Grup sudah memiliki anggota: %1"

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr "Grup tidak dapat dibuat: %1"

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr "Grup sudah dibuat"

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr ""

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr ""

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr "Grup tidak memiliki anggota terseperti ini"

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr ""

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr "Grup tidak ditemukan"

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "Grup"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr "Grup tidak bisa menjadi anggota dari mereka"

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr "Grup sesuai dengan kriteria pencarian"

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr ""

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr "Pengguna ini milik grup"

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr "Halo!"

#: NOT FOUND IN SOURCE
msgid "Hello, %1"
msgstr "Halo, %1"

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "Historis"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr ""

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr "Historis grup %1"

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr ""

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr "Historis pengguna %1"

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr ""

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "HomePhone"
msgstr "Telepon Rumah"

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "Homepage"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr ""

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr ""

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr "Saya memiliki %quant (%1,concrete mixer)."

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "I'm lost"
msgstr "Saya tersesat"

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr ""

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr "Id"

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "Identitas"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr "Jika izin ditolak, tolak izin yang asli dan hapus izin yang masih ditunda"

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr "Jika tidak ada pemohon yang ditentukan, buat tiket dengan pemohon ini."

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr "Jika tidak ada antrian yang ditentukan, buat tiket untuk antrian ini."

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr "Jika alat ini adalah setgid, hostile local user dapat menggunakan alat ini untuk mendapatkan akses administrasi ke RT."

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr "Jika anda memperbaharui apapun diatas, pastikanlah untuk"

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr ""

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr "Nilai Ilegal untuk %1"

#: NOT FOUND IN SOURCE
msgid "Image"
msgstr "Gambar"

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr "Kolom yang tetap"

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr ""

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr ""

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr "Termasuk menon-aktifkan grup di dalam daftar."

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr "Termasuk menon-aktifkan antrian di dalam daftar."

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr "Termasuk menon-aktifkan pengguna di dalam pencarian."

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Incomplete Query"
msgstr "Query tidak lengkap"

#: NOT FOUND IN SOURCE
msgid "Incomplete query"
msgstr "query tidak lengkap"

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr ""

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr ""

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr "Prioritas Awal"

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr "Prioritas Awal"

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr "Kesalahan Input"

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr ""

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr "Kesalahan Internal"

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr "Kesalahan Internal: %1"

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr ""

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr "Tipe Grup tidak valid"

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr ""

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Invalid Right"
msgstr "Hak-hak tidak valid"

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr "Data tidak valid"

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr ""

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr ""

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr "Antrian tidak valid"

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr ""

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr "Hak tidak valid"

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr "Nilai tidak valid untuk %1"

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr "Nilai tidak valid untuk kolom kustom"

#: NOT FOUND IN SOURCE
msgid "Invalid value for status"
msgstr "Nilai tidak valid untuk status"

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr "Hal ini sangat penting bahwa pengguna yang tidak memiliki hak-hak istimewa tidak dapat diizinkan untuk menjalankan program ini."

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr "Sangat disarankan bahwa anda membuat pengguna unix yang tidak memiliki hak-hak istimewa dengan keanggotaan grup yang benar dan akses RT untuk menjalankan alat ini."

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr "Hal ini memerlukan beberapa penjelasan:"

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr "Diberi huruf miring"

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Jan."
msgstr "Jan."

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Join or leave this group"
msgstr "Bergabung atau tinggalkan grup ini"

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Jul."
msgstr "Jul."

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr "Jumbo"

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Jun."
msgstr "Jun."

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr "Bhs"

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr "Bahasa"

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr "Besar"

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr "Akhir"

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr "Kontak Terakhir"

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr "Kontak Terakhir"

#: NOT FOUND IN SOURCE
msgid "Last Notified"
msgstr "Pemberitahuan Terakhir"

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr "Pembaharuan Terakhir"

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr ""

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr "Pembaharuan Terakhir Oleh"

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr "Kirim"

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr ""

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr ""

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr "Biarkan pengguna ini mengakses RT"

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr "Biarlah pengguna ini diberi hak-hak"

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr ""

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr ""

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr "Link"

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr "Link sudah ada"

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr "Link tidak dapat dibuat"

#: NOT FOUND IN SOURCE
msgid "Link created (%1)"
msgstr "Link sudah dibuat (%1)"

#: NOT FOUND IN SOURCE
msgid "Link deleted (%1)"
msgstr "Link sudah dihapus (%1)"

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr "Link tidak ditemukan"

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr "Link tiket #%1"

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr ""

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr ""

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr ""

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr ""

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr ""

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr ""

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr "Link-link"

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr "Memanggil"

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr ""

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr ""

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr "Memanggil pencarian yang disimpan:"

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr "Memanggil pencarian yang disimpan"

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr "Memanggil modul perl"

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Loaded search %1"
msgstr "Memanggil pencarian %1"

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr ""

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr ""

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr "Lokasi"

#: NOT FOUND IN SOURCE
msgid "Log directory %1 not found or couldn't be written.\\n RT can't run."
msgstr "Direktori Log %1 tidak ditemukan atau tidak dapat ditulis.\\n RT tidak dapat dijalankan."

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr ""

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr "Masuk sebagai %1"

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr ""

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr "Login"

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr "Logout"

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr "Mencari tipe yang tidak sesuai (mismatch)"

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr "Buat Pemilik"

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr "Buat Status"

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr "Buat Tanggal Batas Waktu"

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr "Buat Tanggal Penyelesaian"

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr "Buat Tanggal Mulai"

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr "Buat Tanggal Mulai"

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr "Buat Tanggal Pemberitahuan"

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr "Buat prioritas"

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr "Buat antrian"

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr "Buat subjek"

#: NOT FOUND IN SOURCE
msgid "Make this group visible to user"
msgstr "Buat agar grup ini terlihat pada sisi pengguna"

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr "Mengatur kolom kustom dan nilai kolom kustom"

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr "Mengatur grup dan keanggotaan grup"

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr "Mengatur propertis dan konfigurasi yang akan digunakan di setiap antrian"

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr "Mengatur antrian dan propertis antrian tertentu"

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr "Mengatur pengguna dan sandi"

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr ""

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Mar."
msgstr "Mar."

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "May."
msgstr "Mei."

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr ""

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr "Anggota %1 sudah ditambah"

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr "Anggota %1 sudah dihapus"

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr "Anggota sudah ditambah: %1"

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr "Anggota sudah dihapus"

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr "Anggota tidak dihapus"

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr "Anggota dari"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr "Anggota-anggota"

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr "Keanggotaan di dalam %1 sudah ditambah"

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr "Keanggotaan di dalam %1 sudah dihapus"

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr "Keanggotaan"

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr "Keanggotaan dari pengguna %1"

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr "Penggabungan Berhasil"

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr "Penggabungan gagal. Tidak dapat mengatur EffectiveId"

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr "Penggabungan gagal. Tidak dapat mengatur Status"

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr "Bergabung ke dalam"

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr "Bergabung ke dalam %1"

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr "Pesan"

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr "Pesan tidak dapat dicatat"

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr "Pesan sudah dicatat"

#: NOT FOUND IN SOURCE
msgid "Messages about this ticket will not be sent to..."
msgstr "Pesan mengenai Tiket ini tidak akan dikirim ke..."

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr ""

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Mismatched parentheses"
msgstr "tanda kurung tidak sama"

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr "Kunci utama tidak ditemukan?: %1"

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr "Hp"

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "MobilePhone"
msgstr "Handphone"

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify Access Control List"
msgstr "Mengubah Daftar Kontrol Akses"

#: NOT FOUND IN SOURCE
msgid "Modify Custom Fields which apply to %1 for all %2"
msgstr "Ubah Kolom Kustom yang digunakan untuk %1 untuk semua %2"

#: NOT FOUND IN SOURCE
msgid "Modify Custom Fields which apply to all %1"
msgstr "Mengatur Kolom Kustom yang dapat digunakan untuk seluruh %1"

#: NOT FOUND IN SOURCE
msgid "Modify Custom Fields which apply to all queues"
msgstr "Mengatur Kolom Kustom yang dapat digunakan di seluruh antrian"

#: NOT FOUND IN SOURCE
msgid "Modify Group Rights"
msgstr "Ubah Hak Grup"

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr "Ubah Anggota"

#: NOT FOUND IN SOURCE
msgid "Modify Rights"
msgstr "Ubah Hak-hak"

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify Scrip templates for this queue"
msgstr "Mengubah template Scrip untuk antrian ini"

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify Scrips for this queue"
msgstr "Mengubah Scrip untuk antrian ini"

#: NOT FOUND IN SOURCE
msgid "Modify User Rights"
msgstr "Ubah Hak Pengguna"

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr "Mengubah Kolom Kustom untuk antrian %1"

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr "Mengubah scrip untuk antrian %1"

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr "Mengubah scrip  yang dapat digunakan di seluruh antrian"

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr ""

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr "Mengubah objek-objek yang berhubungan untuk %1"

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr "Mengubah tanggal untuk #%1"

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr "Mengubah tanggal untuk tiket # %1"

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr ""

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr "Mengubah kolom kustom global"

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr "Mengubah hak grup global"

#: NOT FOUND IN SOURCE
msgid "Modify global group rights."
msgstr "Mengubah hak grup global."

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr ""

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr "Mengubah hak pengguna global"

#: NOT FOUND IN SOURCE
msgid "Modify global user rights."
msgstr "Mengubah hak pengguna global."

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr ""

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr "Mengubah grup metadata atau menghapus grup"

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr "Mengubah hak grup untuk kolom kustom %1"

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr "Mengubah hak grup untuk grup %1"

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr "Mengubah hak grup untuk antrian %1"

#: NOT FOUND IN SOURCE
msgid "Modify membership roster for this group"
msgstr "Mengubah daftar nama keanggotaan untuk grup ini"

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr "Mengubah pemilik account RT"

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Modify people related to queue %1"
msgstr "Mengubah orang-orang yang berhubungan dengan antrian %1"

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr "Mengubah orang-orang yang berhubungan dengan tiket #%1"

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr "Mengubah scrip untuk antrian %1"

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr "Mengubah scrip yang dapat digunakan di seluruh antrian"

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr ""

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr "Mengubah template %1"

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr ""

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr "Mengubah template yang dapat digunakan di seluruh antrian"

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr ""

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr ""

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr ""

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr ""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr "Mengubah grup %1"

#: NOT FOUND IN SOURCE
msgid "Modify the queue watchers"
msgstr "Mengubah pengamat antrian"

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr "Mengubah pengguna %1"

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr "Mengubah tiket # %1"

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr "Mengubah tiket #%1"

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr "Mengubah tiket-tiket"

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr ""

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr ""

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr ""

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr "Mengubah hak pengguna untuk kolom kustom %1"

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr "Mengubah hak pengguna untuk grup %1"

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr "Mengubah hak pengguna untuk antrian %1"

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr ""

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr "Mengubah ACL"

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr "Mengubah Kolom Kustom"

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr "Mengubah Milik Keanggotaan"

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr "Mengubah Pengamat Antrian"

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr "Mengubah Scrip"

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr "Mengubah Sendiri"

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr "Mengubah Template"

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr "Mengubah Tiket"

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr ""

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Mon."
msgstr "Sen."

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr ""

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "More about %1"
msgstr "Lebih mengenai %1"

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Move"
msgstr "Pindah"

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr "Pindah ke bawah"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr "Pindah ke atas"

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr "Beberapa"

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr "Harus menentukan 'Nama' attribut"

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr "%1 tiketku"

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr ""

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr ""

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr ""

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr "Izinku"

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr ""

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr "Pencarian yang kusimpan"

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr ""

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr "Nama"

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr ""

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr "Nama yang digunakan"

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr "Tidak pernah"

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr "Baru"

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr ""

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr ""

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr "Link Baru"

#: NOT FOUND IN SOURCE
msgid "New Password"
msgstr "Sandi Baru"

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr "Izin Baru yang Ditunda"

#: NOT FOUND IN SOURCE
msgid "New Query"
msgstr "Query Baru"

#: NOT FOUND IN SOURCE
msgid "New Relationships"
msgstr "Hubungan Baru"

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "New custom field"
msgstr "Kolom Kustom Baru"

#: NOT FOUND IN SOURCE
msgid "New group"
msgstr "Grup Baru"

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr ""

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr "Sandi Baru"

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr "Kirim Pemberitahuan Sandi Baru"

#: NOT FOUND IN SOURCE
msgid "New queue"
msgstr "Antrian Baru"

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr ""

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr "Hak-hak Baru"

#: NOT FOUND IN SOURCE
msgid "New scrip"
msgstr "Scrip Baru"

#: NOT FOUND IN SOURCE
msgid "New template"
msgstr "Template Baru"

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr "Tiket Baru"

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr "Tidak ada Tiket baru"

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "New user"
msgstr "Pengguna Baru"

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr "Pengguna Baru disebut"

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr "Pengamat Baru"

#: NOT FOUND IN SOURCE
msgid "New window setting"
msgstr "Setting Window Baru"

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr "Berikutnya"

#: NOT FOUND IN SOURCE
msgid "Next Page"
msgstr "Halaman Berikutnya"

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr "Nama Panggilan"

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr "Nama Panggilan"

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr ""

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr "Tidak ada Kelas yang didefinisikan"

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr "Tidak ada Kolom Kustom"

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr "Tidak ada Kolom Kustom yang didefinisikan"

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr "Tidak ada Grup yang didefinisikan"

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr "Tidak ada Query"

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr "Tidak ada Antrian yang didefinisikan"

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "No RT user found. Please consult your RT administrator.\\n"
msgstr "Tidak ada pengguna RT yang ditemukan. Silakan berkonsultasi dengan administrator RT anda.\\n"

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr ""

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr "Tidak ada Template"

#: NOT FOUND IN SOURCE
msgid "No Ticket specified. Aborting ticket "
msgstr "Tidak ada Tiket yang ditentukan. Batalkan tiket "

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr "Tidak ada aksi"

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr "Tidak ada kolom yang ditentukan"

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr "Tidak ada komentar yang dimasukkan mengenai pengguna ini"

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr "Tidak ada deskripsi untuk %1"

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr ""

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr "Tidak ada grup yang ditentukan"

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr "Grup yang sesuai dengan kriteria pencarian tidak ditemukan."

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr "Tidak ada pesan yang dilampirkan"

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr "Tidak ada pengaturan Sandi"

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr "Tidak ada izin untuk membuat antrian"

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr "Tidak ada izin untuk membuat tiket ini di dalam antrian '%1'"

#: NOT FOUND IN SOURCE
msgid "No permission to create users"
msgstr "Tidak ada izin untuk membuat pengguna"

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr "Tidak ada izin untuk menampilkan tiket tersebut"

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr ""

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr ""

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr ""

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr "Tidak ada izin untuk menampilkan tiket yang sudah diperbaharui"

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr "Tidak ada prinsipal yang ditentukan"

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr "Tidak ada prinsipal yang dipilih."

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr ""

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr "Antrian yang sesuai dengan kriteria pencarian tidak ditemukan."

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr "Tidak ada hak-hak yang ditemukan"

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr "Tidak ada hak-hak yang diberikan."

#: NOT FOUND IN SOURCE
msgid "No search loaded"
msgstr "Tidak ada pencarian yang dipanggil"

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr "Tidak ada pencarian untuk dijalankan di."

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr "Tidak ada subjek"

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr ""

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr "Tidak ada tipe transaksi yang ditentukan"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr ""

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr "Pengguna yang sesuai dengan kriteria pencarian tidak ditemukan."

#: NOT FOUND IN SOURCE
msgid "No valid RT user found. RT cvs handler disengaged. Please consult your RT administrator.\\n"
msgstr "Tidak ada pengguna RT yang valid ditemukan. RT cvs handler dilepaskan. Silakan berkonsultasi dengan administrator RT anda.\\n"

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "No value sent to _Set!\\n"
msgstr "Tidak ada nilai yang dikirim ke _Set!\\n"

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr "Tidak seorangpun"

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr ""

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr "Kolom kosong?"

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr ""

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr "Belum log in"

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr "Belum diatur"

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr "Belum diimplementasikan."

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr "Catatan"

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr "Pemberitahuan tidak dapat dikirimkan"

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr "Beritahu AdminCcs"

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr "Beritahu AdminCcs dengan komentar"

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr "Beritahu Ccs"

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr "Beritahu Ccs dengan komentar"

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr "Beritahu Penerima Lain"

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr "Beritahu Penerima Lain dengan komentar"

#: etc/initialdata:41
msgid "Notify Owner"
msgstr "Beritahu Pemilik"

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr "Beritahu Pemilik dengan komentar"

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr "Beritahu pemilik bahwa tiketnya ditolak"

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Notify Owner of their ticket has been approved by all approvers"
msgstr "Beritahu Pemilik bahwa tiketnya sudah disetujui oleh seluruh pemberi persetujuan"

#: NOT FOUND IN SOURCE
msgid "Notify Owner of their ticket has been approved by some approver"
msgstr "Beritahu Pemilik bahwa tiketnya sudah disetujui oleh beberapa pemberi persetujuan"

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr ""

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr ""

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr "Beritahu Pemilik dan AdminCcs mengenai izin item baru yang ditunda"

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr "Beritahu Pemohon"

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr "Beritahu Pemohon dan Ccs"

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr "Beritahu Pemohon dan Ccs dengan komentar"

#: NOT FOUND IN SOURCE
msgid "Notify Requestors, Ccs and AdminCcs"
msgstr "Beritahu Pemohon, Ccs dan AdminCcs"

#: NOT FOUND IN SOURCE
msgid "Notify Requestors, Ccs and AdminCcs as Comment"
msgstr "Beritahu Pemohon, Ccs dan AdminCcs dengan komentar"

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr ""

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Nov."
msgstr "Nop."

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr "ATAU"

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr ""

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr "Objek tidak dapat dibuat"

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr "Objek tidak dapat dihapus"

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr "Object sudah dibuat"

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr "Objek sudah dihapus"

#: NOT FOUND IN SOURCE
msgid "Object of type %1 cannot take custom fields"
msgstr "Tipe Objek %1 tidak dapat mengambil kolom kustom"

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr "Tipe Objek tidak sesuai (mismatch)"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Oct."
msgstr "Okt."

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr "Offline"

#: NOT FOUND IN SOURCE
msgid "Offline edits"
msgstr "Ubah Offline"

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr "Upload Offline"

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr ""

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr ""

#: etc/initialdata:143
msgid "On Comment"
msgstr "Pada Komentar"

#: etc/initialdata:115
msgid "On Correspond"
msgstr "Pada Hubungan"

#: etc/initialdata:104
msgid "On Create"
msgstr "Pada Pembuatan"

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr ""

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr "Pada Perubahan Pemilik"

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr "Pada Perubahan Prioritas"

#: etc/initialdata:172
msgid "On Queue Change"
msgstr "Pada Perubahan Antrian"

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr ""

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr ""

#: etc/initialdata:178
msgid "On Resolve"
msgstr "Pada Penyelesaian"

#: etc/initialdata:149
msgid "On Status Change"
msgstr "Pada Perubahan Status"

#: etc/initialdata:109
msgid "On Transaction"
msgstr "Pada Transaksi"

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr ""

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr "Hanya menampilkan izin untuk permintaan yang dibuat sesudah %1"

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr "Hanya menampilkan izin untuk permintaan yang dibuat sebelum %1"

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Open"
msgstr "Buka"

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr ""

#: etc/initialdata:95
msgid "Open Tickets"
msgstr ""

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Open it"
msgstr "Buka ini"

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr "Buka tiket"

#: NOT FOUND IN SOURCE
msgid "Open tickets (from listing) in a new window"
msgstr "Buka tiket (dari daftar) di window yang baru"

#: NOT FOUND IN SOURCE
msgid "Open tickets (from listing) in another window"
msgstr "Buka tiket (dari daftar)  di window yang lain"

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr "Buka tiket pada korespondensi"

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr ""

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr ""

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr ""

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr "Diurutkan sesuai"

#: NOT FOUND IN SOURCE
msgid "Ordering and sorting"
msgstr "Diurutkan dan disortir"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr "Organisasi"

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr "Tiket Awal: #%1"

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr "Email yang keluar mengenai komentar yang dicatat"

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr "Email keluar yang dicatat"

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr "Lewat Batas waktu, prioritas pindah ke arah"

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr ""

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr "Memiliki tiket-tiket"

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr "Memiliki tiket"

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr "Pemilik"

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr ""

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr "Pemilik tidak dapat diatur."

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr "Pemilik secara paksa digantikan dari %1 ke %2"

#: NOT FOUND IN SOURCE
msgid "Owner is"
msgstr "Pemilik adalah"

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr ""

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Page %1 of %2"
msgstr "Halaman %1 dari %2"

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr ""

#: share/html/dhandler:48
msgid "Page not found"
msgstr ""

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr "Pager"

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "PagerPhone"
msgstr "Pager"

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr "Induk"

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr "Sandi"

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr "Pengingat Sandi"

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr "Sandi sudah diubah"

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr ""

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr "Minimal sandi memerlukan paling sedikit %1 karakter"

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Password too short"
msgstr "Sandi terlalu singkat"

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr "Sandi: %1"

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr ""

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr "Sandi tidak sesuai."

#: NOT FOUND IN SOURCE
msgid "Passwords do not match. Your password has not been changed"
msgstr "Sandi tidak sesuai. Sandi anda belum diganti"

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr "Orang-Orang"

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr ""

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr "Menampilkan aksi pengguna yang belum didefinisikan"

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr "Konfigurasi Perl"

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr "Izin ditolak"

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Personal Groups"
msgstr "Grup Pribadi"

#: NOT FOUND IN SOURCE
msgid "Personal groups"
msgstr "Grup pribadi"

#: NOT FOUND IN SOURCE
msgid "Personal groups:"
msgstr "Grup pribadi:"

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr "Nomor Telepon"

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr ""

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr "Pilihan"

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr ""

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr ""

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr ""

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr ""

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr ""

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr ""

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr "Siapkan Potongan Tiket"

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr "Sebelumnya"

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Previous Page"
msgstr "Halaman Sebelumnya"

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr "Prinsipal %1 tidak ditemukan."

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr ""

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr ""

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr "Prioritas"

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr "Prioritas dimulai pada"

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr "Pribadi:"

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr ""

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr "Hak-hak Istimewa"

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr "Status Hak-hak Istimewa: %1"

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr "Pengguna Hak-hak Istimewa"

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Projects"
msgstr "Proyek-Proyek"

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr "Pseudogroup digunakan untuk internal"

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr ""

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr "Query"

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr "Pembuat Query"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr "Antrian"

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr "Antrian %1 tidak ditemukan"

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr "Nama Antrian"

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr "Antrian sudah ada"

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr "Antrian tidak dapat dibuat"

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr "Antrian tidak dapat dipanggil."

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr "Antrian sudah dibuat"

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr ""

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr ""

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr "Antrian tidak dapat ditemukan"

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr ""

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr ""

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr "Antrian-antrian"

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr ""

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr ""

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr ""

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr "Pencarian Cepat"

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr "Pembuatan Tiket Cepat"

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr ""

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr ""

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr "RSS"

#: NOT FOUND IN SOURCE
msgid "RT %1"
msgstr "RT %1"

#: NOT FOUND IN SOURCE
msgid "RT %1 for %2"
msgstr "RT %1 untuk %2"

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr "Administrasi RT"

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr "Kesalahan RT"

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "RT Variables"
msgstr "Variable RT"

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr "Sekilas RT"

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr ""

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr ""

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr "RT tidak dapat menyimpan sesi anda"

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr "RT untuk %1"

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr ""

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr ""

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr "Nama Asli"

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr "Nama Asli"

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr ""

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr ""

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr ""

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr ""

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr "Referensi oleh %1 sudah ditambah"

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr "Referensi oleh %1 sudah dihapus"

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr "Referensi ke %1 sudah ditambah"

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr "Referensi ke %1 sudah dihapus"

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr "Diserahkan oleh"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr "Diserahkan ke"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Refine search"
msgstr "Membersihkan pencarian"

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr ""

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr ""

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr ""

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr "Refresh halaman ini setiap %1 menit."

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Relationships"
msgstr "Hubungan"

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr ""

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr ""

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr ""

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr ""

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr ""

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr ""

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr ""

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr "Hapus AdminCc"

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr ""

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr "Hapus Cc"

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr "Hapus Pemohon"

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr ""

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr "Balas"

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr "Balas ke Alamat"

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr "Balas ke Pemohon"

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr "Balas ke tiket"

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr "Balas ke Tiket"

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr "Pemohon"

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr "Pemohon"

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr "permintaan akan melewati batas waktu dalam"

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr "Parameter yang diperlukan '%1' tidak didefinisikan"

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr "Ulangi"

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr ""

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr "Tempat Tinggal"

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr "Penyelesaian"

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr "Penyelesaian tiket #%1 (%2)"

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr "Sudah Diselesaikan"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Response to requestors"
msgstr "Balas ke pemohon"

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr "Hasil"

#: NOT FOUND IN SOURCE
msgid "Results per page"
msgstr "Hasil per halaman"

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr ""

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr "Ketik Ulang Sandi"

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr "Kembali pada"

#: NOT FOUND IN SOURCE
msgid "Right Delegated"
msgstr "Hak-hak Utusan"

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr "Memberikan Hak-hak"

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr "Memanggil Hak-hak"

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr "Hak-hak tidak dapat dihilangkan"

#: NOT FOUND IN SOURCE
msgid "Right not found"
msgstr "Hak-hak tidak ditemukan"

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr "Hak-hak tidak dapat dipanggil."

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr "Hak-hak tidak dapat dihilangkan"

#: NOT FOUND IN SOURCE
msgid "Rights"
msgstr "Hak-hak"

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr "Hak-hak tidak dapat diberikan untuk %1"

#: NOT FOUND IN SOURCE
msgid "Rights could not be revoked for %1"
msgstr "Hak-hak tidak dapat dihilangkan untuk %1"

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Roles"
msgstr "Aturan"

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr ""

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr ""

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr "Baris per halaman"

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr ""

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Sat."
msgstr "Sab."

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr "Simpan"

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr "Simpan Perubahan"

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr "Simpan Pilihan"

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Save changes"
msgstr "Simpan perubahaan"

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr ""

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr ""

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Saved search %1"
msgstr "Simpan pencarian %1"

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr "Simpan pencarian"

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr "Scrip #%1"

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr "Scrip sudah dibuat"

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr "Kolom Scrip"

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr "Scrip sudah dihapus"

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr "Scrip"

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr "Scrip yang digunakan di seluruh antrian"

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr "Pencarian"

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr ""

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Search attribute load failure"
msgstr "Gagal memanggil atribut pencarian"

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr "Pencarian untuk izin"

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr ""

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr ""

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr ""

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr ""

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr ""

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Search update: %1"
msgstr "Perbaharui Pencarian: %1"

#: NOT FOUND IN SOURCE
msgid "Searches can't be associated with that kind of object"
msgstr "Pencarian tidak dapat dihubungkan dengan objek yang seperti ini"

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr "Keamanan:"

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr ""

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr ""

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "See custom fields"
msgstr "Lihat kolom kustom"

#: NOT FOUND IN SOURCE
msgid "See exact outgoing email messages and their recipeients"
msgstr "Lihat pesan email yang keluar dan semua penerimanya dengan tepat"

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "See ticket private commentary"
msgstr "Lihat Penjelasan Tiket Pribadi"

#: NOT FOUND IN SOURCE
msgid "See ticket summaries"
msgstr "Lihat Ringkasan Tiket"

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr "Lihat Kolom Kustom"

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr "Lihat Grup"

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr "Lihat Antrian"

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr "Pilih"

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr ""

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr ""

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr "Pilih Kolom Kustom"

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr "Pilih grup"

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr "Pilih antrian"

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr "Pilih antrian untuk tiket baru anda"

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr "Pilih Pengguna"

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr ""

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr ""

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select custom field"
msgstr "Pilih kolom kustom"

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr "Pilih kolom kustom untuk seluruh grup pengguna"

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr "Pilih kolom kustom untuk seluruh pengguna"

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr "Pilih kolom kustom untuk tiket di seluruh antrian"

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr "Pilih kolom kustom untuk transaksi pada tiket di dalam seluruh antrian"

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select group"
msgstr "Pilih grup"

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr "Pilih beberapa nilai"

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr "Pilih satu nilai"

#: NOT FOUND IN SOURCE
msgid "Select queue"
msgstr "Pilih antrian"

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Select scrip"
msgstr "Pilih scrip"

#: NOT FOUND IN SOURCE
msgid "Select template"
msgstr "Pilih template"

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr ""

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr "Pilih sampai %1 nilai"

#: NOT FOUND IN SOURCE
msgid "Select user"
msgstr "Pilih pengguna"

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr "Kolom Kustom yang dipilih"

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr "Objek yang dipilih"

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Send mail to all watchers"
msgstr "Kirim pesan ke seluruh pengamat"

#: NOT FOUND IN SOURCE
msgid "Send mail to all watchers as a \"comment\""
msgstr "Kirim pesan ke seluruh pengamat dengan \"komentar\""

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr "Kirim pesan ke pemohon dan Ccs"

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr "Kirim pesan ke pemohon dan Ccs dengan komentar"

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr "Kirim pesan ke pemohon"

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr "Kirim pesan ke Ccs and Bccs yang terdaftar dengan jelas"

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr "Kirim pesan ke Ccs"

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr "Kirim pesan ke Ccs dengan komentar"

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr "Kirim pesan ke Ccs administrasi"

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr "Kirim pesan ke Ccs administrasi dengan komentar"

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr "Kirim pesan ke pemilik"

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Sep."
msgstr "Sep."

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr ""

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr "Tampilkan"

#: NOT FOUND IN SOURCE
msgid "Show Approvals"
msgstr "Tampilkan Izin"

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr "Tampilkan Kolom"

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr "Tampilkan Hasil"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr "Tamplikan permintaan yang disetujui"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Show basics"
msgstr "Tampilkan dasar-dasar"

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr "Tampilkan permintaan yang ditolak"

#: NOT FOUND IN SOURCE
msgid "Show details"
msgstr "Tampilkan detil"

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr ""

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr "Tampilkan permintaan yang ditunda"

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr "Tampilkan permintaan izin lain yang ditunggu"

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr "Tampilkan ACL"

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr ""

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr "Tampilkan Tab Config"

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr "Tampilkan Email yang Keluar"

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr "Tampilkan Pencarian yang Disimpan"

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr "Tampilkan Scrip"

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr "Tampilkan Template"

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr "Tampilkan Tiket"

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr "Tampilkan Komentar Tiket"

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr ""

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr "Daftar sebagai pemohon tiket atau tiket atau antrian Cc"

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr "Daftar sebagai tiket atau antrian AdminCc"

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr "Tanda Tangan"

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr ""

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr ""

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr "Tunggal"

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr "Ukuran"

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr "Lewati Menu"

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr "Kecil"

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr "Sortir"

#: NOT FOUND IN SOURCE
msgid "Sort results by"
msgstr "Sortir hasil dengan"

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr ""

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr ""

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr "Tingkat"

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr ""

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr "Sudah dimulai"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr "Mulai"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr "Negara"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr "Status"

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr ""

#: etc/initialdata:307
msgid "Status Change"
msgstr "Status Diubah"

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr "Status diubah dari %1 ke %2"

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr "Curi"

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr "Curi tiket"

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr "Curi Tiket"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr ""

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr "Dicuri dari %1"

#: NOT FOUND IN SOURCE
msgid "Stolen from %1 "
msgstr "Dicuri dari %1 "

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr "Gaya"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr "Subjek"

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr "Subjek diganti menjadi %1"

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr "Submit"

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr ""

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr ""

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Succeeded"
msgstr "Berhasil"

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr ""

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Sun."
msgstr "Min."

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr ""

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr "PenggunaSuper"

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "System"
msgstr "Sistem"

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr "Konfigurasi Sistem"

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr "Kesalahan Sistem"

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr "Kesalahan sistem: %1"

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr "Peralatan Sistem"

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "System error. Right not delegated."
msgstr "Kesalahan sistem. Hak-hak tidak dapat diserahkan."

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr "Kesalahan sistem. Hak-hak tidak dapat diberikan."

#: NOT FOUND IN SOURCE
msgid "System groups"
msgstr "Grup Sistem"

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr "GrupAturanSistem yang digunakan untuk internal"

#: NOT FOUND IN SOURCE
msgid "TEST_STRING"
msgstr "TES_STRING"

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr "Ambil"

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr "Ambil tiket"

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr "Ambil Tiket"

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr "Diambil"

#: NOT FOUND IN SOURCE
msgid "Task"
msgstr "Tugas"

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr "Template"

#: NOT FOUND IN SOURCE
msgid "Template #%1"
msgstr "Template #%1"

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr ""

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Template deleted"
msgstr "Template sudah dihapus"

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr ""

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Template not found"
msgstr "Template tidak ditemukan"

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr "Template parsed"

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr ""

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr ""

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr "Template-template"

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr "Teks"

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr "Ini adalah nilai yang sekarang"

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr "Ini bukan nilai untuk kolom kustom ini"

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr "Ini adalah nilai yang sama"

#: NOT FOUND IN SOURCE
msgid "That principal already has that right"
msgstr "Prinsipal ini sudah memiliki hak-hak tersebut"

#: NOT FOUND IN SOURCE
msgid "That principal is already a %1 for this queue"
msgstr "Prinsipal ini sudah %1 untuk antrian ini"

#: NOT FOUND IN SOURCE
msgid "That principal is already a %1 for this ticket"
msgstr "Prinsipal ini sudah %1 untuk tiket ini"

#: NOT FOUND IN SOURCE
msgid "That principal is not a %1 for this queue"
msgstr "Prinsipal ini bukan %1 untuk antrian ini"

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr "Antrian ini tidak ada"

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr "Tiket ini mempunyai ketergantungan yang belum dapat diselesaikan"

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr "Pengguna ini sudah memiliki tiket tersebut"

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr "Pengguna ini tidak ada"

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr "Pengguna ini sudah memiliki hak-hak istimewa"

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr "Pengguna ini sudah tidak memiliki hak-hak istimewa"

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr "Pengguna tersebut sekarang memiliki hak-hak istimewa"

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr "Pengguna tersebut sekarang tidak memiliki hak-hak istimewa"

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr "Pengguna tersebut mungkin tidak memiliki tiket di dalam antrian tersebut"

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr "Ini bukan menurut angka ID"

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr "Dasar-dasar"

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr "CC tiket"

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr ""

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr "CC tiket administrasi"

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:"
msgstr "Perintah berikut ini akan menemukan seluruh tiket yang aktif di dalam antrian 'umum' dan mengatur prioritas mereka ke 99 jika mereka tidak digunakan dalam waktu  4 jam:"

#: NOT FOUND IN SOURCE
msgid "The following commands were not proccessed:\\n\\n"
msgstr "Perintah berikut ini tidak akan dijalankan:\\n\\n"

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr "Nilai baru sudah diatur."

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr "Pemilik tiket"

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr "Pemohon tiket"

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr ""

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr "Komentar ini umumnya tidak jelas bagi pengguna"

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr "Kolom kustom ini tidak dapat digunakan pada objek tersebut"

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr "Fitur ini hanya tersedia untuk sistem administrator"

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "This message will be sent to..."
msgstr "Pesan ini akan dikirim ke..."

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr "Alat ini mengijinkan pengguna untuk menjalankan modul perl yang berubah-ubah dari dalam RT."

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr "Transaksi ini tampaknya tidak memiliki isi"

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "This user's %1 highest priority tickets"
msgstr "Pengguna ini memiliki %1 tiket dengan prioritas tertinggi"

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Thu."
msgstr "Kms."

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr ""

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr ""

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr "Tiket #%1 Perbaharui Jumbo: %2"

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr ""

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr "Tiket #%1: %2"

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr "Tiket %1"

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr "Tiket %1 sudah dibuat di dalam antrian '%2'"

#: NOT FOUND IN SOURCE
msgid "Ticket %1 loaded\\n"
msgstr "Tiket %1 sudah dipanggil\\n"

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr "Tiket %1: %2"

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr "Tiket Kolom Kustom"

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr "Historis Tiket # %1 %2"

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr "Tiket sudah diselesaikan"

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr ""

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr "Transaksi Tiket"

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Ticket attachment"
msgstr "Lampiran Tiket"

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr "Isi Tiket"

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr "Tipe isi Tiket"

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr "Tiket tidak dapat dibuat karena ada kesalahan internal"

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr ""

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr "Metadata Tiket"

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr "Status tiket sudah diubah"

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr "Pencarian modul Tiket SQL"

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr "Tiket-tiket"

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr "Tiket %1 %2"

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr "Tiket %1 oleh %2"

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Tickets from %1"
msgstr "Tiket dari %1"

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr "Tiket yang bergantung dengan izin ini:"

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr "Perkiraan Waktu"

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr "Sisa Waktu"

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr "Waktu Kerja"

#: NOT FOUND IN SOURCE
msgid "Time left"
msgstr "Sisa waktu"

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr "Waktu untuk ditampilkan"

#: NOT FOUND IN SOURCE
msgid "Time worked"
msgstr "Waktu kerja"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr "Waktu Kerja"

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr ""

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr "Judul"

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "To generate a diff of this commit:"
msgstr "To generate a diff of this commit:"

#: NOT FOUND IN SOURCE
msgid "To generate a diff of this commit:\\n"
msgstr "To generate a diff of this commit:\\n"

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr "Untuk menanyakan tentang bantuan, latihan, perkembangan kustom atau izin, silakan hubungi %1."

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr "Memberitahukan"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr "alat-alat"

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr ""

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr ""

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr ""

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr ""

#: etc/initialdata:249
msgid "Transaction"
msgstr "Transaksi"

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr "Transaksi %1 sudah dibersihkan"

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr "Transaksi sudah dibuat"

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr "Kolom Kustom Transaksi"

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr "Transaksi->Tidak dapat dibuat, karena anda tidak menentukan tipe objek dan id"

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr "Transaksi yang tetap"

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr ""

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Tue."
msgstr "Sel."

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr ""

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr "Tipe"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr ""

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr ""

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr "Belum diimplementasikan"

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr "Login Unix"

#: NOT FOUND IN SOURCE
msgid "UnixUsername"
msgstr "Nama Pengguna Unix"

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr ""

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr "Content Encoding tidak dikenali%1"

#: NOT FOUND IN SOURCE
msgid "Unknown field: $key"
msgstr "Kolom tidak dikenali: $key"

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr ""

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr ""

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr "Tidak terbatas"

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr "Pencarian tidak dikenal"

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr ""

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr "Tidak memiliki hak-hak istimewa"

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr "Kolom Kustom tidak dipilih"

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr "Objek tidak dipilih"

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr "Belum diambil"

#: NOT FOUND IN SOURCE
msgid "Untitled search"
msgstr "Pencarian yang tidak memiliki judul"

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr "Perbaharui"

#: NOT FOUND IN SOURCE
msgid "Update All"
msgstr "Perbahurui Semua"

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Update ID"
msgstr "Perbaharui ID"

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr "Perbaharui Tiket"

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr "Perbaharui Tipe"

#: NOT FOUND IN SOURCE
msgid "Update all these tickets at once"
msgstr "Perbaharui seluruh tiket ini pada saat yang sama"

#: NOT FOUND IN SOURCE
msgid "Update email"
msgstr "Perbaharui email"

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr ""

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr "Perbaharui beberapa tiket"

#: NOT FOUND IN SOURCE
msgid "Update name"
msgstr "Perbaharui nama"

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr "Perbaharui tidak dicatat."

#: NOT FOUND IN SOURCE
msgid "Update selected tickets"
msgstr "Perbaharui tiket yang terpilih"

#: NOT FOUND IN SOURCE
msgid "Update signature"
msgstr "Perbaharui tanda tangan"

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr "Perbaharui tiket"

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr "Perbaharui tiket #%1"

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr "Perbaharui tiket #%1 (%2)"

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr "Memperbarui tipe baik korespondensi ataupun  penjelasan."

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr ""

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr "Sudah diperbaharui"

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr "Upload"

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr ""

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr "Upload beberapa file"

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr "Upload beberapa gambar"

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr "Upload satu file"

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr "Upload satu gambar"

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr "Upload sampai %1 file"

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr "Upload sampai %1 gambar"

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr "Upload perubahan anda"

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr ""

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr ""

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr ""

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr "Gunakan alat administrative RT yang lain"

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr ""

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr ""

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr "Pengguna '%1' tidak dapat ditemukan."

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr "Pengguna didefinisikan"

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr "Pengguna mendefinisikan kondisi dan aksi"

#: NOT FOUND IN SOURCE
msgid "User ID"
msgstr "ID Pengguna"

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr "Hak Pengguna"

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr "Pengguna akan ditanya mengenai tipe pembaharuan yang tidak dikenal untuk kolom kustom %1 untuk %2 objek #%3"

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr "Pengguna tidak dapat dibuat: %1"

#: lib/RT/User.pm:262
msgid "User created"
msgstr "Pengguna sudah dibuat"

#: NOT FOUND IN SOURCE
msgid "User defined groups"
msgstr "Pengguna mendefinisikan grup"

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr ""

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr "Pengguna sudah dipanggil"

#: NOT FOUND IN SOURCE
msgid "User view"
msgstr "Lihat Pengguna"

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr "Definisi Grup Pengguna"

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr "Nama Pengguna"

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr ""

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr "Pengguna"

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr "Pengguna sesuai dengan kriteria pencarian"

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr ""

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr "Query yang valid"

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr "Nilai-nilai"

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr ""

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr ""

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr ""

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr ""

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr "Amati"

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr "Amati Sebagai AdminCc"

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr ""

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr "Pengamat"

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "WebEncoding"
msgstr "WebEncoding"

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Wed."
msgstr "Rabu."

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr ""

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr ""

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr ""

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr ""

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr ""

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr ""

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket"
msgstr "Kalau tiket sudah disetujui oleh semua pemberi persetujuan, tambahkan korespondesi ke tiket yang asli"

#: NOT FOUND IN SOURCE
msgid "When a ticket has been approved by any approver, add correspondence to the original ticket"
msgstr "Kalau tiket sudah disetujui oleh beberapa pemberi persetujuan, tambahkan korespondensi ke tiket yang asli"

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr "Kalau tiket sudah dibuat"

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr "Kalau tiket persetujuan sudah dibuat, beritahukan pemilik dan AdminCc dari item yang sedang ditunggu persetujuannya"

#: etc/initialdata:110
msgid "When anything happens"
msgstr "Kalau sesuatu terjadi"

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr ""

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr "Setiap saat tiket dapat diselesaikan"

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr "Setiap saat pemilik tiket dapat diubah"

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr "Setiap saat prioritas tiket dapat diubah"

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr "Setiap saat antrian tiket dapat diubah"

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr "Setiap saat status tiket dapat diubah"

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr "Setiap saat kondisi yang didefinisikan oleh pengguna terjadi"

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr "Setiap saat komentar dapat masuk"

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr "Setiap saat korespondensi dapat masuk"

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr ""

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr "Bekerja"

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Work offline"
msgstr "Bekerja offline"

#: NOT FOUND IN SOURCE
msgid "WorkPhone"
msgstr "Telepon Kantor"

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr "Sedang Bekerja"

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr ""

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr ""

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr "Anda sudah memiliki tiket ini"

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "You are not an authorized user"
msgstr "Anda bukanlah pengguna yang sah"

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr ""

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr "Anda hanya bisa menugaskan kembali tiket yang anda miliki atau yang belum anda miliki"

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr ""

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "You found %1 tickets in queue %2"
msgstr "Anda menemukan %1 tiket di dalam antrian ini %2"

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr "Anda sudah log out dari RT."

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr ""

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr ""

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr "Anda tidak memiliki izin untuk membuat tiket di dalam antrian tersebut."

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr ""

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr "Anda mungkin tidak akan membuat permintaan di dalam antrian ini."

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr ""

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr "Anda dapat login kembali"

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr ""

#: NOT FOUND IN SOURCE
msgid "Your request has been approved by %1. Other approvals may still be pending."
msgstr "Permintaan anda sudah disetujui oleh. Persetujuan yang lain mungkin masih ditunda."

#: NOT FOUND IN SOURCE
msgid "Your request has been approved."
msgstr "Permintaan anda sudah disetujui."

#: NOT FOUND IN SOURCE
msgid "Your request was rejected."
msgstr "Permintaan anda sudah ditolak."

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr "Nama pengguna dan sandi anda tidak sama"

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr "Zip"

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr ""

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr ""

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "Setelah"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "mengijinkan pembuatan pencarian yang disimpan"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "mengijinkan memanggil pencarian yang disimpan"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "sudah diberikan ke %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr ""

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "Sebelum"

#: NOT FOUND IN SOURCE
msgid "belongs to"
msgstr "Milik"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "sudah ditutup"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "berisi"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr ""

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "hari"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "sudah dihapus"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not belong to"
msgstr "Bukan milik"

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "tidak sama"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "tidak berisi"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr ""

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr ""

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "email address"
msgstr "alamat email"

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "sama dengan"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "kesalahan: tidak dapat dipindahkan ke bawah"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "kesalahan: tidak dapat dipindahkan ke kiri"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "kesalahan: tidak dapat dipindahkan ke atas"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "kesalahan: tidak ada apapun yang dapat dihapus"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "kesalahan: tidak ada apapun yang dapat dipindahkan"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "kesalahan: tidak ada apapun yang dapat dihubungkan"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "lebih dari"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grup '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "jam"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "adalah"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "tidak"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "kurang dari"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "sama"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr ""

#: lib/RT/Date.pm:342
msgid "min"
msgstr "mnt"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "menit"

#: NOT FOUND IN SOURCE
msgid "modifications\\n\\n"
msgstr "perubahan\\n\\n"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr ""

#: lib/RT/Date.pm:358
msgid "months"
msgstr "bulan"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr ""

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "baru"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "tidak ada nama"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "tidak ada nilai"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "tidak satupun"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "tidak sama dengan"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "Pada"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "buka"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr ""

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr ""

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "grup pribadi '%1' untuk pengguna '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "antrian %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "sudah ditolak"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "sudah diselesaikan"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr ""

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "dtk"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "tampilkan tab konfigurasi"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "lembar kerja"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "alasan"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr ""

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "sistem %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "grup sistem '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "Pemanggilan komponent tidak menetapkan mengapa"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "tiket #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr ""

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "grup yang belum dijelaskan %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "pengguna %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr ""

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "minggu"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr ""

#: lib/RT/Date.pm:362
msgid "years"
msgstr "tahun"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr ""

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/sk.po0000664000175000017500000077364312262650742013773 0ustar  chmrrchmrr# Slovak translation for rt
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: rt\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
"POT-Creation-Date: 2013-01-24 23:12+0000\n"
"PO-Revision-Date: 2012-12-14 09:44+0000\n"
"Last-Translator: erwinius \n"
"Language-Team: Slovak \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-14 16:28+0000\n"
"X-Generator: Launchpad (build 16532)\n"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5:%6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 pridané"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 späť"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 zmenené na %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 odstránené"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 odstránené."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 uložené."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 aktualizované."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 so vzorom %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) vytvoril %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Nezmenené)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (z panela %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - LogToScreen upraviť konfiguračné možnosti"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - An argument to pass to %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Výstupný stav ide do STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Určite, či chcete použiť či už 'first', 'last' alebo 'all' transakcie"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Zadajte názov alebo ID šablón(y), ktorý chcete použiť"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "Špecifikujte akú akciu modulu chcete pouťiť"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Zadajte čiarkami oddelený zoznam typov transakcí, ktoré chcete použiť"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Aký podmienkový modul chcete použiť"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Aký vyhľadávací modul chcete použiť"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr ""

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 pridané ako hodnota pre %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 už existuje a má tabulky RT na svojommieste, ale neobsahuje metadata RT. Neskorší krok 'Inicializovat databázu' vie vložiť metadata do tejto existujúcej databáze. Ak-lo to prijatelné, kliknite nížšie na 'Úprava základných údajov' pre pokračovanie v úprave RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 už existuje, ale neobsahuje RT tabuľky alebo metadáta. Neskôr v kroku 'Initialize Database' môžete vkladať tabuľky a metadáta do tejto existujúcej databázy. Ak je to prijateľné, kliknite na tlačidlo 'Customize Basic' nižšie pre pokračovanie prispôsobenia RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 vypadá ako lokálny objekt, ale nie je v databázi"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 sa zdá byť plne inicializována. Nebudeme potrebovať vytvoriť žiádne tabuľky ani vložiť metadata, ale môžete pokračovať v úprave RT kliknutím nižšie na 'Úprava základných údajov'"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 uživaťeľom %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 zmenené z %2 na %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 zmenené z '%2' na '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 graf podľa %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 kopírovať"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 konfiguračné jadro"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 nie je možné nastaviť na %2."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 vytvorené"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 zmazané"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 blokovaný"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1neexistuje"

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 povolené"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 najdôležitejších požiadaviek, ktoré vlastním"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 je nástroj na prácu s požiadavkami z externého plánovacieho nástroja, ako \"cron\"."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 je nástroj, ktorý má byť spustený z cronu, ktorý odošle všetky odložené RT oznámenia ako digest jednotlivému užívateľovi."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 je adresa RT na prijímanie pošty. Pridanie ako '% 2' by vytvorilo poštovú slučku"

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 nie je dlhšia %2 pre túto požiadavku."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr ""

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 posledná aktualizácia článkov"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 najnovšie články"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 najnovších požiadaviek bez vlastníka"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objekty"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr ""

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 aktualizovať: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 aktualizácia: Nič sa nezmenilo"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 aktualizované"

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr ""

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1's GnuPG kľúče"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1's aktuálne heslo"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "%1's panely"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1's uložené vyhľadávania"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1:  nebola špecifikovaná príloha"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Nová požiadavka v %2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,hodina,hodiny,hodín)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' neplatná hodnota pre stav"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr "'%1' je neplatné meno"

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' je neplatný identifikátor triedy"

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "'Roly'"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "'Systém'"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "'Skupiny užívateľov'"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "'Užívatelia'"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Zaškrtávacie políčko pre dokončiť)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Začiarkavacie políčko pre odstránenie)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "(Zaškrtávacie políčko pre zmazať)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Zadajte ID požiadavky alebo adresy URL, oddelené medzerami)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Ak nevyplníte, bude v predvolenom nastavení %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Žiadne vlastné polia)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Žiadny členovia)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Žiadne skripty)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Žiadne šablóny)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Žiadne)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr ""

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Použite tieto polia, ak zvolíte 'User Defined' pre podmienku alebo akciu)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(e-mail nebude odoslaný)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(žiadny)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(žiadny súhrn)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(bez názvu)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(žiadny verejný kľúč!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(žiadna hodnota)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(žiadne hodnoty)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(iba jedna požiadavka)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(čakajúce %quant(%1,ostatné požiadavky))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(čaká na schválenie)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(požadované)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(dôverovať: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(bez názvu)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(nedôveryhodný!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id je zastaraný argument a nemôže byť použitý s --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "--transaction argument može byť len 'first', 'last' alebo 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: etc/initialdata:215
msgid "A blank template"
msgstr "Prázdna šablóna"

#: share/html/Admin/Users/Modify.html:350
msgid "A password was not set, so user won't be able to login."
msgstr "Heslo nie je nastavené, takže užívateľ sa nebude môcť prihlásiť."

#: lib/RT/ACE.pm:169
msgid "ACE not found"
msgstr "ACE nebol nájdený"

#: lib/RT/ACE.pm:491
msgid "ACEs can only be created and deleted."
msgstr "ACE-sy môžu byť len vytvorené a zmazané."

#: share/html/Search/Elements/SelectAndOr:48
msgid "AND"
msgstr "a"

#: share/html/Elements/Tabs:482
msgid "About me"
msgstr "O mne"

#: share/html/Admin/Users/Modify.html:104
msgid "Access control"
msgstr "Kontrola prístupu"

#: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76
msgid "Action"
msgstr "Akcia"

#: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655
#. ($args{'ScripAction'})
#. ($value)
msgid "Action '%1' not found"
msgstr "Akcia '%1' nebola nájdená"

#: bin/rt-crontool:228
msgid "Action committed."
msgstr "Akcia vykonaná."

#: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650
msgid "Action is mandatory argument"
msgstr "Akcia je povinný argument"

#: bin/rt-crontool:224
msgid "Action prepared..."
msgstr "Akcia pripravená ..."

#: share/html/Elements/Tabs:529
msgid "Actions"
msgstr "Akcie"

#: share/html/Ticket/Elements/ShowRequestor:164
msgid "Active Tickets"
msgstr "Aktívne požiadavky"

#: share/html/Tools/MyDay.html:53
#. ($session{'CurrentUser'}->Name)
msgid "Active tickets for %1"
msgstr "Aktívne požiadavky z %1"

#: share/html/Admin/Elements/EditRights:136
#. (loc($AddPrincipal))
msgid "Add %1"
msgstr "Pridať %1"

#: share/html/Search/Bulk.html:93
msgid "Add AdminCc"
msgstr "Pridať AdminCc"

#: share/html/Ticket/Elements/Bookmark:90
msgid "Add Bookmark"
msgstr "Pridať záložku"

#: share/html/Search/Bulk.html:89
msgid "Add Cc"
msgstr "Pridať Cc"

#: share/html/Search/Elements/EditFormat:51
msgid "Add Columns"
msgstr "Pridať stĺpce"

#: share/html/Search/Elements/PickCriteria:48
msgid "Add Criteria"
msgstr "Aktuálne vyhľadávanie"

#: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134
msgid "Add More Files"
msgstr "Pridať ďalšie súbory"

#: share/html/Search/Bulk.html:85
msgid "Add Requestor"
msgstr "Pridať žiadateľa"

#: share/html/Admin/Elements/AddCustomFieldValue:48
msgid "Add Value"
msgstr "Pridať hodnotu"

#: share/html/Admin/Global/Scrip.html:61
msgid "Add a scrip which will apply to all queues"
msgstr "Pridať skript, ktorý sa bude vzťahovať na všetky fronty"

#: share/html/Search/Bulk.html:125
msgid "Add comments or replies to selected tickets"
msgstr "Pridať komentár alebo odpovede na vybrané tikety"

#: share/html/Admin/Elements/SelectNewGroupMembers:66
msgid "Add group"
msgstr "Pridať skupinu"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Add here"
msgstr "Pridať sem"

#: share/html/Admin/Groups/Members.html:63
msgid "Add members"
msgstr "Pridať členov"

#: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51
msgid "Add new watchers"
msgstr "Pridať nových pozorovateľov"

#: share/html/Admin/Elements/EditRights:200
#. (loc($AddPrincipal))
msgid "Add rights for this %1"
msgstr "Pridať práva pre %1"

#: share/html/Search/Build.html:83
msgid "Add these terms"
msgstr "Pridať tieto podmienky"

#: share/html/Search/Build.html:84
msgid "Add these terms and Search"
msgstr "Pridať tieto podmienky a vyhľadať"

#: share/html/Admin/Elements/SelectNewGroupMembers:49
msgid "Add user"
msgstr "Pridať používateľa"

#: share/html/Search/Bulk.html:172
msgid "Add values"
msgstr "Pridať hodnoty"

#: lib/RT/CustomField.pm:208
msgid "Add, modify and delete custom field values for objects"
msgstr "Pridať, zmeniť a zmazať hodnoty užívateľského poľa pre objekty"

#: lib/RT/Ticket.pm:1166
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Added %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:980
#. ($principal->Object->Name, $args{'Type'})
msgid "Added %1 to members of %2 for this queue."
msgstr "Pridaný %1 k členom v %2 pre túto frontu."

#: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106
msgid "Address"
msgstr "Adresa"

#: share/html/Elements/RT__User/ColumnMap:111
msgid "Address 2"
msgstr "Adresa 2"

#: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131
msgid "Address1"
msgstr "Adresa1"

#: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135
msgid "Address2"
msgstr "Adresa2"

#: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289
msgid "Admin Cc"
msgstr "Admin Cc"

#: etc/initialdata:292
msgid "Admin Comment"
msgstr "Admin komantár"

#: etc/initialdata:271
msgid "Admin Correspondence"
msgstr "Admin korešpondencia"

#: share/html/Admin/Queues/index.html:48
msgid "Admin queues"
msgstr "Admin fronty"

#: share/html/Admin/Global/index.html:48
msgid "Admin/Global configuration"
msgstr "Admin / Globálna konfigurácia"

#: lib/RT/Tickets.pm:151
msgid "AdminCCGroup"
msgstr ""

#: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304
msgid "AdminCc"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154
msgid "AdminCcs"
msgstr "AdminCCs"

#: lib/RT/Class.pm:94
msgid "AdminClass"
msgstr ""

#: lib/RT/CustomField.pm:206
msgid "AdminCustomField"
msgstr ""

#: lib/RT/CustomField.pm:207
msgid "AdminCustomFieldValues"
msgstr ""

#: lib/RT/Group.pm:94
msgid "AdminGroup"
msgstr ""

#: lib/RT/Group.pm:95
msgid "AdminGroupMembership"
msgstr ""

#: lib/RT/Queue.pm:93
msgid "AdminQueue"
msgstr ""

#: lib/RT/Class.pm:95
msgid "AdminTopics"
msgstr "AdminTopics"

#: lib/RT/System.pm:81
msgid "AdminUsers"
msgstr ""

#: share/html/Ticket/Elements/EditPeople:76
msgid "Administrative Cc"
msgstr ""

#: lib/RT/Installer.pm:157
msgid "Administrative password"
msgstr ""

#: share/html/Elements/Tabs:740
msgid "Advanced"
msgstr "Rozšírené"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51
msgid "Advanced search"
msgstr "Rozšírené hľadanie"

#: share/html/Elements/LoginRedirectWarning:62
msgid "After logging in you'll be sent to your original destination:"
msgstr "Po prihlásení budete poslaný k pôvodnému cieľu:"

#: share/html/Search/Elements/PickCriteria:59
msgid "Aggregator"
msgstr "Agregátor"

#: etc/initialdata:363 etc/upgrade/3.8.2/content:69
msgid "All Approvals Passed"
msgstr "Všetky schválenia prešli"

#: share/html/Admin/Articles/Classes/Modify.html:75
msgid "All Articles in this class should be listed in a dropdown of the ticket reply page"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:76
msgid "All Classes"
msgstr "Všetky triedy"

#: share/html/Elements/Tabs:417
msgid "All Dashboards"
msgstr "Všetky panely"

#: share/html/Admin/Queues/index.html:110
msgid "All Queues"
msgstr "Všetky fronty"

#: share/html/Ticket/Elements/ShowRequestor:166
msgid "All Tickets"
msgstr "Všetky požiadavky"

#: share/html/User/Prefs.html:172
msgid "All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below."
msgstr ""

#: share/html/Admin/Queues/index.html:98
msgid "All queues matching search criteria"
msgstr "Všetky fronty zodpovedajúce kritériam vyhľadávania"

#: share/html/m/_elements/menu:82
msgid "All tickets"
msgstr "Všetky požiadavky"

#: share/html/Articles/Topics.html:51
msgid "All topics"
msgstr "Všetky témy"

#: lib/RT/System.pm:87
msgid "Allow creation of saved searches"
msgstr "Povoliť vytvorenie pre uložené vyhľadávania"

#: lib/RT/System.pm:86
msgid "Allow loading of saved searches"
msgstr "Povoliť nahratie z uložených vyhľadávaní"

#: lib/RT/System.pm:88
msgid "Allow writing Perl code in templates, scrips, etc"
msgstr "Povolť zapisovať Perl kód v šablonách, skriptoch atď"

#: lib/RT/Attachment.pm:724
msgid "Already encrypted"
msgstr "Už šifrované"

#: share/html/Search/Elements/EditQuery:60
msgid "And/Or"
msgstr "A/Alebo"

#: lib/RT/Report/Tickets.pm:76
msgid "Annually"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:74
msgid "Any field"
msgstr "Nejaké pole"

#: share/html/Search/Simple.html:65
msgid "Any word not recognized by RT is searched for in ticket subjects."
msgstr "Nejaké slovo"

#: share/html/Elements/RT__CustomField/ColumnMap:90
msgid "Applied"
msgstr "Použité"

#: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379
msgid "Applies to"
msgstr "Platí pre"

#: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57
msgid "Applies to all objects"
msgstr "Vzťahuje sa na všetky objekty"

#: share/html/Search/Edit.html:62
msgid "Apply"
msgstr "Použiť"

#: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61
msgid "Apply globally"
msgstr "Použiť globálne"

#: share/html/Search/Edit.html:62
msgid "Apply your changes"
msgstr "Použiť vaše zmeny"

#: share/html/Elements/Tabs:457
msgid "Approval"
msgstr "Schválenie"

#: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88
#. ($Ticket->Id, $Ticket->Subject)
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($ticket->id, $msg)
msgid "Approval #%1: %2"
msgstr "Schválenie #%1: %2"

#: share/html/Approvals/index.html:77
#. ($ticket->Id)
msgid "Approval #%1: Notes not recorded due to a system error"
msgstr "Schvalovanie #%1: Poznámky nie sú zaznamenané kvôli systémovej chybe"

#: share/html/Approvals/index.html:75
#. ($ticket->Id)
msgid "Approval #%1: Notes recorded"
msgstr "Schvalovanie #%1:  Poznámky zaznamenané"

#: etc/initialdata:349 etc/upgrade/3.8.2/content:55
msgid "Approval Passed"
msgstr "Schválenie prešlo"

#: etc/initialdata:390 etc/upgrade/3.8.2/content:96
msgid "Approval Ready for Owner"
msgstr "Schválenie pripravené pre vlastníka"

#: etc/initialdata:377 etc/upgrade/3.8.2/content:83
msgid "Approval Rejected"
msgstr "Schválenie zamietnuté"

#: share/html/Approvals/Elements/Approve:75
msgid "Approve"
msgstr "Schváliť"

#: lib/RT/Date.pm:94
msgid "Apr"
msgstr "Apr"

#: share/html/Articles/Article/Delete.html:56
msgid "Are you sure you want to delete this article?"
msgstr "Ste si istý, že chcete zmazať tento článok?"

#: share/html/Articles/Article/Delete.html:97
#. ($ArticleObj->Id)
msgid "Article #%1 deleted"
msgstr "Článok #%1 zmazaný"

#: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66
#. ($article->Id, $article->Name || loc("(no name)"))
msgid "Article #%1: %2"
msgstr "Článok #%1: %2"

#: lib/RT/URI/fsck_com_article.pm:207
#. ($self->Object->id)
msgid "Article %1"
msgstr "Článok %1"

#: lib/RT/Article.pm:215
#. ($self->id)
msgid "Article %1 created"
msgstr "Článok %1 vytvorený"

#: share/html/Admin/Articles/index.html:48
msgid "Article Administration"
msgstr "Spravovať článok"

#: lib/RT/Article.pm:323
msgid "Article Deleted"
msgstr "Článok zmazaný"

#: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60
msgid "Article not found"
msgstr "Článok sa nenašiel"

#: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430
msgid "Articles"
msgstr "Články"

#: share/html/Articles/Topics.html:99
#. ($currtopic->Name)
msgid "Articles in %1"
msgstr "Články v %1"

#: share/html/SelfService/Article/Search.html:64
#. ($Articles_Content)
msgid "Articles matching %1"
msgstr "Články zodpovedajúce %1"

#: share/html/Articles/Topics.html:101
msgid "Articles with no topics"
msgstr "Články bez tém"

#: share/html/Search/Elements/EditSort:79
msgid "Asc"
msgstr "Stúp"

#: share/html/Elements/SelectSortOrder:58
msgid "Ascending"
msgstr "Vzostupne"

#: lib/RT/Queue.pm:99
msgid "Assign and remove queue custom fields"
msgstr "Pridanie a odobratie užívateľských polí fronte"

#: lib/RT/Queue.pm:99
msgid "AssignCustomFields"
msgstr "Pridanie užív. polí"

#: share/html/Ticket/Elements/AddAttachments:59
msgid "Attach"
msgstr "Pripojiť"

#: share/html/m/ticket/create:320 share/html/m/ticket/reply:131
msgid "Attach file"
msgstr "Pripojiť súbor"

#: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120
msgid "Attached file"
msgstr "Priložený súbor"

#: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53
msgid "Attachment"
msgstr "Príloha"

#: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88
#. ($Attachment)
msgid "Attachment '%1' could not be loaded"
msgstr "Príloha '%1' sa nedá načítať"

#: lib/RT/Transaction.pm:558
msgid "Attachment created"
msgstr "Prílohu vytvoril"

#: lib/RT/Tickets.pm:2412
msgid "Attachment filename"
msgstr "Názov prílohy"

#: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311
msgid "Attachments"
msgstr "Prílohy"

#: lib/RT/Attachment.pm:717
msgid "Attachments encryption is disabled"
msgstr "Šifrovanie prílohy je vypnuté"

#: lib/RT/Attributes.pm:196
msgid "Attribute Deleted"
msgstr "Atribút zmazaný"

#: lib/RT/Date.pm:98
msgid "Aug"
msgstr "Aug"

#: share/html/Admin/Tools/Theme.html:276
#. ($valid_image_types)
msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types."
msgstr "Automaticky navrhnuté farby motívu nie sú k dispozícii pre váš obrázok. To môže byť preto, že ste nahrali typ obrazu, ktorý nainštalovaná verzia GD nepodporuje. Podporované typy sú: %1. Môžete prekompilovať libgd a do GD.pm zahrnúť podporu pre ďalšie typy obrázkov."

#: etc/initialdata:218
msgid "Autoreply"
msgstr "Automatická odpoveď"

#: etc/initialdata:28
msgid "Autoreply To Requestors"
msgstr "Auto-odpoveď žiadateľom"

#: share/html/Widgets/SelectionBox:193
msgid "Available"
msgstr "Dostupný"

#: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64
msgid "Back"
msgstr "Späť"

#: lib/RT/SharedSetting.pm:150
#. ($id)
msgid "Bad privacy for attribute %1"
msgstr "Zlý osobný údaj pre atribút %1"

#: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60
msgid "Basics"
msgstr "Základné"

#: share/html/Ticket/Forward.html:72
msgid "Bcc"
msgstr "Skrytá kópia"

#: etc/initialdata:214
msgid "Blank"
msgstr "Prázdne"

#: share/html/Dashboards/Queries.html:182
msgid "Body"
msgstr "Obsah"

#: share/html/Search/Elements/EditFormat:96
msgid "Bold"
msgstr "Tučné"

#: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251
msgid "Bookmark"
msgstr "Záložka"

#: share/html/Articles/Article/Search.html:107
msgid "Bookmarkable link for this search"
msgstr "Bookmarkable odkaz na toto vyhľadávanie"

#: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3
msgid "Bookmarked Tickets"
msgstr "Bookmarkable požiadavky"

#: share/html/m/_elements/menu:73
msgid "Bookmarked tickets"
msgstr "Bookmarkable požiadavky"

#: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60
msgid "Browse by topic"
msgstr "Prezerať podľa témy"

#: share/html/Elements/Tabs:225
msgid "Browse the SQL queries made in this process"
msgstr "Prezerať SQL dotazy vykonané v tomto procese"

#: share/html/Elements/Tabs:746
msgid "Bulk Update"
msgstr "Hromadná aktualizácia"

#: lib/RT/Tickets.pm:150
msgid "CCGroup"
msgstr "CCSkupina"

#: lib/RT/Tickets.pm:147
msgid "CF"
msgstr "CF"

#: share/html/Search/Simple.html:87
#. ('cf.Name:value')
msgid "CFs may be searched using a similar syntax as above with %1."
msgstr ""

#: share/html/Search/Elements/EditSearches:175
#. ($ARGS{'SavedSearchLoad'})
msgid "Can not load saved search \"%1\""
msgstr "Nemôžem nahrať uložené vyhľadávaie \"%1\""

#: lib/RT/User.pm:1508
msgid "Can not modify system users"
msgstr "Nie je možné zmeniť užívateľa systému"

#: lib/RT/CustomField.pm:554
msgid "Can't add a custom field value without a name"
msgstr "Nemôžem pridať hodnotu užív. poľa bez názvu"

#: share/html/Search/Elements/EditSearches:313
msgid "Can't find a saved search to work with"
msgstr "Nemožno nájsť uložené hľadania pre prácu s"

#: lib/RT/Link.pm:137
msgid "Can't link a ticket to itself"
msgstr "Nedá sa prepojiť požiadavka na seba"

#: lib/RT/Reminders.pm:126
msgid "Can't link to a deleted ticket"
msgstr ""

#: share/html/Widgets/SavedSearch:132
#. (loc($self->{SearchType}))
msgid "Can't save %1"
msgstr "Nemožno uložiť %1"

#: share/html/Search/Elements/EditSearches:317
msgid "Can't save this search"
msgstr "Nemožno uložiť toto vyhľadávanie"

#: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385
msgid "Can't specifiy both base and target"
msgstr "Nemožno špecifikovať základ a cieľ"

#: lib/RT/Article.pm:397
msgid "Cannot add link to plain number"
msgstr "Nemožno pridať odkaz na prosté číslo"

#: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148
msgid "Cannot create tickets in a disabled queue."
msgstr "Nemožno vytvoriť požiadavky v blokovanej fronte."

#: share/html/Admin/CustomFields/Modify.html:121
msgid "Categories are based on"
msgstr "Kategórie sú založené na"

#: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61
msgid "Category"
msgstr "Kategória"

#: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300
msgid "Cc"
msgstr "Kópia"

#: lib/RT/Graph/Tickets.pm:154
msgid "Ccs"
msgstr "Ccs"

#: share/html/Install/index.html:64 share/html/Search/Results.html:77
msgid "Change"
msgstr "Zmeniť"

#: lib/RT/Approval/Rule/Created.pm:56
msgid "Change Approval ticket to open status"
msgstr "Schválenie zmeny tiketu do otvoreného stavu"

#: share/html/SelfService/Prefs.html:53
msgid "Change password"
msgstr "Zmeniť heslo"

#: share/html/Elements/Tabs:747
msgid "Chart"
msgstr "Graf"

#: share/html/Search/Chart.html:122
msgid "Chart Properties"
msgstr "Vlastnosti grafu"

#: share/html/Elements/Submit:102
msgid "Check All"
msgstr "Označiť všetko"

#: share/html/Install/DatabaseDetails.html:88
msgid "Check Database Connectivity"
msgstr "Skontrolujte databázové pripojenie"

#: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70
msgid "Check Database Credentials"
msgstr "Skontrolujte, či databáza poverenia"

#: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122
msgid "Check box to delete"
msgstr "Zaškrtávacie políčko pre odstrániť"

#: share/html/Admin/Elements/SelectRights:66
msgid "Check box to revoke right"
msgstr "Zaškrtávacie políčko pre zrušiť právo"

#: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462
msgid "Children"
msgstr "Potomok"

#: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48
msgid "Choose Database Engine"
msgstr "Vyberte databazový prostriedok"

#: share/html/Articles/Elements/BeforeMessageBox:97
#. ($QueueObj->Name)
msgid "Choose from Topics for %1"
msgstr "Vyberte si z tém pre %1"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139
msgid "City"
msgstr "Mesto"

#: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75
msgid "Class"
msgstr "Trieda"

#: share/html/Admin/Articles/Classes/Modify.html:62
msgid "Class Name"
msgstr "Názov triedy"

#: share/html/Admin/Articles/Classes/Modify.html:118
#. ($msg)
msgid "Class could not be created: %1"
msgstr "Trieda nemohla byť vytvorená: %1"

#: share/html/Elements/RT__Article/ColumnMap:70
msgid "Class id"
msgstr "ID tiredy"

#: lib/RT/Class.pm:408
msgid "Class is already applied Globally"
msgstr "Trieda je už aplikovaná globálne"

#: lib/RT/Class.pm:403
#. ($queue->Name)
msgid "Class is already applied to %1"
msgstr "Trieda je už aplikovaná na %1"

#: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370
msgid "Classes"
msgstr "Triedy"

#: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221
msgid "Clear"
msgstr "Vyčistiť"

#: share/html/Elements/Submit:104
msgid "Clear All"
msgstr "Vyčistiť všetko"

#: share/html/Install/Finish.html:52
msgid "Click \"Finish Installation\" below to complete this wizard."
msgstr "Kliknite na \"Dokončiť inštaláciu\" nižšie k ukončeniu tohto sprievodcu."

#: share/html/Install/Initialize.html:54
msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments"
msgstr "Kliknite na \"Inicializáciu databázy\" a vytvori sa Rt databáza a vložia sa počiatočné metadáta. Toto môže trvať niekoľko okamihov"

#: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404
msgid "Closed"
msgstr "Uzatvoriť"

#: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48
msgid "Closed tickets"
msgstr "Uzatvorené požiadavky"

#: lib/RT/CustomField.pm:140
msgid "Combobox: Select or enter multiple values"
msgstr "ComboBox: Vyberte alebo zadajte viac hodnôt"

#: lib/RT/CustomField.pm:141
msgid "Combobox: Select or enter one value"
msgstr "ComboBox: Vyberte alebo zadajte hodnotu"

#: lib/RT/CustomField.pm:142
msgid "Combobox: Select or enter up to %1 values"
msgstr "ComboBox: Vyberte alebo zadajte %1 hodnôt"

#: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212
msgid "Comment"
msgstr "Poznámka"

#: share/html/Admin/Queues/Modify.html:83
msgid "Comment Address"
msgstr "Adresa komentára"

#: lib/RT/Installer.pm:172
msgid "Comment address"
msgstr "Adresa komentára"

#: lib/RT/Queue.pm:114
msgid "Comment on tickets"
msgstr "Komentovať požiadavky"

#: lib/RT/Queue.pm:114
msgid "CommentOnTicket"
msgstr "Komentár k požiadavke"

#: share/html/Tools/MyDay.html:64
msgid "Comments"
msgstr "Komentáre"

#: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89
msgid "Comments (Not sent to requestors)"
msgstr "Komentáre"

#: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83
msgid "Comments about this user"
msgstr "Komentáre o tomto užívateľovi"

#: lib/RT/Transaction.pm:714
msgid "Comments added"
msgstr "Komentáre pridané"

#: lib/RT/Action.pm:155 lib/RT/Rule.pm:74
msgid "Commit Stubbed"
msgstr ""

#: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72
msgid "Condition"
msgstr "Podmienka"

#: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676
#. ($args{'ScripCondition'})
#. ($value)
msgid "Condition '%1' not found"
msgstr "Podmienka '%1' sa nenašla"

#: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669
msgid "Condition is mandatory argument"
msgstr "Podmienka je povinným argumentom"

#: bin/rt-crontool:208
msgid "Condition matches..."
msgstr "Podmienka je povinný argument"

#: share/html/Elements/RT__Scrip/ColumnMap:84
msgid "Condition, Action and Template"
msgstr "Podmienka, Akcia a Šablóny"

#: share/html/Install/index.html:107
#. ($file)
msgid "Config file %1 is locked"
msgstr "Konfiguračný súbor %1 je zamknutý"

#: share/html/Elements/Tabs:64
msgid "Configuration"
msgstr "Konfigurácia"

#: share/html/Admin/Queues/Modify.html:184
#. ($QueueObj->Name)
msgid "Configuration for queue %1"
msgstr "Konfigurácia pre frontu %1"

#: share/html/Install/DatabaseDetails.html:141
msgid "Connection succeeded"
msgstr "Pripojenie úspešné"

#: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113
msgid "Content"
msgstr "Obsah"

#: lib/RT/ObjectCustomFieldValue.pm:99
msgid "Content is an invalid IP address"
msgstr "Obsah je neplatná IP adresa"

#: lib/RT/ObjectCustomFieldValue.pm:113
msgid "Content is an invalid IP address range"
msgstr "Obsah je nesprávny IP rozsah adries"

#: share/html/Elements/SelectAttachmentField:53
msgid "Content-Type"
msgstr "Typ obsahu"

#: lib/RT/Tickets.pm:134
msgid "ContentType"
msgstr "TypObsahu"

#: lib/RT/Installer.pm:180
msgid "Correspond address"
msgstr "Rovnaké adresy"

#: etc/initialdata:283
msgid "Correspondence"
msgstr "Korešpondencia"

#: lib/RT/Transaction.pm:710
msgid "Correspondence added"
msgstr "Korešpondencia pridaná"

#: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813
#. ($msg)
#. ($value_msg)
msgid "Could not add new custom field value: %1"
msgstr "Nemôžem pridať novú hodnotu poľa: %1"

#: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026
#. ($add_msg)
#. ($del_msg)
#. ($msg)
msgid "Could not change owner: %1"
msgstr "Nemôžem zmeniť vlastníka: %1"

#: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115
#. ($msg)
msgid "Could not create CustomField: %1"
msgstr "Nemôžem vytvoriť vlastnépole: %1"

#: lib/RT/Group.pm:450 lib/RT/Group.pm:457
msgid "Could not create group"
msgstr "Nemôžem vytvoriť skupinu"

#: share/html/Articles/Article/Search.html:197
#. ($msg)
msgid "Could not create search: %1"
msgstr "Nemôžem vytvoriť vyhľadávanie: %1"

#: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83
#. ($msg)
msgid "Could not create template: %1"
msgstr "Nemožno vytvoriť šablónu: %1"

#: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836
msgid "Could not create ticket. Queue not set"
msgstr "Nemožno vytvoriť požiadavku. Fronta nie je nastavená."

#: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445
msgid "Could not create user"
msgstr "Nemožno vytvoriť užívateľa."

#: share/html/Articles/Article/Search.html:237
#. ($searchname, $msg)
msgid "Could not delete search %1: %2"
msgstr "Nemožno zmazať vyhľadávanie %1: %2"

#: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131
msgid "Could not find or create that user"
msgstr "Nemožno nájsť alebo vytvoriť tohto užívateľa"

#: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213
msgid "Could not find that principal"
msgstr "Nemožno nájsť tohto vedúceho"

#: lib/RT/SharedSetting.pm:242
#. ($self->ObjectName)
msgid "Could not load %1 attribute"
msgstr "Nemožno nahrať %1 atribút"

#: share/html/Admin/Articles/Classes/Objects.html:105
msgid "Could not load Class %1"
msgstr "Nemožno nahrať triedu %1"

#: share/html/Admin/CustomFields/Objects.html:109
#. ($id)
msgid "Could not load CustomField %1"
msgstr "Nemožno načítať vlastné pole %1"

#: share/html/Admin/Groups/Members.html:115
msgid "Could not load group"
msgstr "Nemožno načítať skupinu"

#: lib/RT/SharedSetting.pm:126
#. ($privacy)
msgid "Could not load object for %1"
msgstr "Nemožno načítať objekt pre %1"

#: lib/RT/Queue.pm:978
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not make %1 a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1154
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "Could not make %1 a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:1060
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1280
#. ($principal->Object->Name, $args{'Type'})
msgid "Could not remove %1 as a %2 for this ticket"
msgstr ""

#: lib/RT/User.pm:139
msgid "Could not set user info"
msgstr "Nemožno nastaviť informácie o užívateľovi"

#: lib/RT/Transaction.pm:163
msgid "Couldn't add attachment"
msgstr "Nemožno pridať prílohu"

#: lib/RT/Group.pm:949
msgid "Couldn't add member to group"
msgstr "Nemožno pridať člena do skupiny"

#: lib/RT/CustomField.pm:1383
msgid "Couldn't apply custom field to an object as it's global already"
msgstr ""

#: lib/RT/Scrip.pm:637
#. ($method, $code, $error)
msgid "Couldn't compile %1 codeblock '%2': %3"
msgstr ""

#: lib/RT/Template.pm:721
#. ($fi_text, $error)
msgid "Couldn't compile template codeblock '%1': %2"
msgstr "Nemožno skompilovať šablónu blok-kódu '%1': %2"

#: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873
#. ($Msg)
#. ($msg)
msgid "Couldn't create a transaction: %1"
msgstr "Nemožno vytvoriť transakciu: %1"

#: lib/RT/CustomField.pm:1513
#. ($msg)
msgid "Couldn't create record: %1"
msgstr "Nemožno vytvoriť záznam: %1"

#: share/html/Dashboards/Modify.html:154
#. ($id, $msg)
msgid "Couldn't delete dashboard %1: %2"
msgstr "Nemožno odstrániť panel %1: %2"

#: lib/RT/Record.pm:973
msgid "Couldn't find row"
msgstr "Nemožno nájsť riadok"

#: bin/rt-crontool:179
msgid "Couldn't find suitable transaction, skipping"
msgstr "Nemožno nájsť vhodnú transakciu, preskakujem"

#: lib/RT/Group.pm:923
msgid "Couldn't find that principal"
msgstr "Nemožno nájsť vedúceho (splnomocniteľa)"

#: lib/RT/CustomField.pm:582
msgid "Couldn't find that value"
msgstr "Nemôžem nájsť túto hodnotu"

#: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66
#. ($id)
msgid "Couldn't load Class %1"
msgstr "Nemožno načítať triedu %1"

#: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86
#. ($cf_id)
msgid "Couldn't load Custom Field #%1"
msgstr "Nemožno načítať vlastné pole #%1"

#: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145
#. ($cf_id)
msgid "Couldn't load CustomField #%1"
msgstr "Nemožno načítať vlastné pole #%1"

#: share/html/Admin/CustomFields/GroupRights.html:66
#. ($id)
msgid "Couldn't load CustomField %1"
msgstr "Nemožno načítať vlastné pole #%1"

#: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780
#. ($self->Id)
msgid "Couldn't load copy of ticket #%1."
msgstr "Nemožno načítať kópiu požiadavky #%1."

#: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198
#. ($id, $msg)
msgid "Couldn't load dashboard %1: %2"
msgstr "Nemožno načítať panel %1:%2"

#: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110
#. ($gid)
msgid "Couldn't load group #%1"
msgstr "Nemožno načítať skupinu #%1"

#: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67
#. ($id)
msgid "Couldn't load group %1"
msgstr "Nemožno načítať skupinu %1"

#: lib/RT/Link.pm:212
msgid "Couldn't load link"
msgstr "Nemožno načítať odkaz"

#: lib/RT/Link.pm:185
#. ($msg)
msgid "Couldn't load link: %1"
msgstr ""

#: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56
#. ($id)
msgid "Couldn't load object %1"
msgstr "Nemožno načítať objekt %1"

#: lib/RT/Ticket.pm:453
#. ($msg)
msgid "Couldn't load or create user: %1"
msgstr "Nemožno načítať alebo vytvoriť užívateľa: %1"

#: share/html/Admin/Queues/People.html:132
#. ($id)
msgid "Couldn't load queue"
msgstr "Nemožno načítať frontu"

#: share/html/Admin/Elements/EditScrips:86
#. ($id)
msgid "Couldn't load queue #%1"
msgstr "Nemožno načítať frontu #%1"

#: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72
#. ($id)
msgid "Couldn't load queue %1"
msgstr "Nemožno načítať frontu %1"

#: share/html/Admin/Queues/Modify.html:179
#. ($Name)
msgid "Couldn't load queue '%1'"
msgstr "Nemožno načítať frontu '%1'"

#: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190
#. ($id)
msgid "Couldn't load scrip #%1"
msgstr "Nemožno načítať skript #%1"

#: share/html/Admin/Elements/EditTemplates:105
#. ($id)
msgid "Couldn't load template #%1"
msgstr "Nemožno načítať šablónu #%1"

#: lib/RT/Interface/Web.pm:2292
msgid "Couldn't load the specified principal"
msgstr "Nemožno načítať špcifikovaného vedúceho (splnomocniteľa)"

#: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132
#. ($id)
msgid "Couldn't load ticket '%1'"
msgstr "Nemožno načítať požiadavku '%1'"

#: lib/RT/Article.pm:520
msgid "Couldn't load topic membership while trying to delete it"
msgstr "Nemožno načítať tému členstva a zároveň sa snažiť ju odstrániť"

#: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71
#. ($QuoteTransaction)
#. ($id)
msgid "Couldn't load transaction #%1"
msgstr "Nemožno načítať transakciu #%1"

#: share/html/User/Prefs.html:215
msgid "Couldn't load user"
msgstr "Nemožno načítať užívateľa"

#: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211
#. ($id)
msgid "Couldn't load user #%1"
msgstr "Nemožno načítať užívateľa #%1"

#: share/html/User/Prefs.html:209
#. ($id, $Name)
msgid "Couldn't load user #%1 or user '%2'"
msgstr "Nemožno načítať užívateľa #%1 alebo užívateľa '%2'"

#: share/html/User/Prefs.html:213
#. ($Name)
msgid "Couldn't load user '%1'"
msgstr "Nemožno načítať užívateľa '%1'"

#: lib/RT/Link.pm:174
#. ($args{Base})
msgid "Couldn't parse Base URI: %1"
msgstr ""

#: lib/RT/Link.pm:178
#. ($args{Target})
msgid "Couldn't parse Target URI: %1"
msgstr ""

#: lib/RT/Ticket.pm:1058
#. ($args{'Email'})
msgid "Couldn't parse address from '%1' string"
msgstr "Nemožno analyzovať adresu z reťazeca '%1'"

#: lib/RT/Attachment.pm:800
#. ($msg)
msgid "Couldn't replace content with decrypted data: %1"
msgstr "Nemožno nahradiť obsah s dešifrovanými dátami: %1"

#: lib/RT/Attachment.pm:765
#. ($msg)
msgid "Couldn't replace content with encrypted data: %1"
msgstr "Nemožno nahradiť obsah s šifrovanými dátami: %1"

#: lib/RT/Article.pm:403
#. ($args{'Target'} || $args{'Base'})
msgid "Couldn't resolve '%1' into a Link."
msgstr "Nemožno vyriešiť '%1' vložením linku."

#: lib/RT/Ticket.pm:2585
#. ($args{'URI'})
msgid "Couldn't resolve '%1' into a URI."
msgstr "Nemožno vyriešiť '%1' vložením URI."

#: lib/RT/Link.pm:100
#. ($args{'Base'})
msgid "Couldn't resolve base '%1' into a URI."
msgstr ""

#: lib/RT/Link.pm:107
#. ($args{'Target'})
msgid "Couldn't resolve target '%1' into a URI."
msgstr "Nemôžem vyriešiť (rozoznať) cieľ '%1' v URI."

#: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795
msgid "Couldn't send email"
msgstr "Nemožno poslať email"

#: lib/RT/Ticket.pm:558
#. ($type, $msg)
msgid "Couldn't set %1 watcher: %2"
msgstr ""

#: lib/RT/User.pm:1657
msgid "Couldn't set private key"
msgstr "Nemožno nastviť súkromný kľúč"

#: lib/RT/User.pm:1641
msgid "Couldn't unset private key"
msgstr "Nemožno vypúť súkromný kľúč"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151
msgid "Country"
msgstr "Krajina"

#: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407
msgid "Create"
msgstr "Vytvoriť"

#: etc/initialdata:91
msgid "Create Tickets"
msgstr "Vytvoriť požiadavky"

#: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129
msgid "Create a Class"
msgstr "Vytvoriť triedu"

#: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98
msgid "Create a CustomField"
msgstr "Vytvoriť vlastné pole"

#: share/html/Admin/Queues/CustomField.html:65
#. ($QueueObj->Name())
msgid "Create a CustomField for queue %1"
msgstr "Vytvoriť vlastné pole pre frontu %1"

#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
msgid "Create a new article"
msgstr "Vytvoriť nový článok"

#: share/html/Articles/Article/ExtractIntoClass.html:52
msgid "Create a new article in"
msgstr "Vytvoriť nový článok v"

#: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98
msgid "Create a new dashboard"
msgstr "Vytvoriť nový panel"

#: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124
msgid "Create a new group"
msgstr "Vytvoriť novú skupinu"

#: share/html/Admin/Queues/Template.html:110
#. ($QueueObj->Name)
msgid "Create a new template for queue %1"
msgstr "Vytvoriť novú šablónu pre frontu %1"

#: share/html/Ticket/Create.html:347
msgid "Create a new ticket"
msgstr "Vytvoriť novú požiadavku"

#: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295
msgid "Create a new user"
msgstr "Vytvoriť nového užívateľa"

#: share/html/Admin/Queues/Modify.html:229
msgid "Create a queue"
msgstr "Vytvoriť frontu"

#: share/html/Admin/Queues/Scrip.html:68
#. ($QueueObj->Name)
msgid "Create a scrip for queue %1"
msgstr "Vytvoriť skript pre frontu %1"

#: share/html/Admin/Global/Template.html:77
msgid "Create a template"
msgstr "Vytvoriť šablónu"

#: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53
msgid "Create a ticket"
msgstr "Vytvoriť požiadavku"

#: share/html/Articles/Elements/CreateArticle:48
msgid "Create an article"
msgstr "Vytvoriť článok"

#: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49
msgid "Create an article in class..."
msgstr "Vytvoriť článok v triede..."

#: lib/RT/Class.pm:89
msgid "Create articles in this class"
msgstr "Vytvoriť články v tejto triede"

#: lib/RT/Group.pm:101
msgid "Create group dashboards"
msgstr "Vytvoriť skupinu riadiacich panelov"

#: etc/initialdata:93
msgid "Create new tickets based on this scrip's template"
msgstr "Vytvoriť nové požiadavky na základe tejto šablóny"

#: lib/RT/Dashboard.pm:87
msgid "Create personal dashboards"
msgstr "Vytvoriť osobné riadiace panely"

#: lib/RT/Dashboard.pm:82
msgid "Create system dashboards"
msgstr "Vytvoriť systémové riadiace panely"

#: share/html/SelfService/Create.html:104
msgid "Create ticket"
msgstr "Vytvoriť požiadavku"

#: lib/RT/Queue.pm:112
msgid "Create tickets"
msgstr "Vytvoriť požiadavky"

#: share/html/Elements/Tabs:451
msgid "Create tickets offline"
msgstr "Vytvoriť požiadavky offline"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "Create, modify and delete Access Control List entries"
msgstr "Vytvoriť, upraviť a zmazať položky prístupového zoznamu"

#: lib/RT/CustomField.pm:206
msgid "Create, modify and delete custom fields"
msgstr "Vytvárať, upravovať a mazať vlastné pole"

#: lib/RT/CustomField.pm:207
msgid "Create, modify and delete custom fields values"
msgstr "Vytvárať, upravovať a mazať vlastné pole hodnôt"

#: lib/RT/Queue.pm:93
msgid "Create, modify and delete queue"
msgstr "Vytvárať, upravovať a mazať frontu"

#: lib/RT/Group.pm:97
msgid "Create, modify and delete saved searches"
msgstr "Vytvárať, upravovať a mazať uložené vyhľadávania"

#: lib/RT/System.pm:81
msgid "Create, modify and delete users"
msgstr "Vytvárať, upravovať a mazať užívateľa"

#: lib/RT/Class.pm:89
msgid "CreateArticle"
msgstr "Vytvárať články"

#: lib/RT/Dashboard.pm:82
msgid "CreateDashboard"
msgstr "Vytvárať panely"

#: lib/RT/Group.pm:101
msgid "CreateGroupDashboard"
msgstr "Vytvárať skupinu panelu"

#: lib/RT/Dashboard.pm:87
msgid "CreateOwnDashboard"
msgstr "Vytvárať vlastný panel"

#: lib/RT/System.pm:87
msgid "CreateSavedSearch"
msgstr ""

#: lib/RT/Queue.pm:112
msgid "CreateTicket"
msgstr "Vytvárať požiadavky"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379
msgid "Created"
msgstr "Vytvorené"

#: share/html/Elements/ColumnMap:76
msgid "Created By"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Created CustomField %1"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53
msgid "Created by"
msgstr "Vytvoril"

#: share/html/Articles/Article/Search.html:193
#. ($search->Name)
msgid "Created search %1"
msgstr "Vytvorené vyhľadávanie %1"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedBy"
msgstr "Vytvoril"

#: share/html/Search/Elements/BuildFormatString:100
msgid "CreatedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115
msgid "Creator"
msgstr "Tvorca"

#: share/html/Prefs/Other.html:71
msgid "Cryptography"
msgstr ""

#: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51
msgid "Current Links"
msgstr "Aktuálne prepojenia"

#: share/html/Admin/Elements/EditScrips:53
msgid "Current Scrips"
msgstr "Aktuálne skripty"

#: share/html/Elements/Tabs:731
msgid "Current Search"
msgstr "Aktuálne vyhľadávanie"

#: share/html/Admin/Groups/Members.html:60
msgid "Current members"
msgstr "Súčasní členovia"

#: share/html/Admin/Elements/SelectRights:62
msgid "Current rights"
msgstr "Súčasné práva"

#: share/html/Search/Elements/EditQuery:49
msgid "Current search"
msgstr "Aktuálne vyhľadávanie"

#: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68
msgid "Current watchers"
msgstr "Aktuálni dozorcovia"

#: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257
msgid "Custom Fields"
msgstr "Vlastné polia"

#: share/html/Admin/CustomFields/index.html:53
#. ($tmp->FriendlyLookupType( $Type ))
msgid "Custom Fields for %1"
msgstr "Vlastné polia pre %1"

#: share/html/Admin/Queues/CustomFields.html:61
#. ($Object->Name)
msgid "Custom Fields for queue %1"
msgstr "Vlastné polia pre frontu %1"

#: share/html/Admin/Elements/EditScrip:117
msgid "Custom action cleanup code"
msgstr "Vlastna akcia čistiaceho kódu"

#: share/html/Admin/Elements/EditScrip:110
msgid "Custom action preparation code"
msgstr "Vlastná akcia prípravy kódu"

#: share/html/Admin/Elements/EditScrip:103
msgid "Custom condition"
msgstr "Vlastná podmienka"

#: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120
#. ($MoveCustomFieldDown)
#. ($MoveCustomFieldUp)
msgid "Custom field #%1 is not applied to this object"
msgstr "Vlastné pole #%1 sa nevzťahuje na tento objekt"

#: lib/RT/Tickets.pm:2838
#. ($CF->Name, $args{OPERATOR}, $args{VALUE})
msgid "Custom field %1 %2 %3"
msgstr "Vlastne pole %1 %2 %3"

#: lib/RT/Record.pm:1665
#. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'})
msgid "Custom field %1 does not apply to this object"
msgstr "Vlastné pole %1 sa nevzťahuje na tento objekt"

#: lib/RT/Tickets.pm:2832
#. ($CF->Name)
msgid "Custom field %1 has a value."
msgstr "Vlastné pole %1 má hodnotu."

#: lib/RT/Tickets.pm:2828
#. ($CF->Name)
msgid "Custom field %1 has no value."
msgstr "Vlastné pole %1 nemá hodnotu."

#: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854
#. ($args{'Field'})
msgid "Custom field %1 not found"
msgstr "Vlastné pole %1 nenájdené"

#: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119
#. ($CustomField->Name)
#. ($cf)
#. ($obj->Name)
msgid "Custom field '%1'"
msgstr "Vlastné pole '%1'"

#: lib/RT/CustomField.pm:1378
msgid "Custom field is already applied to the object"
msgstr ""

#: lib/RT/CustomField.pm:1622
#. ($args{'Content'}, $self->Name)
msgid "Custom field value %1 could not be found for custom field %2"
msgstr ""

#: lib/RT/CustomField.pm:590
msgid "Custom field value could not be deleted"
msgstr "Hodnota vlastného poľa nemôže byť zmazaná"

#: lib/RT/CustomField.pm:1634
msgid "Custom field value could not be found"
msgstr "Hodnota vlastného poľa nenájdená"

#: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592
msgid "Custom field value deleted"
msgstr "Hodnota vlastného poľa zmazaná"

#: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54
msgid "CustomField"
msgstr "VlastnéPole"

#: lib/RT/Tickets.pm:145
msgid "CustomFieldValue"
msgstr "Hodnota vlastného poľa"

#: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73
msgid "Customize"
msgstr "Prispôsobiť"

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64
msgid "Customize Basics"
msgstr ""

#: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63
msgid "Customize Email Addresses"
msgstr "Prispôsobiť email adresy"

#: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48
msgid "Customize Email Configuration"
msgstr "Prispôsobiť email konfiguraciu"

#: share/html/Elements/Tabs:218
msgid "Customize the look of your RT"
msgstr "Prispôsobiť vzhľad vášho RT"

#: lib/RT/Installer.pm:113
msgid "DBA password"
msgstr "DBA heslo"

#: lib/RT/Installer.pm:105
msgid "DBA username"
msgstr "DBA užív. meno"

#: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76
msgid "Daily"
msgstr "Denne"

#: lib/RT/Config.pm:477
msgid "Daily digest"
msgstr "Denný prehľad"

#: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63
msgid "Dashboard"
msgstr "Panel"

#: share/html/Dashboards/Modify.html:110
#. ($msg)
msgid "Dashboard could not be created: %1"
msgstr "Panel sa nedá vytvoriť: %1"

#: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263
#. ($msg)
msgid "Dashboard could not be updated: %1"
msgstr "Panel sa nedá aktualizovať: %1"

#: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260
msgid "Dashboard updated"
msgstr "Panel aktualizovaný"

#: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49
msgid "Dashboards"
msgstr "Panely"

#: lib/RT/Installer.pm:78
msgid "Database host"
msgstr ""

#: lib/RT/Installer.pm:96
msgid "Database name"
msgstr "Databázové meno"

#: lib/RT/Installer.pm:129
msgid "Database password for RT"
msgstr ""

#: lib/RT/Installer.pm:87
msgid "Database port"
msgstr "Databázový port"

#: lib/RT/Installer.pm:60
msgid "Database type"
msgstr ""

#: lib/RT/Installer.pm:122
msgid "Database username for RT"
msgstr ""

#: lib/RT/Config.pm:426
msgid "Date format"
msgstr "Formát dátumu"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373
msgid "Dates"
msgstr "Dátumy"

#: lib/RT/Date.pm:102
msgid "Dec"
msgstr "Dec"

#: share/html/Ticket/GnuPG.html:58
msgid "Decrypt"
msgstr "Dešifrovať"

#: etc/initialdata:219
msgid "Default Autoresponse template"
msgstr ""

#: share/html/Tools/Offline.html:60
msgid "Default Queue"
msgstr "Štandardná Fronta"

#: share/html/Tools/Offline.html:69
msgid "Default Requestor"
msgstr "Štandardný žiadateľ"

#: etc/initialdata:293
msgid "Default admin comment template"
msgstr ""

#: etc/initialdata:272
msgid "Default admin correspondence template"
msgstr ""

#: etc/initialdata:284
msgid "Default correspondence template"
msgstr ""

#: lib/RT/Config.pm:144
msgid "Default queue"
msgstr "Štandardná fronta"

#: etc/initialdata:250
msgid "Default transaction template"
msgstr ""

#: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69
#. ($DefaultValue)
msgid "Default: %1"
msgstr "Štandardný: %1"

#: lib/RT/Transaction.pm:696
#. ($type,        $self->Field,        (            $self->OldValue            ? "'" . $self->OldValue . "'"            : $self->loc("(no value)")        ),        "'" . $self->NewValue . "'")
msgid "Default: %1/%2 changed from %3 to %4"
msgstr "Štandard: %1/%2 zmenený z %3 na %4"

#: lib/RT/Date.pm:116
msgid "DefaultFormat"
msgstr "Štandardný rotmát"

#: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
msgid "Delete"
msgstr "Odstrániť"

#: share/html/Admin/Elements/EditTemplates:72
msgid "Delete Template"
msgstr "Odstrániť šablónu"

#: share/html/Articles/Article/Delete.html:101
#. ($ArticleObj->Id)
msgid "Delete article #%1"
msgstr "Vymazať článok #%1"

#: lib/RT/Class.pm:98
msgid "Delete articles in this class"
msgstr "Vymazať články v tejto triede"

#: lib/RT/SharedSetting.pm:285
#. ($msg)
msgid "Delete failed: %1"
msgstr ""

#: lib/RT/Group.pm:103
msgid "Delete group dashboards"
msgstr ""

#: lib/RT/Ticket.pm:3222
msgid "Delete operation is disabled by lifecycle configuration"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "Delete personal dashboards"
msgstr ""

#: share/html/Admin/Elements/EditScrips:72
msgid "Delete selected scrips"
msgstr "Zmazať vybrané scripty"

#: lib/RT/Dashboard.pm:84
msgid "Delete system dashboards"
msgstr "Zmazať systémové panely"

#: lib/RT/Queue.pm:117
msgid "Delete tickets"
msgstr "Vymazať požiadavky"

#: share/html/Search/Bulk.html:173
msgid "Delete values"
msgstr "Vymazať hodnoty"

#: lib/RT/Class.pm:98
msgid "DeleteArticle"
msgstr "Vymazať článok"

#: lib/RT/Dashboard.pm:84
msgid "DeleteDashboard"
msgstr "Vymazať panel"

#: lib/RT/Group.pm:103
msgid "DeleteGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:89
msgid "DeleteOwnDashboard"
msgstr "Vymazať vlastný panel"

#: lib/RT/Queue.pm:117
msgid "DeleteTicket"
msgstr "Vymazať požiadavku"

#: lib/RT/SharedSetting.pm:283
#. ($self->ObjectName)
msgid "Deleted %1"
msgstr "Vymazané %1"

#: share/html/Dashboards/Elements/Deleted:52
msgid "Deleted queries"
msgstr "Zmazané otázky"

#: share/html/Search/Elements/EditSearches:193
msgid "Deleted saved search"
msgstr "Vymazané uložené hľadanie"

#: share/html/Articles/Article/Search.html:226
#. ($searchname)
msgid "Deleted search %1"
msgstr ""

#: lib/RT/Queue.pm:452
msgid "Deleting this object would break referential integrity"
msgstr ""

#: lib/RT/User.pm:456
msgid "Deleting this object would violate referential integrity"
msgstr ""

#: share/html/Approvals/Elements/Approve:84
msgid "Deny"
msgstr "Zakázať"

#: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448
msgid "Depended on by"
msgstr "Závislé na mne"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependedOnBy"
msgstr "Závislé na mne"

#: lib/RT/Transaction.pm:801
#. ($value)
msgid "Dependency by %1 added"
msgstr "Závislosť na %1 pridaná"

#: lib/RT/Transaction.pm:840
#. ($value)
msgid "Dependency by %1 deleted"
msgstr "Závislosť od %1 zmazaná"

#: lib/RT/Transaction.pm:798
#. ($value)
msgid "Dependency on %1 added"
msgstr "Závislosť na %1 pridaná"

#: lib/RT/Transaction.pm:837
#. ($value)
msgid "Dependency on %1 deleted"
msgstr "Závislosť na %1 zmazaná"

#: lib/RT/Tickets.pm:122
msgid "DependentOn"
msgstr ""

#: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418
msgid "Depends on"
msgstr "Závislé na"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "DependsOn"
msgstr "Závisí na"

#: share/html/Search/Elements/EditSort:84
msgid "Desc"
msgstr "Kles"

#: share/html/Elements/SelectSortOrder:58
msgid "Descending"
msgstr "Klesajúco"

#: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234
msgid "Describe the issue below"
msgstr "Popíšte problém nižšie"

#: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56
msgid "Description"
msgstr "Popis"

#: share/html/Elements/Tabs:213
msgid "Detailed information about your RT setup"
msgstr "Detailná informácia o vašom nastavení RT"

#: share/html/Ticket/Create.html:422
msgid "Details"
msgstr "Detaily"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:50
msgid "Direction"
msgstr "Smer"

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Disabled"
msgstr ""

#: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71
msgid "Display"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "Display Access Control List"
msgstr ""

#: share/html/SelfService/Article/Display.html:48
#. ($id)
msgid "Display Article %1"
msgstr "Zobraziť článok %1"

#: share/html/Search/Elements/DisplayOptions:51
msgid "Display Columns"
msgstr "Zobraziť stĺpce"

#: share/html/Elements/Footer:59
#. ('', '')
msgid "Distributed under %1version 2 of the GNU GPL%2."
msgstr ""

#: lib/RT/System.pm:80
msgid "Do anything and everything"
msgstr "Robiť čokoľvek a všetko"

#: lib/RT/Installer.pm:215
msgid "Domain name"
msgstr "Doménové meno"

#: lib/RT/Installer.pm:216
msgid "Don't include http://, just something like 'localhost', 'rt.example.com'"
msgstr "Nezahŕňajú http://, len niečo ako \"localhost\", \"rt.example.com\""

#: lib/RT/Config.pm:314
msgid "Don't refresh home page."
msgstr "Neaktualizovať túto stránku."

#: lib/RT/Config.pm:293
msgid "Don't refresh search results."
msgstr "Neobnovovať vyhľadané výsledky"

#: share/html/Elements/Refresh:53
msgid "Don't refresh this page."
msgstr "Neobnovovať túto stránku"

#: lib/RT/Crypt/GnuPG.pm:2260
msgid "Don't trust this key at all"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "Download"
msgstr "Stiahnuť"

#: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49
msgid "Download dumpfile"
msgstr ""

#: lib/RT/CustomField.pm:83
msgid "Dropdown"
msgstr "Rozbaľovací"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395
msgid "Due"
msgstr "Do"

#: share/html/Search/Elements/BuildFormatString:100
msgid "DueRelative"
msgstr ""

#: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94
#. ($msg)
msgid "ERROR: %1"
msgstr ""

#: share/html/Elements/Tabs:437
msgid "Easy updating of your open tickets"
msgstr "Jednoduchá aktualizácia vami otvorených požiadaviek"

#: share/html/Elements/Tabs:444
msgid "Easy viewing of your reminders"
msgstr "Jednoduchý pohľad na vaše pripomienky"

#: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127
msgid "Edit"
msgstr "Upraviť"

#: share/html/Search/Bulk.html:168
msgid "Edit Custom Fields"
msgstr "Upraviť vlastné polia"

#: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61
#. ($Object->Name)
msgid "Edit Custom Fields for %1"
msgstr ""

#: share/html/Admin/Global/CustomFields/Groups.html:53
msgid "Edit Custom Fields for all groups"
msgstr "Upraviť vlastné pole pre všetky skupiny"

#: share/html/Admin/Global/CustomFields/Queues.html:53
msgid "Edit Custom Fields for all queues"
msgstr "Upraviť vlastné polia pre všetky fronty"

#: share/html/Admin/Global/CustomFields/Users.html:53
msgid "Edit Custom Fields for all users"
msgstr "Upraviť vlastné polia pre všetkých užívateľov"

#: share/html/Admin/Global/CustomFields/Class-Article.html:52
msgid "Edit Custom Fields for articles in all classes"
msgstr "Upraviť vlastné polia pre články vo všetkých triedach"

#: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53
msgid "Edit Custom Fields for tickets in all queues"
msgstr "Upraviť vlastné polia pre požiadavky vo všetkých frontách"

#: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59
msgid "Edit Links"
msgstr "Upraviť prepojenia"

#: share/html/Search/Edit.html:66
msgid "Edit Query"
msgstr "Upraviť dotaz"

#: share/html/Elements/Tabs:738
msgid "Edit Search"
msgstr "Upraviť vyhľadávanie"

#: share/html/Admin/Global/Topics.html:56
msgid "Edit global topic hierarchy"
msgstr "Upraviť globálnu hierarchiu tém"

#: share/html/Elements/Tabs:116
msgid "Edit system templates"
msgstr "UPraviť systémové šablóny"

#: share/html/Admin/Articles/Classes/Topics.html:60
#. ($ClassObj->Name)
msgid "Edit topic hierarchy for %1"
msgstr "Upraviť hierarchiu témy pre %1"

#: lib/RT/Group.pm:97
msgid "EditSavedSearches"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122
#. ($CustomFieldObj->Name)
#. ($CustomFieldObj->Name())
msgid "Editing CustomField %1"
msgstr "Upravovať vlastné pole %1"

#: share/html/Admin/Groups/Members.html:55
#. ($Group->Name)
msgid "Editing membership for group %1"
msgstr ""

#: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148
msgid "EffectiveId"
msgstr ""

#: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549
msgid "Either base or target must be specified"
msgstr ""

#: share/html/Elements/ShowSearch:67
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Either you have no rights to view saved search %1 or identifier is incorrect"
msgstr ""

#: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65
msgid "Email"
msgstr "Email"

#: share/html/Elements/RT__User/ColumnMap:76
msgid "Email Address"
msgstr "Emailová adresa"

#: etc/initialdata:478 etc/upgrade/3.7.85/content:4
msgid "Email Digest"
msgstr "Emailvý prehľad"

#: lib/RT/User.pm:585
msgid "Email address in use"
msgstr "Emailová adresa použitá"

#: lib/RT/Config.pm:474
msgid "Email delivery"
msgstr "Email dodaný"

#: etc/initialdata:479 etc/upgrade/3.7.85/content:5
msgid "Email template for periodic notification digests"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "EmailAddress"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63
msgid "Enabled"
msgstr "Povelené"

#: share/html/Admin/Articles/Classes/Modify.html:71
msgid "Enabled (Unchecking this box disables this class)"
msgstr "Povolené (deaktivácia fajky zakáže túto triedu)"

#: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74
msgid "Enabled (Unchecking this box disables this custom field)"
msgstr "Povolené (deaktivácia fajky zakáže toto vlastné pole)"

#: share/html/Admin/Groups/Modify.html:86
msgid "Enabled (Unchecking this box disables this group)"
msgstr "Povolené (deaktivácia fajky zakáže túto skupinu)"

#: share/html/Admin/Queues/Modify.html:127
msgid "Enabled (Unchecking this box disables this queue)"
msgstr "Povolené (deaktivácia fajky zakáže túto frontu)"

#: share/html/Admin/Articles/Classes/index.html:80
msgid "Enabled Classes"
msgstr "Povolené triedy"

#: share/html/Admin/Queues/index.html:111
msgid "Enabled Queues"
msgstr "Povolené Fronty"

#: share/html/Admin/Queues/index.html:99
msgid "Enabled queues matching search criteria"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138
#. (loc_fuzzy($msg))
msgid "Enabled status %1"
msgstr "Povolený status %1"

#: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58
msgid "Encrypt"
msgstr "Šifrovanie"

#: share/html/Admin/Queues/Modify.html:120
msgid "Encrypt by default"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:235
msgid "Encrypt/Decrypt"
msgstr "Šifrovanie/dešifrovanie"

#: share/html/Ticket/GnuPG.html:99
#. ($id, $txn->Ticket)
msgid "Encrypt/Decrypt transaction #%1 of ticket #%2"
msgstr ""

#: lib/RT/Queue.pm:639
msgid "Encrypting disabled"
msgstr ""

#: lib/RT/Queue.pm:638
msgid "Encrypting enabled"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:50
msgid "Enter articles, tickets, or other URLs related to this article."
msgstr "Zadajte články, požiadavky, alebo iné adresy URL súvisiace s týmto článkom."

#: lib/RT/CustomField.pm:187
msgid "Enter multiple IP address ranges"
msgstr "Zadajte viac rozsahov IP adries"

#: lib/RT/CustomField.pm:178
msgid "Enter multiple IP addresses"
msgstr "Zadajte viac IP adries"

#: lib/RT/CustomField.pm:93
msgid "Enter multiple values"
msgstr "Zadajte viac hodnôt"

#: lib/RT/CustomField.pm:149
msgid "Enter multiple values with autocompletion"
msgstr "Zadajte viac hodnôt pomocou automatického doplňovania"

#: share/html/Elements/EditLinks:128
msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces."
msgstr "Zadajte objekty alebo URI pre prepojenie objektov. Viac položiek oddeľte medzerami."

#: lib/RT/CustomField.pm:179
msgid "Enter one IP address"
msgstr "Zadajte jednu IP adresu"

#: lib/RT/CustomField.pm:188
msgid "Enter one IP address range"
msgstr "Zadajte jeden rozsah IP adries"

#: lib/RT/CustomField.pm:94
msgid "Enter one value"
msgstr "Zadajte jednu hodnotu"

#: lib/RT/CustomField.pm:150
msgid "Enter one value with autocompletion"
msgstr "Zadajte jednu hodnotu s automatickým dokončovaním"

#: share/html/Elements/EditLinks:125
msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces."
msgstr "Zadajte fronty alebo URI na prepojenie front. Viac položiek oddeľte medzerami."

#: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123
msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces."
msgstr "Zadajte požiadavky alebo URI na prepojenie požiadaviek. Viac položiek oddeľte medzerami."

#: lib/RT/Config.pm:280
msgid "Enter time in hours by default"
msgstr "Zadajte čas v hodinách v predvolenom nastavení"

#: lib/RT/CustomField.pm:189
msgid "Enter up to %1 IP address ranges"
msgstr ""

#: lib/RT/CustomField.pm:180
msgid "Enter up to %1 IP addresses"
msgstr ""

#: lib/RT/CustomField.pm:95
msgid "Enter up to %1 values"
msgstr ""

#: lib/RT/CustomField.pm:151
msgid "Enter up to %1 values with autocompletion"
msgstr ""

#: share/html/Search/Simple.html:77
#. (map { "$_" } qw(initial active inactive any))
msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses.  Any individual status name limits results to just the statuses named."
msgstr ""

#: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57
msgid "Error"
msgstr ""

#: lib/RT/Ticket.pm:1090
msgid "Error in parameters to Ticket->AddWatcher"
msgstr ""

#: lib/RT/Ticket.pm:1247
msgid "Error in parameters to Ticket->DeleteWatcher"
msgstr ""

#: etc/initialdata:426 etc/upgrade/3.7.10/content:13
msgid "Error to RT owner: public key"
msgstr ""

#: etc/initialdata:488 etc/upgrade/3.7.87/content:4
msgid "Error: Missing dashboard"
msgstr ""

#: etc/initialdata:451 etc/upgrade/3.7.10/content:38
msgid "Error: bad GnuPG data"
msgstr ""

#: share/html/Articles/Article/Search.html:202
msgid "Error: cannot change privacy value of existing search"
msgstr ""

#: share/html/Articles/Article/Search.html:165
#. ($ARGS{'LoadSavedSearch'}, $msg)
msgid "Error: could not load saved search %1: %2"
msgstr ""

#: etc/initialdata:439 etc/upgrade/3.7.10/content:26
msgid "Error: no private key"
msgstr ""

#: etc/initialdata:417 etc/upgrade/3.7.10/content:4
msgid "Error: public key"
msgstr ""

#: share/html/Articles/Article/Search.html:217
#. ($search->Name, $msg)
msgid "Error: search %1 not updated: %2"
msgstr ""

#: bin/rt-crontool:370
msgid "Escalate tickets"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226
msgid "Estimated"
msgstr ""

#: lib/RT/Handle.pm:666
msgid "Everyone"
msgstr ""

#: bin/rt-crontool:356
msgid "Example:"
msgstr ""

#: lib/RT/System.pm:88
msgid "ExecuteCode"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:63
msgid "Expire"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ExtendedStatus"
msgstr ""

#: lib/RT/User.pm:995
msgid "External authentication enabled."
msgstr ""

#: share/html/Admin/Users/Modify.html:97
msgid "Extra info"
msgstr ""

#: share/html/Elements/Tabs:633
msgid "Extract Article"
msgstr ""

#: etc/initialdata:98 etc/upgrade/3.8.3/content:75
msgid "Extract Subject Tag"
msgstr ""

#: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48
#. ($Ticket)
msgid "Extract a new article from ticket #%1"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:48
#. ($Ticket, $ClassObj->Name)
msgid "Extract article from ticket #%1 into class %2"
msgstr ""

#: etc/initialdata:99 etc/upgrade/3.8.3/content:76
msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject."
msgstr ""

#: share/html/Install/DatabaseDetails.html:187
#. ($DBI::errstr)
msgid "Failed to connect to database: %1"
msgstr ""

#: lib/RT/SharedSetting.pm:217
#. ($self->loc( $self->ObjectName ))
msgid "Failed to create %1 attribute"
msgstr ""

#: lib/RT/User.pm:336
msgid "Failed to find 'Privileged' users pseudogroup."
msgstr ""

#: lib/RT/User.pm:343
msgid "Failed to find 'Unprivileged' users pseudogroup"
msgstr ""

#: lib/RT/SharedSetting.pm:122
#. ($self->ObjectName, $id)
msgid "Failed to load %1 %2"
msgstr ""

#: lib/RT/SharedSetting.pm:146
#. ($self->ObjectName, $id, $msg)
msgid "Failed to load %1 %2: %3"
msgstr ""

#: bin/rt-crontool:304
#. ($modname, $@)
msgid "Failed to load module %1. (%2)"
msgstr ""

#: lib/RT/SharedSetting.pm:201
#. ($privacy)
msgid "Failed to load object for %1"
msgstr ""

#: sbin/rt-email-digest:166
msgid "Failed to load template"
msgstr ""

#: lib/RT/Reminders.pm:122
#. ($self->Ticket)
msgid "Failed to load ticket %1"
msgstr ""

#: sbin/rt-email-digest:174
msgid "Failed to parse template"
msgstr ""

#: lib/RT/Date.pm:92
msgid "Feb"
msgstr "Feb"

#: share/html/Elements/Tabs:749
msgid "Feeds"
msgstr "Zdroje"

#: share/html/Articles/Article/ExtractFromTicket.html:62
msgid "Field"
msgstr "Pole"

#: share/html/Admin/CustomFields/Modify.html:84
msgid "Field values source:"
msgstr ""

#: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54
msgid "Filename"
msgstr "Názov súboru"

#: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52
msgid "Fill arguments"
msgstr "Vyplniť argumenty"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:81
msgid "Fill boxes with color using"
msgstr ""

#: lib/RT/CustomField.pm:102
msgid "Fill in multiple text areas"
msgstr ""

#: lib/RT/CustomField.pm:111
msgid "Fill in multiple wikitext areas"
msgstr ""

#: lib/RT/CustomField.pm:103
msgid "Fill in one text area"
msgstr ""

#: lib/RT/CustomField.pm:112
msgid "Fill in one wikitext area"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115
msgid "Fill in this field with a URL."
msgstr ""

#: lib/RT/CustomField.pm:104
msgid "Fill in up to %1 text areas"
msgstr ""

#: lib/RT/CustomField.pm:113
msgid "Fill in up to %1 wikitext areas"
msgstr ""

#: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346
msgid "Final Priority"
msgstr "Konečná priority"

#: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100
msgid "FinalPriority"
msgstr ""

#: share/html/Admin/Users/index.html:83
msgid "Find all users whose"
msgstr ""

#: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57
msgid "Find groups whose"
msgstr "Nájsť skupiny, ktorých"

#: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53
msgid "Find people whose"
msgstr "Nájsť ľudí, ktorých"

#: share/html/Search/Results.html:140
msgid "Find tickets"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:58
msgid "Fingerprint"
msgstr ""

#: share/html/Install/Finish.html:48 share/html/Install/Global.html:64
msgid "Finish"
msgstr ""

#: share/html/Elements/Tabs:651
msgid "First"
msgstr ""

#: share/html/Search/Simple.html:91
#. ($link_start, $link_end)
msgid "For the full power of RT's searches, please visit the %1search builder interface%2."
msgstr ""

#: share/html/Search/Bulk.html:84
msgid "Force change"
msgstr ""

#: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52
msgid "Format"
msgstr "Formát"

#: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222
msgid "Forward"
msgstr "Posunúť"

#: share/html/Ticket/Forward.html:78
msgid "Forward Message"
msgstr "Posunúť správu"

#: share/html/Ticket/Forward.html:77
msgid "Forward Message and Return"
msgstr "Posunúť správu a návrat"

#: etc/initialdata:409 etc/upgrade/3.8.6/content:3
msgid "Forward Ticket"
msgstr "Posunúť požiadavku"

#: lib/RT/Queue.pm:121
msgid "Forward messages outside of RT"
msgstr ""

#: share/html/Ticket/Forward.html:113
#. ($TicketObj->id)
msgid "Forward ticket #%1"
msgstr "Posunúť požiadavku #%1"

#: share/html/Ticket/Forward.html:112
#. ($txn->id)
msgid "Forward transaction #%1"
msgstr "Posun transakcie #%1"

#: lib/RT/Queue.pm:121
msgid "ForwardMessage"
msgstr ""

#: lib/RT/Transaction.pm:679
#. ($self->Data)
msgid "Forwarded Ticket to %1"
msgstr ""

#: lib/RT/Transaction.pm:676
#. ($self->Field, $self->Data)
msgid "Forwarded Transaction #%1 to %2"
msgstr ""

#: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83
#. ($ticketcount)
#. ($collection->CountAll)
msgid "Found %quant(%1,ticket)"
msgstr "Nájdené: %quant(%1,požiadavka, požiadavky, požiadaviek)"

#: lib/RT/Record.pm:975
msgid "Found Object"
msgstr ""

#: share/html/Dashboards/Subscription.html:92
msgid "Frequency"
msgstr ""

#: lib/RT/Date.pm:111
msgid "Fri"
msgstr "Pia"

#: share/html/Dashboards/Subscription.html:110
msgid "Friday"
msgstr "Piatok"

#: share/html/Ticket/Forward.html:60
msgid "From"
msgstr "Z"

#: share/html/Admin/Tools/Theme.html:67
msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions."
msgstr ""

#: lib/RT/Config.pm:192 lib/RT/Config.pm:285
msgid "General"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:91
msgid "General rights"
msgstr ""

#: share/html/Tools/Offline.html:84
msgid "Get template from file"
msgstr "Získajte šablónu zo súboru"

#: share/html/Install/index.html:76
msgid "Getting started"
msgstr ""

#: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920
#. ($New->Name)
msgid "Given to %1"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101
msgid "Global"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:193
msgid "Global Attributes"
msgstr ""

#: share/html/Articles/Topics.html:91
msgid "Global Topics"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:61
msgid "Global custom field configuration"
msgstr ""

#: share/html/Admin/Global/MyRT.html:102
#. ($pane)
msgid "Global portlet %1 saved."
msgstr ""

#: share/html/Admin/Elements/SelectTemplate:55
#. (loc($Template->Name))
msgid "Global template: %1"
msgstr ""

#: share/html/Elements/Tabs:312
msgid "GnuPG"
msgstr ""

#: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795
msgid "GnuPG error. Contact with administrator"
msgstr ""

#: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777
msgid "GnuPG integration is disabled"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:49
msgid "GnuPG issues"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:90
#. ($EmailAddress)
msgid "GnuPG private key(s) for %1"
msgstr ""

#: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146
msgid "GnuPG private keys"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:88
#. ($EmailAddress)
msgid "GnuPG public key(s) for %1"
msgstr ""

#: share/html/m/_elements/menu:67
msgid "Go"
msgstr "Prejsť"

#: share/html/Admin/Groups/index.html:55
msgid "Go to group"
msgstr "Prejsť na skupinu"

#: share/html/Admin/Users/index.html:60
msgid "Go to user"
msgstr "Prejsť na užívateľa"

#: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88
msgid "Go!"
msgstr "Spustiť!"

#: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49
msgid "Goto Ticket"
msgstr ""

#: share/html/Elements/GotoTicket:49
msgid "Goto ticket"
msgstr "Choď na požiadavku"

#: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58
msgid "Graph"
msgstr "Diagram"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:48
msgid "Graph Properties"
msgstr ""

#: share/html/Search/Elements/Chart:98
msgid "Graphical charts are not available."
msgstr ""

#: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60
msgid "Group"
msgstr ""

#: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377
msgid "Group Rights"
msgstr "Práva skupiny"

#: lib/RT/Group.pm:929
#. ($new_member_obj->Object->Name)
msgid "Group already has member: %1"
msgstr ""

#: share/html/Admin/Groups/Modify.html:112
#. ($create_msg)
msgid "Group could not be created: %1"
msgstr ""

#: lib/RT/Group.pm:477
msgid "Group created"
msgstr ""

#: lib/RT/Group.pm:696
msgid "Group disabled"
msgstr ""

#: lib/RT/Group.pm:698
msgid "Group enabled"
msgstr ""

#: lib/RT/Group.pm:1085
msgid "Group has no such member"
msgstr ""

#: lib/RT/Group.pm:533
#. ($value)
msgid "Group name '%1' is already in use"
msgstr ""

#: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219
msgid "Group not found"
msgstr ""

#: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75
msgid "Groups"
msgstr "Skupiny"

#: lib/RT/Group.pm:935
msgid "Groups can't be members of their members"
msgstr ""

#: share/html/Admin/Groups/index.html:107
msgid "Groups matching search criteria"
msgstr ""

#: share/html/Admin/Users/Memberships.html:56
msgid "Groups the user is member of (check box to delete)"
msgstr ""

#: share/html/Admin/Users/Memberships.html:70
msgid "Groups the user is not member of (check box to add)"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48
msgid "Groups this user belongs to"
msgstr ""

#: lib/RT/Tickets.pm:121
msgid "HasMember"
msgstr ""

#: etc/initialdata:410 etc/upgrade/3.8.6/content:4
msgid "Heading of a forwarded Ticket"
msgstr ""

#: etc/initialdata:403 etc/upgrade/3.7.15/content:5
msgid "Heading of a forwarded message"
msgstr ""

#: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83
msgid "Hello!"
msgstr ""

#: share/html/Install/Global.html:52
msgid "Help us set up some useful defaults for RT."
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:65
msgid "Hide all quoted text"
msgstr ""

#: share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Hide quoted text"
msgstr ""

#: lib/RT/Config.pm:352
msgid "Hide ticket history by default"
msgstr ""

#: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64
msgid "History"
msgstr "História"

#: share/html/Articles/Article/History.html:52
#. ($id)
msgid "History for article #%1"
msgstr ""

#: share/html/Admin/Groups/History.html:59
#. ($GroupObj->Name)
msgid "History of the group %1"
msgstr "História skupiny %1"

#: share/html/Admin/Queues/History.html:59
#. ($QueueObj->Name)
msgid "History of the queue %1"
msgstr "História fronty %1"

#: share/html/Admin/Users/History.html:59
#. ($UserObj->Name)
msgid "History of the user %1"
msgstr "Histŕia užívateľa %1"

#: share/html/Elements/RT__User/ColumnMap:86
msgid "Home Phone"
msgstr ""

#: lib/RT/Config.pm:311
msgid "Home page refresh interval"
msgstr "Stránku aktualizovať v intervale"

#: share/html/Elements/Tabs:394 share/html/m/_elements/header:69
msgid "Homepage"
msgstr "Hlavná stránka"

#: share/html/Dashboards/Subscription.html:138
msgid "Hour"
msgstr "Hodina"

#: lib/RT/Report/Tickets.pm:76
msgid "Hourly"
msgstr ""

#: share/html/Elements/SelectTimeUnits:53
msgid "Hours"
msgstr "Hodiny"

#: lib/RT/Base.pm:125
#. (6)
msgid "I have %quant(%1,concrete mixer)."
msgstr ""

#: share/html/User/Prefs.html:175
msgid "I want to reset my secret token."
msgstr ""

#: lib/RT/Date.pm:117
msgid "ISO"
msgstr "ISO"

#: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217
msgid "Id"
msgstr "Id"

#: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60
msgid "Identity"
msgstr "Identita"

#: lib/RT/Approval/Rule/Rejected.pm:54
msgid "If an approval is rejected, reject the original and delete pending approvals"
msgstr ""

#: share/html/Tools/Offline.html:73
msgid "If no Requestor is specified, create tickets with this requestor."
msgstr ""

#: share/html/Tools/Offline.html:64
msgid "If no queue is specified, create tickets in this queue."
msgstr ""

#: share/html/Elements/LoginRedirectWarning:66
msgid "If this is not what you expect, leave this page now without logging in."
msgstr ""

#: bin/rt-crontool:352
msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT."
msgstr ""

#: share/html/Install/index.html:83
msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server."
msgstr ""

#: share/html/Elements/CSRF:59
#. ($escaped_path, $action, $start, $end)
msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4."
msgstr ""

#: share/html/Install/Finish.html:60
msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in."
msgstr ""

#: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76
msgid "If you've updated anything above, be sure to"
msgstr "Ak ste aktualizovali niečo vyššie, uistite sa, že"

#: share/html/Install/DatabaseType.html:61
#. ('CPAN')
msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg."
msgstr ""

#: lib/RT/Record.pm:967
msgid "Illegal value for %1"
msgstr ""

#: lib/RT/Record.pm:970
msgid "Immutable field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:165
msgid "Inactive Tickets"
msgstr "Neaktívne požiadavky"

#: share/html/Articles/Elements/BeforeMessageBox:59
msgid "Include Article:"
msgstr "Zahrnúť článok"

#: share/html/Admin/Articles/Classes/index.html:68
msgid "Include disabled classes in listing."
msgstr "Zahrnúť zablokované triedy do zoznamu."

#: share/html/Admin/CustomFields/index.html:81
msgid "Include disabled custom fields in listing."
msgstr "Zahrnúť zablokované vlastné polia do zoznamu."

#: share/html/Admin/Groups/index.html:75
msgid "Include disabled groups in listing."
msgstr "Zahrnúť zablokované skupiny do zoznamu."

#: share/html/Admin/Queues/index.html:87
msgid "Include disabled queues in listing."
msgstr "Zahrnúť zablokované fronty do zoznamu"

#: share/html/Admin/Users/index.html:85
msgid "Include disabled users in search."
msgstr "Zahrnúť zablokovaných užívateľov do hľadania."

#: share/html/Admin/CustomFields/Modify.html:111
msgid "Include page"
msgstr "Zahrnúť stránku"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:140
msgid "Include subtopics"
msgstr ""

#: lib/RT/Config.pm:476
msgid "Individual messages"
msgstr ""

#: etc/initialdata:428 etc/upgrade/3.7.10/content:15
msgid "Inform RT owner that user(s) have problems with public keys"
msgstr ""

#: etc/initialdata:490 etc/upgrade/3.7.87/content:6
msgid "Inform user that a dashboard he subscribed to is missing"
msgstr ""

#: etc/initialdata:453 etc/upgrade/3.7.10/content:40
msgid "Inform user that a message he sent has invalid GnuPG data"
msgstr ""

#: etc/initialdata:419 etc/upgrade/3.7.10/content:6
msgid "Inform user that he has problems with public key and couldn't recieve encrypted content"
msgstr ""

#: etc/initialdata:465
msgid "Inform user that his password has been reset"
msgstr ""

#: etc/initialdata:441 etc/upgrade/3.7.10/content:28
msgid "Inform user that we received an encrypted email and we have no private keys to decrypt"
msgstr ""

#: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187
msgid "Initial Priority"
msgstr ""

#: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100
msgid "InitialPriority"
msgstr ""

#: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61
msgid "Initialize Database"
msgstr ""

#: share/html/Elements/ValidateCustomFields:91
msgid "Input can not be parsed as an IP address"
msgstr ""

#: share/html/Elements/ValidateCustomFields:102
msgid "Input can not be parsed as an IP address range"
msgstr ""

#: lib/RT/ScripAction.pm:131
msgid "Input error"
msgstr ""

#: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112
#. ($CF->FriendlyPattern)
#. ($self->FriendlyPattern)
msgid "Input must match %1"
msgstr ""

#: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477
msgid "Internal Error"
msgstr ""

#: lib/RT/Record.pm:321
#. ($id->{error_message})
msgid "Internal Error: %1"
msgstr ""

#: lib/RT/Article.pm:211
#. ($txn_msg)
msgid "Internal error: %1"
msgstr ""

#: share/html/Admin/Elements/EditRights:158
#. ($type)
msgid "Invalid %1"
msgstr ""

#: share/html/Articles/Article/Search.html:168
#. ('LoadSavedSearch')
msgid "Invalid %1 argument"
msgstr ""

#: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92
#. ($_, $ARGS{$_})
#. ('Administrator Email', $ARGS{OwnerEmail})
msgid "Invalid %1: '%2' doesn't look like an email address"
msgstr ""

#: share/html/Install/Basics.html:81
#. ('WebPort')
msgid "Invalid %1: it should be a number"
msgstr ""

#: lib/RT/Article.pm:108
msgid "Invalid Class"
msgstr "Neplatná trieda"

#: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687
msgid "Invalid Custom Field values source"
msgstr ""

#: lib/RT/Group.pm:603
msgid "Invalid Group Type"
msgstr "Neplatný typ skupiny"

#: lib/RT/Class.pm:397
#. ($msg)
msgid "Invalid Queue, unable to apply Class: %1"
msgstr ""

#: lib/RT/CustomField.pm:362
msgid "Invalid Render Type"
msgstr ""

#: lib/RT/CustomField.pm:1094
#. ($self->FriendlyType)
msgid "Invalid Render Type for custom field of type %1"
msgstr ""

#: lib/RT/Record.pm:972
msgid "Invalid data"
msgstr "Neplatné dáta"

#: share/html/Admin/Users/GnuPG.html:110
#. ($ARGS{'PrivateKey'}, $email)
msgid "Invalid key %1 for address '%2'"
msgstr ""

#: lib/RT/CustomField.pm:1460
msgid "Invalid object"
msgstr "Neplatný objekt"

#: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783
#. ($msg)
msgid "Invalid pattern: %1"
msgstr "Neplatný vzor: %1"

#: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251
msgid "Invalid queue"
msgstr ""

#: lib/RT/Queue.pm:850
#. ($args{Type})
msgid "Invalid queue role group type %1"
msgstr ""

#: lib/RT/ACE.pm:275
msgid "Invalid right"
msgstr ""

#: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263
#. ($args{'RightName'})
msgid "Invalid right. Couldn't canonicalize right '%1'"
msgstr ""

#: lib/RT/User.pm:575
msgid "Invalid syntax for email address"
msgstr ""

#: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397
#. ($key)
#. (loc('owner'))
msgid "Invalid value for %1"
msgstr ""

#: lib/RT/Record.pm:1675
msgid "Invalid value for custom field"
msgstr ""

#: lib/RT/Attachment.pm:787
msgid "Is not encrypted"
msgstr ""

#: bin/rt-crontool:353
msgid "It is incredibly important that nonprivileged users not be allowed to run this tool."
msgstr ""

#: bin/rt-crontool:354
msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool."
msgstr ""

#: bin/rt-crontool:314
msgid "It takes several arguments:"
msgstr ""

#: share/html/Search/Elements/EditFormat:97
msgid "Italic"
msgstr ""

#: lib/RT/Date.pm:91
msgid "Jan"
msgstr "Jan"

#: lib/RT/Group.pm:96
msgid "Join or leave group"
msgstr ""

#: lib/RT/Date.pm:97
msgid "Jul"
msgstr "Júl"

#: share/html/Elements/Tabs:562
msgid "Jumbo"
msgstr ""

#: lib/RT/Date.pm:96
msgid "Jun"
msgstr "Jún"

#: lib/RT/Installer.pm:80
msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket"
msgstr ""

#: lib/RT/Search/Googleish.pm:88
#. (ref $self)
msgid "Keyword and intuition-based searching"
msgstr ""

#: lib/RT/Report/Tickets.pm:65
msgid "Lang"
msgstr ""

#: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76
msgid "Language"
msgstr "Jazyk"

#: share/html/Search/Elements/EditFormat:88
msgid "Large"
msgstr "Veľkosť"

#: share/html/Elements/Tabs:660
msgid "Last"
msgstr "Posledný"

#: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391
msgid "Last Contact"
msgstr "Posledný kontakt"

#: share/html/Elements/SelectDateType:52
msgid "Last Contacted"
msgstr "Posledný kontakt"

#: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53
msgid "Last Updated"
msgstr "Posledná zmena"

#: share/html/Elements/ColumnMap:91
msgid "Last Updated By"
msgstr "Naposledy zmenil"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:107
msgid "Last updated"
msgstr "Posledná zmena"

#: share/html/Search/Elements/PickBasics:116
msgid "Last updated by"
msgstr "Naposledy zmenil"

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdated"
msgstr "PoslednáZmena"

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedBy"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "LastUpdatedRelative"
msgstr ""

#: share/html/Dashboards/Subscription.html:174
#. ($session{'CurrentUser'}->EmailAddress)
msgid "Leave blank to send to your current email address (%1)"
msgstr ""

#: lib/RT/Installer.pm:90
msgid "Leave empty to use the default value for your database"
msgstr ""

#: lib/RT/Installer.pm:104
msgid "Leave this alone to use the default dba username for your database type"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238
msgid "Left"
msgstr ""

#: share/html/Ticket/Graphs/Elements/ShowLegends:48
msgid "Legends"
msgstr ""

#: lib/RT/Config.pm:334
msgid "Length in characters; Use '0' to show all messages inline, regardless of length"
msgstr ""

#: share/html/Admin/Users/Modify.html:107
msgid "Let this user access RT"
msgstr ""

#: share/html/Admin/Users/Modify.html:111
msgid "Let this user be granted rights"
msgstr ""

#: share/html/Install/index.html:79 share/html/Install/index.html:87
msgid "Let's go!"
msgstr ""

#: share/html/Admin/Queues/Modify.html:67
msgid "Lifecycle"
msgstr "Živorný cyklus"

#: share/html/Search/Elements/EditFormat:67
msgid "Link"
msgstr "Prepojenie"

#: lib/RT/Record.pm:1331
msgid "Link already exists"
msgstr "Prepojenie už existuje"

#: lib/RT/Record.pm:1345
msgid "Link could not be created"
msgstr "Prepojenie nemôže byť vytvorené"

#: lib/RT/Record.pm:1424
msgid "Link not found"
msgstr "Prepojenie sa nenašlo"

#: share/html/Ticket/ModifyLinks.html:48
#. ($Ticket->Id)
msgid "Link ticket #%1"
msgstr "Prepojenie požiadavky #%1"

#: share/html/Admin/CustomFields/Modify.html:103
msgid "Link values to"
msgstr ""

#: lib/RT/Tickets.pm:115
msgid "Linked"
msgstr "Spojené"

#: lib/RT/Tickets.pm:117
msgid "LinkedFrom"
msgstr "PrepojeneOd"

#: lib/RT/Tickets.pm:116
msgid "LinkedTo"
msgstr "PrepojenéNa"

#: lib/RT/Ticket.pm:633
msgid "Linking. Can't link to a deleted ticket"
msgstr "Prepojenie. Nemôžete vytvárať odkazy na odstránené požiadavky"

#: lib/RT/Ticket.pm:626
msgid "Linking. Permission denied"
msgstr "Prepojenie. Povolenie odopreté"

#: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415
msgid "Links"
msgstr "Prepojenia"

#: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84
msgid "List"
msgstr "Zoznam"

#: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80
msgid "Load"
msgstr "Nahrať"

#: share/html/Articles/Article/Elements/ShowSavedSearches:68
msgid "Load a saved search"
msgstr "Načítanie uloženého hľadania"

#: share/html/Search/Elements/EditSearches:78
msgid "Load saved search"
msgstr "Načítať uložené vyhľadávanie"

#: share/html/Articles/Article/Search.html:66
msgid "Load saved search:"
msgstr "Načítať uložené vyhľadávanie:"

#: lib/RT/System.pm:86
msgid "LoadSavedSearch"
msgstr ""

#: lib/RT/SharedSetting.pm:118
#. ($self->ObjectName, $self->Name)
msgid "Loaded %1 %2"
msgstr ""

#: share/html/Search/Elements/EditSearches:168
#. ($SavedSearch->{'Description'})
msgid "Loaded original \"%1\" saved search"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:217
msgid "Loaded perl modules"
msgstr ""

#: share/html/Search/Elements/EditSearches:170
#. ($SavedSearch->{'Description'})
msgid "Loaded saved search \"%1\""
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112
msgid "Loading..."
msgstr "Načítavam..."

#: lib/RT/Config.pm:422
msgid "Locale"
msgstr ""

#: lib/RT/Date.pm:122
msgid "LocalizedDateTime"
msgstr ""

#: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124
msgid "Location"
msgstr "Umiestnenie"

#: lib/RT/Interface/Web.pm:779
msgid "Logged in"
msgstr "Prihlásený"

#: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867
#. ($username)
msgid "Logged in as %1"
msgstr "Prihlásený ako %1"

#: share/html/NoAuth/Logout.html:54
msgid "Logged out"
msgstr "Odhlásený"

#: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80
msgid "Login"
msgstr "Prihlásenie"

#: share/html/Elements/Logo:52 share/html/Elements/Logo:56
#. ())
msgid "LogoAltText"
msgstr ""

#: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107
msgid "Logout"
msgstr "Odhlásiť sa"

#: lib/RT/CustomField.pm:1370
msgid "Lookup type mismatch"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:104
#. ($hour)
msgid "M-F at %1"
msgstr ""

#: lib/RT/Config.pm:469 lib/RT/Config.pm:484
msgid "Mail"
msgstr "Mail"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:58
msgid "Main type of links"
msgstr ""

#: share/html/Search/Bulk.html:81
msgid "Make Owner"
msgstr "Priradiť vlastníka"

#: share/html/Search/Bulk.html:107
msgid "Make Status"
msgstr "Priradiť status"

#: share/html/Search/Bulk.html:115
msgid "Make date Due"
msgstr "Priradiť dátum splatnosti"

#: share/html/Search/Bulk.html:117
msgid "Make date Resolved"
msgstr "Priradiť dátum vyriešenia"

#: share/html/Search/Bulk.html:111
msgid "Make date Started"
msgstr "Priradiť dátum začatia"

#: share/html/Search/Bulk.html:109
msgid "Make date Starts"
msgstr "Priradiť počiatočný dátum"

#: share/html/Search/Bulk.html:113
msgid "Make date Told"
msgstr ""

#: share/html/Search/Bulk.html:103
msgid "Make priority"
msgstr "Priradiť prioritu"

#: share/html/Search/Bulk.html:105
msgid "Make queue"
msgstr "Priradiť frontu"

#: share/html/Search/Bulk.html:101
msgid "Make subject"
msgstr "Priradiť predmet"

#: share/html/Elements/Tabs:93
msgid "Manage custom fields and custom field values"
msgstr "Spravovať vlastné polia a vlastné hodnoty ploli"

#: share/html/Elements/Tabs:76
msgid "Manage groups and group membership"
msgstr "Správa skupín a členstvo v skupinách"

#: share/html/Elements/Tabs:102
msgid "Manage properties and configuration which apply to all queues"
msgstr ""

#: share/html/Elements/Tabs:84
msgid "Manage queues and queue-specific properties"
msgstr ""

#: share/html/Ticket/Graphs/index.html:63
msgid "Manage saved graphs"
msgstr ""

#: share/html/Elements/Tabs:68
msgid "Manage users and passwords"
msgstr ""

#: lib/RT/Ticket.pm:1722
msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator."
msgstr ""

#: lib/RT/Date.pm:93
msgid "Mar"
msgstr "mar"

#: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127
msgid "Marked all messages as seen"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:174
msgid "Mason template search order"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:82
msgid "MaxValues"
msgstr ""

#: lib/RT/Config.pm:332
msgid "Maximum inline message length"
msgstr ""

#: lib/RT/Date.pm:95
msgid "May"
msgstr "Máj"

#: share/html/Elements/QuickCreate:64
msgid "Me"
msgstr "Ja"

#: share/html/Elements/RT__Group/ColumnMap:61
msgid "Member"
msgstr "Člen"

#: lib/RT/Transaction.pm:814
#. ($value)
msgid "Member %1 added"
msgstr "Člen %1 pridaný"

#: lib/RT/Transaction.pm:853
#. ($value)
msgid "Member %1 deleted"
msgstr "Člen %1 zmazaný"

#: lib/RT/Group.pm:946
#. ($new_member_obj->Object->Name)
msgid "Member added: %1"
msgstr ""

#: lib/RT/Group.pm:1092
msgid "Member deleted"
msgstr "Člen zmazaný"

#: lib/RT/Group.pm:1096
msgid "Member not deleted"
msgstr "Člen sa nedá zmazať"

#: share/html/Elements/SelectLinkType:49
msgid "Member of"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "MemberOf"
msgstr ""

#: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "Members"
msgstr "Členovia"

#: lib/RT/Transaction.pm:811
#. ($value)
msgid "Membership in %1 added"
msgstr ""

#: lib/RT/Transaction.pm:850
#. ($value)
msgid "Membership in %1 deleted"
msgstr ""

#: share/html/Elements/Tabs:308
msgid "Memberships"
msgstr ""

#: share/html/Admin/Users/Memberships.html:92
#. ($UserObj->Name)
msgid "Memberships of the user %1"
msgstr ""

#: lib/RT/Ticket.pm:2696
msgid "Merge Successful"
msgstr ""

#: lib/RT/Ticket.pm:2717
msgid "Merge failed. Couldn't set EffectiveId"
msgstr ""

#: lib/RT/Ticket.pm:2731
msgid "Merge failed. Couldn't set Status"
msgstr ""

#: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127
msgid "Merge into"
msgstr "Zlúčiť do"

#: lib/RT/Transaction.pm:817
#. ($value)
msgid "Merged into %1"
msgstr "Zlúčiť do %1"

#: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104
msgid "Message"
msgstr "Správa"

#: share/html/Ticket/Elements/ShowTransactionAttachments:170
msgid "Message body is not shown because it is too large."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255
msgid "Message body is not shown because sender requested not to inline it."
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:275
msgid "Message body not shown because it is not plain text."
msgstr ""

#: lib/RT/Config.pm:260
msgid "Message box height"
msgstr ""

#: lib/RT/Config.pm:251
msgid "Message box width"
msgstr ""

#: lib/RT/Config.pm:269
msgid "Message box wrapping"
msgstr ""

#: lib/RT/Ticket.pm:2296
msgid "Message could not be recorded"
msgstr ""

#: sbin/rt-email-digest:291
msgid "Message for user"
msgstr ""

#: lib/RT/Ticket.pm:2299
msgid "Message recorded"
msgstr ""

#: lib/RT/Installer.pm:150
msgid "Minimum password length"
msgstr "Minimálna dĺžka hesla"

#: share/html/Elements/SelectTimeUnits:50
msgid "Minutes"
msgstr "Minúty"

#: share/html/Admin/Elements/EditRightsCategoryTabs:105
msgid "Miscellaneous"
msgstr ""

#: lib/RT/Record.pm:974
msgid "Missing a primary key?: %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96
msgid "Mobile"
msgstr "Mobilný"

#: share/html/Elements/RT__User/ColumnMap:96
msgid "Mobile Phone"
msgstr "Mobilný telefón"

#: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67
msgid "Modify"
msgstr ""

#: share/html/Admin/Groups/Members.html:108
msgid "Modify Members"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "Modify Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "Modify Scrips"
msgstr ""

#: share/html/Admin/Queues/CustomField.html:63
#. ($QueueObj->Name())
msgid "Modify a CustomField for queue %1"
msgstr ""

#: share/html/Admin/Queues/Scrip.html:66
#. ($QueueObj->Name)
msgid "Modify a scrip for queue %1"
msgstr ""

#: share/html/Admin/Global/Scrip.html:58
msgid "Modify a scrip that applies to all queues"
msgstr ""

#: share/html/Elements/Tabs:162
msgid "Modify and Create Classes"
msgstr ""

#: share/html/Elements/Tabs:167
msgid "Modify and Create Custom Fields for Articles"
msgstr ""

#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
#. ($ArticleObj->Id)
msgid "Modify article #%1"
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155
#. ($CF->Name)
#. ($Class->Name)
msgid "Modify associated objects for %1"
msgstr ""

#: lib/RT/Queue.pm:98
msgid "Modify custom field values"
msgstr ""

#: share/html/Ticket/ModifyDates.html:48
#. ($TicketObj->Id)
msgid "Modify dates for #%1"
msgstr ""

#: share/html/Ticket/ModifyDates.html:57
#. ($TicketObj->Id)
msgid "Modify dates for ticket # %1"
msgstr "Upraviť dátumy pre požiadavku # %1"

#: share/html/Elements/Tabs:202
msgid "Modify global article topics"
msgstr ""

#: share/html/Elements/Tabs:124
msgid "Modify global custom fields"
msgstr ""

#: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187
msgid "Modify global group rights"
msgstr ""

#: share/html/Admin/Global/Topics.html:55
msgid "Modify global topics"
msgstr "Upraviť globálne témy"

#: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192
msgid "Modify global user rights"
msgstr ""

#: lib/RT/Group.pm:102
msgid "Modify group dashboards"
msgstr ""

#: lib/RT/Group.pm:95
msgid "Modify group membership roster"
msgstr ""

#: lib/RT/Group.pm:94
msgid "Modify group metadata or delete group"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:48
#. ($ClassObj->Name)
msgid "Modify group rights for Class %1"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:70
#. ($CustomFieldObj->Name)
msgid "Modify group rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:48
#. ($GroupObj->Name)
msgid "Modify group rights for group %1"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:48
#. ($QueueObj->Name)
msgid "Modify group rights for queue %1"
msgstr ""

#: lib/RT/Class.pm:94
msgid "Modify metadata and custom fields for this class"
msgstr ""

#: lib/RT/System.pm:82
msgid "Modify one's own RT account"
msgstr ""

#: lib/RT/Class.pm:92
msgid "Modify or delete articles in this class"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57
#. ($Ticket->Id)
#. ($Ticket->id)
msgid "Modify people related to ticket #%1"
msgstr "Upraviť ľudí spojených s požiadavkou #%1"

#: lib/RT/Dashboard.pm:88
msgid "Modify personal dashboards"
msgstr "Upraviť osobné panely"

#: lib/RT/Queue.pm:96
msgid "Modify queue watchers"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:64
#. ($QueueObj->Name)
msgid "Modify scrips for queue %1"
msgstr "Upraviť skript pre frontu %1"

#: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108
msgid "Modify scrips which apply to all queues"
msgstr "Upraviť skript, ktorý platí pre všetky fronty"

#: lib/RT/Dashboard.pm:83
msgid "Modify system dashboards"
msgstr "Upraviť systémové panely"

#: share/html/Admin/Global/Template.html:90
#. (loc($TemplateObj->Name()))
msgid "Modify template %1"
msgstr ""

#: share/html/Admin/Queues/Template.html:114
#. (loc( $TemplateObj->Name()), $QueueObj->Name)
msgid "Modify template %1 for queue %2"
msgstr ""

#: share/html/Admin/Global/Templates.html:53
msgid "Modify templates which apply to all queues"
msgstr ""

#: share/html/Admin/Articles/Classes/Modify.html:126
#. ($ClassObj->Name)
msgid "Modify the Class %1"
msgstr "Upraviť triedu %1"

#: share/html/Dashboards/Queries.html:84
#. ($Dashboard->Name)
msgid "Modify the content of dashboard %1"
msgstr ""

#: share/html/Dashboards/Modify.html:126
#. ($Dashboard->Name)
msgid "Modify the dashboard %1"
msgstr ""

#: share/html/Elements/Tabs:197
msgid "Modify the default \"RT at a glance\" view"
msgstr ""

#: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119
#. ($Group->Name)
msgid "Modify the group %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:284
#. ($Dashboard->Name)
msgid "Modify the subscription to dashboard %1"
msgstr ""

#: share/html/Admin/Users/Modify.html:290
#. ($UserObj->Name)
msgid "Modify the user %1"
msgstr "Upraviť užívateľa %1"

#: share/html/Articles/Article/Search.html:78
msgid "Modify this search..."
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:135
msgid "Modify this user"
msgstr ""

#: share/html/Ticket/ModifyAll.html:58
#. ($Ticket->Id)
msgid "Modify ticket # %1"
msgstr "Upraviť požiadavku # %1"

#: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58
#. ($TicketObj->Id)
msgid "Modify ticket #%1"
msgstr "Upraviť požiadavku #%1"

#: lib/RT/Queue.pm:116
msgid "Modify tickets"
msgstr "Upraviť požiadavky"

#: share/html/Admin/Articles/Classes/Topics.html:59
#. ($ClassObj->Name)
msgid "Modify topic for %1"
msgstr "Upraviť tému pre %1"

#: lib/RT/Class.pm:95
msgid "Modify topic hierarchy associated with this class"
msgstr "Upraviť hierarchiu tém prislúchajúcu k tejto triede"

#: lib/RT/Class.pm:93
msgid "Modify topics for articles in this class"
msgstr "Upraviť témy pre články v tejto triede"

#: share/html/Admin/Articles/Classes/UserRights.html:48
#. ($ClassObj->Name)
msgid "Modify user rights for class %1"
msgstr ""

#: share/html/Admin/CustomFields/UserRights.html:68
#. ($CustomFieldObj->Name)
msgid "Modify user rights for custom field %1"
msgstr ""

#: share/html/Admin/Groups/UserRights.html:48
#. ($GroupObj->Name)
msgid "Modify user rights for group %1"
msgstr ""

#: share/html/Admin/Queues/UserRights.html:48
#. ($QueueObj->Name)
msgid "Modify user rights for queue %1"
msgstr ""

#: share/html/Ticket/ModifyPeople.html:60
#. ($Ticket->Id)
msgid "Modify who receives mail for ticket #%1"
msgstr "Upraviť kto prijma poštu pre požiadavku"

#: lib/RT/Class.pm:97 lib/RT/Queue.pm:95
msgid "ModifyACL"
msgstr ""

#: lib/RT/Class.pm:92
msgid "ModifyArticle"
msgstr ""

#: lib/RT/Class.pm:93
msgid "ModifyArticleTopics"
msgstr ""

#: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98
msgid "ModifyCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:83
msgid "ModifyDashboard"
msgstr ""

#: lib/RT/Group.pm:102
msgid "ModifyGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:88
msgid "ModifyOwnDashboard"
msgstr ""

#: lib/RT/Group.pm:96
msgid "ModifyOwnMembership"
msgstr ""

#: lib/RT/Queue.pm:96
msgid "ModifyQueueWatchers"
msgstr ""

#: lib/RT/Queue.pm:103
msgid "ModifyScrips"
msgstr ""

#: lib/RT/System.pm:82
msgid "ModifySelf"
msgstr ""

#: lib/RT/Queue.pm:100
msgid "ModifyTemplate"
msgstr ""

#: lib/RT/Queue.pm:116
msgid "ModifyTicket"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:220
msgid "Module"
msgstr "Modul"

#: lib/RT/Date.pm:107
msgid "Mon"
msgstr "Pon"

#: share/html/Dashboards/Subscription.html:106
msgid "Monday"
msgstr "Pondelok"

#: share/html/Dashboards/Subscription.html:100
msgid "Monday through Friday"
msgstr "Od pondelka do piatka"

#: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76
msgid "Monthly"
msgstr "Mesačne"

#: share/html/Ticket/Elements/ShowRequestor:67
msgid "More about the requestors"
msgstr ""

#: share/html/Admin/Elements/PickCustomFields:85
msgid "Move down"
msgstr "Presunúť dolu"

#: share/html/Admin/Articles/Elements/Topics:108
msgid "Move here"
msgstr "Presunúť sem"

#: share/html/Admin/Elements/PickCustomFields:77
msgid "Move up"
msgstr "Presunúť hore"

#: share/html/Admin/Elements/SelectSingleOrMultiple:50
msgid "Multiple"
msgstr "Viacnásobný"

#: lib/RT/User.pm:167
msgid "Must specify 'Name' attribute"
msgstr ""

#: share/html/SelfService/Elements/MyRequests:62
#. ($friendly_status)
msgid "My %1 tickets"
msgstr ""

#: share/html/Elements/Tabs:458
msgid "My Approvals"
msgstr "Moje schválenia"

#: share/html/Elements/Tabs:436
msgid "My Day"
msgstr "Môj deň"

#: share/html/Elements/Tabs:443
msgid "My Reminders"
msgstr "Moje pripomienky"

#: etc/initialdata:615
msgid "My Tickets"
msgstr ""

#: share/html/Approvals/index.html:48
msgid "My approvals"
msgstr "Moje schválenia"

#: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53
msgid "My dashboards"
msgstr "Moje panely"

#: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48
msgid "My reminders"
msgstr "Moje pripomienky"

#: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55
msgid "My saved searches"
msgstr "Moje uložené vyhľadávania"

#: etc/RT_Config.pm:1124
msgid "MyAdminQueues"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:634
msgid "MyReminders"
msgstr ""

#: lib/RT/Installer.pm:68
msgid "MySQL"
msgstr "MySQL"

#: etc/RT_Config.pm:1124
msgid "MySupportQueues"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "NBSP"
msgstr "NBSP"

#: share/html/Search/Elements/BuildFormatString:100
msgid "NEWLINE"
msgstr ""

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171
msgid "Name"
msgstr "Meno"

#: lib/RT/Config.pm:177
msgid "Name and email address"
msgstr "Meno a emailová adresa"

#: lib/RT/Article.pm:115 lib/RT/User.pm:282
msgid "Name in use"
msgstr "Meno je už použité"

#: share/html/Articles/Article/Elements/ShowSavedSearches:55
msgid "Name:"
msgstr "Meno:"

#: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
msgid "Never"
msgstr "Nikdy"

#: share/html/Elements/RT__Ticket/ColumnMap:251
msgid "New"
msgstr "Nový"

#: share/html/Elements/Tabs:810
msgid "New Article"
msgstr "Nový článok"

#: share/html/Elements/Tabs:421
msgid "New Dashboard"
msgstr "Nový panel"

#: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122
msgid "New Links"
msgstr "Nové linky"

#: etc/initialdata:330 etc/upgrade/3.8.2/content:36
msgid "New Pending Approval"
msgstr "Nové čo čakajú na schválenie"

#: share/html/Elements/Tabs:426
msgid "New Search"
msgstr "Nové hľadanie"

#: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49
msgid "New messages"
msgstr "Nová správa"

#: share/html/Elements/EditPassword:61
msgid "New password"
msgstr "Nové heslo"

#: lib/RT/User.pm:782
msgid "New password notification sent"
msgstr ""

#: share/html/Ticket/Elements/Reminders:116
msgid "New reminder:"
msgstr "Nová pripomienka:"

#: share/html/Admin/Elements/SelectRights:72
msgid "New rights"
msgstr "Nové prava"

#: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70
msgid "New ticket"
msgstr "Nová požiadavka"

#: lib/RT/Ticket.pm:2677
msgid "New ticket doesn't exist"
msgstr "Neexistuje nová požiadavka"

#: lib/RT/Ticket.pm:311
#. ($self->loc($args{'Status'}))
msgid "New tickets can not have status '%1' in this queue."
msgstr "Nové požiadavky nemôžu mať stav '%1' v tejto fronte."

#: share/html/Admin/Elements/CreateUserCalled:49
msgid "New user called"
msgstr ""

#: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52
msgid "New watchers"
msgstr "Nový strážci"

#: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63
msgid "Next"
msgstr "Ďalší"

#: lib/RT/Report/Tickets.pm:65
msgid "NickName"
msgstr ""

#: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72
msgid "Nickname"
msgstr "Prezývka"

#: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79
msgid "No"
msgstr "Nie"

#: lib/RT/SharedSetting.pm:241
#. ($self->ObjectName)
msgid "No %1 loaded"
msgstr ""

#: share/html/SelfService/Article/Search.html:66
#. ($Articles_Content)
msgid "No Articles match %1"
msgstr ""

#: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62
msgid "No Class defined"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:54
msgid "No Classes matching search criteria found."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121
msgid "No CustomField"
msgstr ""

#: share/html/Admin/CustomFields/GroupRights.html:62
msgid "No CustomField defined"
msgstr ""

#: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63
msgid "No Group defined"
msgstr ""

#: lib/RT/Tickets_SQL.pm:290
msgid "No Query"
msgstr ""

#: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68
msgid "No Queue defined"
msgstr ""

#: bin/rt-crontool:124
msgid "No RT user found. Please consult your RT administrator."
msgstr ""

#: share/html/Search/Elements/ResultsRSSView:125
msgid "No Subject"
msgstr "Bez predmetu"

#: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86
msgid "No Template"
msgstr ""

#: share/html/Approvals/Elements/Approve:90
msgid "No action"
msgstr ""

#: lib/RT/Record.pm:969
msgid "No column specified"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestor:84
msgid "No comment entered about this user"
msgstr ""

#: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75
#. (ref $self)
msgid "No description for %1"
msgstr ""

#: share/html/SelfService/Error.html:69
msgid "No details"
msgstr ""

#: lib/RT/Users.pm:182
msgid "No group specified"
msgstr ""

#: share/html/Admin/Groups/index.html:80
msgid "No groups matching search criteria found."
msgstr ""

#: lib/RT/Attachment.pm:746
msgid "No key suitable for encryption"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:50
msgid "No keys for this address"
msgstr ""

#: lib/RT/Ticket.pm:2234
msgid "No message attached"
msgstr ""

#: lib/RT/CustomField.pm:464
msgid "No name provided"
msgstr ""

#: lib/RT/Attachment.pm:726
msgid "No need to encrypt"
msgstr ""

#: lib/RT/User.pm:851
msgid "No password set"
msgstr ""

#: lib/RT/Queue.pm:401
msgid "No permission to create queues"
msgstr ""

#: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849
#. ($QueueObj->Name)
msgid "No permission to create tickets in the queue '%1'"
msgstr ""

#: share/html/SelfService/Display.html:175
msgid "No permission to display that ticket"
msgstr ""

#: share/html/Articles/Article/Delete.html:92
msgid "No permission to modify article"
msgstr ""

#: share/html/Search/Elements/EditSearches:243
msgid "No permission to save system-wide searches"
msgstr ""

#: lib/RT/User.pm:1378
msgid "No permission to set preferences"
msgstr ""

#: share/html/Articles/Article/Edit.html:324
msgid "No permission to view Article"
msgstr ""

#: share/html/SelfService/Update.html:108
msgid "No permission to view update ticket"
msgstr ""

#: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198
msgid "No principal specified"
msgstr ""

#: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186
msgid "No principals selected."
msgstr ""

#: share/html/Admin/Users/GnuPG.html:69
msgid "No private key"
msgstr ""

#: share/html/Admin/Queues/index.html:56
msgid "No queues matching search criteria found."
msgstr ""

#: lib/RT/ACE.pm:217
msgid "No right specified"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "No rights found"
msgstr ""

#: share/html/Admin/Elements/SelectRights:64
msgid "No rights granted."
msgstr ""

#: share/html/Search/Bulk.html:258
msgid "No search to operate on."
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:101
msgid "No subject"
msgstr "Bez predmetu"

#: lib/RT/User.pm:1649
msgid "No such key or it's not suitable for signing"
msgstr ""

#: share/html/Search/Chart:140
msgid "No tickets found."
msgstr ""

#: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629
msgid "No transaction type specified"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForEncryption:49
msgid "No usable keys."
msgstr ""

#: share/html/Admin/Users/index.html:91
msgid "No users matching search criteria found."
msgstr ""

#: lib/RT/Record.pm:966
msgid "No value sent to _Set!"
msgstr ""

#: share/html/Elements/QuickCreate:65
msgid "Nobody"
msgstr "nikto"

#: share/html/Elements/RT__Dashboard/ColumnMap:76
msgid "None"
msgstr "Žiadny"

#: lib/RT/Record.pm:971
msgid "Nonexistant field?"
msgstr ""

#: lib/RT/CustomField.pm:500
msgid "Not found"
msgstr ""

#: share/html/Elements/PersonalQuickbar:54
msgid "Not logged in."
msgstr "Neprihlásený"

#: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169
msgid "Not set"
msgstr ""

#: share/html/m/_elements/full_site_link:48
msgid "Not using a mobile browser?"
msgstr ""

#: share/html/NoAuth/Reminder.html:50
msgid "Not yet implemented."
msgstr ""

#: share/html/Approvals/Elements/Approve:95
msgid "Notes"
msgstr "Poznámky"

#: lib/RT/User.pm:784
msgid "Notification could not be sent"
msgstr ""

#: etc/initialdata:57
msgid "Notify AdminCcs"
msgstr ""

#: etc/initialdata:53
msgid "Notify AdminCcs as Comment"
msgstr ""

#: etc/initialdata:49 etc/upgrade/3.1.17/content:6
msgid "Notify Ccs"
msgstr ""

#: etc/initialdata:45 etc/upgrade/3.1.17/content:2
msgid "Notify Ccs as Comment"
msgstr ""

#: etc/initialdata:84
msgid "Notify Other Recipients"
msgstr ""

#: etc/initialdata:80
msgid "Notify Other Recipients as Comment"
msgstr ""

#: etc/initialdata:41
msgid "Notify Owner"
msgstr ""

#: etc/initialdata:37
msgid "Notify Owner as Comment"
msgstr ""

#: etc/initialdata:379 etc/upgrade/3.8.2/content:85
msgid "Notify Owner of their rejected ticket"
msgstr ""

#: etc/initialdata:392 etc/upgrade/3.8.2/content:98
msgid "Notify Owner of their ticket has been approved and is ready to be acted on"
msgstr ""

#: lib/RT/Approval/Rule/Passed.pm:54
msgid "Notify Owner of their ticket has been approved by some or all approvers"
msgstr ""

#: etc/initialdata:76
msgid "Notify Owner, Requestors, Ccs and AdminCcs"
msgstr ""

#: etc/initialdata:72
msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment"
msgstr ""

#: etc/initialdata:332 etc/upgrade/3.8.2/content:38
msgid "Notify Owners and AdminCcs of new items pending their approval"
msgstr ""

#: etc/initialdata:365 etc/upgrade/3.8.2/content:71
msgid "Notify Requestor of their ticket has been approved by all approvers"
msgstr ""

#: etc/initialdata:351 etc/upgrade/3.8.2/content:57
msgid "Notify Requestor of their ticket has been approved by some approver"
msgstr ""

#: etc/initialdata:33
msgid "Notify Requestors"
msgstr "Informujte žiadateľov"

#: etc/initialdata:67
msgid "Notify Requestors and Ccs"
msgstr ""

#: etc/initialdata:62
msgid "Notify Requestors and Ccs as Comment"
msgstr ""

#: lib/RT/Config.pm:361
msgid "Notify me of unread messages"
msgstr "Informujte ma o neprečítaných správ"

#: lib/RT/Date.pm:101
msgid "Nov"
msgstr "Nov"

#: share/html/Search/Elements/SelectAndOr:49
msgid "OR"
msgstr "alebo"

#: share/html/Admin/Tools/Configuration.html:142
msgid "Object"
msgstr "Objekt"

#: lib/RT/Record.pm:335
msgid "Object could not be created"
msgstr ""

#: lib/RT/Record.pm:126
msgid "Object could not be deleted"
msgstr ""

#: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183
msgid "Object created"
msgstr "Objekt vytvorený"

#: lib/RT/Record.pm:123
msgid "Object deleted"
msgstr "Objekt zmazaný"

#: lib/RT/CustomField.pm:1416
msgid "Object type mismatch"
msgstr "Typ Objektu je mišmaš"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53
msgid "Objects list is empty"
msgstr ""

#: lib/RT/Date.pm:100
msgid "Oct"
msgstr "Okt"

#: share/html/Elements/Tabs:450
msgid "Offline"
msgstr ""

#: share/html/Tools/Offline.html:48
msgid "Offline upload"
msgstr ""

#: lib/RT/Transaction.pm:400
#. ($self->CreatedAsString, $self->CreatorObj->Name)
msgid "On %1, %2 wrote:"
msgstr ""

#: etc/initialdata:199 etc/upgrade/3.7.1/content:2
msgid "On Close"
msgstr ""

#: etc/initialdata:143
msgid "On Comment"
msgstr ""

#: etc/initialdata:115
msgid "On Correspond"
msgstr ""

#: etc/initialdata:104
msgid "On Create"
msgstr ""

#: etc/initialdata:122 etc/upgrade/4.0.3/content:4
msgid "On Forward"
msgstr ""

#: etc/initialdata:129 etc/upgrade/4.0.3/content:11
msgid "On Forward Ticket"
msgstr ""

#: etc/initialdata:136 etc/upgrade/4.0.3/content:18
msgid "On Forward Transaction"
msgstr ""

#: etc/initialdata:164
msgid "On Owner Change"
msgstr ""

#: etc/initialdata:157 etc/upgrade/3.1.17/content:15
msgid "On Priority Change"
msgstr ""

#: etc/initialdata:172
msgid "On Queue Change"
msgstr ""

#: etc/initialdata:185 etc/upgrade/3.8.3/content:2
msgid "On Reject"
msgstr ""

#: etc/initialdata:204 etc/upgrade/3.7.1/content:7
msgid "On Reopen"
msgstr ""

#: etc/initialdata:178
msgid "On Resolve"
msgstr ""

#: etc/initialdata:149
msgid "On Status Change"
msgstr ""

#: etc/initialdata:109
msgid "On Transaction"
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102
msgid "One-time Bcc"
msgstr "Jednorázovo Bcc"

#: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100
msgid "One-time Cc"
msgstr "Jednorázovo CC"

#: lib/RT/Config.pm:281
msgid "Only for entry, not display"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:68
#. (qq{")
msgid "Only show approvals for requests created after %1"
msgstr "Zobraziť iba schválenie pre žiadosti vytvorené po %1"

#: share/html/Approvals/Elements/PendingMyApproval:66
#. (qq{")
msgid "Only show approvals for requests created before %1"
msgstr "Zobraziť iba schválenie pre žiadosti vytvorené pred %1"

#: share/html/Admin/CustomFields/index.html:72
msgid "Only show custom fields for:"
msgstr "Zobraziť iba vlastné polia pre:"

#: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542
msgid "Open It"
msgstr "Otvorte ho"

#: etc/initialdata:95
msgid "Open Tickets"
msgstr "Otvorené požiadavky"

#: share/html/Elements/MakeClicky:58
msgid "Open URL"
msgstr "Otvoriť URL"

#: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48
msgid "Open tickets"
msgstr "Otvorené požiadavky"

#: etc/initialdata:96
msgid "Open tickets on correspondence"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:61
msgid "Option"
msgstr "Možnosti"

#: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67
msgid "Options"
msgstr "Možnosti"

#: lib/RT/Installer.pm:71
msgid "Oracle"
msgstr ""

#: share/html/Search/Elements/EditSort:55
msgid "Order by"
msgstr "Zoradiť podľa"

#: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127
msgid "Organization"
msgstr ""

#: share/html/Approvals/Elements/Approve:55
#. ($approving->Id, $approving->Subject)
msgid "Originating ticket: #%1"
msgstr ""

#: lib/RT/Transaction.pm:702
msgid "Outgoing email about a comment recorded"
msgstr ""

#: lib/RT/Transaction.pm:706
msgid "Outgoing email recorded"
msgstr ""

#: lib/RT/Config.pm:489
msgid "Outgoing mail"
msgstr ""

#: share/html/Admin/Queues/Modify.html:93
msgid "Over time, priority moves toward"
msgstr ""

#: share/html/Elements/Tabs:431
msgid "Overview"
msgstr "Prehľad"

#: lib/RT/Queue.pm:115
msgid "Own tickets"
msgstr "Vlastniť požiadavky"

#: lib/RT/Queue.pm:115
msgid "OwnTicket"
msgstr "Vlastniť požiadavku"

#: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291
msgid "Owner"
msgstr "Vlastník"

#: lib/RT/Ticket.pm:661
#. ($DeferOwner->Name)
msgid "Owner '%1' does not have rights to own this ticket."
msgstr ""

#: lib/RT/Ticket.pm:3039
#. ($OldOwnerObj->Name, $NewOwnerObj->Name)
msgid "Owner changed from %1 to %2"
msgstr "Vlastník zmenený z %1 na %2"

#: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411
msgid "Owner could not be set."
msgstr "Vlastník nemohol byť nastavený"

#: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926
#. ($Old->Name , $New->Name)
#. ($Old->Name, $New->Name)
msgid "Owner forcibly changed from %1 to %2"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "OwnerName"
msgstr "Meno vlastníka"

#: share/html/Elements/CollectionListPaging:65
msgid "Page"
msgstr "Strana"

#: share/html/Elements/CollectionListPaging:62
msgid "Page 1 of 1"
msgstr "Strana 1 z 1"

#: share/html/dhandler:48
msgid "Page not found"
msgstr ""

#: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100
msgid "Pager"
msgstr "Pagr"

#: share/html/Elements/RT__User/ColumnMap:101
msgid "Pager Phone"
msgstr ""

#: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458
msgid "Parents"
msgstr "Rodičia"

#: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77
msgid "Password"
msgstr "Heslo"

#: share/html/NoAuth/Reminder.html:48
msgid "Password Reminder"
msgstr ""

#: lib/RT/Transaction.pm:878 lib/RT/User.pm:862
msgid "Password changed"
msgstr "Heslo zmenené"

#: lib/RT/User.pm:828
msgid "Password has not been set."
msgstr "Heslo nebolo nastavené"

#: lib/RT/User.pm:301
#. (RT->Config->Get('MinimumPasswordLength'))
msgid "Password needs to be at least %1 characters long"
msgstr "Heslo musí mať viac ako %1 znakov"

#: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91
msgid "Password not printed"
msgstr ""

#: lib/RT/User.pm:861
msgid "Password set"
msgstr "Heslo nastavené"

#: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263
#. ($msg)
msgid "Password: %1"
msgstr ""

#: lib/RT/User.pm:847
msgid "Password: Permission Denied"
msgstr "Heslo: povolenie odmietnuté"

#: etc/initialdata:463
msgid "PasswordChange"
msgstr ""

#: lib/RT/User.pm:824
msgid "Passwords do not match."
msgstr ""

#: lib/RT/Installer.pm:189
msgid "Path to sendmail"
msgstr ""

#: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287
msgid "People"
msgstr "Ľudia"

#: share/html/Admin/Queues/People.html:188
#. ($QueueObj->Name)
msgid "People related to queue %1"
msgstr ""

#: etc/initialdata:89
msgid "Perform a user-defined action"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:60
msgid "Perl"
msgstr "Perl"

#: share/html/Admin/Tools/Configuration.html:252
msgid "Perl configuration"
msgstr "Perl konfigurácia"

#: share/html/Admin/Tools/Configuration.html:182
msgid "Perl library search order"
msgstr ""

#: share/html/Elements/Tabs:231
msgid "Permanently wipeout data from RT"
msgstr ""

#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
msgid "Permission Denied"
msgstr "Povolenie odmietnuté"

#: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95
msgid "Permission denied"
msgstr "Povolenie odmietnuté"

#: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85
msgid "Phone numbers"
msgstr "Tel. číslo"

#: share/html/dhandler:51
msgid "Please check the URL and try again."
msgstr ""

#: lib/RT/User.pm:819
msgid "Please enter your current password correctly."
msgstr ""

#: lib/RT/User.pm:821
msgid "Please enter your current password."
msgstr ""

#: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51
msgid "Possible cross-site request forgery"
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:73
msgid "Possible hidden searches"
msgstr ""

#: lib/RT/Installer.pm:69
msgid "PostgreSQL"
msgstr ""

#: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81
#. ($m->interp->apply_escapes($Name, 'h'))
#. ($m->interp->apply_escapes($name, 'h'))
msgid "Predefined search %1 not found"
msgstr ""

#: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48
msgid "Preferences"
msgstr "Nastavenia"

#: share/html/Admin/Users/MyRT.html:118
#. ($pane, $UserObj->Name)
msgid "Preferences %1 for user %2."
msgstr ""

#: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94
#. ($pane)
#. (loc('summary rows'))
msgid "Preferences saved for %1."
msgstr ""

#: share/html/Admin/Users/MyRT.html:77
#. ($UserObj->Name)
msgid "Preferences saved for user %1."
msgstr ""

#: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81
msgid "Preferences saved."
msgstr ""

#: share/html/Prefs/Other.html:88
#. ($msg)
msgid "Preferred Key: %1"
msgstr ""

#: share/html/Prefs/Other.html:72
msgid "Preferred key"
msgstr ""

#: lib/RT/Action.pm:171
msgid "Prepare Stubbed"
msgstr ""

#: share/html/Elements/Tabs:653
msgid "Prev"
msgstr ""

#: share/html/Elements/CollectionListPaging:103
msgid "Previous"
msgstr ""

#: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237
#. ($args{'PrincipalId'})
msgid "Principal %1 not found."
msgstr ""

#: sbin/rt-email-digest:96
msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent"
msgstr ""

#: sbin/rt-email-digest:98
msgid "Print this message"
msgstr ""

#: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243
msgid "Priority"
msgstr "Priorita"

#: share/html/Admin/Queues/Modify.html:88
msgid "Priority starts at"
msgstr "Priorita začína na"

#: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53
msgid "Privacy"
msgstr "Súkromie"

#: share/html/Articles/Article/Elements/ShowSavedSearches:56
msgid "Privacy:"
msgstr "Súkromné:"

#: share/html/Admin/Users/GnuPG.html:66
msgid "Private Key"
msgstr "Súkromný kľúč"

#: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111
msgid "Privileged"
msgstr ""

#: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253
#. (loc_fuzzy($msg))
msgid "Privileged status: %1"
msgstr ""

#: share/html/Admin/Users/index.html:133
msgid "Privileged users"
msgstr ""

#: bin/rt-crontool:182
msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument"
msgstr ""

#: lib/RT/Handle.pm:681
msgid "Pseudogroup for internal use"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:150
#. ($line->{'Key'})
msgid "Public key '0x%1' is required to verify signature"
msgstr ""

#: share/html/Dashboards/Subscription.html:69
msgid "Queries"
msgstr "Dotazy"

#: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152
msgid "Query"
msgstr "Dotaz"

#: share/html/Search/Build.html:115
msgid "Query Builder"
msgstr "Tvorca dotazov"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247
msgid "Queue"
msgstr "Fronta"

#: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58
#. ($Queue)
#. ($id)
msgid "Queue %1 not found"
msgstr ""

#: share/html/Admin/Queues/Modify.html:59
msgid "Queue Name"
msgstr "Názov fronty"

#: lib/RT/Queue.pm:553
msgid "Queue already exists"
msgstr "Fronta už existuje"

#: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427
msgid "Queue could not be created"
msgstr "Fronta nemohla byť vytvorená"

#: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144
msgid "Queue could not be loaded."
msgstr ""

#: lib/RT/Queue.pm:444
msgid "Queue created"
msgstr "Fronta vytvorená"

#: lib/RT/Queue.pm:483
msgid "Queue disabled"
msgstr ""

#: lib/RT/Queue.pm:485
msgid "Queue enabled"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:80
msgid "Queue id"
msgstr ""

#: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109
msgid "Queue not found"
msgstr ""

#: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54
msgid "Queue's key"
msgstr ""

#: lib/RT/Tickets.pm:143
msgid "QueueAdminCc"
msgstr ""

#: lib/RT/Tickets.pm:142
msgid "QueueCc"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "QueueName"
msgstr "NázovFronty"

#: lib/RT/Tickets.pm:144
msgid "QueueWatcher"
msgstr ""

#: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83
msgid "Queues"
msgstr "Fronty"

#: share/html/Elements/MyAdminQueues:48
msgid "Queues I administer"
msgstr ""

#: share/html/Elements/MySupportQueues:48
msgid "Queues I'm an AdminCc for"
msgstr ""

#: lib/RT/Config.pm:416
msgid "Quick Create"
msgstr "Rýchle vytvorenie"

#: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69
msgid "Quick search"
msgstr "Rýchle vyhľadávanie"

#: share/html/Elements/QuickCreate:49
msgid "Quick ticket creation"
msgstr "Rýchle vytvorenie požiadavky"

#: etc/RT_Config.pm:1124 etc/initialdata:627
msgid "QuickCreate"
msgstr ""

#: etc/RT_Config.pm:1124 etc/initialdata:638
msgid "Quicksearch"
msgstr ""

#: lib/RT/Date.pm:120
msgid "RFC2616"
msgstr "RFC2616"

#: lib/RT/Date.pm:119
msgid "RFC2822"
msgstr "RFC2822"

#: share/html/Elements/Tabs:768
msgid "RSS"
msgstr "RSS"

#: share/html/Admin/index.html:48
msgid "RT Administration"
msgstr ""

#: lib/RT/Installer.pm:165
msgid "RT Administrator Email"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:58
msgid "RT Configuration"
msgstr ""

#: share/html/Elements/Error:72 share/html/SelfService/Error.html:64
msgid "RT Error"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:139
msgid "RT Size"
msgstr "RT veľkosť"

#: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4
msgid "RT at a glance"
msgstr "Zbežný prehľad"

#: share/html/Admin/Users/MyRT.html:73
#. ($UserObj->Name)
msgid "RT at a glance for the user %1"
msgstr ""

#: share/html/Install/Sendmail.html:53
msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx).  RT also needs to know who to notify when someone sends invalid email.  This must not be an address that feeds back into RT."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:114
msgid "RT can include content from another web service when showing this custom field."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:106
msgid "RT can make this custom field's values into hyperlinks to another service."
msgstr ""

#: share/html/Admin/Tools/Configuration.html:110
msgid "RT core variables"
msgstr ""

#: lib/RT/Interface/Web/Session.pm:279
msgid "RT couldn't store your session."
msgstr ""

#: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48
#. (RT->Config->Get('rtname'))
msgid "RT for %1"
msgstr "RT pre %1"

#: share/html/Elements/CSRF:55
#. ($strong_start, $strong_end, $Reason, $action)
msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3.  A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team."
msgstr ""

#: share/html/Install/index.html:71
msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\""
msgstr ""

#: share/html/Install/index.html:74
msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)"
msgstr ""

#: lib/RT/Installer.pm:123
msgid "RT will connect to the database using this user.  It will be created for you."
msgstr ""

#: lib/RT/Installer.pm:158
msgid "RT will create a user called \"root\" and set this as their password"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116
#. ('__id__', '__CustomField__')
msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively."
msgstr ""

#: lib/RT/Installer.pm:144
msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to.  We recommend that you set this to your internet domain. (ex: example.com)"
msgstr ""

#: share/html/Install/DatabaseType.html:52
msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported."
msgstr ""

#: share/html/Admin/Queues/Modify.html:225
#. ($address)
msgid "RTAddressRegexp option in the config doesn't match %1"
msgstr ""

#: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549
msgid "Re-open"
msgstr "Znova otvorenie"

#: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69
msgid "Real Name"
msgstr "Reálne meno"

#: lib/RT/Report/Tickets.pm:65
msgid "RealName"
msgstr ""

#: share/html/Dashboards/Subscription.html:171
msgid "Recipient"
msgstr "Príjemca"

#: share/html/Dashboards/Subscription.html:239
msgid "Recipient must be an email address"
msgstr "Príjemca musí byť emailová adresa"

#: share/html/Ticket/Elements/ShowSimplifiedRecipients:78
msgid "Recipients"
msgstr "Príjemcovia"

#: share/html/Tools/MyDay.html:73
msgid "Record all updates"
msgstr "Uložiť všetky aktualizácie"

#: share/html/Elements/RT__Group/ColumnMap:69
msgid "Recursive member"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:124
msgid "Refer to"
msgstr ""

#: lib/RT/Transaction.pm:808
#. ($value)
msgid "Reference by %1 added"
msgstr ""

#: lib/RT/Transaction.pm:847
#. ($value)
msgid "Reference by %1 deleted"
msgstr ""

#: lib/RT/Transaction.pm:805
#. ($value)
msgid "Reference to %1 added"
msgstr ""

#: lib/RT/Transaction.pm:844
#. ($value)
msgid "Reference to %1 deleted"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476
msgid "Referred to by"
msgstr "Odvolal sa na"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "ReferredToBy"
msgstr ""

#: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466
msgid "Refers to"
msgstr "Týka sa"

#: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138
msgid "RefersTo"
msgstr ""

#: share/html/Elements/RefreshHomepage:48
msgid "Refresh"
msgstr "Obnovenie"

#: lib/RT/Config.pm:317
msgid "Refresh home page every 10 minutes."
msgstr "Aktualizovať stránku každých 10 minút."

#: lib/RT/Config.pm:320
msgid "Refresh home page every 120 minutes."
msgstr "Aktualizovať stránku každých 120 minút."

#: lib/RT/Config.pm:315
msgid "Refresh home page every 2 minutes."
msgstr "Aktualizovať stránku každé 2 minúty."

#: lib/RT/Config.pm:318
msgid "Refresh home page every 20 minutes."
msgstr "Aktualizovať stránku každých 20 minút."

#: lib/RT/Config.pm:316
msgid "Refresh home page every 5 minutes."
msgstr "Aktualizovať stránku každých 5 minút."

#: lib/RT/Config.pm:319
msgid "Refresh home page every 60 minutes."
msgstr "Aktualizovať stránku každých 60 minút."

#: lib/RT/Config.pm:296
msgid "Refresh search results every 10 minutes."
msgstr ""

#: lib/RT/Config.pm:299
msgid "Refresh search results every 120 minutes."
msgstr ""

#: lib/RT/Config.pm:294
msgid "Refresh search results every 2 minutes."
msgstr ""

#: lib/RT/Config.pm:297
msgid "Refresh search results every 20 minutes."
msgstr ""

#: lib/RT/Config.pm:295
msgid "Refresh search results every 5 minutes."
msgstr ""

#: lib/RT/Config.pm:298
msgid "Refresh search results every 60 minutes."
msgstr ""

#: share/html/Elements/Refresh:59
#. ($value/60)
msgid "Refresh this page every %1 minutes."
msgstr "Obnovenie stránky po %quant(%1,minúte,minútach)."

#: etc/RT_Config.pm:1124 etc/initialdata:646
msgid "RefreshHomepage"
msgstr ""

#: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537
msgid "Reject"
msgstr "Vyradiť"

#: lib/RT/Config.pm:164
msgid "Remember default queue"
msgstr "Zapamätať štandardnú frontu"

#: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81
msgid "Reminder"
msgstr "Pripomienka"

#: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944
#. ($args->{'NewReminder-Subject'})
#. ($ticket->Subject)
msgid "Reminder '%1' added"
msgstr "Pripomienka '%1' pridaná"

#: lib/RT/Transaction.pm:957
#. ($ticket->Subject)
msgid "Reminder '%1' completed"
msgstr "Pripomienka '%1' kompletná"

#: lib/RT/Transaction.pm:950
#. ($ticket->Subject)
msgid "Reminder '%1' reopened"
msgstr ""

#: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361
msgid "Reminders"
msgstr "Pripomienky"

#: share/html/Ticket/Reminders.html:48
#. ($Ticket->Id)
msgid "Reminders for ticket #%1"
msgstr "Pripomienky pre požiadavku #%1"

#: share/html/Search/Bulk.html:95
msgid "Remove AdminCc"
msgstr "Odstrániť AdminCc"

#: share/html/Ticket/Elements/Bookmark:88
msgid "Remove Bookmark"
msgstr "Odstrániť záložku"

#: share/html/Search/Bulk.html:91
msgid "Remove Cc"
msgstr "Odstrániš Cc"

#: share/html/Search/Bulk.html:87
msgid "Remove Requestor"
msgstr "Odstrániť žiadateľa"

#: lib/RT/Queue.pm:1063
#. ($principal->Object->Name, $args{'Type'})
msgid "Removed %1 from members of %2 for this queue."
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:72
msgid "Render Type"
msgstr "Typ zobrazenia"

#: lib/RT/Config.pm:188
msgid "Replaces the owner dropdowns with textboxes"
msgstr ""

#: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69
msgid "Reply"
msgstr "Odpovedať"

#: share/html/Admin/Queues/Modify.html:80
msgid "Reply Address"
msgstr "Adresa pre odpoveď"

#: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92
msgid "Reply to requestors"
msgstr "Odpovedať žiadateľom"

#: lib/RT/Queue.pm:113
msgid "Reply to tickets"
msgstr "Odpovedať na požiadavku"

#: lib/RT/Queue.pm:113
msgid "ReplyToTicket"
msgstr ""

#: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137
msgid "Requestor"
msgstr "Žiadateľ"

#: lib/RT/Tickets.pm:149
msgid "RequestorGroup"
msgstr ""

#: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296
msgid "Requestors"
msgstr "Žiadatelia"

#: share/html/Admin/Queues/Modify.html:100
msgid "Requests should be due in"
msgstr "Žiadosti by mali byť splnené do"

#: lib/RT/Attribute.pm:154
#. ('Object')
msgid "Required parameter '%1' not specified"
msgstr ""

#: share/html/Elements/Submit:114
msgid "Reset"
msgstr "Resetovať"

#: share/html/Prefs/MyRT.html:74
msgid "Reset RT at a glance"
msgstr ""

#: share/html/User/Prefs.html:178
msgid "Reset secret authentication token"
msgstr ""

#: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77
msgid "Reset to default"
msgstr ""

#: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88
msgid "Residence"
msgstr ""

#: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75
msgid "Resolve"
msgstr ""

#: share/html/m/ticket/reply:169
#. ($t->id, $t->Subject)
msgid "Resolve ticket #%1 (%2)"
msgstr ""

#: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100
msgid "Resolved"
msgstr "Vyriešený"

#: share/html/Search/Elements/BuildFormatString:100
msgid "ResolvedRelative"
msgstr ""

#: share/html/Search/Elements/EditFormat:73
msgid "Respond"
msgstr ""

#: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48
msgid "Results"
msgstr "Výsledok"

#: share/html/Ticket/GnuPG.html:55
msgid "Return back to the ticket"
msgstr ""

#: share/html/Elements/EditPassword:66
msgid "Retype Password"
msgstr ""

#: share/html/Search/Elements/EditSearches:62
msgid "Revert"
msgstr ""

#: lib/RT/ACE.pm:303
msgid "Right Granted"
msgstr ""

#: lib/RT/ACE.pm:173
msgid "Right Loaded"
msgstr ""

#: lib/RT/ACE.pm:358
msgid "Right could not be revoked"
msgstr ""

#: lib/RT/ACE.pm:326
msgid "Right not loaded."
msgstr ""

#: lib/RT/ACE.pm:354
msgid "Right revoked"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350
#. ($object_type)
msgid "Rights could not be granted for %1"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:93
msgid "Rights for Administrators"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:92
msgid "Rights for Staff"
msgstr ""

#: share/html/Dashboards/Subscription.html:161
msgid "Rows"
msgstr ""

#: share/html/Prefs/MyRT.html:69
msgid "Rows per box"
msgstr ""

#: share/html/Search/Elements/EditSort:91
msgid "Rows per page"
msgstr "Riadkov na stránku"

#: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224
msgid "SQL Queries"
msgstr ""

#: lib/RT/Installer.pm:70
msgid "SQLite"
msgstr ""

#: share/html/Install/DatabaseType.html:58
msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server."
msgstr ""

#: lib/RT/Date.pm:112
msgid "Sat"
msgstr "Sob"

#: share/html/Dashboards/Subscription.html:111
msgid "Saturday"
msgstr "Sobota"

#: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367
msgid "Save"
msgstr "Uložiť"

#: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62
msgid "Save Changes"
msgstr "Uložť zmeny"

#: share/html/User/Prefs.html:199
msgid "Save Preferences"
msgstr "Uložiť predvoľby"

#: share/html/Search/Elements/EditSearches:66
msgid "Save as New"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:60
msgid "Save new"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:54
msgid "Save this search"
msgstr ""

#: lib/RT/SharedSetting.pm:213
#. ($self->loc( $self->ObjectName ), $name)
msgid "Saved %1 %2"
msgstr ""

#: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128
msgid "Saved Search"
msgstr ""

#: share/html/Elements/ShowSearch:72
#. ($m->interp->apply_escapes($SavedSearch, 'h'))
msgid "Saved Search %1 not found"
msgstr ""

#: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487
msgid "Saved Searches"
msgstr ""

#: share/html/Search/Chart.html:133
msgid "Saved charts"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185
msgid "Saved searches"
msgstr "Uložiť vyhľadávania"

#: etc/RT_Config.pm:1124
msgid "SavedSearches"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:71
#. ($scrip->id)
msgid "Scrip #%1"
msgstr ""

#: lib/RT/Scrip.pm:184
msgid "Scrip Created"
msgstr ""

#: share/html/Admin/Elements/EditScrip:54
msgid "Scrip Fields"
msgstr "Polia skriptu"

#: share/html/Admin/Elements/EditScrips:106
msgid "Scrip deleted"
msgstr "Skript zmazaný"

#: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281
msgid "Scrips"
msgstr "Skripty"

#: share/html/Ticket/Update.html:191
msgid "Scrips and Recipients"
msgstr ""

#: share/html/Admin/Queues/Scrips.html:52
msgid "Scrips which apply to all queues"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64
msgid "Search"
msgstr "Vyhľadať"

#: share/html/Articles/Article/Search.html:214
#. ($search->Name)
msgid "Search %1 updated"
msgstr ""

#: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49
msgid "Search Articles"
msgstr ""

#: share/html/Prefs/SearchOptions.html:48
msgid "Search Preferences"
msgstr "Nastavenie vyhľadávania"

#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
msgid "Search for Articles matching"
msgstr "Vyhľadávanie článkov zodpovedajúce"

#: share/html/Approvals/Elements/PendingMyApproval:57
msgid "Search for approvals"
msgstr ""

#: share/html/Articles/Article/Search.html:48
msgid "Search for articles"
msgstr "Vyhľadať články"

#: share/html/Search/Simple.html:100
msgid "Search for tickets"
msgstr "Vyhľadávanie pre požiadavky"

#: share/html/Search/Simple.html:63
#. (@strong)
msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2."
msgstr ""

#: share/html/Elements/Tabs:483
msgid "Search options"
msgstr ""

#: share/html/Articles/Article/Search.html:81
msgid "Search results"
msgstr ""

#: share/html/Search/Chart.html:71
#. ($PrimaryGroupByLabel)
msgid "Search results grouped by %1"
msgstr ""

#: lib/RT/Config.pm:290
msgid "Search results refresh interval"
msgstr ""

#: share/html/Search/Simple.html:73
#. ($fulltext_keyword)
msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word."
msgstr ""

#: share/html/User/Prefs.html:170
msgid "Secret authentication token"
msgstr ""

#: bin/rt-crontool:350
msgid "Security:"
msgstr ""

#: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196
msgid "See also:"
msgstr ""

#: lib/RT/Class.pm:90
msgid "See articles in this class"
msgstr ""

#: lib/RT/Class.pm:91
msgid "See changes to articles in this class"
msgstr ""

#: lib/RT/Class.pm:88
msgid "See that this class exists"
msgstr ""

#: lib/RT/Class.pm:88
msgid "SeeClass"
msgstr ""

#: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97
msgid "SeeCustomField"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "SeeDashboard"
msgstr ""

#: lib/RT/Group.pm:99
msgid "SeeGroup"
msgstr ""

#: lib/RT/Group.pm:100
msgid "SeeGroupDashboard"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "SeeOwnDashboard"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "SeeQueue"
msgstr ""

#: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96
msgid "Select"
msgstr "Vybrať"

#: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154
msgid "Select Custom Fields for Articles in all Classes"
msgstr ""

#: share/html/Install/DatabaseDetails.html:73
msgid "Select Database Type"
msgstr ""

#: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52
msgid "Select a Class"
msgstr "Vyberte triedu"

#: share/html/Admin/CustomFields/index.html:96
msgid "Select a Custom Field"
msgstr "Vyberte vlastné pole"

#: share/html/Admin/Tools/Theme.html:83
msgid "Select a color for the section"
msgstr ""

#: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99
msgid "Select a group"
msgstr "Vybrať skupinu"

#: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55
msgid "Select a queue"
msgstr ""

#: share/html/SelfService/CreateTicketInQueue.html:50
msgid "Select a queue for your new ticket"
msgstr "Vyberte frontu pre Vašu novú požiadavku"

#: share/html/Admin/Tools/Theme.html:79
msgid "Select a section"
msgstr ""

#: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93
msgid "Select a user"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:114
#. ($included_topic->Name)
msgid "Select an Article from %1"
msgstr ""

#: share/html/Articles/Elements/BeforeMessageBox:66
msgid "Select an Article to include"
msgstr ""

#: share/html/Install/index.html:59
msgid "Select another language"
msgstr ""

#: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82
msgid "Select box"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139
msgid "Select custom fields for all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134
msgid "Select custom fields for all user groups"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129
msgid "Select custom fields for all users"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144
msgid "Select custom fields for tickets in all queues"
msgstr ""

#: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149
msgid "Select custom fields for transactions on tickets in all queues"
msgstr ""

#: lib/RT/CustomField.pm:160
msgid "Select date"
msgstr ""

#: lib/RT/CustomField.pm:169
msgid "Select datetime"
msgstr ""

#: lib/RT/CustomField.pm:159
msgid "Select multiple dates"
msgstr ""

#: lib/RT/CustomField.pm:168
msgid "Select multiple datetimes"
msgstr ""

#: lib/RT/CustomField.pm:70
msgid "Select multiple values"
msgstr "Vyberte viac hodnôt"

#: lib/RT/CustomField.pm:71
msgid "Select one value"
msgstr "Vyberte jednu hodnotu"

#: share/html/Prefs/Quicksearch.html:52
msgid "Select queues to be displayed on the \"RT at a glance\" page"
msgstr "Vyberte fronty, ktoré sa majú zobraziť na hlavnej stránke RT"

#: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52
#. ()
msgid "Select topics for this article"
msgstr ""

#: lib/RT/CustomField.pm:161
msgid "Select up to %1 dates"
msgstr ""

#: lib/RT/CustomField.pm:170
msgid "Select up to %1 datetimes"
msgstr ""

#: lib/RT/CustomField.pm:72
msgid "Select up to %1 values"
msgstr ""

#: share/html/Admin/Elements/EditCustomFields:55
msgid "Selected Custom Fields"
msgstr "Vybrané vlastné polia"

#: share/html/Admin/Articles/Classes/Objects.html:65
msgid "Selected Queues"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2068
msgid "Selected key either is not trusted or doesn't exist anymore."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:67
msgid "Selected objects"
msgstr ""

#: share/html/Widgets/SelectionBox:231
msgid "Selections modified. Please save your changes"
msgstr ""

#: etc/initialdata:77
msgid "Send mail to owner and all watchers"
msgstr ""

#: etc/initialdata:73
msgid "Send mail to owner and all watchers as a \"comment\""
msgstr ""

#: etc/initialdata:68
msgid "Send mail to requestors and Ccs"
msgstr ""

#: etc/initialdata:63
msgid "Send mail to requestors and Ccs as a comment"
msgstr ""

#: etc/initialdata:34
msgid "Sends a message to the requestors"
msgstr "Odošle správu na žiadateľov"

#: etc/initialdata:81 etc/initialdata:85
msgid "Sends mail to explicitly listed Ccs and Bccs"
msgstr ""

#: etc/initialdata:50 etc/upgrade/3.1.17/content:7
msgid "Sends mail to the Ccs"
msgstr ""

#: etc/initialdata:46 etc/upgrade/3.1.17/content:3
msgid "Sends mail to the Ccs as a comment"
msgstr ""

#: etc/initialdata:58
msgid "Sends mail to the administrative Ccs"
msgstr ""

#: etc/initialdata:54
msgid "Sends mail to the administrative Ccs as a comment"
msgstr ""

#: etc/initialdata:38 etc/initialdata:42
msgid "Sends mail to the owner"
msgstr ""

#: lib/RT/Interface/Email.pm:796
msgid "Sent email successfully"
msgstr ""

#: lib/RT/Date.pm:99
msgid "Sep"
msgstr "Sep"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:49
msgid "Separate multiple entries with spaces."
msgstr ""

#: lib/RT/User.pm:1659
msgid "Set private key"
msgstr ""

#: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80
msgid "Settings"
msgstr "Nastavenia"

#: lib/RT/Config.pm:176
msgid "Short usernames"
msgstr ""

#: lib/RT/Config.pm:490
msgid "Should RT send you mail for ticket updates you make?"
msgstr ""

#: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182
msgid "Show"
msgstr "Zobraziť"

#: lib/RT/System.pm:84
msgid "Show Approvals tab"
msgstr ""

#: share/html/Search/Elements/EditFormat:54
msgid "Show Columns"
msgstr "Zobraziť stĺpce"

#: lib/RT/System.pm:83
msgid "Show Configuration tab"
msgstr ""

#: share/html/Elements/Tabs:742
msgid "Show Results"
msgstr "Zobraziť výsledok"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:153
#. ($Level)
msgid "Show Tickets Properties on %1 level"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64
msgid "Show all quoted text"
msgstr "Zobraziť všetky citácie"

#: share/html/Approvals/Elements/PendingMyApproval:62
msgid "Show approved requests"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:71
msgid "Show as well"
msgstr "Zobraziť ako aj"

#: share/html/Ticket/Elements/ShowHistory:73
msgid "Show brief headers"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:63
msgid "Show denied requests"
msgstr ""

#: share/html/Ticket/Elements/ShowHistory:78
msgid "Show full headers"
msgstr "Zobraziť úplné hlavičky"

#: lib/RT/System.pm:85
msgid "Show global templates"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:101
msgid "Show link descriptions"
msgstr ""

#: lib/RT/Config.pm:397
msgid "Show no tickets for the Requestor"
msgstr ""

#: lib/RT/Config.pm:343
msgid "Show oldest history first"
msgstr ""

#: share/html/Approvals/Elements/PendingMyApproval:61
msgid "Show pending requests"
msgstr "Zobraziť čakajúce žiadosti"

#: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50
msgid "Show quoted text"
msgstr "Zobraziť citovaný text"

#: share/html/Approvals/Elements/PendingMyApproval:64
msgid "Show requests awaiting other approvals"
msgstr ""

#: lib/RT/Config.pm:394
msgid "Show the Requestor's 10 highest priority active tickets"
msgstr ""

#: lib/RT/Config.pm:395
msgid "Show the Requestor's 10 highest priority inactive tickets"
msgstr ""

#: lib/RT/Config.pm:396
msgid "Show the Requestor's 10 highest priority tickets"
msgstr ""

#: share/html/Ticket/Elements/ClickToShowHistory:50
msgid "Show ticket history"
msgstr ""

#: lib/RT/Class.pm:96 lib/RT/Queue.pm:94
msgid "ShowACL"
msgstr ""

#: lib/RT/System.pm:84
msgid "ShowApprovalsTab"
msgstr ""

#: lib/RT/Class.pm:90
msgid "ShowArticle"
msgstr ""

#: lib/RT/Class.pm:91
msgid "ShowArticleHistory"
msgstr ""

#: lib/RT/System.pm:83
msgid "ShowConfigTab"
msgstr ""

#: lib/RT/System.pm:85
msgid "ShowGlobalTemplates"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "ShowOutgoingEmail"
msgstr ""

#: lib/RT/Group.pm:98
msgid "ShowSavedSearches"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "ShowScrips"
msgstr ""

#: lib/RT/Queue.pm:101
msgid "ShowTemplate"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "ShowTicket"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "ShowTicketComments"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785
msgid "Shredder"
msgstr "Skartovač"

#: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55
#. ($path_tag)
msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server."
msgstr ""

#: share/html/Dashboards/Queries.html:183
msgid "Sidebar"
msgstr ""

#: share/html/Elements/RT__Queue/ColumnMap:81
msgid "Sign"
msgstr ""

#: share/html/Admin/Queues/Modify.html:123
#. ("","","","")
msgid "Sign all auto-generated mail.  %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4."
msgstr ""

#: share/html/Admin/Queues/Modify.html:118
msgid "Sign by default"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Sign up as a ticket Requestor or ticket or queue Cc"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "Sign up as a ticket or queue AdminCc"
msgstr ""

#: share/html/Elements/GnuPG/SignEncryptWidget:56
#. ($columnsplit,    $m->scomp('/Widgets/Form/Boolean:InputOnly',        Name => 'Sign', CurrentValue => $self->{'Sign'}    ),    $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),)
msgid "Sign%1%2 using %3"
msgstr ""

#: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107
msgid "Signature"
msgstr "Podpis"

#: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613
msgid "Signing disabled"
msgstr ""

#: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612
msgid "Signing enabled"
msgstr ""

#: share/html/Admin/Elements/ModifyTemplate:61
msgid "Simple"
msgstr ""

#: share/html/Elements/Tabs:425
msgid "Simple Search"
msgstr "Jednoduché vyhľadávanie"

#: share/html/Admin/Elements/SelectSingleOrMultiple:49
msgid "Single"
msgstr ""

#: lib/RT/Installer.pm:143
msgid "Site name"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84
msgid "Size"
msgstr "Veľkosť"

#: share/html/Elements/PersonalQuickbar:52
msgid "Skip Menu"
msgstr "Preskočiť ponuku"

#: sbin/rt-email-digest:287
msgid "Skipping disabled user"
msgstr ""

#: share/html/Search/Elements/EditFormat:87
msgid "Small"
msgstr "Malý"

#: share/html/Admin/CustomFields/Modify.html:117
msgid "Some browsers may only load content from the same domain as your RT server."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:112
msgid "Something wrong. Contact system administrator"
msgstr ""

#: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57
msgid "Sort"
msgstr "Triediť"

#: share/html/Search/Elements/DisplayOptions:48
msgid "Sorting"
msgstr "Triedenie"

#: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63
msgid "Source"
msgstr "Zdroj"

#: sbin/rt-email-digest:94
msgid "Specify whether this is a daily or weekly run."
msgstr ""

#: share/html/Elements/Tabs:751
msgid "Spreadsheet"
msgstr "Tabuľkový"

#: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97
msgid "Stage"
msgstr "Fáza"

#: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529
msgid "Stall"
msgstr "Odložiť"

#: share/html/Search/Simple.html:85
#. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com')
msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type."
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387
msgid "Started"
msgstr "Počiatočný"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartedRelative"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383
msgid "Starts"
msgstr "Začina"

#: share/html/Search/Elements/BuildFormatString:100
msgid "StartsRelative"
msgstr ""

#: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143
msgid "State"
msgstr "Stav"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221
msgid "Status"
msgstr "Status"

#: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157
#. ($self->loc($args{'Status'}))
#. ($self->loc($new))
msgid "Status '%1' isn't a valid status for tickets in this queue."
msgstr ""

#: etc/initialdata:307
msgid "Status Change"
msgstr ""

#: lib/RT/Transaction.pm:654
#. ("'" . $self->loc( $self->OldValue ) . "'",                        "'" . $self->loc( $self->NewValue ) . "'")
msgid "Status changed from %1 to %2"
msgstr ""

#: share/html/Admin/Elements/EditRightsCategoryTabs:94
msgid "Status changes"
msgstr ""

#: share/html/Elements/Tabs:627
msgid "Steal"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "Steal tickets"
msgstr ""

#: lib/RT/Queue.pm:119
msgid "StealTicket"
msgstr ""

#: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48
#. (1, 7)
#. (2, 7)
#. (3, 7)
#. (4, 7)
#. (5, 7)
#. (6, 7)
#. (7, 7)
msgid "Step %1 of %2"
msgstr ""

#: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913
#. ($Old->Name)
msgid "Stolen from %1"
msgstr ""

#: share/html/Search/Elements/EditFormat:93
msgid "Style"
msgstr "Štýl"

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96
msgid "Subject"
msgstr "Predmet"

#: share/html/Admin/Queues/Modify.html:76
msgid "Subject Tag"
msgstr ""

#: lib/RT/Transaction.pm:784
#. ($self->Data)
msgid "Subject changed to %1"
msgstr "Predmet zmenený na %1"

#: share/html/Elements/RT__Queue/ColumnMap:76
msgid "SubjectTag"
msgstr ""

#: share/html/Elements/Submit:99
msgid "Submit"
msgstr "Odoslať"

#: share/html/Dashboards/Subscription.html:185
msgid "Subscribe"
msgstr "Odoberať"

#: share/html/Dashboards/Subscription.html:287
#. ($Dashboard->Name)
msgid "Subscribe to dashboard %1"
msgstr "Prihlásiť sa k odberu panelu %1"

#: lib/RT/Dashboard.pm:79
msgid "Subscribe to dashboards"
msgstr "Prihlásiť sa k odberu panelov"

#: lib/RT/Dashboard.pm:79
msgid "SubscribeDashboard"
msgstr ""

#: share/html/Dashboards/Subscription.html:272
#. ($Dashboard->Name)
msgid "Subscribed to dashboard %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514
msgid "Subscription"
msgstr "Príspevok"

#: share/html/Dashboards/Subscription.html:277
#. ($msg)
msgid "Subscription could not be created: %1"
msgstr "Príspevok nemôže byť vytvorený: %1"

#: lib/RT/Attachment.pm:802
msgid "Successfuly decrypted data"
msgstr ""

#: lib/RT/Attachment.pm:767
msgid "Successfuly encrypted data"
msgstr ""

#: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65
msgid "Summary"
msgstr "Zhrnutie"

#: lib/RT/Date.pm:106
msgid "Sun"
msgstr "Ned"

#: share/html/Dashboards/Subscription.html:112
msgid "Sunday"
msgstr "Nedeľa"

#: lib/RT/System.pm:80
msgid "SuperUser"
msgstr ""

#: lib/RT/Config.pm:479
msgid "Suspended"
msgstr "Odročený"

#: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212
msgid "System Configuration"
msgstr ""

#: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63
msgid "System Default"
msgstr ""

#: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110
msgid "System Error"
msgstr ""

#: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267
#. ($msg)
msgid "System Error: %1"
msgstr ""

#: share/html/Admin/Tools/index.html:48
msgid "System Tools"
msgstr ""

#: lib/RT/Transaction.pm:672
msgid "System error"
msgstr ""

#: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306
msgid "System error. Right not granted."
msgstr ""

#: lib/RT/Handle.pm:733
msgid "SystemRolegroup for internal use"
msgstr ""

#: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72
msgid "Take"
msgstr "Prevziať"

#: lib/RT/Queue.pm:118
msgid "Take tickets"
msgstr "Prevzaté požiadavky"

#: lib/RT/Queue.pm:118
msgid "TakeTicket"
msgstr "Prevzatá požiadavka"

#: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905
msgid "Taken"
msgstr "Prevzaté"

#: share/html/Install/DatabaseDetails.html:53
msgid "Tell us a little about how to find the database RT will be using"
msgstr ""

#: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77
msgid "Template"
msgstr "Šablóna"

#: share/html/Admin/Elements/EditTemplates:111
#. ($id)
msgid "Template #%1 deleted"
msgstr ""

#: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695
#. ($args{'Template'})
#. ($value)
msgid "Template '%1' not found"
msgstr ""

#: lib/RT/Template.pm:724
msgid "Template compiles"
msgstr ""

#: lib/RT/Template.pm:691
msgid "Template does not include Perl code"
msgstr ""

#: lib/RT/Template.pm:415
msgid "Template is empty"
msgstr ""

#: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690
msgid "Template is mandatory argument"
msgstr ""

#: lib/RT/Template.pm:395
msgid "Template parsed"
msgstr ""

#: lib/RT/Template.pm:480
msgid "Template parsing error"
msgstr ""

#: lib/RT/Template.pm:500 lib/RT/Template.pm:702
#. ($Text::Template::ERROR)
msgid "Template parsing error: %1"
msgstr ""

#: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277
msgid "Templates"
msgstr "Šablóny"

#: share/html/Admin/Queues/Templates.html:60
#. ($QueueObj->Name)
msgid "Templates for queue %1"
msgstr "Šablóny pre frontu %1"

#: share/html/Admin/Tools/Theme.html:90
msgid "Text"
msgstr "Text"

#: share/html/Ticket/Elements/ShowTransactionAttachments:166
msgid "Text file is not shown because it is disabled in preferences."
msgstr ""

#: lib/RT/Record.pm:965
msgid "That is already the current value"
msgstr ""

#: lib/RT/CustomField.pm:585
msgid "That is not a value for this custom field"
msgstr ""

#: lib/RT/Ticket.pm:1708
msgid "That is the same value"
msgstr ""

#: lib/RT/Ticket.pm:1704
msgid "That queue does not exist"
msgstr ""

#: lib/RT/Ticket.pm:3171
msgid "That ticket has unresolved dependencies"
msgstr ""

#: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987
msgid "That user already owns that ticket"
msgstr ""

#: lib/RT/Ticket.pm:2930
msgid "That user does not exist"
msgstr ""

#: lib/RT/User.pm:350
msgid "That user is already privileged"
msgstr ""

#: lib/RT/User.pm:370
msgid "That user is already unprivileged"
msgstr ""

#: lib/RT/User.pm:363
msgid "That user is now privileged"
msgstr ""

#: lib/RT/User.pm:383
msgid "That user is now unprivileged"
msgstr ""

#: lib/RT/Ticket.pm:2980
msgid "That user may not own tickets in that queue"
msgstr ""

#: lib/RT/Link.pm:207
msgid "That's not a numerical id"
msgstr "Toto nie je číselné id"

#: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211
msgid "The Basics"
msgstr "Základné"

#: lib/RT/ACE.pm:101
msgid "The CC of a ticket"
msgstr ""

#: lib/RT/Article.pm:661
#. ($Value)
msgid "The Class of the Article identified by %1 is not applied to the current Queue"
msgstr ""

#: lib/RT/Installer.pm:114
msgid "The DBA's database password"
msgstr ""

#: lib/RT/ACE.pm:102
msgid "The administrative CC of a ticket"
msgstr ""

#: lib/RT/Installer.pm:81
msgid "The domain name of your database server (like 'db.example.com')."
msgstr ""

#: bin/rt-crontool:360
msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:"
msgstr ""

#: share/html/Dashboards/Elements/Deleted:53
msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated."
msgstr ""

#: share/html/Dashboards/Elements/HiddenSearches:74
msgid "The following queries may not be visible to all users who can see this dashboard."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2244
msgid "The key has been disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2250
msgid "The key has been revoked"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2255
msgid "The key has expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2288
msgid "The key is fully trusted"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2293
msgid "The key is ultimately trusted"
msgstr ""

#: lib/RT/Record.pm:968
msgid "The new value has been set."
msgstr "Nová hodnota bola nastavená."

#: lib/RT/ACE.pm:99
msgid "The owner of a ticket"
msgstr "Vlastník požiadavky"

#: share/html/dhandler:50
msgid "The page you requested could not be found"
msgstr ""

#: lib/RT/ACE.pm:100
msgid "The requestor of a ticket"
msgstr ""

#: share/html/Install/Finish.html:64
#. (RT::Installer->ConfigFile)
msgid "The settings you've chosen are stored in %1."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:52
msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:"
msgstr ""

#: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217
msgid "Theme"
msgstr "Téma"

#: lib/RT/Crypt/GnuPG.pm:2095
msgid "There are several keys suitable for encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:50
msgid "There are unread messages on this ticket."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2283
msgid "There is marginal trust in this key"
msgstr ""

#: share/html/Admin/Groups/Modify.html:142
#. ($Group->Name)
msgid "There is more than one group with the name '%1'.  This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2087
msgid "There is no key suitable for encryption."
msgstr ""

#: lib/RT/Ticket.pm:1719
msgid "There is no mapping for statuses between these queues. Contact your system administrator."
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2091
msgid "There is one suitable key, but trust level is not set."
msgstr ""

#: share/html/Admin/Elements/EditUserComments:49
msgid "These comments aren't generally visible to the user"
msgstr ""

#: share/html/Install/Basics.html:53
msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
msgstr ""

#: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683
msgid "This Custom Field can not have list of values"
msgstr ""

#: lib/RT/Class.pm:445
msgid "This class does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1425
msgid "This custom field does not apply to that object"
msgstr ""

#: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356
msgid "This custom field has no Render Types"
msgstr ""

#: share/html/Admin/Tools/Configuration.html:52
msgid "This feature is only available to system administrators"
msgstr ""

#: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191
msgid "This feature is only available to system administrators."
msgstr ""

#: lib/RT/Interface/Web/Session.pm:281
#. ($RT::MasonSessionDir)
msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt."
msgstr ""

#: share/html/Admin/Tools/Queries.html:63
msgid "This server process has recorded no SQL queries."
msgstr ""

#: bin/rt-crontool:351
msgid "This tool allows the user to run arbitrary perl modules from within RT."
msgstr ""

#: lib/RT/Transaction.pm:362
msgid "This transaction appears to have no content"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTickets:49
#. ($Rows, $Description)
msgid "This user's %1 highest priority %2 tickets"
msgstr ""

#: lib/RT/Date.pm:110
msgid "Thu"
msgstr "Štv"

#: share/html/Dashboards/Subscription.html:109
msgid "Thursday"
msgstr "Štvrtok"

#: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53
msgid "Ticket"
msgstr "Požiadavka"

#: share/html/Ticket/ModifyAll.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket #%1 Jumbo update: %2"
msgstr ""

#: share/html/Ticket/Graphs/index.html:109
#. ($id)
msgid "Ticket #%1 relationships graph"
msgstr ""

#: share/html/Ticket/Elements/ShowTransaction:152
#. ($Transaction->Ticket)
msgid "Ticket #%1:"
msgstr "Požiadavka #%1:"

#: share/html/Approvals/Elements/ShowDependency:69
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
msgid "Ticket #%1: %2"
msgstr "Požiadavka #%1: %2"

#: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509
#. ($T::Tickets{$template_id}->Id)
#. ($T::Tickets{$template_id}->id)
#. ($ticket->Id)
msgid "Ticket %1"
msgstr "Požiadavka %1"

#: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713
#. ($self->Id, $QueueObj->Name)
msgid "Ticket %1 created in queue '%2'"
msgstr ""

#: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94
#. ($Ticket->Id, $_)
#. ($id, $msg)
msgid "Ticket %1: %2"
msgstr ""

#: share/html/Elements/Tabs:285
msgid "Ticket Custom Fields"
msgstr "Vlastné polia požiadavky"

#: share/html/Ticket/History.html:48
#. ($Ticket->Id, $Ticket->Subject)
msgid "Ticket History # %1 %2"
msgstr "História požiadavky # %1 %2"

#: etc/initialdata:322
msgid "Ticket Resolved"
msgstr "Požiadavka vyriešené"

#: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64
msgid "Ticket Search"
msgstr ""

#: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148
msgid "Ticket Transactions"
msgstr ""

#: share/html/Ticket/Update.html:64
msgid "Ticket and Transaction"
msgstr "Požiadavka a transakcia"

#: lib/RT/Config.pm:264 lib/RT/Config.pm:275
msgid "Ticket composition"
msgstr ""

#: lib/RT/Tickets.pm:2389
msgid "Ticket content"
msgstr "Obsah požiadavky"

#: lib/RT/Tickets.pm:2434
msgid "Ticket content type"
msgstr "Typ obsahu požiadavky"

#: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697
msgid "Ticket could not be created due to an internal error"
msgstr ""

#: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76
msgid "Ticket could not be loaded"
msgstr ""

#: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402
msgid "Ticket display"
msgstr ""

#: share/html/Ticket/Display.html:60
msgid "Ticket metadata"
msgstr "Údaje požiadavky"

#: etc/initialdata:308
msgid "Ticket status changed"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:63
msgid "Ticket update"
msgstr ""

#: lib/RT/Search/FromSQL.pm:80
#. (ref $self)
msgid "TicketSQL search module"
msgstr ""

#: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107
msgid "Tickets"
msgstr "Požiadavky"

#: lib/RT/Tickets.pm:2591
#. ($self->loc( $args{'TYPE'} ),            $args{'BASE'},)
msgid "Tickets %1 %2"
msgstr "Požiadavky %1 %2"

#: lib/RT/Tickets.pm:2548
#. ($self->loc( $args{'TYPE'} ),            $args{'TARGET'})
msgid "Tickets %1 by %2"
msgstr "Požiadavky %1 podľa %2"

#: share/html/m/_elements/menu:76
msgid "Tickets I own"
msgstr "Moje požiadavky"

#: share/html/Approvals/Elements/ShowDependency:50
msgid "Tickets which depend on this approval:"
msgstr "Požiadavky, ktoré závisia na tomto schválení"

#: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352
msgid "Time Estimated"
msgstr ""

#: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366
msgid "Time Left"
msgstr "Zostávajúci čas"

#: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359
msgid "Time Worked"
msgstr "Čas práce"

#: share/html/Elements/Footer:54
msgid "Time to display"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100
msgid "TimeEstimated"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100
msgid "TimeLeft"
msgstr ""

#: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100
msgid "TimeWorked"
msgstr ""

#: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80
msgid "Timezone"
msgstr ""

#: share/html/Search/Elements/EditFormat:80
msgid "Title"
msgstr ""

#: share/html/Ticket/Forward.html:66
msgid "To"
msgstr ""

#: share/html/Articles/Article/PreCreate.html:62
msgid "To create an Article, you must first create a Class and have access to that Class."
msgstr ""

#: share/html/Elements/Footer:59
#. ('sales@bestpractical.com')
msgid "To inquire about support, training, custom development or licensing, please contact %1."
msgstr ""

#: share/html/Admin/Tools/Queries.html:82
#. ($count)
msgid "Toggle %quant(%1,query,queries)"
msgstr ""

#: share/html/Admin/Tools/Queries.html:118
#. ()
msgid "Toggle stack trace"
msgstr ""

#: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100
msgid "Told"
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "ToldRelative"
msgstr ""

#: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48
msgid "Tools"
msgstr "Nástroje"

#: share/html/Admin/Articles/Elements/Topics:56
msgid "Topic Name"
msgstr "Názov témy"

#: lib/RT/Article.pm:478
msgid "Topic membership added"
msgstr ""

#: lib/RT/Article.pm:513
msgid "Topic membership removed"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169
msgid "Topic not found"
msgstr "Téme nenájdená"

#: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433
msgid "Topics"
msgstr "Témy"

#: share/html/Search/Elements/Chart:147
msgid "Total"
msgstr "Celkovo"

#: etc/initialdata:249
msgid "Transaction"
msgstr "Transakcia"

#: lib/RT/Transaction.pm:938
#. ($self->Data)
msgid "Transaction %1 purged"
msgstr ""

#: lib/RT/Transaction.pm:206
msgid "Transaction Created"
msgstr "Transakcia vytvorená"

#: share/html/Elements/Tabs:288
msgid "Transaction Custom Fields"
msgstr "Vlastné polia transakcie"

#: lib/RT/Transaction.pm:132
msgid "Transaction->Create couldn't, as you didn't specify an object type and id"
msgstr ""

#: lib/RT/Tickets.pm:136
msgid "TransactionDate"
msgstr ""

#: lib/RT/Transaction.pm:995
msgid "Transactions are immutable"
msgstr ""

#: share/html/Admin/Elements/ShowKeyInfo:55
msgid "Trust"
msgstr ""

#: lib/RT/Date.pm:108
msgid "Tue"
msgstr "Uto"

#: share/html/Dashboards/Subscription.html:107
msgid "Tuesday"
msgstr "Utorok"

#: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77
msgid "Type"
msgstr "Typ"

#: share/html/Articles/Article/Elements/LinkEntryInstructions:48
msgid "Type a: before article numbers and t: before ticket numbers."
msgstr ""

#: lib/RT/CustomField.pm:1035
#. ($self->FriendlyTypeComposite( $old ),        $self->FriendlyTypeComposite( $composite ),)
msgid "Type changed from '%1' to '%2'"
msgstr ""

#: lib/RT/Article.pm:481
msgid "Unable to add topic membership"
msgstr ""

#: lib/RT/Article.pm:509
#. ($t->TopicObj->Name)
msgid "Unable to delete topic membership in %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:289
msgid "Unable to determine object type or id"
msgstr ""

#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
msgid "Unable to load article"
msgstr ""

#: share/html/Admin/Tools/Theme.html:236
#. ($msg)
msgid "Unable to set UserCSS: %1"
msgstr ""

#: share/html/Admin/Tools/Theme.html:208
#. ($msg)
msgid "Unable to set UserLogo: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:277
#. ($msg)
msgid "Unable to set privacy id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:286
#. (loc('Permission Denied'))
msgid "Unable to set privacy object or id: %1"
msgstr ""

#: share/html/Search/Elements/EditSearches:269
#. ($msg)
msgid "Unable to set privacy object: %1"
msgstr ""

#: share/html/Dashboards/Subscription.html:260
#. ($id)
msgid "Unable to subscribe to dashboard %1: Permission denied"
msgstr ""

#: share/html/Ticket/Elements/PreviewScrips:60
#. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page."
msgstr ""

#: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553
msgid "Undelete"
msgstr ""

#: lib/RT/ScripCondition.pm:125
msgid "Unimplemented"
msgstr ""

#: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136
msgid "Unix login"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272
msgid "Unknown (no trust value assigned)"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2277
msgid "Unknown (this value is new to the system)"
msgstr "Neznáma (táto hodnota je pre systém nová)"

#: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820
#. ($ContentEncoding)
#. ($self->ContentEncoding)
msgid "Unknown ContentEncoding %1"
msgstr ""

#: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270
#. ($key)
msgid "Unknown field: %1"
msgstr ""

#: lib/RT/Queue.pm:1041
#. ($args{Type})
msgid "Unknown watcher type %1"
msgstr ""

#: share/html/Search/Simple.html:81
#. ($status_str)
msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched."
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:65
msgid "Unlimit"
msgstr ""

#: share/html/Elements/SelectResultsPerPage:60
msgid "Unlimited"
msgstr ""

#: share/html/Elements/RT__Dashboard/ColumnMap:63
msgid "Unnamed dashboard"
msgstr ""

#: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63
msgid "Unnamed search"
msgstr ""

#: etc/initialdata:619
msgid "Unowned Tickets"
msgstr ""

#: share/html/m/_elements/menu:79
msgid "Unowned tickets"
msgstr "Požiadavky bez vlastníka"

#: lib/RT/Handle.pm:668
msgid "Unprivileged"
msgstr "Bez privilégií"

#: share/html/Admin/Elements/EditCustomFields:71
msgid "Unselected Custom Fields"
msgstr "Nevybrané vlstné polia"

#: share/html/Admin/Articles/Classes/Objects.html:82
msgid "Unselected Queues"
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:84
msgid "Unselected objects"
msgstr ""

#: lib/RT/User.pm:1643
msgid "Unset private key"
msgstr ""

#: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917
msgid "Untaken"
msgstr "Neprevzané"

#: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224
msgid "Update"
msgstr "Aktualizovať"

#: share/html/Search/Chart.html:128
msgid "Update Chart"
msgstr "Aktualizovať graf"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:121
msgid "Update Graph"
msgstr "Aktualizovať diagram"

#: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143
msgid "Update Ticket"
msgstr "Aktualizovať požiadavku"

#: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86
msgid "Update Type"
msgstr "Aktualizovanie typu"

#: share/html/Search/Build.html:106
msgid "Update format and Search"
msgstr "Aktualizovať formát a vyhľadať"

#: share/html/Search/Bulk.html:224
msgid "Update multiple tickets"
msgstr "Hromadná aktualizácia požiadaviek"

#: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024
msgid "Update not recorded."
msgstr ""

#: share/html/Ticket/ModifyAll.html:85
msgid "Update ticket"
msgstr "Aktualizovať požiadavku"

#: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48
#. ($Ticket->id)
#. ($t->id)
msgid "Update ticket #%1"
msgstr "Aktualizovať požiadavku #%1"

#: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171
#. ($TicketObj->id, $TicketObj->Subject||'')
#. ($t->id, $t->Subject)
msgid "Update ticket #%1 (%2)"
msgstr "Aktualizovať požiadavku #%1 (%2)"

#: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024
msgid "Update type was neither correspondence nor comment."
msgstr ""

#: share/html/Search/Elements/BuildFormatString:100
msgid "UpdateStatus"
msgstr "AktualizStatusu"

#: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408
msgid "Updated"
msgstr "Aktualizované"

#: share/html/Search/Elements/EditSearches:291
#. ($desc)
msgid "Updated saved search \"%1\""
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload"
msgstr "Nahrať"

#: share/html/Admin/Tools/Theme.html:61
msgid "Upload a new logo"
msgstr "Nahrať nové logo"

#: lib/RT/CustomField.pm:130
msgid "Upload multiple files"
msgstr ""

#: lib/RT/CustomField.pm:121
msgid "Upload multiple images"
msgstr ""

#: lib/RT/CustomField.pm:131
msgid "Upload one file"
msgstr ""

#: lib/RT/CustomField.pm:122
msgid "Upload one image"
msgstr ""

#: lib/RT/CustomField.pm:132
msgid "Upload up to %1 files"
msgstr ""

#: lib/RT/CustomField.pm:123
msgid "Upload up to %1 images"
msgstr ""

#: share/html/Tools/Offline.html:92
msgid "Upload your changes"
msgstr ""

#: sbin/rt-email-digest:88
msgid "Usage:"
msgstr ""

#: lib/RT/Installer.pm:137
msgid "Use SSL?"
msgstr "Použiť SSL?"

#: lib/RT/Config.pm:224
msgid "Use a two column layout for create and update forms?"
msgstr ""

#: lib/RT/Config.pm:187
msgid "Use autocomplete to find owners?"
msgstr ""

#: lib/RT/Config.pm:382
msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed.  This does not work well with IE6 and you should use the previous option"
msgstr ""

#: share/html/Widgets/Form/Boolean:68
#. ($DefaultValue? loc('Yes'): loc('No'))
msgid "Use default (%1)"
msgstr ""

#: share/html/Elements/Tabs:208
msgid "Use other RT administrative tools"
msgstr ""

#: share/html/Widgets/Form/Select:125
#. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined,            @DefaultValue)
msgid "Use system default (%1)"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:58
msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article."
msgstr ""

#: lib/RT/Config.pm:372
msgid "Use this to protect the format of plain text"
msgstr ""

#: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52
msgid "User"
msgstr "Užívateľ"

#: lib/RT/Ticket.pm:412
#. ($args{'Owner'})
msgid "User '%1' could not be found."
msgstr "Užívateľ '%1' sa nenašiel"

#: share/html/Admin/Elements/ShowKeyInfo:67
msgid "User (created - expire)"
msgstr ""

#: etc/initialdata:192 etc/initialdata:88
msgid "User Defined"
msgstr "Užívatľom definované"

#: share/html/Admin/Elements/EditScrip:97
msgid "User Defined conditions and actions"
msgstr "Užívateľom definované podmienky a akcie"

#: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378
msgid "User Rights"
msgstr "Práva užívateľa"

#: lib/RT/Interface/Web.pm:2849
#. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
msgstr ""

#: share/html/Admin/Users/Modify.html:281
#. ($msg)
msgid "User could not be created: %1"
msgstr ""

#: lib/RT/User.pm:262
msgid "User created"
msgstr "Užívateľ vytvorený"

#: lib/RT/User.pm:1110
msgid "User disabled"
msgstr ""

#: lib/RT/User.pm:1112
msgid "User enabled"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:56
msgid "User has empty email address"
msgstr ""

#: lib/RT/User.pm:528 lib/RT/User.pm:548
msgid "User loaded"
msgstr ""

#: share/html/Admin/Groups/index.html:126
msgid "User-defined groups"
msgstr "Užívateľom definované skupiny"

#: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73
msgid "Username"
msgstr "Meno užív."

#: lib/RT/Config.pm:173
msgid "Username format"
msgstr "Formát užív. mena"

#: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67
msgid "Users"
msgstr "Užívatelia"

#: share/html/Admin/Users/index.html:114
msgid "Users matching search criteria"
msgstr ""

#: bin/rt-crontool:174
#. ($txn->id)
msgid "Using transaction #%1..."
msgstr ""

#: lib/RT/Tickets_SQL.pm:337
msgid "Valid Query"
msgstr ""

#: share/html/Admin/CustomFields/Modify.html:95
msgid "Validation"
msgstr "Kontrola platnosti"

#: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62
msgid "Value"
msgstr "Hodnota"

#: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80
msgid "Values"
msgstr "Hodnoty"

#: share/html/Admin/Tools/Configuration.html:113
msgid "Variable"
msgstr "Premenná"

#: share/html/Admin/Tools/Configuration.html:221
msgid "Version"
msgstr "Verzia"

#: lib/RT/Queue.pm:101
msgid "View Scrip templates"
msgstr ""

#: lib/RT/Queue.pm:104
msgid "View Scrips"
msgstr ""

#: lib/RT/Queue.pm:97
msgid "View custom field values"
msgstr ""

#: lib/RT/CustomField.pm:205
msgid "View custom fields"
msgstr ""

#: lib/RT/Queue.pm:108
msgid "View exact outgoing email messages and their recipients"
msgstr ""

#: lib/RT/Group.pm:99
msgid "View group"
msgstr ""

#: lib/RT/Group.pm:100
msgid "View group dashboards"
msgstr ""

#: lib/RT/Dashboard.pm:86
msgid "View personal dashboards"
msgstr ""

#: lib/RT/Queue.pm:92
msgid "View queue"
msgstr ""

#: lib/RT/Group.pm:98
msgid "View saved searches"
msgstr ""

#: lib/RT/Dashboard.pm:81
msgid "View system dashboards"
msgstr ""

#: lib/RT/Queue.pm:107
msgid "View ticket private commentary"
msgstr ""

#: lib/RT/Queue.pm:106
msgid "View ticket summaries"
msgstr ""

#: lib/RT/Date.pm:118
msgid "W3CDTF"
msgstr ""

#: share/html/Articles/Article/Search.html:183
msgid "WARNING: Saving search to user-level privacy"
msgstr ""

#: lib/RT/Config.pm:242
msgid "WYSIWYG composer height"
msgstr ""

#: lib/RT/Config.pm:233
msgid "WYSIWYG message composer"
msgstr ""

#: share/html/Ticket/Elements/ShowGnuPGStatus:170
msgid "Warning! This is NOT signed!"
msgstr ""

#: share/html/Dashboards/Subscription.html:273
msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set"
msgstr ""

#: lib/RT/Queue.pm:110
msgid "Watch"
msgstr ""

#: lib/RT/Queue.pm:111
msgid "WatchAsAdminCc"
msgstr ""

#: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141
msgid "Watcher"
msgstr "Strážca"

#: lib/RT/Tickets.pm:152
msgid "WatcherGroup"
msgstr ""

#: share/html/Elements/Tabs:275
msgid "Watchers"
msgstr "Strážci"

#: share/html/Install/DatabaseDetails.html:64
msgid "We are able to find your database and connect as the DBA.  You can click on 'Customize Basics' to continue customizing RT."
msgstr ""

#: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777
msgid "We can't currently render as a List when basing categories on another custom field.  Please use another render type."
msgstr ""

#: share/html/Install/DatabaseDetails.html:55
msgid "We need to know the name of the database RT will use and where to find it.  We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges.  During step 6 of the installation process we will use this information to create and initialize RT's database."
msgstr ""

#: lib/RT/Installer.pm:222
msgid "Web port"
msgstr ""

#: lib/RT/Date.pm:109
msgid "Wed"
msgstr "Str"

#: share/html/Dashboards/Subscription.html:108
msgid "Wednesday"
msgstr "Streda"

#: lib/RT/Dashboard/Mailer.pm:327
msgid "Weekday"
msgstr "Víkend"

#: lib/RT/Dashboard/Mailer.pm:329
msgid "Weekly"
msgstr "Týždene"

#: lib/RT/Config.pm:478
msgid "Weekly digest"
msgstr "Týždený prehľad"

#: share/html/Install/index.html:48
msgid "Welcome to RT!"
msgstr ""

#: share/html/Tools/MyDay.html:77
msgid "What I did today"
msgstr "Čo som dnes robil"

#: share/html/Install/index.html:67
msgid "What is RT?"
msgstr ""

#: lib/RT/Installer.pm:166
msgid "When RT can't handle an email message, where should it be forwarded?"
msgstr ""

#: share/html/Install/Global.html:54
msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client.  It uses different addresses for Replies and Comments.  These can be changed for each of your queues.  These addresses will need to be configured to use the rt-mailgate program."
msgstr ""

#: etc/initialdata:105
msgid "When a ticket is created"
msgstr ""

#: lib/RT/Approval/Rule/NewPending.pm:54
msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval"
msgstr ""

#: etc/initialdata:110
msgid "When anything happens"
msgstr ""

#: lib/RT/Config.pm:271
msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not."
msgstr ""

#: share/html/Install/DatabaseDetails.html:58
msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database"
msgstr ""

#: etc/initialdata:200 etc/upgrade/3.7.1/content:3
msgid "Whenever a ticket is closed"
msgstr ""

#: etc/initialdata:130 etc/upgrade/4.0.3/content:12
msgid "Whenever a ticket is forwarded"
msgstr ""

#: etc/initialdata:186 etc/upgrade/3.8.3/content:3
msgid "Whenever a ticket is rejected"
msgstr ""

#: etc/initialdata:205 etc/upgrade/3.7.1/content:8
msgid "Whenever a ticket is reopened"
msgstr ""

#: etc/initialdata:179
msgid "Whenever a ticket is resolved"
msgstr ""

#: etc/initialdata:123 etc/upgrade/4.0.3/content:5
msgid "Whenever a ticket or transaction is forwarded"
msgstr ""

#: etc/initialdata:165
msgid "Whenever a ticket's owner changes"
msgstr ""

#: etc/initialdata:158 etc/upgrade/3.1.17/content:16
msgid "Whenever a ticket's priority changes"
msgstr ""

#: etc/initialdata:173
msgid "Whenever a ticket's queue changes"
msgstr ""

#: etc/initialdata:150
msgid "Whenever a ticket's status changes"
msgstr ""

#: etc/initialdata:137 etc/upgrade/4.0.3/content:19
msgid "Whenever a transaction is forwarded"
msgstr ""

#: etc/initialdata:193
msgid "Whenever a user-defined condition occurs"
msgstr ""

#: etc/initialdata:144
msgid "Whenever comments come in"
msgstr ""

#: etc/initialdata:116
msgid "Whenever correspondence comes in"
msgstr ""

#: lib/RT/Installer.pm:188
msgid "Where to find your sendmail binary."
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63
msgid "Wipeout"
msgstr ""

#: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92
msgid "Work"
msgstr ""

#: share/html/Elements/RT__User/ColumnMap:91
msgid "Work Phone"
msgstr ""

#: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232
msgid "Worked"
msgstr "Odpracované"

#: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77
msgid "Yes"
msgstr "ano"

#: share/html/Dashboards/Render.html:86
#. ($edit, $subscription)
msgid "You may edit this dashboard and your subscription to it in RT."
msgstr ""

#: lib/RT/Ticket.pm:3090
msgid "You already own this ticket"
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:63
msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption."
msgstr ""

#: share/html/Elements/GnuPG/KeyIssues:61
msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
msgstr ""

#: share/html/Ticket/Elements/ShowUpdateStatus:54
#. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen."
msgstr ""

#: share/html/Prefs/Search.html:54
msgid "You can also edit the predefined search itself"
msgstr ""

#: share/html/Articles/Article/ExtractFromTicket.html:59
msgid "You can insert ticket content into any freeform, text or wiki field."
msgstr ""

#: lib/RT/User.pm:813
msgid "You can not set password."
msgstr ""

#: lib/RT/Ticket.pm:2973
msgid "You can only reassign tickets that you own or that are unowned"
msgstr ""

#: lib/RT/Ticket.pm:2969
msgid "You can only take tickets that are unowned"
msgstr "Môžete prevziať len požiadavky bez vlastníka"

#: share/html/Search/Simple.html:71
#. ($fulltext_keyword)
msgid "You can search for any word in full ticket history by typing %1word."
msgstr ""

#: lib/RT/Ticket.pm:3162
#. ($self->loc($old), $self->loc($new))
msgid "You can't change status from '%1' to '%2'."
msgstr "Nemôžete zmeniť stav z '%1' na '%2'."

#: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50
msgid "You don't have SuperUser right."
msgstr ""

#: share/html/NoAuth/Logout.html:55
msgid "You have been logged out of RT."
msgstr "Boli ste odhlásený z RT"

#: share/html/Admin/Queues/Modify.html:147
msgid "You have enabled GnuPG support but have not set a comment address for this queue."
msgstr ""

#: share/html/Admin/Queues/Modify.html:137
msgid "You have enabled GnuPG support but have not set a correspondence address for this queue."
msgstr ""

#: share/html/SelfService/Display.html:116
msgid "You have no permission to create tickets in that queue."
msgstr ""

#: share/html/Elements/EditLinks:121
msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article."
msgstr "Môžete zadať odkazy na články ako \"a:###\", kde ### predstavuje číslo článku"

#: lib/RT/Ticket.pm:1711
msgid "You may not create requests in that queue."
msgstr "Nemôžete vytvárať požiadavky v tejto fronte"

#: share/html/Install/Basics.html:85
msgid "You must enter an Administrative password"
msgstr "Musíte zadať administrátorské heslo"

#: share/html/Admin/Tools/Queries.html:61
msgid "You must set StatementLog to true to enable this query history page."
msgstr ""

#: share/html/Admin/Queues/Modify.html:148
msgid "You must set a comment address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Admin/Queues/Modify.html:138
msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key."
msgstr ""

#: share/html/Install/Finish.html:56
#. ('root')
msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier."
msgstr ""

#: share/html/Install/DatabaseType.html:55
msgid "You should choose the database you or your local database administrator is most comfortable with."
msgstr ""

#: share/html/Install/index.html:79
#. (loc("Let's go!"))
msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT.  If you click \"%1\" below, RT will guide you through setting up your RT server and database."
msgstr ""

#: share/html/NoAuth/Logout.html:59
msgid "You're welcome to login again"
msgstr "Ste vítaní, pri ďalšom prihlásení"

#: lib/RT/User.pm:1002
msgid "Your password is not set."
msgstr "Vaše heslo nie je nastavené"

#: share/html/Admin/Tools/Theme.html:65
#. ($valid_image_types)
msgid "Your system supports automatic color suggestions for: %1"
msgstr ""

#: lib/RT/Interface/Web.pm:754
msgid "Your username or password is incorrect"
msgstr "Vaše prihlasovacie meno alebo heslo nie je správne"

#: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147
msgid "Zip"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:168
msgid "[Down]"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:165
msgid "[Up]"
msgstr ""

#: share/html/Search/Elements/EditSort:61
msgid "[none]"
msgstr "[žiaden]"

#: lib/RT/Transaction.pm:725
msgid "a custom field"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsActive:48
msgid "active"
msgstr ""

#: lib/RT/Config.pm:371
msgid "add 
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "po"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "stĺpec"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "pred"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr "telo"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "zdola hore"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr "fajknutím pridať"

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "zatvorené"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "vlastné pole '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "denne"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "denne o %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dní"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "zmazané"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "neobsahuje"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "stiahnuť"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "="

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr ""

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr ""

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr ""

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr ""

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr ""

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr ""

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "každý"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "plný"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr ">"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr "skupina"

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "skupina '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "hod."

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr "v triede %1"

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "je"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "nie je"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "kľúč zrušený"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "zľava doprava"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "<"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "okrajový"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "obsahuje"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maximálna hĺbka"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minút"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr "upraviť panel"

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "mesačne"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "mesačne (deň %1) do %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "mesiace"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "nikdy"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "nový"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "nie"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "bez názvu"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "nikto"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "!="

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "nič"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "v"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "v deň"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr "jeden"

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "otvorený"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "otvoriť/zvrieť"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "iné..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "kláč"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "zásuvný modul vrátil prázny zoznam"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "fronta %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "zamietnuté"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr "vyžaduje beh rt-crontool"

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "vyriešený"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "sprava doľava"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "pozri nižšie uvedený zoznam objektov"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "pozastavené"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr "vyhlásenie"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr "súhrn"

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "súhrn riadkov"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "systém %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "systémová skupin %1"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr ""

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr ""

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr ""

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "požiadavka #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "zhora dolu"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "konečný"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "nepopísaná skupina %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr "bez obmedzenia"

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr "aktualizovať požiadavku"

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr "aktualizovať schválenie"

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr "aktualizovať článok"

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr "užívateľ"

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "užívateľ %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "užívateľské meno"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "týždenný"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "týždenne (od %1) do %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "týžd."

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "na ktorom portebude váš webový server počúvať, napr. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "s hlavičkami"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "roky"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "Áno"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr "Váš prehliadač neposkytol hlavičku Referer"

rt-4.0.19/share/po/bg.po0000664000175000017500000125202612262650742013732 0ustar  chmrrchmrr# Bulgarian translation for rt
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the rt package.
# FIRST AUTHOR , 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:41+0000\n"
"Last-Translator: Alex Vandiver \n"
"Language-Team: Bulgarian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (няма публичен ключ!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (ненадежден!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1 %2 %3 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %2 %3 %4:%5 %6"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1 %2 %3 %4:%5:%6 %7"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 добавен"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "преди %1 %2"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 променен на %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 изтрит"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 изтрит."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 преименован на %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 запазен."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr ""

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 с шаблон %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) от %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Непроменен)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (от панел %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr "%1 - Регулирайте LogToScreen опция в конфигурацията"

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - Аргумент, който се подава на %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Извеждане на обновления по състоянието на STDOUT"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Укажете, ако желаете да използвате 'първата', 'последната' или 'всички' транзакции"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Укажете име или id на шаблон(и), който искате да използвате"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Укажете модулът за действие, който искате да използвате"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Укажете списък, разделен по запетаи, от типове транзакции, които искате да използвате"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Укажете модулът за условия, който искате да използвате"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Укажете модулът за търсене, който искате да използвате"

#: NOT FOUND IN SOURCE
msgid "%1 DashBoards"
msgstr "%1 Табла"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Авторски права 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 ScripAction зареден"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 добавен като стойност на %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr "%1 вече съществува и съдържа таблиците на RT, но не съдържа метаданните на RT. Стъпката 'Инициализация на базата данни' по-късно може да внесе метаданни в тази съществуваща база. Ако това е приемливо, щракнете 'Основна персонализация' по-надолу, за да продължите да персонализирате RT."

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr "%1 вече съществува, но не съдържа нито таблиците, нито метаданните на RT. Стъпката 'Инициализация на базата данни' по-късно може да внесе таблици и метаданни в тази съществуваща база. Ако това е приемливо, щракнете 'Основна персонализация' по-надолу, за да продължите да персонализирате RT."

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 изглежда като локален обект, но не беше открит в базата данни"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr "%1 изглежда като напълно инициализиран. Не се налага да се създават таблици или да се внасят метаданни, но бихте могли да продължите да персонализирате RT чрез кликване на 'Основна персонализация' по-долу"

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 от %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 променен от %2 на %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr ""

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 таблица от %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 копие"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr "%1 конфигурация на ядрото"

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 не може да получи стойност %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 не може да установи състоянието на разрешен. Възможно е базата данни на RT да е несъстоятелна."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 създаден"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 изтрит"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 изключен"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 не съществува."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 включен"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 билета с най-висок приоритет, които притежавам"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 е инструмент за действия над билети от външен инструмент за планиране, като cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr "%1 е инструмент, предназначен за изпълнение от cron, който разпраща всички отложени нотификации от RT като по-потребителско резюме."

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 вече не е %2 за тази опашка."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 вече не е %2 за този билет."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 вече не е стойност за персонализирано поле %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 мин"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr ""

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr ""

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 най-нови безстопанствени билети"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 обекта"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 конфигурация на инсталацията"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 обновление: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 обновление: Нищо не е променено"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 обновен"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 ще разреши всички членове на разрешения групов билет."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%2 обекта на %1"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr ""

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr ""

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr ""

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Таблата на %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "Съхранените търсения на %1"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: нищо не е прикрепено"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Нов билет в%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1к"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr ""

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr ""

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,час)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' е невалидна стойност за състояние"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr ""

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr ""

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr ""

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr ""

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr ""

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr ""

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Поставете отметка за да изтриете)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Поставете отметки за да изключите нотификации към изброените получатели)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Поставете отметки за да включите нотификации към изброените получатели)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Въведете id-та на билети или URL-та, разделени със запетая)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Ако е оставено празно, по подразбиране ще бъде %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Няма персонализирани полета)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Няма членове)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Няма scrips)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Няма шаблони)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Без)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Изпраща точно копие на това обновление на списък от административни имейл адреси, разделен със запетая. Тези хора ще получават бъдещи обновления.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Изпраща точно копие на това обновление на списък от имейл адреси, разделен със запетая. Тези хора ще получават бъдещи обновления.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Използвайте тези полета, когато изберете 'Дефиниран от потребителя' за условие или действие)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Няма да му бъде изпращан имейл)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(всеки)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(празно)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr ""

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(няма публичен ключ!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(без стойност)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(без стойности)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(само един билет)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr "(висящ %quant(%1,друг билет))"

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(предстои одобрение)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(задължително)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr "(доверие: %1)"

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(неозаглавен)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(ненадежден!)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr "--template-id е непрепоръчителен аргумент и не може да бъде използван с --template"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "Аргументът на --transaction може да бъде само 'first', 'last' или 'all'"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Всички iCal потоци вграждат таен белег, който ви упълномощава. Ако URL адресът на един от вашите iCal потоци е бил разкрит за външния свят, можете да получите нов белег, счупвайки всички съществуващи iCal потоци по-долу.

" #: etc/initialdata:215 msgid "A blank template" msgstr "Празен шаблон" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Парола не бе настроена, така че потребителят няма да може да влезе." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE не е намерен" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACE-ове могат да бъдат само създавани и изтривани." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "И" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "За мен" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Контрол на достъпа" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Действие" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Действие '%1' не е намерено" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Действието изпълнено.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Действие е задължителен аргумент" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Действието приготвено..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Добави AdminCc" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Добави отметка" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Добави Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Добави колони" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Добави критерии" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Добави още файлове" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Добави заявител" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Добави стойност" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Добави scrip, който ще се отнася до всички опашки" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Добави коментари или отговори на избраните билети" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Добави членове" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Добави нови наблюдатели" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Добави тези условия" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Добави тези условия и търси" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Добави стойности" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Добави, изтрий или промени стойности на персонализирани полета за обекти" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Добави ръководител като %1 за тази опашка" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Добави ръководител като %1 за този билет" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Адрес" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Адрес 1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Адрес 2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Административно копие" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Административен коментар" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Административна кореспонденция" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Административни опашки" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Админ/Глобална конфигурация" #: NOT FOUND IN SOURCE msgid "AdminAllPersonalGroups" msgstr "АдминВсичкиЛичниГрупи" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "АдминКопиеГрупа" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "АдминКопие" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "АдминКопия" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "АдминПерсонализираноПоле" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "АдминГрупа" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "АдминЧленствоВГрупи" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "АдминСобствениЛичниГрупи" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "АдминОпашка" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "АдминПотребители" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Административно копие" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Административна парола" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Разширени" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Агрегатор" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Всички одобрения бяха направени" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Всички опашки" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Всички iCal потоци вграждат таен белег, който ви упълномощава. Ако URL адресът на един от вашите iCal потоци е бил разкрит за външния свят, можете да получите нов белег, счупвайки всички съществуващи iCal потоци по-долу." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Вече криптирано" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "И/Или" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Отнася се до" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Приложи" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Приложи промените" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Одобрение" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Одобрение #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Одобрение #%1: Бележките не бяха записани заради системна грешка" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Одобрение #%1: Бележките записани" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Одобрено" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Одобрението е готово за собственика" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Неодобрено" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Одобри" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "апр" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Възх" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Възходящ" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Добави и премахни персонализирани полета" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "ВъзлаганеПерсонализираниПолета" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Прикачи" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Прикачи файл" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Прикачен файл" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Прикрепен обект" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Прикрепеният обект '%1' не може да бъде зареден" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Прикачка създадена" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Име на прикрепеният файл" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Прикачени обекти" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Криптирането на прикачките е изключено" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Атрибут изтрит" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "авг" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Авто-отговор" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Авто-отговор на заявителите" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Достъпен" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Скрити копия" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Назад" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "Лоша изолация на атрибут %1" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Основни" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Не забравяйте да запазите промените си" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions ООД корпоративно лого" #: etc/initialdata:214 msgid "Blank" msgstr "Празно" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Тяло" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Получер" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Отметка" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Отметнати билети" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Кратки заглавни части" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Обемни актуализации" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Купете поддръжка" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "По подразбиране, RT ще използва часовата зона на системата. Това позволява да укажете глобална стойност по подразбиране за показването на дати и времена в RT. Потребителите могат да изберат различна часова зона в техните предпочитания." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "КопиеГрупа" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "CF" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Не може да променя системни потребители" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Може ли този принсипал да вижда тази опашка" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Не може да се добави стойност за персонализирано поле без име" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Не беше намерен клас на колекцията за '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Не беше открито съхранено търсене за работа" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Не може билет да бъде свързан със себе си" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "Не може да се съхрани %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Не може да се съхрани това търсене" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Не може да се укаже база и цел едновременно" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Не може да се създават билети в изключена опашка." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Не може да се създаде потребител: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Категориите се базират на" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Категория" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Категория неуказана" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Копие до" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Копия" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Промени" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Смяна на парола" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Маркиране на всички" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Провери връзката с базата данни" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Провери акредитацията за базата данни" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Маркирайте кутията за изтриване" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Маркирайте кутията за отмяна на право" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Дъщерни" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Изберете тип на базата данни" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Град" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Изчистване" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Изчисти всичко" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Щракнете на \"Приключи инсталацията\" по-долу за да завършите този съветник." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Щракнете \"Инициализация на базата данни\" за да създадете базата данни на RT и въведете първоначалните метаданни. Това може да отнеме известно време" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Затвори прозореца" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Затворен" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Затворени билети" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Изберете или въведете множество стойности" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Combobox: Изберете или въведете една стойност" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Combobox: Изберете или въведете максимум %1 стойности" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Коментар" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Адрес за коментари" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Адрес за коментари" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Коментар на билети" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "АдресКоментари" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "КоментирайБилет" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Коментари" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Коментари (не се изпращат на заявителите)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Коментари (не се изпращат на заявителите)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Коментари за този потребител" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Коментарите добавени" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Условие" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Условие '%1' не е намерено" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Условие е задължителен аргумент" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Условието пасват..." #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Условие, Действие и Шаблон" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Конфигурационният файл %1 е заключен" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Конфигурация" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Потвърждение" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Връзката осъществена" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Съдържание" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Вид на съдържанието" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "ВидСъдържание" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Адрес за кореспонденция" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "АдресКореспонденция" #: etc/initialdata:283 msgid "Correspondence" msgstr "Кореспонденция" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Кореспонденция добавена" #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Не може да бъде добавена нова стойност за персонализирано поле: %1" #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Не може да се смени собственикът: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Не може да се създаде персонализирано поле" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Не може да се създаде персонализирано поле: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Не може да се създаде група" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Не може да се създаде шаблон: %1" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Не може да се създаде билет. Не е указана опашка" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Не може да се създаде потребител" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Не може да бъде открит или да бъде създаден този потребител" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Не беше намерен този принсипал" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Не може да бъде зареден атрибут %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Не може да бъде заредено персонализирано поле %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Не може да се зареди група" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Не може да се зареди обект за %1" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Този принсипал не може да бъде %1 за тази опашка" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Този принсипал не може да бъде %1 за този билет" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Не може да се премахне този принсипал като %1 за тази опашка" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Не може да се премахне този принсипал като %1 за този билет" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Не може да се установи потребителската информация" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Не може да се добави прикачен обект" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Не може да се добави член в групата" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Не може да се създаде транзакция: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Не може да се създаде запис" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Не може да се изтрие табло %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Не може да бъде открит ред" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Не беше намерена подходяща транзакция, пропуснато" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Не беше открит този принсипал" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Не беше открита тази стойност" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Не може да се зареди %1 от потребителската база данни.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Не може да се зареди Клас %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Не може да се зареди Персонализирано Поле #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Не може да се зареди Персонализирано Поле %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Не може да се зареди копие на билет #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Не може да се зареди табло %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Не може да се зареди табло %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Не може да се зареди група #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Не може да се зареди група %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Не може да се зареди връзка" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Не може да се зареди обект %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Не може да се зареди или създаде потребител: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Не може да се зареди опашка" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Не може да се зареди опашка #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Не може да се зареди опашка %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Не може да се зареди опашка '%1'" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Не може да се зареди scrip #%1" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Не може да се зареди шаблон #%1" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Не може да се зареди билет '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Не може да се зареди транзакция #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Не може да се зареди потребител" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Не може да се зареди потребител #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Не може да се зареди потребител #%1 или потребител '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Не може да се зареди потребител '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Не може да се сведе '%1' до адрес" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Не може да се подмени съдържанието с дешифрирани данни: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Не може да се подмени съдържанието с шифрирани данни: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Не може да се сведе '%1' в URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Не може да се сведе базата '%1' в URI.о" #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Не може да се сведе целта '%1' в URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Не може да се изпрати имейл" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Наблюдателят на %1 не може да бъде установен: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "Не може да се установи частният ключ" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "Не може да се унищожи частният ключ" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Държава" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Създай" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Създай билети" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Създай персонализирано поле" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Създай персонализирано поле за опашка %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Създай ново табло" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Създай нова група" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Създай нова лична група" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Създай нов билет" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Създай нов потребител" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Създай опашка" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Създай scrip за опашка %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Създай шаблон" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Създай билет" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Създай табла за тази група" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Създай нови билети, базирайки се на шаблона на този scrip" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Създай лични табла" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Създай системни табла" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Създай билет" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Създай билети в тази опашка" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Създай билети офлайн" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Създай, изтрий или промени персонализирани полета" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Създай, изтрий или промени опашки" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Създай, изтрий или промени членовете на лична група на който и да било потребител" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Създай, изтрий или промени членовете на лични групи" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Създай, изтрий или промени потребители" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "СъздайТабло" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "СъздайГруповоТабло" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "СъздайСобственоТабло" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "СъздайСъхраненоТърсене" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "СъздайБилет" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Създаден" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Създаден от" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Създадено е потребителско поле %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Създаден във времеви диапазон" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Създадени билети за периода, групирани по състояние" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "СъздаденОт" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "СъздаденОтносително" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Създател" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Криптография" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Текущи връзки" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Текущи scrips" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Текущи членове" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Текущи права" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Текущо търсене" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Текущи наблюдатели" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Персонализирани полета" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Персонализирани полета за %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Инструкции за почистване на персонализирано действие" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Инструкции за приготовление на персонализирано действие" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Персонализирано условие" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Персонализирано поле %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Персонализирано поле %1 не се отнася до този обект" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Персонализирано поле %1 има указана стойност." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Персонализирано поле %1 няма указана стойност." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Персонализирано поле %1 не е открито" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Персонализирано поле '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Стойността %1 не беше намерена за персонализирано поле %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Стойността на персонализирано поле не може да бъде изтрита" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Стойността на персонализирано поле не беше открита" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Стойността на персонализирано поле беше изтрита" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ПерсонализираноПоле" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "СтойностНаПерсонализираноПоле" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Персонализирай" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Основни персонализации" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Персонализация на имейл адреси" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Конфигурация на имейл" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Парола за базата данни" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Потребителско име за базата данни" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Дневно резюме" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Табло" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Не може да бъде създадено табло: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Не може да бъде обновено табло: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Табло обновено" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Табла" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Адрес на базата данни" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Име на базата данни" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Парола за базата данни на RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Порт на базата данни" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Тип на базата данни" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Потребителско име за базата данни на RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Формат на датата" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "DateTime модулът липсва" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "DateTime::Locale модулът липсва" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Дати" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "дек" #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Разшифроване" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Шаблон за авто-отговор по подразбиране" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Опашка по подразбиране" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Заявител по подразбиране" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Шаблон за административен коментар по подразбиране" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Шаблон за административна кореспонденция по подразбиране" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Шаблон за кореспонденция по подразбиране" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Опашка по подразбиране" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Шаблон за транзакция по подразбиране" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "По подразбиране: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "По подразбиране: %1/%2 променен от %3 на %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "ФорматПоПодразбиране" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Делегиране на права" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Делегиране на определени права, които са предоставени на вас." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "ДелегиранеПрава" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Делегация" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Изтриване" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Изтриване на шаблон" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Изтриване на таблата за тази група" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Изтриването пропадна: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Изтриване на лични табла" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Изтриване на избрани scrips" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Изтриване на системни табла" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Изтриване на билети" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Изтриване на стойности" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "ИзтриванеТабло" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "ИзтриванеГруповоТабло" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "ИзтриванеЛичноТабло" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "ИзтриванеБилет" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Изтрит е %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Табло %1 изтрито" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Заявки изтрити" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Съхранено търсене изтрито" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Изтриването на този обект ще наруши интегритета на референциите" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Изтриването на този обект ще наруши интегритета на референциите" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Отказ" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Зависещи" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "Зависими" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Зависимост от %1 добавена" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Зависимост от %1 изтрита" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Зависимост към %1 добавена" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Зависимост към %1 изтрита" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "ЗависимОт" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Зависи от" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "ЗависиОт" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Низх" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Низходящ" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Опишете проблема по-долу" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Описание" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Посока" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Изключен" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Изглед" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Показване на списъка за контрол на достъпа" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Показвани колони" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Показване на шаблони на scrips за тази опашка" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Показване на scrips за тази опашка" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Показване на съхранени търсения за тази група" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Разпространява се под версия 2 на GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Име на домейн" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Не включвайте http://, просто нещо като 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Не опреснявай началната страница." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Не опреснявай резултатите от търсенето." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Не опреснявай тази страница." #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "Не се доверявай на този ключ въобще" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Изтегляне" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Изтегляне като файл с разделител tab" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Изтегляне на dump файл" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Краен срок" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "ГРЕШКА: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Лесно обновление на вашите отворени билети" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Редактиране" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Редактиране на персонализирани полета" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Редактиране на персонализирани полета за %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Редактиране на персонализирани полета за всички групи" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Редактиране на персонализирани полета за всички опашки" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Редакция на персонализирани полета за всички потребители" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Редакция на персонализирани полета за билети във всички опашки" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Редакция на връзки" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Редакция на заявката" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Редакция на търсенето" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Редакция на шаблони за опашка %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Редакция на съхранени търсения за тази група" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Редакция на системни шаблони" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "РедакцияСъхрТърсения" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Редактируем текст" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Редакция на конфигурацията за опашка %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Редакция на персонализирано поле %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Редакция на членството за група %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Редакция на членството за лична група %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "ЕфективенId" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Трябва да бъде определена база или цел" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Нямате право да видите съхранено търсене %1 или идентификаторът е неправилен" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "Ел. поща" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "Електронно резюме" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "Доставка на ел. поща" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Шаблон за ел. поща за периодични нотификационни резюмета" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "ЕлПоща" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Включен" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Включено (Изчиствайки тази отметка изключвате това персонализирано поле)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Включена (Изчиствайки тази отметка изключвате тази група)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Включена (Изчиствайки тази отметка изключвате тази опашка)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Включени опашки" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Включено състояние %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Шифриране" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Шифрирай по подразбиране" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Шифриране/дешифриране" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Шифриране/дешифриране на транзакция #%1 от билет #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Шифрирането изключено" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Шифрирането включено" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Въведете множество стойности" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "Въведете множество стойности с авто-довършване" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Въведете обекти или URI-та, с които ще се свържат обектите. Разделете множество въведения с шпации." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Въведете една стойност" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "Въведете една стойност с авто-довършване" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Въведете опашки или URI-та, с които ще се свържат опашките. Разделете множество въведения с шпации." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Въведете билети или URI-та, с които ще се свържат билетите. Разделете множество въведения с шпации." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Въведете най-много %1 стойности" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "Въведете най-много %1 стойности с авто-довършване" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Грешка" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Грешка в параметрите на Queue->AddWatcher" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Грешка в параметрите на Queue->DeleteWatcher" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Грешка в параметрите на Ticket->AddWatcher" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Грешка в параметрите на Ticket->DeleteWatcher" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "Грешка към собственика на RT: публичен ключ" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Грешка: Липсващо табло" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "Грешка: лоши GnuPG данни" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "Грешка: няма публичен ключ" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "Грешка: публичен ключ" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Ескалиране на билети" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Приблизително" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Всички" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Разглеждане на билети, създадени в опашка между две дати" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Разглеждане на билети, разрешени в опашка между две дати" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Разглеждане на билети, разрешени в опашка, групирани по собственик" #: bin/rt-crontool:356 msgid "Example:" msgstr "Пример:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Изтичане" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "РазширеноСъстояние" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Допълнителна информация" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Извличане на таг за тема" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Извличане на тагове от темата на транзакция и добавянето им към темата на билета." #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Неуспех при свързването с базата данни: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Грешка при създаването на атрибут %1" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Потребителска псевдо-група 'Привилегировани' не е намерена." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Потребителска псевдо-група 'Непривилегировани' не е намерена" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Неуспех при зареждането на %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Неуспех при зареждането на %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Неуспех при зареждането на модул %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Неуспех при зареждането на обект за %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Неуспех при зареждането на шаблон" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Неуспех при разбор на шаблон" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "фев" #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Източник на стойности за полето:" #: NOT FOUND IN SOURCE msgid "FileName" msgstr "ИмеНаФайл" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Име на файл" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Попълнете аргументите" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Запълване на кутиите с цвят използвайки" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Попълване на множество текстови области" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Попълване на множество wikitext области" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Попълване на една тесктова област" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Попълване на една wikitext област" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Попълнете това поле с URL." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Попълване на максимум %1 текстови области" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Попълване на максимум %1 wikitext области" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Окончателен приоритет" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "ОкончателенПриоритет" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Попълнете всички потребители, чиито" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Намерете групи, чиито" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Намерете хора, чиито" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Намиране на билети" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Край" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Първо" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Наложи промяна" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Формат" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Препращане" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Препращане на съобщение" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Препращане на съобщение и връщане" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Препращане на билет" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Препращане на съобщението до трети лица" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Препращане на билет #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Препращане на транзакция #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "ПрепращанеСъобщение" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Намерени %quant(%1,билет)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Намерен обект" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Честота" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "пт" #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "петък" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Пълни заглавни части" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Общи" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Извличане на шаблон от файл" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Първи стъпки" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Даден на %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Глобални" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Глобални персонализирани полета" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Конфигурация на глобални персонализирани полета" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Глобален portlet %1 съхранен." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Глобален шаблон: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "Грешка на GnuPG. Свържете се с администратор" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "Интеграцията с GnuPG е изключена" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "Проблеми с GnuPG" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "GnuPG частни ключове за %1" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "GnuPG публични ключове за %1" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Давай" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Давай!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Иди до билет" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Графика" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Свойства на графиката" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Графични диаграми не са налични" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Група" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Права на групи" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Групата вече съдържа член: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Групата не може да бъде създадена: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Групата създадена" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Групата изключена" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Групата включена" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Групата няма такъв член" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Групата не е намерена" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Права на групата" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Групи" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Групите не могат да бъдат членове на собствените си членове" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Групи, отговарящи на критериите за търсене" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Групи, чиито член е потребителят (отметка за изтриване)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Групи, в които потребителят не членува (отметка за добавяне)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Групи, в които принадлежи този потребител" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "ИмаЧлен" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Заглавие на препратен билет" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Заглавие на препратено съобщение" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Здравейте!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Здравей, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Помогнете ни да установим полезни стойности по подразбиране за RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "История" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "История на група %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "История на опашка %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "История на потребител %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Начало" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Интервал на опресняване на началната страница" #: NOT FOUND IN SOURCE msgid "HomePhone" msgstr "ДомашенТелефон" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Начална страница" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Час" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Часове" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Имам %quant(%1,бетонобъркачка)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "Id" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Самоличност" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Ако одобрение е отхвърлено, отхвърляне на оригинала и изтриване на предстоящи одобрения" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Ако не е указан заявител, създавай на билетите с този заявител." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Ако не е указана опашка, създавай билети в тази опашка." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Ако този инструмент е setgid, недобронамерен локален потребител би могъл да го използва за да получи административен достъп до RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Ако вече разполагате с работещ RT сървър и база данни, използвайте момента за да се уверите, че сървърът с бази данни работи и RT сървърът може да се свърже с него. Щом това е готово, спрете и пуснете RT сървъра.

" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Ако вече разполагате с работещ RT сървър и база данни, използвайте момента за да се уверите, че сървърът с бази данни работи и RT сървърът може да се свърже с него. Щом това е готово, спрете и пуснете RT сървъра.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Ако сте променили порта, на който RT работи, е нужно да рестартирате сървъра за да влезете." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Ако сте променили нещо по-горе, се уверете, че" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Ако предпочитаната от вас база данни не е в списъка по-долу, това означава, че RT не успя да намери драйвер за базата данни инсталиран локално. Бихте могли да поправите това като използвате %1 за да изтеглите и инсталирате DBD::MySQL, DBD::Oracle или DBD::Pg." #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Невалидна стойност за %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Непроменяемо поле" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Включване на деактивирани персонализирани полета в списъка." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Включване на деактивирани групи в списъка." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Включване на деактивирани опашки в списъка." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Включване на деактивирани потребители в търсенето." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Включване на страница" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Индивидуални съобщения" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Информиране на собственика на RT, че потребител(и) има проблем с публични ключове" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Информиране на потребител, че табло, за което се е абонирал(а) липсва" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Информиране на потребител, че съобщение, което е изпратил(а) има невалидни GnuPG данни" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Информиране на потребител, че има проблеми с публичния си ключ и не може да приема шифрирано съдържание" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Информиране на потребител за смяна на паролата" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Информиране на потребител, че сме получили шифрирана ел. поща, а нямаме частни ключове за дешифриране" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Първоначален приоритет" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "ПървоначаленПриоритет" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Инициализация на базата данни" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Грешка при въвеждането" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Въведеното трябва да съответства на %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Инсталиране на RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Вътрешна грешка" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Вътрешна грешка: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Невалиден %1: '%2' не изглежда като адрес на ел. поща" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "Невалиден %1: нужно е да е число" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Невалиден тип на група" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Невалидни данни" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Невалиден обект" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Невалиден обект-собственик" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Невалиден образец: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Невалидна опашка" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Невалидно право." #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Невалидно право. Неуспех при канонизацията на право '%1'" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Невалиден синтаксис на адрес на ел. поща" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Невалидна стойност за %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Невалидна стойност за персонализирано поле" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Невалидна стойност за състояние" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Не е шифрирано" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Изключително важно е да не е позволено на непривилегировани потребители да стартират този инструмент." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Препоръчително е да създадете непривилегирован UNIX потребител с правилно членство в групи и достъп до RT, за да стартирате този инструмент." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Приема редица аргументи:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Курсив" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "яну" #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Присъединете се или напуснете тази група" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "юли" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Джъмбо" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "юни" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Оставете 'localhost' ако не сте сигурен/на. Оставете празно за да локална връзка през socket." #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Език" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Голям" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Последен" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Последен контакт" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Последно свързване" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Последно обновяване" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Последно обновяване от" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Последно обновяване от" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "ПоследноОбновяване" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "ПоследноОбновяванеОт" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "ПоследноОбновяванеОтносително" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Оставете празно за изпращане на текущият ви адрес на ел. поща (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Оставете празно за да използвате стойността по подразбиране за вашата база данни" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Оставете това така, за да използвате потребителското име по подразбиране за типа на вашата база данни" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Легенди" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Дължина в символи; Използвайте '0' за показване на всички съобщения последователно, без значение дължината им" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Позволяване на този потребител достъп до RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Предоставяне на права на този потребител" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Хайде!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Връзка" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Връзката вече съществува" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Връзката не може да бъде създадена" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Връзката не е намерена" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Свързване на билет #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Свързване на стойностите с" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Свързано" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "СвързаноОт" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "СвързаноКъм" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Свързване. Достъпът отказан" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Връзки" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Зареждане на съхранено търсене:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "ЗарежданеСъхрТърсене" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "Заредено %1 %2" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "Заредено оригинално \"%1\" съхранено търсене" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Заредени модули на perl" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "Заредено съхранено търсене \"%1\"" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "Локал" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "ЛокализираноДатаВреме" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Локализация" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Влязохте като %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Излязохте" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Вход" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Изход" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Грешка в типа на търсене" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "Поща" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Главен тип на връзките" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Направи собственик" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Направи състояние" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Направи краен срок" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Направи дата на разрешаване" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Направи дата на стартиране" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Направи дата на старт" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Направи приоритет" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Направи опашка" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Направи тема" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Направи тази група видима за потребителя" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Управление на персонализирани полета и стойности на такива" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Управление на групи и членство в такива" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Управление на свойства и конфигурация, които се отнасят до всички опашки" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Управление на опашки и специфичните им свойства" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "Управление на съхранени графики" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Управление на потребители и пароли" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "мар" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "Всички съобщения са маркирани като прочетени" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "Максимална дължина на съобщение инлайн" #: lib/RT/Date.pm:95 msgid "May" msgstr "май" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "Член" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Член %1 добавен" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Член %1 премахнат" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Член добавен: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Членът е изтрит" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Членът не е изтрит" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Член на" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "ЧленНа" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Членове" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Членство в %1 добавено" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Членство в %1 премахнато" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Членства" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Членства на потребителят %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Сливането успешно" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Сливането неуспешно. Не може да се установи EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Сливането неуспешно. Не може да се установи състояние" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Сливане в" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Слято в %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Съобщение" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "Тялото на съобщението не е показано, защото изпращачът е пожелал да не го показва инлайн." #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "Тялото на съобщението не е показано, защото не е прав текст." #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large." msgstr "Тялото на съобщението не е показано, защото е прекалено голямо." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "Височина на кутията със съобщение" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "Ширина на кутията със съобщение" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Съобщението не може да бъде записано" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "Съобщение за потребител" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Съобщението записано" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Съобщения за този билет няма да бъдат изпращани на..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "Минимална дължина на паролата" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Минути" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Липсва първичен ключ?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Мобилен" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "MobilePhone" msgstr "МобиленТелефон" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Редакция на списъка за контрол на достъпа" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Редакция на персонализирани полета, които се отнасят до %1 за всички %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Редакция на персонализирани полета, които се отнасят до всички %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Редакция на групови права" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Редакция на членове" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Редакция на права" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Редакция на scrip шаблони за тази опашка" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Редакция на scrips за тази опашка" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Редакция на потребителски права" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Редакция на персонализирано поле за опашка %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Редакция на scrip за опашка %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Редакция на scrip, който се отнася до всички опашки" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Редакция на асоциирани обекти на %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "Редакция на стойности на персонализирани полета" #: NOT FOUND IN SOURCE msgid "Modify dashboards for this group" msgstr "Редакция на таблата за тази група" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Редакция на датите за #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Редакция на датите за билет # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Редакция на глобални персонализирани полета" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Редакция на глобални групови права" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Редакция на глобални групови права." #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Редакция на глобални потребителски права" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Редакция на глобални потребителски права." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Редакция на групови метаданни или изтриване на група" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Редакция на групови права за персонализирано поле %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Редакция на групови права за група %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Редакция на групови права за опашка %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Редакция на членски състав за тази група" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Редакция на собствен RT акаунт" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Редакция на хората, свързани с опашка %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Редакция на хората, свързани с билет #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "Редакция на лични табла" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Редакция на scrips за опашка %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Редакция на scrips, които се отнасят до всички опашки" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "Редакция на системни табла" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Редакция на шаблон %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Редакция на шаблони, които се отнасят до всички опашки" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "Редакция на табло %1" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Редакция на \"RT обзор\" изгледът по подразбиране" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Редакция на група %1" #: NOT FOUND IN SOURCE msgid "Modify the queries of dashboard %1" msgstr "Редакция на заявките на табло %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Редакция на наблюдателите на опашката" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "Редакция на абонаментите за табло %1" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Редакция на потребител %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Редакция на билет # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Редакция на билет #%1" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Редакция на билети" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Редакция на потребителски права за персонализирано поле %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Редакция на потребителски права за група %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Редакция на потребителски права за опашка %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "РедакцияACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "РедакцияПерсонализираноПоле" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "РедакцияТабло" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "РедакцияГруповоТабло" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "РедакцияСобственоТабло" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "РедакцияСобственоЧленство" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "РедакцияНаблюдателиНаОпашка" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "РедакцияScrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "РедакцияСебеСи" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "РедакцияШаблон" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "РедакцияБилет" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "пон" #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "понеделник" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "от понеделник до петък" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More" msgstr "Още" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Още за %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Преместване надолу" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Преместване нагоре" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Множество" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "Нужно е да посочите атрибут 'Име'" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Моите %1 билети" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Моят ден" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Моите одобрения" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Моите табла" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Моите съхранени търсения" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "MySQL" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Име" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Името е заето" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: NOT FOUND IN SOURCE msgid "Named, shared collection of portlets" msgstr "Наименована, споделена колекция от portlets" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Никога" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "Нов" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Нови връзки" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Нова парола" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Нови озчакващи одобрение" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Ново търсене" #: NOT FOUND IN SOURCE msgid "New and open tickets for %1" msgstr "Нови и отворени билети за %1" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Ново персонализирано поле" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Нова група" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Нови съобщения" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Нова парола" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Нотификация за нова парола изпратена" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Ново напомняне:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Нови права" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Нов scrip" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Нов шаблон" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Нов билет" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Новият билет не съществува" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Извикан нов потребител" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Нови наблюдатели" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Следващо" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "Псевдоним" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Псевдоним" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "Не" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "Няма %1 зареден" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Не е дефиниран клас" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Няма персонализирано поле" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Не е дефинирано персонализирано поле" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Не е дефинирана група" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Няма заявка" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Не е дефинирана опашка" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Не е намерен RT потребител. Моля, свържете се с вашия RT администратор.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "Няма тема" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Няма шаблон" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Няма действие" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Не е указана колона" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Няма въведени коментари за този потребител" #: NOT FOUND IN SOURCE msgid "No dashboards." msgstr "Няма табла." #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Няма описание за %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Не е указана група" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Не са намерени групи, отговарящи на критериите за търсене." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "Няма ключ, подходящ за шифриране" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "Няма ключове за този адрес" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Няма прикачено съобщение" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "Не е указано име" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "Не е нужно шифриране" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Няма парола" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Няма право да създава опашки" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Няма право да създава билети в опашка '%1'" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Няма право да види този билет" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Няма право да съхранява общосистемни търсения" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "Няма право да установява предпочитания" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Няма право да преглежда обновения билет" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Не е указан принсипал" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Не са избрани принсипали." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "Няма частен ключ" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Не са намерени опашки, отговарящи на критериите за търсене." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "Не е указано право" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Не са намерени права" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Не са делегирани права." #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Няма търсене, на което да се действа." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Без тема" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "Няма такъв ключ или е неподходящ за подписване" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Не са намерени билети." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Не е указан тип на транзакцията" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Няма използваеми ключове." #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Няма намерени потребители, които отговарят на критериите за търсене." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Не е изпратена стойност на _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Никой" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "Няма" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Несъществуващо поле?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Не е указано" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "Не е намерен" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Не сте вписани." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Неуказано" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Неимплементирано" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Бележки" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Не може да бъде изпратена нотификация" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Нотификация на AdminCcs" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Нотификация на AdminCcs като коментар" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Нотификация на Ccs" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Нотификация на Ccs като коментар" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Нотификация на други получатели" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Нотификация на други получатели като коментар" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Нотификация на собственика" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Нотификация на собственика като коментар" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Нотификация на собственика за техния отхвърлен билет" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Нотификация на собственика за одобрението на билета им и готовността за работа" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Нотификация на собственика за одобрението на билета им от някои или всички одобрители" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Нотификация на собственика, заявителите, Ccs и AdminCcs" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Нотификация на собственика, заявителите, Ccs и AdminCcs като коментар" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Нотификация на собствениците и AdminCcs за нови елементи, очакващи одобрение" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Нотификация на заявителя, за това, че техния билет е одобрен от всички одобрители" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Нотификация на заявителя, за това, че техния билет е одобрен от някой одобрител" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Нотификация на заявителите" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Нотификация на заявителите и Ccs" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Нотификация на заявителите и Ccs като коментар" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "Съобщавай ми за непрочетени съобщения" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "ное" #: NOT FOUND IN SOURCE msgid "Number of search results" msgstr "Брой на резултатите от търсенето" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ИЛИ" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Неуспех при създаването на обект" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Неуспех при изтриването на обект" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Обектът създаден" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Обектът изтрит" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Обект от тип %1 не приема персонализирани полета" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Разминаване в типа на обектите" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Списъкът с обекти е празен" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "окт" #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Офлайн" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Офлайн редакции" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Офлайн качване" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "На %1, %2 написа:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "При затваряне" #: etc/initialdata:143 msgid "On Comment" msgstr "При коментар" #: etc/initialdata:115 msgid "On Correspond" msgstr "При кореспонденция" #: etc/initialdata:104 msgid "On Create" msgstr "При създаване" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "При промяна на собственикът" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "При промяна на приоритетът" #: etc/initialdata:172 msgid "On Queue Change" msgstr "При промяна на опашката" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "При отхвърляне" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "При ре-отваряне" #: etc/initialdata:178 msgid "On Resolve" msgstr "При разрешаване" #: etc/initialdata:149 msgid "On Status Change" msgstr "При промяна на състоянието" #: etc/initialdata:109 msgid "On Transaction" msgstr "При транзакция" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "Еднократно сляпо копие" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "Еднократно копие" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Покажи само одобрения на заявки, създадени след %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Покажи само одобрения на заявки, създадени преди %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Покажи само персонализирани полета за:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Отворени билети" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "Отваряне на адрес (URL)" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Отвори го" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Отворени билети" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Отваряне на билетите при кореспонденция" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Опции" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Oracle" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Подреждане по" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Организация" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Билет-произход: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Записана излизаща ел. поща относно коментар" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Записана излизаща ел. поща" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "С времето, приоритетът се движи напред" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Собствени билети" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "ПритежаниеНаБилет" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Собственик" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "Собственик '%1' няма право да притежава този билет." #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "Собственикът сменен от %1 на %2" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Неуспех при промяна на собственика." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Собственикът насилствено променен от %1 на %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "ИмеНаСобственика" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Страница" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Страница 1 от 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Страницата не е намерена" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Пейджър" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "PagerPhone" msgstr "ПейджърТелефон" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Родители" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Парола" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Напомняне за паролата" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Паролата е променена" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Нужно е паролата да бъде дълга поне %1 символа" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Паролата установена" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Парола: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Парола: Достъпът отказан" #: etc/initialdata:463 msgid "PasswordChange" msgstr "ПромянаПарола" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Паролите не съвпадат." #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Паролите не съвпадат. Паролата ви не беше сменена" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "Път до sendmail" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Хора" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Изпълни действие, зададено от потребителя" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: NOT FOUND IN SOURCE msgid "Perl Include Paths (@INC)" msgstr "Perl Include пътища (@INC)" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl конфигурация" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Достъпът отказан" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Достъпът отказан" #: NOT FOUND IN SOURCE msgid "Personal Dashboards" msgstr "Лични табла" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Лични групи" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Телефонни номера" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Моля, проверете адреса и опитайте отново." #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Възможни скрити търсения" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "PostgreSQL" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Предпочитания" #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "Предпочитания %1 за потребител %2." #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Предпочитанията запазени за %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "Предпочитанията запазени за потребител %1." #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Предпочитанията запазени." #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "Предпочитан ключ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Предпочитан ключ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Предишен" #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "Предишен" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Принсипал %1 не е намерен." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Покажи резултатните резюме съобщения на STDOUT; не ги изпращай по пощата. Не ги маркирай като изпратени" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "Разпечатване на това съобщение" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Приоритет" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Приоритетът започва от" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Поверителност" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Поверителност:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "Частен ключ" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Привилегирован" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Състояние на привилегированост: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Привилегировани потребители" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Обработка без транзакция, някои условия и действия може да пропаднат. Обмислете използването на --transaction аргумент" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Псевдогрупа за вътрешна употреба" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "Изисква се публичен ключ '0x%1' за проверката на подписа" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Заявки" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "Заявка" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Строител на заявки" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Заявка:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Опашка" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Опашка %1 не е намерена" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Име на опашката" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Опашката вече съществува" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Неуспех при създаването на опашка" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Неуспех при зареждането на опашка." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Опашката създадена" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "Опашката изключена" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "Опашката включена" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Идентификатор на опашката" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Опашката не е намерена" #: NOT FOUND IN SOURCE msgid "Queue rights" msgstr "Права в опашката" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Ключ на опашката" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "ОпашкаАдминКопие" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "ОпашкаКопие" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "ОпашкаИме" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "ОпашкаНаблюдател" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Опашки" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Опашки, които администрирам" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Опашки, от които получавам административни копия" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Бързо търсене" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Бързо създаване на билет" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC2822" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 за %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT администрация" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "Ел. поща на администратора на RT" #: NOT FOUND IN SOURCE msgid "RT Config" msgstr "RT конфигурация" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT грешка" #: NOT FOUND IN SOURCE msgid "RT Self Service" msgstr "RT самообслужване" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT размер" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT променливи" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT обзор" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT обзор за потребител %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT може да комуникира с вашите потребители относно нови билети или нова кореспонденция по билети. Кажете ни къде да намерим sendmail (или съвместим със sendmail двоичен файл, като например този доставян от postfix). RT също така е нужно да знае кой да уведоми, когато някой изпрати невалидна ел. поща. Това не трябва да е адрес, който се връща обратно в RT." #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT може да включва съдържание от друга web-услуга, когато показва това персонализирано поле." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT може да направи стойностите на това персонализирано поле в хиперлинкове към друга услуга." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT не успя да съхрани вашата сесия." #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT за %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT е промишлен клас система за следене на проблеми, проектирана за да ви позволи да управлявате интелигентно и ефективно задачи, проблеми, заявки, дефекти или каквото и да било друго, което прилича на \"единица действие\"." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT се използва от компании във Fortune 100, еднолични бизнеси, правителствени агенции, образователни институции, болници, нестопански организации, неправителствени организации, библиотеки, проекти с отворен код и всички други видове организации на всички седем континента (да, дори Антарктика)." #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT ще се свърже с базата данни, използвайки този потребител. Той ще бъде създаден за вас." #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT ще създаде потребител, наречен \"root\" и ще установи това като паролата му" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT ще гледа за всичко останало, което въведете в темите на билетите." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT ще подмени %1 и %2 с id на записа и стойността на персонализираното поле, съответно" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT ще подмени __id__ и __CustomField__ с id на записа и стойността на персонализираното поле, съответно" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT ще използва този низ за да идентифицира вашата уникална инсталация и ще търси за него в темите на ел. поща, за да реши към кой билет принадлежи даденото съобщение. Препоръчваме да установите това на вашият Интернет домейн (напр.: example.com)." #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT работи с редица различни бази данни. Поддържат се MySQL, PostgreSQL, Oracle и SQLite." #: NOT FOUND IN SOURCE msgid "RT/Admin/Edit the group %1" msgstr "RT/Админ/Редакция на група %1" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Истинско име" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "ИстинскоИме" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "Получател" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "Запис на всички обновявания" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "Рекурсивен член" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Референция от %1 добавена" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Референция от %1 изтрита" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Референция към %1 добавена" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Референция към %1 изтрита" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Референции от" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "РеференцииОт" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Отнася се към" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "ОтнасяСеКъм" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Опресняване" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Опресняване на началната страница на всеки 10 минути." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Опресняване на началната страница на всеки 120 минути." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Опресняване на началната страница на всеки 2 минути." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Опресняване на началната страница на всеки 20 минути." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Опресняване на началната страница на всеки 5 минути." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Опресняване на началната страница на всеки 60 минути." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Опресняване на резултатите от търсенето на всеки 10 минути." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Опресняване на резултатите от търсенето на всеки 120 минути." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Опресняване на резултатите от търсенето на всеки 2 минути." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Опресняване на резултатите от търсенето на всеки 20 минути." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Опресняване на резултатите от търсенето на всеки 5 минути." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Опресняване на резултатите от търсенето на всеки 60 минути." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Опресняване на тази страница на всеки %1 минути." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Напомняне '%1' добавено" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Напомняне '%1' завършено" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Напомняне '%1' отново отворено" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Напомнящ билет #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Напомняния" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Напомняния за билет #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Премахване на административно копие" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "Премахване на отметка" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Премахване на копие" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Премахване на заявител" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Отговор" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Адрес за отговор" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Отговор на заявителите" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Отговор на билети" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "ОтговорНаБилет" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Доклади" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Заявител" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "ГрупаНаЗаявителя" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Заявители" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Заявките трябва да са приключили до" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Задължителен параметър '%1' не е указан" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Анулиране" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "Преиздаване на тайният оторизиращ символ" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Връщане стойности по подразбиране" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Местожителство" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Разрешаване" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Разрешаване на билет #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Разрешен" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Разрешен от собственика" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Разрешен в календарен интервал" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Разрешени билети в период, групирани по собственик" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Разрешени билети, групирани по собственик" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "РазрешенОтносително" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "Отговор" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Резултати" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "Връщане към билета" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Напишете наново паролата" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Възстановяване" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Право делегирано" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Право предоставено" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Право заредено" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Неуспех при отнемането на право" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Правото не е открито" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Правото не е заредено" #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Правото отнето" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Неуспех при предоставянето на право за %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Роли" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "Редове" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Редове за кутия" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Редове за страница" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQLite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite е база данни, която не се нуждае от сървър или въобще някаква конфигурация. Авторите на RT я препоръчват за тестове, демота и разработка, но е неподходяща за високообемен производствен RT сървър." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "сб" #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "събота" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Запазване" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Запис на промените" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Запис на предпочитанията" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Запис като ново" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "Записан %1 %2" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "Съхранено търсене %1 не е открито" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "Запазени диаграми" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "Съхранени търсения" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip създаден" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Scrip полета" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip изтрит" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "Scrips и получатели" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scrips, които се отнасят до всички опашки" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Търсене" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Предпочитания на търсенето" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Търсене на одобрения" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Търсене на билети" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Търсене на билети. Въведете id номера, опашки по име, собственици по потребителско име и заявители по адрес на ел. поща." #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Опции при търсене" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Резултатите от търсенето групирани по %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Интервал на опреснение на резултатите от търсене" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Търсенето в пълния текст на всеки билет може да отнеме дълго време, но ако се налага да го направите, можете да търсите по всяка дума в пълната история на билетите, като напишете fulltext:дума." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "Таен оторизационен белег" #: bin/rt-crontool:350 msgid "Security:" msgstr "Сигурност:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Вижте също:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom field values" msgstr "Вижте стойности на персонализирани полета" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Вижте персонализирани полета" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Вижте точните излизащи съобщения по ел. поща и техните получатели" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Вижте частните коментари на билет" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Вижте обобщения на билети" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "ВижПерсонализираноПоле" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "ВижТабло" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "ВижГрупа" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "ВижГруповоТабло" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "ВижСобственоТабло" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "ВижОпашка" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Избиране" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Избор на вида на базата данни" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Изберете персонализирано поле" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Изберете група" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Изберете опашка" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Изберете опашка за новият ви билет" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Изберете потребител" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Изберете друг език" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "Изберете персонализирани полета за всички опашки" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Изберете персонализирани полета за всички потребителски групи" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Изберете персонализирани полета за всички потребители" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Изберете персонализирани полета за билети във всички опашки" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Изберете персонализирани полета за транзакции върху билети във всички опашки" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Изберете група" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Изберете множество стойности" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Изберете една стойност" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Изберете опашки, които да се показват на страница \"RT обзор\"" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Изберете scrip" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Изберете шаблон" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Изберете до %1 стойности" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Избрани персонализирани полета" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Избраният ключ е или ненадежден, или вече не съществува." #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Избрани обекти" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Изборът е променен. Моля, запазете промените си" #: NOT FOUND IN SOURCE msgid "Send email successfully" msgstr "Ел. поща изпратена успешно" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "Изпращане на ел. поща до собственика и всички наблюдатели" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Изпращане на ел. поща до собственика и всички наблюдатели като \"коментар\"" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Изпращане на ел. поща до заявителите и копията" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Изпращане на ел. поща до заявителите и копията като коментар" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Изпращане на съобщение до заявителите" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Изпраща ел. поща до изрично указани копия и слепи копия" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Изпраща ел. поща до копията" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Изпраща ел. поща до копията като коментар" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Изпраща ел. поща до административните копия" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Изпраща ел. поща до административните копия като коментар" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Изпраща ел. поща до собственика" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "сеп" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Настройки" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Показване" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Показване на колони" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Показване на резултатите" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "Показване на свойствата на билети на %1 ниво" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Показване на одобрените заявки" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Показване също" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Показване на основни" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Показване на отхвърлените заявки" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Показване на подробности" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Показване на описание на връзката" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "Показване на най-старата история най-напред" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Показване на висящи заявки" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Показване на заявки, които очакват други одобрения" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "ПоказСписъкКонтролДостъп" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "ПоказРазделОдобрения" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "ПоказРазделКонфигурация" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "ПоказИзлизащаЕлПоща" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "ПоказСъхранениТърсения" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "ПоказScrips" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "ПоказШаблон" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "ПоказБилет" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "ПоказКоментариНаБилет" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "Заличител" #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Заличителят се нуждае от директория, в която да записва dump файловете. Моля, уверете се, че имате %1 и че web сървърът може да записва в нея." #: NOT FOUND IN SOURCE msgid "Shredder needs a directory to write dumps to. Please check that you have %1 and it is writable by your web server." msgstr "Заличителят се нуждае от директория, в която да записва dump файловете. Моля, уверете се, че имате %1 и че web сървърът може да записва в нея." #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "Страничен панел" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "Подписване" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "Подписване по подразбиране" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Записване като заявител на билет или билет или копие от опашката" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Записване като административно копие на билет или опашка" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Подпис" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "Подписването изключено" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "Подписването включено" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Опростено търсене" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "Единично" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "Име на сайта" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Размер" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Прескочи меню" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "Прескачане на изключен потребител" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Малък" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Някои браузъри може да зареждат съдържание само от същия домейн като вашия RT сървър." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Сортиране" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Сортиране" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "Укажете дали това е дневно или седмично изпълнение." #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "Електронна таблица" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Етап" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Начало" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "НачалоОтносително" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Започва" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "ЗапочваОтносително" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Състояние" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Състояние" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Промяна на състоянието" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Промяна на състоянието от %1 на %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Открадни" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Открадни билети" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "ОткрадванеБилет" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "Стъпка %1 от %2" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Откраднат от %1" #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Стил" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Тема" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Маркер за тема" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Темата променена на %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: NOT FOUND IN SOURCE msgid "SubjectTag changed to %1" msgstr "МаркерТема променен на %1" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Изпращане" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "Абониране" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "Абониране за табло %1" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "Абониране за табла" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "АбониранеТабло" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "Абониран за табло %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "Абонамент" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "Неуспех при създаването на абонамент: %1" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "Успешно дешифриране на данни" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "Успешно шифриране на данни" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "нед" #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "неделя" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "СуперПотребител" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "Прекъснат" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Системна конфигурация" #: NOT FOUND IN SOURCE msgid "System Dashboards" msgstr "Системни табла" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Системни настройки по подразбиране" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Системна грешка" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Системна грешка: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Системни инструменти" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Системна грешка. Правото не е делегирано." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Системна грешка. Правото не е предоставено." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Системни групи" #: NOT FOUND IN SOURCE msgid "System rights" msgstr "Системни права" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "СистемнаРолеваГрупа за вътрешна употреба" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Вземи" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Взимане на билети" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "ВзиманеБилет" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Взет" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Кажете ни няколко неща за това как да намерим базата данни, която RT ще използва" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Шаблон" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Шаблон #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "Шаблон #%1 изтрит" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "Шаблон '%1' не е намерен" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "Шаблонът е празен" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Шаблон е задължителен аргумент" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Шаблонът премина разбор" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Грешка при разбора на шаблона" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Шаблони" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "Текстовият файл не е показан, защото е изключен в предпочитанията." #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Текущата стойност е същата" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Това не е стойност за това персонализирано поле" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Това е същата стойност" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Този принсипал вече има това право" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Този принсипал вече е %1 за тази опашка" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Този принсипал вече е %1 за този билет" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Този принсипал не е %1 за тази опашка" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this ticket" msgstr "Този принсипал не е %1 за този билет" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Тази опашка не съществува" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Този билет има неразрешени зависимости" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Този потребител вече притежава този билет" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Този потребител не съществува" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Този потребител вече е привилегирован" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Този потребител вече е непривилегирован" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Този потребител сега е привилегирован" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Този потребител сега е непривилегирован" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Този потребител не може да притежава билети в тази опашка" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Това не е числово id" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Основите" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Копието на билет" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Паролата на администратора на базата данни" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Административните копия на билет" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Името на вашият сървър с бази данни (като 'db.example.com')." #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Следната команда ще намери всички активни билети в опашка 'general' и ще установи приоритета им на 99, ако не са били докоснати в последните 4 часа:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Следните заявки са изтрити и всяка ще бъде премахната от таблото веднъж щом е обновен панела." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Следните заявки може да не са видими за всички потребители, които виждат това табло." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "Ключът е изключен" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "Ключът е отменен" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "Ключът е просрочен" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "Ключът е доверен напълно" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "Ключът е доверен докрай" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Новата стойност беше установена." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Собственикът на билет" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Страницата, която пожелахте, не беше намерена" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Заявителят на билет" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Настройките, които избрахте, се пазят в %1" #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Системата не може да подписва излизащите съобщения по ел. поща. Това обикновено означава, че паролата е неправилна или че GPG агента не работи. Моля, свържете се незабавно със системния си администратор. Проблемните адреси са:" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "Визуална схема" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "Има няколко ключа подходящи за шифриране." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Има непрочетени съобщения в този билет." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "Има маргинално доверие в този ключ" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "Няма ключ подходящ за шифриране." #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "Има един подходящ ключ, но нивото на доверие не е настроено." #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Тези коментари обикновено не са видими за потребителя" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Тези конфигурационни опции покриват някои от основните неща, нужни, за да се пусне RT. Нужно е да знаем името на вашата RT инсталация, както и името на домейна, където ще живее RT. Също така е нужно да се настрои парола за административния потребител по подразбиране." #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Това персонализирано поле не се отнася до този обект" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Тази функция е достъпна само за системни администратори" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "Това може да значи, че директория '%1' не е записваема или че таблица в базата данни липсва, или е повредена." #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Това съобщение ще бъде изпратено на..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Този инструмент позволява на потребителя да изпълнява произволни модули за perl от RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Тази транзакция изглежда няма съдържание" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "%1 билета с най-висок приоритет на потребителя" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "четв" #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "четвъртък" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Билет" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Билет #%1 Джъмбо обновление: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Графика на взаимоотношенията на билет #%1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Билет #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Билет %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Билет %1 създаден в опашка '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Билет %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Персонализирани полета на билет" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "История на билет # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Билетът разрешен" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "Търсене на билет" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Транзакции на билет" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Съдържание на билет" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Тип на съдържанието на билет" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Неуспех при създаването на билет заради вътрешна грешка" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Неуспех при зареждането на билета" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "Показване на билет" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Метаданни на билет" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Състоянието на билета променено" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "TicketSQL модул за търсене" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Билети" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "Билети %1 %2" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "Билети %1 по %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Билети създадени след" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Билети създадени преди" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Билети разрешени след" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Билети разрешени преди" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Билети, които зависят от това одобрение" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Време приблизително" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Оставащо време" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Време работено" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Време за показване" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "ВремеПриблизително" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "ОставащоВреме" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "ВремеРаботено" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "Часови пояс" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Заглавие" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "До" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "За запитвания относно поддръжка, тренировка, персонализирани разработки или лицензиране, моля, свържете се със %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Инструменти" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Общо" #: etc/initialdata:249 msgid "Transaction" msgstr "Транзакция" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Транзакция %1 очистена" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Транзакция създадена" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Персонализирани полета на транзакцията" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create не успя, защото не указахте тип на обекта и id" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "ДатаНаТранзакция" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Транзакциите са неотменими" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "Доверие" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "вт" #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "вторник" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Тип" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "Типът сменен от '%1' на '%2'" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Неуспех при определянето на типа на обекта и id" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "Неуспех при абонамента за табло %1: Достъпът отказан" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Неимплементирано" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix логин" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "Непознат (не е възложена стойност за доверие)" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "Непознат (тази стойност е нова за системата)" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Непознато кодиране на съдържанието %1" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "Непознато поле: %1" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Премахване на ограничение" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Без ограничение" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Ненаименовано търсене" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Непривилегирован" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Неизбрано персонализирано поле" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Неизбрани обекти" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "Премахване на частния ключ" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Отдаден" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Обновяване" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "Графика на обновяването" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Обновяване на билет" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Тип на обновяването" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Обновяване на форматът и търсене" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Обновяване на множество билети" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Обновяването не е записано." #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Обновяване на билет" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Обновяване на билет #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Обновяване на билет #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Типът на обновление не е нито кореспонденция, нито коментар." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "СъстояниеНаОбновлението" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Обновен" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "Обновено съхранено търсене \"%1\"" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Качване" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Качване на множество файлове" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Качване на множество изображения" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Качване на един файл" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Качване на едно изображение" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Качване до %1 файла" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Качване до %1 изображения" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Качете промените си" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: NOT FOUND IN SOURCE msgid "Usage: " msgstr "Употреба: " #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "Използване на SSL?" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "Използвайте CSS правила за показване на равноширок текст със запазено форматиране, но превит при нужда. Това не работи добре с IE6 и би трябвало да използвате предишната опция" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Използване стойността по подразбиране (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Използване на други административни инструменти на RT" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Използване на системната стойност по подразбиране(%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "Използвайте това за да защитите форматът на правия текст" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "Потребител" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Потребител '%1' не може да бъде открит." #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "Потребител (създаден - изтича)" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Потребителско зададено" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Потребителски-зададени условия и действия" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Потребителски права" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Потребителят поиска непознат тип на обновлението за персонализирано поле %1 за %2 обект #%3" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Неуспех при създаването на потребител: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Потребителят е създаден" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Потребителски-зададени групи" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "Потребителят изключен" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "Потребителят включен" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "Потребителят има празен адрес за ел. поща" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Потребителят зареден" #: NOT FOUND IN SOURCE msgid "User's GnuPG keys" msgstr "GnuPG ключовете на потребителя" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Потребителски-зададени групи" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Потребителско име" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "Формат на потребителското име" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Потребители" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Потребители, отговарящи на критериите за търсене" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Използване на транзакция #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Валидна заявка" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Валидиране" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Стойности" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: NOT FOUND IN SOURCE msgid "Various RT reports" msgstr "Разнообразни RT доклади" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: NOT FOUND IN SOURCE msgid "View dashboards for this group" msgstr "Преглед на таблата за тази група" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "Преглед на лични табла" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "Преглед на системни табла" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "W3CDTF" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "височина на WYSIWYG композитора" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "WYSIWYG композитор на съобщения" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "Внимание! Това НЕ Е подписано!" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "Внимание: вие нямате устрановен адрес за ел. поща, така че няма да получавате това табло докато не го настроите" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Наблюдение" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "НаблюдениеКатоАдминКопие" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "Наблюдател" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "Група на наблюдателя" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Наблюдатели" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Намерихме вашата база данни и успешно се свързваме като администратор. Можете да щракнете на \"Основни персонализации\", за да продължите да персонализирате RT." #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Нужно е да знаем името на базата данни, която RT ще използва, както и къде да я намерим. Също така е нужно потребителското име и паролата, които RT ще ползва. RT може да създаде базата данни и потребителят за вас, това е причината да искаме потребителско име и парола за потребител с администраторски права в базата данни. По време на стъпка 6 на инсталационния процес ще използваме тази информация за да създадем и инициализираме базата данни на RT." #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "Web порт" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "ср" #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "сряда" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "Седмично резюме" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Добре дошли в RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Какво правих днес" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Какво е RT" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Когато RT не може да се справи със съобщение по ел. поща, къде да го препраща?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Когато RT изпраща ел. поща, настройва заглавните части From: и Reply-To:, така че потребителите да могат да добавят в разговора като просто натискат Отговор в техният клиент за ел. поща. Използват се различни адреси за отговори и коментари. Тези могат да бъдат променени за всяка от опашките. Тези адреси ще трябва да са конфигурирани да използват програмата rt-mailgate." #: etc/initialdata:105 msgid "When a ticket is created" msgstr "Когато билет се създава" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Когато се създава одобрителен билет, съобщи на собственика и административните копия за елемента, който очаква тяхното одобрение" #: etc/initialdata:110 msgid "When anything happens" msgstr "Когато се случи каквото и да било" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Когато щракнете на 'Проверка на свързаността с базата данни' може да има кратко закъснение, докато RT се опитва да се свърже към вашата база данни" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "Когато се затваря билет" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "Като се отхвърля билет" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "Когато се отваря билет наново" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "Когато се разрешава билет" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "Когато собственикът на билет се смени" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "Когато се променя приоритетът на билет" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "Когато се променя опашката на билет" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "Когато се променя състоянието на билет" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "Когато се случи потребителски-зададено състояние" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "Когато се получават коментари" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Когато се получава кореспонденция" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "Къде се намира вашият sendmail изпълним файл." #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Заличаване" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Служебен" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "WorkPhone" msgstr "СлужебенТелефон" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Работил/а" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Да" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Вече притежавате този билет" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "Ще шифрирате изходяща ел. поща, но има проблеми с публичните ключове на получатели. Трябва да поправите тези проблеми, да изключите изпращането на съобщение до получатели с проблеми с ключовете или да изключите шифрирането." #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "Ще шифрирате изходяща ел. поща, но има проблеми с публичния ключ на получател. Трябва да поправите този проблем, да изключите изпращането на съобщение към този получател или да изключите шифрирането." #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Вие не сте оторизиран потребител" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Можете да скочите до първото непрочетено съобщение или скочите до първото непрочетено съобщение и да маркирате всички съобщения като прочетени." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Също така можете да редактирате предефинираното търсене" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Можете да назначавате само билети, които притежавате или които са безстопанствени" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Можете да взимате само билети, които са безстопанствени" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Вие нямате SuperUser право." #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Намерихте %1 билета в опашка %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Отписването от RT приключи." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Нямате право да създавате билети в тази опашка." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Не можете да създавате заявки в тази опашка." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Трябва да въведете административна парола" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Трябва да бъдете отведени директно към страница за вход. Ще можете да влезете с потребителско име %1 и паролата, която настроихте по-рано." #: NOT FOUND IN SOURCE msgid "You should be taken directly to a login page. You'll be able to log in with username of root and the password you set earlier." msgstr "Трябва да бъдете отведени директно към страница за вход. Ще можете да влезете с потребителско име root и паролата, която настроихте по-рано." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Трябва да изберете базата данни, която е най-удобна на вас или на вашият администратор на бази данни." #: NOT FOUND IN SOURCE msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click Let's go! below, RT will guide you through setting up your RT server and database." msgstr "Виждате този екран, защото стартирахте RT сървър без работеща база данни. Най-вероятно, това е първият път, в който пускате RT. Ако щракнете Давай! по-долу, RT ще ви преведе през процедурата по установяването на RT сървър и база данни." #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Виждате този екран, защото стартирахте RT сървър без работеща база данни. Най-вероятно, това е първият път, в който пускате RT. Ако щракнете \"%1\" по-долу, RT ще ви преведе през процедурата по установяването на RT сървър и база данни." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Можете да влезете отново" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Вашето потребителско име или парола са неправилни" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Пощенски код" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[без]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr "добавете маркер 
 около прикачки в прав текст"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "след"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "позволяване създаването на съхранени търсения"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "позволяване зареждането на съхранени търсения"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "както е предоставено на %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "лента"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "преди"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr "отдолу нагоре"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr "щракнете за да маркирате/отмаркирате всички обекти наведнъж"

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "затворени"

#: NOT FOUND IN SOURCE
msgid "concise"
msgstr "сбит"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr "конфигурация на ядрото"

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr "персонализирано поле '%1'"

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "ежедневно"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "ежедневно в %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "дни"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "изтрит"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr "показване на подгънати и форматирани прикачки в прав текст"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "не съвпада"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr "изтегляне"

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "равно на"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "грешка: не може да се премести надолу"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "грешка: не може да се премести наляво"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "грешка: не може да се премести нагоре"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "грешка: нищо за триене"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "грешка: нищо за местене"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "грешка: нищо за превключване"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr "всеки"

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr "изпълнение на плъгин успешно"

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr "пълен"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "по-голям от"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "група '%1'"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "часа"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr "iCal"

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "id"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "е"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "не е"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "ключът изключен"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "ключът просрочен"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "ключът отменен"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr "отляво надясно"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "по-малко от"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "маргинален"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "съвпада"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "максимална дълбочина"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "мин"

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "минути"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "ежемесечно"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "ежемесечно (ден %1) в %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "месеци"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "никога"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "нов"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "не"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "няма име"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "няма"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "не е равно на"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "нищо"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr "обектите са успешно премахнати"

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "на"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr "на ден"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "отворени"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "отвори/затвори"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "друг..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "лична група '%1' за потребител '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr "пай"

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr "плъгинът върна празен списък"

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "опашка %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "отхвърлен"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "разрешен"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "отдясно наляво"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "сек"

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr "виж списъка с обекти долу"

#: NOT FOUND IN SOURCE
msgid "show Approvals tab"
msgstr "покажи раздел Одобрения"

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "покажи раздел Конфигурация"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr "конфигурация на сайта"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "спрян"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "резюме редове"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "система %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "системна група '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "извикващият компонент не уточни защо"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "адресите по подразбиране, които ще бъдат в заглавните части From: и Reply-To: на ел. поща от коментари."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "адресите по подразбиране, които ще бъдат в заглавните части From: и Reply-To: на ел. поща от кореспонденция."

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "билет #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr "отгоре надолу"

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "докрай"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "неописана група %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "потребител %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "многословен"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "ежеседмично"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "ежеседмично (в %1) в %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "седмици"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "на кой порт ще слуша вашият web сървър, напр. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "със заглавни части"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "години"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "да"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/po/sv.po0000664000175000017500000110347512262650742013775 0ustar  chmrrchmrrmsgid ""
msgstr ""
"Project-Id-Version: RT 4.0.x\n"
"Report-Msgid-Bugs-To: rt-devel \n"
"POT-Creation-Date: 2011-08-05 23:32+0000\n"
"PO-Revision-Date: 2011-08-06 00:27+0000\n"
"Last-Translator: Shawn M Moore \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-06 01:13+0000\n"
"X-Generator: Launchpad (build 13613)\n"

#: NOT FOUND IN SOURCE
msgid " %1 deleted."
msgstr " %1 raderad."

#: NOT FOUND IN SOURCE
msgid " %1 renamed to %2."
msgstr " %1 omdöpt till %2."

#: NOT FOUND IN SOURCE
msgid " %1 saved."
msgstr " %1 sparad."

#: NOT FOUND IN SOURCE
msgid " (no pubkey!)"
msgstr " (ingen publik nyckel!)"

#: NOT FOUND IN SOURCE
msgid " (untrusted!)"
msgstr " (ej betrodd!)"

#: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/RT__Class/ColumnMap:55 share/html/Elements/RT__CustomField/ColumnMap:55 share/html/Elements/RT__Dashboard/ColumnMap:55 share/html/Elements/RT__Group/ColumnMap:55 share/html/Elements/RT__Queue/ColumnMap:55 share/html/Elements/RT__SavedSearch/ColumnMap:55 share/html/Elements/RT__Scrip/ColumnMap:55 share/html/Elements/RT__Template/ColumnMap:55 share/html/Elements/RT__User/ColumnMap:55
msgid "#"
msgstr "#"

#: share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:198 share/html/m/ticket/history:56 share/html/m/ticket/show:207
#. ($Ticket->Id, $Ticket->Subject || '')
#. ($Ticket->id, $Ticket->Subject)
#. ($TicketObj->Id, $TicketObj->Subject || '')
#. ($link->BaseObj->Id, $link->BaseObj->Subject)
#. ($t->Id, $t->Subject || '')
#. ($ticket->Id, $ticket->Subject)
msgid "#%1: %2"
msgstr "#%1: %2"

#: NOT FOUND IN SOURCE
msgid "$1"
msgstr "$1"

#: NOT FOUND IN SOURCE
msgid "$prefix %1"
msgstr "$prefix %1"

#: lib/RT/URI/fsck_com_rt.pm:219
#. ($self->ObjectType, $self->Object->Id)
msgid "%1 #%2"
msgstr "%1 #%2"

#: lib/RT/Date.pm:369
#. ($s, $time_unit)
msgid "%1 %2"
msgstr "%1 %2"

#: lib/RT/Tickets.pm:2049
#. ($args{'FIELD'},        $args{'OPERATOR'}, $args{'VALUE'})
msgid "%1 %2 %3"
msgstr "%1 %2 %3"

#: lib/RT/Date.pm:627
#. ($wday,$mon,$mday,$year)
msgid "%1 %2 %3 %4"
msgstr "%1, %3 %2 %4"

#: lib/RT/Date.pm:642
#. ($wday,$mon,$mday,$hour,$min,$year)
msgid "%1 %2 %3 %4:%5 %6"
msgstr "%1 %3 %2 %6 %4.%5"

#: lib/RT/Date.pm:639
#. ($wday,$mon,$mday,$hour,$min,$sec,$year)
msgid "%1 %2 %3 %4:%5:%6 %7"
msgstr "%1, %3 %2 %7 kl. %4.%5.%6"

#: lib/RT/Record.pm:1791 lib/RT/Transaction.pm:732 lib/RT/Transaction.pm:774
#. ($cf->Name, $new_content)
#. ($field, $new)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 added"
msgstr "%1 %2 tillagt"

#: lib/RT/Date.pm:366
#. ($s, $time_unit)
msgid "%1 %2 ago"
msgstr "%1 %2 sedan"

#: lib/RT/Record.pm:1798 lib/RT/Transaction.pm:738
#. ($cf->Name, $old_content, $new_content)
#. ($field, $old, $new)
msgid "%1 %2 changed to %3"
msgstr "%1 %2 ändrat till %3"

#: lib/RT/Record.pm:1795 lib/RT/Transaction.pm:735 lib/RT/Transaction.pm:780
#. ($cf->Name, $old_content)
#. ($field, $old)
#. ($self->Field, $principal->Object->Name)
msgid "%1 %2 deleted"
msgstr "%1 %2 raderad"

#: share/html/Widgets/SavedSearch:139
#. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description)
msgid "%1 %2 deleted."
msgstr "%1 %2 raderad."

#: NOT FOUND IN SOURCE
msgid "%1 %2 renamed to %3."
msgstr "%1 %2 omdöpt till %3."

#: share/html/Widgets/SavedSearch:129
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 saved."
msgstr "%1 %2 sparad."

#: share/html/Widgets/SavedSearch:113
#. (loc($self->{SearchType}), $args->{SavedSearchDescription})
msgid "%1 %2 updated."
msgstr "%1 %2 uppdaterad."

#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:72
#. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
#. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
msgid "%1 %2 with template %3"
msgstr "%1 %2 med mall %3"

#: share/html/Ticket/Elements/ShowAttachments:86 share/html/m/ticket/show:348
#. ($rev->CreatedAsString, $size, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj))
#. ($rev->CreatedAsString, $size, $rev->CreatorObj->Name)
msgid "%1 (%2) by %3"
msgstr "%1 (%2) av %3"

#: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/SelfService/Update.html:64 share/html/Ticket/Elements/EditBasics:64 share/html/Ticket/Update.html:110 share/html/Ticket/Update.html:122 share/html/Tools/MyDay.html:68 share/html/m/ticket/reply:64 share/html/m/ticket/reply:73
#. ($m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj))
#. ($m->scomp('/Elements/ShowUser', User => $t->OwnerObj))
#. (loc($Ticket->Status))
#. (loc($TicketObj->Status))
#. (loc($t->Status))
#. (loc('Approve'))
#. (loc('Deny'))
#. (loc($Ticket->Status()))
msgid "%1 (Unchanged)"
msgstr "%1 (Ej ändrad)"

#: share/html/Dashboards/Elements/Deleted:57
#. (($_->{description} || $_->{name}), $_->{pane})
msgid "%1 (from pane %2)"
msgstr "%1 (från panel %2)"

#: bin/rt-crontool:345
#. ("--log")
msgid "%1 - Adjust LogToScreen config option"
msgstr ""

#: bin/rt-crontool:320 bin/rt-crontool:327 bin/rt-crontool:333
#. ("--action-arg", "--action")
#. ("--condition-arg", "--condition")
#. ("--search-arg", "--search")
msgid "%1 - An argument to pass to %2"
msgstr "%1 - En parameter att skicka till %2"

#: bin/rt-crontool:347
#. ("--verbose")
msgid "%1 - Output status updates to STDOUT"
msgstr "%1 - Skicka statusuppdateringar till STDOUT"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify id of the template you want to use"
msgstr "%1 - Ange ID för den mall du vill använda"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify if you want to use either 'first' or 'last' tarnsaction"
msgstr "%1 - Specificera om du vill använda 'första' eller 'sista' transaktionen"

#: bin/rt-crontool:339
#. ("--transaction")
msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions"
msgstr "%1 - Ange om du vill använda första ('first'), sista ('last') eller alla ('all') transaktioner"

#: bin/rt-crontool:336
#. ("--template")
msgid "%1 - Specify name or id of template(s) you want to use"
msgstr "%1 - Ange namn eller id för den mall eller de mallar som du vill använda dig av"

#: bin/rt-crontool:330
#. ("--action")
msgid "%1 - Specify the action module you want to use"
msgstr "%1 - Ange den åtgärdsmodul du vill använda"

#: bin/rt-crontool:342
#. ("--transaction-type")
msgid "%1 - Specify the comma separated list of transactions' types you want to use"
msgstr "%1 - Ange en kommaseparerad följd av transaktionstyper du vill använda"

#: bin/rt-crontool:324
#. ("--condition")
msgid "%1 - Specify the condition module you want to use"
msgstr "%1 - Ange den villkorsmodul du vill använda"

#: bin/rt-crontool:317
#. ("--search")
msgid "%1 - Specify the search module you want to use"
msgstr "%1 - Ange den sökmodul du vill använda"

#: NOT FOUND IN SOURCE
msgid "%1 - Specify the type of a transaction you want to use"
msgstr "%1 - Specificera den typ av transaktion du vill använda"

#: share/html/Elements/Footer:56 share/html/m/_elements/footer:51
#. ('»|«', $RT::VERSION, '2013', 'Best Practical Solutions, LLC',)
#. ('', '', '2013', 'Best Practical Solutions, LLC',)
msgid "%1 RT %2 Copyright 1996-%3 %4."
msgstr "%1 RT %2 Copyright 1996-%3 %4."

#: NOT FOUND IN SOURCE
msgid "%1 ScripAction loaded"
msgstr "%1 ScripAktion inläst"

#: lib/RT/Record.pm:1826
#. ($args{'Value'}, $cf->Name)
msgid "%1 added as a value for %2"
msgstr "%1 tillagt som värde för %2"

#: share/html/Install/DatabaseDetails.html:170
#. ($RT::DatabaseName)
msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT."
msgstr ""

#: share/html/Install/DatabaseDetails.html:175
#. ($RT::DatabaseName)
msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT."
msgstr ""

#: lib/RT/ACE.pm:289
#. ($princ_obj->Object->Name)
msgid "%1 already has that right"
msgstr ""

#: lib/RT/Link.pm:121 lib/RT/Link.pm:129
#. ($args{'Base'})
#. ($args{'Target'})
msgid "%1 appears to be a local object, but can't be found in the database"
msgstr "%1 tycks vara ett lokalt objekt men går inte att hitta i databasen"

#: share/html/Install/DatabaseDetails.html:166
#. ($RT::DatabaseName)
msgid "%1 appears to be fully initialized.  We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below"
msgstr ""

#: lib/RT/Transaction.pm:608 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409
#. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name)
#. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj))
#. ($self->BriefDescription , $self->CreatorObj->Name)
msgid "%1 by %2"
msgstr "%1 av %2"

#: lib/RT/Record.pm:514 lib/RT/Transaction.pm:668 lib/RT/Transaction.pm:867 lib/RT/Transaction.pm:872 lib/RT/Transaction.pm:886 lib/RT/Transaction.pm:895 lib/RT/Transaction.pm:933
#. ($self->loc($self->Field),                               ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'")
#. ($self->loc($self->Field) , $q1->Name , $q2->Name)
#. ($self->Field,                ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ),                "'" . $self->NewValue . "'")
#. ($self->loc( $args{'Field'} ),                ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ),                '"' . $self->__Value( $args{'Field'}) . '"',)
#. ($self->loc($self->Field), $t2->AsString, $t1->AsString)
msgid "%1 changed from %2 to %3"
msgstr "%1 ändrat från %2 till %3"

#: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:226
#. (loc("Render Type"), $original, $RenderType)
#. (loc("Field values source"), $original, $ValuesClass)
msgid "%1 changed from '%2' to '%3'"
msgstr "%1 ändrades från '%2' till '%3'"

#: share/html/Search/Chart.html:128
#. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
msgid "%1 chart by %2"
msgstr "%1 diagram enligt %2"

#: share/html/Search/Elements/EditSearches:201
#. ($SavedSearch->{'Object'}->Description)
msgid "%1 copy"
msgstr "%1 kopiera"

#: share/html/Admin/Tools/Configuration.html:77
#. ($meta->{'Source'}{'Extension'})
msgid "%1 core config"
msgstr ""

#: lib/RT/Record.pm:964
msgid "%1 could not be set to %2."
msgstr "%1 kunde inte anges till %2."

#: NOT FOUND IN SOURCE
msgid "%1 couldn't set status to resolved. RT's Database may be inconsistent."
msgstr "%1 kunde inte sätta status till åtgärdat. RT-databasen kan vara inkonsekvent."

#: lib/RT/Transaction.pm:635
#. ($obj_type)
msgid "%1 created"
msgstr "%1 skapad"

#: lib/RT/Transaction.pm:646
#. ($obj_type)
msgid "%1 deleted"
msgstr "%1 raderad"

#: lib/RT/Transaction.pm:641
#. ($obj_type)
msgid "%1 disabled"
msgstr "%1 avaktiverad"

#: share/html/Install/Sendmail.html:86
#. ($ARGS{SendmailPath})
msgid "%1 doesn't exist."
msgstr "%1 existerar inte."

#: lib/RT/Transaction.pm:638
#. ($obj_type)
msgid "%1 enabled"
msgstr "%1 aktiverad"

#: etc/initialdata:574
msgid "%1 highest priority tickets I own"
msgstr "%1 högst prioriterade ärenden som tillhör mig"

#: bin/rt-crontool:312
#. ($0)
msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron."
msgstr "%1 är ett verktyg som reagerar på ärenden från ett externt planeringsverktyg, så som cron."

#: sbin/rt-email-digest:92
#. ($0)
msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest."
msgstr ""

#: lib/RT/Queue.pm:969
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is already a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1144
#. ($principal->Object->Name, $self->loc($args{'Type'}))
msgid "%1 is already a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:918 lib/RT/Queue.pm:924 lib/RT/Ticket.pm:1112 lib/RT/Ticket.pm:1121 share/html/Ticket/Create.html:392 share/html/Ticket/Update.html:287 share/html/m/ticket/create:186 share/html/m/ticket/reply:204
#. ($args{'Email'}, $self->loc($args{'Type'}))
#. ($email, $self->loc($args{'Type'}))
#. ($email->format, loc($field =~ /^(.*?)s?$/))
#. ($email->format, loc(substr($field, 6)))
msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop"
msgstr "%1 är en adress som RT tar emot e-post för. Att lägga till det som en '%2' skapar en e-postloop"

#: NOT FOUND IN SOURCE
msgid "%1 is no longer a %2 for this queue."
msgstr "%1 är inte längre en %2 för denna kö."

#: lib/RT/Ticket.pm:1292
#. ($principal->Object->Name,                         $args{'Type'})
msgid "%1 is no longer a %2 for this ticket."
msgstr "%1 är inte längre %2 för detta ärende."

#: lib/RT/Record.pm:1891
#. ($old_value, $cf->Name)
msgid "%1 is no longer a value for custom field %2"
msgstr "%1 är inte längre ett värde för extrafältet %2"

#: lib/RT/Queue.pm:1051
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this queue"
msgstr ""

#: lib/RT/Ticket.pm:1266
#. ($principal->Object->Name, $args{'Type'})
msgid "%1 is not a %2 for this ticket"
msgstr ""

#: lib/RT/Queue.pm:268 lib/RT/Queue.pm:411
#. ($args{'Lifecycle'})
#. ($value)
msgid "%1 is not a valid lifecycle"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "%1 is not valid lifecycle"
msgstr "%1 är inte en tillåten livscykel"

#: share/html/Ticket/Elements/ShowTime:49 share/html/Ticket/Elements/ShowTime:51
#. ($minutes)
msgid "%1 min"
msgstr "%1 min"

#: share/html/Articles/Elements/UpdatedArticles:48
#. ($rows)
msgid "%1 most recently updated articles"
msgstr "%1 senast uppdaterade artiklarna"

#: share/html/Articles/Elements/NewestArticles:48
#. ($rows)
msgid "%1 newest articles"
msgstr "%1 nyaste artiklarna"

#: etc/initialdata:585
msgid "%1 newest unowned tickets"
msgstr "%1 nyaste ärenden som inte tillhör någon"

#: lib/RT/CustomField.pm:1183
msgid "%1 objects"
msgstr "%1 objekt"

#: NOT FOUND IN SOURCE
msgid "%1 rights"
msgstr "%1 rättigheter"

#: share/html/Admin/Tools/Configuration.html:74
#. ($meta->{'Source'}{'Extension'})
msgid "%1 site config"
msgstr "%1 webbplatskonfiguration"

#: lib/RT/SharedSetting.pm:257
#. (ucfirst($self->ObjectName), $msg)
msgid "%1 update: %2"
msgstr "%1 uppdatering: %2"

#: lib/RT/SharedSetting.pm:250
#. (ucfirst($self->ObjectName))
msgid "%1 update: Nothing changed"
msgstr "%1 uppdatering: Ingenting har ändrats"

#: lib/RT/Record.pm:507 lib/RT/SharedSetting.pm:254
#. ($self->loc( $args{'Field'} ),)
msgid "%1 updated"
msgstr "%1 uppdaterad"

#: NOT FOUND IN SOURCE
msgid "%1 will resolve all members of a resolved group ticket."
msgstr "%1 kommer att åtgärda alla medlemmar av ett åtgärdat gruppärende."

#: lib/RT/CustomField.pm:1184
msgid "%1's %2 objects"
msgstr "%1:s %2 objekt"

#: lib/RT/CustomField.pm:1185
msgid "%1's %2's %3 objects"
msgstr "%1:s %2:s %3 objekt"

#: share/html/Admin/Users/GnuPG.html:114
#. ($UserObj->Name)
msgid "%1's GnuPG keys"
msgstr "%1s GnuPG-nycklar"

#: share/html/Elements/EditPassword:55
#. ($session{'CurrentUser'}->Name())
msgid "%1's current password"
msgstr "%1s nuvarande lösenord"

#: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55
#. ($m->interp->apply_escapes($object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $object))
#. ($Object->Name)
msgid "%1's dashboards"
msgstr "Dashboard som används av %1"

#: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58
#. ($m->interp->apply_escapes($Object->Name, 'h'))
#. ($m->scomp('/Elements/ShowUser', User => $Object))
#. ($privacies{$privacy}->Name)
#. ($Object->Name)
msgid "%1's saved searches"
msgstr "%1:s sparade sökningar"

#: lib/RT/Transaction.pm:550
#. ($self)
msgid "%1: no attachment specified"
msgstr "%1: inga bifogade filer angivna"

#: lib/RT/Date.pm:634
#. ($hour,$min)
msgid "%1:%2"
msgstr "%1:%2"

#: lib/RT/Date.pm:631
#. ($hour,$min,$sec)
msgid "%1:%2:%3"
msgstr "%1:%2:%3"

#: share/html/Elements/CreateTicket:54
#. ($button_start, $button_end, $queue_selector)
msgid "%1New ticket in%2 %3"
msgstr "%1Nytt ärende i%2 %3"

#: share/html/Ticket/Elements/ShowTransactionAttachments:138
#. ($size)
msgid "%1b"
msgstr "%1b"

#: share/html/Ticket/Elements/ShowTransactionAttachments:135
#. (int( $size / 102.4 ) / 10)
msgid "%1k"
msgstr "%1k"

#: share/html/Ticket/Elements/ShowTransactionAttachments:132
#. (int( $size / 1024 / 102.4 ) / 10)
msgid "%1m"
msgstr "%1m"

#: share/html/Admin/Tools/Queries.html:110 share/html/Admin/Tools/Queries.html:81
#. (sprintf('%.4f', $duration))
#. (sprintf('%.4f', $seconds))
msgid "%1s"
msgstr "%1 s"

#: share/html/Articles/Elements/ShowTopicLink:61
#. ($Articles->Count)
msgid "%quant(%1,article)"
msgstr ""

#: share/html/Ticket/Elements/ShowTime:51
#. (sprintf("%.1f",$minutes / 60))
msgid "%quant(%1,hour)"
msgstr "%quant(%1,timme)"

#: lib/RT/Ticket.pm:903
#. ($args{'Status'})
msgid "'%1' is an invalid value for status"
msgstr "'%1' är ogiltigt statusvärde"

#: lib/RT/Queue.pm:545
#. ($name)
msgid "'%1' is not a valid name."
msgstr ""

#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
#. ($Class)
msgid "'%1' isn't a valid class identifier"
msgstr "'%1' är inte en tillåten klassidentifierare"

#: lib/RT/Interface/Web.pm:3227
msgid "'Roles'"
msgstr "Roller"

#: lib/RT/Interface/Web.pm:3190
msgid "'System'"
msgstr "System"

#: lib/RT/Interface/Web.pm:3208
msgid "'User Groups'"
msgstr "Användargrupper"

#: lib/RT/Interface/Web.pm:3259
msgid "'Users'"
msgstr "Användare"

#: share/html/Ticket/Elements/Reminders:102
msgid "(Check box to complete)"
msgstr "(Markera rutan för att slutföra)"

#: share/html/Admin/Elements/EditCustomFieldValues:92 share/html/Admin/Elements/EditQueueWatchers:67 share/html/Admin/Elements/EditScrips:67 share/html/Admin/Elements/EditTemplates:69 share/html/Admin/Groups/Members.html:107 share/html/Elements/EditLinks:112 share/html/Ticket/Elements/BulkLinks:117 share/html/Ticket/Elements/EditPeople:79
msgid "(Check box to delete)"
msgstr "(Markera box för radering)"

#: share/html/Articles/Article/Elements/EditLinks:53
msgid "(Check boxes to delete)"
msgstr "Markera rutor för att radera"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to disable notifications to the listed recipients)"
msgstr "(Kryssa i boxar för att inaktivera meddelande till registrerade mottagare)"

#: NOT FOUND IN SOURCE
msgid "(Check boxes to enable notifications to the listed recipients)"
msgstr "(Kryssa i boxar för att aktivera meddelande till registrerade mottagare)"

#: share/html/Ticket/Create.html:252 share/html/m/ticket/create:391
msgid "(Enter ticket ids or URLs, separated with spaces)"
msgstr "(Skriv in ID eller URL för ärenden, åtskiljda av mellanslag)"

#: share/html/Admin/Queues/Modify.html:82 share/html/Admin/Queues/Modify.html:85
#. (RT->Config->Get('CommentAddress'))
#. (RT->Config->Get('CorrespondAddress'))
msgid "(If left blank, will default to %1)"
msgstr "(Lämnas det tomt kommer förval att vara %1)"

#: share/html/Admin/Elements/EditCustomFields:95 share/html/Admin/Elements/ListGlobalCustomFields:55
msgid "(No custom fields)"
msgstr "(Inga extrafält)"

#: share/html/Admin/Groups/Members.html:71
msgid "(No members)"
msgstr "(Inga medlemmar)"

#: share/html/Admin/Elements/EditScrips:69 share/html/Admin/Elements/ListGlobalScrips:49
msgid "(No scrips)"
msgstr "(Inga scrips)"

#: share/html/Admin/Elements/EditTemplates:54
msgid "(No templates)"
msgstr "(Inga mallar)"

#: share/html/Admin/Elements/PickCustomFields:49 share/html/Admin/Elements/PickObjects:49
msgid "(None)"
msgstr "(Inga)"

#: NOT FOUND IN SOURCE
msgid "(Sends a blind carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Skickar en hemlig kopia av denna uppdatering till en kommaseparerad lista med e-postadresser. Ändrar inte på vem som får framtida uppdateringar.)"

#: share/html/Ticket/Create.html:150 share/html/m/ticket/create:295
msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)"
msgstr "(Skickar en kopia av denna uppdatering till en kommaseparerad lista med administrativa e-postadresser. Dessa kommer att få framtida uppdateringar.)"

#: NOT FOUND IN SOURCE
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. Does not change who will receive future updates.)"
msgstr "(Skickar en kopia av denna uppdatering till en kommaseparerad lista med e-postadresser. Ändrar inte på vem som får framtida uppdateringar.)"

#: share/html/Ticket/Create.html:134 share/html/m/ticket/create:286
msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)"
msgstr "(Skickar en kopia av denna uppdatering till en kommaseparerad lista med e-postadresser. Dessa kommer att få framtida uppdateringar.)"

#: share/html/Admin/Elements/EditScrip:100
msgid "(Use these fields when you choose 'User Defined' for a condition or action)"
msgstr "(Använd dessa fält när du väljer 'Användardefinierat' för villkor eller handling)"

#: share/html/Ticket/Elements/ShowUserEntry:50
msgid "(Will not be sent email)"
msgstr "(Kommer inte att skickas som e-post)"

#: share/html/Admin/CustomFields/index.html:74
msgid "(any)"
msgstr "(allt)"

#: NOT FOUND IN SOURCE
msgid "(empty)"
msgstr "(tom)"

#: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67
msgid "(no Summary)"
msgstr "(ingen sammanfattning)"

#: NOT FOUND IN SOURCE
msgid "(no name listed)"
msgstr "(inga namn registrerade)"

#: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:58 share/html/Articles/Article/Elements/EditTopics:74 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85
msgid "(no name)"
msgstr "(namnlös)"

#: share/html/Elements/RT__Ticket/ColumnMap:264 share/html/Elements/RT__Ticket/ColumnMap:281
msgid "(no pubkey!)"
msgstr "(ingen publik nyckel!)"

#: lib/RT/Transaction.pm:661 share/html/Admin/Elements/AddCustomFieldValue:72 share/html/Admin/Elements/EditCustomFieldValues:78 share/html/Admin/Elements/SelectRights:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:116 share/html/Elements/EditCustomFieldSelect:90 share/html/Elements/EditCustomFieldSelect:99 share/html/Elements/SelectCustomFieldValue:53 share/html/Elements/ShowCustomFields:59 share/html/Search/Elements/Chart:121 share/html/Search/Elements/Chart:82 share/html/m/ticket/show:268
msgid "(no value)"
msgstr "(inget värde)"

#: share/html/Admin/Elements/EditCustomFieldValues:49
msgid "(no values)"
msgstr "(inga värden)"

#: share/html/Elements/EditLinks:134 share/html/Ticket/Elements/BulkLinks:128
msgid "(only one ticket)"
msgstr "(endast ett ärende)"

#: share/html/Elements/RT__Ticket/ColumnMap:121
#. ($count)
msgid "(pending %quant(%1,other ticket))"
msgstr ""

#: share/html/Elements/RT__Ticket/ColumnMap:113
msgid "(pending approval)"
msgstr "(inväntar godkännande)"

#: NOT FOUND IN SOURCE
msgid "(pending other Collection)"
msgstr "(inväntar annan Samling)"

#: share/html/Admin/Users/Modify.html:69
msgid "(required)"
msgstr "(obligatorisk)"

#: share/html/Elements/GnuPG/SelectKeyForEncryption:53
#. ($key->{'TrustTerse'})
msgid "(trust: %1)"
msgstr ""

#: share/html/Ticket/Elements/ShowTransactionAttachments:259 share/html/Ticket/Elements/ShowTransactionAttachments:67
msgid "(untitled)"
msgstr "(ej namngiven)"

#: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Elements/RT__Ticket/ColumnMap:284
msgid "(untrusted!)"
msgstr "(ej betrodd!)"

#: NOT FOUND IN SOURCE
msgid "(yyyy/mm/dd)"
msgstr "(yyyy/mm/dd)"

#: share/html/Articles/Elements/BeforeMessageBox:68 share/html/Elements/EditCustomFieldSelect:59
msgid "-"
msgstr "-"

#: bin/rt-crontool:137
msgid "--template-id is deprecated argument and can not be used with --template"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "--transaction argument could be only 'first' or 'last'"
msgstr "--transaktionsparameter kan bara vara 'först' eller 'sist'"

#: bin/rt-crontool:132
msgid "--transaction argument could be only 'first', 'last' or 'all'"
msgstr "argumentet till --transaction kan endast vara 'first', 'last' eller 'all'"

#: NOT FOUND IN SOURCE
msgid "<% $Ticket->Status%>"
msgstr "<% $Ärende->Status%>"

#: NOT FOUND IN SOURCE
msgid "<% $_ %>"
msgstr "<% $_ %>"

#: share/html/Ticket/Elements/EditBasics:136
msgid "<% $field->{'name'} %>"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "<%$_%>"
msgstr "<%$_%>"

#: NOT FOUND IN SOURCE
msgid "<%$field%>"
msgstr "<%$fält%>"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid " %1"
msgstr " %1"

#: NOT FOUND IN SOURCE
msgid "

All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below.

" msgstr "

Alla iCal-feeds innehåller en hemlig nyckel för att verifiera din identitet. Om URLen för en av dina iCal-feeds har råkat bli publik kan du få en ny nyckel, men det innebär att alla dina befintliga iCal-feeds slutar fungera.

" #: etc/initialdata:215 msgid "A blank template" msgstr "En tom mall" #: share/html/Admin/Users/Modify.html:350 msgid "A password was not set, so user won't be able to login." msgstr "Det har inte satts något lösenord, så användare kan inte logga in." #: lib/RT/ACE.pm:169 msgid "ACE not found" msgstr "ACE ej funnen" #: lib/RT/ACE.pm:491 msgid "ACEs can only be created and deleted." msgstr "ACE kan endast skapas och raderas." #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "OCH" #: share/html/Elements/Tabs:482 msgid "About me" msgstr "Om mig" #: share/html/Admin/Users/Modify.html:104 msgid "Access control" msgstr "Behörigheter" #: share/html/Admin/Elements/EditScrip:69 share/html/Elements/RT__Scrip/ColumnMap:76 msgid "Action" msgstr "Åtgärd" #: NOT FOUND IN SOURCE msgid "Action %1 not found" msgstr "Handling %1 ej funnen" #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:655 #. ($args{'ScripAction'}) #. ($value) msgid "Action '%1' not found" msgstr "Åtgärd '%1' kunde inte hittas" #: bin/rt-crontool:228 msgid "Action committed." msgstr "" #: NOT FOUND IN SOURCE msgid "Action committed.\\n" msgstr "Åtgärd genomförd.\\n" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:650 msgid "Action is mandatory argument" msgstr "Åtgärd är obligatoriskt argument" #: bin/rt-crontool:224 msgid "Action prepared..." msgstr "Åtgärd förberedd..." #: share/html/Elements/Tabs:529 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:164 msgid "Active Tickets" msgstr "Aktiva ärenden" #: share/html/Tools/MyDay.html:53 #. ($session{'CurrentUser'}->Name) msgid "Active tickets for %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Add" msgstr "Lägg till" #: share/html/Admin/Elements/EditRights:136 #. (loc($AddPrincipal)) msgid "Add %1" msgstr "Lägg till %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Lägg till Admin.kopia" #: share/html/Ticket/Elements/Bookmark:90 msgid "Add Bookmark" msgstr "Lägg till bokmärke" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Lägg till kopia" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Lägg till kolumner" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Lägg till kriterium" #: share/html/Ticket/Elements/AddAttachments:59 share/html/m/ticket/create:323 share/html/m/ticket/reply:134 msgid "Add More Files" msgstr "Lägg till fler filer" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Lägg till anmälare" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Lägg till värde" #: share/html/Admin/Global/Scrip.html:61 msgid "Add a scrip which will apply to all queues" msgstr "Lägg till ett scrip som kommer att gälla för alla köer" #: NOT FOUND IN SOURCE msgid "Add and Search" msgstr "Lägg till och sök" #: share/html/Search/Bulk.html:125 msgid "Add comments or replies to selected tickets" msgstr "Lägg till kommentarer eller svar på utvalda ärenden" #: share/html/Admin/Elements/SelectNewGroupMembers:66 msgid "Add group" msgstr "Lägg till grupp" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Lägg till medlemmar" #: share/html/Admin/Queues/People.html:83 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Lägg till nya observatörer" #: share/html/Admin/Elements/EditRights:200 #. (loc($AddPrincipal)) msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Lägg till dessa kriterier" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Lägg till dessa kriterier och utför sökning" #: NOT FOUND IN SOURCE msgid "Add these terms to your search" msgstr "Lägg till dessa termer till din sökning" #: share/html/Admin/Elements/SelectNewGroupMembers:49 msgid "Add user" msgstr "Lägg till användare" #: share/html/Search/Bulk.html:172 msgid "Add values" msgstr "Lägg till värden" #: NOT FOUND IN SOURCE msgid "Add, delete and modify custom field values for objects" msgstr "Lägg till, radera och modifiera extrafältvärden för objekt" #: lib/RT/CustomField.pm:208 msgid "Add, modify and delete custom field values for objects" msgstr "" #: lib/RT/Ticket.pm:1166 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Added %1 as a %2 for this ticket" msgstr "" #: lib/RT/Queue.pm:980 #. ($principal->Object->Name, $args{'Type'}) msgid "Added %1 to members of %2 for this queue." msgstr "" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this queue" msgstr "Tillagd principal som en %1 för denna kö" #: NOT FOUND IN SOURCE msgid "Added principal as a %1 for this ticket" msgstr "Tillagd principal som en %1 för detta ärende" #: share/html/Elements/RT__Queue/ColumnMap:70 share/html/Elements/RT__User/ColumnMap:106 msgid "Address" msgstr "Adress" #: share/html/Elements/RT__User/ColumnMap:111 msgid "Address 2" msgstr "Adress 2" #: share/html/Admin/Users/Modify.html:130 share/html/User/Prefs.html:131 msgid "Address1" msgstr "Adress1" #: share/html/Admin/Users/Modify.html:135 share/html/User/Prefs.html:135 msgid "Address2" msgstr "Adress2" #: share/html/Ticket/Create.html:141 share/html/m/ticket/create:289 msgid "Admin Cc" msgstr "Admin.kopia" #: etc/initialdata:292 msgid "Admin Comment" msgstr "Admin.kommentar" #: etc/initialdata:271 msgid "Admin Correspondence" msgstr "Adminbrevväxling" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admin.köer" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Global konfiguration" #: lib/RT/Tickets.pm:151 msgid "AdminCCGroup" msgstr "Grupp för adminkopia" #: lib/RT/ACE.pm:102 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:140 share/html/Elements/RT__Ticket/ColumnMap:183 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowPeople:66 share/html/m/ticket/show:304 msgid "AdminCc" msgstr "Admin.kopia" #: lib/RT/Graph/Tickets.pm:154 msgid "AdminCcs" msgstr "Adminkopia till" #: lib/RT/Class.pm:94 msgid "AdminClass" msgstr "" #: lib/RT/CustomField.pm:206 msgid "AdminCustomField" msgstr "AdminExtrafält" #: lib/RT/CustomField.pm:207 msgid "AdminCustomFieldValues" msgstr "" #: lib/RT/Group.pm:94 msgid "AdminGroup" msgstr "AdminGrupp" #: lib/RT/Group.pm:95 msgid "AdminGroupMembership" msgstr "AdminGruppMedlemskap" #: NOT FOUND IN SOURCE msgid "AdminOwnPersonalGroups" msgstr "AdminEgnaPersonligaGrupper" #: lib/RT/Queue.pm:93 msgid "AdminQueue" msgstr "AdminKö" #: lib/RT/Class.pm:95 msgid "AdminTopics" msgstr "" #: lib/RT/System.pm:81 msgid "AdminUsers" msgstr "AdminAnvändare" #: share/html/Ticket/Elements/EditPeople:76 msgid "Administrative Cc" msgstr "Administrativ kopia" #: lib/RT/Installer.pm:157 msgid "Administrative password" msgstr "Administrativt lösenord" #: share/html/Elements/Tabs:740 msgid "Advanced" msgstr "Avancerad" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Avancerad sökning" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:59 msgid "Aggregator" msgstr "Aggregator" #: etc/initialdata:363 etc/upgrade/3.8.2/content:69 msgid "All Approvals Passed" msgstr "Alla godkännanden har accepterats" #: share/html/Admin/Articles/Classes/Modify.html:75 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Articles/Classes/index.html:76 msgid "All Classes" msgstr "" #: share/html/Elements/Tabs:417 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:110 msgid "All Queues" msgstr "Alla köer" #: share/html/Ticket/Elements/ShowRequestor:166 msgid "All Tickets" msgstr "Alla ärenden" #: share/html/User/Prefs.html:172 msgid "All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below." msgstr "Alla iCal-feeds innehåller en hemlig nyckel för att verifiera din identitet. Om URLen för en av dina iCal-feeds har råkat bli publik kan du få en ny nyckel, men det innebär att alla dina befintliga iCal-feeds slutar fungera." #: share/html/Admin/Queues/index.html:98 msgid "All queues matching search criteria" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Alla ärenden" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: lib/RT/System.pm:87 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:86 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:88 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:724 msgid "Already encrypted" msgstr "Redan krypterad" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Och/eller" #: lib/RT/Report/Tickets.pm:76 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:90 msgid "Applied" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 share/html/Elements/Tabs:347 share/html/Elements/Tabs:379 msgid "Applies to" msgstr "Gäller för" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Utför" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 msgid "Apply globally" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Utför dina ändringar" #: share/html/Elements/Tabs:457 msgid "Approval" msgstr "Godkännande" #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:88 #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) msgid "Approval #%1: %2" msgstr "Godkännande #%1: %2" #: share/html/Approvals/index.html:77 #. ($ticket->Id) msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Godkännande #%1: Anteckningar ej registrerade på grund av systemfel" #: share/html/Approvals/index.html:75 #. ($ticket->Id) msgid "Approval #%1: Notes recorded" msgstr "Godkännande #%1: Anteckningar har registrerats" #: etc/initialdata:349 etc/upgrade/3.8.2/content:55 msgid "Approval Passed" msgstr "Godkännande har accepterats" #: etc/initialdata:390 etc/upgrade/3.8.2/content:96 msgid "Approval Ready for Owner" msgstr "Godkännaden klart för ägare" #: etc/initialdata:377 etc/upgrade/3.8.2/content:83 msgid "Approval Rejected" msgstr "Godkännande avvisat" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Godkänn" #: NOT FOUND IN SOURCE msgid "Approver's notes: %1" msgstr "Godkännares anteckningar: %1" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "apr" #: NOT FOUND IN SOURCE msgid "Apr." msgstr "Apr." #: NOT FOUND IN SOURCE msgid "April" msgstr "april" #: share/html/Articles/Article/Delete.html:56 msgid "Are you sure you want to delete this article?" msgstr "" #: share/html/Articles/Article/Delete.html:97 #. ($ArticleObj->Id) msgid "Article #%1 deleted" msgstr "" #: share/html/Articles/Article/Display.html:84 share/html/SelfService/Article/Display.html:66 #. ($article->Id, $article->Name || loc("(no name)")) msgid "Article #%1: %2" msgstr "" #: lib/RT/URI/fsck_com_article.pm:207 #. ($self->Object->id) msgid "Article %1" msgstr "" #: lib/RT/Article.pm:215 #. ($self->id) msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: lib/RT/Article.pm:323 msgid "Article Deleted" msgstr "" #: share/html/Articles/Article/Display.html:76 share/html/Articles/Article/Elements/ShowHistory:64 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:153 share/html/Elements/Tabs:158 share/html/Elements/Tabs:430 msgid "Articles" msgstr "" #: share/html/Articles/Topics.html:99 #. ($currtopic->Name) msgid "Articles in %1" msgstr "" #: share/html/SelfService/Article/Search.html:64 #. ($Articles_Content) msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Stigande" #: share/html/Elements/SelectSortOrder:58 msgid "Ascending" msgstr "Stigande" #: NOT FOUND IN SOURCE msgid "Assign and remove custom fields" msgstr "Lägg till och radera extrafält" #: lib/RT/Queue.pm:99 msgid "Assign and remove queue custom fields" msgstr "" #: lib/RT/Queue.pm:99 msgid "AssignCustomFields" msgstr "LäggtillExtraFält" #: share/html/Ticket/Elements/AddAttachments:59 msgid "Attach" msgstr "Bifoga" #: share/html/m/ticket/create:320 share/html/m/ticket/reply:131 msgid "Attach file" msgstr "Bifoga fil" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:120 msgid "Attached file" msgstr "Bifogad fil" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Bilaga" #: share/html/Ticket/ShowEmailRecord.html:83 share/html/Ticket/ShowEmailRecord.html:85 share/html/Ticket/ShowEmailRecord.html:88 #. ($Attachment) msgid "Attachment '%1' could not be loaded" msgstr "Bifogad fil '%1' kunde inte läsas in" #: lib/RT/Transaction.pm:558 msgid "Attachment created" msgstr "Bifogad fil skapad" #: lib/RT/Tickets.pm:2412 msgid "Attachment filename" msgstr "Bifogat filnamn" #: share/html/Ticket/Elements/ShowAttachments:49 share/html/m/ticket/show:311 msgid "Attachments" msgstr "Bifogade filer" #: lib/RT/Attachment.pm:717 msgid "Attachments encryption is disabled" msgstr "Kryptering av bilagor är avstängt" #: lib/RT/Attributes.pm:196 msgid "Attribute Deleted" msgstr "Attribut raderat" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "aug" #: NOT FOUND IN SOURCE msgid "Aug." msgstr "Aug." #: NOT FOUND IN SOURCE msgid "August" msgstr "augusti" #: share/html/Admin/Tools/Theme.html:276 #. ($valid_image_types) msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:218 msgid "Autoreply" msgstr "Autosvar" #: etc/initialdata:28 msgid "Autoreply To Requestors" msgstr "Autosvar till anmälare" #: share/html/Widgets/SelectionBox:193 msgid "Available" msgstr "Tillgänglig" #: NOT FOUND IN SOURCE msgid "BCc" msgstr "Kopia till" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Bakåt" #: lib/RT/SharedSetting.pm:150 #. ($id) msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Articles/Article/Display.html:50 share/html/Articles/Article/Edit.html:57 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:274 share/html/Elements/Tabs:307 share/html/Elements/Tabs:327 share/html/Elements/Tabs:344 share/html/Elements/Tabs:374 share/html/Elements/Tabs:512 share/html/Elements/Tabs:548 share/html/Ticket/Create.html:421 share/html/Ticket/Create.html:68 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Grunddata" #: share/html/Ticket/Forward.html:72 msgid "Bcc" msgstr "Hemlig kopia" #: NOT FOUND IN SOURCE msgid "Be sure to save your changes" msgstr "Se till att spara dina ändringar" #: NOT FOUND IN SOURCE msgid "Best Practical Solutions, LLC corporate logo" msgstr "Best Practical Solutions, LLC företagslogo" #: etc/initialdata:214 msgid "Blank" msgstr "Tom" #: share/html/Dashboards/Queries.html:182 msgid "Body" msgstr "Brödtext" #: share/html/Search/Elements/EditFormat:96 msgid "Bold" msgstr "Fetstil" #: share/html/Search/Elements/BuildFormatString:100 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:251 msgid "Bookmark" msgstr "Bokmärke" #: NOT FOUND IN SOURCE msgid "Bookmarkable link" msgstr "Länk som kan sparas som bokmärke" #: share/html/Articles/Article/Search.html:107 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:598 etc/initialdata:623 etc/upgrade/3.7.82/content:3 msgid "Bookmarked Tickets" msgstr "Bokmärkta ärenden" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Bokmärkta ärenden" #: NOT FOUND IN SOURCE msgid "Brief headers" msgstr "Korta rubriker" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:225 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:746 msgid "Bulk Update" msgstr "Massuppdatering" #: NOT FOUND IN SOURCE msgid "Buy Support" msgstr "Köp support" #: NOT FOUND IN SOURCE msgid "By default, RT will use the timezone of your system. This lets you set a global default for the display of dates and times in RT. Your users can choose a different Timezone in their preferences." msgstr "Som förval använder RT ditt systems tidszon. Här kan du ange ett globalt standardvärde för hur datum och tid visas i RT. Dina användare kan välja en annan tidszon i sina inställningar." #: lib/RT/Tickets.pm:150 msgid "CCGroup" msgstr "Kopiegrupp" #: lib/RT/Tickets.pm:147 msgid "CF" msgstr "" #: share/html/Search/Simple.html:87 #. ('cf.Name:value') msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Elements/EditSearches:175 #. ($ARGS{'SavedSearchLoad'}) msgid "Can not load saved search \"%1\"" msgstr "" #: lib/RT/User.pm:1508 msgid "Can not modify system users" msgstr "Kan inte modifiera systemanvändare" #: NOT FOUND IN SOURCE msgid "Can this principal see this queue" msgstr "Kan denna principal se denna kö" #: lib/RT/CustomField.pm:554 msgid "Can't add a custom field value without a name" msgstr "Kan inte lägga till ett extrafältvärde utan ett namn" #: NOT FOUND IN SOURCE msgid "Can't find a collection class for '%1'" msgstr "Kan inte hitta en samlingskategori för '%1'" #: share/html/Search/Elements/EditSearches:313 msgid "Can't find a saved search to work with" msgstr "Kan inte hitta en sparad sökning att arbeta med" #: lib/RT/Link.pm:137 msgid "Can't link a ticket to itself" msgstr "Det går inte att länka ett ärende till sig själv" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: share/html/Widgets/SavedSearch:132 #. (loc($self->{SearchType})) msgid "Can't save %1" msgstr "kan inte spara %1" #: share/html/Search/Elements/EditSearches:317 msgid "Can't save this search" msgstr "Kan inte spara den här sökningen" #: lib/RT/Record.pm:1307 lib/RT/Record.pm:1385 msgid "Can't specifiy both base and target" msgstr "Kan inte specificera både bas och mål" #: lib/RT/Article.pm:397 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:354 share/html/m/ticket/create:148 msgid "Cannot create tickets in a disabled queue." msgstr "Det går inte att skapa ärenden i en avstängd kö." #: NOT FOUND IN SOURCE msgid "Cannot create user: %1" msgstr "Kan inte skapa användare: %1" #: share/html/Admin/CustomFields/Modify.html:121 msgid "Categories are based on" msgstr "Kategorier baseras på" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategori" #: NOT FOUND IN SOURCE msgid "Category unset" msgstr "Kategori ej angiven" #: lib/RT/ACE.pm:101 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:139 share/html/Elements/RT__Ticket/ColumnMap:178 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:75 share/html/Ticket/Create.html:125 share/html/Ticket/Elements/EditPeople:73 share/html/Ticket/Elements/ShowPeople:62 share/html/Ticket/Forward.html:69 share/html/m/ticket/create:280 share/html/m/ticket/show:300 msgid "Cc" msgstr "Kopia" #: lib/RT/Graph/Tickets.pm:154 msgid "Ccs" msgstr "Kopia till" #: share/html/Install/index.html:64 share/html/Search/Results.html:77 msgid "Change" msgstr "Ändra" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/SelfService/Prefs.html:53 msgid "Change password" msgstr "Ändra lösenord" #: share/html/Elements/Tabs:747 msgid "Chart" msgstr "" #: share/html/Search/Chart.html:122 msgid "Chart Properties" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Markera alla" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontrollera anslutning till databasen" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "" #: share/html/Ticket/Elements/AddAttachments:51 share/html/m/ticket/create:310 share/html/m/ticket/reply:122 msgid "Check box to delete" msgstr "Markera box för radering" #: share/html/Admin/Elements/SelectRights:66 msgid "Check box to revoke right" msgstr "Markera box för indragande av rättigheter" #: share/html/Elements/EditLinks:150 share/html/Elements/EditLinks:82 share/html/Elements/ShowLinks:105 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:257 share/html/Ticket/Elements/BulkLinks:143 share/html/Ticket/Elements/BulkLinks:84 share/html/m/ticket/create:398 share/html/m/ticket/show:462 msgid "Children" msgstr "Barn" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Välj databasmotor" #: NOT FOUND IN SOURCE msgid "Choose a date" msgstr "Välj ett datum" #: share/html/Articles/Elements/BeforeMessageBox:97 #. ($QueueObj->Name) msgid "Choose from Topics for %1" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:140 share/html/Elements/RT__User/ColumnMap:116 share/html/User/Prefs.html:139 msgid "City" msgstr "Ort" #: share/html/Articles/Article/Display.html:51 share/html/Articles/Article/Elements/EditBasics:57 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:75 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 #. ($msg) msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:70 msgid "Class id" msgstr "" #: lib/RT/Class.pm:408 msgid "Class is already applied Globally" msgstr "" #: lib/RT/Class.pm:403 #. ($queue->Name) msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:159 share/html/Elements/Tabs:370 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:73 share/html/Widgets/SelectionBox:221 msgid "Clear" msgstr "Rensa" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Välj bort alla" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: NOT FOUND IN SOURCE msgid "Close window" msgstr "Stäng fönster" #: share/html/Ticket/Elements/ShowDates:75 share/html/m/ticket/show:404 msgid "Closed" msgstr "Stängt" #: share/html/Elements/Tabs:860 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Stängda ärenden" #: lib/RT/CustomField.pm:140 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Välj eller skriv in flera värden" #: lib/RT/CustomField.pm:141 msgid "Combobox: Select or enter one value" msgstr "Combobox: Välj eller skriv in ett värde" #: lib/RT/CustomField.pm:142 msgid "Combobox: Select or enter up to %1 values" msgstr "Combobox: Välj eller skriv in upp till %1 värden" #: share/html/Elements/Tabs:574 share/html/Search/Elements/EditFormat:74 share/html/Ticket/Elements/ShowTransaction:212 msgid "Comment" msgstr "Kommentar" #: share/html/Admin/Queues/Modify.html:83 msgid "Comment Address" msgstr "Kommentarsadress" #: lib/RT/Installer.pm:172 msgid "Comment address" msgstr "Kommentarsadress" #: lib/RT/Queue.pm:114 msgid "Comment on tickets" msgstr "Kommentar på ärenden" #: NOT FOUND IN SOURCE msgid "CommentAddress" msgstr "Kommentarsadress" #: lib/RT/Queue.pm:114 msgid "CommentOnTicket" msgstr "KommentarPåÄrende" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentarer" #: share/html/Search/Bulk.html:129 share/html/Ticket/ModifyAll.html:92 share/html/Ticket/Update.html:76 share/html/m/ticket/reply:89 msgid "Comments (Not sent to requestors)" msgstr "Kommentarer (Ej skickade till anmälare)" #: NOT FOUND IN SOURCE msgid "Comments (not sent to requestors)" msgstr "Kommentarer (ej skickade till anmälare)" #: share/html/Admin/Users/Modify.html:210 share/html/Ticket/Elements/ShowRequestor:83 msgid "Comments about this user" msgstr "Kommentarer om denna användare" #: lib/RT/Transaction.pm:714 msgid "Comments added" msgstr "Kommentarer tillagda" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Commit tömt" #: share/html/Admin/Elements/EditScrip:63 share/html/Elements/RT__Scrip/ColumnMap:72 msgid "Condition" msgstr "Villkor" #: lib/RT/Scrip.pm:169 lib/RT/Scrip.pm:676 #. ($args{'ScripCondition'}) #. ($value) msgid "Condition '%1' not found" msgstr "Villkor '%1' kunde inte hittas" #: lib/RT/Scrip.pm:165 lib/RT/Scrip.pm:669 msgid "Condition is mandatory argument" msgstr "Villkor är obligatorisk parameter" #: bin/rt-crontool:208 msgid "Condition matches..." msgstr "Villkor matchar..." #: NOT FOUND IN SOURCE msgid "Condition not found" msgstr "Villkor hittades ej" #: share/html/Elements/RT__Scrip/ColumnMap:84 msgid "Condition, Action and Template" msgstr "Villkor, Handling och Mall" #: share/html/Install/index.html:107 #. ($file) msgid "Config file %1 is locked" msgstr "Konfigurationsfilen %1 är låst" #: share/html/Elements/Tabs:64 msgid "Configuration" msgstr "Konfiguration" #: share/html/Admin/Queues/Modify.html:184 #. ($QueueObj->Name) msgid "Configuration for queue %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Confirm" msgstr "Bekräfta" #: share/html/Install/DatabaseDetails.html:141 msgid "Connection succeeded" msgstr "Anslutning lyckades" #: lib/RT/Tickets.pm:133 share/html/Admin/Elements/ModifyTemplate:65 share/html/Articles/Article/Display.html:53 share/html/Articles/Article/Edit.html:68 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:74 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:513 share/html/Ticket/ModifyAll.html:113 msgid "Content" msgstr "Innehåll" #: lib/RT/ObjectCustomFieldValue.pm:99 msgid "Content is an invalid IP address" msgstr "" #: lib/RT/ObjectCustomFieldValue.pm:113 msgid "Content is an invalid IP address range" msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Innehållstyp" #: lib/RT/Tickets.pm:134 msgid "ContentType" msgstr "" #: NOT FOUND IN SOURCE msgid "Copy" msgstr "Kopia" #: lib/RT/Installer.pm:180 msgid "Correspond address" msgstr "Brevväxlingsadress" #: NOT FOUND IN SOURCE msgid "CorrespondAddress" msgstr "CorrespondAddress" #: etc/initialdata:283 msgid "Correspondence" msgstr "Brevväxling" #: lib/RT/Transaction.pm:710 msgid "Correspondence added" msgstr "Brevväxling" #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. " msgstr "Går ej att lägga till nytt extrafältvärde. " #: NOT FOUND IN SOURCE msgid "Could not add new custom field value. %1 " msgstr "Går ej att lägga till nytt extrafältvärde. %1 " #: lib/RT/Record.pm:1747 lib/RT/Record.pm:1813 #. ($msg) #. ($value_msg) msgid "Could not add new custom field value: %1" msgstr "Kunde inte lägga till nytt extrafältsvärde: %1" #: NOT FOUND IN SOURCE msgid "Could not change owner. " msgstr "Går ej att byta ägare. " #: lib/RT/Ticket.pm:3001 lib/RT/Ticket.pm:3009 lib/RT/Ticket.pm:3026 #. ($add_msg) #. ($del_msg) #. ($msg) msgid "Could not change owner: %1" msgstr "Kunde inte ändra ägare: %1" #: NOT FOUND IN SOURCE msgid "Could not create CustomField" msgstr "Går ej att skapa ExtraFält" #: share/html/Admin/CustomFields/Modify.html:179 share/html/Admin/Elements/EditCustomField:115 #. ($msg) msgid "Could not create CustomField: %1" msgstr "Går ej att skapa ExtraFält: %1" #: lib/RT/Group.pm:450 lib/RT/Group.pm:457 msgid "Could not create group" msgstr "Går ej att skapa grupp" #: share/html/Articles/Article/Search.html:197 #. ($msg) msgid "Could not create search: %1" msgstr "" #: share/html/Admin/Global/Template.html:84 share/html/Admin/Queues/Template.html:83 #. ($msg) msgid "Could not create template: %1" msgstr "Går ej att skapa mall: %1" #: lib/RT/Ticket.pm:279 lib/RT/Ticket.pm:836 msgid "Could not create ticket. Queue not set" msgstr "Går ej att skapa ärende. Kö ej satt" #: lib/RT/User.pm:187 lib/RT/User.pm:201 lib/RT/User.pm:210 lib/RT/User.pm:219 lib/RT/User.pm:228 lib/RT/User.pm:242 lib/RT/User.pm:252 lib/RT/User.pm:445 msgid "Could not create user" msgstr "Går ej att skapa användare" #: share/html/Articles/Article/Search.html:237 #. ($searchname, $msg) msgid "Could not delete search %1: %2" msgstr "" #: lib/RT/Queue.pm:957 lib/RT/Ticket.pm:1131 msgid "Could not find or create that user" msgstr "Går ej att hitta eller skapa denna användare" #: lib/RT/Queue.pm:1032 lib/RT/Ticket.pm:1213 msgid "Could not find that principal" msgstr "Går ej att hitta denna principal" #: lib/RT/SharedSetting.pm:242 #. ($self->ObjectName) msgid "Could not load %1 attribute" msgstr "Kunde inte läsa in attribut till %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #: share/html/Admin/CustomFields/Objects.html:109 #. ($id) msgid "Could not load CustomField %1" msgstr "Går ej att läsa in ExtraFält %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Går ej att läsa in grupp" #: lib/RT/SharedSetting.pm:126 #. ($privacy) msgid "Could not load object for %1" msgstr "Går ej att läsa in objekt för %1" #: NOT FOUND IN SOURCE msgid "Could not load search attribute" msgstr "Går ej att läsa in sökattribut" #: lib/RT/Queue.pm:978 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not make %1 a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1154 #. ($principal->Object->Name, $self->loc($args{'Type'})) msgid "Could not make %1 a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this queue" msgstr "Går ej att göra denna principal %1 för denna kö" #: NOT FOUND IN SOURCE msgid "Could not make that principal a %1 for this ticket" msgstr "Går ej att göra denna principal %1 för detta ärende" #: lib/RT/Queue.pm:1060 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this queue" msgstr "" #: lib/RT/Ticket.pm:1280 #. ($principal->Object->Name, $args{'Type'}) msgid "Could not remove %1 as a %2 for this ticket" msgstr "" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this queue" msgstr "Går ej att flytta denna principal som %1 för denna kö" #: NOT FOUND IN SOURCE msgid "Could not remove that principal as a %1 for this ticket" msgstr "Kunde inte ta bort den principalen som %1 för detta ärende" #: lib/RT/User.pm:139 msgid "Could not set user info" msgstr "Kunde ej ange användarinfo" #: lib/RT/Transaction.pm:163 msgid "Couldn't add attachment" msgstr "Kunde ej lägga till bilaga" #: lib/RT/Group.pm:949 msgid "Couldn't add member to group" msgstr "Går ej att lägga till medlem till grupp" #: lib/RT/CustomField.pm:1383 msgid "Couldn't apply custom field to an object as it's global already" msgstr "" #: lib/RT/Scrip.pm:637 #. ($method, $code, $error) msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #: lib/RT/Template.pm:721 #. ($fi_text, $error) msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #: lib/RT/Record.pm:1823 lib/RT/Record.pm:1873 #. ($Msg) #. ($msg) msgid "Couldn't create a transaction: %1" msgstr "Går ej att skapa transaktion: %1" #: NOT FOUND IN SOURCE msgid "Couldn't create record" msgstr "Kunde inte skapa post" #: lib/RT/CustomField.pm:1513 #. ($msg) msgid "Couldn't create record: %1" msgstr "" #: share/html/Dashboards/Modify.html:154 #. ($id, $msg) msgid "Couldn't delete dashboard %1: %2" msgstr "Kunde inte ta bort dashboard %1: %2" #: lib/RT/Record.pm:973 msgid "Couldn't find row" msgstr "Går ej att hitta rad" #: bin/rt-crontool:179 msgid "Couldn't find suitable transaction, skipping" msgstr "Kunde inte hitta en lämplig transaktion, hoppar över" #: lib/RT/Group.pm:923 msgid "Couldn't find that principal" msgstr "Går ej att hitta denna principal" #: lib/RT/CustomField.pm:582 msgid "Couldn't find that value" msgstr "Går ej att hitta detta värde" #: NOT FOUND IN SOURCE msgid "Couldn't load %1 from the users database.\\n" msgstr "Går ej att läsa in %1 från användarens databas.\\n" #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 #. ($id) msgid "Couldn't load Class %1" msgstr "Går ej att läsa in klass %1" #: lib/RT/CustomFieldValue.pm:143 lib/RT/CustomFieldValue.pm:86 #. ($cf_id) msgid "Couldn't load Custom Field #%1" msgstr "Kunde inte läsa in extrafält #%1" #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 #. ($cf_id) msgid "Couldn't load CustomField #%1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:66 #. ($id) msgid "Couldn't load CustomField %1" msgstr "Går ej att läsa in ExtraFält %1" #: lib/RT/Ticket.pm:1730 lib/RT/Ticket.pm:1780 #. ($self->Id) msgid "Couldn't load copy of ticket #%1." msgstr "Går ej att läsa in kopia av ärende #%1." #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:83 share/html/Dashboards/Render.html:99 share/html/Dashboards/Subscription.html:198 #. ($id, $msg) msgid "Couldn't load dashboard %1: %2" msgstr "Kunde inte läsa in dashboard %1: %2" #: NOT FOUND IN SOURCE msgid "Couldn't load dashboard %1: %2." msgstr "Kunde inte läsa in dashboard %1: %2." #: share/html/Admin/Users/Memberships.html:100 share/html/Admin/Users/Memberships.html:110 #. ($gid) msgid "Couldn't load group #%1" msgstr "Kunde inte läsa in grupp #%1" #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 #. ($id) msgid "Couldn't load group %1" msgstr "Går ej att läsa in grupp %1" #: lib/RT/Link.pm:212 msgid "Couldn't load link" msgstr "Går ej att läsa in länk" #: lib/RT/Link.pm:185 #. ($msg) msgid "Couldn't load link: %1" msgstr "" #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Users/CustomFields.html:56 #. ($id) msgid "Couldn't load object %1" msgstr "Går ej att läsa in objekt %1" #: lib/RT/Ticket.pm:453 #. ($msg) msgid "Couldn't load or create user: %1" msgstr "Kunde inte läsa in eller skapa användare: %1" #: share/html/Admin/Queues/People.html:132 #. ($id) msgid "Couldn't load queue" msgstr "Går ej att läsa in kö" #: share/html/Admin/Elements/EditScrips:86 #. ($id) msgid "Couldn't load queue #%1" msgstr "Kunde inte läsa in kö #%1" #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 #. ($id) msgid "Couldn't load queue %1" msgstr "Går ej att läsa in kö %1" #: share/html/Admin/Queues/Modify.html:179 #. ($Name) msgid "Couldn't load queue '%1'" msgstr "Kunde inte läsa in kö '%1'" #: share/html/Admin/Elements/EditScrip:143 share/html/Admin/Elements/EditScrip:190 #. ($id) msgid "Couldn't load scrip #%1" msgstr "Går ej att läsa in scrip #%1" #: share/html/Admin/Elements/EditTemplates:105 #. ($id) msgid "Couldn't load template #%1" msgstr "Kunde inte läsa in mall #%1" #: lib/RT/Interface/Web.pm:2292 msgid "Couldn't load the specified principal" msgstr "" #: lib/RT/Action/CreateTickets.pm:448 share/html/SelfService/Display.html:132 #. ($id) msgid "Couldn't load ticket '%1'" msgstr "Går ej att läsa in ärende '%1'" #: lib/RT/Article.pm:520 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #: share/html/Ticket/Forward.html:91 share/html/Ticket/GnuPG.html:71 #. ($QuoteTransaction) #. ($id) msgid "Couldn't load transaction #%1" msgstr "Kunde inte läsa in transaktion #%1" #: share/html/User/Prefs.html:215 msgid "Couldn't load user" msgstr "Kunde inte läsa in användare" #: share/html/Admin/Users/GnuPG.html:89 share/html/User/Prefs.html:211 #. ($id) msgid "Couldn't load user #%1" msgstr "Kunde inte läsa in användare #%1" #: share/html/User/Prefs.html:209 #. ($id, $Name) msgid "Couldn't load user #%1 or user '%2'" msgstr "Kunde inte läsa in användare #%1 eller användare '%2'" #: share/html/User/Prefs.html:213 #. ($Name) msgid "Couldn't load user '%1'" msgstr "Kunde inte läsa in användare '%1'" #: lib/RT/Link.pm:174 #. ($args{Base}) msgid "Couldn't parse Base URI: %1" msgstr "" #: lib/RT/Link.pm:178 #. ($args{Target}) msgid "Couldn't parse Target URI: %1" msgstr "" #: lib/RT/Ticket.pm:1058 #. ($args{'Email'}) msgid "Couldn't parse address from '%1' string" msgstr "Kunde inte extrahera adress från strängen '%1'" #: lib/RT/Attachment.pm:800 #. ($msg) msgid "Couldn't replace content with decrypted data: %1" msgstr "Kunde inte ersätta innehåll med avkrypterad data: %1" #: lib/RT/Attachment.pm:765 #. ($msg) msgid "Couldn't replace content with encrypted data: %1" msgstr "Kunde inte ersätta innehåll med krypterad data: %1" #: lib/RT/Article.pm:403 #. ($args{'Target'} || $args{'Base'}) msgid "Couldn't resolve '%1' into a Link." msgstr "" #: lib/RT/Ticket.pm:2585 #. ($args{'URI'}) msgid "Couldn't resolve '%1' into a URI." msgstr "Kunde inte omvandla '%1' till en URI." #: lib/RT/Link.pm:100 #. ($args{'Base'}) msgid "Couldn't resolve base '%1' into a URI." msgstr "Kunde inte översätta basen '%1' till en URI." #: lib/RT/Link.pm:107 #. ($args{'Target'}) msgid "Couldn't resolve target '%1' into a URI." msgstr "Kunde inte översätta målet '%1' till en URI." #: lib/RT/Interface/Email.pm:732 lib/RT/Interface/Email.pm:795 msgid "Couldn't send email" msgstr "Kunde inte skicka epost" #: lib/RT/Ticket.pm:558 #. ($type, $msg) msgid "Couldn't set %1 watcher: %2" msgstr "Kunde inte ange observatör för %1: %2" #: lib/RT/User.pm:1657 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1641 msgid "Couldn't unset private key" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:131 share/html/User/Prefs.html:151 msgid "Country" msgstr "Land" #: share/html/Admin/Articles/Classes/Modify.html:97 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/Elements/CreateUserCalled:49 share/html/Admin/Elements/EditCustomField:86 share/html/Admin/Elements/EditScrip:150 share/html/Admin/Global/Template.html:78 share/html/Admin/Groups/Modify.html:92 share/html/Admin/Queues/Modify.html:156 share/html/Admin/Queues/Template.html:111 share/html/Admin/Users/Modify.html:225 share/html/Articles/Article/Edit.html:102 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:77 share/html/Elements/ShowLinks:107 share/html/Elements/ShowLinks:115 share/html/Elements/ShowLinks:129 share/html/Elements/ShowLinks:52 share/html/Elements/ShowLinks:85 share/html/Elements/ShowLinks:99 share/html/Elements/Tabs:112 share/html/Elements/Tabs:120 share/html/Elements/Tabs:166 share/html/Elements/Tabs:181 share/html/Elements/Tabs:260 share/html/Elements/Tabs:279 share/html/Elements/Tabs:283 share/html/Elements/Tabs:360 share/html/Elements/Tabs:372 share/html/Elements/Tabs:383 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:192 share/html/Ticket/Create.html:270 share/html/m/ticket/create:238 share/html/m/ticket/create:407 msgid "Create" msgstr "Skapa" #: etc/initialdata:91 msgid "Create Tickets" msgstr "Skapa Ärenden" #: share/html/Admin/Articles/Classes/Modify.html:109 share/html/Admin/Articles/Classes/Modify.html:129 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 share/html/Admin/CustomFields/Modify.html:180 share/html/Admin/Elements/EditCustomField:98 msgid "Create a CustomField" msgstr "Skapa ett ExtraFält" #: share/html/Admin/Queues/CustomField.html:65 #. ($QueueObj->Name()) msgid "Create a CustomField for queue %1" msgstr "Skapa ett ExtraFält för kö %1" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Skapa ny dashboard" #: share/html/Admin/Groups/Modify.html:104 share/html/Admin/Groups/Modify.html:124 msgid "Create a new group" msgstr "Skapa en ny grupp" #: NOT FOUND IN SOURCE msgid "Create a new personal group" msgstr "Skapa en ny personlig grupp" #: share/html/Admin/Queues/Template.html:110 #. ($QueueObj->Name) msgid "Create a new template for queue %1" msgstr "" #: share/html/Ticket/Create.html:347 msgid "Create a new ticket" msgstr "Skapa ett nytt ärende" #: share/html/Admin/Users/Modify.html:239 share/html/Admin/Users/Modify.html:295 msgid "Create a new user" msgstr "Skapa en ny användare" #: share/html/Admin/Queues/Modify.html:229 msgid "Create a queue" msgstr "Skapa en kö" #: share/html/Admin/Queues/Scrip.html:68 #. ($QueueObj->Name) msgid "Create a scrip for queue %1" msgstr "Skapa en scrip för kö %1" #: share/html/Admin/Global/Template.html:77 msgid "Create a template" msgstr "Skapa en mall" #: share/html/SelfService/Create.html:48 share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:141 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Skapa ett ärende" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 share/html/Articles/Article/PreCreate.html:49 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:89 msgid "Create articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Create dashboards for this group" msgstr "Skapa dashboard för denna grupp" #: lib/RT/Group.pm:101 msgid "Create group dashboards" msgstr "" #: etc/initialdata:93 msgid "Create new tickets based on this scrip's template" msgstr "Skapa nya ärenden baserade på denna scrips mall" #: lib/RT/Dashboard.pm:87 msgid "Create personal dashboards" msgstr "Skapa personliga dashboard" #: lib/RT/Dashboard.pm:82 msgid "Create system dashboards" msgstr "Skapa systemdashboard" #: share/html/SelfService/Create.html:104 msgid "Create ticket" msgstr "Skapa ärende" #: lib/RT/Queue.pm:112 msgid "Create tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "Create tickets in this queue" msgstr "Skapa ärenden i denna kö" #: share/html/Elements/Tabs:451 msgid "Create tickets offline" msgstr "Skapa ärenden nedkopplad" #: NOT FOUND IN SOURCE msgid "Create, delete and modify custom fields" msgstr "Skapa, radera och modifiera extrafält" #: NOT FOUND IN SOURCE msgid "Create, delete and modify queues" msgstr "Skapa, radera och modifiera köer" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of any user's personal groups" msgstr "Skapa, ta bort eller ändra medlemmarna för vilken som helst användares personliga grupp" #: NOT FOUND IN SOURCE msgid "Create, delete and modify the members of personal groups" msgstr "Skapa, radera och modifiera medlemmar av personliga grupper" #: NOT FOUND IN SOURCE msgid "Create, delete and modify users" msgstr "Skapa, radera och modifiera användare" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:206 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:207 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/Queue.pm:93 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:97 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:81 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Class.pm:89 msgid "CreateArticle" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "CreateDashboard" msgstr "" #: lib/RT/Group.pm:101 msgid "CreateGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:87 msgid "CreateOwnDashboard" msgstr "" #: lib/RT/System.pm:87 msgid "CreateSavedSearch" msgstr "SkapaSparadSök" #: lib/RT/Queue.pm:112 msgid "CreateTicket" msgstr "SkapaÄrende" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:930 lib/RT/Tickets.pm:131 share/html/Admin/Elements/ShowKeyInfo:60 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Elements/ColumnMap:66 share/html/Elements/ColumnMap:71 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:379 msgid "Created" msgstr "Skapat" #: share/html/Elements/ColumnMap:76 msgid "Created By" msgstr "Skapad av" #: share/html/Admin/CustomFields/Modify.html:184 share/html/Admin/Elements/EditCustomField:119 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Created CustomField %1" msgstr "Skapat ExtraFält %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: NOT FOUND IN SOURCE msgid "Created in a date range" msgstr "Skapad i ett datumintervall" #: share/html/Articles/Article/Search.html:193 #. ($search->Name) msgid "Created search %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Created tickets in period, grouped by status" msgstr "Skapade ärenden under perioden, grupperade efter status" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:103 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Skapare" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografi" #: share/html/Elements/EditLinks:51 share/html/Ticket/Elements/BulkLinks:51 msgid "Current Links" msgstr "Nuvarande relationer" #: share/html/Admin/Elements/EditScrips:53 msgid "Current Scrips" msgstr "Nuvarande scrips" #: share/html/Elements/Tabs:731 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Nuvarande medlemmar" #: share/html/Admin/Elements/SelectRights:62 msgid "Current rights" msgstr "Nuvarande rättigheter" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Nuvarande sökning" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:68 msgid "Current watchers" msgstr "Nuvarande observatörer" #: share/html/Admin/Users/Modify.html:190 share/html/Elements/Tabs:123 share/html/Elements/Tabs:173 share/html/Elements/Tabs:243 share/html/Elements/Tabs:376 share/html/Elements/Tabs:92 share/html/Ticket/Elements/ShowSummary:56 share/html/User/Prefs.html:157 share/html/m/ticket/show:257 msgid "Custom Fields" msgstr "Extrafält" #: share/html/Admin/CustomFields/index.html:53 #. ($tmp->FriendlyLookupType( $Type )) msgid "Custom Fields for %1" msgstr "Extrafält för %1" #: share/html/Admin/Queues/CustomFields.html:61 #. ($Object->Name) msgid "Custom Fields for queue %1" msgstr "" #: share/html/Admin/Elements/EditScrip:117 msgid "Custom action cleanup code" msgstr "Specialanpassad handling utrensningskod" #: share/html/Admin/Elements/EditScrip:110 msgid "Custom action preparation code" msgstr "Specialanpassad handling förberedelsekod" #: share/html/Admin/Elements/EditScrip:103 msgid "Custom condition" msgstr "Specialanpassat villkor" #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) msgid "Custom field #%1 is not applied to this object" msgstr "" #: lib/RT/Tickets.pm:2838 #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) msgid "Custom field %1 %2 %3" msgstr "Extrafält %1 %2 %3" #: lib/RT/Record.pm:1665 #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) msgid "Custom field %1 does not apply to this object" msgstr "Extrafält %1 kan inte användas för det här objektet" #: lib/RT/Tickets.pm:2832 #. ($CF->Name) msgid "Custom field %1 has a value." msgstr "Extrafält %1 har ett värde." #: lib/RT/Tickets.pm:2828 #. ($CF->Name) msgid "Custom field %1 has no value." msgstr "Extrafält %1 har inget värde." #: lib/RT/Record.pm:1654 lib/RT/Record.pm:1854 #. ($args{'Field'}) msgid "Custom field %1 not found" msgstr "Extrafält %1 ej funnet" #: lib/RT/Report/Tickets.pm:104 lib/RT/Report/Tickets.pm:116 lib/RT/Report/Tickets.pm:119 #. ($CustomField->Name) #. ($cf) #. ($obj->Name) msgid "Custom field '%1'" msgstr "Extrafält '%1'" #: lib/RT/CustomField.pm:1378 msgid "Custom field is already applied to the object" msgstr "" #: lib/RT/CustomField.pm:1622 #. ($args{'Content'}, $self->Name) msgid "Custom field value %1 could not be found for custom field %2" msgstr "Extrafältvärde %1 går ej att hitta för extrafält %2" #: lib/RT/CustomField.pm:590 msgid "Custom field value could not be deleted" msgstr "Extrafältvärde går ej att radera" #: lib/RT/CustomField.pm:1634 msgid "Custom field value could not be found" msgstr "Extrafält går ej att hitta" #: lib/RT/CustomField.pm:1636 lib/RT/CustomField.pm:592 msgid "Custom field value deleted" msgstr "Extrafältvärde raderat" #: lib/RT/Tickets.pm:146 lib/RT/Transaction.pm:718 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ExtraFält" #: lib/RT/Tickets.pm:145 msgid "CustomFieldValue" msgstr "" #: share/html/Prefs/MyRT.html:84 share/html/Prefs/Quicksearch.html:69 share/html/Prefs/Search.html:73 msgid "Customize" msgstr "Anpassa" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Anpassa e-postkonfigurationen" #: share/html/Elements/Tabs:218 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:328 lib/RT/Report/Tickets.pm:76 msgid "Daily" msgstr "" #: lib/RT/Config.pm:477 msgid "Daily digest" msgstr "Dagligt sammandrag" #: share/html/Dashboards/Queries.html:109 share/html/Dashboards/Queries.html:109 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Instrumentpanel" #: share/html/Dashboards/Modify.html:110 #. ($msg) msgid "Dashboard could not be created: %1" msgstr "Dashboard kunde inte skapas: %1" #: share/html/Dashboards/Modify.html:143 share/html/Dashboards/Queries.html:263 #. ($msg) msgid "Dashboard could not be updated: %1" msgstr "Dashboard kunde inte uppdateras: %1" #: share/html/Dashboards/Modify.html:140 share/html/Dashboards/Queries.html:260 msgid "Dashboard updated" msgstr "Dashboard har uppdaterats" #: etc/RT_Config.pm:1124 etc/initialdata:642 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Dashboard" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Databasvärd" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Databasnamn" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Databaslösenord för RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Databasport" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Databastyp" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Databasanvändarnamn för RT" #: lib/RT/Config.pm:426 msgid "Date format" msgstr "Datumformat" #: NOT FOUND IN SOURCE msgid "DateTime module missing" msgstr "DateTime-modulen saknas" #: NOT FOUND IN SOURCE msgid "DateTime::Locale module missing" msgstr "DateTime::Locale-modulen saknas" #: share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Elements/Tabs:557 share/html/SelfService/Display.html:66 share/html/Ticket/Create.html:234 share/html/Ticket/Elements/ShowSummary:86 share/html/Ticket/ModifyAll.html:66 share/html/m/ticket/create:376 share/html/m/ticket/show:373 msgid "Dates" msgstr "Datum" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dec" #: NOT FOUND IN SOURCE msgid "Dec." msgstr "Dec." #: share/html/Ticket/GnuPG.html:58 msgid "Decrypt" msgstr "Dekryptera" #: etc/initialdata:219 msgid "Default Autoresponse template" msgstr "Förvald mall för autosvar" #: share/html/Tools/Offline.html:60 msgid "Default Queue" msgstr "Förvald kö" #: share/html/Tools/Offline.html:69 msgid "Default Requestor" msgstr "Förvald anmälare" #: etc/initialdata:293 msgid "Default admin comment template" msgstr "Förvald mall för adminkommentarer" #: etc/initialdata:272 msgid "Default admin correspondence template" msgstr "Förvald mall för adminbrevväxling" #: etc/initialdata:284 msgid "Default correspondence template" msgstr "Förvald brevväxlingsmall" #: lib/RT/Config.pm:144 msgid "Default queue" msgstr "Förvald kö" #: etc/initialdata:250 msgid "Default transaction template" msgstr "Förvald transaktionsmall" #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 #. ($DefaultValue) msgid "Default: %1" msgstr "Förval: %1" #: lib/RT/Transaction.pm:696 #. ($type, $self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $self->loc("(no value)") ), "'" . $self->NewValue . "'") msgid "Default: %1/%2 changed from %3 to %4" msgstr "Förval: %1/%2 ändrat från %3 till %4" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: NOT FOUND IN SOURCE msgid "Delegate rights" msgstr "Överlåt rättigheter" #: NOT FOUND IN SOURCE msgid "Delegate specific rights which have been granted to you." msgstr "Överlåt specifika rättigheter som har tilldelats dig." #: NOT FOUND IN SOURCE msgid "DelegateRights" msgstr "ÖverlåtRättigheter" #: NOT FOUND IN SOURCE msgid "Delegation" msgstr "Överlåtelse" #: etc/RT_Config.pm:2449 etc/RT_Config.pm:2525 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:799 share/html/Elements/Tabs:824 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219 msgid "Delete" msgstr "Radera" #: share/html/Admin/Elements/EditTemplates:72 msgid "Delete Template" msgstr "Radera Mall" #: share/html/Articles/Article/Delete.html:101 #. ($ArticleObj->Id) msgid "Delete article #%1" msgstr "" #: lib/RT/Class.pm:98 msgid "Delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Delete dashboards for this group" msgstr "Ta bort dashboard för denna grupp" #: lib/RT/SharedSetting.pm:285 #. ($msg) msgid "Delete failed: %1" msgstr "Radering misslyckades: %1" #: lib/RT/Group.pm:103 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:3222 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "Delete personal dashboards" msgstr "Ta bort personliga dashboard" #: share/html/Admin/Elements/EditScrips:72 msgid "Delete selected scrips" msgstr "Radera utvalda scrips" #: lib/RT/Dashboard.pm:84 msgid "Delete system dashboards" msgstr "Ta bort systemdashboard" #: lib/RT/Queue.pm:117 msgid "Delete tickets" msgstr "Radera ärenden" #: share/html/Search/Bulk.html:173 msgid "Delete values" msgstr "Radera värden" #: lib/RT/Class.pm:98 msgid "DeleteArticle" msgstr "" #: lib/RT/Dashboard.pm:84 msgid "DeleteDashboard" msgstr "" #: lib/RT/Group.pm:103 msgid "DeleteGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:89 msgid "DeleteOwnDashboard" msgstr "" #: lib/RT/Queue.pm:117 msgid "DeleteTicket" msgstr "RaderaÄrende" #: lib/RT/SharedSetting.pm:283 #. ($self->ObjectName) msgid "Deleted %1" msgstr "Tog bort %1" #: NOT FOUND IN SOURCE msgid "Deleted dashboard %1" msgstr "Tog bort dashboard %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Tog bort förfrågningar" #: share/html/Search/Elements/EditSearches:193 msgid "Deleted saved search" msgstr "Tog bort sparad sökning" #: NOT FOUND IN SOURCE msgid "Deleted search" msgstr "Radera sökning" #: share/html/Articles/Article/Search.html:226 #. ($searchname) msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:452 msgid "Deleting this object would break referential integrity" msgstr "Radering av detta objekt bryter referentiell integritet" #: lib/RT/User.pm:456 msgid "Deleting this object would violate referential integrity" msgstr "Radering av detta objekt strider mot referentiell integritet" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Neka" #: share/html/Elements/EditLinks:142 share/html/Elements/EditLinks:64 share/html/Elements/ShowLinks:83 share/html/Ticket/Create.html:255 share/html/Ticket/Elements/BulkLinks:135 share/html/Ticket/Elements/BulkLinks:64 share/html/Ticket/Elements/ShowDependencies:56 share/html/m/ticket/create:396 share/html/m/ticket/show:448 msgid "Depended on by" msgstr "Förutsätts av" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:123 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependedOnBy" msgstr "FörutsättsAv" #: lib/RT/Transaction.pm:801 #. ($value) msgid "Dependency by %1 added" msgstr "Lagt till att förutsätts av %1" #: lib/RT/Transaction.pm:840 #. ($value) msgid "Dependency by %1 deleted" msgstr "Tagit bort att förutsätts av %1" #: lib/RT/Transaction.pm:798 #. ($value) msgid "Dependency on %1 added" msgstr "Lagt till att förutsätter %1" #: lib/RT/Transaction.pm:837 #. ($value) msgid "Dependency on %1 deleted" msgstr "Tagit bort att förutsätter %1" #: lib/RT/Tickets.pm:122 msgid "DependentOn" msgstr "FörutsättsAv" #: share/html/Elements/EditLinks:138 share/html/Elements/EditLinks:55 share/html/Elements/SelectLinkType:50 share/html/Elements/ShowLinks:50 share/html/Ticket/Create.html:254 share/html/Ticket/Elements/BulkLinks:131 share/html/Ticket/Elements/BulkLinks:54 share/html/Ticket/Elements/ShowDependencies:48 share/html/m/ticket/create:395 share/html/m/ticket/show:418 msgid "Depends on" msgstr "Förutsätter" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "DependsOn" msgstr "Förutsätter" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Fallande" #: share/html/Elements/SelectSortOrder:58 msgid "Descending" msgstr "Fallande" #: share/html/SelfService/Create.html:99 share/html/Ticket/Create.html:173 share/html/m/ticket/create:234 msgid "Describe the issue below" msgstr "Beskriv problemet nedan" #: share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/CustomFields/Modify.html:61 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/EditScrip:57 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:70 share/html/Admin/Queues/Modify.html:63 share/html/Elements/RT__Class/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Scrip/ColumnMap:92 share/html/Elements/RT__Template/ColumnMap:66 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Beskrivning" #: share/html/Elements/Tabs:213 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Ticket/Create.html:422 msgid "Details" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Disabled" msgstr "Inaktiverad" #: share/html/Elements/Tabs:532 share/html/Elements/Tabs:796 share/html/Elements/Tabs:817 share/html/Search/Elements/EditFormat:71 msgid "Display" msgstr "Visa" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "Display Access Control List" msgstr "Visa Tillgångskontrollista" #: share/html/SelfService/Article/Display.html:48 #. ($id) msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Visa kolumner" #: NOT FOUND IN SOURCE msgid "Display Scrip templates for this queue" msgstr "Visa scrip-mallar för denna kö" #: NOT FOUND IN SOURCE msgid "Display Scrips for this queue" msgstr "Visa scrips för denna kö" #: NOT FOUND IN SOURCE msgid "Display mode" msgstr "Visa modus" #: NOT FOUND IN SOURCE msgid "Display saved searches for this group" msgstr "Visa sparade sökningar för denna grupp" #: share/html/Elements/Footer:59 #. ('', '') msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Distributed under version 2 of the GNU GPL." msgstr "Distribuerade under version 2 of the GNU GPL." #: lib/RT/System.pm:80 msgid "Do anything and everything" msgstr "Gör något och allt" #: lib/RT/Installer.pm:215 msgid "Domain name" msgstr "Domännamn" #: lib/RT/Installer.pm:216 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:314 msgid "Don't refresh home page." msgstr "Läs inte om startsidan." #: lib/RT/Config.pm:293 msgid "Don't refresh search results." msgstr "Läs inte om sökresultaten." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Läs inte in denna sida igen" #: lib/RT/Crypt/GnuPG.pm:2260 msgid "Don't trust this key at all" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:67 msgid "Download" msgstr "Ladda ner" #: NOT FOUND IN SOURCE msgid "Download as a tab-delimited file" msgstr "Ladda ner som tab-uppdelad fil" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: lib/RT/CustomField.pm:83 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:934 lib/RT/Tickets.pm:128 share/html/Elements/RT__Ticket/ColumnMap:203 share/html/Elements/RT__Ticket/ColumnMap:236 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:240 share/html/Ticket/Elements/EditDates:68 share/html/Ticket/Elements/Reminders:134 share/html/Ticket/Elements/Reminders:154 share/html/Ticket/Elements/Reminders:82 share/html/Ticket/Elements/ShowDates:66 share/html/m/ticket/create:383 share/html/m/ticket/show:395 msgid "Due" msgstr "Förfaller" #: share/html/Search/Elements/BuildFormatString:100 msgid "DueRelative" msgstr "" #: share/html/Install/Initialize.html:131 share/html/Install/Initialize.html:94 #. ($msg) msgid "ERROR: %1" msgstr "FEL: %1" #: share/html/Elements/Tabs:437 msgid "Easy updating of your open tickets" msgstr "Enkel uppdatering av dina ärenden" #: share/html/Elements/Tabs:444 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/Quicksearch:52 share/html/Elements/ShowSearch:51 share/html/Elements/Tabs:832 share/html/Ticket/Elements/ShowRequestor:127 msgid "Edit" msgstr "Redigera" #: share/html/Search/Bulk.html:168 msgid "Edit Custom Fields" msgstr "Redigera extrafält" #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 #. ($Object->Name) msgid "Edit Custom Fields for %1" msgstr "Redigera extrafält för %1" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Redigera extrafält för alla grupper" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Redigera extrafält för alla köer" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Redigera extrafält för alla användare" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Redigera extrafält för ärenden i alla köer" #: share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Redigera länkar" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Redigera söksträng" #: share/html/Elements/Tabs:738 msgid "Edit Search" msgstr "Redigera sökning" #: NOT FOUND IN SOURCE msgid "Edit Templates for queue %1" msgstr "Redigera mallar för kö %1" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: NOT FOUND IN SOURCE msgid "Edit saved searches for this group" msgstr "Redigera sparade sökningar för denna grupp" #: share/html/Elements/Tabs:116 msgid "Edit system templates" msgstr "Redigera systemmallar" #: share/html/Admin/Articles/Classes/Topics.html:60 #. ($ClassObj->Name) msgid "Edit topic hierarchy for %1" msgstr "" #: lib/RT/Group.pm:97 msgid "EditSavedSearches" msgstr "RedigeraSparadeSökningar" #: NOT FOUND IN SOURCE msgid "Editable text" msgstr "Redigerbar text" #: NOT FOUND IN SOURCE msgid "Editing Configuration for queue %1" msgstr "Redigera konfiguration för kö %1" #: share/html/Admin/CustomFields/Modify.html:190 share/html/Admin/Elements/EditCustomField:122 #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) msgid "Editing CustomField %1" msgstr "Redigera extrafält %1" #: share/html/Admin/Groups/Members.html:55 #. ($Group->Name) msgid "Editing membership for group %1" msgstr "Redigera medlemskap för grupp %1" #: NOT FOUND IN SOURCE msgid "Editing membership for personal group %1" msgstr "Redigera medlemskap för personlig grupp %1" #: lib/RT/Tickets.pm:106 share/html/Elements/RT__Ticket/ColumnMap:148 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1320 lib/RT/Record.pm:1399 lib/RT/Ticket.pm:2456 lib/RT/Ticket.pm:2549 msgid "Either base or target must be specified" msgstr "Antingen bas eller mål måste specificeras" #: share/html/Elements/ShowSearch:67 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Antingen så har du inte behörighet att se den sparade sökningen %1 eller så är identifieraren fel" #: share/html/Admin/Users/Modify.html:72 share/html/Ticket/Elements/AddWatchers:79 share/html/User/Prefs.html:65 msgid "Email" msgstr "E-post" #: share/html/Elements/RT__User/ColumnMap:76 msgid "Email Address" msgstr "" #: etc/initialdata:478 etc/upgrade/3.7.85/content:4 msgid "Email Digest" msgstr "E-postsammandrag" #: lib/RT/User.pm:585 msgid "Email address in use" msgstr "E-postadress används" #: lib/RT/Config.pm:474 msgid "Email delivery" msgstr "E-postleverans" #: etc/initialdata:479 etc/upgrade/3.7.85/content:5 msgid "Email template for periodic notification digests" msgstr "Mall för återkommande sammandrag" #: lib/RT/Report/Tickets.pm:65 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:63 share/html/Elements/RT__Queue/ColumnMap:63 msgid "Enabled" msgstr "Aktiverad" #: share/html/Admin/Articles/Classes/Modify.html:71 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:136 share/html/Admin/Elements/EditCustomField:74 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktiverad (Bortval av denna box deaktiverar detta extrafält)" #: share/html/Admin/Groups/Modify.html:86 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktiverad (Bortval av denna box deaktiverar denna grupp)" #: share/html/Admin/Queues/Modify.html:127 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktiverad (Bortval av denna box deaktiverar denna kö)" #: share/html/Admin/Articles/Classes/index.html:80 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "Enabled Queues" msgstr "Aktiverade köer" #: share/html/Admin/Queues/index.html:99 msgid "Enabled queues matching search criteria" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:161 share/html/Admin/Elements/EditCustomField:138 #. (loc_fuzzy($msg)) msgid "Enabled status %1" msgstr "Aktiverad status %1" #: NOT FOUND IN SOURCE msgid "Enabled status: %1" msgstr "Aktiverad status: %1" #: share/html/Elements/GnuPG/SignEncryptWidget:58 share/html/Elements/RT__Queue/ColumnMap:85 share/html/Ticket/GnuPG.html:58 msgid "Encrypt" msgstr "Kryptera" #: share/html/Admin/Queues/Modify.html:120 msgid "Encrypt by default" msgstr "Kryptera som förval" #: share/html/Ticket/Elements/ShowTransaction:235 msgid "Encrypt/Decrypt" msgstr "Kryptera/dekryptera" #: share/html/Ticket/GnuPG.html:99 #. ($id, $txn->Ticket) msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Kryptera/Avkryptera transaktion #%1 för ärende #%2" #: lib/RT/Queue.pm:639 msgid "Encrypting disabled" msgstr "Kryptering inaktiverat" #: lib/RT/Queue.pm:638 msgid "Encrypting enabled" msgstr "Kryptering aktiverat" #: share/html/Articles/Article/Elements/EditLinks:50 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: lib/RT/CustomField.pm:187 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:178 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:93 msgid "Enter multiple values" msgstr "Skriv in flera värden" #: lib/RT/CustomField.pm:149 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/EditLinks:128 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Skriv in objekt eller URI att koppla objekt till. Skilj flera poster åt med mellanrum." #: lib/RT/CustomField.pm:179 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:188 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:94 msgid "Enter one value" msgstr "Skriv in ett värde" #: lib/RT/CustomField.pm:150 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/EditLinks:125 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Skriv in köer eller URI att koppla köer till. Skilj flera poster åt med mellanrum." #: share/html/Elements/EditLinks:120 share/html/Search/Bulk.html:209 share/html/Ticket/Elements/BulkLinks:123 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Skriv in ärenden eller URI att koppla ärenden till. Skilj flera poster åt med mellanrum." #: lib/RT/Config.pm:280 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:189 msgid "Enter up to %1 IP address ranges" msgstr "" #: lib/RT/CustomField.pm:180 msgid "Enter up to %1 IP addresses" msgstr "" #: lib/RT/CustomField.pm:95 msgid "Enter up to %1 values" msgstr "Skriv in upp till %1 värde" #: lib/RT/CustomField.pm:151 msgid "Enter up to %1 values with autocompletion" msgstr "" #: share/html/Search/Simple.html:77 #. (map { "$_" } qw(initial active inactive any)) msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: sbin/rt-email-digest:103 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/SelfService/Error.html:48 share/html/SelfService/Error.html:49 share/html/m/_elements/login:57 msgid "Error" msgstr "Fel" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->AddWatcher" msgstr "Fel i parametrar till Kö->LäggtillObservatör" #: NOT FOUND IN SOURCE msgid "Error in parameters to Queue->DeleteWatcher" msgstr "Fel i parametrar till Kö->RaderaObservatör" #: lib/RT/Ticket.pm:1090 msgid "Error in parameters to Ticket->AddWatcher" msgstr "Fel i parametrar till Ärende->LäggtillObservatör" #: lib/RT/Ticket.pm:1247 msgid "Error in parameters to Ticket->DeleteWatcher" msgstr "Fel i parametrar till Ärende->RaderaObservatör" #: etc/initialdata:426 etc/upgrade/3.7.10/content:13 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:488 etc/upgrade/3.7.87/content:4 msgid "Error: Missing dashboard" msgstr "Fel: Dashboard saknas" #: etc/initialdata:451 etc/upgrade/3.7.10/content:38 msgid "Error: bad GnuPG data" msgstr "" #: share/html/Articles/Article/Search.html:202 msgid "Error: cannot change privacy value of existing search" msgstr "" #: share/html/Articles/Article/Search.html:165 #. ($ARGS{'LoadSavedSearch'}, $msg) msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:439 etc/upgrade/3.7.10/content:26 msgid "Error: no private key" msgstr "" #: etc/initialdata:417 etc/upgrade/3.7.10/content:4 msgid "Error: public key" msgstr "" #: share/html/Articles/Article/Search.html:217 #. ($search->Name, $msg) msgid "Error: search %1 not updated: %2" msgstr "" #: bin/rt-crontool:370 msgid "Escalate tickets" msgstr "Eskalera ärenden" #: share/html/Ticket/Elements/ShowBasics:59 share/html/m/ticket/show:226 msgid "Estimated" msgstr "Uppskattning" #: lib/RT/Handle.pm:666 msgid "Everyone" msgstr "Alla" #: NOT FOUND IN SOURCE msgid "Examine tickets created in a queue between two dates" msgstr "Se ärenden som har skapats i en kö mellan två datum" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue between two dates" msgstr "Se de ärenden som har åtgärdats i viss kö mellan två datum" #: NOT FOUND IN SOURCE msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "Se de ärenden som har åtgärdats i viss kö grupperat efter ägare" #: bin/rt-crontool:356 msgid "Example:" msgstr "Exempel:" #: lib/RT/System.pm:88 msgid "ExecuteCode" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:63 msgid "Expire" msgstr "Utgår" #: share/html/Search/Elements/BuildFormatString:100 msgid "ExtendedStatus" msgstr "" #: lib/RT/User.pm:995 msgid "External authentication enabled." msgstr "" #: share/html/Admin/Users/Modify.html:97 msgid "Extra info" msgstr "Extra info" #: share/html/Elements/Tabs:633 msgid "Extract Article" msgstr "" #: etc/initialdata:98 etc/upgrade/3.8.3/content:75 msgid "Extract Subject Tag" msgstr "Extrahera ämnesetikett" #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 #. ($Ticket) msgid "Extract a new article from ticket #%1" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:48 #. ($Ticket, $ClassObj->Name) msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:99 etc/upgrade/3.8.3/content:76 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extrahera etiketter från en transaktions ämne och lägg till dem till ärendets ämne" #: share/html/Install/DatabaseDetails.html:187 #. ($DBI::errstr) msgid "Failed to connect to database: %1" msgstr "Kunde inte ansluta till databasen: %1" #: lib/RT/SharedSetting.pm:217 #. ($self->loc( $self->ObjectName )) msgid "Failed to create %1 attribute" msgstr "Misslyckades med att skapa attribut till %1" #: NOT FOUND IN SOURCE msgid "Failed to create search attribute" msgstr "Misslyckades med att skapa sökattribut" #: lib/RT/User.pm:336 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Misslyckades med att hitta 'Privilegierad'-användares pseudogrupp." #: lib/RT/User.pm:343 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Misslyckades med att hitta 'Icke-privilegierad'-användares pseudogrupp" #: lib/RT/SharedSetting.pm:122 #. ($self->ObjectName, $id) msgid "Failed to load %1 %2" msgstr "Misslyckades med att läsa in %1 %2" #: lib/RT/SharedSetting.pm:146 #. ($self->ObjectName, $id, $msg) msgid "Failed to load %1 %2: %3" msgstr "Misslyckades med att läsa in %1 %2: %3" #: bin/rt-crontool:304 #. ($modname, $@) msgid "Failed to load module %1. (%2)" msgstr "Misslyckades med att läsa in modul %1. (%2)" #: lib/RT/SharedSetting.pm:201 #. ($privacy) msgid "Failed to load object for %1" msgstr "Misslyckades med att läsa in objekt för %1" #: sbin/rt-email-digest:166 msgid "Failed to load template" msgstr "Misslyckades med att läsa in mall" #: lib/RT/Reminders.pm:122 #. ($self->Ticket) msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:174 msgid "Failed to parse template" msgstr "Misslyckades med att tolka mall" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Feb" #: NOT FOUND IN SOURCE msgid "Feb." msgstr "Feb." #: share/html/Elements/Tabs:749 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:84 msgid "Field values source:" msgstr "Källa för fältvärden:" #: lib/RT/Tickets.pm:135 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Filnamn" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:81 msgid "Fill boxes with color using" msgstr "Fyll rutor med färgen" #: lib/RT/CustomField.pm:102 msgid "Fill in multiple text areas" msgstr "Fyll i flera textområden" #: lib/RT/CustomField.pm:111 msgid "Fill in multiple wikitext areas" msgstr "Fyll i flera wikitextområden" #: lib/RT/CustomField.pm:103 msgid "Fill in one text area" msgstr "Fyll i ett textområde" #: lib/RT/CustomField.pm:112 msgid "Fill in one wikitext area" msgstr "Fyll i ett wikitextområde" #: share/html/Admin/CustomFields/Modify.html:107 share/html/Admin/CustomFields/Modify.html:115 msgid "Fill in this field with a URL." msgstr "Fyll i detta fält med en URL." #: lib/RT/CustomField.pm:104 msgid "Fill in up to %1 text areas" msgstr "Fyll i upp till %1 textområden" #: lib/RT/CustomField.pm:113 msgid "Fill in up to %1 wikitext areas" msgstr "Fyll i upp till %1 wikitextområden" #: lib/RT/Tickets.pm:2318 share/html/Search/Elements/PickBasics:188 share/html/Ticket/Create.html:211 share/html/m/ticket/create:346 msgid "Final Priority" msgstr "Slutlig Prioritet" #: lib/RT/Ticket.pm:925 lib/RT/Tickets.pm:109 share/html/Elements/RT__Ticket/ColumnMap:142 share/html/Search/Elements/BuildFormatString:100 msgid "FinalPriority" msgstr "SlutligPrioritet" #: share/html/Admin/Users/index.html:83 msgid "Find all users whose" msgstr "Hitta alla användare vars" #: share/html/Admin/Groups/index.html:74 share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Hitta grupper vars" #: share/html/Admin/Queues/People.html:74 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Hitta personer vars" #: share/html/Search/Results.html:140 msgid "Find tickets" msgstr "Hitta ärenden" #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Slutför" #: share/html/Elements/Tabs:651 msgid "First" msgstr "Första" #: NOT FOUND IN SOURCE msgid "Foo Bar Baz" msgstr "Foo Bar Baz" #: NOT FOUND IN SOURCE msgid "Foo!" msgstr "Foo!" #: share/html/Search/Simple.html:91 #. ($link_start, $link_end) msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Genomtvinga ändring" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Format" #: etc/initialdata:402 etc/upgrade/3.7.15/content:4 share/html/Elements/Tabs:578 share/html/Ticket/Elements/ShowTransaction:222 msgid "Forward" msgstr "Vidarebefordra" #: share/html/Ticket/Forward.html:78 msgid "Forward Message" msgstr "Vidarebefordra brev" #: share/html/Ticket/Forward.html:77 msgid "Forward Message and Return" msgstr "Vidarebefordra meddelande och återgå" #: etc/initialdata:409 etc/upgrade/3.8.6/content:3 msgid "Forward Ticket" msgstr "Vidarebefordra ärende" #: lib/RT/Queue.pm:121 msgid "Forward messages outside of RT" msgstr "" #: NOT FOUND IN SOURCE msgid "Forward messages to third person(s)" msgstr "Vidarebefordra till tredje person(er)" #: share/html/Ticket/Forward.html:113 #. ($TicketObj->id) msgid "Forward ticket #%1" msgstr "Vidarebefordra ärende #%1" #: share/html/Ticket/Forward.html:112 #. ($txn->id) msgid "Forward transaction #%1" msgstr "Vidarebefordra transaktion #%1" #: lib/RT/Queue.pm:121 msgid "ForwardMessage" msgstr "" #: lib/RT/Transaction.pm:679 #. ($self->Data) msgid "Forwarded Ticket to %1" msgstr "Vidarebefordra ärende till %1" #: lib/RT/Transaction.pm:676 #. ($self->Field, $self->Data) msgid "Forwarded Transaction #%1 to %2" msgstr "" #: share/html/Search/Results.html:138 share/html/m/_elements/ticket_list:83 #. ($ticketcount) #. ($collection->CountAll) msgid "Found %quant(%1,ticket)" msgstr "Hittade %quant(%1,ärende)" #: lib/RT/Record.pm:975 msgid "Found Object" msgstr "Hittade Objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Intervall" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Fre" #: NOT FOUND IN SOURCE msgid "Fri." msgstr "Fre." #: share/html/Dashboards/Subscription.html:110 msgid "Friday" msgstr "fredag" #: share/html/Ticket/Forward.html:60 msgid "From" msgstr "" #: NOT FOUND IN SOURCE msgid "Full headers" msgstr "Fullständiga rubriker" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/Config.pm:192 lib/RT/Config.pm:285 msgid "General" msgstr "Allmän" #: share/html/Admin/Elements/EditRightsCategoryTabs:91 msgid "General rights" msgstr "" #: share/html/Tools/Offline.html:84 msgid "Get template from file" msgstr "Hämta mall från fil" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Komma igång" #: lib/RT/Transaction.pm:768 lib/RT/Transaction.pm:908 lib/RT/Transaction.pm:920 #. ($New->Name) msgid "Given to %1" msgstr "Har givits till %1" #: share/html/Elements/RT__CustomField/ColumnMap:93 share/html/Elements/RT__Scrip/ColumnMap:64 share/html/Elements/RT__Template/ColumnMap:74 share/html/Elements/Tabs:101 msgid "Global" msgstr "Global" #: share/html/Admin/Tools/Configuration.html:193 msgid "Global Attributes" msgstr "" #: NOT FOUND IN SOURCE msgid "Global Custom Fields" msgstr "Globala extrafält" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Global extrafältkonfiguration" #: share/html/Admin/Global/MyRT.html:102 #. ($pane) msgid "Global portlet %1 saved." msgstr "Global portlet %1 sparad." #: share/html/Admin/Elements/SelectTemplate:55 #. (loc($Template->Name)) msgid "Global template: %1" msgstr "Global mall: %1" #: share/html/Elements/Tabs:312 msgid "GnuPG" msgstr "GnuPG" #: lib/RT/Attachment.pm:760 lib/RT/Attachment.pm:795 msgid "GnuPG error. Contact with administrator" msgstr "GnuPG-fel. Kontakta administratör" #: lib/RT/Attachment.pm:715 lib/RT/Attachment.pm:777 msgid "GnuPG integration is disabled" msgstr "GnuPG-integration inaktiverad" #: share/html/Elements/GnuPG/KeyIssues:49 msgid "GnuPG issues" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:90 #. ($EmailAddress) msgid "GnuPG private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:136 share/html/Admin/Queues/Modify.html:146 msgid "GnuPG private keys" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:88 #. ($EmailAddress) msgid "GnuPG public key(s) for %1" msgstr "" #: share/html/m/_elements/menu:67 msgid "Go" msgstr "Kör" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:69 share/html/Admin/CustomFields/index.html:86 share/html/Admin/Groups/index.html:76 share/html/Admin/Queues/People.html:76 share/html/Admin/Queues/People.html:80 share/html/Admin/Queues/index.html:88 share/html/Admin/Users/index.html:87 share/html/Approvals/index.html:54 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 share/html/Tools/Offline.html:88 msgid "Go!" msgstr "Kör!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Gå till ärende" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Gå till ärende" #: share/html/Ticket/Elements/ShowSummary:91 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagramegenskaper" #: share/html/Search/Elements/Chart:98 msgid "Graphical charts are not available." msgstr "Diagram är ej tillgängliga" #: lib/RT/Record.pm:955 share/html/Ticket/Elements/AddWatchers:69 share/html/Ticket/Elements/ShowGroupMembers:60 msgid "Group" msgstr "Grupp" #: share/html/Elements/Tabs:186 share/html/Elements/Tabs:291 share/html/Elements/Tabs:329 share/html/Elements/Tabs:345 share/html/Elements/Tabs:377 msgid "Group Rights" msgstr "Grupprättigheter" #: lib/RT/Group.pm:929 #. ($new_member_obj->Object->Name) msgid "Group already has member: %1" msgstr "Grupp har redan medlem: %1" #: share/html/Admin/Groups/Modify.html:112 #. ($create_msg) msgid "Group could not be created: %1" msgstr "Grupp kan inte skapas: %1" #: lib/RT/Group.pm:477 msgid "Group created" msgstr "Grupp har skapats" #: lib/RT/Group.pm:696 msgid "Group disabled" msgstr "Grupp inaktiverad" #: lib/RT/Group.pm:698 msgid "Group enabled" msgstr "Grupp aktiverad" #: lib/RT/Group.pm:1085 msgid "Group has no such member" msgstr "Grupp har ingen sådan medlem" #: lib/RT/Group.pm:533 #. ($value) msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:909 lib/RT/Queue.pm:1038 lib/RT/Queue.pm:963 lib/RT/Ticket.pm:1138 lib/RT/Ticket.pm:1219 msgid "Group not found" msgstr "Grupp ej funnen" #: NOT FOUND IN SOURCE msgid "Group rights" msgstr "Gruppbehörigheter" #: lib/RT/CustomField.pm:1673 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:102 share/html/Elements/Tabs:133 share/html/Elements/Tabs:242 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupper" #: lib/RT/Group.pm:935 msgid "Groups can't be members of their members" msgstr "Grupper kan inte vara medlemmar av sina medlemmar" #: share/html/Admin/Groups/index.html:107 msgid "Groups matching search criteria" msgstr "Grupper som matchar sökkriterium" #: share/html/Admin/Users/Memberships.html:56 msgid "Groups the user is member of (check box to delete)" msgstr "Grupper som användaren är medlem i (kryssa i för att ta bort)" #: share/html/Admin/Users/Memberships.html:70 msgid "Groups the user is not member of (check box to add)" msgstr "Grupper som användaren inte är medlem i (kryssa i för att lägga till)" #: share/html/Ticket/Elements/ShowRequestor:123 share/html/User/Elements/Portlets/Groups:48 msgid "Groups this user belongs to" msgstr "Grupper som denna användare tillhör" #: lib/RT/Tickets.pm:121 msgid "HasMember" msgstr "" #: etc/initialdata:410 etc/upgrade/3.8.6/content:4 msgid "Heading of a forwarded Ticket" msgstr "Rubrik på vidarebefordrat ärende" #: etc/initialdata:403 etc/upgrade/3.7.15/content:5 msgid "Heading of a forwarded message" msgstr "Rubrik på vidarebefordrat meddelande" #: lib/RT/Interface/CLI.pm:83 lib/RT/Interface/CLI.pm:83 msgid "Hello!" msgstr "Hej!" #: NOT FOUND IN SOURCE msgid "Hello, %1" msgstr "Hej, %1" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Hjälp oss ställa in några användbara förval för RT." #: share/html/Ticket/Elements/ShowHistory:65 msgid "Hide all quoted text" msgstr "" #: share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: lib/RT/Config.pm:352 msgid "Hide ticket history by default" msgstr "Dölj ärendehistoriken som standard" #: share/html/Elements/Tabs:293 share/html/Elements/Tabs:309 share/html/Elements/Tabs:331 share/html/Elements/Tabs:533 share/html/Elements/Tabs:797 share/html/Elements/Tabs:818 share/html/Ticket/Elements/ShowHistory:55 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historik" #: share/html/Articles/Article/History.html:52 #. ($id) msgid "History for article #%1" msgstr "" #: share/html/Admin/Groups/History.html:59 #. ($GroupObj->Name) msgid "History of the group %1" msgstr "Historik för gruppen %1" #: share/html/Admin/Queues/History.html:59 #. ($QueueObj->Name) msgid "History of the queue %1" msgstr "Historik för kö %1" #: share/html/Admin/Users/History.html:59 #. ($UserObj->Name) msgid "History of the user %1" msgstr "Historik för användaren %1" #: NOT FOUND IN SOURCE msgid "Home" msgstr "Hem" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:311 msgid "Home page refresh interval" msgstr "Hur ofta startsidan skall läsa in på nytt" #: share/html/Elements/Tabs:394 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Startsida" #: share/html/Dashboards/Subscription.html:138 msgid "Hour" msgstr "Timme" #: lib/RT/Report/Tickets.pm:76 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Timmar" #: lib/RT/Base.pm:125 #. (6) msgid "I have %quant(%1,concrete mixer)." msgstr "Jag har %quant(%1,concrete mixer)." #: share/html/User/Prefs.html:175 msgid "I want to reset my secret token." msgstr "" #: NOT FOUND IN SOURCE msgid "I'm lost" msgstr "Jag är vilse" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ISO" #: lib/RT/Tickets.pm:2249 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:217 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/User/Prefs.html:60 msgid "Identity" msgstr "Identitet" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Om ett godkännande avvisas, avvisa det ursprungliga och radera väntande godkännanden" #: share/html/Tools/Offline.html:73 msgid "If no Requestor is specified, create tickets with this requestor." msgstr "Om ingen anmälare har specificerats, skapa ärenden med denna anmälare." #: share/html/Tools/Offline.html:64 msgid "If no queue is specified, create tickets in this queue." msgstr "Om ingen kö har specificerats, skapa ärenden i denna kö." #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:352 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Om detta verktyg var setgid, kunde en fientlig användare använda detta verktyg för att få administrativ tillgång till RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #: NOT FOUND IN SOURCE msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

" msgstr "Om du redan har en fungerande RT-server och databas så bör du kontrollera att din databasserver kör och att RT-servern kan ansluta sig till den. När du har gjort det kan du starta om RT-servern.

" #: share/html/Elements/CSRF:59 #. ($escaped_path, $action, $start, $end) msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: NOT FOUND IN SOURCE msgid "If you've change the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Om du ändrar vilken port som RT använder sig av så behöver du starta om servern för att kunna logga in." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:124 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:128 share/html/Ticket/ModifyPeople.html:76 msgid "If you've updated anything above, be sure to" msgstr "Om du har uppdaterat någonting av ovanstående, se till att" #: share/html/Install/DatabaseType.html:61 #. ('CPAN') msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:967 msgid "Illegal value for %1" msgstr "Ogiltigt värde för %1" #: lib/RT/Record.pm:970 msgid "Immutable field" msgstr "Oföränderligt fält" #: share/html/Ticket/Elements/ShowRequestor:165 msgid "Inactive Tickets" msgstr "Inaktiva ärenden" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Admin/Articles/Classes/index.html:68 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:81 msgid "Include disabled custom fields in listing." msgstr "Ta med inaktiverade extrafält i listan." #: share/html/Admin/Groups/index.html:75 msgid "Include disabled groups in listing." msgstr "Ta med inaktiverade grupper i lista." #: share/html/Admin/Queues/index.html:87 msgid "Include disabled queues in listing." msgstr "Ta med inaktiverade köer i lista." #: share/html/Admin/Users/index.html:85 msgid "Include disabled users in search." msgstr "Ta med inaktiverade användare i lista." #: share/html/Admin/CustomFields/Modify.html:111 msgid "Include page" msgstr "Inkludera sida" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: NOT FOUND IN SOURCE msgid "Incomplete Query" msgstr "Ofullständig sökning" #: NOT FOUND IN SOURCE msgid "Incomplete query" msgstr "Ofullständig sökning" #: lib/RT/Config.pm:476 msgid "Individual messages" msgstr "Enskilda meddelanden" #: etc/initialdata:428 etc/upgrade/3.7.10/content:15 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informera ägaren av RT att en eller flera användare har problem med publika nycklar" #: etc/initialdata:490 etc/upgrade/3.7.87/content:6 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informera användare att en dashboard som denne prenumrerar på saknas" #: etc/initialdata:453 etc/upgrade/3.7.10/content:40 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:419 etc/upgrade/3.7.10/content:6 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:465 msgid "Inform user that his password has been reset" msgstr "Informera användare att dennes lösenord har återställts" #: etc/initialdata:441 etc/upgrade/3.7.10/content:28 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:2295 share/html/Search/Elements/PickBasics:187 msgid "Initial Priority" msgstr "Initiell prioritet" #: lib/RT/Ticket.pm:924 lib/RT/Ticket.pm:926 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:136 share/html/Search/Elements/BuildFormatString:100 msgid "InitialPriority" msgstr "InitiellPrioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initialisera databas" #: share/html/Elements/ValidateCustomFields:91 msgid "Input can not be parsed as an IP address" msgstr "" #: share/html/Elements/ValidateCustomFields:102 msgid "Input can not be parsed as an IP address range" msgstr "" #: lib/RT/ScripAction.pm:131 msgid "Input error" msgstr "Inläsningsfel" #: lib/RT/CustomField.pm:1467 lib/RT/CustomField.pm:1627 share/html/Elements/ValidateCustomFields:112 #. ($CF->FriendlyPattern) #. ($self->FriendlyPattern) msgid "Input must match %1" msgstr "Inmatning måste matcha %1" #: NOT FOUND IN SOURCE msgid "Install RT" msgstr "Installera RT" #: lib/RT/Article.pm:281 lib/RT/Article.pm:290 lib/RT/Article.pm:299 lib/RT/Article.pm:308 lib/RT/Article.pm:317 lib/RT/Ticket.pm:3477 msgid "Internal Error" msgstr "Internt fel" #: lib/RT/Record.pm:321 #. ($id->{error_message}) msgid "Internal Error: %1" msgstr "Internt fel: %1" #: lib/RT/Article.pm:211 #. ($txn_msg) msgid "Internal error: %1" msgstr "" #: share/html/Admin/Elements/EditRights:158 #. ($type) msgid "Invalid %1" msgstr "" #: share/html/Articles/Article/Search.html:168 #. ('LoadSavedSearch') msgid "Invalid %1 argument" msgstr "" #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ogiltig %1: '%2' verkar inte vara en e-postadress" #: share/html/Install/Basics.html:81 #. ('WebPort') msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Article.pm:108 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:373 lib/RT/CustomField.pm:687 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:603 msgid "Invalid Group Type" msgstr "Ogiltig grupptyp" #: lib/RT/Class.pm:397 #. ($msg) msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:362 msgid "Invalid Render Type" msgstr "" #: lib/RT/CustomField.pm:1094 #. ($self->FriendlyType) msgid "Invalid Render Type for custom field of type %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Invalid Right" msgstr "Ogiltig rättighet" #: lib/RT/Record.pm:972 msgid "Invalid data" msgstr "Ogiltig data" #: share/html/Admin/Users/GnuPG.html:110 #. ($ARGS{'PrivateKey'}, $email) msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1460 msgid "Invalid object" msgstr "Ogiltigt objekt" #: NOT FOUND IN SOURCE msgid "Invalid owner object" msgstr "Ogiltigt ägarobjekt" #: lib/RT/CustomField.pm:347 lib/RT/CustomField.pm:783 #. ($msg) msgid "Invalid pattern: %1" msgstr "Ogiltigt mönster: %1" #: lib/RT/Scrip.pm:138 lib/RT/Template.pm:251 msgid "Invalid queue" msgstr "Ogiltig kö" #: lib/RT/Queue.pm:850 #. ($args{Type}) msgid "Invalid queue role group type %1" msgstr "" #: lib/RT/ACE.pm:275 msgid "Invalid right" msgstr "Ogiltig rättighet" #: lib/RT/ACE.pm:140 lib/RT/ACE.pm:263 #. ($args{'RightName'}) msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:575 msgid "Invalid syntax for email address" msgstr "Ogiltig syntax för e-postadress" #: lib/RT/Record.pm:289 lib/RT/Ticket.pm:397 #. ($key) #. (loc('owner')) msgid "Invalid value for %1" msgstr "Ogiltigt värde för %1" #: lib/RT/Record.pm:1675 msgid "Invalid value for custom field" msgstr "Ogiltigt värde för extrafält" #: NOT FOUND IN SOURCE msgid "Invalid value for status" msgstr "Ogiltigt värde för status" #: lib/RT/Attachment.pm:787 msgid "Is not encrypted" msgstr "Är inte krypterad" #: bin/rt-crontool:353 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Det är oerhört viktigt att icke-privilegierade användare inte får lov att använda detta verktyg." #: bin/rt-crontool:354 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Det rekommenderas att du skapar en icke-privilegierad unix-användare med korrekt gruppmedlemskap och RT för att använda detta verktyg." #: bin/rt-crontool:314 msgid "It takes several arguments:" msgstr "Det krävs åtskilliga parametrar:" #: share/html/Search/Elements/EditFormat:97 msgid "Italic" msgstr "Kursiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Jan" #: NOT FOUND IN SOURCE msgid "Jan." msgstr "Jan." #: lib/RT/Group.pm:96 msgid "Join or leave group" msgstr "" #: NOT FOUND IN SOURCE msgid "Join or leave this group" msgstr "Gå med i eller lämna denna grupp" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jul" #: NOT FOUND IN SOURCE msgid "Jul." msgstr "Juli" #: share/html/Elements/Tabs:562 msgid "Jumbo" msgstr "Jumbo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jun" #: NOT FOUND IN SOURCE msgid "Jun." msgstr "Juni" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: lib/RT/Search/Googleish.pm:88 #. (ref $self) msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/Report/Tickets.pm:65 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Elements/RT__User/ColumnMap:141 share/html/Install/index.html:56 share/html/User/Prefs.html:76 msgid "Language" msgstr "Språk" #: share/html/Search/Elements/EditFormat:88 msgid "Large" msgstr "Stor" #: share/html/Elements/Tabs:660 msgid "Last" msgstr "Senaste" #: share/html/Ticket/Elements/EditDates:61 share/html/Ticket/Elements/ShowDates:62 share/html/m/ticket/show:391 msgid "Last Contact" msgstr "Senaste kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Senast kontaktad" #: share/html/Elements/ColumnMap:81 share/html/Elements/ColumnMap:86 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Senast uppdaterad" #: share/html/Elements/ColumnMap:91 msgid "Last Updated By" msgstr "Senast uppdaterad av" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Senast uppdaterad av" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:130 share/html/Elements/RT__Article/ColumnMap:85 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:104 share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedBy" msgstr "SenastUppdateradAv" #: share/html/Search/Elements/BuildFormatString:100 msgid "LastUpdatedRelative" msgstr "" #: share/html/Dashboards/Subscription.html:174 #. ($session{'CurrentUser'}->EmailAddress) msgid "Leave blank to send to your current email address (%1)" msgstr "Lämna tomt för att sända till din nuvarande e-postadress (%1)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Lämna blankt för att använda det förvalda värdet för din databas" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:71 share/html/m/ticket/show:238 msgid "Left" msgstr "Tillbaka" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:334 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:107 msgid "Let this user access RT" msgstr "Låt denna användare få tillgång till RT" #: share/html/Admin/Users/Modify.html:111 msgid "Let this user be granted rights" msgstr "Låt denna användare få rättigheter" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Sätt igång!" #: share/html/Admin/Queues/Modify.html:67 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:67 msgid "Link" msgstr "Länk" #: lib/RT/Record.pm:1331 msgid "Link already exists" msgstr "Länk finns redan" #: lib/RT/Record.pm:1345 msgid "Link could not be created" msgstr "Länk kan inte skapas" #: NOT FOUND IN SOURCE msgid "Link created (%1)" msgstr "Länk har skapats (%1)" #: NOT FOUND IN SOURCE msgid "Link deleted (%1)" msgstr "Länk har raderats (%1)" #: lib/RT/Record.pm:1424 msgid "Link not found" msgstr "Länk ej funnen" #: share/html/Ticket/ModifyLinks.html:48 #. ($Ticket->Id) msgid "Link ticket #%1" msgstr "Koppla ärende #%1" #: share/html/Admin/CustomFields/Modify.html:103 msgid "Link values to" msgstr "Koppla värden till" #: lib/RT/Tickets.pm:115 msgid "Linked" msgstr "Länkad" #: lib/RT/Tickets.pm:117 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:116 msgid "LinkedTo" msgstr "" #: lib/RT/Ticket.pm:633 msgid "Linking. Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:626 msgid "Linking. Permission denied" msgstr "Koppling. Tillgång nekas" #: share/html/Articles/Article/Display.html:56 share/html/Articles/Article/Edit.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Elements/Tabs:558 share/html/Ticket/Create.html:250 share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyAll.html:79 share/html/m/ticket/create:389 share/html/m/ticket/show:415 msgid "Links" msgstr "Länkar" #: lib/RT/CustomField.pm:80 lib/RT/CustomField.pm:84 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:70 share/html/Articles/Article/Search.html:68 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Läs in" #: share/html/Articles/Article/Elements/ShowSavedSearches:68 msgid "Load a saved search" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:66 msgid "Load saved search:" msgstr "Läs in sparad sökning:" #: lib/RT/System.pm:86 msgid "LoadSavedSearch" msgstr "LäsinSparadSökning" #: lib/RT/SharedSetting.pm:118 #. ($self->ObjectName, $self->Name) msgid "Loaded %1 %2" msgstr "" #: share/html/Search/Elements/EditSearches:168 #. ($SavedSearch->{'Description'}) msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:217 msgid "Loaded perl modules" msgstr "Inlästa Perl-moduler" #: share/html/Search/Elements/EditSearches:170 #. ($SavedSearch->{'Description'}) msgid "Loaded saved search \"%1\"" msgstr "" #: NOT FOUND IN SOURCE msgid "Loaded search %1" msgstr "Inläst sökning %1" #: share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/ShowRequestor:112 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:422 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:122 share/html/User/Prefs.html:124 msgid "Location" msgstr "Plats" #: lib/RT/Interface/Web.pm:779 msgid "Logged in" msgstr "" #: share/html/Elements/Tabs:472 share/html/Elements/Tabs:867 #. ($username) msgid "Logged in as %1" msgstr "Inloggad som %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:65 share/html/m/_elements/login:80 msgid "Login" msgstr "Logga in" #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 #. ()) msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:504 share/html/Elements/Tabs:879 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Logga ut" #: lib/RT/CustomField.pm:1370 msgid "Lookup type mismatch" msgstr "Uppslagstyp matchar ej" #: share/html/Elements/RT__Dashboard/ColumnMap:104 #. ($hour) msgid "M-F at %1" msgstr "" #: lib/RT/Config.pm:469 lib/RT/Config.pm:484 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Ange ägare" #: share/html/Search/Bulk.html:107 msgid "Make Status" msgstr "Ange status" #: share/html/Search/Bulk.html:115 msgid "Make date Due" msgstr "Ange förfallodatum" #: share/html/Search/Bulk.html:117 msgid "Make date Resolved" msgstr "Ange datum ärendet åtgärdats" #: share/html/Search/Bulk.html:111 msgid "Make date Started" msgstr "Ange datum påbörjat" #: share/html/Search/Bulk.html:109 msgid "Make date Starts" msgstr "Ange startdatum" #: share/html/Search/Bulk.html:113 msgid "Make date Told" msgstr "Ange datum för kontaktat" #: share/html/Search/Bulk.html:103 msgid "Make priority" msgstr "Ange prioritet" #: share/html/Search/Bulk.html:105 msgid "Make queue" msgstr "Ange kö" #: share/html/Search/Bulk.html:101 msgid "Make subject" msgstr "Ange ämne" #: NOT FOUND IN SOURCE msgid "Make this group visible to user" msgstr "Gör denna grupp synlig för användare" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Administrera extrafält och extrafältvärde" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administrera grupper och gruppmedlemskap" #: share/html/Elements/Tabs:102 msgid "Manage properties and configuration which apply to all queues" msgstr "Administrera egenskaper och konfiguration som gäller för alla köer" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administrera köer och kö-specifika egenskaper" #: share/html/Ticket/Graphs/index.html:63 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administrera användare och lösenord" #: lib/RT/Ticket.pm:1722 msgid "Mapping between queues' lifecycles is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: NOT FOUND IN SOURCE msgid "Mar." msgstr "Mars" #: share/html/Ticket/Display.html:192 share/html/m/ticket/show:127 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:174 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:82 msgid "MaxValues" msgstr "" #: lib/RT/Config.pm:332 msgid "Maximum inline message length" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "" #: NOT FOUND IN SOURCE msgid "May." msgstr "Maj" #: share/html/Elements/QuickCreate:64 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:61 msgid "Member" msgstr "" #: lib/RT/Transaction.pm:814 #. ($value) msgid "Member %1 added" msgstr "Medlem %1 tillagd" #: lib/RT/Transaction.pm:853 #. ($value) msgid "Member %1 deleted" msgstr "Medlem %1 raderad" #: lib/RT/Group.pm:946 #. ($new_member_obj->Object->Name) msgid "Member added: %1" msgstr "Medlem tillagd: %1" #: lib/RT/Group.pm:1092 msgid "Member deleted" msgstr "Medlem raderad" #: lib/RT/Group.pm:1096 msgid "Member not deleted" msgstr "Medlem ej raderad" #: share/html/Elements/SelectLinkType:49 msgid "Member of" msgstr "Medlem av" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:118 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:156 share/html/Elements/Tabs:328 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "Members" msgstr "Medlemmar" #: lib/RT/Transaction.pm:811 #. ($value) msgid "Membership in %1 added" msgstr "Medlemskap i %1 tillagt" #: lib/RT/Transaction.pm:850 #. ($value) msgid "Membership in %1 deleted" msgstr "Medlemskap i %1 raderat" #: share/html/Elements/Tabs:308 msgid "Memberships" msgstr "Medlemskap" #: share/html/Admin/Users/Memberships.html:92 #. ($UserObj->Name) msgid "Memberships of the user %1" msgstr "Medlemskap för användaren %1" #: lib/RT/Ticket.pm:2696 msgid "Merge Successful" msgstr "Sammanslagning lyckades" #: lib/RT/Ticket.pm:2717 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Sammanslagning misslyckades. Kunde inte sätta EffectiveId" #: lib/RT/Ticket.pm:2731 msgid "Merge failed. Couldn't set Status" msgstr "Sammanslagning misslyckades. Kunde inte sätta status" #: share/html/Elements/EditLinks:133 share/html/Ticket/Elements/BulkLinks:127 msgid "Merge into" msgstr "Slå samman med" #: lib/RT/Transaction.pm:817 #. ($value) msgid "Merged into %1" msgstr "Sammanslagen med %1" #: share/html/Search/Bulk.html:149 share/html/Ticket/Update.html:148 share/html/Ticket/Update.html:166 share/html/m/ticket/reply:104 msgid "Message" msgstr "Meddelande" #: share/html/Ticket/Elements/ShowTransactionAttachments:170 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:162 share/html/Ticket/Elements/ShowTransactionAttachments:255 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:275 msgid "Message body not shown because it is not plain text." msgstr "" #: NOT FOUND IN SOURCE msgid "Message body not shown because it is too large or is not plain text." msgstr "Meddelande visades inte eftersom det är för omfångsrikt eller består av annat än vanlig text." #: lib/RT/Config.pm:260 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:251 msgid "Message box width" msgstr "" #: lib/RT/Config.pm:269 msgid "Message box wrapping" msgstr "" #: lib/RT/Ticket.pm:2296 msgid "Message could not be recorded" msgstr "Meddelande sparades inte" #: sbin/rt-email-digest:291 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:2299 msgid "Message recorded" msgstr "Meddelande sparat" #: NOT FOUND IN SOURCE msgid "Messages about this ticket will not be sent to..." msgstr "Meddelande om detta ärende kommer inte att skickas till..." #: lib/RT/Installer.pm:150 msgid "Minimum password length" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuter" #: share/html/Admin/Elements/EditRightsCategoryTabs:105 msgid "Miscellaneous" msgstr "" #: NOT FOUND IN SOURCE msgid "Mismatched parentheses" msgstr "Icke-matchande paranteser" #: lib/RT/Record.pm:974 msgid "Missing a primary key?: %1" msgstr "Saknas en primärnyckel?: %1" #: share/html/Admin/Users/Modify.html:177 share/html/User/Prefs.html:96 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:798 share/html/Elements/Tabs:821 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Access Control List" msgstr "Modifiera Tillgångskontrollista" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to %1 for all %2" msgstr "Modifiera extrafält som gäller för %1 för alla %2" #: NOT FOUND IN SOURCE msgid "Modify Custom Fields which apply to all %1" msgstr "Modifiera extrafält som gäller för alla %1" #: NOT FOUND IN SOURCE msgid "Modify Group Rights" msgstr "Modifiera grupprättigheter" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modifiera medlemmar" #: NOT FOUND IN SOURCE msgid "Modify Rights" msgstr "Modifiera rättigheter" #: lib/RT/Queue.pm:100 msgid "Modify Scrip templates" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrip templates for this queue" msgstr "Modifiera scrip-mallar för denna kö" #: lib/RT/Queue.pm:103 msgid "Modify Scrips" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify Scrips for this queue" msgstr "Modifiera scrips för denna kö" #: NOT FOUND IN SOURCE msgid "Modify User Rights" msgstr "Modifiera användarrättigheter" #: share/html/Admin/Queues/CustomField.html:63 #. ($QueueObj->Name()) msgid "Modify a CustomField for queue %1" msgstr "Modifiera ett extrafält för kö %1" #: share/html/Admin/Queues/Scrip.html:66 #. ($QueueObj->Name) msgid "Modify a scrip for queue %1" msgstr "Modifiera ett scrip för kö %1" #: share/html/Admin/Global/Scrip.html:58 msgid "Modify a scrip that applies to all queues" msgstr "Modifiera ett scrip som gäller för alla köer" #: share/html/Elements/Tabs:162 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:167 msgid "Modify and Create Custom Fields for Articles" msgstr "" #: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317 #. ($ArticleObj->Id) msgid "Modify article #%1" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:147 share/html/Admin/CustomFields/Objects.html:155 #. ($CF->Name) #. ($Class->Name) msgid "Modify associated objects for %1" msgstr "Modifiera objekt associerade med %1" #: lib/RT/Queue.pm:98 msgid "Modify custom field values" msgstr "" #: share/html/Ticket/ModifyDates.html:48 #. ($TicketObj->Id) msgid "Modify dates for #%1" msgstr "Modifiera datum för #%1" #: share/html/Ticket/ModifyDates.html:57 #. ($TicketObj->Id) msgid "Modify dates for ticket # %1" msgstr "Modifiera datum för ärende # %1" #: share/html/Elements/Tabs:202 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:124 msgid "Modify global custom fields" msgstr "Modifiera globala extrafält" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:187 msgid "Modify global group rights" msgstr "Modifiera globala grupprättigheter" #: NOT FOUND IN SOURCE msgid "Modify global group rights." msgstr "Modifiera globala grupprättigheter." #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:192 msgid "Modify global user rights" msgstr "Modifiera globala användarrättigheter" #: NOT FOUND IN SOURCE msgid "Modify global user rights." msgstr "Modifiera globala användarrättigheter." #: lib/RT/Group.pm:102 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:95 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:94 msgid "Modify group metadata or delete group" msgstr "Modifiera gruppmetadata eller radera grupp" #: share/html/Admin/Articles/Classes/GroupRights.html:48 #. ($ClassObj->Name) msgid "Modify group rights for Class %1" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:70 #. ($CustomFieldObj->Name) msgid "Modify group rights for custom field %1" msgstr "Modifiera grupprättigheter för extrafält %1" #: share/html/Admin/Groups/GroupRights.html:48 #. ($GroupObj->Name) msgid "Modify group rights for group %1" msgstr "Modifiera grupprättigheter för grupp %1" #: share/html/Admin/Queues/GroupRights.html:48 #. ($QueueObj->Name) msgid "Modify group rights for queue %1" msgstr "Modifiera grupprättigheter för kö %1" #: NOT FOUND IN SOURCE msgid "Modify membership roster for this group" msgstr "Modifiera medlemskapslista för denna grupp" #: lib/RT/Class.pm:94 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:82 msgid "Modify one's own RT account" msgstr "Modifiera ens eget RT-konto" #: lib/RT/Class.pm:92 msgid "Modify or delete articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "Modify people related to queue %1" msgstr "Modifiera personer relaterade till kö %1" #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:57 #. ($Ticket->Id) #. ($Ticket->id) msgid "Modify people related to ticket #%1" msgstr "Modifiera personer relaterade till ärende #%1" #: lib/RT/Dashboard.pm:88 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:96 msgid "Modify queue watchers" msgstr "" #: share/html/Admin/Queues/Scrips.html:64 #. ($QueueObj->Name) msgid "Modify scrips for queue %1" msgstr "Modifiera scrips för kö %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:108 msgid "Modify scrips which apply to all queues" msgstr "Modifiera scrips som gäller för alla köer" #: lib/RT/Dashboard.pm:83 msgid "Modify system dashboards" msgstr "" #: share/html/Admin/Global/Template.html:90 #. (loc($TemplateObj->Name())) msgid "Modify template %1" msgstr "Modifiera mall %1" #: share/html/Admin/Queues/Template.html:114 #. (loc( $TemplateObj->Name()), $QueueObj->Name) msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modifiera mallar som gäller för alla köer" #: share/html/Admin/Articles/Classes/Modify.html:126 #. ($ClassObj->Name) msgid "Modify the Class %1" msgstr "" #: share/html/Dashboards/Queries.html:84 #. ($Dashboard->Name) msgid "Modify the content of dashboard %1" msgstr "" #: share/html/Dashboards/Modify.html:126 #. ($Dashboard->Name) msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:197 msgid "Modify the default \"RT at a glance\" view" msgstr "Justera den förvalda visningen av \"RT snabbtitt\"" #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:119 #. ($Group->Name) msgid "Modify the group %1" msgstr "Modifiera gruppen %1" #: NOT FOUND IN SOURCE msgid "Modify the queue watchers" msgstr "Modifiera kö-observatörerna" #: share/html/Dashboards/Subscription.html:284 #. ($Dashboard->Name) msgid "Modify the subscription to dashboard %1" msgstr "" #: share/html/Admin/Users/Modify.html:290 #. ($UserObj->Name) msgid "Modify the user %1" msgstr "Modifiera användaren %1" #: share/html/Articles/Article/Search.html:78 msgid "Modify this search..." msgstr "" #: share/html/Ticket/Elements/ShowRequestor:135 msgid "Modify this user" msgstr "" #: share/html/Ticket/ModifyAll.html:58 #. ($Ticket->Id) msgid "Modify ticket # %1" msgstr "Ändra ärende # %1" #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 #. ($TicketObj->Id) msgid "Modify ticket #%1" msgstr "Ändra ärende #%1" #: NOT FOUND IN SOURCE msgid "Modify ticket status" msgstr "Ändra ärendets status" #: lib/RT/Queue.pm:116 msgid "Modify tickets" msgstr "Ändra ärenden" #: share/html/Admin/Articles/Classes/Topics.html:59 #. ($ClassObj->Name) msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:95 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #: share/html/Admin/Articles/Classes/UserRights.html:48 #. ($ClassObj->Name) msgid "Modify user rights for class %1" msgstr "" #: share/html/Admin/CustomFields/UserRights.html:68 #. ($CustomFieldObj->Name) msgid "Modify user rights for custom field %1" msgstr "Modifiera användarrättigheter för extrafält %1" #: share/html/Admin/Groups/UserRights.html:48 #. ($GroupObj->Name) msgid "Modify user rights for group %1" msgstr "Modifiera användarrättigheter för grupp %1" #: share/html/Admin/Queues/UserRights.html:48 #. ($QueueObj->Name) msgid "Modify user rights for queue %1" msgstr "Modifiera användarrättigheter för kö %1" #: share/html/Ticket/ModifyPeople.html:60 #. ($Ticket->Id) msgid "Modify who receives mail for ticket #%1" msgstr "Ändra vem som får e-post för ärende #%1" #: lib/RT/Class.pm:97 lib/RT/Queue.pm:95 msgid "ModifyACL" msgstr "ModifieraACL" #: lib/RT/Class.pm:92 msgid "ModifyArticle" msgstr "" #: lib/RT/Class.pm:93 msgid "ModifyArticleTopics" msgstr "" #: lib/RT/CustomField.pm:208 lib/RT/Queue.pm:98 msgid "ModifyCustomField" msgstr "ModifieraExtraFält" #: lib/RT/Dashboard.pm:83 msgid "ModifyDashboard" msgstr "" #: lib/RT/Group.pm:102 msgid "ModifyGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "ModifyOwnDashboard" msgstr "" #: lib/RT/Group.pm:96 msgid "ModifyOwnMembership" msgstr "ModifieraEgetMedlemskap" #: lib/RT/Queue.pm:96 msgid "ModifyQueueWatchers" msgstr "ModifieraKöObservatörer" #: lib/RT/Queue.pm:103 msgid "ModifyScrips" msgstr "ModifieraScrips" #: lib/RT/System.pm:82 msgid "ModifySelf" msgstr "ModifieraSjälv" #: lib/RT/Queue.pm:100 msgid "ModifyTemplate" msgstr "ModifieraMall" #: lib/RT/Queue.pm:116 msgid "ModifyTicket" msgstr "ModifieraÄrende" #: share/html/Admin/Tools/Configuration.html:220 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "" #: NOT FOUND IN SOURCE msgid "Mon." msgstr "Mån." #: share/html/Dashboards/Subscription.html:106 msgid "Monday" msgstr "måndag" #: share/html/Dashboards/Subscription.html:100 msgid "Monday through Friday" msgstr "Måndag till fredag" #: lib/RT/Dashboard/Mailer.pm:330 lib/RT/Report/Tickets.pm:76 msgid "Monthly" msgstr "" #: NOT FOUND IN SOURCE msgid "More about %1" msgstr "Mer om %1" #: share/html/Ticket/Elements/ShowRequestor:67 msgid "More about the requestors" msgstr "" #: share/html/Admin/Elements/PickCustomFields:85 msgid "Move down" msgstr "Flytta ner" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Admin/Elements/PickCustomFields:77 msgid "Move up" msgstr "Flytta upp" #: share/html/Admin/Elements/SelectSingleOrMultiple:50 msgid "Multiple" msgstr "Flera" #: lib/RT/User.pm:167 msgid "Must specify 'Name' attribute" msgstr "'Namn'-attribut måste specificeras" #: share/html/SelfService/Elements/MyRequests:62 #. ($friendly_status) msgid "My %1 tickets" msgstr "Mina %1 ärenden" #: share/html/Elements/Tabs:458 msgid "My Approvals" msgstr "" #: share/html/Elements/Tabs:436 msgid "My Day" msgstr "Min dag" #: share/html/Elements/Tabs:443 msgid "My Reminders" msgstr "" #: etc/initialdata:615 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mina godkännanden" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "" #: share/html/Elements/MyReminders:51 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mina sparade sökningar" #: etc/RT_Config.pm:1124 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:634 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1124 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "NEWLINE" msgstr "" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/CustomFields/Modify.html:58 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:64 share/html/Admin/Tools/Configuration.html:196 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:49 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Dashboards/Modify.html:63 share/html/Elements/RT__Article/ColumnMap:60 share/html/Elements/RT__Class/ColumnMap:60 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__User/ColumnMap:61 share/html/Search/Bulk.html:171 msgid "Name" msgstr "Namn" #: lib/RT/Config.pm:177 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:115 lib/RT/User.pm:282 msgid "Name in use" msgstr "Namn som används" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:331 share/html/Elements/RT__Dashboard/ColumnMap:107 share/html/Ticket/Elements/ShowDates:80 share/html/m/ticket/show:409 msgid "Never" msgstr "Aldrig" #: share/html/Elements/RT__Ticket/ColumnMap:251 msgid "New" msgstr "" #: share/html/Elements/Tabs:810 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:421 msgid "New Dashboard" msgstr "" #: share/html/Elements/EditLinks:118 share/html/Ticket/Elements/BulkLinks:122 msgid "New Links" msgstr "Nya länkar" #: NOT FOUND IN SOURCE msgid "New Password" msgstr "Nytt lösenord" #: etc/initialdata:330 etc/upgrade/3.8.2/content:36 msgid "New Pending Approval" msgstr "Nytt väntande godkännande" #: share/html/Elements/Tabs:426 msgid "New Search" msgstr "Ny sökning" #: NOT FOUND IN SOURCE msgid "New custom field" msgstr "Nytt extrafält" #: NOT FOUND IN SOURCE msgid "New group" msgstr "Ny grupp" #: share/html/Elements/RT__Ticket/ColumnMap:246 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nytt lösenord" #: lib/RT/User.pm:782 msgid "New password notification sent" msgstr "Nytt lösenordmeddelande skickat" #: NOT FOUND IN SOURCE msgid "New queue" msgstr "Ny kö" #: share/html/Ticket/Elements/Reminders:116 msgid "New reminder:" msgstr "Ny påminnelse:" #: share/html/Admin/Elements/SelectRights:72 msgid "New rights" msgstr "Nya rättigheter" #: NOT FOUND IN SOURCE msgid "New scrip" msgstr "Nytt scrip" #: NOT FOUND IN SOURCE msgid "New template" msgstr "Ny mall" #: share/html/Elements/Tabs:854 share/html/Elements/Tabs:856 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nytt ärende" #: lib/RT/Ticket.pm:2677 msgid "New ticket doesn't exist" msgstr "Nytt ärende finns ej" #: lib/RT/Ticket.pm:311 #. ($self->loc($args{'Status'})) msgid "New tickets can not have status '%1' in this queue." msgstr "Nya ärenden kan inte ha status '%1' i den här kön." #: NOT FOUND IN SOURCE msgid "New user" msgstr "Ny användare" #: share/html/Admin/Elements/CreateUserCalled:49 msgid "New user called" msgstr "Ny användare anropad" #: share/html/Admin/Queues/People.html:72 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nya observatörer" #: share/html/Elements/CollectionListPaging:106 share/html/Elements/Tabs:658 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Nästa" #: NOT FOUND IN SOURCE msgid "Next Page" msgstr "Nästa sida" #: lib/RT/Report/Tickets.pm:65 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:71 share/html/User/Prefs.html:72 msgid "Nickname" msgstr "Smeknamn" #: share/html/Articles/Article/Delete.html:62 share/html/Elements/RT__Ticket/ColumnMap:248 share/html/Widgets/Form/Boolean:79 msgid "No" msgstr "" #: lib/RT/SharedSetting.pm:241 #. ($self->ObjectName) msgid "No %1 loaded" msgstr "" #: share/html/SelfService/Article/Search.html:66 #. ($Articles_Content) msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ingen klass definierad" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:187 share/html/Admin/Elements/EditCustomField:121 msgid "No CustomField" msgstr "Inget extrafält" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Inget extrafält definierat" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ingen grupp definierad" #: lib/RT/Tickets_SQL.pm:290 msgid "No Query" msgstr "Ingen söksträng" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ingen kö definierad" #: bin/rt-crontool:124 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: NOT FOUND IN SOURCE msgid "No RT user found. Please consult your RT administrator.\\n" msgstr "Ingen RT-användare funnen. Var god kontakta din RT administratör.\\n" #: share/html/Search/Elements/ResultsRSSView:125 msgid "No Subject" msgstr "" #: share/html/Admin/Global/Template.html:88 share/html/Admin/Queues/Template.html:86 msgid "No Template" msgstr "Ingen mall" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ingen handling" #: lib/RT/Record.pm:969 msgid "No column specified" msgstr "Ingen kolumn specificerad" #: share/html/Ticket/Elements/ShowRequestor:84 msgid "No comment entered about this user" msgstr "Ingen kommentar inlagd om denna användare" #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 #. (ref $self) msgid "No description for %1" msgstr "Ingen beskrivning för %1" #: share/html/SelfService/Error.html:69 msgid "No details" msgstr "" #: lib/RT/Users.pm:182 msgid "No group specified" msgstr "Ingen grupp specificerad" #: share/html/Admin/Groups/index.html:80 msgid "No groups matching search criteria found." msgstr "Inga grupper som matchar sökkriterierna hittades." #: lib/RT/Attachment.pm:746 msgid "No key suitable for encryption" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:50 msgid "No keys for this address" msgstr "" #: lib/RT/Ticket.pm:2234 msgid "No message attached" msgstr "Inget bifogat meddelande" #: lib/RT/CustomField.pm:464 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:726 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:851 msgid "No password set" msgstr "Inget lösenord satt" #: lib/RT/Queue.pm:401 msgid "No permission to create queues" msgstr "Ingen tillåtelse att skapa köer" #: lib/RT/Ticket.pm:293 lib/RT/Ticket.pm:849 #. ($QueueObj->Name) msgid "No permission to create tickets in the queue '%1'" msgstr "Ingen tillåtelse att skapa ärenden i kö '%1'" #: NOT FOUND IN SOURCE msgid "No permission to create users" msgstr "Ingen tillåtelse att skapa användare" #: share/html/SelfService/Display.html:175 msgid "No permission to display that ticket" msgstr "Ingen tillåtelse att visa det ärendet" #: share/html/Articles/Article/Delete.html:92 msgid "No permission to modify article" msgstr "" #: share/html/Search/Elements/EditSearches:243 msgid "No permission to save system-wide searches" msgstr "Ingen tillåtelse att spara systemomfattande sökningar" #: lib/RT/User.pm:1378 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:324 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:108 msgid "No permission to view update ticket" msgstr "Ingen tillåtelse att visa uppdatera ärende" #: lib/RT/Queue.pm:1011 lib/RT/Ticket.pm:1198 msgid "No principal specified" msgstr "Ingen principal specificerad" #: share/html/Admin/Queues/People.html:172 share/html/Admin/Queues/People.html:186 msgid "No principals selected." msgstr "Inga principaler valda." #: share/html/Admin/Users/GnuPG.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:56 msgid "No queues matching search criteria found." msgstr "Inga köer som matchar sökkriterierna hittades." #: lib/RT/ACE.pm:217 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "No rights found" msgstr "Inga rättigheter funna" #: share/html/Admin/Elements/SelectRights:64 msgid "No rights granted." msgstr "Inga rättigheter tilldelade." #: NOT FOUND IN SOURCE msgid "No search loaded" msgstr "Ingen sökning inmatad" #: share/html/Search/Bulk.html:258 msgid "No search to operate on." msgstr "Ingen sökning att arbeta med." #: share/html/Elements/RT__Ticket/ColumnMap:101 msgid "No subject" msgstr "Inget ämne" #: lib/RT/User.pm:1649 msgid "No such key or it's not suitable for signing" msgstr "" #: share/html/Search/Chart:140 msgid "No tickets found." msgstr "Inga ärenden funna." #: lib/RT/Transaction.pm:605 lib/RT/Transaction.pm:629 msgid "No transaction type specified" msgstr "Ingen transaktionstyp specificerad" #: share/html/Elements/GnuPG/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:91 msgid "No users matching search criteria found." msgstr "Inga användare som matchar sökkriterierna hittades." #: lib/RT/Record.pm:966 msgid "No value sent to _Set!" msgstr "" #: NOT FOUND IN SOURCE msgid "No value sent to _Set!\\n" msgstr "Det skickades inget värde till _Set!\\n" #: share/html/Elements/QuickCreate:65 msgid "Nobody" msgstr "Ingen" #: share/html/Elements/RT__Dashboard/ColumnMap:76 msgid "None" msgstr "" #: lib/RT/Record.pm:971 msgid "Nonexistant field?" msgstr "Icke-existerande fält?" #: NOT FOUND IN SOURCE msgid "Not Set" msgstr "Ej inställd" #: lib/RT/CustomField.pm:500 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ej inloggad." #: lib/RT/Date.pm:399 share/html/Elements/ShowReminders:73 share/html/Ticket/Elements/Reminders:169 msgid "Not set" msgstr "Ej inställd" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/NoAuth/Reminder.html:50 msgid "Not yet implemented." msgstr "Har ännu inte implementerats." #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Anteckningar" #: lib/RT/User.pm:784 msgid "Notification could not be sent" msgstr "Meddelande kunde inte skickas" #: etc/initialdata:57 msgid "Notify AdminCcs" msgstr "Meddela mottagare av adminkopia" #: etc/initialdata:53 msgid "Notify AdminCcs as Comment" msgstr "Meddela mottagare av adminkopia som kommentar" #: etc/initialdata:49 etc/upgrade/3.1.17/content:6 msgid "Notify Ccs" msgstr "Meddela mottagare av kopia" #: etc/initialdata:45 etc/upgrade/3.1.17/content:2 msgid "Notify Ccs as Comment" msgstr "Meddela mottagare av kopia som kommentar" #: etc/initialdata:84 msgid "Notify Other Recipients" msgstr "Meddela andra mottagare" #: etc/initialdata:80 msgid "Notify Other Recipients as Comment" msgstr "Meddela andra mottagare som kommentar" #: etc/initialdata:41 msgid "Notify Owner" msgstr "Meddela ägare" #: etc/initialdata:37 msgid "Notify Owner as Comment" msgstr "Meddela ägare som kommentar" #: etc/initialdata:379 etc/upgrade/3.8.2/content:85 msgid "Notify Owner of their rejected ticket" msgstr "Meddela ägare att dess ärende avvisats" #: etc/initialdata:392 etc/upgrade/3.8.2/content:98 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by all approvers" msgstr "Meddela ägare om dess ärende har godkänts av alla godkännare" #: NOT FOUND IN SOURCE msgid "Notify Owner of their ticket has been approved by some approver" msgstr "Meddela ägare om dess ärende har godkänts av någon godkännare" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:76 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:72 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:332 etc/upgrade/3.8.2/content:38 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Meddela ägare och mottagare av adminkopia om nya ämnen väntar på deras godkännande" #: etc/initialdata:365 etc/upgrade/3.8.2/content:71 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:351 etc/upgrade/3.8.2/content:57 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:33 msgid "Notify Requestors" msgstr "Meddela anmälare" #: etc/initialdata:67 msgid "Notify Requestors and Ccs" msgstr "Meddela anmälare och mottagare av kopia" #: etc/initialdata:62 msgid "Notify Requestors and Ccs as Comment" msgstr "Meddela anmälare och mottagare av kopia som kommentar" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs" msgstr "Meddela rekvirenter, kopia-mottagare och Admin.kopia-mottagare" #: NOT FOUND IN SOURCE msgid "Notify Requestors, Ccs and AdminCcs as Comment" msgstr "Meddela rekvirenter, kopia-mottagare och Admin.kopia-mottagare som kommentar" #: lib/RT/Config.pm:361 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: NOT FOUND IN SOURCE msgid "Nov." msgstr "Nov." #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ELLER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt kan ej skapas" #: lib/RT/Record.pm:126 msgid "Object could not be deleted" msgstr "Objekt kan ej raderas" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:183 msgid "Object created" msgstr "Objekt har skapats" #: lib/RT/Record.pm:123 msgid "Object deleted" msgstr "Objekt har raderats" #: NOT FOUND IN SOURCE msgid "Object of type %1 cannot take custom fields" msgstr "Objekt av typen %1 kan inte hantera extrafält" #: lib/RT/CustomField.pm:1416 msgid "Object type mismatch" msgstr "Objekten är av olika typer" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: NOT FOUND IN SOURCE msgid "Oct." msgstr "Okt." #: share/html/Elements/Tabs:450 msgid "Offline" msgstr "Offline" #: NOT FOUND IN SOURCE msgid "Offline edits" msgstr "Offline-redigeringar" #: share/html/Tools/Offline.html:48 msgid "Offline upload" msgstr "Offline upload" #: lib/RT/Transaction.pm:400 #. ($self->CreatedAsString, $self->CreatorObj->Name) msgid "On %1, %2 wrote:" msgstr "Vid %1, skrev %2:" #: etc/initialdata:199 etc/upgrade/3.7.1/content:2 msgid "On Close" msgstr "" #: etc/initialdata:143 msgid "On Comment" msgstr "Vid kommentar" #: etc/initialdata:115 msgid "On Correspond" msgstr "Vid brevväxling" #: etc/initialdata:104 msgid "On Create" msgstr "Vid skapande" #: etc/initialdata:122 etc/upgrade/4.0.3/content:4 msgid "On Forward" msgstr "" #: etc/initialdata:129 etc/upgrade/4.0.3/content:11 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:136 etc/upgrade/4.0.3/content:18 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:164 msgid "On Owner Change" msgstr "Vid ägarbyte" #: etc/initialdata:157 etc/upgrade/3.1.17/content:15 msgid "On Priority Change" msgstr "Vid prioritetsändring" #: etc/initialdata:172 msgid "On Queue Change" msgstr "Vid köbyte" #: etc/initialdata:185 etc/upgrade/3.8.3/content:2 msgid "On Reject" msgstr "" #: etc/initialdata:204 etc/upgrade/3.7.1/content:7 msgid "On Reopen" msgstr "" #: etc/initialdata:178 msgid "On Resolve" msgstr "När åtgärdats" #: etc/initialdata:149 msgid "On Status Change" msgstr "Vid statusändring" #: etc/initialdata:109 msgid "On Transaction" msgstr "Vid transaktion" #: share/html/Ticket/Elements/UpdateCc:68 share/html/m/ticket/reply:102 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:100 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:281 msgid "Only for entry, not display" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 #. (qq{") msgid "Only show approvals for requests created after %1" msgstr "Visa endast godkännanden för förfrågningar som skapats efter %1" #: share/html/Approvals/Elements/PendingMyApproval:66 #. (qq{") msgid "Only show approvals for requests created before %1" msgstr "Visa endast godkännanden för förfrågningar som skapats före %1" #: share/html/Admin/CustomFields/index.html:72 msgid "Only show custom fields for:" msgstr "Visa endast extrafält för:" #: etc/RT_Config.pm:2437 etc/RT_Config.pm:2466 etc/RT_Config.pm:2513 etc/RT_Config.pm:2542 msgid "Open It" msgstr "" #: etc/initialdata:95 msgid "Open Tickets" msgstr "Öppna ärenden" #: share/html/Elements/MakeClicky:58 msgid "Open URL" msgstr "" #: NOT FOUND IN SOURCE msgid "Open it" msgstr "Öppna" #: share/html/Elements/Tabs:859 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Öppna ärenden" #: etc/initialdata:96 msgid "Open tickets on correspondence" msgstr "Öppna ärenden om brevväxling sker" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Elements/Tabs:481 share/html/Prefs/MyRT.html:67 msgid "Options" msgstr "Alternativ" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sortera efter" #: lib/RT/Report/Tickets.pm:65 share/html/Admin/Users/Modify.html:125 share/html/Elements/RT__User/ColumnMap:81 share/html/User/Prefs.html:127 msgid "Organization" msgstr "Organisation" #: share/html/Approvals/Elements/Approve:55 #. ($approving->Id, $approving->Subject) msgid "Originating ticket: #%1" msgstr "Ursprungligt ärende: #%1" #: lib/RT/Transaction.pm:702 msgid "Outgoing email about a comment recorded" msgstr "Utgående e-postmeddelande om en kommentar har sparats" #: lib/RT/Transaction.pm:706 msgid "Outgoing email recorded" msgstr "Utgående e-postmeddelande har sparats" #: lib/RT/Config.pm:489 msgid "Outgoing mail" msgstr "" #: share/html/Admin/Queues/Modify.html:93 msgid "Over time, priority moves toward" msgstr "Tiden överskriden, prioritet rör sig mot" #: share/html/Elements/Tabs:431 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:115 msgid "Own tickets" msgstr "Egna ärenden" #: lib/RT/Queue.pm:115 msgid "OwnTicket" msgstr "EgetÄrende" #: lib/RT/ACE.pm:99 lib/RT/Graph/Tickets.pm:154 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:105 lib/RT/Tickets.pm:2467 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:274 share/html/Elements/RT__Ticket/ColumnMap:89 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/EditPeople:67 share/html/Ticket/Elements/Reminders:130 share/html/Ticket/Elements/Reminders:152 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:263 share/html/m/ticket/reply:67 share/html/m/ticket/show:291 msgid "Owner" msgstr "Ägare" #: lib/RT/Ticket.pm:661 #. ($DeferOwner->Name) msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #: lib/RT/Ticket.pm:3039 #. ($OldOwnerObj->Name, $NewOwnerObj->Name) msgid "Owner changed from %1 to %2" msgstr "" #: lib/RT/Ticket.pm:396 lib/RT/Ticket.pm:411 msgid "Owner could not be set." msgstr "Ägare kan inte anges." #: lib/RT/Transaction.pm:756 lib/RT/Transaction.pm:926 #. ($Old->Name , $New->Name) #. ($Old->Name, $New->Name) msgid "Owner forcibly changed from %1 to %2" msgstr "Ägare har godtyckligt ändrats från %1 till %2" #: share/html/Search/Elements/BuildFormatString:100 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: NOT FOUND IN SOURCE msgid "Page %1 of %2" msgstr "Sida %1 av %2" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:182 share/html/User/Prefs.html:100 msgid "Pager" msgstr "Personsökare" #: share/html/Elements/RT__User/ColumnMap:101 msgid "Pager Phone" msgstr "" #: share/html/Elements/EditLinks:146 share/html/Elements/EditLinks:73 share/html/Elements/ShowLinks:97 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:256 share/html/Ticket/Elements/BulkLinks:139 share/html/Ticket/Elements/BulkLinks:74 share/html/m/ticket/create:397 share/html/m/ticket/show:458 msgid "Parents" msgstr "Föräldrar" #: share/html/Elements/Login:75 share/html/User/Prefs.html:117 share/html/m/_elements/login:77 msgid "Password" msgstr "Lösenord" #: share/html/NoAuth/Reminder.html:48 msgid "Password Reminder" msgstr "Lösenordpåminnelse" #: lib/RT/Transaction.pm:878 lib/RT/User.pm:862 msgid "Password changed" msgstr "Lösenord ändrat" #: lib/RT/User.pm:828 msgid "Password has not been set." msgstr "" #: lib/RT/User.pm:301 #. (RT->Config->Get('MinimumPasswordLength')) msgid "Password needs to be at least %1 characters long" msgstr "Lösenord måste vara minst %1 tecken långt" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:861 msgid "Password set" msgstr "Lösenord har satts" #: share/html/SelfService/Prefs.html:76 share/html/User/Prefs.html:263 #. ($msg) msgid "Password: %1" msgstr "Lösenord: %1" #: lib/RT/User.pm:847 msgid "Password: Permission Denied" msgstr "Lösenord: Tillgång nekas" #: etc/initialdata:463 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:824 msgid "Passwords do not match." msgstr "Lösenorden överenstämmer inte med varandra" #: NOT FOUND IN SOURCE msgid "Passwords do not match. Your password has not been changed" msgstr "Lösenorden överenstämmer inte med varandra. Ditt lösenord har inte ändrats" #: lib/RT/Installer.pm:189 msgid "Path to sendmail" msgstr "" #: share/html/Elements/Tabs:553 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:73 share/html/m/ticket/show:287 msgid "People" msgstr "Personer" #: share/html/Admin/Queues/People.html:188 #. ($QueueObj->Name) msgid "People related to queue %1" msgstr "" #: etc/initialdata:89 msgid "Perform a user-defined action" msgstr "Genomför en användardefinierad handling" #: share/html/Admin/Elements/ModifyTemplate:60 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:252 msgid "Perl configuration" msgstr "Perl-konfiguration" #: share/html/Admin/Tools/Configuration.html:182 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:231 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:332 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:416 lib/RT/Article.pm:468 lib/RT/Article.pm:492 lib/RT/Article.pm:576 lib/RT/Attachment.pm:712 lib/RT/Attachment.pm:713 lib/RT/Attachment.pm:774 lib/RT/Attachment.pm:775 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:390 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1374 lib/RT/CustomField.pm:1420 lib/RT/CustomField.pm:1463 lib/RT/CustomField.pm:1603 lib/RT/CustomField.pm:1744 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:549 lib/RT/CustomField.pm:576 lib/RT/CustomField.pm:964 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1061 lib/RT/Group.pm:1113 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:656 lib/RT/Group.pm:886 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1234 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:577 lib/RT/Queue.pm:603 lib/RT/Queue.pm:629 lib/RT/Queue.pm:854 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Scrip.pm:526 lib/RT/Scrip.pm:531 lib/RT/Scrip.pm:539 lib/RT/Template.pm:106 lib/RT/Template.pm:116 lib/RT/Template.pm:121 lib/RT/Template.pm:240 lib/RT/Template.pm:245 lib/RT/Template.pm:254 lib/RT/Template.pm:281 lib/RT/Template.pm:411 lib/RT/Template.pm:636 lib/RT/Template.pm:653 lib/RT/Template.pm:671 lib/RT/Ticket.pm:1072 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1085 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1241 lib/RT/Ticket.pm:1255 lib/RT/Ticket.pm:1350 lib/RT/Ticket.pm:1697 lib/RT/Ticket.pm:1955 lib/RT/Ticket.pm:2122 lib/RT/Ticket.pm:2172 lib/RT/Ticket.pm:2463 lib/RT/Ticket.pm:2476 lib/RT/Ticket.pm:2555 lib/RT/Ticket.pm:2568 lib/RT/Ticket.pm:2668 lib/RT/Ticket.pm:2682 lib/RT/Ticket.pm:2941 lib/RT/Ticket.pm:2952 lib/RT/Ticket.pm:2958 lib/RT/Ticket.pm:3167 lib/RT/Ticket.pm:3241 lib/RT/Ticket.pm:3471 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:601 lib/RT/Transaction.pm:623 lib/RT/User.pm:1095 lib/RT/User.pm:134 lib/RT/User.pm:1511 lib/RT/User.pm:1634 lib/RT/User.pm:323 lib/RT/User.pm:730 lib/RT/User.pm:765 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84 msgid "Permission Denied" msgstr "Tillgång nekas" #: lib/RT/SharedSetting.pm:112 lib/RT/SharedSetting.pm:204 lib/RT/SharedSetting.pm:245 lib/RT/SharedSetting.pm:277 lib/RT/Topic.pm:88 share/html/Admin/Global/MyRT.html:98 share/html/Dashboards/Modify.html:95 msgid "Permission denied" msgstr "Tillgång nekas" #: NOT FOUND IN SOURCE msgid "Permissions denied" msgstr "Tillgång nekas" #: NOT FOUND IN SOURCE msgid "Personal Groups" msgstr "Personliga grupper" #: NOT FOUND IN SOURCE msgid "Personal groups" msgstr "Personliga grupper" #: NOT FOUND IN SOURCE msgid "Personal groups:" msgstr "Personliga grupper:" #: share/html/Admin/Users/Modify.html:164 share/html/User/Prefs.html:85 msgid "Phone numbers" msgstr "Telefonnummer" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:819 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:821 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #: share/html/Elements/ShowSearch:96 share/html/m/tickets/search:81 #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:873 share/html/SelfService/Prefs.html:48 share/html/User/Prefs.html:48 msgid "Preferences" msgstr "Inställningar" #: NOT FOUND IN SOURCE msgid "Preferences %1 for user %2 ." msgstr "Preferenser %1 för användare %2 ." #: share/html/Admin/Users/MyRT.html:118 #. ($pane, $UserObj->Name) msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/MyRT.html:159 share/html/Prefs/MyRT.html:94 #. ($pane) #. (loc('summary rows')) msgid "Preferences saved for %1." msgstr "Inställningarna har sparats för %1." #: share/html/Admin/Users/MyRT.html:77 #. ($UserObj->Name) msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/MyRT.html:101 share/html/Prefs/Other.html:103 share/html/Prefs/Quicksearch.html:96 share/html/Prefs/Search.html:104 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: share/html/Prefs/Other.html:88 #. ($msg) msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Förbered tömning" #: share/html/Elements/Tabs:653 msgid "Prev" msgstr "Föreg." #: share/html/Elements/CollectionListPaging:103 msgid "Previous" msgstr "" #: NOT FOUND IN SOURCE msgid "Previous Page" msgstr "Föregående sida" #: lib/RT/ACE.pm:152 lib/RT/ACE.pm:237 #. ($args{'PrincipalId'}) msgid "Principal %1 not found." msgstr "Principal %1 ej funnen." #: sbin/rt-email-digest:96 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:98 msgid "Print this message" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:2271 share/html/Elements/RT__Queue/ColumnMap:66 share/html/Elements/RT__Ticket/ColumnMap:131 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:186 share/html/Ticket/Create.html:206 share/html/Ticket/Elements/ShowBasics:76 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:341 share/html/m/ticket/show:243 msgid "Priority" msgstr "Prioritet" #: share/html/Admin/Queues/Modify.html:88 msgid "Priority starts at" msgstr "Prioritet börjar vid" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privat:" #: share/html/Admin/Users/GnuPG.html:66 msgid "Private Key" msgstr "" #: lib/RT/Handle.pm:667 share/html/Admin/Users/Modify.html:111 msgid "Privileged" msgstr "Privilegierad" #: share/html/Admin/Users/Modify.html:324 share/html/User/Prefs.html:253 #. (loc_fuzzy($msg)) msgid "Privileged status: %1" msgstr "Privilegierad status: %1" #: share/html/Admin/Users/index.html:133 msgid "Privileged users" msgstr "Privilegierade användare" #: bin/rt-crontool:182 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:681 msgid "Pseudogroup for internal use" msgstr "Pseudogrupp för internt bruk" #: share/html/Ticket/Elements/ShowGnuPGStatus:150 #. ($line->{'Key'}) msgid "Public key '0x%1' is required to verify signature" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Frågor" #: share/html/Elements/RT__SavedSearch/ColumnMap:66 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:152 msgid "Query" msgstr "" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Söksträngsbyggare" #: NOT FOUND IN SOURCE msgid "Query:" msgstr "Söksträng:" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Record.pm:956 lib/RT/Report/Tickets.pm:61 lib/RT/Tickets.pm:101 lib/RT/Tickets.pm:2114 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:61 share/html/Elements/RT__Scrip/ColumnMap:68 share/html/Elements/RT__Template/ColumnMap:71 share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:85 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:57 share/html/Ticket/Elements/ShowBasics:82 share/html/m/ticket/create:251 share/html/m/ticket/show:247 msgid "Queue" msgstr "Kö" #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrip.html:58 share/html/Admin/Queues/Scrips.html:66 share/html/Admin/Queues/Templates.html:58 #. ($Queue) #. ($id) msgid "Queue %1 not found" msgstr "Kö %1 ej funnen" #: share/html/Admin/Queues/Modify.html:59 msgid "Queue Name" msgstr "Könamn" #: lib/RT/Queue.pm:553 msgid "Queue already exists" msgstr "Kö finns redan" #: lib/RT/Queue.pm:421 lib/RT/Queue.pm:427 msgid "Queue could not be created" msgstr "Kö kan ej skapas" #: share/html/Ticket/Create.html:350 share/html/index.html:94 share/html/m/ticket/create:144 msgid "Queue could not be loaded." msgstr "Kö kan ej inläsas." #: lib/RT/Queue.pm:444 msgid "Queue created" msgstr "Kö har skapats" #: lib/RT/Queue.pm:483 msgid "Queue disabled" msgstr "" #: lib/RT/Queue.pm:485 msgid "Queue enabled" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:80 msgid "Queue id" msgstr "Kö-ID" #: lib/RT/CustomField.pm:337 share/html/SelfService/Display.html:109 msgid "Queue not found" msgstr "Kö ej funnen" #: share/html/Elements/GnuPG/SelectKeyForSigning:50 share/html/Elements/GnuPG/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:143 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:142 msgid "QueueCc" msgstr "" #: share/html/Search/Elements/BuildFormatString:100 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:144 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:1674 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:138 share/html/Elements/Tabs:240 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Köer" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Köer som jag administrerar" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Köer som jag står som mottagare av adminkopia för" #: lib/RT/Config.pm:416 msgid "Quick Create" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/Quicksearch:50 share/html/Elements/Tabs:485 share/html/Prefs/Quicksearch.html:69 msgid "Quick search" msgstr "Snabbsökning" #: share/html/Elements/QuickCreate:49 msgid "Quick ticket creation" msgstr "Snabbt ärendeskapande" #: etc/RT_Config.pm:1124 etc/initialdata:627 msgid "QuickCreate" msgstr "" #: etc/RT_Config.pm:1124 etc/initialdata:638 msgid "Quicksearch" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:768 msgid "RSS" msgstr "RSS" #: NOT FOUND IN SOURCE msgid "RT %1 for %2" msgstr "RT %1 för %2" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT-administration" #: lib/RT/Installer.pm:165 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:72 share/html/SelfService/Error.html:64 msgid "RT Error" msgstr "RT-fel" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: NOT FOUND IN SOURCE msgid "RT Variables" msgstr "RT-variabler" #: lib/RT/Config.pm:306 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:56 share/html/Admin/Users/MyRT.html:64 share/html/Elements/Tabs:196 share/html/Elements/Tabs:310 share/html/Elements/Tabs:484 share/html/Prefs/MyRT.html:60 share/html/Prefs/MyRT.html:84 share/html/index.html:4 msgid "RT at a glance" msgstr "RT-snabbtitt" #: share/html/Admin/Users/MyRT.html:73 #. ($UserObj->Name) msgid "RT at a glance for the user %1" msgstr "RT-snabbtitt för användaren %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:114 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan innehålla innehåll från annan webbtjänst när detta extrafält visas." #: share/html/Admin/CustomFields/Modify.html:106 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan göra alternativen för detta extrafält till hyperlänkar till annan tjänst." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #: lib/RT/Interface/Web/Session.pm:279 msgid "RT couldn't store your session." msgstr "RT har inte utrymme för din session." #: share/html/Elements/Logo:61 share/html/m/_elements/header:49 share/html/m/_elements/login:53 share/html/m/index.html:48 #. (RT->Config->Get('rtname')) msgid "RT for %1" msgstr "RT för %1" #: share/html/Elements/CSRF:55 #. ($strong_start, $strong_end, $Reason, $action) msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:158 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #: NOT FOUND IN SOURCE msgid "RT will look for anything else you enter in ticket subjects." msgstr "RT kommer att söka efter allt annat som du skriver in i ärendeämnen." #: share/html/Admin/CustomFields/Modify.html:108 share/html/Admin/CustomFields/Modify.html:116 #. ('__id__', '__CustomField__') msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT kommer att ersätta %1 och %2 med register-ID och extrafältvärde respektive" #: NOT FOUND IN SOURCE msgid "RT will replace __id__ and __CustomField__ with the record id and custom field value, respectively" msgstr "RT kommer att ersätta __id__ och __ExtraFält__ med register-ID och extrafältvärde respektive" #: lib/RT/Installer.pm:144 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Queues/Modify.html:225 #. ($address) msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:2469 etc/RT_Config.pm:2473 etc/RT_Config.pm:2545 etc/RT_Config.pm:2549 msgid "Re-open" msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:66 share/html/User/Prefs.html:69 msgid "Real Name" msgstr "Fullständigt namn" #: lib/RT/Report/Tickets.pm:65 msgid "RealName" msgstr "" #: share/html/Dashboards/Subscription.html:171 msgid "Recipient" msgstr "" #: share/html/Dashboards/Subscription.html:239 msgid "Recipient must be an email address" msgstr "" #: share/html/Ticket/Elements/ShowSimplifiedRecipients:78 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:73 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:69 msgid "Recursive member" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #: lib/RT/Transaction.pm:808 #. ($value) msgid "Reference by %1 added" msgstr "Referens från %1 tillagd" #: lib/RT/Transaction.pm:847 #. ($value) msgid "Reference by %1 deleted" msgstr "Referens från %1 raderad" #: lib/RT/Transaction.pm:805 #. ($value) msgid "Reference to %1 added" msgstr "Referens till %1 tillagd" #: lib/RT/Transaction.pm:844 #. ($value) msgid "Reference to %1 deleted" msgstr "Referens till %1 raderad" #: share/html/Articles/Article/Elements/EditLinks:84 share/html/Articles/Article/Elements/ShowLinks:70 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/EditLinks:100 share/html/Elements/EditLinks:158 share/html/Elements/ShowLinks:127 share/html/Ticket/Create.html:259 share/html/Ticket/Elements/BulkLinks:104 share/html/Ticket/Elements/BulkLinks:151 share/html/m/ticket/create:400 share/html/m/ticket/show:476 msgid "Referred to by" msgstr "Hänvisas från" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:124 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:58 share/html/Articles/Article/Elements/ShowLinks:48 share/html/Elements/EditLinks:154 share/html/Elements/EditLinks:91 share/html/Elements/SelectLinkType:51 share/html/Elements/ShowLinks:113 share/html/Ticket/Create.html:258 share/html/Ticket/Elements/BulkLinks:147 share/html/Ticket/Elements/BulkLinks:94 share/html/m/ticket/create:399 share/html/m/ticket/show:466 msgid "Refers to" msgstr "Hänvisar till" #: lib/RT/Graph/Tickets.pm:156 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Graphs/Elements/EditGraphProperties:138 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Uppdatera" #: lib/RT/Config.pm:317 msgid "Refresh home page every 10 minutes." msgstr "Läs in startsidan igen var 10 minut." #: lib/RT/Config.pm:320 msgid "Refresh home page every 120 minutes." msgstr "Läs in startsidan igen var 120 minut." #: lib/RT/Config.pm:315 msgid "Refresh home page every 2 minutes." msgstr "Läs in startsidan igen varannan minut." #: lib/RT/Config.pm:318 msgid "Refresh home page every 20 minutes." msgstr "Läs in startsidan igen var 20 minut." #: lib/RT/Config.pm:316 msgid "Refresh home page every 5 minutes." msgstr "Läs in startsidan igen var 5 minut." #: lib/RT/Config.pm:319 msgid "Refresh home page every 60 minutes." msgstr "Läs in startsidan igen var 60 minut." #: lib/RT/Config.pm:296 msgid "Refresh search results every 10 minutes." msgstr "Läs in sökresultaten igen var 10 minut." #: lib/RT/Config.pm:299 msgid "Refresh search results every 120 minutes." msgstr "Läs in sökresultaten igen var 120 minut." #: lib/RT/Config.pm:294 msgid "Refresh search results every 2 minutes." msgstr "Läs in sökresultaten igen varannan minut." #: lib/RT/Config.pm:297 msgid "Refresh search results every 20 minutes." msgstr "Läs in sökresultaten igen var 20 minut." #: lib/RT/Config.pm:295 msgid "Refresh search results every 5 minutes." msgstr "Läs in sökresultaten igen var 5 minut." #: lib/RT/Config.pm:298 msgid "Refresh search results every 60 minutes." msgstr "Läs in sökresultaten igen var 60 minut." #: share/html/Elements/Refresh:59 #. ($value/60) msgid "Refresh this page every %1 minutes." msgstr "Läs in denna sida igen var %1 minut." #: etc/RT_Config.pm:1124 etc/initialdata:646 msgid "RefreshHomepage" msgstr "" #: etc/RT_Config.pm:2445 etc/RT_Config.pm:2461 etc/RT_Config.pm:2521 etc/RT_Config.pm:2537 msgid "Reject" msgstr "" #: lib/RT/Config.pm:164 msgid "Remember default queue" msgstr "" #: share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:81 msgid "Reminder" msgstr "" #: lib/RT/Interface/Web.pm:2632 lib/RT/Transaction.pm:944 #. ($args->{'NewReminder-Subject'}) #. ($ticket->Subject) msgid "Reminder '%1' added" msgstr "Påminnelse '%1' tillagd" #: lib/RT/Transaction.pm:957 #. ($ticket->Subject) msgid "Reminder '%1' completed" msgstr "Påminnelse '%1' genomförd" #: lib/RT/Transaction.pm:950 #. ($ticket->Subject) msgid "Reminder '%1' reopened" msgstr "Påminnelse '%1' öppnad igen" #: NOT FOUND IN SOURCE msgid "Reminder ticket #%1" msgstr "Påminnelse ärende #%1" #: share/html/Elements/Tabs:566 share/html/Ticket/Elements/Reminders:78 share/html/Ticket/Elements/ShowSummary:73 share/html/Ticket/Reminders.html:55 share/html/m/ticket/show:361 msgid "Reminders" msgstr "Påminnelser" #: share/html/Ticket/Reminders.html:48 #. ($Ticket->Id) msgid "Reminders for ticket #%1" msgstr "Påminnelse för ärende #%1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Ta bort Admin.kopia" #: share/html/Ticket/Elements/Bookmark:88 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Ta bort kopia" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Ta bort anmälare" #: lib/RT/Queue.pm:1063 #. ($principal->Object->Name, $args{'Type'}) msgid "Removed %1 from members of %2 for this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:72 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:188 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: share/html/Elements/Tabs:570 share/html/Ticket/Elements/ShowTransaction:201 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Svar" #: share/html/Admin/Queues/Modify.html:80 msgid "Reply Address" msgstr "Svarsadress" #: share/html/Search/Bulk.html:130 share/html/Ticket/ModifyAll.html:95 share/html/Ticket/Update.html:79 share/html/m/ticket/reply:92 msgid "Reply to requestors" msgstr "Svar till anmälare" #: lib/RT/Queue.pm:113 msgid "Reply to tickets" msgstr "Svar på ärenden" #: lib/RT/Queue.pm:113 msgid "ReplyToTicket" msgstr "SvarTillÄrende" #: NOT FOUND IN SOURCE msgid "Reports" msgstr "Rapporter" #: lib/RT/ACE.pm:100 lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:137 msgid "Requestor" msgstr "Anmälare" #: lib/RT/Tickets.pm:149 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:154 lib/RT/Tickets.pm:138 share/html/Elements/QuickCreate:70 share/html/Elements/RT__Ticket/ColumnMap:173 share/html/Elements/RT__Ticket/ColumnMap:255 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:67 share/html/Ticket/Create.html:116 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/ShowPeople:58 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:273 share/html/m/ticket/show:296 msgid "Requestors" msgstr "Anmälare" #: share/html/Admin/Queues/Modify.html:100 msgid "Requests should be due in" msgstr "Förfrågningar borde förfalla" #: lib/RT/Attribute.pm:154 #. ('Object') msgid "Required parameter '%1' not specified" msgstr "Nödvändig parameter '%1' ej specificerad" #: share/html/Elements/Submit:114 msgid "Reset" msgstr "Reset" #: share/html/Prefs/MyRT.html:74 msgid "Reset RT at a glance" msgstr "" #: share/html/User/Prefs.html:178 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/MyRT.html:58 share/html/Prefs/MyRT.html:77 msgid "Reset to default" msgstr "Återställ till förvalda värden" #: share/html/Admin/Users/Modify.html:167 share/html/User/Prefs.html:88 msgid "Residence" msgstr "Hemma" #: etc/RT_Config.pm:2441 etc/RT_Config.pm:2457 etc/RT_Config.pm:2517 etc/RT_Config.pm:2533 share/html/Search/Elements/EditFormat:75 msgid "Resolve" msgstr "Åtgärda" #: share/html/m/ticket/reply:169 #. ($t->id, $t->Subject) msgid "Resolve ticket #%1 (%2)" msgstr "Åtgärda ärende #%1 (%2)" #: etc/initialdata:321 lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:933 lib/RT/Tickets.pm:129 share/html/Elements/RT__Ticket/ColumnMap:216 share/html/Elements/RT__Ticket/ColumnMap:241 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:100 msgid "Resolved" msgstr "Åtgärdat" #: NOT FOUND IN SOURCE msgid "Resolved by owner" msgstr "Åtgärdat av ägare" #: NOT FOUND IN SOURCE msgid "Resolved in date range" msgstr "Åtgärdat under datumintervall" #: NOT FOUND IN SOURCE msgid "Resolved tickets in period, grouped by owner" msgstr "Åtgärdade ärenden under perioden, grupperade efter ägare" #: NOT FOUND IN SOURCE msgid "Resolved tickets, grouped by owner" msgstr "Åtgärdade ärenden, grupperade efter ägare" #: share/html/Search/Elements/BuildFormatString:100 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:73 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:49 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultat" #: share/html/Ticket/GnuPG.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Skriv in lösenordet igen" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Gå tillbaka" #: NOT FOUND IN SOURCE msgid "Right Delegated" msgstr "Rättighet överlämnad" #: lib/RT/ACE.pm:303 msgid "Right Granted" msgstr "Rättighet tilldelad" #: lib/RT/ACE.pm:173 msgid "Right Loaded" msgstr "Rättighet inläst" #: lib/RT/ACE.pm:358 msgid "Right could not be revoked" msgstr "Rättighet kan inte återkallas" #: NOT FOUND IN SOURCE msgid "Right not found" msgstr "Rättighet ej funnen" #: lib/RT/ACE.pm:326 msgid "Right not loaded." msgstr "Rättighet ej inläst." #: lib/RT/ACE.pm:354 msgid "Right revoked" msgstr "Rättighet återkallad" #: NOT FOUND IN SOURCE msgid "Rights" msgstr "Rättigheter" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 #. ($object_type) msgid "Rights could not be granted for %1" msgstr "Rättigheter kan inte tilldelas %1" #: NOT FOUND IN SOURCE msgid "Rights could not be revoked for %1" msgstr "Rättigheter kan inte återkallas för %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:93 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:92 msgid "Rights for Staff" msgstr "" #: NOT FOUND IN SOURCE msgid "Roles" msgstr "Roller" #: share/html/Dashboards/Subscription.html:161 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:69 msgid "Rows per box" msgstr "Rader per box" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rader per sida" #: share/html/Admin/Tools/Queries.html:49 share/html/Admin/Tools/Queries.html:58 share/html/Elements/Tabs:224 msgid "SQL Queries" msgstr "SQL-frågor" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "" #: NOT FOUND IN SOURCE msgid "Sat." msgstr "Lör." #: share/html/Dashboards/Subscription.html:111 msgid "Saturday" msgstr "lördag" #: share/html/Articles/Article/Elements/ShowSavedSearches:63 share/html/Prefs/MyRT.html:71 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/ShowSummary:80 share/html/Widgets/SelectionBox:233 share/html/m/ticket/show:367 msgid "Save" msgstr "Spara" #: share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:99 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:151 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/Elements/EditScrip:145 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:91 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:94 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:158 share/html/Admin/Queues/People.html:124 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Users/GnuPG.html:73 share/html/Admin/Users/Modify.html:227 share/html/Articles/Article/Edit.html:102 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:183 share/html/Prefs/Other.html:76 share/html/Prefs/Quicksearch.html:63 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:61 share/html/Ticket/Modify.html:64 share/html/Ticket/ModifyAll.html:127 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:62 share/html/Ticket/ModifyPeople.html:76 share/html/Ticket/Reminders.html:62 msgid "Save Changes" msgstr "Spara ändringar" #: share/html/User/Prefs.html:199 msgid "Save Preferences" msgstr "Spara inställningar" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: NOT FOUND IN SOURCE msgid "Save changes" msgstr "Spara ändringar" #: share/html/Articles/Article/Elements/ShowSavedSearches:60 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #: lib/RT/SharedSetting.pm:213 #. ($self->loc( $self->ObjectName ), $name) msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:75 share/html/Dashboards/Queries.html:128 msgid "Saved Search" msgstr "" #: share/html/Elements/ShowSearch:72 #. ($m->interp->apply_escapes($SavedSearch, 'h')) msgid "Saved Search %1 not found" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:487 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:133 msgid "Saved charts" msgstr "" #: NOT FOUND IN SOURCE msgid "Saved search %1" msgstr "Spara sökning %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:65 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:185 msgid "Saved searches" msgstr "" #: etc/RT_Config.pm:1124 msgid "SavedSearches" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:71 #. ($scrip->id) msgid "Scrip #%1" msgstr "Scrip #%1" #: lib/RT/Scrip.pm:184 msgid "Scrip Created" msgstr "Scrip har skapats" #: share/html/Admin/Elements/EditScrip:54 msgid "Scrip Fields" msgstr "Scrip-fält" #: share/html/Admin/Elements/EditScrips:106 msgid "Scrip deleted" msgstr "Scrip har raderats" #: share/html/Elements/Tabs:107 share/html/Elements/Tabs:281 msgid "Scrips" msgstr "Scrips" #: share/html/Ticket/Update.html:191 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Queues/Scrips.html:52 msgid "Scrips which apply to all queues" msgstr "Scrips som gäller alla köer" #: share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Elements/SimpleSearch:49 share/html/Elements/SimpleSearch:49 share/html/Elements/Tabs:432 share/html/Elements/Tabs:809 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Sökning" #: share/html/Articles/Article/Search.html:214 #. ($search->Name) msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Sökpreferenser" #: NOT FOUND IN SOURCE msgid "Search attribute load failure" msgstr "Sökattributinläsningsfel" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Sök efter godkännanden" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Sök efter ärenden" #: share/html/Search/Simple.html:63 #. (@strong) msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2." msgstr "" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name" msgstr "Sök efter ärenden. Skriv id nummer, köer med namn" #: NOT FOUND IN SOURCE msgid "Search for tickets. Enter id numbers, queues by name, Owners by username and Requestors by email address." msgstr "Sök efter ärenden. Ange idnummer, eller ägare med användarnamn eller e-postadress" #: share/html/Elements/Tabs:483 msgid "Search options" msgstr "Sökalternativ" #: share/html/Articles/Article/Search.html:81 msgid "Search results" msgstr "" #: share/html/Search/Chart.html:71 #. ($PrimaryGroupByLabel) msgid "Search results grouped by %1" msgstr "Sökresultat grupperade efter %1" #: lib/RT/Config.pm:290 msgid "Search results refresh interval" msgstr "Uppdateringsfrekvens för sökresultat" #: NOT FOUND IN SOURCE msgid "Search update: %1" msgstr "Sökuppdatering: %1" #: share/html/Search/Simple.html:73 #. ($fulltext_keyword) msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: NOT FOUND IN SOURCE msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history for any word by typing fulltext:word." msgstr "Att söka igenom all text i alla ärenden kan ta lång tid, men om du måste göra det kan du söka efter vilket ord som helst i hela ärendehistoriken genom att skriva fulltext:word." #: share/html/User/Prefs.html:170 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:350 msgid "Security:" msgstr "Säkerhet:" #: share/html/Elements/ShowCustomFields:116 share/html/m/ticket/show:196 msgid "See also:" msgstr "Se även:" #: lib/RT/Class.pm:90 msgid "See articles in this class" msgstr "" #: lib/RT/Class.pm:91 msgid "See changes to articles in this class" msgstr "" #: NOT FOUND IN SOURCE msgid "See custom fields" msgstr "Se extrafält" #: NOT FOUND IN SOURCE msgid "See exact outgoing email messages and their recipeients" msgstr "Se exakt utgående e-postmeddelanden och deras mottagare" #: lib/RT/Class.pm:88 msgid "See that this class exists" msgstr "" #: NOT FOUND IN SOURCE msgid "See ticket private commentary" msgstr "Se privata kommentarer för ärende" #: NOT FOUND IN SOURCE msgid "See ticket summaries" msgstr "Se sammanfattningar av ärenden" #: lib/RT/Class.pm:88 msgid "SeeClass" msgstr "" #: lib/RT/CustomField.pm:205 lib/RT/Queue.pm:97 msgid "SeeCustomField" msgstr "SeExtraFält" #: lib/RT/Dashboard.pm:81 msgid "SeeDashboard" msgstr "" #: lib/RT/Group.pm:99 msgid "SeeGroup" msgstr "SeGrupp" #: lib/RT/Group.pm:100 msgid "SeeGroupDashboard" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "SeeOwnDashboard" msgstr "" #: lib/RT/Queue.pm:92 msgid "SeeQueue" msgstr "SeKö" #: share/html/Elements/Tabs:111 share/html/Elements/Tabs:119 share/html/Elements/Tabs:161 share/html/Elements/Tabs:177 share/html/Elements/Tabs:259 share/html/Elements/Tabs:278 share/html/Elements/Tabs:282 share/html/Elements/Tabs:359 share/html/Elements/Tabs:371 share/html/Elements/Tabs:382 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Välj" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:154 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Välj databastyp" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:96 msgid "Select a Custom Field" msgstr "Välj ett extrafält" #: share/html/Admin/Tools/Theme.html:83 msgid "Select a color for the section" msgstr "" #: share/html/Admin/Groups/index.html:82 share/html/Admin/Groups/index.html:99 msgid "Select a group" msgstr "Välj en grupp" #: share/html/Admin/Queues/index.html:54 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Välj en kö" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Välj en kö för ditt nya ärende" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:93 msgid "Select a user" msgstr "Välj en användare" #: share/html/Articles/Elements/BeforeMessageBox:114 #. ($included_topic->Name) msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:79 lib/RT/CustomField.pm:82 msgid "Select box" msgstr "" #: NOT FOUND IN SOURCE msgid "Select custom field" msgstr "Välj ett extrafält" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:139 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:134 msgid "Select custom fields for all user groups" msgstr "Välj extrafält för alla användargrupper" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:129 msgid "Select custom fields for all users" msgstr "Välj extrafält för alla användare" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:144 msgid "Select custom fields for tickets in all queues" msgstr "Välj extrafält för ärenden i alla köer" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:149 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Välj extrafält för transaktioner på alla ärenden i alla köer" #: lib/RT/CustomField.pm:160 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:169 msgid "Select datetime" msgstr "" #: NOT FOUND IN SOURCE msgid "Select group" msgstr "Välj grupp" #: lib/RT/CustomField.pm:159 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:168 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:70 msgid "Select multiple values" msgstr "Välj flera värden" #: lib/RT/CustomField.pm:71 msgid "Select one value" msgstr "Välj ett värde" #: NOT FOUND IN SOURCE msgid "Select queue" msgstr "Välj kö" #: share/html/Prefs/Quicksearch.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Välj kö som skall visas på \"RT-snabbtitt\" -sidan" #: NOT FOUND IN SOURCE msgid "Select scrip" msgstr "Välj scrip" #: NOT FOUND IN SOURCE msgid "Select template" msgstr "Välj mall" #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 #. () msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Select up to %1 dates" msgstr "" #: lib/RT/CustomField.pm:170 msgid "Select up to %1 datetimes" msgstr "" #: lib/RT/CustomField.pm:72 msgid "Select up to %1 values" msgstr "Välj upp till %1 värden" #: NOT FOUND IN SOURCE msgid "Select user" msgstr "Välj användare" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valda extrafält" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2068 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 msgid "Selected objects" msgstr "Valda objekt" #: share/html/Widgets/SelectionBox:231 msgid "Selections modified. Please save your changes" msgstr "Urval ändrat. Spara dina ändringar" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers" msgstr "Skicka e-post till alla observatörer" #: NOT FOUND IN SOURCE msgid "Send mail to all watchers as a \"comment\"" msgstr "Skicka e-post till alla observatörer som en \"kommentar\"" #: etc/initialdata:77 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:73 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:68 msgid "Send mail to requestors and Ccs" msgstr "Skicka e-post till anmälare och mottagare av kopia" #: etc/initialdata:63 msgid "Send mail to requestors and Ccs as a comment" msgstr "Skicka e-post till anmälare och mottagare av kopia som en kommentar" #: etc/initialdata:34 msgid "Sends a message to the requestors" msgstr "Skicka ett meddelande till anmälarna" #: etc/initialdata:81 etc/initialdata:85 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Skicka e-post till uttryckligen angivna mottagare av kopia samt mottagare av hemlig kopia" #: etc/initialdata:50 etc/upgrade/3.1.17/content:7 msgid "Sends mail to the Ccs" msgstr "Skicka e-post till kopia-mottagarna" #: etc/initialdata:46 etc/upgrade/3.1.17/content:3 msgid "Sends mail to the Ccs as a comment" msgstr "Skicka e-post till kopia-mottagarna som en kommentar" #: etc/initialdata:58 msgid "Sends mail to the administrative Ccs" msgstr "Skicka e-post till de administrativa kopia-mottagarna" #: etc/initialdata:54 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Skicka e-post till de administrativa kopia-mottagarna som en kommentar" #: etc/initialdata:38 etc/initialdata:42 msgid "Sends mail to the owner" msgstr "Skicka e-post till ägaren" #: lib/RT/Interface/Email.pm:796 msgid "Sent email successfully" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: NOT FOUND IN SOURCE msgid "Sep." msgstr "Sep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: lib/RT/User.pm:1659 msgid "Set private key" msgstr "" #: share/html/Elements/Tabs:480 share/html/Prefs/Other.html:80 msgid "Settings" msgstr "Inställningar" #: lib/RT/Config.pm:176 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:490 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/Tabs:516 share/html/Ticket/Elements/ShowTransaction:182 msgid "Show" msgstr "Visa" #: NOT FOUND IN SOURCE msgid "Show Approvals" msgstr "Visa godkännanden" #: lib/RT/System.pm:84 msgid "Show Approvals tab" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Visa kolumner" #: lib/RT/System.pm:83 msgid "Show Configuration tab" msgstr "" #: share/html/Elements/Tabs:742 msgid "Show Results" msgstr "Visa resultat" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:153 #. ($Level) msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowHistory:63 share/html/Ticket/Elements/ShowHistory:64 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show approved requests" msgstr "Visa godkända förfrågningar" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: NOT FOUND IN SOURCE msgid "Show basics" msgstr "Visa grunddata" #: share/html/Ticket/Elements/ShowHistory:73 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:63 msgid "Show denied requests" msgstr "Visa avvisade förfrågningar" #: NOT FOUND IN SOURCE msgid "Show details" msgstr "Visa detaljer" #: share/html/Ticket/Elements/ShowHistory:78 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:85 msgid "Show global templates" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:101 msgid "Show link descriptions" msgstr "Visa länkbeskrivningar" #: lib/RT/Config.pm:397 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:343 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:61 msgid "Show pending requests" msgstr "Visa väntande förfrågningar" #: share/html/Ticket/Elements/FoldStanzaJS:50 share/html/Ticket/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:64 msgid "Show requests awaiting other approvals" msgstr "Visa förfrågningar som väntar på andra godkännanden" #: lib/RT/Config.pm:394 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:395 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:396 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: lib/RT/Class.pm:96 lib/RT/Queue.pm:94 msgid "ShowACL" msgstr "VisaACL" #: lib/RT/System.pm:84 msgid "ShowApprovalsTab" msgstr "" #: lib/RT/Class.pm:90 msgid "ShowArticle" msgstr "" #: lib/RT/Class.pm:91 msgid "ShowArticleHistory" msgstr "" #: lib/RT/System.pm:83 msgid "ShowConfigTab" msgstr "VisaKonfigurationTab" #: lib/RT/System.pm:85 msgid "ShowGlobalTemplates" msgstr "" #: lib/RT/Queue.pm:108 msgid "ShowOutgoingEmail" msgstr "VisaUtgåendeE-post" #: lib/RT/Group.pm:98 msgid "ShowSavedSearches" msgstr "VisaSparadeSökningar" #: lib/RT/Queue.pm:104 msgid "ShowScrips" msgstr "VisaScrips" #: lib/RT/Queue.pm:101 msgid "ShowTemplate" msgstr "VisaMall" #: lib/RT/Queue.pm:106 msgid "ShowTicket" msgstr "VisaÄrende" #: lib/RT/Queue.pm:107 msgid "ShowTicketComments" msgstr "VisaÄrendeKommentarer" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:230 share/html/Elements/Tabs:785 msgid "Shredder" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 #. ($path_tag) msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:183 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 msgid "Sign" msgstr "" #: share/html/Admin/Queues/Modify.html:123 #. ("","","","") msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:118 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:110 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Registrera som ärendeanmälare eller ärende eller kö-kopia" #: lib/RT/Queue.pm:111 msgid "Sign up as a ticket or queue AdminCc" msgstr "Registrera som ärende eller kö-Admin.kopia" #: share/html/Elements/GnuPG/SignEncryptWidget:56 #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:215 share/html/User/Prefs.html:107 msgid "Signature" msgstr "Signatur" #: lib/RT/Queue.pm:587 lib/RT/Queue.pm:613 msgid "Signing disabled" msgstr "" #: lib/RT/Queue.pm:586 lib/RT/Queue.pm:612 msgid "Signing enabled" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:61 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:425 msgid "Simple Search" msgstr "Enkel sökning" #: share/html/Admin/Elements/SelectSingleOrMultiple:49 msgid "Single" msgstr "En enda" #: lib/RT/Installer.pm:143 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:84 msgid "Size" msgstr "Storlek" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Hoppa över meny" #: sbin/rt-email-digest:287 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:87 msgid "Small" msgstr "Liten" #: share/html/Admin/CustomFields/Modify.html:117 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Vissa webbläsare läser kanske bara in innehåll från samma domän som din RT-server." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sortera" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:94 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:751 msgid "Spreadsheet" msgstr "" #: share/html/Admin/Elements/EditScrip:82 share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Stage" msgstr "Steg" #: etc/RT_Config.pm:2453 etc/RT_Config.pm:2529 msgid "Stall" msgstr "" #: share/html/Search/Simple.html:85 #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:127 share/html/Elements/RT__Ticket/ColumnMap:193 share/html/Elements/RT__Ticket/ColumnMap:226 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/EditDates:55 share/html/Ticket/Elements/ShowDates:58 share/html/m/ticket/show:387 msgid "Started" msgstr "Påbörjad" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartedRelative" msgstr "PåbörjadRelaterad" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:126 share/html/Elements/RT__Ticket/ColumnMap:188 share/html/Elements/RT__Ticket/ColumnMap:221 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Create.html:239 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:54 share/html/m/ticket/create:382 share/html/m/ticket/show:383 msgid "Starts" msgstr "Startdatum" #: share/html/Search/Elements/BuildFormatString:100 msgid "StartsRelative" msgstr "StartdatumRelaterad" #: share/html/Admin/Users/Modify.html:146 share/html/Elements/RT__User/ColumnMap:121 share/html/User/Prefs.html:143 msgid "State" msgstr "Läge" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Report/Tickets.pm:61 lib/RT/Ticket.pm:927 lib/RT/Tickets.pm:100 lib/RT/Tickets.pm:2146 share/html/Elements/RT__Ticket/ColumnMap:104 share/html/Elements/RT__Ticket/ColumnMap:94 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:61 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:253 share/html/m/ticket/reply:62 share/html/m/ticket/show:221 msgid "Status" msgstr "Status" #: lib/RT/Ticket.pm:304 lib/RT/Ticket.pm:3157 #. ($self->loc($args{'Status'})) #. ($self->loc($new)) msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:307 msgid "Status Change" msgstr "Statusändring" #: lib/RT/Transaction.pm:654 #. ("'" . $self->loc( $self->OldValue ) . "'", "'" . $self->loc( $self->NewValue ) . "'") msgid "Status changed from %1 to %2" msgstr "Status ändrad från %1 till %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:94 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:627 msgid "Steal" msgstr "Stjäl" #: lib/RT/Queue.pm:119 msgid "Steal tickets" msgstr "Stjäl ärenden" #: lib/RT/Queue.pm:119 msgid "StealTicket" msgstr "StjälÄrende" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) msgid "Step %1 of %2" msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:913 #. ($Old->Name) msgid "Stolen from %1" msgstr "Stulen från %1" #: NOT FOUND IN SOURCE msgid "Stolen from %1 " msgstr "Stulen från %1 " #: share/html/Search/Elements/EditFormat:93 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:923 lib/RT/Tickets.pm:132 lib/RT/Tickets.pm:2220 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:99 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:133 share/html/Search/Elements/BuildFormatString:100 share/html/SelfService/Create.html:83 share/html/SelfService/Update.html:69 share/html/Ticket/Create.html:157 share/html/Ticket/Elements/Reminders:126 share/html/Ticket/Elements/Reminders:147 share/html/Ticket/Forward.html:63 share/html/Ticket/ModifyAll.html:102 share/html/Ticket/Update.html:162 share/html/m/ticket/create:232 share/html/m/ticket/reply:96 msgid "Subject" msgstr "Ämne" #: share/html/Admin/Queues/Modify.html:76 msgid "Subject Tag" msgstr "Ämnesetikett" #: lib/RT/Transaction.pm:784 #. ($self->Data) msgid "Subject changed to %1" msgstr "Ämne ändrat till %1" #: share/html/Elements/RT__Queue/ColumnMap:76 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Skicka" #: share/html/Dashboards/Subscription.html:185 msgid "Subscribe" msgstr "" #: share/html/Dashboards/Subscription.html:287 #. ($Dashboard->Name) msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "Subscribe to dashboards" msgstr "" #: lib/RT/Dashboard.pm:79 msgid "SubscribeDashboard" msgstr "" #: share/html/Dashboards/Subscription.html:272 #. ($Dashboard->Name) msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:66 share/html/Elements/Tabs:514 msgid "Subscription" msgstr "" #: share/html/Dashboards/Subscription.html:277 #. ($msg) msgid "Subscription could not be created: %1" msgstr "" #: NOT FOUND IN SOURCE msgid "Succeeded" msgstr "Genomförd" #: lib/RT/Attachment.pm:802 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:767 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:53 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:65 msgid "Summary" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: NOT FOUND IN SOURCE msgid "Sun." msgstr "Sön." #: share/html/Dashboards/Subscription.html:112 msgid "Sunday" msgstr "söndag" #: lib/RT/System.pm:80 msgid "SuperUser" msgstr "SuperAnvändare" #: lib/RT/Config.pm:479 msgid "Suspended" msgstr "" #: NOT FOUND IN SOURCE msgid "System" msgstr "System" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:212 msgid "System Configuration" msgstr "Systemkonfiguration" #: lib/RT/Installer.pm:206 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemförval" #: lib/RT/Interface/Web.pm:2250 lib/RT/Interface/Web.pm:2350 share/html/Admin/Elements/EditRightsCategoryTabs:65 share/html/Admin/Elements/SelectRights:110 msgid "System Error" msgstr "Systemfel" #: lib/RT/Transaction.pm:261 lib/RT/Transaction.pm:267 #. ($msg) msgid "System Error: %1" msgstr "Systemfel: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systemverktyg" #: lib/RT/Transaction.pm:672 msgid "System error" msgstr "" #: NOT FOUND IN SOURCE msgid "System error. Right not delegated." msgstr "Systemfel. Rättighet inte överlåten." #: lib/RT/ACE.pm:158 lib/RT/ACE.pm:226 lib/RT/ACE.pm:306 msgid "System error. Right not granted." msgstr "Systemfel. Rättighet inte tilldelad." #: NOT FOUND IN SOURCE msgid "System groups" msgstr "Systemgrupper" #: lib/RT/Handle.pm:733 msgid "SystemRolegroup for internal use" msgstr "SystemRollgrupp för internt bruk" #: NOT FOUND IN SOURCE msgid "TEST_STRING" msgstr "TEST_STRING" #: etc/initialdata:587 share/html/Elements/Tabs:621 share/html/Search/Elements/EditFormat:72 msgid "Take" msgstr "Ta" #: lib/RT/Queue.pm:118 msgid "Take tickets" msgstr "Ta ärenden" #: lib/RT/Queue.pm:118 msgid "TakeTicket" msgstr "TaÄrende" #: lib/RT/Transaction.pm:747 lib/RT/Transaction.pm:905 msgid "Taken" msgstr "Taget" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Elements/EditScrip:75 share/html/Elements/RT__Scrip/ColumnMap:80 share/html/Tools/Offline.html:77 msgid "Template" msgstr "Mall" #: NOT FOUND IN SOURCE msgid "Template #%1" msgstr "Mall #%1" #: share/html/Admin/Elements/EditTemplates:111 #. ($id) msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:161 lib/RT/Scrip.pm:695 #. ($args{'Template'}) #. ($value) msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:724 msgid "Template compiles" msgstr "" #: NOT FOUND IN SOURCE msgid "Template deleted" msgstr "Mall har raderats" #: lib/RT/Template.pm:691 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:415 msgid "Template is empty" msgstr "" #: lib/RT/Scrip.pm:157 lib/RT/Scrip.pm:690 msgid "Template is mandatory argument" msgstr "Mall är obligatorisk parameter" #: NOT FOUND IN SOURCE msgid "Template not found" msgstr "Mall ej funnen" #: lib/RT/Template.pm:395 msgid "Template parsed" msgstr "Mall har parsats" #: lib/RT/Template.pm:480 msgid "Template parsing error" msgstr "Mallparsfel" #: lib/RT/Template.pm:500 lib/RT/Template.pm:702 #. ($Text::Template::ERROR) msgid "Template parsing error: %1" msgstr "" #: share/html/Elements/Tabs:115 share/html/Elements/Tabs:277 msgid "Templates" msgstr "Mallar" #: share/html/Admin/Queues/Templates.html:60 #. ($QueueObj->Name) msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:90 msgid "Text" msgstr "" #: share/html/Ticket/Elements/ShowTransactionAttachments:166 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:965 msgid "That is already the current value" msgstr "Det är redan det nuvarande värdet" #: lib/RT/CustomField.pm:585 msgid "That is not a value for this custom field" msgstr "Det är inte ett värde för detta extrafält" #: lib/RT/Ticket.pm:1708 msgid "That is the same value" msgstr "Det är samma värde" #: NOT FOUND IN SOURCE msgid "That principal already has that right" msgstr "Principalen har redan den rättigheten" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this queue" msgstr "Principalen är redan en %1 för denna kö" #: NOT FOUND IN SOURCE msgid "That principal is already a %1 for this ticket" msgstr "Principalen är redan en %1 för detta ärende" #: NOT FOUND IN SOURCE msgid "That principal is not a %1 for this queue" msgstr "Principalen är inte en %1 för denna kö" #: lib/RT/Ticket.pm:1704 msgid "That queue does not exist" msgstr "Kön finns ej" #: lib/RT/Ticket.pm:3171 msgid "That ticket has unresolved dependencies" msgstr "Ärendet har oåtgärdade förutsättningar" #: lib/RT/Action/CreateTickets.pm:478 lib/RT/Ticket.pm:2987 msgid "That user already owns that ticket" msgstr "Ärendet tillhör redan den användaren" #: lib/RT/Ticket.pm:2930 msgid "That user does not exist" msgstr "Användaren finns ej" #: lib/RT/User.pm:350 msgid "That user is already privileged" msgstr "Användaren är redan privilegierad" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Användaren är redan icke-privilegierad" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Användaren är nu privilegierad" #: lib/RT/User.pm:383 msgid "That user is now unprivileged" msgstr "Användaren är nu icke-privilegierad" #: lib/RT/Ticket.pm:2980 msgid "That user may not own tickets in that queue" msgstr "Användaren äger kanske inte ärenden i den kön" #: lib/RT/Link.pm:207 msgid "That's not a numerical id" msgstr "Det är inte något numeriskt ID" #: share/html/SelfService/Display.html:57 share/html/Ticket/Create.html:202 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:336 share/html/m/ticket/show:211 msgid "The Basics" msgstr "Grunddata" #: lib/RT/ACE.pm:101 msgid "The CC of a ticket" msgstr "Kopia för ett ärende" #: lib/RT/Article.pm:661 #. ($Value) msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/ACE.pm:102 msgid "The administrative CC of a ticket" msgstr "Adminstrativ kopia för ett ärende" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:360 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: NOT FOUND IN SOURCE msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they haven't been touched in 4 hours:" msgstr "Följande kommando kommer att ta fram alla aktiva ärenden i kön 'allmän' och ange deras prioritet till 99 om de inte rörts på 4 timmar:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Följande frågor har blivit raderade och kommer att försvinna från instrumentpanelen så fort panelen är uppdaterad." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Följande frågor kanske inte visas för alla användare som kan se den här instrumentpanelen." #: lib/RT/Crypt/GnuPG.pm:2244 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2250 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2255 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2288 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2293 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:968 msgid "The new value has been set." msgstr "Det nya värdet har satts." #: lib/RT/ACE.pm:99 msgid "The owner of a ticket" msgstr "Ägaren av ett ärende" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/ACE.pm:100 msgid "The requestor of a ticket" msgstr "Anmälaren av ett ärende" #: share/html/Install/Finish.html:64 #. (RT::Installer->ConfigFile) msgid "The settings you've chosen are stored in %1." msgstr "Inställningarna du valt är sparade i %1." #: share/html/Elements/GnuPG/KeyIssues:52 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:197 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:217 msgid "Theme" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2095 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Det finns olästa kommentarer till det här ärendet." #: lib/RT/Crypt/GnuPG.pm:2283 msgid "There is marginal trust in this key" msgstr "" #: share/html/Admin/Groups/Modify.html:142 #. ($Group->Name) msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2087 msgid "There is no key suitable for encryption." msgstr "" #: lib/RT/Ticket.pm:1719 msgid "There is no mapping for statuses between these queues. Contact your system administrator." msgstr "" #: lib/RT/Crypt/GnuPG.pm:2091 msgid "There is one suitable key, but trust level is not set." msgstr "" #: share/html/Admin/Elements/EditUserComments:49 msgid "These comments aren't generally visible to the user" msgstr "Dessa kommentarer är vanligtvis inte synliga för användaren" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:369 lib/RT/CustomField.pm:683 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:445 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:1425 msgid "This custom field does not apply to that object" msgstr "Detta extrafält gäller inte för det objektet" #: lib/RT/CustomField.pm:1085 lib/RT/CustomField.pm:356 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Denna delen är endast tillgänglig för systemadministratörer" #: share/html/Admin/Tools/Queries.html:51 share/html/Admin/Tools/Theme.html:191 msgid "This feature is only available to system administrators." msgstr "" #: lib/RT/Interface/Web/Session.pm:281 #. ($RT::MasonSessionDir) msgid "This may mean that that the directory '%1' isn't writable or a database table is missing or corrupt." msgstr "" #: NOT FOUND IN SOURCE msgid "This message will be sent to..." msgstr "Meddelandet kommer att skickas till..." #: share/html/Admin/Tools/Queries.html:63 msgid "This server process has recorded no SQL queries." msgstr "" #: bin/rt-crontool:351 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Detta verktyg ger användaren möjlighet att köra godtyckliga perl-moduler inifrån RT." #: lib/RT/Transaction.pm:362 msgid "This transaction appears to have no content" msgstr "Denna transaktion tycks inte ha något innehåll" #: share/html/Ticket/Elements/ShowRequestorTickets:49 #. ($Rows, $Description) msgid "This user's %1 highest priority %2 tickets" msgstr "" #: NOT FOUND IN SOURCE msgid "This user's %1 highest priority tickets" msgstr "Denna användares %1 högst prioriterade ärenden" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: NOT FOUND IN SOURCE msgid "Thu." msgstr "Tor." #: share/html/Dashboards/Subscription.html:109 msgid "Thursday" msgstr "torsdag" #: lib/RT/Record.pm:953 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Ärende" #: share/html/Ticket/ModifyAll.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket #%1 Jumbo update: %2" msgstr "Ärende #%1 Jumbo uppdatering: %2" #: share/html/Ticket/Graphs/index.html:109 #. ($id) msgid "Ticket #%1 relationships graph" msgstr "Diagram över relationer för ärende #%1" #: share/html/Ticket/Elements/ShowTransaction:152 #. ($Transaction->Ticket) msgid "Ticket #%1:" msgstr "" #: share/html/Approvals/Elements/ShowDependency:69 #. ($link->BaseObj->Id, $link->BaseObj->Subject) msgid "Ticket #%1: %2" msgstr "Ärende #%1: %2" #: lib/RT/Action/CreateTickets.pm:1151 lib/RT/Action/CreateTickets.pm:1160 lib/RT/Action/CreateTickets.pm:374 lib/RT/Action/CreateTickets.pm:497 lib/RT/Action/CreateTickets.pm:509 #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) msgid "Ticket %1" msgstr "Ärende %1" #: lib/RT/Ticket.pm:689 lib/RT/Ticket.pm:713 #. ($self->Id, $QueueObj->Name) msgid "Ticket %1 created in queue '%2'" msgstr "Ärende %1 har skapats i kö '%2'" #: share/html/Search/Bulk.html:389 share/html/Tools/MyDay.html:100 share/html/Tools/MyDay.html:91 share/html/Tools/MyDay.html:94 #. ($Ticket->Id, $_) #. ($id, $msg) msgid "Ticket %1: %2" msgstr "Ärende %1: %2" #: share/html/Elements/Tabs:285 msgid "Ticket Custom Fields" msgstr "Ärende extrafält" #: share/html/Ticket/History.html:48 #. ($Ticket->Id, $Ticket->Subject) msgid "Ticket History # %1 %2" msgstr "Ärendehistorik # %1 %2" #: etc/initialdata:322 msgid "Ticket Resolved" msgstr "Ärende åtgärdat" #: share/html/Elements/CollectionList:194 share/html/Elements/TicketList:64 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:1671 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:148 msgid "Ticket Transactions" msgstr "Ärendetransaktioner" #: share/html/Ticket/Update.html:64 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:264 lib/RT/Config.pm:275 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:2389 msgid "Ticket content" msgstr "Ärendeinnehåll" #: lib/RT/Tickets.pm:2434 msgid "Ticket content type" msgstr "Ärendeinnehållstyp" #: lib/RT/Ticket.pm:503 lib/RT/Ticket.pm:516 lib/RT/Ticket.pm:527 lib/RT/Ticket.pm:697 msgid "Ticket could not be created due to an internal error" msgstr "Ärende kan inte skapas på grund av ett internt fel" #: share/html/Ticket/Create.html:282 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Config.pm:327 lib/RT/Config.pm:386 lib/RT/Config.pm:402 msgid "Ticket display" msgstr "" #: share/html/Ticket/Display.html:60 msgid "Ticket metadata" msgstr "Ärende metadata" #: etc/initialdata:308 msgid "Ticket status changed" msgstr "Ärendestatus ändrad" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #: lib/RT/Search/FromSQL.pm:80 #. (ref $self) msgid "TicketSQL search module" msgstr "ÄrendeSQL sökmodul" #: lib/RT/CustomField.pm:1670 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:143 share/html/Elements/Tabs:424 share/html/Elements/Tabs:858 share/html/Search/Chart:152 share/html/Search/Elements/Chart:107 msgid "Tickets" msgstr "Ärenden" #: lib/RT/Tickets.pm:2591 #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) msgid "Tickets %1 %2" msgstr "" #: lib/RT/Tickets.pm:2548 #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: NOT FOUND IN SOURCE msgid "Tickets created after" msgstr "Ärenden har skapats efter" #: NOT FOUND IN SOURCE msgid "Tickets created before" msgstr "Ärenden har skapats före" #: NOT FOUND IN SOURCE msgid "Tickets resolved after" msgstr "Ärenden åtgärdade efter" #: NOT FOUND IN SOURCE msgid "Tickets resolved before" msgstr "Ärenden åtgärdade innan" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Ärenden som förutsätter detta godkännande:" #: share/html/Elements/RT__Ticket/ColumnMap:169 share/html/Search/Elements/PickBasics:165 share/html/Ticket/Create.html:216 share/html/m/ticket/create:352 msgid "Time Estimated" msgstr "Uppskattad tid" #: lib/RT/Tickets.pm:2364 share/html/Elements/RT__Ticket/ColumnMap:164 share/html/Search/Elements/PickBasics:166 share/html/Ticket/Create.html:226 share/html/m/ticket/create:366 msgid "Time Left" msgstr "Resterande tid" #: lib/RT/Tickets.pm:2341 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/PickBasics:164 share/html/Ticket/Create.html:221 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Använd tid" #: NOT FOUND IN SOURCE msgid "Time left" msgstr "Resterande tid" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tid för visning" #: NOT FOUND IN SOURCE msgid "Time worked" msgstr "Använd tid" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:113 share/html/Search/Elements/BuildFormatString:100 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Tickets.pm:111 share/html/Search/Elements/BuildFormatString:100 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:153 lib/RT/Ticket.pm:928 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:100 msgid "TimeWorked" msgstr "AnvändTid" #: lib/RT/Installer.pm:195 lib/RT/Report/Tickets.pm:65 share/html/User/Prefs.html:80 msgid "Timezone" msgstr "" #: share/html/Search/Elements/EditFormat:80 msgid "Title" msgstr "Titel" #: share/html/Ticket/Forward.html:66 msgid "To" msgstr "" #: share/html/Articles/Article/PreCreate.html:62 msgid "To create an Article, you must first create a Class and have access to that Class." msgstr "" #: share/html/Elements/Footer:59 #. ('sales@bestpractical.com') msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Förfrågan om support, utbildning, kundutveckling eller licensiering, var god kontakta %1." #: share/html/Admin/Tools/Queries.html:82 #. ($count) msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Admin/Tools/Queries.html:118 #. () msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:155 lib/RT/Report/Tickets.pm:75 lib/RT/Ticket.pm:931 lib/RT/Tickets.pm:125 share/html/Elements/RT__Ticket/ColumnMap:198 share/html/Elements/RT__Ticket/ColumnMap:231 share/html/Search/Elements/BuildFormatString:100 msgid "Told" msgstr "Kontaktat" #: share/html/Search/Elements/BuildFormatString:100 msgid "ToldRelative" msgstr "KontaktatRelaterad" #: share/html/Elements/Tabs:207 share/html/Elements/Tabs:429 share/html/Tools/index.html:48 msgid "Tools" msgstr "Verktyg" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:478 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:513 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:59 share/html/Articles/Article/Edit.html:87 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Elements/RT__Article/ColumnMap:89 share/html/Elements/Tabs:201 share/html/Elements/Tabs:375 share/html/Elements/Tabs:433 msgid "Topics" msgstr "" #: share/html/Search/Elements/Chart:147 msgid "Total" msgstr "Totalt" #: etc/initialdata:249 msgid "Transaction" msgstr "Transaktion" #: lib/RT/Transaction.pm:938 #. ($self->Data) msgid "Transaction %1 purged" msgstr "Transaktion %1 har tömts" #: lib/RT/Transaction.pm:206 msgid "Transaction Created" msgstr "Transaktion har skapats" #: share/html/Elements/Tabs:288 msgid "Transaction Custom Fields" msgstr "Transaktion extrafält" #: lib/RT/Transaction.pm:132 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaktion->Skapa gick inte eftersom du inte specificerade en objekttyp och ID" #: lib/RT/Tickets.pm:136 msgid "TransactionDate" msgstr "" #: lib/RT/Transaction.pm:995 msgid "Transactions are immutable" msgstr "Transaktioner är oföränderliga" #: share/html/Admin/Elements/ShowKeyInfo:55 msgid "Trust" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: NOT FOUND IN SOURCE msgid "Tue." msgstr "Tis." #: share/html/Dashboards/Subscription.html:107 msgid "Tuesday" msgstr "tisdag" #: lib/RT/Ticket.pm:929 lib/RT/Tickets.pm:102 lib/RT/Tickets.pm:2196 share/html/Admin/CustomFields/Modify.html:64 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:153 share/html/Search/Elements/BuildFormatString:100 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:67 share/html/Ticket/Elements/AddWatchers:77 msgid "Type" msgstr "Typ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #: lib/RT/CustomField.pm:1035 #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) msgid "Type changed from '%1' to '%2'" msgstr "" #: lib/RT/Article.pm:481 msgid "Unable to add topic membership" msgstr "" #: lib/RT/Article.pm:509 #. ($t->TopicObj->Name) msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:289 msgid "Unable to determine object type or id" msgstr "Kan ej avgöra objekttyp eller ID" #: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239 msgid "Unable to load article" msgstr "" #: share/html/Admin/Tools/Theme.html:236 #. ($msg) msgid "Unable to set UserCSS: %1" msgstr "" #: share/html/Admin/Tools/Theme.html:208 #. ($msg) msgid "Unable to set UserLogo: %1" msgstr "" #: share/html/Search/Elements/EditSearches:277 #. ($msg) msgid "Unable to set privacy id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:286 #. (loc('Permission Denied')) msgid "Unable to set privacy object or id: %1" msgstr "" #: share/html/Search/Elements/EditSearches:269 #. ($msg) msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Dashboards/Subscription.html:260 #. ($id) msgid "Unable to subscribe to dashboard %1: Permission denied" msgstr "" #: share/html/Ticket/Elements/PreviewScrips:60 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:2477 etc/RT_Config.pm:2553 msgid "Undelete" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Unimplemented" msgstr "Ej implementerad" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:136 msgid "Unix login" msgstr "Unix-inloggning" #: lib/RT/Crypt/GnuPG.pm:2267 lib/RT/Crypt/GnuPG.pm:2272 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:2277 msgid "Unknown (this value is new to the system)" msgstr "" #: lib/RT/Attachment.pm:333 lib/RT/Record.pm:820 #. ($ContentEncoding) #. ($self->ContentEncoding) msgid "Unknown ContentEncoding %1" msgstr "Okänd InnehållsKodning %1" #: NOT FOUND IN SOURCE msgid "Unknown field: $key" msgstr "Okänt fält: $nyckel" #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:270 #. ($key) msgid "Unknown field: %1" msgstr "" #: lib/RT/Queue.pm:1041 #. ($args{Type}) msgid "Unknown watcher type %1" msgstr "" #: share/html/Search/Simple.html:81 #. ($status_str) msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Obegränsat" #: share/html/Elements/RT__Dashboard/ColumnMap:63 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:63 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Ej namngiven sökning" #: etc/initialdata:619 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:668 msgid "Unprivileged" msgstr "Icke-privilegierad" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ej valda extrafält" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 msgid "Unselected objects" msgstr "Ej valda objekt" #: lib/RT/User.pm:1643 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:743 lib/RT/Transaction.pm:917 msgid "Untaken" msgstr "Ej tagen" #: share/html/Admin/Users/Memberships.html:84 share/html/Articles/Article/Elements/ShowSavedSearches:59 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Elements/RT__Ticket/ColumnMap:301 share/html/Search/Bulk.html:213 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:224 msgid "Update" msgstr "Uppdatera" #: share/html/Search/Chart.html:128 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:121 msgid "Update Graph" msgstr "" #: share/html/SelfService/Update.html:92 share/html/Ticket/Update.html:188 share/html/m/ticket/reply:143 msgid "Update Ticket" msgstr "Uppdatera ärende" #: share/html/Search/Bulk.html:127 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/Update.html:73 share/html/m/ticket/reply:86 msgid "Update Type" msgstr "Uppdatera typ" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:224 msgid "Update multiple tickets" msgstr "Uppdatera flera ärenden" #: lib/RT/Action/CreateTickets.pm:518 lib/RT/Interface/Web.pm:2024 msgid "Update not recorded." msgstr "Uppdatera icke-inlästa." #: share/html/Ticket/ModifyAll.html:85 msgid "Update ticket" msgstr "Uppdatera ärende" #: share/html/SelfService/Update.html:103 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 #. ($Ticket->id) #. ($t->id) msgid "Update ticket #%1" msgstr "Uppdatera ärende #%1" #: share/html/Ticket/Update.html:218 share/html/m/ticket/reply:171 #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) msgid "Update ticket #%1 (%2)" msgstr "Uppdatera ärende #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:516 lib/RT/Interface/Web.pm:2024 msgid "Update type was neither correspondence nor comment." msgstr "Uppdateringstyp var varken brevväxling eller kommentar." #: share/html/Search/Elements/BuildFormatString:100 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:1747 lib/RT/Ticket.pm:932 lib/RT/Tickets.pm:148 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:79 share/html/m/ticket/show:408 msgid "Updated" msgstr "Uppdaterad" #: share/html/Search/Elements/EditSearches:291 #. ($desc) msgid "Updated saved search \"%1\"" msgstr "" #: share/html/Tools/Offline.html:92 msgid "Upload" msgstr "Överför" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple files" msgstr "Överför flera filer" #: lib/RT/CustomField.pm:121 msgid "Upload multiple images" msgstr "Överför flera bilder" #: lib/RT/CustomField.pm:131 msgid "Upload one file" msgstr "Överför en fil" #: lib/RT/CustomField.pm:122 msgid "Upload one image" msgstr "Överför en bild" #: lib/RT/CustomField.pm:132 msgid "Upload up to %1 files" msgstr "Överför upp till %1 filer" #: lib/RT/CustomField.pm:123 msgid "Upload up to %1 images" msgstr "Överför upp till %1 bilder" #: share/html/Tools/Offline.html:92 msgid "Upload your changes" msgstr "Överför dina ändringar" #: sbin/rt-email-digest:88 msgid "Usage:" msgstr "" #: lib/RT/Installer.pm:137 msgid "Use SSL?" msgstr "" #: lib/RT/Config.pm:224 msgid "Use a two column layout for create and update forms?" msgstr "" #: lib/RT/Config.pm:187 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:382 msgid "Use css rules to display text monospaced and with formatting preserved, but wrap as needed. This does not work well with IE6 and you should use the previous option" msgstr "" #: share/html/Widgets/Form/Boolean:68 #. ($DefaultValue? loc('Yes'): loc('No')) msgid "Use default (%1)" msgstr "Använd förval (%1)" #: share/html/Elements/Tabs:208 msgid "Use other RT administrative tools" msgstr "Använd annat RT-administrativt verktyg" #: share/html/Widgets/Form/Select:125 #. (join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue) msgid "Use system default (%1)" msgstr "Använd systemets förval (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: lib/RT/Config.pm:372 msgid "Use this to protect the format of plain text" msgstr "" #: lib/RT/Record.pm:954 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 msgid "User" msgstr "" #: lib/RT/Ticket.pm:412 #. ($args{'Owner'}) msgid "User '%1' could not be found." msgstr "Det gick inte att hitta användare '%1'." #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "User (created - expire)" msgstr "" #: etc/initialdata:192 etc/initialdata:88 msgid "User Defined" msgstr "Användardefinierad" #: share/html/Admin/Elements/EditScrip:97 msgid "User Defined conditions and actions" msgstr "Användardefinierade villkor och handlingar" #: share/html/Elements/Tabs:191 share/html/Elements/Tabs:292 share/html/Elements/Tabs:330 share/html/Elements/Tabs:346 share/html/Elements/Tabs:378 msgid "User Rights" msgstr "Användarrättigheter" #: lib/RT/Interface/Web.pm:2849 #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #: share/html/Admin/Users/Modify.html:281 #. ($msg) msgid "User could not be created: %1" msgstr "Det gick inte att skapa användare: %1" #: lib/RT/User.pm:262 msgid "User created" msgstr "Användare har skapats" #: NOT FOUND IN SOURCE msgid "User defined groups" msgstr "Användardefinierade grupper" #: lib/RT/User.pm:1110 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1112 msgid "User enabled" msgstr "" #: share/html/Admin/Users/GnuPG.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:528 lib/RT/User.pm:548 msgid "User loaded" msgstr "Användare har lästs in" #: share/html/Admin/Groups/index.html:126 msgid "User-defined groups" msgstr "Användardefinierade grupper" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:73 msgid "Username" msgstr "Användarnamn" #: lib/RT/Config.pm:173 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:1672 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:128 share/html/Elements/Tabs:241 share/html/Elements/Tabs:67 msgid "Users" msgstr "Användare" #: share/html/Admin/Users/index.html:114 msgid "Users matching search criteria" msgstr "Användare som matchar sökkriterierna" #: bin/rt-crontool:174 #. ($txn->id) msgid "Using transaction #%1..." msgstr "Använder transaktion #%1..." #: lib/RT/Tickets_SQL.pm:337 msgid "Valid Query" msgstr "Giltig söksträng" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Validation" msgstr "Bekräftelse" #: share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:197 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 share/html/Admin/Elements/EditCustomField:80 msgid "Values" msgstr "Värden" #: share/html/Admin/Tools/Configuration.html:113 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:221 msgid "Version" msgstr "Version" #: lib/RT/Queue.pm:101 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:104 msgid "View Scrips" msgstr "" #: lib/RT/Queue.pm:97 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:205 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:108 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:99 msgid "View group" msgstr "" #: lib/RT/Group.pm:100 msgid "View group dashboards" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:92 msgid "View queue" msgstr "" #: lib/RT/Group.pm:98 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:106 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:183 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:242 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:233 msgid "WYSIWYG message composer" msgstr "" #: share/html/Ticket/Elements/ShowGnuPGStatus:170 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:273 msgid "Warning: you have no email address set, so you will not receive this dashboard until you have it set" msgstr "" #: lib/RT/Queue.pm:110 msgid "Watch" msgstr "Observera" #: lib/RT/Queue.pm:111 msgid "WatchAsAdminCc" msgstr "ObserveraSomAdmin.kopia" #: lib/RT/Report/Tickets.pm:63 lib/RT/Tickets.pm:141 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:152 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:275 msgid "Watchers" msgstr "Observatörer" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:1099 lib/RT/CustomField.pm:1777 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:222 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Ons" #: NOT FOUND IN SOURCE msgid "Wed." msgstr "Ons." #: share/html/Dashboards/Subscription.html:108 msgid "Wednesday" msgstr "onsdag" #: lib/RT/Dashboard/Mailer.pm:327 msgid "Weekday" msgstr "" #: lib/RT/Dashboard/Mailer.pm:329 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:478 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Välkommen till RT!" #: share/html/Tools/MyDay.html:77 msgid "What I did today" msgstr "Vad jag gjorde i dag" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Vad är RT?" #: lib/RT/Installer.pm:166 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "När RT skickar e-post anger den värden i rubrikerna Från: och Svara-Till: så att användare kan fortsätta dialogen genom att besvara e-brevet i sina e-postprogram. Olika adresser används för Svar och Kommentarer. Dessa adresser kan ställas in för varje kö och adresserna behöver konfigureras att använda sig av programmet rt-mailgate." #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by all approvers, add correspondence to the original ticket" msgstr "När ett ärende har godkänts av alla godkännare, lägg till korrespondens till originalärendet" #: NOT FOUND IN SOURCE msgid "When a ticket has been approved by any approver, add correspondence to the original ticket" msgstr "När ett ärende har godkänts av någon godkännare, lägg till korrespondens till originalärendet" #: etc/initialdata:105 msgid "When a ticket is created" msgstr "När ett ärende skapas" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "När ett godkännandeärende skapas, meddela ägaren och mottagaren av adminkopia om vad som väntar på deras godkännande" #: etc/initialdata:110 msgid "When anything happens" msgstr "När något händer" #: lib/RT/Config.pm:271 msgid "When the WYSIWYG editor is not enabled, this setting determines whether automatic line wraps in the ticket message box are sent to RT or not." msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:200 etc/upgrade/3.7.1/content:3 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:130 etc/upgrade/4.0.3/content:12 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:186 etc/upgrade/3.8.3/content:3 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:205 etc/upgrade/3.7.1/content:8 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:179 msgid "Whenever a ticket is resolved" msgstr "När ett ärende har åtgärdats" #: etc/initialdata:123 etc/upgrade/4.0.3/content:5 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:165 msgid "Whenever a ticket's owner changes" msgstr "När ett ärende byter ägare" #: etc/initialdata:158 etc/upgrade/3.1.17/content:16 msgid "Whenever a ticket's priority changes" msgstr "När ett ärendes prioritet ändras" #: etc/initialdata:173 msgid "Whenever a ticket's queue changes" msgstr "När ett ärendes kö ändras" #: etc/initialdata:150 msgid "Whenever a ticket's status changes" msgstr "När ett ärendes status ändras" #: etc/initialdata:137 etc/upgrade/4.0.3/content:19 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:193 msgid "Whenever a user-defined condition occurs" msgstr "När det förekommer ett användardefinierat villkor" #: etc/initialdata:144 msgid "Whenever comments come in" msgstr "När det kommer in kommentarer" #: etc/initialdata:116 msgid "Whenever correspondence comes in" msgstr "Vid inkommande brevväxling" #: lib/RT/Installer.pm:188 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:172 share/html/User/Prefs.html:92 msgid "Work" msgstr "Arbete" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Work Phone" msgstr "" #: NOT FOUND IN SOURCE msgid "Work offline" msgstr "Arbeta offline" #: share/html/Ticket/Elements/ShowBasics:65 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:77 share/html/m/ticket/show:232 msgid "Worked" msgstr "Arbetat" #: share/html/Articles/Article/Delete.html:70 share/html/Widgets/Form/Boolean:77 msgid "Yes" msgstr "Ja" #: share/html/Dashboards/Render.html:86 #. ($edit, $subscription) msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:3090 msgid "You already own this ticket" msgstr "Det här ärendet tillhör redan dig" #: share/html/Elements/GnuPG/KeyIssues:63 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption." msgstr "" #: share/html/Elements/GnuPG/KeyIssues:61 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption." msgstr "" #: NOT FOUND IN SOURCE msgid "You are not an authorized user" msgstr "Du är inte en auktoriserad användare" #: share/html/Ticket/Elements/ShowUpdateStatus:54 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kan även redigera själva den fördefinierade sökningen" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:813 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2973 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Du kan endast dela ut ärenden som tillhör dig eller som inte tillhör någon" #: lib/RT/Ticket.pm:2969 msgid "You can only take tickets that are unowned" msgstr "Du kan endast ta ärenden som inte tillhör någon" #: share/html/Search/Simple.html:71 #. ($fulltext_keyword) msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #: lib/RT/Ticket.pm:3162 #. ($self->loc($old), $self->loc($new)) msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: NOT FOUND IN SOURCE msgid "You found %1 tickets in queue %2" msgstr "Du hittade %1 ärenden i kö %2" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Du har loggat av från RT." #: share/html/Admin/Queues/Modify.html:147 msgid "You have enabled GnuPG support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:137 msgid "You have enabled GnuPG support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:116 msgid "You have no permission to create tickets in that queue." msgstr "Du har inte tillåtelse att skapa ärenden i den kön." #: share/html/Elements/EditLinks:121 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: lib/RT/Ticket.pm:1711 msgid "You may not create requests in that queue." msgstr "Du får inte skapa förfrågningar i den kön." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Du måste ange ett administrativt lösenord" #: share/html/Admin/Tools/Queries.html:61 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:148 msgid "You must set a comment address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Admin/Queues/Modify.html:138 msgid "You must set a correspondence address for this queue in order to configure a GnuPG private key." msgstr "" #: share/html/Install/Finish.html:56 #. ('root') msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Install/index.html:79 #. (loc("Let's go!")) msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Du är välkommen att logga in igen" #: NOT FOUND IN SOURCE msgid "Your current password" msgstr "Ditt aktuella lösenord" #: lib/RT/User.pm:1002 msgid "Your password is not set." msgstr "" #: NOT FOUND IN SOURCE msgid "Your request has been approved by %1. Other approvals may still be pending." msgstr "Din förfrågan har godkänts av %1. Andra godkännanden inväntas kanske fortfarande." #: NOT FOUND IN SOURCE msgid "Your request has been approved." msgstr "Din förfrågan har godkänts." #: NOT FOUND IN SOURCE msgid "Your request was rejected." msgstr "Din förfrågan avvisades." #: share/html/Admin/Tools/Theme.html:65 #. ($valid_image_types) msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:754 msgid "Your username or password is incorrect" msgstr "Ditt användarnamn eller lösenord är inte korrekt" #: share/html/Admin/Users/Modify.html:152 share/html/Elements/RT__User/ColumnMap:126 share/html/User/Prefs.html:147 msgid "Zip" msgstr "Zip" #: share/html/Elements/RT__CustomField/ColumnMap:168 msgid "[Down]" msgstr "[Upp]" #: share/html/Elements/RT__CustomField/ColumnMap:165 msgid "[Up]" msgstr "[Ner]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ingen]" #: lib/RT/Transaction.pm:725 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: lib/RT/Config.pm:371 msgid "add
 tag around plain text attachments"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59
msgid "after"
msgstr "Efter"

#: NOT FOUND IN SOURCE
msgid "allow creation of saved searches"
msgstr "tillåt skapande av sparade sökningar"

#: NOT FOUND IN SOURCE
msgid "allow loading of saved searches"
msgstr "tillåt inläsning av sparade sökningar"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111
msgid "and before"
msgstr ""

#: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86
msgid "and not"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "as granted to %1"
msgstr "som givet till %1"

#: share/html/Search/Elements/SelectChartType:54
msgid "bar"
msgstr "stapel"

#: share/html/Elements/SelectDateRelation:57
msgid "before"
msgstr "Före"

#: share/html/Admin/Global/MyRT.html:88
msgid "body"
msgstr ""

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:54
msgid "bottom to top"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "chart"
msgstr "diagram"

#: share/html/Admin/Articles/Classes/Objects.html:63
msgid "check this box to apply this Class globally to all Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:64
msgid "check this box to apply this Custom Field to all objects."
msgstr ""

#: share/html/Admin/Articles/Classes/Objects.html:58
msgid "check this box to remove this Class globally and be able to choose specific Queues."
msgstr ""

#: share/html/Admin/CustomFields/Objects.html:59
msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects."
msgstr ""

#: share/html/Ticket/Elements/UpdateCc:55 share/html/Ticket/Elements/UpdateCc:70
msgid "check to add"
msgstr ""

#: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57
msgid "click to check/uncheck all objects at once"
msgstr ""

#: share/html/SelfService/Closed.html:53
msgid "closed"
msgstr "stängd"

#: NOT FOUND IN SOURCE
msgid "contains"
msgstr "innehåller"

#: share/html/Admin/Tools/Configuration.html:83
msgid "core config"
msgstr ""

#: lib/RT/Interface/Web.pm:1516 lib/RT/Interface/Web.pm:1525
msgid "create a ticket"
msgstr ""

#: share/html/Search/Chart.html:61 share/html/Search/Chart.html:65
#. ($cf)
#. ($obj->Name)
msgid "custom field '%1'"
msgstr ""

#: share/html/Dashboards/Subscription.html:96
msgid "daily"
msgstr "varje dag"

#: share/html/Elements/RT__Dashboard/ColumnMap:101
#. ($hour)
msgid "daily at %1"
msgstr "varje dag kl. %1"

#: lib/RT/Date.pm:350 share/html/Admin/Queues/Modify.html:101
msgid "days"
msgstr "dagar"

#: lib/RT/Queue.pm:88
msgid "deleted"
msgstr "raderad"

#: lib/RT/Config.pm:381
msgid "display wrapped and formatted plain text attachments"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "does not match"
msgstr "matchar inte"

#: NOT FOUND IN SOURCE
msgid "doesn't contain"
msgstr "innehåller inte"

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74
msgid "doesn't match"
msgstr "matchar inte"

#: share/html/Ticket/ShowEmailRecord.html:62
msgid "download"
msgstr ""

#: share/html/Admin/Tools/Queries.html:87
msgid "duration"
msgstr ""

#: lib/RT/User.pm:276
msgid "empty name"
msgstr ""

#: share/html/Elements/SelectEqualityOperator:61
msgid "equal to"
msgstr "lika med"

#: share/html/Search/Elements/EditQuery:93
msgid "error: can't move down"
msgstr "fel: kan inte flytta ner"

#: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116
msgid "error: can't move left"
msgstr "fel: kan inte flytta till vänster"

#: share/html/Search/Elements/EditQuery:92
msgid "error: can't move up"
msgstr "fel: kan inte flytta upp"

#: share/html/Search/Elements/EditQuery:188
msgid "error: nothing to delete"
msgstr "fel: inget att radera"

#: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150
msgid "error: nothing to move"
msgstr "fel: inget att flytta"

#: share/html/Search/Elements/EditQuery:208
msgid "error: nothing to toggle"
msgstr "fel: inget att växla"

#: share/html/Dashboards/Subscription.html:114
msgid "every"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:169
msgid "executed plugin successfuly"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2289
msgid "full"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "greater than"
msgstr "större än"

#: share/html/Admin/Elements/EditRights:63
msgid "group"
msgstr ""

#: lib/RT/Group.pm:197
#. ($self->Name)
msgid "group '%1'"
msgstr "grupp '%1'"

#: NOT FOUND IN SOURCE
msgid "grouped by %1"
msgstr "grupperad efter %1"

#: lib/RT/Date.pm:346
msgid "hours"
msgstr "timmar"

#: lib/RT/Date.pm:121 share/html/Elements/Tabs:773
msgid "iCal"
msgstr ""

#: lib/RT/Tickets.pm:107 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Elements/ColumnMap:59 share/html/Search/Elements/BuildFormatString:100 share/html/Search/Elements/PickBasics:56
msgid "id"
msgstr "ID"

#: share/html/Articles/Article/PreCreate.html:57 share/html/Articles/Article/Search.html:59
#. ($Class->Name)
#. ($class->Name)
msgid "in class %1"
msgstr ""

#: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48
msgid "inactive"
msgstr ""

#: share/html/Admin/Elements/EditRights:185
#. ($inc)
msgid "includes %1"
msgstr ""

#: share/html/Admin/Tools/Queries.html:86
msgid "index"
msgstr ""

#: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickCFs:90
msgid "is"
msgstr "är"

#: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:91
msgid "isn't"
msgstr "är inte"

#: lib/RT/Crypt/GnuPG.pm:2245
msgid "key disabled"
msgstr "nyckel avstängd"

#: lib/RT/Crypt/GnuPG.pm:2256
msgid "key expired"
msgstr "nyckel utgången"

#: lib/RT/Crypt/GnuPG.pm:2251
msgid "key revoked"
msgstr "nyckel återkallad"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:52
msgid "left to right"
msgstr ""

#: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61
msgid "less than"
msgstr "mindre än"

#: lib/RT/Crypt/GnuPG.pm:2284
msgid "marginal"
msgstr "marginell"

#: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73
msgid "matches"
msgstr "matchar"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:64
msgid "maximum depth"
msgstr "maximalt djup"

#: lib/RT/Date.pm:342
msgid "min"
msgstr "min."

#: share/html/Tools/MyDay.html:62
msgid "minutes"
msgstr "minuter"

#: lib/RT/Interface/Web.pm:1518
msgid "modify RT's configuration"
msgstr ""

#: lib/RT/Interface/Web.pm:1521
msgid "modify a dashboard"
msgstr ""

#: lib/RT/Interface/Web.pm:1524
msgid "modify or access a search"
msgstr ""

#: lib/RT/Interface/Web.pm:1523
msgid "modify your preferences"
msgstr ""

#: share/html/Dashboards/Subscription.html:124
msgid "monthly"
msgstr "månadsvis"

#: share/html/Elements/RT__Dashboard/ColumnMap:98
#. ($Subscription->SubValue('Dom'), $hour)
msgid "monthly (day %1) at %2"
msgstr "månatlig (den %1) kl. %2"

#: lib/RT/Date.pm:358
msgid "months"
msgstr "månader"

#: share/html/Admin/Elements/ShowKeyInfo:61 share/html/Admin/Elements/ShowKeyInfo:64 share/html/Admin/Elements/ShowKeyInfo:69 share/html/Admin/Elements/ShowKeyInfo:70 share/html/Dashboards/Subscription.html:133
msgid "never"
msgstr "aldrig"

#: lib/RT/Queue.pm:83
msgid "new"
msgstr "ny"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "no"
msgstr "nej"

#: share/html/Admin/Elements/PickCustomFields:66 share/html/Admin/Elements/PickObjects:67
msgid "no name"
msgstr "inget namn"

#: NOT FOUND IN SOURCE
msgid "no value"
msgstr "inget värde"

#: lib/RT/Crypt/GnuPG.pm:2261 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51
msgid "none"
msgstr "inget"

#: share/html/Elements/SelectEqualityOperator:61
msgid "not equal to"
msgstr "inte lika med"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:83
msgid "nothing"
msgstr "ingenting"

#: share/html/Admin/Tools/Shredder/index.html:157
msgid "objects were successfuly removed"
msgstr ""

#: share/html/Dashboards/Subscription.html:104 share/html/Elements/SelectDateRelation:58
msgid "on"
msgstr "Vid"

#: share/html/Dashboards/Subscription.html:124
msgid "on day"
msgstr ""

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "one"
msgstr ""

#: lib/RT/Queue.pm:84 share/html/SelfService/Elements/MyRequests:72 share/html/SelfService/index.html:52
msgid "open"
msgstr "öppen"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:154
msgid "open/close"
msgstr "öppna/stäng"

#: share/html/Widgets/Form/Select:79
msgid "other..."
msgstr "annan..."

#: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57
msgid "perform actions"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "personal group '%1' for user '%2'"
msgstr "personlig grupp '%1' för användare '%2'"

#: share/html/Search/Elements/SelectChartType:55
msgid "pie"
msgstr ""

#: share/html/Admin/Tools/Shredder/index.html:177
msgid "plugin returned empty list"
msgstr ""

#: lib/RT/Group.pm:205
#. ($queue->Name, $self->Type)
msgid "queue %1 %2"
msgstr "kö %1 %2"

#: lib/RT/Queue.pm:87
msgid "rejected"
msgstr "avvisad"

#: share/html/Admin/Queues/Modify.html:97
msgid "requires running rt-crontool"
msgstr ""

#: lib/RT/Queue.pm:86
msgid "resolved"
msgstr "åtgärdat"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:55
msgid "right to left"
msgstr "från höger till vänster"

#: lib/RT/Date.pm:338
msgid "sec"
msgstr "sek."

#: share/html/Admin/Tools/Shredder/index.html:179
msgid "see object list below"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "show Configuration tab"
msgstr "visa konfigurationsflik"

#: share/html/Admin/Tools/Configuration.html:80
msgid "site config"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "spreadsheet"
msgstr "kalkylblad"

#: lib/RT/Queue.pm:85
msgid "stalled"
msgstr "i väntläge"

#: share/html/Admin/Tools/Queries.html:88
msgid "statement"
msgstr ""

#: NOT FOUND IN SOURCE
msgid "style: %1"
msgstr "stil: %1"

#: share/html/Admin/Global/MyRT.html:89
msgid "summary"
msgstr ""

#: share/html/Prefs/MyRT.html:89
msgid "summary rows"
msgstr "summeringsrader"

#: lib/RT/Group.pm:200
#. ($self->Type)
msgid "system %1"
msgstr "system %1"

#: lib/RT/Group.pm:211
#. ($self->Type)
msgid "system group '%1'"
msgstr "systemgrupp '%1'"

#: lib/RT/Interface/Web.pm:1432
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)"
msgstr ""

#: lib/RT/Interface/Web.pm:1425
msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)"
msgstr ""

#: share/html/Elements/Error:73 share/html/SelfService/Error.html:65
msgid "the calling component did not specify why"
msgstr "den anropade komponenten specificerade inte varför"

#: lib/RT/Installer.pm:174
msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail."
msgstr "de förvalda adresser som skall anges i rubrikerna Från: och Svara-Till: i ett kommentarsbrev."

#: lib/RT/Installer.pm:182
msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail."
msgstr "de förvalda adresser som skall anges i rubrikerna Från: och Svara-Till: i ett kontaktbrev."

#: lib/RT/Group.pm:208
#. ($self->Instance, $self->Type)
msgid "ticket #%1 %2"
msgstr "ärende #%1 %2"

#: share/html/Ticket/Graphs/Elements/EditGraphProperties:51
msgid "top to bottom"
msgstr ""

#: lib/RT/Crypt/GnuPG.pm:2294
msgid "ultimate"
msgstr "förbehållslös"

#: lib/RT/Group.pm:214
#. ($self->Id)
msgid "undescribed group %1"
msgstr "icke-beskriven grupp %1"

#: share/html/Elements/RT__CustomField/ColumnMap:86
msgid "unlimited"
msgstr ""

#: lib/RT/Interface/Web.pm:1517 lib/RT/Interface/Web.pm:1522 lib/RT/Interface/Web.pm:1526
msgid "update a ticket"
msgstr ""

#: lib/RT/Interface/Web.pm:1519
msgid "update an approval"
msgstr ""

#: lib/RT/Interface/Web.pm:1520
msgid "update an article"
msgstr ""

#: share/html/Admin/Elements/EditRights:66
msgid "user"
msgstr ""

#: lib/RT/Group.pm:194
#. ($user->Object->Name)
msgid "user %1"
msgstr "användare %1"

#: share/html/Admin/Elements/EditRights:157
msgid "username"
msgstr "användarnamn"

#: NOT FOUND IN SOURCE
msgid "verbose"
msgstr "utförlig"

#: share/html/Dashboards/Subscription.html:104
msgid "weekly"
msgstr "veckovis"

#: share/html/Elements/RT__Dashboard/ColumnMap:95
#. (loc($day), $hour)
msgid "weekly (on %1) at %2"
msgstr "veckovis (på %1) klockan %2"

#: lib/RT/Date.pm:354 share/html/Dashboards/Subscription.html:120
msgid "weeks"
msgstr "veckor"

#: share/html/Elements/LoginRedirectWarning:64
#. ("$consequence")
msgid "which may %1 on your behalf."
msgstr ""

#: lib/RT/Installer.pm:223
msgid "which port your web server will listen to, e.g. 8080"
msgstr "den port som webbservern kommer att lyssna på, t.ex. 8080"

#: share/html/Ticket/Elements/ShowTransactionAttachments:69
msgid "with headers"
msgstr "med rubriker"

#: lib/RT/Date.pm:362
msgid "years"
msgstr "år"

#: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:86
msgid "yes"
msgstr "ja"

#: lib/RT/Interface/Web.pm:1417
msgid "your browser did not supply a Referrer header"
msgstr ""

rt-4.0.19/share/html/0000775000175000017500000000000012262650742013320 5ustar  chmrrchmrrrt-4.0.19/share/html/Ticket/0000775000175000017500000000000012262650742014543 5ustar  chmrrchmrrrt-4.0.19/share/html/Ticket/ModifyDates.html0000664000175000017500000000603012262650742017640 0ustar  chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{
%#
%# COPYRIGHT:
%#
%# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC
%#                                          
%#
%# (Except where explicitly superseded by other copyright notices)
%#
%#
%# LICENSE:
%#
%# This work is made available to you under the terms of Version 2 of
%# the GNU General Public License. A copy of that license should have
%# been provided with this software, but in any event can be snarfed
%# from www.gnu.org.
%#
%# This work is distributed in the hope that it will be useful, but
%# WITHOUT ANY WARRANTY; without even the implied warranty of
%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
%# General Public License for more details.
%#
%# You should have received a copy of the GNU General Public License
%# along with this program; if not, write to the Free Software
%# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
%# 02110-1301 or visit their web page on the internet at
%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
%#
%#
%# CONTRIBUTION SUBMISSION POLICY:
%#
%# (The following paragraph is not intended to limit the rights granted
%# to you to modify and distribute this software under the terms of
%# the GNU General Public License and is only of importance to you if
%# you choose to contribute your changes and enhancements to the
%# community by submitting them to Best Practical Solutions, LLC.)
%#
%# By intentionally submitting any modifications, corrections or
%# derivatives to this work, or any other work intended for use with
%# Request Tracker, to Best Practical Solutions, LLC, you confirm that
%# you are the copyright holder for those contributions and you grant
%# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
%# royalty-free, perpetual, license to use, copy, create derivative
%# works based on those contributions, and sublicense and distribute
%# those contributions and any derivatives thereof.
%#
%# END BPS TAGGED BLOCK }}}
<& /Elements/Header, Title => loc('Modify dates for #[_1]', $TicketObj->Id) &>
<& /Elements/Tabs &>

% $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $TicketObj);
<& /Elements/ListActions, actions => \@results &>

% $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); <&| /Widgets/TitleBox,title => loc('Modify dates for ticket # [_1]', $TicketObj->Id), class=> 'ticket-info-dates' &> <& Elements/EditDates, TicketObj => $TicketObj &> <& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes') &>
<%INIT> my $TicketObj = LoadTicket($id); $m->callback( TicketObj => $TicketObj, ARGSRef => \%ARGS ); my @results = ProcessTicketDates( TicketObj => $TicketObj, ARGSRef => \%ARGS); push @results, ProcessObjectCustomFieldUpdates(Object => $TicketObj, ARGSRef => \%ARGS); $TicketObj->ApplyTransactionBatch; <%ARGS> $id => undef rt-4.0.19/share/html/Ticket/Graphs/0000775000175000017500000000000012262650742015767 5ustar chmrrchmrrrt-4.0.19/share/html/Ticket/Graphs/Elements/0000775000175000017500000000000012262650742017543 5ustar chmrrchmrrrt-4.0.19/share/html/Ticket/Graphs/Elements/ShowLegends0000664000175000017500000000545612262650742021722 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('Legends'), hideable => $hideable &> % if ( $FillUsing ) { % }
<% loc('Status') %>: % foreach my $status ( sort keys %RT::Graph::Tickets::ticket_status_style ) { % my $style = $RT::Graph::Tickets::ticket_status_style{ $status }; <% loc($status) %> % }
<% loc($FillUsing) %>: % foreach my $value ( sort keys %RT::Graph::Tickets::fill_cache ) { % my $color = $RT::Graph::Tickets::fill_cache{ $value }; <% loc($value) %> % }
<%ARGS> $FillUsing => '' $hideable => 1 rt-4.0.19/share/html/Ticket/Graphs/Elements/EditGraphProperties0000664000175000017500000001335312262650742023417 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('Graph Properties') &> <% loc('Direction') %>
<% loc('Main type of links') %> <% loc('maximum depth') %>
<% loc('Show as well') %>: % foreach my $type ( @link_types ) { % my $checked = ''; % $checked = 'checked="checked"' if grep $type eq $_, @ShowLinks; /><% loc($type) %> % }
% my @properties = RT::Graph::Tickets->TicketProperties( $session{'CurrentUser'} ); <% loc('Fill boxes with color using') %>:
% if ( RT::Link->can('Description' ) ) { % my $checked = ''; % $checked = 'checked="checked"' if $ShowLinkDescriptions; <% loc('Show link descriptions') %>: />
% } <%PERL> for my $i ( 1..($MaxDepth||6) ) { my @default; if ( my $tmp = $ARGS{ 'Level-'. $i .'-Properties' } ) { @default = ref $tmp? @$tmp : ($tmp); } $m->comp('SELF:Properties', Level => $i, Available => \@properties, Default => \@default, ); } <& /Elements/Submit, Label => loc('Update Graph'), Name => 'Update' &> <%ARGS> $id => undef $Direction => 'TB' $LeadingLink => 'Members' @ShowLinks => ('MemberOf', 'DependsOn', 'RefersTo') $MaxDepth => 3 $FillUsing => '' $ShowLinkDescriptions => 0 <%INIT> require RT::Graph::Tickets; require RT::Link; my @link_types = qw(Members MemberOf RefersTo ReferredToBy DependsOn DependedOnBy); #loc_qw @ShowLinks = grep $_ ne $LeadingLink, @ShowLinks; <%METHOD Properties> <%ARGS> @Available => () @Default => () $Level => 1, <%INIT> my $id = "graph-properties-box-$Level"; my $class = ''; $class = 'class="hidden"' if $Level != 1 && !@Default; <% loc('Show Tickets Properties on [_1] level', $Level) %> (<% loc('open/close') %>): > % while ( my ($group, $list) = (splice @Available, 0, 2) ) { % }
<% loc($group) %>: % foreach my $prop ( @$list ) { % my $checked = ''; % $checked = 'checked="checked"' if grep $_ eq $prop, @Default; /><% loc($prop) %> % }

rt-4.0.19/share/html/Ticket/Graphs/Elements/ShowGraph0000664000175000017500000000530212262650742021370 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
<% safe_run_child { Encode::decode_utf8( $graph->as_cmapx ) } |n %>
<& ShowLegends, %ARGS, Ticket => $ticket &> <%ARGS> $id => undef <%INIT> use RT::Util 'safe_run_child'; my $ticket = RT::Ticket->new( $session{'CurrentUser'} ); $ticket->Load( $id ); unless ( $ticket->id ) { $RT::Logger->error("Couldn't load ticket $id"); return; } $ARGS{'id'} = $id = $ticket->id; require RT::Graph::Tickets; my $graph = RT::Graph::Tickets->TicketLinks( %ARGS, Graph => undef, Ticket => $ticket, ); rt-4.0.19/share/html/Ticket/Graphs/index.html0000664000175000017500000000762212262650742017773 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &> <& Elements/ShowGraph, %ARGS, Ticket => $ticket &>
<& Elements/EditGraphProperties, %ARGS, Ticket => $ticket &> <& /Search/Elements/EditSearches, %$saved_search, Title => loc('Manage saved graphs'), Type => 'Graph', SearchFields => \@save_arguments, CurrentSearch => { map { $_ => $ARGS{$_} } @save_arguments }, AllowCopy => 0, &>
<%ARGS> <%INIT> use RT::Graph::Tickets; my @results; my @save_arguments = qw(id Direction LeadingLink ShowLinks MaxDepth FillUsing ShowLinkDescriptions); foreach my $level ( 0 .. 6 ) { push @save_arguments, "Level-". $level ."-Properties"; } my $saved_search = { Type => 'Graph' }; push @results, $m->comp( '/Search/Elements/EditSearches:Init', %ARGS, Query => \%ARGS, SavedSearch => $saved_search, SearchFields => \@save_arguments, ); my $id = $ARGS{'id'}; my $ticket = LoadTicket( $id ); $ARGS{'id'} = $id = $ticket->id; $ARGS{'LeadingLink'} ||= 'Members'; if ( $ARGS{'ShowLinks'} && !ref $ARGS{'ShowLinks'} ) { $ARGS{'ShowLinks'} = [$ARGS{'ShowLinks'}]; } elsif ( !$ARGS{'ShowLinks'} ) { $ARGS{'ShowLinks'} = [ qw(MemberOf DependsOn RefersTo) ]; } $ARGS{'ShowLinks'} = [ grep $_ ne $ARGS{'LeadingLink'}, @{ $ARGS{'ShowLinks'} } ]; $ARGS{'MaxDepth'} = 3 unless defined $ARGS{'MaxDepth'} && length $ARGS{'MaxDepth'}; push @results, $m->comp( '/Search/Elements/EditSearches:Save', %ARGS, Query => \%ARGS, SavedSearch => $saved_search, SearchFields => \@save_arguments, ); my $title = loc( "Ticket #[_1] relationships graph", $id ); rt-4.0.19/share/html/Ticket/Graphs/dhandler0000664000175000017500000000514412262650742017477 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $arg = $m->dhandler_arg; my $id; if ( $arg =~ m{^(\d+)$}i ) { ($id) = ($1); } else { return $m->abort( 404 ); } my $ticket = RT::Ticket->new($session{'CurrentUser'} ); $ticket->Load( $id ); unless ( $ticket->id ) { $RT::Logger->error("Couldn't load ticket #$id"); return $m->abort( 404 ); } require RT::Graph::Tickets; my $graph = RT::Graph::Tickets->TicketLinks( %ARGS, Graph => undef, Ticket => $ticket, ); $r->content_type( 'image/png' ); $m->clear_buffer; my $png; use RT::Util 'safe_run_child'; safe_run_child { $graph->as_png(\$png) }; $m->out( $png ); $m->abort; rt-4.0.19/share/html/Ticket/Forward.html0000664000175000017500000001131112262650742017032 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $Title &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $TicketObj); <& /Elements/ListActions, actions => \@results &>
% $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS );
<&|/l&>From: <% $from %>
<&|/l&>Subject: <% $subject %>
<&|/l&>To:
<&|/l&>Cc:
<&|/l&>Bcc:
<& /Elements/Submit, Label => loc('Forward Message and Return'), Name => 'ForwardAndReturn' &> <& /Elements/Submit, Label => loc('Forward Message'), Name => 'Forward' &>
<%INIT> my $TicketObj = LoadTicket($id); $id = $ARGS{'id'} = $TicketObj->id; Abort( loc("Permission Denied") ) unless $TicketObj->CurrentUserHasRight('ForwardMessage'); my $txn; if ( $QuoteTransaction ) { $txn = RT::Transaction->new( $session{'CurrentUser'} ); $txn->Load( $QuoteTransaction ); Abort( loc("Couldn't load transaction #[_1]", $QuoteTransaction) ) unless $txn->id; } my @results; if ( $Forward || $ForwardAndReturn ) { require RT::Interface::Email; my ($status, $msg) = $txn ? RT::Interface::Email::ForwardTransaction( $txn, %ARGS ) : RT::Interface::Email::ForwardTicket( $TicketObj, %ARGS ); push @results, $msg; if ( $ForwardAndReturn ) { $session{'i'}++; my $key = Digest::MD5::md5_hex(rand(1024)); push @{ $session{"Actions"}->{$key} ||= [] }, @results; RT::Interface::Web::Redirect( RT->Config->Get('WebURL') ."Ticket/Display.html?id=". $id."&results=".$key); } } my $Title = $txn ? loc('Forward transaction #[_1]', $txn->id) : loc('Forward ticket #[_1]', $TicketObj->id); my $from = RT::Interface::Email::GetForwardFrom( $txn ? ( Transaction => $txn ) : ( Ticket => $TicketObj ) ); my $subject = $TicketObj->Subject; $subject = RT::Interface::Email::AddSubjectTag( $subject, $TicketObj ) unless RT->Config->Get('ForwardFromUser'); <%ARGS> $id => undef $QuoteTransaction => undef $ForwardAndReturn => 0, $Forward => $ForwardAndReturn, rt-4.0.19/share/html/Ticket/Elements/0000775000175000017500000000000012262650742016317 5ustar chmrrchmrrrt-4.0.19/share/html/Ticket/Elements/ShowSimplifiedRecipients0000664000175000017500000001034012262650742023214 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $TicketObj <%init> return unless RT->Config->Get('SimplifiedRecipients', $session{'CurrentUser'}); my $Object = $m->notes("DryRun-".$TicketObj->Id) || $TicketObj->DryRun(%ARGS); $m->notes("DryRun-".$TicketObj->Id, $Object); return unless $Object; my %headers = (To => {}, Cc => {}, Bcc => {}); if ($Object->Scrips) { for my $scrip (grep $_->ActionObj->Action->isa('RT::Action::SendEmail'), @{$Object->Scrips->Prepared}) { for my $type (qw(To Cc Bcc)) { $headers{$type}{$_->address} = $_ for $scrip->ActionObj->Action->$type(); } } } if ($Object->Rules) { for my $rule (grep {$_->{hints} and $_->{hints}{class} eq "SendEmail"} @{$Object->Rules}) { for my $type (qw(To Cc Bcc)) { $headers{$type}{$_} ||= @{[Email::Address->parse($_)]}[0] # Hate list context for @{$rule->{hints}{recipients}{$type}}; } } } my %recips; my %squelched = ProcessTransactionSquelching( \%ARGS ); <&|/Widgets/TitleBox, title => loc('Recipients'), id => 'recipients' &> % for my $type (qw(To Cc Bcc)) { % next unless keys %{$headers{$type}}; % } % $m->callback( CallbackName => 'AfterRecipients', TicketObj => $TicketObj );
<% $type %>: % for my $addr (sort {$a->address cmp $b->address} values %{$headers{$type}}) { % my $checked = not $squelched{$addr->address}; % $m->callback(CallbackName => 'BeforeAddress', Ticket => $TicketObj, Address => $addr, Type => $type, Checked => \$checked); % $recips{$addr->address}++; value="<%$addr->address%>" id="TxnSendMailTo-<% $addr->address %>-<% $recips{$addr->address} %>" /> % $m->callback(CallbackName => 'AfterAddress', Ticket => $TicketObj, Address => $addr, Type => $type);
% }
(Uncheck boxes to disable notifications to the listed recipients. Does not change who will receive future updates.) % $m->notes("DryRun-Recipients-".$TicketObj->Id, \%recips); rt-4.0.19/share/html/Ticket/Elements/LoadTextAttachments0000664000175000017500000000737612262650742022177 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $attachments = RT::Attachments->new( $session{'CurrentUser'} ); $attachments->Columns( qw(id Content ContentType TransactionId ContentEncoding)); if ( $Ticket->CurrentUserHasRight('ShowTicket') ) { my $transactions = $attachments->NewAlias('Transactions'); $attachments->Join( ALIAS1 => 'main', FIELD1 => 'TransactionId', ALIAS2 => $transactions, FIELD2 => 'id' ); my $tickets = $attachments->NewAlias('Tickets'); $attachments->Join( ALIAS1 => $transactions, FIELD1 => 'ObjectId', ALIAS2 => $tickets, FIELD2 => 'id' ); $attachments->Limit( ALIAS => $transactions, FIELD => 'ObjectType', VALUE => 'RT::Ticket'); $attachments->Limit( ALIAS => $tickets, FIELD => 'EffectiveId', VALUE => $Ticket->id() ); # if the user may not see comments do not return them unless ( $Ticket->CurrentUserHasRight('ShowTicketComments') ) { $attachments->Limit( ALIAS => $transactions, FIELD => 'Type', OPERATOR => '!=', VALUE => "Comment" ); } $attachments->Limit ( FIELD => 'ContentType', OPERATOR => '=', VALUE => 'text/plain'); $attachments->Limit ( FIELD => 'ContentType', OPERATOR => 'STARTSWITH', VALUE => 'message/'); $attachments->Limit ( FIELD => 'ContentType', OPERATOR => '=', VALUE => 'text'); $attachments->Limit ( FIELD => 'Filename', OPERATOR => 'IS', VALUE => 'NULL') if RT->Config->Get('SuppressInlineTextFiles', $Ticket->CurrentUser ); } return ($attachments); <%ARGS> $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/ShowTime0000664000175000017500000000431712262650742020006 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($minutes < 60) { <&|/l, $minutes &>[_1] min % } else { <&|/l, sprintf("%.1f",$minutes / 60) &>[quant,_1,hour] (<&|/l, $minutes &>[_1] min) % } <%init> $minutes ||= 0; <%ARGS> $minutes rt-4.0.19/share/html/Ticket/Elements/ShowHistory0000664000175000017500000001275512262650742020556 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%doc> # This is (ab)used in Admin/(Users|Groups)/History.html and should probably # be generalized at some point. <%perl> if ($ShowDisplayModes or $ShowTitle) { my $title = $ShowTitle ? loc('History') : ' '; my $titleright; if ($ShowDisplayModes) { $titleright = ''; my $open_all = $m->interp->apply_escapes( loc("Show all quoted text"), 'j' ); my $open_html = $m->interp->apply_escapes( loc("Show all quoted text"), 'h' ); my $close_all = $m->interp->apply_escapes( loc("Hide all quoted text"), 'j' ); $titleright .= '$open_html — "; if ($ShowHeaders) { $titleright .= qq{} . loc("Show brief headers") . qq{}; } else { $titleright .= qq{} . loc("Show full headers") . qq{}; } }
<& /Widgets/TitleBoxStart, title => $title, titleright_raw => $titleright &> % }
<%perl> my $trans_content = {}; my $trans_attachments = {}; for my $content (@{$AttachmentContent->ItemsArrayRef()}) { $trans_content->{$content->TransactionId}->{$content->Id} = $content; } for my $attachment (@{$Attachments->ItemsArrayRef()}) { push (@{$trans_attachments->{$attachment->TransactionId}}, $attachment) } while ( my $Transaction = $Transactions->Next ) { my $skip = 0; $m->callback( %ARGS, Transaction => $Transaction, skip => \$skip, CallbackName => 'SkipTransaction', ); next if $skip; $i++; my $IsLastTransaction = 0; if ( RT->Config->Get( 'OldestTransactionsFirst', $session{'CurrentUser'} )){ $IsLastTransaction = $Transactions->IsLast; } else { $IsLastTransaction = 1 if ( $i == 1 ); } #Args is first because we're clobbering the "Attachments" parameter $m->comp( 'ShowTransaction', %ARGS, Ticket => $Ticket, Transaction => $Transaction, ShowHeaders => $ShowHeaders, RowNum => $i, Attachments => $trans_attachments->{$Transaction->id}, AttachmentContent => $trans_content, LastTransaction => $IsLastTransaction ); # manually flush the content buffer after each txn, so the user sees # some update $m->flush_buffer(); }
% if ($ShowDisplayModes or $ShowTitle) { <& /Widgets/TitleBoxEnd &>
% } <%INIT> my $i; $Transactions ||= $m->comp('/Ticket/Elements/FindTransactions',Ticket => $Ticket, Tickets => $Tickets || undef); $Attachments ||= $m->comp('/Ticket/Elements/FindAttachments', Ticket => $Ticket, Tickets => $Tickets || undef); $AttachmentContent ||= $m->comp('/Ticket/Elements/LoadTextAttachments', Ticket => $Ticket); <%ARGS> $URIFile => RT->Config->Get('WebPath')."/Ticket/Display.html" $Ticket => undef $Tickets => undef $Transactions => undef $Attachments => undef $AttachmentContent => undef $ShowHeaders => undef $ShowTitle => 1 $ShowDisplayModes => 1 $WarnUnsigned => undef rt-4.0.19/share/html/Ticket/Elements/ShowSummary0000664000175000017500000001260612262650742020545 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
% $m->callback( %ARGS, CallbackName => 'LeftColumnTop' ); <&| /Widgets/TitleBox, title => loc('The Basics'), (($can_modify || $can_modify_cf) ? (title_href => RT->Config->Get('WebPath')."/Ticket/Modify.html?id=".$Ticket->Id) : ()), class => 'ticket-info-basics', &><& /Ticket/Elements/ShowBasics, Ticket => $Ticket &> <&| /Widgets/TitleBox, title => loc('Custom Fields'), (($can_modify || $can_modify_cf) ? (title_href => RT->Config->Get('WebPath')."/Ticket/Modify.html?id=".$Ticket->Id) : ()), class => 'ticket-info-cfs', hide_empty => 1, &><& /Ticket/Elements/ShowCustomFields, Ticket => $Ticket &> <&| /Widgets/TitleBox, title => loc('People'), (($can_modify || $can_modify_owner || $can_modify_people) ? (title_href => RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$Ticket->Id) : ()), class => 'ticket-info-people', &><& /Ticket/Elements/ShowPeople, Ticket => $Ticket &> <& /Ticket/Elements/ShowAttachments, Ticket => $Ticket, Attachments => $Attachments &> <& /Ticket/Elements/ShowRequestor, Ticket => $Ticket &> % $m->callback( %ARGS, CallbackName => 'LeftColumn' ); % $m->callback( %ARGS, CallbackName => 'RightColumnTop' ); % if ( RT->Config->Get('EnableReminders') ) { <&|/Widgets/TitleBox, title => loc("Reminders"), title_href => RT->Config->Get('WebPath')."/Ticket/Reminders.html?id=".$Ticket->Id, class => 'ticket-info-reminders', &>
% if ( $m->comp("/Ticket/Elements/Reminders", Ticket => $Ticket, ShowCompleted => 0) ) {
% }
% } <&| /Widgets/TitleBox, title => loc("Dates"), ($can_modify ? (title_href => RT->Config->Get('WebPath')."/Ticket/ModifyDates.html?id=".$Ticket->Id) : ()), class => 'ticket-info-dates', &><& /Ticket/Elements/ShowDates, Ticket => $Ticket &> % my (@extra); % push @extra, titleright_raw => ''.loc('Graph').'' unless RT->Config->Get('DisableGraphViz'); % $m->callback( %ARGS, CallbackName => 'LinksExtra', extra => \@extra ); <&| /Widgets/TitleBox, title => loc('Links'), ($can_modify ? (title_href => RT->Config->Get('WebPath')."/Ticket/ModifyLinks.html?id=".$Ticket->Id) : ()), class => 'ticket-info-links', @extra, &><& /Elements/ShowLinks, Ticket => $Ticket &> % $m->callback( %ARGS, CallbackName => 'RightColumn' );
<%ARGS> $Ticket => undef $Attachments => undef <%INIT> my $can_modify = $Ticket->CurrentUserHasRight('ModifyTicket'); my $can_modify_cf = $Ticket->CurrentUserHasRight('ModifyCustomField'); my $can_modify_owner = $Ticket->CurrentUserHasRight('OwnTicket') || $Ticket->CurrentUserHasRight('TakeTicket') || $Ticket->CurrentUserHasRight('StealTicket'); my $can_modify_people = $Ticket->CurrentUserHasRight('Watch') || $Ticket->CurrentUserHasRight('WatchAsAdminCc'); rt-4.0.19/share/html/Ticket/Elements/ShowTransaction0000664000175000017500000002050512262650742021372 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
% $m->callback( titlebar_cmd => \$titlebar_commands, Transaction => $Transaction, %ARGS, CallbackName => 'ModifyDisplay' );
% $m->callback( titlebar_cmd => \$titlebar_commands, Transaction => $Transaction, %ARGS, CallbackName => 'ModifyCommand' );
% if ( $type_class eq 'message' ) { <& /Elements/ShowCustomFields, Object => $Transaction &> % } % $m->comp('ShowTransactionAttachments', %ARGS, Parent => 0) unless ($Collapsed ||!$ShowBody);
<%ARGS> $Ticket => undef $Transaction => undef $ShowHeaders => 0 $Collapsed => undef $ShowTitleBarCommands => 1 $RowNum => 1 $DisplayPath => RT->Config->Get('WebPath')."/Ticket/Display.html?id=".$Ticket->id $AttachPath => RT->Config->Get('WebPath')."/Ticket/Attachment" $UpdatePath => RT->Config->Get('WebPath')."/Ticket/Update.html" $ForwardPath => RT->Config->Get('WebPath')."/Ticket/Forward.html" $EncryptionPath => RT->Config->Get('WebPath')."/Ticket/GnuPG.html" $EmailRecordPath => RT->Config->Get('WebPath')."/Ticket/ShowEmailRecord.html" $Attachments => undef $AttachmentContent => undef $ShowBody => 1 $LastTransaction => 0 $WarnUnsigned => undef <%ONCE> my %class = ( Correspond => 'message', Comment => 'message', AddWatcher => 'people', DelWatcher => 'people', Take => 'people', Untake => 'people', Force => 'people', Steal => 'people', Give => 'people', AddLink => 'links', DeleteLink => 'links', ); <%INIT> my $transdate = $Transaction->CreatedAsString(); $transdate =~ s/\s/ /g; my ($type, $field) = ($Transaction->Type, $Transaction->Field || ''); my $type_class = $class{ $type }; if ( $type eq 'Create' && $Transaction->ObjectType eq 'RT::Ticket' ) { $type_class = 'message'; } unless ( $type_class ) { if ( $field eq 'Owner' ) { $type_class = 'people'; } elsif ( $type =~ /^(Status|Set|Told)$/ ) { if ( $field =~ /^(Told|Starts|Started|Due)$/ ) { $type_class = 'dates'; } else { $type_class = 'basics'; } } else { $type_class = 'other'; } } $m->callback( CallbackName => 'MassageTypeClass', Transaction => $Transaction, TypeClassRef => \$type_class, ARGSRef => \%ARGS, ); my $TicketString = ''; if ( $Ticket->Id != $Transaction->Ticket ) { $TicketString = loc("Ticket #[_1]:", $Transaction->Ticket) .' '; } my $TimeTaken = ''; $TimeTaken = $Transaction->TimeTaken . " min" if $Transaction->TimeTaken; unless ($Attachments) { my $attachments = $Transaction->Attachments; $attachments->Columns( qw( Id Filename ContentType Headers Subject Parent ContentEncoding ContentType TransactionId) ); $ARGS{'Attachments'} = $Attachments = $attachments->ItemsArrayRef(); } my $titlebar_commands = ''; $m->callback( CallbackName => 'MassageAttachments', Transaction => $Transaction, AttachmentsRef => \$Attachments, ARGSRef => \%ARGS, ); if ( $type =~ /EmailRecord$/ ) { $titlebar_commands .= "[Ticket . "&Transaction=" . $Transaction->Id . "&Attachment=" . ( $Attachments->[0] && $Attachments->[0]->id ) . '">' . loc('Show') . "] "; $ShowBody = 0; } # If the transaction has anything attached to it at all else { if ( $Attachments->[0] && $ShowTitleBarCommands ) { my $ticket = $Transaction->TicketObj; my $can_modify = $ticket->CurrentUserHasRight('ModifyTicket'); if ( $can_modify || $ticket->CurrentUserHasRight('ReplyToTicket') ) { $titlebar_commands .= "[" . loc('Reply') . "] "; } if ( $can_modify || $ticket->CurrentUserHasRight('CommentOnTicket') ) { $titlebar_commands .= "[" . loc('Comment') . "]"; } if ( $ticket->CurrentUserHasRight('ForwardMessage') ) { $titlebar_commands .= "[" . loc('Forward') . "]"; } if ( $can_modify && RT->Config->Get('GnuPG')->{'Enable'} && RT->Config->Get('GnuPG')->{'AllowEncryptDataInDB'} && $ticket->CurrentUserHasRight('ForwardMessage') ) { $titlebar_commands .= "[" . loc('Encrypt/Decrypt') . "]"; } } } rt-4.0.19/share/html/Ticket/Elements/PreviewScrips0000664000175000017500000001350312262650742021051 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $TicketObj => undef <%init> my $Object = $m->notes("DryRun-".$TicketObj->Id) || $TicketObj->DryRun(%ARGS); my %recips = %{ $m->notes("DryRun-Recipients-".$TicketObj->Id) || {} }; return unless $Object; my %squelched = ProcessTransactionSquelching( \%ARGS );

<&|/l, RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id, &>Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page.

% if ( $Object->Scrips ) { % # Sort scrips with recipients before those without % my @scrips = map { $_->[0] } % sort { ($b->[1]?1:0) <=> ($a->[1]?1:0) } % map { [$_, $_->ActionObj->Action->To + $_->ActionObj->Action->Cc + $_->ActionObj->Action->Bcc] } % grep {$_->ActionObj->Action->isa('RT::Action::SendEmail')} % @{$Object->Scrips->Prepared}; % for my $scrip (@scrips) { <% $scrip->Description || loc('Scrip #[_1]',$scrip->id) %>
<&|/l, loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name)&>[_1] [_2] with template [_3]
% for my $type (qw(To Cc Bcc)) { % my @addresses = $scrip->ActionObj->Action->$type(); % next unless @addresses;
    % for my $addr (@addresses) {
  • % my $checked = not $squelched{$addr->address}; % $m->callback(CallbackName => 'BeforeAddress', Ticket => $TicketObj, Address => $addr, Type => $type, Checked => \$checked); % $recips{$addr->address}++; <%loc($type)%>: value="<%$addr->address%>" id="TxnSendMailTo-<% $addr->address %>-<% $recips{$addr->address} %>" /> % $m->callback(CallbackName => 'AfterAddress', Ticket => $TicketObj, Address => $addr, Type => $type);
  • % }
% } % if (RT->Config->Get('PreviewScripMessages')) { % }
% } % } % if ( $Object->Rules ) { % for my $rule (@{$Object->Rules}) { % next unless $rule->{hints} && $rule->{hints}{class} eq 'SendEmail'; <% $rule->Describe %> % my $data = $rule->{hints}{recipients}; % for my $type (qw(To Cc Bcc)) { % next unless @{$data->{$type}};
    % for my $address (@{$data->{$type}}) {
  • % my $checked = not $squelched{$address}; % $m->callback(CallbackName => 'BeforeAddress', Ticket => $TicketObj, Address => Email::Address->parse($address), Type => $type, Checked => \$checked); % $recips{$address}++; <%loc($type)%>: value="<%$address%>" id="TxnSendMailTo-<% $address %>-<% $recips{$address} %>" /> % $m->callback(CallbackName => 'AfterAddress', Ticket => $TicketObj, Address => Email::Address->parse($address), Type => $type);
  • % }
% }
% } % } % $m->callback( CallbackName => 'AfterRecipients', TicketObj => $TicketObj ); % $m->notes("DryRun-Recipients-".$TicketObj->Id, \%recips); rt-4.0.19/share/html/Ticket/Elements/ShowCustomFields0000664000175000017500000000411012262650742021500 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ShowCustomFields, Object => $Ticket &> <%ARGS> $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/ShowAttachments0000664000175000017500000000675012262650742021366 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if (keys %documents) { <&| /Widgets/TitleBox, title => loc('Attachments'), title_class=> 'inverse', class => 'ticket-info-attachments', color => "#336699" &> % foreach my $key (sort { lc($a) cmp lc($b) } keys %documents) { <%$key%>
% } % } <%INIT> # If we haven't been passed in an Attachments object (through the precaching mechanism) # then we need to find one $Attachments ||= $m->comp('FindAttachments', Ticket => $Ticket); my %documents; while ( my $attach = $Attachments->Next() ) { next unless defined $attach->Filename && length $attach->Filename; unshift( @{ $documents{ $attach->Filename } }, $attach ); } <%ARGS> $Ticket => undef $Attachments => undef rt-4.0.19/share/html/Ticket/Elements/AddAttachments0000664000175000017500000000521712262650742021133 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if (exists $session{'Attachments'}) { <&|/l&>Attached file: <&|/l&>Check box to delete
% foreach my $attach_name (sort keys %{$session{'Attachments'}}) { <%$attach_name%>
% } # end of foreach % } # end of if <&|/l&>Attach: % $m->callback( %ARGS, CallbackName => 'End' ); rt-4.0.19/share/html/Ticket/Elements/FindAttachments0000664000175000017500000000670612262650742021327 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my %documents; #A default implementation here loops through all transactions and pulls out all their attachments. # We end up doing an end-run around that to get a bit more performance # We force the cache of ticket transactions to get populated up front. otherwise, the # code that looks at attachments will look at each one in turn. my $attachments = RT::Attachments->new( $session{'CurrentUser'} ); $attachments->Columns( qw( Id Filename Headers Subject Parent ContentEncoding ContentType TransactionId Created)); my $transactions = $attachments->NewAlias('Transactions'); $attachments->Join( ALIAS1 => 'main', FIELD1 => 'TransactionId', ALIAS2 => $transactions, FIELD2 => 'id' ); my $tickets = $attachments->NewAlias('Tickets'); $attachments->Join( ALIAS1 => $transactions, FIELD1 => 'ObjectId', ALIAS2 => $tickets, FIELD2 => 'id' ); $attachments->Limit( ALIAS => $transactions, FIELD => 'ObjectType', VALUE => 'RT::Ticket'); if ($Tickets) { while ($Ticket = $Tickets->Next) { $attachments->Limit( ALIAS => $tickets, FIELD => 'EffectiveId', VALUE => $Ticket->id() ); } } else { $attachments->Limit( ALIAS => $tickets, FIELD => 'EffectiveId', VALUE => $Ticket->id() ); } return ($attachments); <%ARGS> $Ticket => undef $Tickets => undef rt-4.0.19/share/html/Ticket/Elements/EditDates0000664000175000017500000000564612262650742020123 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, CallbackName => 'EndOfList', Ticket => $TicketObj );
<&|/l&>Starts: <& /Elements/SelectDate, menu_prefix => 'Starts', current => 0 &> (<% $TicketObj->StartsObj->AsString %>)
<&|/l&>Started: <& /Elements/SelectDate, menu_prefix => 'Started', current => 0 &> (<%$TicketObj->StartedObj->AsString %>)
<&|/l&>Last Contact: <& /Elements/SelectDate, menu_prefix => 'Told', current => 0 &> (<% $TicketObj->ToldObj->AsString %>)
<&|/l&>Due: <& /Elements/SelectDate, menu_prefix => 'Due', current => 0 &> (<% $TicketObj->DueObj->AsString %>)
<%ARGS> $TicketObj => undef rt-4.0.19/share/html/Ticket/Elements/EditBasics0000664000175000017500000001175112262650742020261 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $TicketObj => undef @fields => () $InTable => 0 %defaults => () <%INIT> unless ( @fields ) { my $subject = $defaults{'Subject'} || $TicketObj->Subject; @fields = ( { name => 'Subject', html => '', }, { name => 'Status', comp => '/Elements/SelectStatus', args => { Name => 'Status', DefaultLabel => loc("[_1] (Unchanged)",loc($TicketObj->Status)), Default => $defaults{'Status'} || undef, TicketObj => $TicketObj, QueueObj => $TicketObj->QueueObj, }, }, { name => 'Queue', comp => '/Elements/SelectQueue', args => { Name => 'Queue', Default => $defaults{'Queue'} || $TicketObj->QueueObj->Id, ShowNullOption => 0, } }, { name => 'Owner', comp => '/Elements/SelectOwner', args => { Name => 'Owner', QueueObj => $TicketObj->QueueObj, TicketObj => $TicketObj, Default => $defaults{'Owner'} || $TicketObj->OwnerObj->Id, DefaultValue => 0, } }, # Time Estimated, Worked, and Left ( map { (my $field = $_) =~ s/ //g; { name => $_, comp => '/Elements/EditTimeValue', args => { Name => $field, Default => $defaults{$field} || $TicketObj->$field, } } } ('Time Estimated', 'Time Worked', 'Time Left') ), # Priority and Final Priority ( map { (my $field = $_) =~ s/ //g; { name => $_, comp => '/Elements/SelectPriority', args => { Name => $field, Default => $defaults{$field} || $TicketObj->$field, } } } ('Priority', 'Final Priority') ), ); } $m->callback( CallbackName => 'MassageFields', %ARGS, TicketObj => $TicketObj, Fields => \@fields ); # Process the field list, skipping if html is provided and running the # components otherwise for my $field (@fields) { next if defined $field->{'html'}; if ( $field->{'comp'} ) { $field->{'html'} = $m->scomp($field->{'comp'}, %{$field->{'args'} || {}}); } } % unless ($InTable) { % } % for my $field (@fields) { \ \ \ % } % $m->callback( CallbackName => 'EndOfList', TicketObj => $TicketObj, %ARGS, Fields => \@fields ); % unless ($InTable) {
<&|/l&><% $field->{'name'} %>:<% $field->{'html'} |n %>
% } rt-4.0.19/share/html/Ticket/Elements/ShowDates0000664000175000017500000000723712262650742020154 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} \ \ \ \ \ % my $due = $Ticket->DueObj; % if ( $due && $due->Unix > 0 && $due->Diff < 0 ) { % } else { % } \ \ % my $UpdatedString = $Ticket->LastUpdated ? loc("[_1] by [_2]", $Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) : loc("Never"); % if ($UpdatedLink) { % } else { % } % $m->callback( %ARGS, CallbackName => 'EndOfList', TicketObj => $Ticket );
<&|/l&>Created:<% $Ticket->CreatedObj->AsString %>
<&|/l&>Starts:<% $Ticket->StartsObj->AsString %>
<&|/l&>Started:<% $Ticket->StartedObj->AsString %>
<&|/l&>Last Contact:<% $Ticket->ToldObj->AsString %>
<&|/l&>Due:<% $due->AsString %><% $due->AsString %>
<&|/l&>Closed:<% $Ticket->ResolvedObj->AsString %>
<&|/l&>Updated:<% $UpdatedString | n %><% $UpdatedString | n %>
<%ARGS> $Ticket => undef $UpdatedLink => 1 rt-4.0.19/share/html/Ticket/Elements/ShowGnuPGStatus0000664000175000017500000001424312262650742021273 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % foreach my $msg( @messages ) { % }
GnuPG: <% shift @messages %>
<% $msg %>
<%ARGS> $Attachment $WarnUnsigned => undef $Reverify => 1 <%INIT> my @runs; my $needs_unsigned_warning = $WarnUnsigned; foreach ( $Attachment->SplitHeaders ) { if ( s/^X-RT-GnuPG-Status:\s*//i ) { require RT::Crypt::GnuPG; push @runs, [ RT::Crypt::GnuPG::ParseStatus( $_ ) ]; } $needs_unsigned_warning = 0 if /^X-RT-Incoming-Signature:/; # if this is not set, then the email is generated by RT, and so we don't # need "email is unsigned" warnings $needs_unsigned_warning = 0 if not /^Received:/; } return unless @runs or $needs_unsigned_warning; my $reverify_cb = sub { my $top = shift; my $txn = $top->TransactionObj; unless ( $txn && $txn->id ) { return (0, "Couldn't get transaction of attachment #". $top->id); } my $attachments = $txn->Attachments->Clone; $attachments->Limit( FIELD => 'ContentType', VALUE => 'application/x-rt-original-message' ); my $original = $attachments->First; unless ( $original ) { return (0, "Couldn't find attachment with original email of transaction #". $txn->id); } my $parser = RT::EmailParser->new(); $parser->SmartParseMIMEEntityFromScalar( Message => $original->Content, Decode => 0, Exact => 1, ); my $entity = $parser->Entity; unless ( $entity ) { return (0, "Couldn't parse content of attachment #". $original->id); } use RT::Interface::Email::Auth::GnuPG; my ($status, @res) = RT::Interface::Email::Auth::GnuPG::VerifyDecrypt( Entity => $entity ); if ( $status && !@res ) { # imposible in this situation return (0, "Content of attachment #". $original->id ." is not signed and/or encrypted"); } elsif ( @res ) { require RT::Crypt::GnuPG; $top->DelHeader('X-RT-GnuPG-Status'); $top->AddHeader(map { ('X-RT-GnuPG-Status' => $_->{'status'} ) } @res); $top->SetHeader('X-RT-Privacy' => 'PGP' ); $top->DelHeader('X-RT-Incoming-Signature'); my @status = RT::Crypt::GnuPG::ParseStatus( $res[0]->{'status'} ); for ( @status ) { if ( $_->{'Operation'} eq 'Verify' && $_->{'Status'} eq 'DONE' ) { $top->AddHeader( 'X-RT-Incoming-Signature' => $_->{'UserString'} ); $needs_unsigned_warning = 0; } } } return (1, "Reverified original message"); }; my @messages; foreach my $run ( @runs ) { foreach my $line ( @$run ) { if ( $line->{'Operation'} eq 'KeyCheck' ) { next unless $Reverify; # if a public key was missing during verification then we want try again next unless $line->{'KeyType'} eq 'public' && $line->{'Status'} eq 'MISSING'; # but only if we have key my %key = RT::Crypt::GnuPG::GetPublicKeyInfo( $line->{'Key'} ); if ( $key{'info'} ) { my ($status, $msg) = $reverify_cb->($Attachment); unless ($status) { $RT::Logger->error($msg); } else { return $m->comp('SELF', %ARGS, Reverify => 0); } } else { push @messages, loc( "Public key '0x[_1]' is required to verify signature", $line->{'Key'} ); } } elsif ( $line->{'Operation'} eq 'PassphraseCheck' ) { next if $line->{'Status'} eq 'DONE'; push @messages, loc( $line->{'Message'} ); } elsif ( $line->{'Operation'} eq 'Decrypt' ) { push @messages, loc( $line->{'Message'} ); } elsif ( $line->{'Operation'} eq 'Verify' ) { push @messages, loc( $line->{'Message'} ); } else { next if $line->{'Status'} eq 'DONE'; push @messages, loc( $line->{'Message'} ); } } } push @messages, loc('Warning! This is NOT signed!') if $needs_unsigned_warning; return unless @messages; my %seen; @messages = grep !$seen{$_}++, @messages; rt-4.0.19/share/html/Ticket/Elements/UpdateCc0000664000175000017500000000754212262650742017742 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback(CallbackName => 'BeforeCc', ARGSRef => \%ARGS, Ticket => $TicketObj, one_time_Ccs => \@one_time_Ccs, txn_addresses => \%txn_addresses); <&|/l&>One-time Cc:<& /Elements/EmailInput, Name => 'UpdateCc', Size => undef, Default => $ARGS{UpdateCc} &>
%if (scalar @one_time_Ccs) { (<&|/l&>check to add) %} %foreach my $addr ( @one_time_Ccs ) { format; onClick="checkboxToInput('UpdateCc', <% "UpdateCc-$addr" |n,j%>, <%$clean_addr|n,j%> );" <% $ARGS{'UpdateCc-'.$addr} ? 'checked="checked"' : ''%> > <& /Elements/ShowUser, Address => $txn_addresses{$addr}&> %} <&|/l&>One-time Bcc:<& /Elements/EmailInput, Name => 'UpdateBcc', Size => undef, Default => $ARGS{UpdateBcc} &>
%if (scalar @one_time_Ccs) { (<&|/l&>check to add) %} %foreach my $addr ( @one_time_Ccs ) { format; onClick="checkboxToInput('UpdateBcc', <% "UpdateBcc-$addr" |n,j%>, <%$clean_addr|n,j%> );" <% $ARGS{'UpdateBcc-'.$addr} ? 'checked="checked"' : ''%>> <& /Elements/ShowUser, Address => $txn_addresses{$addr}&> %} <%args> $TicketObj <%init> my %txn_addresses = %{$TicketObj->TransactionAddresses}; my @req_addresses = split /,/, $TicketObj->RequestorAddresses; my @one_time_Ccs; foreach my $addr ( keys %txn_addresses) { next if ( grep {$addr eq $_} @req_addresses ); push @one_time_Ccs,$addr; } rt-4.0.19/share/html/Ticket/Elements/EditCustomFields0000664000175000017500000000764312262650742021463 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, CallbackName => 'BeforeCustomFields' ); % if ( $WRAP ) { <<% $WRAP %> class="edit-custom-fields"> % } % while ( my $CustomField = $CustomFields->Next ) { % next unless $CustomField->CurrentUserHasRight('ModifyCustomField'); % my $Type = $CustomField->Type || 'Unknown'; <<% $FIELD %> class="edit-custom-field cftype-<% $Type %>"> <<% $CELL %> class="cflabel"> <% loc($CustomField->Name) %>
<% $CustomField->FriendlyType %> > <<% $CELL %> class="entry"> % my $default = $m->notes('Field-' . $CustomField->Id); % $default ||= $ARGS{"CustomField-". $CustomField->Id }; <& /Elements/EditCustomField, %ARGS, Object => $TicketObj, CustomField => $CustomField, NamePrefix => $NamePrefix, Default => $default, &> % if (my $msg = $m->notes('InvalidField-' . $CustomField->Id)) {
<% $msg %> % } > > % } % if ( $WRAP ) { > % } % $m->callback( %ARGS, CallbackName => 'AfterCustomFields', TicketObj => $TicketObj, QueueObj => $QueueObj ); <%INIT> my $CustomFields; if ($TicketObj && !$OnCreate) { $CustomFields = $TicketObj->CustomFields(); $NamePrefix .= "Object-RT::Ticket-".$TicketObj->Id."-CustomField-"; } else { $CustomFields = $QueueObj->TicketCustomFields(); $NamePrefix .= "Object-RT::Ticket--CustomField-"; } $m->callback( %ARGS, CallbackName => 'MassageCustomFields', CustomFields => $CustomFields ); $AsTable ||= $InTable; my $FIELD = $AsTable ? 'tr' : 'div'; my $CELL = $AsTable ? 'td' : 'div'; my $WRAP = ''; if ( $AsTable ) { $WRAP = 'table' unless $InTable; } else { $WRAP = 'div'; } <%ARGS> $NamePrefix => '' $TicketObj => undef $QueueObj => undef $OnCreate => undef $DefaultsFromTopArguments => 1 $AsTable => 0 $InTable => 0 rt-4.0.19/share/html/Ticket/Elements/ShowRequestorExtraInfo0000664000175000017500000000652112262650742022720 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
% for my $column (@formats) { % my $title = $column->{title} || ''; % my $attr = $column->{'attribute'} || $column->{'last_attribute'}; % unless (defined $column->{title}) { % $title = $fetch_columnmap->($attr,'title',[$attr]); % } % $title = $m->comp('/Elements/ScrubHTML', Content => $title);
<% loc($title) %> % my @out; % foreach my $subcol ( @{ $column->{output} } ) { % my ($col) = ($subcol =~ /^__(.*?)__$/); % unless ( $col ) { % push @out, $subcol; % next; % } % push @out, $fetch_columnmap->($col, 'value', [$Requestor]); % } % @out = grep { defined $_ and length $_ } @out; <% join(' ',@out) %>
% }
<%INIT> my $format = RT->Config->Get('MoreAboutRequestorExtraInfo'); my @formats = $m->comp('/Elements/CollectionAsTable/ParseFormat', Format => $format); my $fetch_columnmap = sub { my ($name, $attr, $arguments) = @_; my $tmp = $m->comp( '/Elements/ColumnMap', Class => $Class, Name => $name, Attr => $attr, ); return ProcessColumnMapValue( $tmp, Arguments => $arguments, Escape => 0 ); }; <%ARGS> $Requestor => undef $Class => 'RT__User'; rt-4.0.19/share/html/Ticket/Elements/EditPeople0000664000175000017500000000655612262650742020310 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

<&|/l&>New watchers

<&|/l&>Find people whose
<& /Elements/SelectUsers &>
<&|/l&>Find groups whose
<& /Elements/SelectGroups &> <& AddWatchers, Ticket => $Ticket, UserString => $UserString, UserOp => $UserOp, UserField => $UserField, GroupString => $GroupString, GroupOp => $GroupOp, GroupField => $GroupField, PrivilegedOnly => $PrivilegedOnly &>

<&|/l&>Owner

<&|/l&>Owner: <& /Elements/SelectOwner, Name => 'Owner', QueueObj => $Ticket->QueueObj, TicketObj => $Ticket, Default => $Ticket->OwnerObj->Id, DefaultValue => 0&>

<&|/l&>Current watchers

<&|/l&>Requestors: <& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->Requestors &> <&|/l&>Cc: <& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->Cc &> <&|/l&>Administrative Cc: <& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->AdminCc &> <&|/l&>(Check box to delete)
<%ARGS> $UserField => undef $UserOp => undef $UserString => undef $GroupField => undef $GroupOp => undef $GroupString => undef $PrivilegedOnly => undef $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/ShowTransactionAttachments0000664000175000017500000002504212262650742023567 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%PERL> # Find all the attachments which have parent $Parent # For each of these attachments foreach my $message ( grep $_->__Value('Parent') == $Parent, @$Attachments ) { if (RT->Config->Get('GnuPG')->{'Enable'}) { $m->comp( 'ShowGnuPGStatus', Attachment => $message, WarnUnsigned => $WarnUnsigned ); } $m->comp( 'ShowMessageHeaders', Message => $message, DisplayHeaders => \@DisplayHeaders, ); my $size = $message->ContentLength; my $name = defined $message->Filename && length $message->Filename ? $message->Filename : ''; if ( $size ) {
<&|/l&>Download <% length $name ? $name : loc('(untitled)') %>\ % if ( $DownloadableHeaders && ! length $name && $message->ContentType =~ /text/ ) { / <% loc('with headers') %> % } % $m->callback(CallbackName => 'AfterDownloadLinks', ARGSRef => \%ARGS, Ticket => $Ticket, Transaction => $Transaction, Attachment => $message);
<% $message->ContentType %> <% $size_to_str->( $size ) %>
% } %# If there is sub-messages, open a dedicated div % if ( scalar ( grep $_->__Value('Parent') == $message->id, @$Attachments ) ) {
% } else {
% } <%PERL> $render_attachment->( $message ); $m->comp( $m->current_comp, %ARGS, Parent => $message->id, ParentObj => $message );
% } <%ARGS> $Ticket => undef $Transaction => undef $ShowHeaders => 0 $Collapsed => undef $DownloadableHeaders => 1 $ShowTitleBarCommands => 1 $RowNum => 1 $AttachPath => RT->Config->Get('WebPath')."/Ticket/Attachment" $UpdatePath => RT->Config->Get('WebPath')."/Ticket/Update.html" $EmailRecordPath => RT->Config->Get('WebPath')."/Ticket/ShowEmailRecord.html" $Attachments => undef $AttachmentContent => {} $ShowBody => 1 $Parent => 0 $ParentObj => undef $WarnUnsigned => 0 <%INIT> my @DisplayHeaders=qw(_all); if ( $Transaction->Type =~ /EmailRecord$/ ) { @DisplayHeaders = qw(To Cc Bcc); } # If the transaction has anything attached to it at all elsif (!$ShowHeaders) { @DisplayHeaders = qw(To From RT-Send-Cc Cc Bcc Date Subject); push @DisplayHeaders, 'RT-Send-Bcc' if RT->Config->Get('ShowBccHeader'); } $m->callback(CallbackName => 'MassageDisplayHeaders', DisplayHeaders => \@DisplayHeaders, Transaction => $Transaction); my $size_to_str = sub { my $size = shift; # show a download link if ( $size > 1024*1024 ) { $size = loc( "[_1]m", int( $size / 1024 / 102.4 ) / 10 ); } elsif ( $size > 1024 ) { $size = loc( "[_1]k", int( $size / 102.4 ) / 10 ); } else { $size = loc( "[_1]b", $size ); } return $size; }; my $render_attachment = sub { my $message = shift; my $name = defined $message->Filename && length $message->Filename ? $message->Filename : ''; my $content_type = lc $message->ContentType; # if it has a content-disposition: attachment, don't show inline my $disposition = $message->GetHeader('Content-Disposition'); if ( $disposition && $disposition =~ /^\s*attachment/i ) { $disposition = 'attachment'; } else { $disposition = 'inline'; } # If it's text if ( $content_type =~ m{^(text|message)/} ) { my $max_size = RT->Config->Get( 'MaxInlineBody', $session{'CurrentUser'} ); if ( $disposition ne 'inline' ) { $m->out('

'. loc( 'Message body is not shown because sender requested not to inline it.' ) .'

'); return; } elsif ( length $name && RT->Config->Get('SuppressInlineTextFiles', $session{'CurrentUser'} ) ) { $m->out('

'. loc( 'Text file is not shown because it is disabled in preferences.' ) .'

'); return; } elsif ( $max_size && $message->ContentLength > $max_size ) { $m->out('

'. loc( 'Message body is not shown because it is too large.' ) .'

'); return; } if ( # it's a toplevel object !$ParentObj # or its parent isn't a multipart alternative || ( $ParentObj->ContentType !~ m{^multipart/(?:alternative|related)$}i ) # or it's of our prefered alterative type || ( ( RT->Config->Get('PreferRichText') && ( $content_type =~ m{^text/(?:html|enriched)$} ) ) || ( !RT->Config->Get('PreferRichText') && ( $content_type !~ m{^text/(?:html|enriched)$} ) ) ) ) { my $content; # If we've cached the content, use it from there if (my $x = $AttachmentContent->{ $Transaction->id }->{$message->id}) { $content = $x->Content; } else { $content = $message->Content; } $RT::Logger->debug( "Rendering attachment #". $message->id ." of '$content_type' type" ); # if it's a text/html clean the body and show it if ( $content_type eq 'text/html' ) { $content = $m->comp( '/Elements/ScrubHTML', Content => $content ); $m->comp( '/Elements/MakeClicky', content => \$content, html => 1, ticket => $Ticket, ); unless (length $name) { eval { require HTML::Quoted; $content = HTML::Quoted->extract($content) }; if ($@) { RT->Logger->error( "HTML::Quoted couldn't process attachment #@{[$message->id]}: $@." . " This is a bug, please report it to rt-bugs\@bestpractical.com."); } } $m->comp( 'ShowMessageStanza', Message => $content, Transaction => $Transaction, ContentType => 'text/html', ); } elsif ( $content_type eq 'text/enriched' ) { $content = $m->comp( '/Elements/ScrubHTML', Content => $content ); $m->out( $content ); } # It's a text type we don't have special handling for else { unless ( length $name ) { eval { require Text::Quoted; # XXX: Deprecate ->can check in 4.2 and simply bump version requirement. Text::Quoted::set_quote_characters(undef) # only use > if Text::Quoted->can("set_quote_characters"); $content = Text::Quoted::extract($content); }; if ($@) { RT->Logger->error( "Text::Quoted couldn't process attachment #@{[$message->id]}: $@." . " This is a bug, please report it to rt-bugs\@bestpractical.com."); } } $m->comp( 'ShowMessageStanza', Message => $content, Transaction => $Transaction, ContentType => 'text/plain', ); } } } # if it's an image, show it as an image elsif ( RT->Config->Get('ShowTransactionImages') and $content_type =~ m{^image/} ) { if ( $disposition ne 'inline' ) { $m->out('

'. loc( 'Message body is not shown because sender requested not to inline it.' ) .'

'); return; } my $filename = length $name ? $name : loc('(untitled)'); my $efilename = $m->interp->apply_escapes( $filename, 'h' ); $m->out('' ); } elsif ( $message->ContentLength && $message->ContentLength > 0 ) { $m->out( '

' . loc( 'Message body not shown because it is not plain text.' ) . '

' ); } }; rt-4.0.19/share/html/Ticket/Elements/EditWatchers0000664000175000017500000000660012262650742020632 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    %# Print out a placeholder if there are none. % unless ( $Members->Count ) {
  • <&|/l&>none
  • % } % while ( my $watcher = $Members->Next ) { % my $member = $watcher->MemberObj->Object;
  • % if ( $member->isa( 'RT::User' ) ) { % if ( $session{CurrentUser}->HasRight( Right => 'AdminUsers', Object => $RT::System ) && % $session{CurrentUser}->HasRight( Right => 'ShowConfigTab', Object =>$RT::System ) ) { <& /Elements/ShowUser, User => $member &> <& /Elements/ShowUserEmailFrequency, User => $member, Ticket => $TicketObj &> % } else { <& /Elements/ShowUser, User => $member &> <& /Elements/ShowUserEmailFrequency, User => $member, Ticket => $TicketObj &> % } } % else { % if ( $session{CurrentUser}->HasRight( Right => 'AdminGroup', Object => $RT::System ) && % $session{CurrentUser}->HasRight( Right => 'ShowConfigTab', Object =>$RT::System ) ) { <% $member->Name %> % } else { <% $member->Name %> % } }
  • % }
<%INIT> my $Members = $Watchers->MembersObj; <%ARGS> $TicketObj => undef $Watchers => undef rt-4.0.19/share/html/Ticket/Elements/ShowParents0000664000175000017500000000436612262650742020530 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % while (my $link = $member_of->Next) {
  • <& /Elements/ShowLink, URI => $link->TargetURI &>
    % }
<%INIT> return unless $Ticket; my $member_of = $Ticket->MemberOf; return unless $member_of->Count; <%ARGS> $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/ClickToShowHistory0000664000175000017500000000502012262650742022012 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
<& /Widgets/TitleBoxStart, title => 'History' &> <% loc('Show ticket history') %> <& /Widgets/TitleBoxEnd &>
<%ARGS> $Ticket <%INIT> my $id = $Ticket->id; my $url = RT->Config->Get('WebPath') ."/Helpers/TicketHistory?id=". $id; my $display = RT->Config->Get('WebPath') ."/Ticket/Display.html?id=$id;ForceShowHistory=1"; rt-4.0.19/share/html/Ticket/Elements/ShowRequestor0000664000175000017500000001502612262650742021100 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title_raw => loc("More about the requestors"), class => 'ticket-info-requestor' &>
% while ( my $requestor = $people->Next ) {

<& /Elements/ShowUser, User => $requestor &>

%# Additional information about this user. Empty by default. % $m->callback( requestor => $requestor, %ARGS, CallbackName => 'AboutThisUser' ); <& ShowRequestorExtraInfo, Requestor => $requestor &> % if ( $ShowComments ) {
<&|/l&>Comments about this user: <% ($requestor->Comments || loc("No comment entered about this user")) %>
% } % if ( $ShowTickets ) {
% $index = 1; % for my $status (@$status_order) { % if ( $status eq $DefaultTicketsTab ) {
<& $TicketTemplate, Requestor => $requestor &> % } else {
<&|/l&>Loading... % }
% }
% } % my $grouplimit = RT->Config->Get('MoreAboutRequestorGroupsLimit'); % if ( $ShowGroups and defined $grouplimit ) {
<&|/l&>Groups this user belongs to % if ( $session{CurrentUser}->HasRight( Right => 'AdminUsers', Object => $RT::System ) && % $session{CurrentUser}->HasRight( Right => 'ShowConfigTab', Object =>$RT::System ) ) { [Config->Get('WebPath') . '/Admin/Users/Memberships.html?id=' . $requestor->id %> ><&|/l&>Edit] % } <& /Elements/ShowMemberships, UserObj => $requestor, Limit => $grouplimit &>
% } % if ( $has_right_adminusers ) { <&|/l&>Modify this user % } %# end of individual requestor details
% } %# end of requestors loop
<%INIT> my $show_privileged = RT->Config->Get('ShowMoreAboutPrivilegedUsers'); my $people = $Ticket->Requestors->UserMembersObj; $people->LimitToUnprivileged unless $show_privileged; my $count = $people->Count; return unless $count; my $has_right_adminusers = $session{'CurrentUser'}->HasRight( Object => $RT::System, Right => 'AdminUsers' ); $has_right_adminusers &&= $session{'CurrentUser'}->HasRight( Object => $RT::System, Right => 'ShowConfigTab' ); # Ticket list tabs my $selected = -1; $DefaultTicketsTab ||= RT->Config->Get('MoreAboutRequestorTicketList', $session{CurrentUser}) || 'Active'; my $status_link_text = {Active => loc('Active Tickets'), Inactive => loc('Inactive Tickets'), All => loc('All Tickets')}; my $status_order = [qw/Active Inactive All/]; $m->callback( CallbackName => 'AddStatus', status_link_text => \$status_link_text, status_order => \$status_order ); unless ( $DefaultTicketsTab eq 'None' ) { for (0 .. (@$status_order - 1)) { $selected = $_ && last if $status_order->[$_] eq $DefaultTicketsTab; } } my $TicketTemplate = "ShowRequestorTickets$DefaultTicketsTab"; $TicketTemplate = "ShowRequestorTicketsActive" unless RT::Interface::Web->ComponentPathIsSafe($TicketTemplate) and $m->comp_exists($TicketTemplate); <%ARGS> $Ticket=>undef $DefaultTicketsTab => undef $ShowComments => 1 $ShowTickets => 1 $ShowGroups => 1 $Title => 'More about [_1]' rt-4.0.19/share/html/Ticket/Elements/ShowRequestorTickets0000664000175000017500000000570012262650742022425 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l, $Rows, $Description &>This user's [_1] highest priority [_2] tickets:
    %while (my $w=$tickets->Next) { %my $uri = RT::URI->new( $session{'CurrentUser'} ); %$uri->FromObject($w);
  • <& /Elements/ShowLink, URI => $uri &>
  • %}
<%INIT> my $sql = "Requestor.id = ". $Requestor->id; if (@$conditions) { $sql .= " AND (".join( " OR ", map $_->{cond}, @$conditions).")"; } my $tickets = RT::Tickets->new( $session{'CurrentUser'} ); $tickets->FromSQL( $sql ); $tickets->RowsPerPage( $Rows ); $tickets->OrderBy( FIELD => 'Priority', ORDER => 'DESC' ); my $url = RT->Config->Get('WebPath') . '/Search/Results.html?'; $url .= $m->comp('/Elements/QueryString', Query => $sql, OrderBy => 'Priority', Order => 'DESC' ); <%ARGS> $Requestor => undef $conditions $Rows => 10 $Description => '' rt-4.0.19/share/html/Ticket/Elements/FindTransactions0000664000175000017500000000535712262650742021525 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $Transactions = RT::Transactions->new($session{'CurrentUser'}); if ($Tickets) { while (my $t = $Tickets->Next) { $Transactions->LimitToTicket($t->id); } } else { $Transactions = $Ticket->Transactions; } my $OldestFirst = RT->Config->Get( 'OldestTransactionsFirst', $session{'CurrentUser'} ); my $SortOrder = $OldestFirst? 'ASC': 'DESC'; $Transactions->OrderByCols( { FIELD => 'Created', ORDER => $SortOrder }, { FIELD => 'id', ORDER => $SortOrder }, ); $Transactions->Next(); $Transactions->GotoFirstItem(); # actually do the search return ($Transactions); <%ARGS> $Ticket => undef $Tickets => undef rt-4.0.19/share/html/Ticket/Elements/ShowQueue0000664000175000017500000000457312262650742020200 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <% $value %> <%ARGS> $Ticket => undef $QueueObj <%INIT> my $value = $QueueObj->Name; if ( $Ticket and $Ticket->CurrentUserHasRight('SeeQueue') ) { # Grab the queue name anyway if the current user can # see the queue based on his role for this ticket $value = $QueueObj->__Value('Name'); } $value = '#'. $QueueObj->id unless defined $value && length $value; rt-4.0.19/share/html/Ticket/Elements/ShowUserEntry0000664000175000017500000000431412262650742021045 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ShowUser, %ARGS &> % if ($Ticket and grep { $_->Content eq $User->EmailAddress } $Ticket->SquelchMailTo) { <&|/l&>(Will not be sent email) % } <%ARGS> $User => undef $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/ShowDependencies0000664000175000017500000000523612262650742021477 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Depends on:
% while (my $Link = $Ticket->DependsOn->Next) { % my $member = $Link->TargetObj; <%$member->Id%>: (<& /Elements/ShowUser, User => $member->OwnerObj &>) <%$member->Subject%> [<%$member->Status%>]
% } <&|/l&>Depended on by:
% while (my $Link = $Ticket->DependedOnBy->Next) { % my $member = $Link->TargetObj; <%$member->Id%>: (<& /Elements/ShowUser, User => $member->OwnerObj &>) <%$member->Subject%> [<%$member->Status%>]
% } <%ARGS> $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/EditTransactionCustomFields0000664000175000017500000000706112262650742023663 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( CallbackName => 'BeforeTransactionCustomFields', TicketObj => $TicketObj, QueueObj => $QueueObj, NamePrefix => $NamePrefix ); % if ( $WRAP ) { <<% $WRAP %> class="edit-transaction-custom-fields"> % } % if ($CustomFields->Count) { % while (my $CF = $CustomFields->Next()) { % next unless $CF->CurrentUserHasRight('ModifyCustomField'); <<% $FIELD %>> <<% $CELL %> class="label cflabel"> <% loc($CF->Name) %>:
<% $CF->FriendlyType %> > <<% $CELL %>> <& /Elements/EditCustomField, CustomField => $CF, NamePrefix => $NamePrefix &> % if (my $msg = $m->notes('InvalidField-' . $CF->Id)) {
<% $msg %> % } > > % } % } % if ( $WRAP ) { > % } % $m->callback( CallbackName => 'AfterTransactionCustomFields', TicketObj => $TicketObj, QueueObj => $QueueObj, NamePrefix => $NamePrefix ); <%INIT> my $CustomFields; if ($TicketObj) { $CustomFields = $TicketObj->TransactionCustomFields(); } else { $CustomFields = $QueueObj->TicketTransactionCustomFields(); } $m->callback( CallbackName => 'MassageTransactionCustomFields', CustomFields => $CustomFields ); $AsTable ||= $InTable; my $FIELD = $AsTable ? 'tr' : 'div'; my $CELL = $AsTable ? 'td' : 'div'; my $WRAP = ''; if ( $AsTable ) { $WRAP = 'table' unless $InTable; } else { $WRAP = 'div'; } <%ARGS> $NamePrefix => "Object-RT::Transaction--CustomField-" $TicketObj => undef $QueueObj => undef $AsTable => 0 $InTable => 0 rt-4.0.19/share/html/Ticket/Elements/BulkLinks0000664000175000017500000001574612262650742020155 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

<&|/l&>Current Links

<&|/l&>Depends on: % if ( $hash{DependsOn} ) { % for my $link ( values %{$hash{DependsOn}} ) { <& /Elements/ShowLink, URI => $link->TargetURI &>
% } }
<&|/l&>Depended on by: % if ( $hash{DependedOnBy} ) { % for my $link ( values %{$hash{DependedOnBy}} ) { <& /Elements/ShowLink, URI => $link->BaseURI &>
% } }
<&|/l&>Parents: % if ( $hash{MemberOf} ) { % for my $link ( values %{$hash{MemberOf}} ) { <& /Elements/ShowLink, URI => $link->TargetURI &>
% } }
<&|/l&>Children: % if ( $hash{Members} ) { % for my $link ( values %{$hash{Members}} ) { <& /Elements/ShowLink, URI => $link->BaseURI &>
% } }
<&|/l&>Refers to: % if ( $hash{RefersTo} ) { % for my $link ( values %{$hash{RefersTo}} ) { <& /Elements/ShowLink, URI => $link->TargetURI &>
% } }
<&|/l&>Referred to by: % if ( $hash{ReferredToBy} ) { % for my $link ( values %{$hash{ReferredToBy}} ) { % # Skip reminders % next if (UNIVERSAL::isa($link->BaseObj, 'RT::Ticket') && $link->BaseObj->Type eq 'reminder'); <& /Elements/ShowLink, URI => $link->BaseURI &>
% } }
<&|/l&>(Check box to delete)

<&|/l&>New Links

<&|/l&>Enter tickets or URIs to link tickets to. Separate multiple entries with spaces.
<&|/l&>Merge into: <&|/l&>(only one ticket)
<&|/l&>Depends on:
<&|/l&>Depended on by:
<&|/l&>Parents:
<&|/l&>Children:
<&|/l&>Refers to:
<&|/l&>Referred to by:
<%ARGS> $Tickets => undef <%INIT> my %hash; if ( $Tickets && $Tickets->Count ) { my $first_ticket = $Tickets->Next; # we only show current links that eixst on all the tickets for my $type ( qw/DependsOn DependedOnBy Members MemberOf RefersTo ReferredToBy/ ) { my $target_or_base = $type =~ /DependsOn|MemberOf|RefersTo/ ? 'Target' : 'Base'; while ( my $link = $first_ticket->$type->Next ) { $hash{$type}{$link->$target_or_base} = $link; } } while ( my $ticket = $Tickets->Next ) { for my $type ( qw/DependsOn DependedOnBy Members MemberOf RefersTo ReferredToBy/ ) { my $target_or_base = $type =~ /DependsOn|MemberOf|RefersTo/ ? 'Target' : 'Base'; # if $hash{$type} is empty, no need to check any more next unless $hash{$type} && keys %{$hash{$type}}; my %exists; while ( my $link = $ticket->$type->Next ) { $exists{$link->$target_or_base}++; } for ( keys %{$hash{$type}} ) { delete $hash{$type}{$_} unless $exists{$_}; } } } } rt-4.0.19/share/html/Ticket/Elements/AddWatchers0000664000175000017500000001074412262650742020441 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

<&|/l&>Add new watchers:
% if ($Users and $Users->Count) { % while (my $u = $Users->Next ) { % } % } % if ($Groups and $Groups->Count) { % while (my $g = $Groups->Next ) { % } % } % my $counter = 4; % for my $email (@extras) { % $counter++; % }
<&|/l&>Type <&|/l&>Username
<&/Elements/SelectWatcherType, Name => "Ticket-AddWatcher-Principal-". $u->PrincipalId &><& '/Elements/ShowUser', User => $u, style=>'verbose' &>
<&|/l&>Type <&|/l&>Group
<&/Elements/SelectWatcherType, Name => "Ticket-AddWatcher-Principal-".$g->PrincipalId, Scope => 'queue' &><%$g->Name%> (<%$g->Description%>)
<&|/l&>Type <&|/l&>Email
<&/Elements/SelectWatcherType, Name => "WatcherTypeEmail".$counter &> <%$email->format%>
<&/Elements/SelectWatcherType, Name => "WatcherTypeEmail1" &> <& /Elements/EmailInput, Name => 'WatcherAddressEmail1', Size => '20' &>
<&/Elements/SelectWatcherType, Name => "WatcherTypeEmail2" &> <& /Elements/EmailInput, Name => 'WatcherAddressEmail2', Size => '20' &>
<&/Elements/SelectWatcherType, Name => "WatcherTypeEmail3" &> <& /Elements/EmailInput, Name => 'WatcherAddressEmail3', Size => '20' &>
<%INIT> my ($Users, $Groups); if ($UserString) { $Users = RT::Users->new($session{'CurrentUser'}); $Users->Limit(FIELD => $UserField, VALUE => $UserString, OPERATOR => $UserOp); $Users->LimitToPrivileged if $PrivilegedOnly; } if ($GroupString) { $Groups = RT::Groups->new($session{'CurrentUser'}); $Groups->Limit(FIELD => 'Domain', OPERATOR => '=', VALUE => 'UserDefined'); $Groups->Limit(FIELD => $GroupField, VALUE => $GroupString, OPERATOR => $GroupOp); } my @extras; for my $addr ( values %{$Ticket->TransactionAddresses} ) { my $is_watcher; for my $type ( qw/Owner Requestor Cc AdminCc/ ) { if ($Ticket->IsWatcher( Email => $addr->address, Type => $type )) { $is_watcher = 1; last; } } push @extras, $addr unless $is_watcher; } <%ARGS> $UserField => 'Name' $UserOp => '=' $UserString => undef $GroupField => 'Name' $GroupOp => '=' $GroupString => undef $PrivilegedOnly => undef $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/ShowPriority0000664000175000017500000000411612262650742020726 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <% $Ticket->Priority %>/<% $Ticket->FinalPriority || ''%> <%ARGS> $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/ShowMessageHeaders0000664000175000017500000000626712262650742021776 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( @headers ) { % foreach my $header (@headers) { % }
<% $header->{'Tag'} %>: <% $header->{'Value'} | n %>
% } <%INIT> my @headers; foreach my $field( RT->Config->Get('ShowBccHeader')? $Message->_SplitHeaders : $Message->SplitHeaders ) { my ($tag, $value) = split /:/, $field, 2; next unless $tag && $value; push @headers, { Tag => $tag, Value => $value }; } my %display_headers = map { lc($_) => 1 } @DisplayHeaders; $m->callback( message => $Message, headers => \@headers, display_headers => \%display_headers, ); unless ( $display_headers{'_all'} ) { @headers = grep $display_headers{ lc $_->{'Tag'} }, @headers; } my $ticket = $Message->TransactionObj->TicketObj; foreach my $f (@headers) { $m->comp('/Elements/MakeClicky', content => \$f->{'Value'}, ticket => $ticket, %ARGS); } $m->callback( CallbackName => 'BeforeLocalization', headers => \@headers, ); if ( $Localize ) { $_->{'Tag'} = loc($_->{'Tag'}) foreach @headers; } <%ARGS> $Message => undef $Localize => 1 @DisplayHeaders => ('_all') rt-4.0.19/share/html/Ticket/Elements/FoldStanzaJS0000664000175000017500000000427012262650742020547 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%loc('Show quoted text')%>
\ rt-4.0.19/share/html/Ticket/Elements/ShowBasics0000664000175000017500000000653512262650742020320 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($Ticket->TimeEstimated) { % } % if ($Ticket->TimeWorked) { % } % if ($Ticket->TimeLeft) { % } %# This will check SeeQueue at the ticket role level, queue level, and global level % if ($Ticket->CurrentUserHasRight('SeeQueue')) { % } % $m->callback( %ARGS, CallbackName => 'EndOfList', TicketObj => $Ticket );
<&|/l&>Id: <%$Ticket->Id %>
<&|/l&>Status: <% loc($Ticket->Status) %>
<&|/l&>Estimated: <& ShowTime, minutes => $Ticket->TimeEstimated &>
<&|/l&>Worked: <& ShowTime, minutes => $Ticket->TimeWorked &>
<&|/l&>Left: <& ShowTime, minutes => $Ticket->TimeLeft &>
<&|/l&>Priority: <& ShowPriority, Ticket => $Ticket &>
<&|/l&>Queue: <& ShowQueue, Ticket => $Ticket, QueueObj => $Ticket->QueueObj &>
<%ARGS> $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/ShowPeople0000664000175000017500000000557112262650742020337 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $owner = $Ticket->OwnerObj;
<&|/l&>Owner:<& /Elements/ShowUser, User => $owner, Ticket => $Ticket &> <& /Elements/ShowUserEmailFrequency, User => $owner, Ticket => $Ticket &> % $m->callback( User => $owner, Ticket => $Ticket, %ARGS, CallbackName => 'AboutThisUser' );
<&|/l&>Requestors: <& ShowGroupMembers, Group => $Ticket->Requestors, Ticket => $Ticket &>
<&|/l&>Cc: <& ShowGroupMembers, Group => $Ticket->Cc, Ticket => $Ticket &>
<&|/l&>AdminCc: <& ShowGroupMembers, Group => $Ticket->AdminCc, Ticket => $Ticket &>
<%INIT> <%ARGS> $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/Bookmark0000664000175000017500000000664012262650742020015 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $bookmarks = $session{'CurrentUser'}->UserObj->FirstAttribute('Bookmarks'); $bookmarks = $bookmarks->Content if $bookmarks; $bookmarks ||= {}; my $bookmarked = $bookmarks->{ $id }; # we still not sure if it's undef my @ids; if ( $Toggle || !$bookmarked ) { my $ticket = RT::Ticket->new( $session{'CurrentUser'} ); $ticket->Load( $id ); return unless $id = $ticket->id; @ids = ($id, $ticket->Merged); } if ( $Toggle ) { if ( grep $bookmarks->{ $_ }, @ids ) { delete $bookmarks->{ $_ } foreach @ids; $bookmarked = 0; } else { $bookmarks->{ $id } = 1; $bookmarked = 1; } $session{'CurrentUser'}->UserObj->SetAttribute( Name => 'Bookmarks', Content => $bookmarks, ); } elsif ( !$bookmarked ) { $bookmarked = grep $bookmarks->{ $_ }, @ids; } <%ARGS> $id $Toggle => 0 % my $url = RT->Config->Get('WebPath') ."/Helpers/Toggle/TicketBookmark?id=". $id; % if ( $bookmarked ) { <% loc('Remove Bookmark') %> % } else { <% loc('Add Bookmark') %> % } rt-4.0.19/share/html/Ticket/Elements/ShowUpdateStatus0000664000175000017500000000543412262650742021537 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
<&| /Widgets/TitleBox, title => loc('New messages'), title_href => "#txn-". $txn->id &> <&|/l&>There are unread messages on this ticket. <&|/l, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id &>You can jump to the first unread message or jump to the first unread message and mark all messages as seen.
<%ARGS> $Ticket <%INIT> return unless (RT->Config->Get( 'ShowUnreadMessageNotifications', $session{'CurrentUser'})); my $txn = $Ticket->SeenUpTo or return; my $DisplayPath = $session{'CurrentUser'}->Privileged ? 'Ticket' : 'SelfService'; rt-4.0.19/share/html/Ticket/Elements/ShowGroupMembers0000664000175000017500000000523612262650742021520 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Released under the terms of version 2 of the GNU Public License % my $Users = $Group->UserMembersObj( Recursively => $Recursively ); % while ( my $user = $Users->Next ) { <& /Elements/ShowUser, User => $user, Ticket => $Ticket &> <& /Elements/ShowUserEmailFrequency, User => $user, Ticket => $Ticket &> % $m->callback( User => $user, Ticket => $Ticket, %ARGS, CallbackName => 'AboutThisUser' );
% } % my $Groups = $Group->GroupMembersObj( Recursively => $Recursively ); % $Groups->LimitToUserDefinedGroups; % while (my $group = $Groups->Next) { <&|/l&>Group: <% $group->Name %>
% } <%ARGS> $Group => undef $Recursively => 0, $Ticket => undef rt-4.0.19/share/html/Ticket/Elements/ShowMessageStanza0000664000175000017500000001612712262650742021657 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $plain_text_pre = RT->Config->Get( 'PlainTextPre', $session{'CurrentUser'} ); my $plain_text_mono = RT->Config->Get( 'PlainTextMono', $session{'CurrentUser'} ); my $Depth = 0; my $ticket = $Transaction ? $Transaction->TicketObj : undef; my $print_content = sub { my $ref = shift; return unless defined $$ref && length $$ref; $m->callback( content => $ref, %ARGS ); if ( $ContentType eq 'text/plain' ) { $m->comp( '/Elements/MakeClicky', content => $ref, ticket => $ticket, %ARGS ); if ( defined $$ref && !$plain_text_pre && !$plain_text_mono ) { $$ref =~ s{(\r?\n)}{
}g; } } else { if ( defined $$ref ) { $$ref =~ s/^[\r\n]+//g; } } $m->out($$ref); }; $m->out('
')
    if (    $ContentType eq 'text/plain'
         && $plain_text_pre
         && !$Depth
         && !$plain_text_mono );
$m->out(   '
' ); if ( ref $Message ) { my @stack; my $para = ''; my $i = 0; AGAIN: foreach ( ; $i < @$Message; $i++ ) { my $stanza = $Message->[$i]; if ( ref $stanza eq "HASH" ) { # Fix message stanza nesting for Outlook's quoting styles if ( $stanza->{raw} and not $stanza->{_outlooked} and $stanza->{raw} =~ /^ # start of an internal line \s* # optional whitespace (?: -{3,} # at least three hyphens \s* # whitespace varies between Outlook versions # don't trigger on PGP signed message or signature blocks (?!(?:BEGIN|END)\s+PGP) \w # at least one word character [\w\s]{3,}? # the rest of the word(s), totalling at least 5 characters, # loose to get different languages \w # at least one ending word character \s* # whitespace varies between Outlook versions -{3,} # at least three hyphens again | _{6,} # OR: six or more underscores ) \s*$ # optional whitespace until the end of the line /xm ) { # There's content before the quoted message, but in the # same stanza. Break it out! if ( my $start = $-[0] ) { my %preceding = %$stanza; # We don't process $stanza->{text} because we don't use it # and it isn't given to us by HTML::Quoted. If we ever # need to, we can process it the same way as 'raw'. $preceding{raw} = substr($stanza->{raw}, 0, $start, ''); # Replace the current stanza with the two we just created splice @$Message, $i, 1, \%preceding, $stanza; # Try it again from the top now that we've rejiggered our # stanzas. We'll process the Outlook stanza again, and hit # the else below this time. redo; } else { # Nest the current stanza and everything that follows $stanza->{_outlooked}++; $stanza = $Message->[ $i ] = [ splice @$Message, $i ]; } } else { $para .= ( defined $stanza->{raw} ? $stanza->{raw} : '' )."\n"; } } next unless ref $stanza eq "ARRAY"; $print_content->( \$para ); $para = ''; $Depth++; push @stack, [ $Message, $i + 1 ]; ( $Message, $i ) = ( $stanza, -1 ); if ( $Depth == 1 ) { $m->comp('FoldStanzaJS'); } my @classes = ('message-stanza'); push @classes, $Depth == 1 ? 'closed' : 'open'; $m->out( '
' ); } if ( length $para ) { $print_content->( \$para ); $para = ''; } if (@stack) { ( $Message, $i ) = @{ pop @stack }; $Depth--; $m->out('
'); goto AGAIN; } } else { $print_content->( \$Message ); } $m->out('
'); $m->out('
') if ( $ContentType eq 'text/plain' && $plain_text_pre && !$Depth && !$plain_text_mono ); <%ARGS> $Message => undef $Transaction => undef $ContentType => 'text/plain' rt-4.0.19/share/html/Ticket/Elements/ShowRequestorTicketsInactive0000664000175000017500000000451612262650742024114 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& ShowRequestorTickets, %ARGS, Description => loc('inactive'), conditions => $conditions, Rows => $Rows &> <%INIT> unless ( @$conditions ) { foreach (RT::Queue->InactiveStatusArray()) { push @$conditions, { cond => "Status = '$_'", name => loc($_) }; } } <%ARGS> $Requestor => undef $conditions => [] $Rows => 10 rt-4.0.19/share/html/Ticket/Elements/ShowRequestorTicketsAll0000664000175000017500000000420212262650742023052 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& ShowRequestorTickets, %ARGS, conditions => $conditions, Rows => $Rows &> <%ARGS> $Requestor => undef $conditions => [] $Rows => 10 rt-4.0.19/share/html/Ticket/Elements/Reminders0000664000175000017500000001532112262650742020174 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Ticket => undef $id => undef $ShowCompleted => 0 $Edit => 0 <%init> $Ticket = LoadTicket($id) if ($id); my $resolve_status = $Ticket->QueueObj->Lifecycle->ReminderStatusOnResolve; my $count_reminders = RT::Reminders->new($session{'CurrentUser'}); $count_reminders->Ticket($Ticket->id); my $count_tickets = $count_reminders->Collection; if (!$ShowCompleted) { # XXX: don't break encapsulation if we can avoid it $count_tickets->FromSQL(q{Type = "reminder" AND RefersTo = "} . $Ticket->id . qq{" AND Status != "$resolve_status" }); } my $has_reminders = $count_tickets->Count; # We've made changes, let's reload our search my $reminder_collection = $count_reminders->Collection; my $visible = 0; % if ($has_reminders) { > % if ( $Edit ) { % } else { % } % my $i = 0; % while ( my $reminder = $reminder_collection->Next ) { % $i++; % if ( $reminder->Status eq $resolve_status && !$ShowCompleted ) { % $i++; % } elsif ($Edit) { <& SELF:EditEntry, Reminder => $reminder, Ticket => $Ticket, Index => $i &> % $visible++; % } else { <& SELF:ShowEntry, Reminder => $reminder, Ticket => $Ticket, Index => $i &> % $visible++; % } % }
<&|/l&>Reminders <&|/l&>Reminder <&|/l&>Due <&|/l&>Owner
% if ( $visible > 0 ) { <&|/l&>(Check box to complete)

% } % } else { %# we must always include resolved reminders due to the browser %# checkbox-with-false-value issue % while ( my $reminder = $reminder_collection->Next ) { % if ( $reminder->Status eq $resolve_status && !$ShowCompleted ) { % } % } % } % if (lc $Ticket->Status ne "deleted") { <&|/l&>New reminder: <& SELF:NewReminder, Ticket => $Ticket &> % } % return(lc $Ticket->Status ne "deleted" or $visible); <%method NewReminder> <%args> $Ticket
<&|/l&>Subject:
<&|/l&>Owner: <& /Elements/SelectOwner, Name => 'NewReminder-Owner', QueueObj => $Ticket->QueueObj, Default=>$session{'CurrentUser'}->id, DefaultValue => 0 &>
<&|/l&>Due: <& /Elements/SelectDate, Name => "NewReminder-Due", Default => "" &>
<%method EditEntry> <%args> $Reminder $Ticket $Index Status eq $Reminder->QueueObj->Lifecycle->ReminderStatusOnResolve ? 'checked="checked"' : '' |n %> /> <&|/l&>Subject:   <&|/l&>Owner: <& /Elements/SelectOwner, Name => 'Reminder-Owner-'.$Reminder->id, QueueObj => $Ticket->QueueObj, Default => $Reminder->Owner, DefaultValue => 0 &> <&|/l&>Due: <& /Elements/SelectDate, Name => 'Reminder-Due-'.$Reminder->id &> (<% $Reminder->DueObj->AsString %>) <%method ShowEntry> <%args> $Reminder $Ticket $Index % my $dueobj = $Reminder->DueObj; % my $overdue = $dueobj->Unix > 0 && $dueobj->Diff < 0 ? 1 : 0; Status eq $Reminder->QueueObj->Lifecycle->ReminderStatusOnResolve ? 'checked="checked"' : '' |n %> /> <% $Reminder->Subject %> <% $overdue ? '' : '' |n %><% $dueobj->AgeAsString || loc('Not set') %><% $overdue ? '' : '' |n %> <& /Elements/ShowUser, User => $Reminder->OwnerObj &> rt-4.0.19/share/html/Ticket/Elements/ShowRequestorTicketsActive0000664000175000017500000000451312262650742023562 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& ShowRequestorTickets, %ARGS, Description => loc('active'), conditions => $conditions, Rows => $Rows &> <%INIT> unless ( @$conditions ) { foreach (RT::Queue->ActiveStatusArray()) { push @$conditions, { cond => "Status = '$_'", name => loc($_) }; } } <%ARGS> $Requestor => undef $conditions => [] $Rows => 10 rt-4.0.19/share/html/Ticket/Elements/ShowMembers0000664000175000017500000000501512262650742020476 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % while (my $link = $members->Next) {
  • <& /Elements/ShowLink, URI => $link->BaseURI &>
    % next if $link->BaseObj and $checked->{$link->BaseObj->id}; % if ($depth < 8) { <& /Ticket/Elements/ShowMembers, Ticket => $link->BaseObj, depth => ($depth+1), checked => $checked &> % }
  • % }
<%INIT> return unless $Ticket; my $members = $Ticket->Members; return unless $members->Count; return if $checked->{$Ticket->id}; $checked->{$Ticket->id} = 1; <%ARGS> $Ticket => undef $depth => 1 $checked => {} rt-4.0.19/share/html/Ticket/ShowEmailRecord.html0000664000175000017500000000672612262650742020473 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Attachment => undef $Transaction => undef <%INIT> my $show_content = sub { my $attach = shift; if ( $attach->ContentType =~ m{^(?:text|message)/}i ) { $m->out( $m->interp->apply_escapes( $attach->Content, 'h' ) ); return; } my $href = RT->Config->Get('WebPath') .'/Ticket/Attachment/' . $attach->TransactionId .'/'. $attach->id .'/' . $m->interp->apply_escapes( $attach->Filename, 'u' ); $m->out( ''. loc('download') .'' ); }; my $show; $show = sub { my $attach = shift; $m->out( '
' );
    $m->out( $m->interp->apply_escapes( $attach->Headers, 'h' ) );
    $m->out( "\n\n" );
    if ( $attach->ContentType =~ m{^multipart/}i ) {
        my $children = $attach->Children;
        while ( my $child = $children->Next ) {
            $show->( $child );
        }
    } else {
        $show_content->( $attach );
    }
    $m->out( '
' ); }; my $AttachmentObj = RT::Attachment->new($session{'CurrentUser'}); $AttachmentObj->Load($Attachment) || Abort(loc("Attachment '[_1]' could not be loaded", $Attachment)); unless ( $AttachmentObj->id ) { Abort(loc("Attachment '[_1]' could not be loaded", $Attachment)); } unless ($AttachmentObj->TransactionId() == $Transaction ) { Abort(loc("Attachment '[_1]' could not be loaded", $Attachment)); } <& /Elements/Header, ShowBar => 0 &> % $show->( $AttachmentObj ); % $m->abort; rt-4.0.19/share/html/Ticket/GnuPG.html0000664000175000017500000000675412262650742016425 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> % $m->callback( CallbackName => 'BeforeActionList', %ARGS, Actions => \@results, ARGSRef => \%ARGS ); <& /Elements/ListActions, actions => \@results &>
<% loc('Return back to the ticket') %> <& /Elements/Submit, Label => ($encrypted? loc('Decrypt'): loc('Encrypt')), Name => ($encrypted? 'Decrypt': 'Encrypt'), &>
<%ARGS> $id => undef $Encrypt => 0 $Decrypt => 0 <%INIT> my $txn = RT::Transaction->new( $session{'CurrentUser'} ); $txn->Load( $id ); unless ( $txn->id ) { Abort(loc("Couldn't load transaction #[_1]", $id)); } $id = $txn->id; my @results; my $encrypted = 0; my $attachments = $txn->Attachments; while ( my $attachment = $attachments->Next ) { next unless $attachment->ContentType =~ m{^x-application-rt/gpg-encrypted\b}; $encrypted = 1; last; } $attachments->GotoFirstItem; if ( $Encrypt || $Decrypt ) { my $done = 1; while ( my $attachment = $attachments->Next ) { my ($status, $msg) = $Decrypt? $attachment->Decrypt : $attachment->Encrypt; push @results, $msg; unless ( $status ) { $done = 0; last; } } $encrypted = !$encrypted if $done; } my $title = loc("Encrypt/Decrypt transaction #[_1] of ticket #[_2]", $id, $txn->Ticket); rt-4.0.19/share/html/Ticket/ModifyPeople.html0000664000175000017500000001321612262650742020030 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Modify people related to ticket #[_1]', $Ticket->id) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $Ticket); <& /Elements/ListActions, actions => \@results &>
% $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); <&| /Widgets/TitleBox, title => loc('Modify people related to ticket #[_1]', $Ticket->Id), width => "100%", color=> "#333399", class=>'ticket-info-people' &> <& Elements/EditPeople, Ticket => $Ticket, UserField => $UserField, UserString => $UserString, UserOp => $UserOp, GroupString => $GroupString, GroupOp => $GroupOp, GroupField => $GroupField &> <&| /Widgets/TitleBox, title => loc("Modify who receives mail for ticket #[_1]", $Ticket->Id), width => "100%", color=> "#333399", class=>'ticket-info-squelch' &>

The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket.

    % for my $addr (sort keys %recips) {
  • >
  • % }
<& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes'), Caption => loc("If you've updated anything above, be sure to"), color => "#333399" &>
<%INIT> my @results; my $Ticket = LoadTicket($id); $m->callback( TicketObj => $Ticket, ARGSRef => \%ARGS ); # Update the squelch list my %squelched = map {$_->Content => 1} $Ticket->SquelchMailTo; my %checked = map {$_ => 1} grep {defined} (ref $ARGS{'checked_recipient'} eq "ARRAY" ? @{$ARGS{'checked_recipient'}} : defined $ARGS{'checked_recipient'} ? ($ARGS{'checked_recipient'}) : ()); my @all = grep {defined} (ref $ARGS{'autorecipient'} eq "ARRAY" ? @{$ARGS{'autorecipient'}} : defined $ARGS{'autorecipient'} ? ($ARGS{'autorecipient'}) : ()); $Ticket->UnsquelchMailTo($_) for grep {$squelched{$_}} keys %checked; $Ticket->SquelchMailTo($_) for grep {!$squelched{$_} and !$checked{$_}} @all; # if we're trying to search for watchers and nothing else unless ($OnlySearchForPeople or $OnlySearchForGroup) { push @results, ProcessTicketBasics( TicketObj => $Ticket, ARGSRef => \%ARGS); push @results, ProcessTicketWatchers( TicketObj => $Ticket, ARGSRef => \%ARGS); $Ticket->ApplyTransactionBatch; } # Use the ticket's scrips to figure out the new list of recipients. my @txns = grep {defined} map {$Ticket->DryRun( Action => $_ )} qw/comment respond/; my %recips=(); for my $scrip (map {@{$_->Scrips->Prepared}} @txns) { next unless $scrip->ActionObj->Action->isa('RT::Action::SendEmail'); for my $type (qw(To Cc Bcc)) { $recips{$_->address} = 1 for $scrip->ActionObj->Action->$type(); } } for my $rule (map {@{$_->Rules}} @txns) { next unless $rule->{hints} && $rule->{hints}{class} eq "SendEmail"; for my $type (qw(To Cc Bcc)) { $recips{$_} = 1 for @{$rule->{hints}{recips}{$type}}; } } # Use tkt squelch list to get recipients who will NOT get mail: $recips{$_->Content} = 0 for $Ticket->SquelchMailTo; <%ARGS> $OnlySearchForPeople => undef $OnlySearchForGroup => undef $UserField => undef $UserOp => undef $UserString => undef $GroupField => undef $GroupOp => undef $GroupString => undef $id => undef rt-4.0.19/share/html/Ticket/Attachment/0000775000175000017500000000000012262650742016633 5ustar chmrrchmrrrt-4.0.19/share/html/Ticket/Attachment/WithHeaders/0000775000175000017500000000000012262650742021042 5ustar chmrrchmrrrt-4.0.19/share/html/Ticket/Attachment/WithHeaders/dhandler0000664000175000017500000000562112262650742022552 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%perl> # we don't need transaction id my ($id) = $m->dhandler_arg =~ /^(\d+)/; unless ( $id ) { # wrong url format Abort("Corrupted attachment URL"); } my $AttachmentObj = RT::Attachment->new( $session{'CurrentUser'} ); $AttachmentObj->Load( $id ); unless ( $AttachmentObj->id ) { Abort("Couldn't load attachment #$id"); } my $content_type = 'text/plain'; my $enc = $AttachmentObj->OriginalEncoding || 'utf-8'; my $iana = Encode::find_encoding($enc); $iana = $iana ? $iana->mime_name : $enc; $content_type .= ";charset=$iana"; # XXX: should we check handle html here and integrate headers into html? $r->content_type( $content_type ); $m->clear_buffer; $m->out( $AttachmentObj->EncodedHeaders( $enc ) ); $m->out( "\n\n" ); $m->out( $AttachmentObj->OriginalContent ); $m->abort; <%attr> AutoFlush => 0 rt-4.0.19/share/html/Ticket/Attachment/dhandler0000664000175000017500000000702212262650742020340 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%perl> my ($ticket, $trans,$attach, $filename); my $arg = $m->dhandler_arg; # get rest of path if ($arg =~ m{^(\d+)/(\d+)}) { $trans = $1; $attach = $2; } else { Abort("Corrupted attachment URL."); } my $AttachmentObj = RT::Attachment->new($session{'CurrentUser'}); $AttachmentObj->Load($attach) || Abort("Attachment '$attach' could not be loaded"); unless ($AttachmentObj->id) { Abort("Bad attachment id. Couldn't find attachment '$attach'\n"); } unless ($AttachmentObj->TransactionId() == $trans ) { Abort("Bad transaction number for attachment. $trans should be".$AttachmentObj->TransactionId() ."\n"); } my $content_type = $AttachmentObj->ContentType || 'text/plain'; if (RT->Config->Get('AlwaysDownloadAttachments')) { $r->headers_out->{'Content-Disposition'} = "attachment"; } elsif (!RT->Config->Get('TrustHTMLAttachments')) { $content_type = 'text/plain' if ($content_type =~ /^text\/html/i); } my $enc = $AttachmentObj->OriginalEncoding || 'utf-8'; my $iana = Encode::find_encoding( $enc ); $iana = $iana? $iana->mime_name : $enc; require MIME::Types; my $mimetype = MIME::Types->new->type($content_type); unless ( $mimetype && $mimetype->isBinary ) { $content_type .= ";charset=$iana"; } $r->content_type( $content_type ); $m->clear_buffer(); $m->out($AttachmentObj->OriginalContent); $m->abort; <%attr> AutoFlush => 0 rt-4.0.19/share/html/Ticket/Display.html0000664000175000017500000002105112262650742017035 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title, LinkRel => \%link_rel &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', %ARGS, Actions => \@Actions, ARGSRef => \%ARGS, Ticket => $TicketObj); <& /Elements/ListActions, actions => \@Actions &> <& Elements/ShowUpdateStatus, Ticket => $TicketObj &> % $m->callback( %ARGS, Ticket => $TicketObj, Transactions => $transactions, Attachments => $attachments, CallbackName => 'BeforeShowSummary' );
<&| /Widgets/TitleBox, title => loc('Ticket metadata') &> <& /Ticket/Elements/ShowSummary, Ticket => $TicketObj, Attachments => $attachments &>

% $m->callback( Ticket => $TicketObj, %ARGS, Transactions => $transactions, Attachments => $attachments, CallbackName => 'BeforeShowHistory' ); % if (not $ForceShowHistory and RT->Config->Get( 'DeferTransactionLoading', $session{'CurrentUser'} )) { <& /Ticket/Elements/ClickToShowHistory, Ticket => $TicketObj, &> % } else { <& /Ticket/Elements/ShowHistory , Ticket => $TicketObj, Tickets => $Tickets, Transactions => $transactions, Collapsed => $ARGS{'Collapsed'}, ShowHeaders => $ARGS{'ShowHeaders'}, Attachments => $attachments, AttachmentContent => $attachment_content &> % } % $m->callback( %ARGS, % Ticket => $TicketObj, % Transactions => $transactions, % Attachments => $attachments, % CallbackName => 'AfterShowHistory', % ); <%ARGS> $id => undef $TicketObj => undef $ShowHeaders => 0 $Collapsed => undef $ForceShowHistory => 0 <%INIT> $m->callback( TicketObj => $TicketObj, ARGSRef => \%ARGS, CallbackName => 'Initial' ); if ( ! $ARGS{'NoRedirect'} && RT::Interface::Web->MobileClient()) { $id ||= $TicketObj->id if $TicketObj; RT::Interface::Web::Redirect(RT->Config->Get('WebURL').'m/ticket/show?id='.$id); $m->abort; } my (@Actions, $Tickets, $title); unless ($id || $TicketObj) { Abort('No ticket specified'); } if ($ARGS{'id'} eq 'new') { # {{{ Create a new ticket my $Queue = RT::Queue->new( $session{'CurrentUser'} ); $Queue->Load($ARGS{'Queue'}); unless ( $Queue->id ) { Abort('Queue not found'); } unless ( $Queue->CurrentUserHasRight('CreateTicket') ) { Abort('You have no permission to create tickets in that queue.'); } ($TicketObj, @Actions) = CreateTicket( Attachments => delete $session{'Attachments'}, %ARGS, ); unless ( $TicketObj->CurrentUserHasRight('ShowTicket') ) { Abort("No permission to view newly created ticket #".$TicketObj->id."."); } } else { $TicketObj ||= LoadTicket($ARGS{'id'}); $TicketObj->CurrentUser->PrincipalObj->HasRights( Object => $TicketObj ); my $SkipProcessing; $m->callback( CallbackName => 'BeforeProcessArguments', TicketObj => $TicketObj, Tickets => $Tickets, ActionsRef => \@Actions, ARGSRef => \%ARGS, SkipProcessing => \$SkipProcessing ); if ( !$SkipProcessing ) { if ( defined $ARGS{'Action'} ) { if ($ARGS{'Action'} =~ /^(Steal|Delete|Take|SetTold)$/) { my $action = $1; my ($res, $msg) = $TicketObj->$action(); push(@Actions, $msg); } } $m->callback(CallbackName => 'ProcessArguments', Ticket => $TicketObj, ARGSRef => \%ARGS, Actions => \@Actions); $ARGS{UpdateAttachments} = $session{'Attachments'}; push @Actions, ProcessUpdateMessage( ARGSRef => \%ARGS, Actions => \@Actions, TicketObj => $TicketObj, ); delete $session{'Attachments'}; #Process status updates push @Actions, ProcessTicketWatchers(ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessTicketBasics( ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessTicketLinks( ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessTicketDates( ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessObjectCustomFieldUpdates(ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessTicketReminders( ARGSRef => \%ARGS, TicketObj => $TicketObj ); unless ($TicketObj->CurrentUserHasRight('ShowTicket')) { if (@Actions) { Abort("A change was applied successfully, but you no longer have permissions to view the ticket", Actions => \@Actions); } else { Abort("No permission to view ticket"); } } if ( $ARGS{'MarkAsSeen'} ) { $TicketObj->SetAttribute( Name => 'User-'. $TicketObj->CurrentUser->id .'-SeenUpTo', Content => $TicketObj->LastUpdated, ); push @Actions, loc('Marked all messages as seen'); } } } $title = loc("#[_1]: [_2]", $TicketObj->Id, $TicketObj->Subject || ''); $m->callback( CallbackName => 'BeforeDisplay', TicketObj => \$TicketObj, Tickets => \$Tickets, Actions => \@Actions, title => \$title, ARGSRef => \%ARGS, ); # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@Actions, $TicketObj->Type eq 'approval' && RT->Config->Get('ForceApprovalsView') ? (Path => "/Approvals/Display.html", Force => 1) : (Path => "/Ticket/Display.html") , Anchor => $ARGS{'Anchor'}, Arguments => { id => $TicketObj->id }, ); # Get the transactoins before the attachments, for great ACL justice my $transactions = $m->comp('Elements/FindTransactions',Ticket => $TicketObj, Tickets => $Tickets || undef); my $attachments = $m->comp('Elements/FindAttachments', Ticket => $TicketObj, Tickets => $Tickets); my $attachment_content = $m->comp('Elements/LoadTextAttachments', Ticket => $TicketObj); my %link_rel; if (defined $session{'tickets'} and ($ARGS{'Query'} or $session{'CurrentSearchHash'}->{'Query'})) { my $item_map = $session{'tickets'}->ItemMap; $link_rel{first} = "Ticket/Display.html?id=" . $item_map->{first} if $item_map->{$TicketObj->Id}{prev}; $link_rel{prev} = "Ticket/Display.html?id=" . $item_map->{$TicketObj->Id}{prev} if $item_map->{$TicketObj->Id}{prev}; $link_rel{next} = "Ticket/Display.html?id=" . $item_map->{$TicketObj->Id}{next} if $item_map->{$TicketObj->Id}{next}; $link_rel{last} = "Ticket/Display.html?id=" . $item_map->{last} if $item_map->{$TicketObj->Id}{next} && $item_map->{last}; } rt-4.0.19/share/html/Ticket/ModifyAll.html0000664000175000017500000001666012262650742017322 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Ticket #[_1] Jumbo update: [_2]", $Ticket->Id, $Ticket->Subject) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $Ticket); <& /Elements/ListActions, actions => \@results &>
% $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); <&| /Widgets/TitleBox, title => loc('Modify ticket # [_1]', $Ticket->Id), class=>'ticket-info-basics' &> <& Elements/EditBasics, TicketObj => $Ticket &> <& Elements/EditCustomFields, TicketObj => $Ticket &> % $m->callback(CallbackName => 'AfterBasics', Ticket => $Ticket);
<&| /Widgets/TitleBox, title => loc('Dates'), class=>'ticket-info-dates'&> <& Elements/EditDates, TicketObj => $Ticket &>
<&| /Widgets/TitleBox, title => loc('People'), class=>'ticket-info-people' &> <& Elements/EditPeople, Ticket => $Ticket, UserField => $UserField, UserString => $UserString, UserOp => $UserOp, GroupString => $GroupString, GroupOp => $GroupOp, GroupField => $GroupField &>
<&| /Widgets/TitleBox, title => loc('Links'), class=>'ticket-info-links' &> <& /Elements/EditLinks, Object => $Ticket, Merge => 1 &>
<&| /Widgets/TitleBox, title => loc('Update ticket') &> <& /Ticket/Elements/AddAttachments, %ARGS, TicketObj => $Ticket &>
<&|/l&>Update Type: % $m->callback( %ARGS, CallbackName => 'AfterUpdateType' );
<&|/l&>Subject: % $m->callback( %ARGS, CallbackName => 'AfterSubject' );
<& /Ticket/Elements/EditTransactionCustomFields, %ARGS, TicketObj => $Ticket &>
<&|/l&>Content: % if ( defined $ARGS{UpdateContent} && length $ARGS{UpdateContent} ) { <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0 &> % } else { <& /Elements/MessageBox, Name=>"UpdateContent", QuoteTransaction=>$ARGS{QuoteTransaction} &> % }
<& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes'), Caption => loc("If you've updated anything above, be sure to"), color => "#333399" &>
<%INIT> my $Ticket = LoadTicket($id); my $CustomFields = $Ticket->CustomFields; # call this to show up hints of valid cf values. $m->comp( '/Elements/ValidateCustomFields', CustomFields => $CustomFields, ARGSRef => {}, ); my $CanRespond = 0; my $CanComment = 0; $CanRespond = 1 if ( $Ticket->CurrentUserHasRight('ReplyToTicket') or $Ticket->CurrentUserHasRight('ModifyTicket') ); $CanComment = 1 if ( $Ticket->CurrentUserHasRight('CommentOnTicket') or $Ticket->CurrentUserHasRight('ModifyTicket') ); ProcessAttachments(ARGSRef => \%ARGS); $m->callback( TicketObj => $Ticket, ARGSRef => \%ARGS ); my @results; unless ($OnlySearchForPeople or $OnlySearchForGroup or $ARGS{'AddMoreAttach'} ) { # There might be two owners. if ( ref ($ARGS{'Owner'} )) { my @owners =@{$ARGS{'Owner'}}; delete $ARGS{'Owner'}; foreach my $owner(@owners){ if (defined($owner) && $owner =~ /\D/) { $ARGS{'Owner'} = $owner unless ($Ticket->OwnerObj->Name eq $owner); } elsif (length $owner) { $ARGS{'Owner'} = $owner unless ($Ticket->OwnerObj->id == $owner); } } } push @results, ProcessTicketWatchers( TicketObj => $Ticket, ARGSRef => \%ARGS); push @results, ProcessObjectCustomFieldUpdates( Object => $Ticket, ARGSRef => \%ARGS); push @results, ProcessTicketDates( TicketObj => $Ticket, ARGSRef => \%ARGS); # Add session attachments if any to be processed by ProcessUpdateMessage $ARGS{'UpdateAttachments'} = $session{'Attachments'} if ( $session{'Attachments'} ); push @results, ProcessUpdateMessage( TicketObj => $Ticket, ARGSRef=>\%ARGS ); # Cleanup WebUI delete $session{'Attachments'}; push @results, ProcessTicketBasics( TicketObj => $Ticket, ARGSRef => \%ARGS ); push @results, ProcessTicketLinks( TicketObj => $Ticket, ARGSRef => \%ARGS); } $Ticket->ApplyTransactionBatch; MaybeRedirectForResults( Actions => \@results, Path => "/Ticket/ModifyAll.html", Arguments => { id => $Ticket->id }, ); # If they've gone and moved the ticket to somewhere they can't see, etc... unless ($Ticket->CurrentUserHasRight('ShowTicket')) { if (@results) { Abort("A change was applied successfully, but you no longer have permissions to view the ticket", Actions => \@results); } else { Abort("No permission to view ticket"); } } <%ARGS> $OnlySearchForPeople => undef $OnlySearchForGroup => undef $UserField => undef $UserOp => undef $UserString => undef $GroupString => undef $GroupOp => undef $GroupField => undef $id => undef rt-4.0.19/share/html/Ticket/Create.html0000664000175000017500000003661012262650742016642 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title, onload => "function () { hide('Ticket-Create-details') }" &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
% $m->callback( CallbackName => 'FormStart', QueueObj => $QueueObj, ARGSRef => \%ARGS ); % if ($gnupg_widget) { <& /Elements/GnuPG/SignEncryptWidget:ShowIssues, self => $gnupg_widget &> % }
<&| /Widgets/TitleBox, title => loc("Basics"), class=>'ticket-info-basics' &> <& /Ticket/Elements/EditBasics, InTable => 1, fields => [ { name => 'Queue', comp => '/Ticket/Elements/ShowQueue', args => { QueueObj => $QueueObj, }, }, { name => 'Status', comp => '/Elements/SelectStatus', args => { Name => "Status", Default => $ARGS{Status} || $QueueObj->Lifecycle->DefaultOnCreate, DefaultValue => 0, SkipDeleted => 1, QueueObj => $QueueObj, }, }, { name => 'Owner', comp => '/Elements/SelectOwner', args => { Name => "Owner", Default => $ARGS{Owner} || RT->Nobody->Id, DefaultValue => 0, QueueObj => $QueueObj, }, } ] &> % $m->callback( CallbackName => 'AfterOwner', ARGSRef => \%ARGS ); <& /Ticket/Elements/EditCustomFields, %ARGS, QueueObj => $QueueObj, InTable => 1 &> <& /Ticket/Elements/EditTransactionCustomFields, %ARGS, QueueObj => $QueueObj, InTable => 1 &>
% $m->callback( CallbackName => 'AfterBasics', QueueObj => $QueueObj, ARGSRef => \%ARGS );
<&| /Widgets/TitleBox, title => $title, class => 'messagedetails' &> % if ( $gnupg_widget ) { % } <& /Ticket/Elements/AddAttachments, %ARGS, QueueObj => $QueueObj &>
<&|/l&>Requestors: <& /Elements/EmailInput, Name => 'Requestors', Size => undef, Default => $ARGS{Requestors} || $session{CurrentUser}->EmailAddress &> % $m->callback( CallbackName => 'AfterRequestors', QueueObj => $QueueObj, ARGSRef => \%ARGS );
<&|/l&>Cc: <& /Elements/EmailInput, Name => 'Cc', Size => undef, Default => $ARGS{Cc} &>
  <&|/l&>(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)
<&|/l&>Admin Cc: <& /Elements/EmailInput, Name => 'AdminCc', Size => undef, Default => $ARGS{AdminCc} &>
  <&|/l&>(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)
<&|/l&>Subject: % $m->callback( %ARGS, CallbackName => 'AfterSubject' );
  <& /Elements/GnuPG/SignEncryptWidget, self => $gnupg_widget, QueueObj => $QueueObj &>
<&|/l&>Describe the issue below:
% if ( RT->Config->Get('ArticleOnTicketCreate')) { <& /Articles/Elements/BeforeMessageBox, %ARGS, QueueObj => $QueueObj &> % } % $m->callback( %ARGS, QueueObj => $QueueObj, CallbackName => 'BeforeMessageBox' ); % if (exists $ARGS{Content}) { <& /Elements/MessageBox, Default => $ARGS{Content}, IncludeSignature => 0 &> % } else { <& /Elements/MessageBox, QuoteTransaction => $QuoteTransaction &> %} % $m->callback( %ARGS, QueueObj => $QueueObj, CallbackName => 'AfterMessageBox' );
<& /Elements/Submit, Label => loc("Create"), id => 'SubmitTicket' &>
<&| /Widgets/TitleBox, title => loc('The Basics'), title_class=> 'inverse', color => "#993333" &>
<&|/l&>Priority: <& /Elements/SelectPriority, Name => "InitialPriority", Default => $ARGS{InitialPriority} ? $ARGS{InitialPriority} : $QueueObj->InitialPriority, &>
<&|/l&>Final Priority: <& /Elements/SelectPriority, Name => "FinalPriority", Default => $ARGS{FinalPriority} ? $ARGS{FinalPriority} : $QueueObj->FinalPriority, &>
<&|/l&>Time Estimated: <& /Elements/EditTimeValue, Name => 'TimeEstimated', Default => $ARGS{TimeEstimated} || '', InUnits => $ARGS{'TimeEstimated-TimeUnits'} &>
<&|/l&>Time Worked: <& /Elements/EditTimeValue, Name => 'TimeWorked', Default => $ARGS{TimeWorked} || '', InUnits => $ARGS{'TimeWorked-TimeUnits'} &>
<&|/l&>Time Left: <& /Elements/EditTimeValue, Name => 'TimeLeft', Default => $ARGS{TimeLeft} || '', InUnits => $ARGS{'TimeLeft-TimeUnits'} &>

<&|/Widgets/TitleBox, title => loc("Dates"), title_class=> 'inverse', color => "#663366" &>
<&|/l&>Starts:<& /Elements/SelectDate, Name => "Starts", Default => $ARGS{Starts} || '' &>
<&|/l&>Due:<& /Elements/SelectDate, Name => "Due", Default => $ARGS{Due} || '' &>


<& /Elements/Submit, Label => loc("Create") &>
<%INIT> $m->callback( CallbackName => "Init", ARGSRef => \%ARGS ); my $Queue = $ARGS{Queue}; $session{DefaultQueue} = $Queue; if ($CloneTicket) { my $CloneTicketObj = RT::Ticket->new( $session{CurrentUser} ); $CloneTicketObj->Load($CloneTicket) or Abort( loc("Ticket could not be loaded") ); my $clone = { Requestors => join( ',', $CloneTicketObj->RequestorAddresses ), Cc => join( ',', $CloneTicketObj->CcAddresses ), AdminCc => join( ',', $CloneTicketObj->AdminCcAddresses ), InitialPriority => $CloneTicketObj->Priority, }; $clone->{$_} = $CloneTicketObj->$_() for qw/Owner Subject FinalPriority TimeEstimated TimeWorked Status TimeLeft/; $clone->{$_} = $CloneTicketObj->$_->AsString for grep { $CloneTicketObj->$_->Unix } map { $_ . "Obj" } qw/Starts Started Due Resolved/; my $members = $CloneTicketObj->Members; my ( @members, @members_of, @refers, @refers_by, @depends, @depends_by ); my $refers = $CloneTicketObj->RefersTo; my $get_link_value = sub { my ($link, $type) = @_; my $uri_method = $type . 'URI'; my $local_method = 'Local' . $type; my $uri = $link->$uri_method; return if $uri->IsLocal and $uri->Object and $uri->Object->isa('RT::Ticket') and $uri->Object->Type eq 'reminder'; return $link->$local_method || $uri->URI; }; while ( my $refer = $refers->Next ) { my $refer_value = $get_link_value->($refer, 'Target'); push @refers, $refer_value if defined $refer_value; } $clone->{'new-RefersTo'} = join ' ', @refers; my $refers_by = $CloneTicketObj->ReferredToBy; while ( my $refer_by = $refers_by->Next ) { my $refer_by_value = $get_link_value->($refer_by, 'Base'); push @refers_by, $refer_by_value if defined $refer_by_value; } $clone->{'RefersTo-new'} = join ' ', @refers_by; my $cfs = $CloneTicketObj->QueueObj->TicketCustomFields(); while ( my $cf = $cfs->Next ) { my $cf_id = $cf->id; my $cf_values = $CloneTicketObj->CustomFieldValues( $cf->id ); my @cf_values; while ( my $cf_value = $cf_values->Next ) { push @cf_values, $cf_value->Content; } if ( @cf_values > 1 && $cf->Type eq 'Select' ) { $clone->{"Object-RT::Ticket--CustomField-$cf_id-Value"} = \@cf_values; } else { $clone->{"Object-RT::Ticket--CustomField-$cf_id-Value"} = join "\n", @cf_values; } } for ( keys %$clone ) { $ARGS{$_} = $clone->{$_} if not defined $ARGS{$_}; } } my @results; my $title = loc("Create a new ticket"); my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($Queue) || Abort(loc("Queue could not be loaded.")); $m->callback( QueueObj => $QueueObj, title => \$title, results => \@results, ARGSRef => \%ARGS ); $QueueObj->Disabled && Abort(loc("Cannot create tickets in a disabled queue.")); my $CFs = $QueueObj->TicketCustomFields(); my $ValidCFs = $m->comp( '/Elements/ValidateCustomFields', CustomFields => $CFs, ARGSRef => \%ARGS ); ProcessAttachments(ARGSRef => \%ARGS); my $checks_failure = 0; my $gnupg_widget = $m->comp('/Elements/GnuPG/SignEncryptWidget:new', Arguments => \%ARGS ); $m->comp( '/Elements/GnuPG/SignEncryptWidget:Process', self => $gnupg_widget, QueueObj => $QueueObj, ); if ( !exists $ARGS{'AddMoreAttach'} && ($ARGS{'id'}||'') eq 'new' ) { my $status = $m->comp('/Elements/GnuPG/SignEncryptWidget:Check', self => $gnupg_widget, Operation => 'Create', QueueObj => $QueueObj, ); $checks_failure = 1 unless $status; } # check email addresses for RT's { foreach my $field ( qw(Requestors Cc AdminCc) ) { my $value = $ARGS{ $field }; next unless defined $value && length $value; my @emails = Email::Address->parse( $value ); foreach my $email ( grep RT::EmailParser->IsRTAddress($_->address), @emails ) { push @results, loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $email->format, loc($field =~ /^(.*?)s?$/) ); $checks_failure = 1; $email = undef; } $ARGS{ $field } = join ', ', map $_->format, grep defined, @emails; } } my $skip_create = 0; $m->callback( CallbackName => 'BeforeCreate', ARGSRef => \%ARGS, skip_create => \$skip_create, checks_failure => $checks_failure, results => \@results ); $m->comp( '/Articles/Elements/CheckSkipCreate', ARGSRef => \%ARGS, skip_create => \$skip_create, checks_failure => $checks_failure, results => \@results ); if ((!exists $ARGS{'AddMoreAttach'}) and (defined($ARGS{'id'}) and $ARGS{'id'} eq 'new')) { # new ticket? if ( $ValidCFs && !$checks_failure && !$skip_create ) { $m->comp('Display.html', %ARGS); $RT::Logger->crit("After display call; error is $@"); $m->abort(); } elsif ( !$ValidCFs ) { # Invalid CFs while (my $CF = $CFs->Next) { my $msg = $m->notes('InvalidField-' . $CF->Id) or next; push @results, $CF->Name . ': ' . $msg; } } } PageMenu->child( basics => raw_html => q[] . loc('Basics') . q[]); PageMenu->child( details => raw_html => q[] . loc('Details') . q[]); <%ARGS> $DependsOn => undef $DependedOnBy => undef $MemberOf => undef $QuoteTransaction => undef $CloneTicket => undef rt-4.0.19/share/html/Ticket/History.html0000664000175000017500000000552712262650742017103 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Ticket History # [_1] [_2]", $Ticket->Id, $Ticket->Subject) &> <& /Elements/Tabs &> % $m->callback( %ARGS, Ticket => $Ticket, CallbackName => 'BeforeActionList' );
<& /Ticket/Elements/ShowHistory , Ticket => $Ticket, ShowHeaders => $ARGS{'ShowHeaders'}, URIFile => 'History.html', Attachments => $attachments, AttachmentContent => $attachment_content &> % $m->callback( %ARGS, CallbackName => 'AfterShowHistory', Ticket => $Ticket ); <%ARGS> $id => undef <%INIT> my $Ticket = LoadTicket ($id); unless ($Ticket->CurrentUserHasRight('ShowTicket')) { Abort("No permission to view ticket"); } my $attachments = $m->comp('Elements/FindAttachments', Ticket => $Ticket); my $attachment_content = $m->comp('Elements/LoadTextAttachments', Ticket => $Ticket); rt-4.0.19/share/html/Ticket/Reminders.html0000664000175000017500000000545012262650742017365 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Reminders for ticket #[_1]", $Ticket->Id) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', ARGSRef => \%ARGS, Ticket => $Ticket); <& /Elements/ListActions, actions => \@results &>
<&|/Widgets/TitleBox, title => loc("Reminders"), class=>'ticket-info-reminders' &> <& /Ticket/Elements/Reminders, Ticket => $Ticket, ShowCompleted => 1, Edit => 1 &> <& /Elements/Submit, Label => loc('Save Changes') &>
<%INIT> my $Ticket = LoadTicket($id); my @results = ProcessTicketReminders( TicketObj => $Ticket, ARGSRef => \%ARGS ); <%ARGS> $id => undef rt-4.0.19/share/html/Ticket/Modify.html0000664000175000017500000000755712262650742016676 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Modify ticket #[_1]', $TicketObj->Id) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $TicketObj); <& /Elements/ListActions, actions => \@results &>
% $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); <&| /Widgets/TitleBox, title => loc('Modify ticket #[_1]',$TicketObj->Id), class=>'ticket-info-basics' &> <& Elements/EditBasics, TicketObj => $TicketObj &> <& Elements/EditCustomFields, TicketObj => $TicketObj, DefaultsFromTopArguments => 0 &> % $m->callback( CallbackName => 'AfterBasics', Ticket => $TicketObj ); <& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes'), Caption => loc("If you've updated anything above, be sure to"), color => "#993333" &>
<%INIT> my $TicketObj = LoadTicket($id); my $CustomFields = $TicketObj->CustomFields; # call this to show up hints of valid cf values. $m->comp( '/Elements/ValidateCustomFields', CustomFields => $CustomFields, ARGSRef => {}, ); # Now let callbacks have a chance at editing %ARGS $m->callback( TicketObj => $TicketObj, CustomFields => $CustomFields, ARGSRef => \%ARGS ); my @results = ProcessTicketBasics(TicketObj => $TicketObj, ARGSRef => \%ARGS); push @results, ProcessObjectCustomFieldUpdates(Object => $TicketObj, ARGSRef => \%ARGS); $TicketObj->ApplyTransactionBatch; unless ($TicketObj->CurrentUserHasRight('ShowTicket')) { if (@results) { Abort("A change was applied successfully, but you no longer have permissions to view the ticket", Actions => \@results); } else { Abort("No permission to view ticket"); } } <%ARGS> $id => undef rt-4.0.19/share/html/Ticket/ModifyLinks.html0000664000175000017500000000624712262650742017672 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Link ticket #[_1]", $Ticket->Id) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $Ticket); <& /Elements/ListActions, actions => \@results &>
% $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); % my (@extra); % push @extra, titleright_raw => ''.loc('Graph').'' unless RT->Config->Get('DisableGraphViz'); <&| /Widgets/TitleBox, title => loc('Edit Links'), class=>'ticket-info-links', @extra &> <& /Elements/EditLinks, Object => $Ticket, Merge => 1 &> <& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes') &>
<%INIT> my $Ticket = LoadTicket($id); my @results; $m->callback( TicketObj => $Ticket, ARGSRef => \%ARGS, Results => \@results ); push @results, ProcessTicketLinks( TicketObj => $Ticket, ARGSRef => \%ARGS ); $Ticket->ApplyTransactionBatch; <%ARGS> $id => undef rt-4.0.19/share/html/Ticket/autohandler0000664000175000017500000000503312262650742016775 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> # Redirect to the approvals view if we're trying to get an approvals ticket # Exceptions: # - Display handles redirecting for approvals itself after mobile redirect/processing # - Create doesn't have an existing ticket # - Forward and ShowEmailRecord are used by the approvals view # - anything not ending in a .html my $whitelist = qr{ (?:/(?:Display|Create|Forward|ShowEmailRecord)\.html |(? $whitelist, ARGSRef => \%ARGS, ); $m->call_next; rt-4.0.19/share/html/Ticket/Update.html0000664000175000017500000002771312262650742016665 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', ARGSRef => \%ARGS, Ticket => $TicketObj); <& /Elements/ListActions, actions => \@results &>
% $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS, Ticket => $TicketObj, CanRespond => $CanRespond, CanComment => $CanComment, ResponseDefault => $ResponseDefault, CommentDefault => $CommentDefault ); <& /Elements/GnuPG/SignEncryptWidget:ShowIssues, self => $gnupg_widget &>
<&|/Widgets/TitleBox, title => loc('Ticket and Transaction') &> % $m->callback(CallbackName => 'AfterTableOpens', ARGSRef => \%ARGS, Ticket => $TicketObj); % my $skip; % $m->callback( %ARGS, CallbackName => 'BeforeUpdateType', skip => \$skip ); % if (!$skip) {
% } <& /Ticket/Elements/EditBasics, TicketObj => $TicketObj, InTable => 1, fields => [ { name => 'Status', comp => '/Elements/SelectStatus', args => { Name => 'Status', DefaultLabel => loc("[_1] (Unchanged)", loc($TicketObj->Status)), Default => $ARGS{'Status'} || ($TicketObj->Status eq $DefaultStatus ? undef : $DefaultStatus), TicketObj => $TicketObj, QueueObj => $TicketObj->QueueObj }, }, { name => 'Owner', comp => '/Elements/SelectOwner', args => { Name => "Owner", TicketObj => $TicketObj, QueueObj => $TicketObj->QueueObj, DefaultLabel => loc("[_1] (Unchanged)", $m->scomp('/Elements/ShowUser', User => $TicketObj->OwnerObj)), Default => $ARGS{'Owner'} } }, { name => 'Worked', comp => '/Elements/EditTimeValue', args => { Name => 'UpdateTimeWorked', Default => $ARGS{UpdateTimeWorked}||'', InUnits => $ARGS{'UpdateTimeWorked-TimeUnits'}||'minutes', } }, ] &> % $m->callback( %ARGS, CallbackName => 'AfterWorked', Ticket => $TicketObj ); <& /Ticket/Elements/EditTransactionCustomFields, %ARGS, TicketObj => $TicketObj, AsTable => 1 &>
<&|/l&>Update Type: % $m->callback( %ARGS, CallbackName => 'AfterUpdateType' );
<& /Ticket/Elements/ShowSimplifiedRecipients, TicketObj => $TicketObj, %ARGS &> <&|/Widgets/TitleBox, title => loc('Message'), class => 'messagedetails' &> <& /Ticket/Elements/UpdateCc, %ARGS, TicketObj => $TicketObj &> % if ( $gnupg_widget ) { % } % $m->callback( %ARGS, CallbackName => 'AfterGnuPG' ); <& /Ticket/Elements/AddAttachments, %ARGS, TicketObj => $TicketObj &>
  <& /Elements/GnuPG/SignEncryptWidget, self => $gnupg_widget, TicketObj => $TicketObj, &>
<&|/l&>Subject: % $m->callback( %ARGS, CallbackName => 'AfterSubject' );
<&|/l&>Message: <& /Articles/Elements/BeforeMessageBox, %ARGS &> % $m->callback( %ARGS, CallbackName => 'BeforeMessageBox' ); % if (exists $ARGS{UpdateContent}) { % # preserve QuoteTransaction so we can use it to set up sane references/in/reply to % my $temp = $ARGS{'QuoteTransaction'}; % delete $ARGS{'QuoteTransaction'}; <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0, %ARGS&> % $ARGS{'QuoteTransaction'} = $temp; % } else { % my $IncludeSignature = 1; % $IncludeSignature = 0 if $Action ne 'Respond' && !RT->Config->Get('MessageBoxIncludeSignatureOnComment'); <& /Elements/MessageBox, Name=>"UpdateContent", IncludeSignature => $IncludeSignature, %ARGS &> % } % $m->callback( %ARGS, CallbackName => 'AfterMessageBox' );
% $m->callback( %ARGS, CallbackName => 'BeforeSubmit', Ticket => $TicketObj ); <& /Elements/Submit, Label => loc('Update Ticket'), Name => 'SubmitTicket', id => 'SubmitTicket' &> % $m->callback( %ARGS, CallbackName => 'BeforeScrips', Ticket => $TicketObj ); % if ($TicketObj->CurrentUserHasRight('ShowOutgoingEmail')) { <&|/Widgets/TitleBox, title => loc('Scrips and Recipients'), id => 'previewscrips', rolledup => RT->Config->Get('SimplifiedRecipients', $session{'CurrentUser'}) &> <& /Ticket/Elements/PreviewScrips, TicketObj => $TicketObj, %ARGS &> % }
% $m->callback( %ARGS, CallbackName => 'AfterScrips', Ticket => $TicketObj ); % if (my $recips = $m->notes("DryRun-Recipients-".$TicketObj->Id)) { " /> % }

% $m->callback( %ARGS, CallbackName => 'AfterForm', Ticket => $TicketObj ); <%INIT> my $CanRespond = 0; my $CanComment = 0; my $checks_failure = 0; my $TicketObj = LoadTicket($id); my @results; $m->callback( Ticket => $TicketObj, ARGSRef => \%ARGS, checks_failure => \$checks_failure, results => \@results, CallbackName => 'Initial' ); unless($DefaultStatus){ $DefaultStatus=($ARGS{'Status'} ||$TicketObj->Status()); } my $title = loc("Update ticket #[_1] ([_2])", $TicketObj->id, $TicketObj->Subject||''); # Things needed in the template - we'll do the processing here, just # for the convenience: my ($CommentDefault, $ResponseDefault); if ($Action ne 'Respond') { $CommentDefault = qq[ selected="selected"]; $ResponseDefault = ""; } else { $CommentDefault = ""; $ResponseDefault = qq[ selected="selected"]; } my $type = $ARGS{'UpdateType'} ? $ARGS{'UpdateType'} : lc $ARGS{'Action'} eq 'respond' ? 'response' : lc $ARGS{'Action'} eq 'comment' ? 'private' : 'none' ; $CanRespond = 1 if ( $TicketObj->CurrentUserHasRight('ReplyToTicket') or $TicketObj->CurrentUserHasRight('ModifyTicket') ); $CanComment = 1 if ( $TicketObj->CurrentUserHasRight('CommentOnTicket') or $TicketObj->CurrentUserHasRight('ModifyTicket') ); ProcessAttachments(ARGSRef => \%ARGS); my $gnupg_widget = $m->comp('/Elements/GnuPG/SignEncryptWidget:new', Arguments => \%ARGS ); $m->comp( '/Elements/GnuPG/SignEncryptWidget:Process', self => $gnupg_widget, TicketObj => $TicketObj, ); if ( $ARGS{'SubmitTicket'} ) { my %squelched = ProcessTransactionSquelching( \%ARGS ); $ARGS{'SquelchMailTo'} = [keys %squelched] if keys %squelched; my $CFs = $TicketObj->TransactionCustomFields; my $ValidCFs = $m->comp( '/Elements/ValidateCustomFields', CustomFields => $CFs, NamePrefix => "Object-RT::Transaction--CustomField-", ARGSRef => \%ARGS ); unless ( $ValidCFs ) { $checks_failure = 1; while (my $CF = $CFs->Next) { my $msg = $m->notes('InvalidField-' . $CF->Id) or next; push @results, loc($CF->Name) . ': ' . $msg; } } my $status = $m->comp('/Elements/GnuPG/SignEncryptWidget:Check', self => $gnupg_widget, TicketObj => $TicketObj, ); $checks_failure = 1 unless $status; } # check email addresses for RT's { foreach my $field ( qw(UpdateCc UpdateBcc) ) { my $value = $ARGS{ $field }; next unless defined $value && length $value; my @emails = Email::Address->parse( $value ); foreach my $email ( grep RT::EmailParser->IsRTAddress($_->address), @emails ) { push @results, loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $email->format, loc(substr($field, 6)) ); $checks_failure = 1; $email = undef; } $ARGS{ $field } = join ', ', map $_->format, grep defined, @emails; } } my $skip_update = 0; $m->callback( CallbackName => 'BeforeUpdate', ARGSRef => \%ARGS, skip_update => \$skip_update, checks_failure => $checks_failure, results => \@results, TicketObj => $TicketObj ); if ( !$checks_failure && !$skip_update && exists $ARGS{SubmitTicket} ) { $m->callback( Ticket => $TicketObj, ARGSRef => \%ARGS, CallbackName => 'BeforeDisplay' ); return $m->comp('Display.html', TicketObj => $TicketObj, %ARGS); } <%ARGS> $id => undef $Action => undef $DefaultStatus => undef rt-4.0.19/share/html/Download/0000775000175000017500000000000012262650742015067 5ustar chmrrchmrrrt-4.0.19/share/html/Download/CustomFieldValue/0000775000175000017500000000000012262650742020302 5ustar chmrrchmrrrt-4.0.19/share/html/Download/CustomFieldValue/dhandler0000664000175000017500000000545012262650742022012 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%perl> my $id; my $arg = $m->dhandler_arg; # get rest of path if ($arg =~ /^(\d+)\//) { $id = $1; } else { Abort("Corrupted customfieldvalue URL."); } my $OCFV = RT::ObjectCustomFieldValue->new($session{'CurrentUser'}); $OCFV->Load($id) || Abort("OCFV '$id' could not be loaded"); unless ($OCFV->id) { Abort("Bad OCFV id. Couldn't find OCFV '$id'\n"); } my $content_type = $OCFV->ContentType || 'text/plain'; if (RT->Config->Get('AlwaysDownloadAttachments')) { $r->headers_out->{'Content-Disposition'} = "attachment"; } elsif (!RT->Config->Get('TrustHTMLAttachments')) { $content_type = 'text/plain' if ($content_type =~ /^text\/html/i); } $r->content_type( $content_type ); $m->clear_buffer(); $m->out($OCFV->LargeContent); $m->abort; <%attr> AutoFlush => 0 rt-4.0.19/share/html/Approvals/0000775000175000017500000000000012262650742015267 5ustar chmrrchmrrrt-4.0.19/share/html/Approvals/Elements/0000775000175000017500000000000012262650742017043 5ustar chmrrchmrrrt-4.0.19/share/html/Approvals/Elements/PendingMyApproval0000664000175000017500000001200012262650742022356 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my %done; % foreach ($tickets, $group_tickets) { % while (my $ticket = $_->Next() ) { % next if !$ARGS{'ShowDependent'} and $ticket->HasUnresolvedDependencies( Type => 'approval' ); % next if $done{$ticket->Id}++; # don't show duplicate tickets <& Approve, ticket => $ticket &> % } % } <&| /Widgets/TitleBox, title => loc("Search for approvals") &> /> <&|/l&>Show pending requests
/> <&|/l&>Show approved requests
/> <&|/l&>Show denied requests
/> <&|/l&>Show requests awaiting other approvals
<&|/l_unsafe, qq{"&>Only show approvals for requests created before [_1]
<&|/l_unsafe, qq{"&>Only show approvals for requests created after [_1] <%init> my $tickets = RT::Tickets->new( $session{'CurrentUser'} ); $tickets->LimitOwner( VALUE => $session{'CurrentUser'}->Id ); # also consider AdminCcs as potential approvers. my $group_tickets = RT::Tickets->new( $session{'CurrentUser'} ); $group_tickets->LimitWatcher( VALUE => $session{'CurrentUser'}->EmailAddress, TYPE => 'AdminCc' ); my $created_before = RT::Date->new( $session{'CurrentUser'} ); my $created_after = RT::Date->new( $session{'CurrentUser'} ); foreach ($tickets, $group_tickets) { $_->Limit( FIELD => 'Type', VALUE => 'approval' ); if ( $ARGS{'ShowResolved'} ) { $_->LimitStatus( VALUE => 'resolved' ); } if ( $ARGS{'ShowRejected'} ) { $_->LimitStatus( VALUE => 'rejected' ); } if ( $ARGS{'ShowPending'} || ( !$ARGS{'ShowRejected'} && !$ARGS{'Resolved'} ) ) { $_->LimitStatus( VALUE => 'open' ); $_->LimitStatus( VALUE => 'new' ); $_->LimitStatus( VALUE => 'stalled' ); } if ( $ARGS{'CreatedBefore'} ) { $created_before->Set( Format => 'unknown', Value => $ARGS{'CreatedBefore'} ); $_->LimitCreated( OPERATOR => "<=", VALUE => $created_before->ISO ); } if ( $ARGS{'CreatedAfter'} ) { $created_after->Set( Format => 'unknown', Value => $ARGS{'CreatedAfter'} ); $_->LimitCreated( OPERATOR => ">=", VALUE => $created_after->ISO ); } $_->OrderBy( FIELD => 'id' ); } rt-4.0.19/share/html/Approvals/Elements/Approve0000664000175000017500000001152412262650742020405 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
% if ($ShowApproving) { % foreach my $approving ( $ticket->AllDependedOnBy( Type => 'ticket' ) ) {
<&|/l, $approving->Id, $approving->Subject &>Originating ticket: #[_1]
% if ($ShowCustomFields) { <& /Ticket/Elements/ShowCustomFields, Ticket => $approving &> % } % if ($ShowHistory) { <& /Ticket/Elements/ShowHistory, Ticket => $approving, Collapsed => 0, ShowTitle => 0, ShowHeaders => 0, ShowDisplayModes => 0, ShowTitleBarCommands => 0 &> % }
% } % }
% if ( $inactive && $status eq 'resolved' ) { % } else { % }
% if ( $inactive && $status ne 'resolved' ) { % } else { % }
% unless ( $inactive ) {
% }
<%ARGS> $ShowApproving => 1 $ShowCustomFields => 1 $ShowHistory => 1 $ticket => undef <%INIT> my $status = $ticket->Status; my $inactive = $ticket->QueueObj->Lifecycle->IsInactive( $status ); rt-4.0.19/share/html/Approvals/Elements/ShowDependency0000664000175000017500000000750712262650742021716 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $approving = $Ticket->DependedOnBy(); % if ($approving->Count) {

<&|/l&>Tickets which depend on this approval:

  <%PERL> my %show; while (my $link = $approving->Next()) { next unless ($link->BaseURI->IsLocal()); my $text = ''; my $head = ''; my $type = $link->BaseObj->Type; my $dep = $m->scomp('ShowDependency', Ticket => $link->BaseObj, _seen => $_seen); if ($type eq 'approval') { $head .= $m->scomp('/Widgets/TitleBoxStart', title => loc("Approval #[_1]: [_2]", $link->BaseObj->Id, $link->BaseObj->Subject)); $text .= $head; $text .= $m->scomp('/Ticket/Elements/ShowCustomFields', Ticket => $link->BaseObj); } elsif ($type eq 'ticket') { $head .= $m->scomp('/Widgets/TitleBoxStart', title => loc("Ticket #[_1]: [_2]", $link->BaseObj->Id, $link->BaseObj->Subject)); $text .= $head; $text .= $m->scomp('/Ticket/Elements/ShowSummary', Ticket => $link->BaseObj); } else { $head .= $m->scomp('/Widgets/TitleBoxStart', title => loc("#[_1]: [_2]", $link->BaseObj->Id, $link->BaseObj->Subject)); $text .= $head; } $text .= $m->scomp('/Ticket/Elements/ShowHistory' , Ticket => $link->BaseObj, Collapsed => ($type ne 'ticket'), ShowTitle => 0, ShowHeaders => 0, ShowDisplayModes => 0, ShowTitleBarCommands => 0); $head .= $m->scomp('/Widgets/TitleBoxEnd'); $text .= $m->scomp('/Widgets/TitleBoxEnd'); $text .= $dep; $text .= ''; $show{$link->BaseObj->Id} = { text => $text, head => $head, }; } my $refer; foreach my $id (sort keys %show) { if ($_seen->{$id}++) { $refer .= "" . $show{$id}{head} . ""; next; } $m->print($show{$id}{text}); } $m->print($refer);
% } <%ARGS> $Ticket $_seen => {} rt-4.0.19/share/html/Approvals/index.html0000664000175000017500000000714212262650742017270 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("My approvals") &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &>
<& Elements/PendingMyApproval, %ARGS &> <& /Elements/Submit, Label => loc('Go!') &>
<%init> my (@actions); foreach my $arg ( keys %ARGS ) { next unless ( $arg =~ /Approval-(\d+)-Action/ ); my ( $notesval, $notesmsg ); my $ticket = LoadTicket($1); my $skip_update = 0; $m->callback( CallbackName => 'BeforeApproval', skip_update => \$skip_update, Ticket => $ticket, actions => \@actions); next if $skip_update; if ( $ARGS{ "Approval-" . $ticket->Id . "-Notes" } ) { my $notes = MIME::Entity->build( Data => [ $ARGS{ "Approval-" . $ticket->Id . "-Notes" } ] ); RT::I18N::SetMIMEEntityToUTF8($notes); # convert text parts into utf-8 my ( $notesval, $notesmsg ) = $ticket->Correspond( MIMEObj => $notes ); if ($notesval) { push ( @actions, loc("Approval #[_1]: Notes recorded",$ticket->Id )); } else { push ( @actions, loc("Approval #[_1]: Notes not recorded due to a system error",$ticket->Id )); } } my ($val, $msg); if ( $ARGS{$arg} eq 'deny' && $ticket->Status !~ /^(rejected|deleted)/ ) { ( $val, $msg ) = $ticket->SetStatus('rejected'); } elsif ( $ARGS{$arg} eq 'approve' && $ticket->Status ne 'resolved') { ( $val, $msg ) = $ticket->SetStatus('resolved'); } push ( @actions, loc("Approval #[_1]: [_2]",$ticket->id, $msg )) if ($msg); } rt-4.0.19/share/html/Approvals/Display.html0000664000175000017500000000517112262650742017566 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &>
<&| /Widgets/TitleBox, title => $title &> <& /Ticket/Elements/ShowHistory , Ticket => $Ticket, Collapsed => 0, ShowTitle => 0, ShowHeaders => 0, ShowDisplayModes => 0, ShowTitleBarCommands => 0 &>
<& Elements/Approve, ticket => $Ticket, ShowApproving => 0 &> <& /Elements/Submit&>
<& Elements/ShowDependency, Ticket => $Ticket &> <%init> my $Ticket = LoadTicket($id); my $title = loc("Approval #[_1]: [_2]", $Ticket->Id, $Ticket->Subject); <%ARGS> $id => undef rt-4.0.19/share/html/Approvals/autohandler0000664000175000017500000000431012262650742017516 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> if ( $session{'CurrentUser'}->UserObj->HasRight( Right => 'ShowApprovalsTab', Object => $RT::System, ) ) { $m->call_next(%ARGS); } else { Abort("No permission to view approval"); } rt-4.0.19/share/html/Elements/0000775000175000017500000000000012262650742015074 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/EditCustomFieldWikitext0000664000175000017500000000522612262650742021601 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ($Values and my $value = $Values->Next ) {
% } % if (!$MaxValues or !$Values or $Values->Count < $MaxValues) { % } <%INIT> # XXX - MultiValue textarea is for now outlawed. $MaxValues = 1; <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $MaxValues => undef $Cols $Rows rt-4.0.19/share/html/Elements/HeaderJavascript0000664000175000017500000000574612262650742020252 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $focus => undef $onload => undef % for my $jsfile ( @js_files ) { % } % if ( $RichText and RT->Config->Get('MessageBoxRichText', $session{'CurrentUser'}) ) { % } <%ARGS> $RichText => 1 <%INIT> my @js_files; if ( RT->Config->Get('DevelMode') ) { @js_files = RT->Config->Get('JSFiles' ); } else { my $key = RT::Interface::Web::SquishedJS()->Key; @js_files = "squished-$key.js"; } rt-4.0.19/share/html/Elements/TitleBox0000664000175000017500000000410712262650742016553 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> # For compatibility with 3.4 $m->comp('/Widgets/TitleBox', %ARGS ); rt-4.0.19/share/html/Elements/GotoTicket0000664000175000017500000000426512262650742017102 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
 
rt-4.0.19/share/html/Elements/TitleBoxStart0000664000175000017500000000411412262650742017567 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> # For compatibility with 3.4 $m->comp('/Widgets/TitleBoxStart', %ARGS ); rt-4.0.19/share/html/Elements/Error0000664000175000017500000000571312262650742016116 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, error => $error ); % unless ($SuppressHeader) { <& /Elements/Header, Code => $Code, Why => $Why, Title => $Title &> <& /Elements/Tabs &> % } <& /Elements/ListActions, actions => $Actions &>
<%$Why%>
<%$Details%>
<%cleanup> $m->comp('/Elements/Footer'); $m->abort(); <%args> $Actions => [] $Code => undef $Details => '' $Title => loc("RT Error") $Why => loc("the calling component did not specify why"), $SuppressHeader => 0, <%INIT> my $error = "WebRT: $Why"; $error .= " ($Details)" if defined $Details && length $Details; # TODO: Log::Dispatch isn't UTF-8 safe. Autrijus needs to talk to dave rolsky about getting this fixed use Encode (); Encode::_utf8_off($error); $RT::Logger->error($error); if ( $session{'REST'} ) { $r->content_type('text/plain'); $m->out( "Error: " . $Why . "\n" ); $m->out( $Details . "\n" ) if defined $Details && length $Details; $m->abort(); } rt-4.0.19/share/html/Elements/RT__SavedSearch/0000775000175000017500000000000012262650742020030 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__SavedSearch/ColumnMap0000664000175000017500000000613612262650742021654 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->Id }, }, Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name()||loc("Unnamed search") }, }, Query => { title => 'Query', # loc attribute => 'Query', value => sub { return $_[0]->GetParameter('Query') }, }, ResultsURL => { title => '', attribute => 'ResultsURL', value => sub { my $search = shift; return $m->comp('/Elements/QueryString', map { $_ => $search->GetParameter($_) } qw(Query Format Rows Order OrderBy)); }, } }; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/ShowUserEmailFrequency0000664000175000017500000000423112262650742021430 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} (<% loc($frequency) %>) <%INIT> my $frequency = $User->EmailFrequency( Ticket => $Ticket ); return unless $frequency; <%ARGS> $User $Ticket => undef rt-4.0.19/share/html/Elements/LoginRedirectWarning0000664000175000017500000000535112262650742021103 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $next => undef <%init> return unless $next; my $destination = RT::Interface::Web::FetchNextPage($next); return unless ref $destination and $destination->{'HasSideEffects'}; my $consequence = RT::Interface::Web::PotentialPageAction($destination->{'url'}) || loc("perform actions"); $consequence = $m->interp->apply_escapes($consequence => "h");

<&|/l&>After logging in you'll be sent to your original destination: <% $destination->{'url'} %> <&|/l_unsafe, "$consequence" &>which may [_1] on your behalf.

<&|/l&>If this is not what you expect, leave this page now without logging in.

rt-4.0.19/share/html/Elements/Tabs0000664000175000017500000012337112262650742015717 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/PageLayout, show_menu => $show_menu &> <%INIT> my $request_path = $HTML::Mason::Commands::r->path_info; $request_path =~ s!/{2,}!/!g; my $query_string = sub { my %args = @_; my $u = URI->new(); $u->query_form(map { $_ => $args{$_} } sort keys %args); return $u->query; }; my $build_admin_menu = sub { my $top = shift; my $admin = $top->child( config => title => loc('Configuration'), path => '/Admin/', sort_order => 99 ); if ( $session{'CurrentUser'}->HasRight( Object => RT->System, Right => 'AdminUsers' ) ) { my $users = $admin->child( users => title => loc('Users'), description => loc('Manage users and passwords'), path => '/Admin/Users/', ); $users->child( select => title => loc('Select'), path => "/Admin/Users/" ); $users->child( create => title => loc('Create'), path => "/Admin/Users/Modify.html?Create=1" ); } my $groups = $admin->child( groups => title => loc('Groups'), description => loc('Manage groups and group membership'), path => '/Admin/Groups/', ); $groups->child( select => title => loc('Select'), path => "/Admin/Groups/" ); $groups->child( create => title => loc('Create'), path => "/Admin/Groups/Modify.html?Create=1" ); my $queues = $admin->child( queues => title => loc('Queues'), description => loc('Manage queues and queue-specific properties'), path => '/Admin/Queues/', ); $queues->child( select => title => loc('Select'), path => "/Admin/Queues/" ); $queues->child( create => title => loc('Create'), path => "/Admin/Queues/Modify.html?Create=1" ); if ( $session{'CurrentUser'}->HasRight( Object => RT->System, Right => 'AdminCustomField' ) ) { my $cfs = $admin->child( 'custom-fields' => title => loc('Custom Fields'), description => loc('Manage custom fields and custom field values'), path => '/Admin/CustomFields/', ); $cfs->child( select => title => loc('Select'), path => "/Admin/CustomFields/" ); $cfs->child( create => title => loc('Create'), path => "/Admin/CustomFields/Modify.html?Create=1" ); } my $admin_global = $admin->child( global => title => loc('Global'), description => loc('Manage properties and configuration which apply to all queues'), path => '/Admin/Global/', ); my $scrips = $admin_global->child( scrips => title => loc('Scrips'), description => loc('Modify scrips which apply to all queues'), path => '/Admin/Global/Scrips.html', ); $scrips->child( select => title => loc('Select'), path => "/Admin/Global/Scrips.html" ); $scrips->child( create => title => loc('Create'), path => "/Admin/Global/Scrip.html?Create=1" ); my $templates = $admin_global->child( templates => title => loc('Templates'), description => loc('Edit system templates'), path => '/Admin/Global/Templates.html', ); $templates->child( select => title => loc('Select'), path => "/Admin/Global/Templates.html" ); $templates->child( create => title => loc('Create'), path => "/Admin/Global/Template.html?Create=1" ); my $cfadmin = $admin_global->child( 'custom-fields' => title => loc('Custom Fields'), description => loc('Modify global custom fields'), path => '/Admin/Global/CustomFields/index.html', ); $cfadmin->child( users => title => loc('Users'), description => loc('Select custom fields for all users'), path => '/Admin/Global/CustomFields/Users.html', ); $cfadmin->child( groups => title => loc('Groups'), description => loc('Select custom fields for all user groups'), path => '/Admin/Global/CustomFields/Groups.html', ); $cfadmin->child( queues => title => loc('Queues'), description => loc('Select custom fields for all queues'), path => '/Admin/Global/CustomFields/Queues.html', ); $cfadmin->child( tickets => title => loc('Tickets'), description => loc('Select custom fields for tickets in all queues'), path => '/Admin/Global/CustomFields/Queue-Tickets.html', ); $cfadmin->child( transactions => title => loc('Ticket Transactions'), description => loc('Select custom fields for transactions on tickets in all queues'), path => '/Admin/Global/CustomFields/Queue-Transactions.html', ); $cfadmin->child( 'custom-fields' => title => loc('Articles'), description => loc('Select Custom Fields for Articles in all Classes'), path => '/Admin/Global/CustomFields/Class-Article.html', ); my $article_admin = $admin->child( articles => title => loc('Articles'), path => "/Admin/Articles/index.html" ); my $class_admin = $article_admin->child(classes => title => loc('Classes'), path => '/Admin/Articles/Classes/' ); $class_admin->child( select => title => loc('Select'), description => loc('Modify and Create Classes'), path => '/Admin/Articles/Classes/', ); $class_admin->child( create => title => loc('Create'), description => loc('Modify and Create Custom Fields for Articles'), path => '/Admin/Articles/Classes/Modify.html?Create=1', ); my $cfs = $article_admin->child( 'custom-fields' => title => loc('Custom Fields'), path => '/Admin/CustomFields/index.html?'.$m->comp('/Elements/QueryString', type => 'RT::Class-RT::Article'), ); $cfs->child( select => title => loc('Select'), path => '/Admin/CustomFields/index.html?'.$m->comp('/Elements/QueryString', type => 'RT::Class-RT::Article'), ); $cfs->child( create => title => loc('Create'), path => '/Admin/CustomFields/Modify.html?'.$m->comp("/Elements/QueryString", Create=>1, LookupType=> "RT::Class-RT::Article" ), ); $admin_global->child( 'group-rights' => title => loc('Group Rights'), description => loc('Modify global group rights'), path => '/Admin/Global/GroupRights.html', ); $admin_global->child( 'user-rights' => title => loc('User Rights'), description => loc('Modify global user rights'), path => '/Admin/Global/UserRights.html', ); $admin_global->child( 'my-rt' => title => loc('RT at a glance'), description => loc('Modify the default "RT at a glance" view'), path => '/Admin/Global/MyRT.html', ); $admin_global->child( 'topics' => title => loc('Topics'), description => loc('Modify global article topics'), path => '/Admin/Global/Topics.html', ); my $admin_tools = $admin->child( tools => title => loc('Tools'), description => loc('Use other RT administrative tools'), path => '/Admin/Tools/', ); $admin_tools->child( configuration => title => loc('System Configuration'), description => loc('Detailed information about your RT setup'), path => '/Admin/Tools/Configuration.html', ); $admin_tools->child( theme => title => loc('Theme'), description => loc('Customize the look of your RT'), path => '/Admin/Tools/Theme.html', ); if (RT->Config->Get('StatementLog') && $session{'CurrentUser'}->HasRight( Right => 'SuperUser', Object => RT->System )) { $admin_tools->child( 'sql-queries' => title => loc('SQL Queries'), description => loc('Browse the SQL queries made in this process'), path => '/Admin/Tools/Queries.html', ); } $admin_tools->child( shredder => title => loc('Shredder'), description => loc('Permanently wipeout data from RT'), path => '/Admin/Tools/Shredder', ); if ( $request_path =~ m{^/Admin/(Queues|Users|Groups|CustomFields)} ) { my $type = $1; my $tabs = PageMenu(); my %labels = ( Queues => loc("Queues"), Users => loc("Users"), Groups => loc("Groups"), CustomFields => loc("Custom Fields"), ); my $section; if ( $request_path =~ m|^/Admin/$type/?(?:index.html)?$| || ( $request_path =~ m|^/Admin/$type/(?:Modify.html)$| && $DECODED_ARGS->{'Create'} ) ) { $section = $tabs; } else { $section = $tabs->child( select => title => $labels{$type}, path => "/Admin/$type/" ); } $section->child( select => title => loc('Select'), path => "/Admin/$type/" ); $section->child( create => title => loc('Create'), path => "/Admin/$type/Modify.html?Create=1" ); } if ( $request_path =~ m{^/Admin/Queues} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ || $DECODED_ARGS->{'Queue'} && $DECODED_ARGS->{'Queue'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'Queue'} || $DECODED_ARGS->{'id'}; my $queue_obj = RT::Queue->new( $session{'CurrentUser'} ); $queue_obj->Load($id); if ( $queue_obj and $queue_obj->id ) { my $queue = PageMenu(); $queue->child( basics => title => loc('Basics'), path => "/Admin/Queues/Modify.html?id=" . $id ); $queue->child( people => title => loc('Watchers'), path => "/Admin/Queues/People.html?id=" . $id ); my $templates = $queue->child(templates => title => loc('Templates'), path => "/Admin/Queues/Templates.html?id=" . $id); $templates->child( select => title => loc('Select'), path => "/Admin/Queues/Templates.html?id=".$id); $templates->child( create => title => loc('Create'), path => "/Admin/Queues/Template.html?Create=1;Queue=".$id); my $scrips = $queue->child( scrips => title => loc('Scrips'), path => "/Admin/Queues/Scrips.html?id=" . $id); $scrips->child( select => title => loc('Select'), path => "/Admin/Queues/Scrips.html?id=" . $id ); $scrips->child( create => title => loc('Create'), path => "/Admin/Queues/Scrip.html?Create=1;Queue=" . $id); my $ticket_cfs = $queue->child( 'ticket-custom-fields' => title => loc('Ticket Custom Fields'), path => '/Admin/Queues/CustomFields.html?SubType=RT::Ticket&id=' . $id ); my $txn_cfs = $queue->child( 'transaction-custom-fields' => title => loc('Transaction Custom Fields'), path => '/Admin/Queues/CustomFields.html?SubType=RT::Ticket-RT::Transaction&id='.$id ); $queue->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/Queues/GroupRights.html?id=".$id ); $queue->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/Queues/UserRights.html?id=" . $id ); $queue->child( 'history' => title => loc('History'), path => "/Admin/Queues/History.html?id=" . $id ); $m->callback( CallbackName => 'PrivilegedQueue', queue_id => $id, page_menu => $queue); } } } if ( $request_path =~ m{^/Admin/Users} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'id'}; my $obj = RT::User->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $tabs = PageMenu(); $tabs->child( basics => title => loc('Basics'), path => "/Admin/Users/Modify.html?id=" . $id ); $tabs->child( memberships => title => loc('Memberships'), path => "/Admin/Users/Memberships.html?id=" . $id ); $tabs->child( history => title => loc('History'), path => "/Admin/Users/History.html?id=" . $id ); $tabs->child( 'my-rt' => title => loc('RT at a glance'), path => "/Admin/Users/MyRT.html?id=" . $id ); if ( RT->Config->Get('GnuPG')->{'Enable'} ) { $tabs->child( pgp => title => loc('GnuPG'), path => "/Admin/Users/GnuPG.html?id=" . $id ); } } } } if ( $request_path =~ m{^/Admin/Groups} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'id'}; my $obj = RT::Group->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $tabs = PageMenu(); $tabs->child( basics => title => loc('Basics'), path => "/Admin/Groups/Modify.html?id=" . $obj->id ); $tabs->child( members => title => loc('Members'), path => "/Admin/Groups/Members.html?id=" . $obj->id ); $tabs->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/Groups/GroupRights.html?id=" . $obj->id ); $tabs->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/Groups/UserRights.html?id=" . $obj->id ); $tabs->child( history => title => loc('History'), path => "/Admin/Groups/History.html?id=" . $obj->id ); } } } if ( $request_path =~ m{^/Admin/CustomFields/} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'id'}; my $obj = RT::CustomField->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $tabs = PageMenu(); $tabs->child( basics => title => loc('Basics'), path => "/Admin/CustomFields/Modify.html?id=".$id ); $tabs->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/CustomFields/GroupRights.html?id=" . $id ); $tabs->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/CustomFields/UserRights.html?id=" . $id ); $tabs->child( 'applies-to' => title => loc('Applies to'), path => "/Admin/CustomFields/Objects.html?id=" . $id ); } } } if ( $request_path =~ m{^/Admin/Global/(Scrip|Template)s?\.html} ) { my $type = $1; my $tabs = PageMenu(); # With only two elements, swapping between dropdown and menu is kinda dumb # In the glorious future this should be cleaner. $tabs->child( select => title => loc('Select'), path => "/Admin/Global/${type}s.html" ); $tabs->child( create => title => loc('Create'), path => "/Admin/Global/${type}.html?Create=1" ); } if ( $request_path =~ m{^/Admin/Articles/Classes/} ) { my $tabs = PageMenu(); if ( my $id = $DECODED_ARGS->{'id'} ) { my $obj = RT::Class->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $section = $tabs->child( select => title => loc("Classes"), path => "/Admin/Articles/Classes/" ); $section->child( select => title => loc('Select'), path => "/Admin/Articles/Classes/" ); $section->child( create => title => loc('Create'), path => "/Admin/Articles/Classes/Modify.html?Create=1" ); $tabs->child( basics => title => loc('Basics'), path => "/Admin/Articles/Classes/Modify.html?id=".$id ); $tabs->child( topics => title => loc('Topics'), path => "/Admin/Articles/Classes/Topics.html?id=".$id ); $tabs->child( 'custom-fields' => title => loc('Custom Fields'), path => "/Admin/Articles/Classes/CustomFields.html?id=".$id ); $tabs->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/Articles/Classes/GroupRights.html?id=".$id ); $tabs->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/Articles/Classes/UserRights.html?id=".$id ); $tabs->child( 'applies-to' => title => loc('Applies to'), path => "/Admin/Articles/Classes/Objects.html?id=$id" ); } } else { $tabs->child( select => title => loc('Select'), path => "/Admin/Articles/Classes/" ); $tabs->child( create => title => loc('Create'), path => "/Admin/Articles/Classes/Modify.html?Create=1" ); } } }; my $build_main_nav = sub { PageWidgets()->child( simple_search => raw_html => $m->scomp('SimpleSearch') ); PageWidgets()->child( create_ticket => raw_html => $m->scomp('CreateTicket') ); my $home = Menu->child( home => title => loc('Homepage'), path => '/' ); # We explicitly exclude superusers; otherwise the dashboards for # groups you're not in (but can see the dashboards of by dint of # being a superuser) would push the useful ones from the groups # you're actually in off of the stack. my @dashboards = $m->comp("/Dashboards/Elements/ListOfDashboards", IncludeSuperuserGroups => 0); my $limit = 7; my $more = 0; if ( @dashboards > $limit ) { $more = 1; splice @dashboards, $limit; } my $dashes = Menu()->child('home'); if (@dashboards) { for my $dash (@dashboards) { $home->child( 'dashboard-' . $dash->id, title => $dash->Name, path => '/Dashboards/' . $dash->id . '/' . $dash->Name ); } $dashes->child( more => title => loc('All Dashboards'), path => 'Dashboards/index.html' ); } my $dashboard = RT::Dashboard->new( $session{CurrentUser} ); if ( $dashboard->CurrentUserCanCreateAny ) { $dashes->child('dashboard_create' => title => loc('New Dashboard'), path => "/Dashboards/Modify.html?Create=1" ); } my $tickets = Menu->child( search => title => loc('Tickets'), path => '/Search/Build.html' ); $tickets->child( simple => title => loc('Simple Search'), path => "/Search/Simple.html" ); $tickets->child( new => title => loc('New Search'), path => "/Search/Build.html?NewQuery=1" ); my $tools = Menu->child( tools => title => loc('Tools'), path => '/Tools/index.html' ); my $articles = $tools->child( articles => title => loc('Articles'), path => "/Articles/index.html"); $articles->child( articles => title => loc('Overview'), path => "/Articles/index.html" ); $articles->child( search => title => loc('Search'), path => "/Articles/Article/Search.html" ); $articles->child( topics => title => loc('Topics'), path => "/Articles/Topics.html" ); $tools->child( my_day => title => loc('My Day'), description => loc('Easy updating of your open tickets'), path => '/Tools/MyDay.html', ); if ( RT->Config->Get('EnableReminders') ) { $tools->child( my_reminders => title => loc('My Reminders'), description => loc('Easy viewing of your reminders'), path => '/Tools/MyReminders.html', ); } $tools->child( offline => title => loc('Offline'), description => loc('Create tickets offline'), path => '/Tools/Offline.html', ); if ( $session{'CurrentUser'}->HasRight( Right => 'ShowApprovalsTab', Object => RT->System ) ) { $tools->child( approval => title => loc('Approval'), description => loc('My Approvals'), path => '/Approvals/', ); } if ( $session{'CurrentUser'}->HasRight( Right => 'ShowConfigTab', Object => RT->System ) ) { $build_admin_menu->($tools); } my $username = '' . $m->interp->apply_escapes($session{'CurrentUser'}->Name, 'h') . ''; my $about_me = Menu->child( 'preferences' => title => loc('Logged in as [_1]', $username), escape_title => 0, sort_order => 99, ); if ( $session{'CurrentUser'}->UserObj && $session{'CurrentUser'}->HasRight( Right => 'ModifySelf', Object => RT->System )) { my $settings = $about_me->child( settings => title => loc('Settings'), path => '/Prefs/Other.html' ); $settings->child( options => title => loc('Options'), path => '/Prefs/Other.html' ); $settings->child( about_me => title => loc('About me'), path => '/User/Prefs.html' ); $settings->child( search_options => title => loc('Search options'), path => '/Prefs/SearchOptions.html' ); $settings->child( myrt => title => loc('RT at a glance'), path => '/Prefs/MyRT.html' ); $settings->child( quicksearch => title => loc('Quick search'), path => '/Prefs/Quicksearch.html' ); my $search_menu = $settings->child( 'saved-searches' => title => loc('Saved Searches') ); my $searches = [ $m->comp( "/Search/Elements/SearchesForObject", Object => RT::System->new( $session{'CurrentUser'} )) ]; my $i = 0; for my $search (@$searches) { $search_menu->child( "search-" . $i++ => title => $search->[1], path => "/Prefs/Search.html?" . $query_string->( name => ref( $search->[2] ) . '-' . $search->[2]->Id ), ); } } if ( $session{'CurrentUser'}->Name && ( !RT->Config->Get('WebExternalAuth') || RT->Config->Get('WebFallbackToInternalAuth') )) { $about_me->child( logout => title => loc('Logout'), path => '/NoAuth/Logout.html' ); } if ( $request_path =~ m{^/Dashboards/(\d+)?}) { if ( my $id = ( $1 || $DECODED_ARGS->{'id'} ) ) { my $obj = RT::Dashboard->new( $session{'CurrentUser'} ); $obj->LoadById($id); if ( $obj and $obj->id ) { my $tabs = PageMenu; $tabs->child( basics => title => loc('Basics'), path => "/Dashboards/Modify.html?id=" . $obj->id); $tabs->child( content => title => loc('Content'), path => "/Dashboards/Queries.html?id=" . $obj->id); $tabs->child( subscription => title => loc('Subscription'), path => "/Dashboards/Subscription.html?id=" . $obj->id) if $obj->CurrentUserCanSubscribe; $tabs->child( show => title => loc('Show'), path => "/Dashboards/" . $obj->id . "/" . $obj->Name) } } } if ( $request_path =~ m{^/Ticket/} ) { if ( ( $DECODED_ARGS->{'id'} || '' ) =~ /^(\d+)$/ ) { my $id = $1; my $obj = RT::Ticket->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $actions = PageMenu()->child( actions => title => loc('Actions'), sort_order => 95 ); my $tabs = PageMenu(); $tabs->child( bookmark => raw_html => $m->scomp( '/Ticket/Elements/Bookmark', id => $id ), sort_order => 99 ); $tabs->child( display => title => loc('Display'), path => "/Ticket/Display.html?id=" . $id ); $tabs->child( history => title => loc('History'), path => "/Ticket/History.html?id=" . $id ); my %can = %{ $obj->CurrentUser->PrincipalObj->HasRights( Object => $obj ) }; $can{'_ModifyOwner'} = $can{'OwnTicket'} || $can{'TakeTicket'} || $can{'StealTicket'}; my $can = sub { unless ($_[0] eq 'ExecuteCode') { return $can{$_[0]} || $can{'SuperUser'}; } else { return !RT->Config->Get('DisallowExecuteCode') && ( $can{'ExecuteCode'} || $can{'SuperUser'} ); } }; # comment out until we can do it for an individual custom field #if ( $can->('ModifyTicket') || $can->('ModifyCustomField') ) { $tabs->child( basics => title => loc('Basics'), path => "/Ticket/Modify.html?id=" . $id ); #} if ( $can->('ModifyTicket') || $can->('_ModifyOwner') || $can->('Watch') || $can->('WatchAsAdminCc') ) { $tabs->child( people => title => loc('People'), path => "/Ticket/ModifyPeople.html?id=" . $id ); } if ( $can->('ModifyTicket') ) { $tabs->child( dates => title => loc('Dates'), path => "/Ticket/ModifyDates.html?id=" . $id ); $tabs->child( links => title => loc('Links'), path => "/Ticket/ModifyLinks.html?id=" . $id ); } #if ( $can->('ModifyTicket') || $can->('ModifyCustomField') || $can->('_ModifyOwner') ) { $tabs->child( jumbo => title => loc('Jumbo'), path => "/Ticket/ModifyAll.html?id=" . $id ); #} if ( RT->Config->Get('EnableReminders') ) { $tabs->child( reminders => title => loc('Reminders'), path => "/Ticket/Reminders.html?id=" . $id ); } if ( $can->('ModifyTicket') or $can->('ReplyToTicket') ) { $actions->child( reply => title => loc('Reply'), path => "/Ticket/Update.html?Action=Respond;id=" . $id ); } if ( $can->('ModifyTicket') or $can->('CommentOnTicket') ) { $actions->child( comment => title => loc('Comment'), path => "/Ticket/Update.html?Action=Comment;id=" . $id ); } if ( $can->('ForwardMessage') ) { $actions->child( forward => title => loc('Forward'), path => "/Ticket/Forward.html?id=" . $id ); } my $hide_resolve_with_deps = RT->Config->Get('HideResolveActionsWithDependencies') && $obj->HasUnresolvedDependencies; my $current = $obj->Status; my $lifecycle = $obj->QueueObj->Lifecycle; my $i = 1; foreach my $info ( $lifecycle->Actions($current) ) { my $next = $info->{'to'}; next unless $lifecycle->IsTransition( $current => $next ); my $check = $lifecycle->CheckRight( $current => $next ); next unless $can->($check); next if $hide_resolve_with_deps && $lifecycle->IsInactive($next) && !$lifecycle->IsInactive($current); my $action = $info->{'update'} || ''; my $url = '/Ticket/'; if ($action) { $url .= "Update.html?" . $query_string->( Action => $action, DefaultStatus => $next, id => $id, ); } else { $url .= "Display.html?" . $query_string->( Status => $next, id => $id, ); } my $key = $info->{'label'} || ucfirst($next); $actions->child( $key => title => loc( $key ), path => $url); } if ( $can->('OwnTicket') ) { if ( $obj->OwnerObj->Id == RT->Nobody->id && ( $can->('ModifyTicket') or $can->('TakeTicket') ) ) { $actions->child( take => title => loc('Take'), path => "/Ticket/Display.html?Action=Take;id=" . $id ); } elsif ( $obj->OwnerObj->id != RT->Nobody->id && $obj->OwnerObj->id != $session{CurrentUser}->id && ( $can->('ModifyTicket') or $can->('StealTicket') ) ) { $actions->child( steal => title => loc('Steal'), path => "/Ticket/Display.html?Action=Steal;id=" . $id ); } } # TODO needs a "Can extract article into a class applied to this queue" check $actions->child( 'extract-article' => title => loc('Extract Article'), path => "/Articles/Article/ExtractIntoClass.html?Ticket=".$obj->id, ); if ( defined $session{"tickets"} ) { # we have to update session data if we get new ItemMap my $updatesession = 1 unless ( $session{"tickets"}->{'item_map'} ); my $item_map = $session{"tickets"}->ItemMap; if ($updatesession) { $session{"tickets"}->PrepForSerialization(); } my $search = Menu()->child('search'); # Don't display prev links if we're on the first ticket if ( $item_map->{$id}->{prev} ) { $search->child( first => title => '<< ' . loc('First'), class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{first}); $search->child( prev => title => '< ' . loc('Prev'), class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{$id}->{prev}); } # Don't display next links if we're on the last ticket if ( $item_map->{$id}->{next} ) { $search->child( next => title => loc('Next') . ' >', class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{$id}->{next}); if ( $item_map->{last} ) { $search->child( last => title => loc('Last') . ' >>', class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{last}); } } } } } } if ( ( $request_path =~ m{^/(?:Ticket|Search)/} && $request_path !~ m{^/Search/Simple\.html} ) || ( $request_path =~ m{^/Search/Simple\.html} && $DECODED_ARGS->{'q'} ) ) { my $search = Menu()->child('search'); my $args = ''; my $has_query = ''; my $current_search = $session{"CurrentSearchHash"} || {}; my $search_id = $DECODED_ARGS->{'SavedSearchLoad'} || $DECODED_ARGS->{'SavedSearchId'} || $current_search->{'SearchId'} || ''; my $chart_id = $DECODED_ARGS->{'SavedChartSearchId'} || $current_search->{SavedChartSearchId}; $has_query = 1 if ( $DECODED_ARGS->{'Query'} or $current_search->{'Query'} ); my %query_args; my %fallback_query_args = ( SavedSearchId => ( $search_id eq 'new' ) ? undef : $search_id, SavedChartSearchId => $chart_id, ( map { my $p = $_; $p => $DECODED_ARGS->{$p} || $current_search->{$p} } qw(Query Format OrderBy Order Page) ), RowsPerPage => ( defined $DECODED_ARGS->{'RowsPerPage'} ? $DECODED_ARGS->{'RowsPerPage'} : $current_search->{'RowsPerPage'} ), ); if ($QueryString) { $args = '?' . $QueryString; } else { my %final_query_args = (); # key => callback to avoid unnecessary work for my $param (keys %fallback_query_args) { $final_query_args{$param} = defined($QueryArgs->{$param}) ? $QueryArgs->{$param} : $fallback_query_args{$param}; } for my $field (qw(Order OrderBy)) { if ( ref( $final_query_args{$field} ) eq 'ARRAY' ) { $final_query_args{$field} = join( "|", @{ $final_query_args{$field} } ); } elsif (not defined $final_query_args{$field}) { delete $final_query_args{$field}; } else { $final_query_args{$field} ||= ''; } } $args = '?' . $query_string->(%final_query_args); } my $current_search_menu; if ( $request_path =~ m{^/Ticket} ) { $current_search_menu = $search->child( current_search => title => loc('Current Search') ); $current_search_menu->path("/Search/Results.html$args") if $has_query; } else { $current_search_menu = PageMenu(); } $current_search_menu->child( edit_search => title => loc('Edit Search'), path => "/Search/Build.html" . ( ($has_query) ? $args : '' ) ); $current_search_menu->child( advanced => title => loc('Advanced'), path => "/Search/Edit.html$args" ); if ($has_query) { $current_search_menu->child( results => title => loc('Show Results'), path => "/Search/Results.html$args" ); } if ( $has_query ) { $current_search_menu->child( bulk => title => loc('Bulk Update'), path => "/Search/Bulk.html$args" ); $current_search_menu->child( chart => title => loc('Chart'), path => "/Search/Chart.html$args" ); my $more = $current_search_menu->child( more => title => loc('Feeds') ); $more->child( spreadsheet => title => loc('Spreadsheet'), path => "/Search/Results.tsv$args" ); my %rss_data = map { $_ => $QueryArgs->{$_} || $fallback_query_args{$_} || '' } qw(Query Order OrderBy); my $RSSQueryString = "?" . $query_string->( Query => $rss_data{Query}, Order => $rss_data{Order}, OrderBy => $rss_data{OrderBy} ); my $RSSPath = join '/', map $m->interp->apply_escapes( $_, 'u' ), $session{'CurrentUser'}->UserObj->Name, $session{'CurrentUser'} ->UserObj->GenerateAuthString( $rss_data{Query} . $rss_data{Order} . $rss_data{OrderBy} ); $more->child( rss => title => loc('RSS'), path => "/NoAuth/rss/$RSSPath/$RSSQueryString"); my $ical_path = join '/', map $m->interp->apply_escapes($_, 'u'), $session{'CurrentUser'}->UserObj->Name, $session{'CurrentUser'}->UserObj->GenerateAuthString( $rss_data{Query} ), $rss_data{Query}; $more->child( ical => title => loc('iCal'), path => '/NoAuth/iCal/'.$ical_path); if ($request_path =~ m{^/Search/Results.html} && #XXX TODO better abstraction $session{'CurrentUser'}->HasRight( Right => 'SuperUser', Object => RT->System )) { my $shred_args = $query_string->( Search => 1, Plugin => 'Tickets', 'Tickets:query' => $rss_data{'Query'}, 'Tickets:limit' => $QueryArgs->{'Rows'}, ); $more->child( shredder => title => loc('Shredder'), path => '/Admin/Tools/Shredder/?' . $shred_args); } } } if ( $request_path =~ m{^/Article/} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'id'}; my $tabs = PageMenu(); $tabs->child( display => title => loc('Display'), path => "/Articles/Article/Display.html?id=".$id ); $tabs->child( history => title => loc('History'), path => "/Articles/Article/History.html?id=".$id ); $tabs->child( modify => title => loc('Modify'), path => "/Articles/Article/Edit.html?id=".$id ); $tabs->child( delete => title => loc('Delete'), path => "/Articles/Article/Delete.html?id=".$id ); } } if ( $request_path =~ m{^/Articles/} ) { PageWidgets()->child( article_search => raw_html => $m->scomp('/Articles/Elements/GotoArticle') ); PageWidgets()->delete('create_ticket'); PageWidgets()->delete('simple_search'); my $tabs = PageMenu(); $tabs->child( search => title => loc("Search"), path => "/Articles/Article/Search.html" ); $tabs->child( create => title => loc("New Article" ), path => "/Articles/Article/PreCreate.html" ); if ( $request_path =~ m{^/Articles/Article/} and ( $DECODED_ARGS->{'id'} || '' ) =~ /^(\d+)$/ ) { my $id = $1; my $obj = RT::Article->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { $tabs->child( display => title => loc("Display"), path => "/Articles/Article/Display.html?id=" . $id ); $tabs->child( history => title => loc('History'), path => '/Articles/Article/History.html?id=' . $id ); if ( $obj->CurrentUserHasRight('ModifyArticle') ) { $tabs->child(modify => title => loc('Modify'), path => '/Articles/Article/Edit.html?id=' . $id ); } if ( $obj->CurrentUserHasRight('DeleteArticle') ) { $tabs->child(delete => title => loc('Delete'), path => '/Articles/Article/Delete.html?id=' . $id ); } } } } if ( $request_path =~ /^\/(?:index.html|$)/ ) { PageMenu()->child( edit => title => loc('Edit'), path => '/Prefs/MyRT.html' ); } $m->callback( CallbackName => 'Privileged' ); }; my $build_selfservice_nav = sub { my $queues = RT::Queues->new( $session{'CurrentUser'} ); $queues->UnLimit; my $queue_count = 0; my $queue_id; while ( my $queue = $queues->Next ) { next unless $queue->CurrentUserHasRight('CreateTicket'); $queue_id = $queue->id; $queue_count++; last if ( $queue_count > 1 ); } if ( $queue_count > 1 ) { Menu->child( new => title => loc('New ticket'), path => '/SelfService/CreateTicketInQueue.html' ); } elsif ( $queue_id ) { Menu->child( new => title => loc('New ticket'), path => '/SelfService/Create.html?Queue=' . $queue_id ); } my $tickets = Menu->child( tickets => title => loc('Tickets'), path => '/SelfService/' ); $tickets->child( open => title => loc('Open tickets'), path => '/SelfService/' ); $tickets->child( closed => title => loc('Closed tickets'), path => '/SelfService/Closed.html' ); my $username = '' . $m->interp->apply_escapes($session{'CurrentUser'}->Name, 'h') . ''; my $about_me = Menu->child( preferences => title => loc('Logged in as [_1]', $username), escape_title => 0, sort_order => 99, ); if ( $session{'CurrentUser'}->HasRight( Right => 'ModifySelf', Object => RT->System ) ) { $about_me->child( prefs => title => loc('Preferences'), path => '/SelfService/Prefs.html' ); } if ( $session{'CurrentUser'}->Name && ( !RT->Config->Get('WebExternalAuth') || RT->Config->Get('WebFallbackToInternalAuth') )) { $about_me->child( logout => title => loc('Logout'), path => '/NoAuth/Logout.html' ); } if ($session{'CurrentUser'}->HasRight( Right => 'ShowArticle', Object => RT->System )) { PageWidgets->child( 'goto-article' => raw_html => $m->scomp('/SelfService/Elements/SearchArticle') ); } PageWidgets->child( goto => raw_html => $m->scomp('/SelfService/Elements/GotoTicket') ); $m->callback( CallbackName => 'SelfService' ); }; if ( $request_path !~ m{^/SelfService/} ) { $build_main_nav->(); } else { $build_selfservice_nav->(); } <%ARGS> $show_menu => 1 $QueryString => '' $QueryArgs => {} rt-4.0.19/share/html/Elements/MakeClicky0000664000175000017500000001474112262650742017042 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ONCE> use Regexp::Common qw(URI); my $escaper = sub { my $content = shift; RT::Interface::Web::EscapeUTF8( \$content ); return $content; }; my %actions = ( default => sub { my %args = @_; return $escaper->($args{value}); }, url => sub { my %args = @_; $args{value} = $escaper->($args{value}); my $result = qq{[}. loc('Open URL') .qq{]}; return $args{value} . qq{ $result}; }, url_overwrite => sub { my %args = @_; $args{value} = $escaper->($args{value}); my $result = qq{$args{value}}; return qq{$result}; }, ); my @types = ( { name => "httpurl", regex => qr/$RE{URI}{HTTP}{-keep}{-scheme => 'https?'}(?:#[^\s<]+)?(? "url", }, { name => "httpurl_overwrite", regex => qr/$RE{URI}{HTTP}{-keep}{-scheme => 'https?'}(?:#[^\s<]+)?(? "url_overwrite", }, ); my $handle = sub { my %args = @_; for my $rec( @types ) { return $rec->{action}->( %args, all_matches => [ $args{value}, $1, $2, $3, $4, $5, $6, $7, $8, $9 ], ) if $args{value} =~ $rec->{regex}; } }; # Hook to add more Clicky types # XXX Have to have Page argument, as Mason gets caller wrong in Callback? # This happens as we are in <%ONCE> block $m->callback( CallbackPage => "/Elements/MakeClicky", types => \@types, actions => \%actions, handle => \$handle, ); # Filter my %active; $active{$_}++ for RT->Config->Get('Active_MakeClicky'); @types = grep $active{$_->{name}}, @types; # Build up the whole match my $regexp = join "|", map $_->{regex}, @types; # Make sure we have a default $actions{default} ||= sub {}; # Anchor the regexes and look up the actions foreach my $type ( @types ) { $type->{regex} = qr/^$type->{regex}$/; $type->{action} = $actions{$type->{action}} || $actions{default}; } <%ARGS> $content => undef $html => undef <%INIT> return unless defined $$content; unless ( $regexp ) { RT::Interface::Web::EscapeUTF8( $content ) unless $html; return; } my $pos = 0; while ( $$content =~ /($regexp)/gsio ) { my $match = $1; next if $` =~ /href=(?:"|")$/; my $skipped_len = pos($$content) - $pos - length($match); if ( $skipped_len > 0 ) { my $plain; if ( $html ) { $plain = substr( $$content, $pos, $skipped_len ); } else { $plain = $escaper->( substr( $$content, $pos, $skipped_len ) ) } substr( $$content, $pos, $skipped_len ) = $plain; $pos += length($plain); } my $plain = $handle->( %ARGS, value => $match, all_matches => [ $1, $2, $3, $4, $5, $6, $7, $8, $9 ], ); substr( $$content, $pos, length($match) ) = $plain; pos($$content) = ( $pos += length($plain) ); } substr( $$content, $pos ) = $escaper->( substr( $$content, $pos ) ) unless ($pos == length $$content) || $html; pos($$content) = 0; <%doc> MakeClicky detects various formats of data in headers and email messages, and extends them with supporting links. By default, RT provides two formats: * 'httpurl': detects http:// and https:// URLs and adds '[Open URL]' link after the URL. * 'httpurl_overwrite': also detects URLs as 'httpurl' format, but replace URL with link. To extend this with your own types of data, use the callback. It will be provided with: * 'types': An array reference of hash references. Modify this array reference to add your own types; the first matching type will be used. Each hashref should contain: - 'name': The name of the data format; this is used in the configuration file to enable the format. - 'regex': A regular expression to match against - 'action': The name of the action to run (see "actions", below) * 'actions': A hash reference of 'actions'. Modify this hash reference to change or add action types. Values are subroutine references which will get called when needed. They should return the modified string. Note that subroutine must escape HTML. * 'handler': A reference to a subroutine reference; modify it if you have to. This can be used to add pre- or post-processing around all actions. Read more about writing new actions in docs/extending/clickable_links.pod rt-4.0.19/share/html/Elements/SelectLang0000664000175000017500000000564312262650742017050 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $ShowNullOption => 1 $ShowAllQueues => 1 $Name => undef $Verbose => undef $Default => 0 $Lite => 0 <%ONCE> use I18N::LangTags::List; my (@lang, %lang_to_desc); foreach my $lang (map { s/:://; s/_/-/g; $_ } grep { /^\w+::$/ } keys %RT::I18N::) { next if $lang =~ /i-default|en-us/; my $desc = I18N::LangTags::List::name($lang); next unless ($desc); $desc =~ s/(.*) (.*)/$2 ($1)/ unless ( $desc =~ /.* \(.*\)/ ); $lang_to_desc{$lang} = $desc; } @lang = sort { $lang_to_desc{$a} cmp $lang_to_desc{$b} } keys %lang_to_desc; rt-4.0.19/share/html/Elements/ShowRelationLabel0000664000175000017500000000470512262650742020403 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%$Label%> <%INIT> my $typemap = RT::Ticket->LINKTYPEMAP->{$Relation}; my $search_mode = $typemap->{Mode}; my $search_type = $typemap->{Type}; my $search_relation = RT::Ticket->LINKDIRMAP->{$search_type}{$search_mode}; my $Query = $search_relation . ' = ' . $id; my $SearchURL = RT->Config->Get('WebPath') . '/Search/Results.html?' . $m->comp('/Elements/QueryString', Query => $Query); <%ARGS> $id $Label $Relation rt-4.0.19/share/html/Elements/SelectResultsPerPage0000664000175000017500000000462012262650742021066 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# TODO: Better default handling <%INIT> my @values = qw(0 10 25 50 100); my @labels = (loc('Unlimited'), qw(10 25 50 100)); $Default = 50 unless defined $Default; <%ARGS> $Name => undef $Default => 50 rt-4.0.19/share/html/Elements/EditCustomFieldImage0000664000175000017500000000506412262650742021013 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ($Values and my $value = $Values->Next ) { <& ShowCustomFieldImage, Object => $value &>
% } % if (!$MaxValues or !$Values or $Values->Count < $MaxValues) { % } <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $MaxValues => undef rt-4.0.19/share/html/Elements/ShowCustomFieldDate0000664000175000017500000000442212262650742020676 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $content = $Object->Content; my $DateObj = RT::Date->new ( $session{'CurrentUser'} ); $DateObj->Set( Format => 'unknown', Value => $content, Timezone => 'utc' ); $content = $DateObj->AsString(Time => 0, Timezone => 'utc'); <%$content|n%> <%ARGS> $Object rt-4.0.19/share/html/Elements/EditCustomFieldCombobox0000664000175000017500000000540112262650742021534 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ($Values and my $value = $Values->Next and $Multiple) { <% $value->Content %>
% } % (!$Multiple or !$MaxValues or !$Values or $Values->Count < $MaxValues) or return; <& /Widgets/ComboBox, Name => $NamePrefix . $CustomField->Id . "-Value", Default => $Default, Rows => $Rows, Class => "CF-".$CustomField->id."-Edit", Values => [map {$_->Name} @{$CustomField->Values->ItemsArrayRef}], &> <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $Multiple => 0 $Rows => undef $MaxValues => undef rt-4.0.19/share/html/Elements/EditCustomField0000664000175000017500000001051112262650742020041 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $Type = $CustomField->Type; unless ( $Type ) { # if we can't see the type, all hell will break loose. $RT::Logger->error( "Custom field #". $CustomField->id ." has empty type" ); return; } my $Values; if ( $Object && $Object->id ) { $NamePrefix ||= join '-', 'Object', ref($Object), $Object->Id, 'CustomField', ''; $Values = $Object->CustomFieldValues( $CustomField->id ); $Values->Columns( qw( id CustomField ObjectType ObjectId Disabled Content ContentType ContentEncoding SortOrder Creator Created LastUpdatedBy LastUpdated ) ); # Don't take care of $Values if there isn't values inside undef ( $Values ) unless ( $Values->Count ); } # Always fill $Default with submited values if it's empty if ( ( !defined $Default || !length $Default ) && $DefaultsFromTopArguments ) { my %TOP = %$DECODED_ARGS; $Default = $TOP{ $NamePrefix .$CustomField->Id . '-Values' } || $TOP{ $NamePrefix .$CustomField->Id . '-Value' }; } my $MaxValues = $CustomField->MaxValues; if ($MaxValues == 1 && $Values) { # what exactly is this doing? Without the "unless" it breaks RTFM # transaction extraction into articles. $Default = ($Values->First ? $Values->First->Content : '') unless $Default; $Values->GotoFirstItem; } # The "Magic" hidden input causes RT to know that we were trying to edit the field, even if # we don't see a value later, since browsers aren't compelled to submit empty form fields $m->out("\n".''."\n"); my $EditComponent = "EditCustomField$Type"; $m->callback( %ARGS, CallbackName => 'EditComponentName', Name => \$EditComponent, CustomField => $CustomField, Object => $Object ); $EditComponent = "EditCustomField$Type" unless $m->comp_exists($EditComponent); return $m->comp( $EditComponent, %ARGS, Rows => $Rows, Cols => $Cols, Default => $Default, Object => $Object, Values => $Values, MaxValues => $MaxValues, Multiple => ($MaxValues != 1), NamePrefix => $NamePrefix, CustomField => $CustomField, ); <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Rows => 5 $Cols => 15 $Default => undef $DefaultsFromTopArguments => 1, rt-4.0.19/share/html/Elements/SelectCustomFieldValue0000664000175000017500000000576012262650742021402 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( Name => $Name, CustomField => $CustomField ); % if ($CustomField->Type =~ /Select/i) { % my $values = $CustomField->Values; % } % elsif ( $CustomField->Type eq 'Autocomplete' ) { % } else { % } <%args> $Name => undef $CustomField =>undef rt-4.0.19/share/html/Elements/ShowReminders0000664000175000017500000000744712262650742017624 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $reminders->Count ) { <%PERL> my $i =0; while ( my $reminder = $reminders->Next ) { $i++; my $dueobj = $reminder->DueObj; my $overdue = $dueobj->Unix > 0 && $dueobj->Diff < 0 ? 1 : 0; my $targets = RT::Tickets->new($session{'CurrentUser'}); $targets->{'allow_deleted_search'} = 1; $targets->FromSQL( "ReferredToBy = " . $reminder->id ); if ( my $ticket= $targets->First ) { % } else { % } % }
<&|/l&>Reminder <&|/l&>Due <&|/l&>Ticket
<% $reminder->Subject %> <% $overdue ? '' : '' |n %><% $dueobj->AgeAsString || loc('Not set') %><% $overdue ? '' : '' |n %> #<% $ticket->Id %>: <% $ticket->Subject %>
Couldn't find Ticket for reminder <% $reminder->id %>. Please contact administrator.
% } <%INIT> my $reminders = RT::Tickets->new($session{'CurrentUser'}); my $tsql = 'Type = "reminder"' . ' AND ( Owner = "Nobody" OR Owner ="' . $session{'CurrentUser'}->id . '")' . ' AND ( Status = "new" OR Status = "open" )'; $tsql .= ' AND Due < "now"' if $OnlyOverdue; $reminders->FromSQL($tsql); $reminders->OrderBy( FIELD => 'Due', ORDER => 'ASC' ); <%ARGS> $OnlyOverdue => 0 rt-4.0.19/share/html/Elements/Quicksearch0000664000175000017500000000507012262650742017263 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
<&|/Widgets/TitleBox, title => loc("Quick search"), bodyclass => "", titleright => loc("Edit"), titleright_href => RT->Config->Get('WebPath').'/Prefs/Quicksearch.html', &> <& $comp, queue_filter => sub { $_->CurrentUserHasRight('ShowTicket') && !exists $unwanted->{$_->Name} }, &>
<%INIT> my $unwanted = $session{'CurrentUser'}->UserObj->Preferences('QuickSearch', {}); my $comp = $SplitByLifecycle? '/Elements/QueueSummaryByLifecycle' : '/Elements/QueueSummaryByStatus'; <%ARGS> $SplitByLifecycle => 1 rt-4.0.19/share/html/Elements/SelectOwner0000664000175000017500000000570012262650742017253 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& "SelectOwner$Widget", %ARGS, Objects => \@objects &> <%INIT> my $Widget; if ( !$QueueObj && !$TicketObj && RT->Config->Get('AutocompleteOwnersForSearch') ) { $Widget = 'Autocomplete'; } $Widget ||= RT->Config->Get('AutocompleteOwners', $session{'CurrentUser'}) ? 'Autocomplete' : 'Dropdown'; my @objects; if ($TicketObj) { @objects = ($TicketObj); } elsif ($QueueObj) { @objects = ($QueueObj); } elsif (%Queues) { for my $name (keys %Queues) { my $q = RT::Queue->new($session{'CurrentUser'}); $q->Load($name); push @objects, $q; } } else { # Let's check rights on an empty queue object. that will do a search # for any queue. my $queue = RT::Queue->new( $session{'CurrentUser'} ); push( @objects, $queue ); } $m->callback( %ARGS, objects => \@objects, CallbackName => 'UpdateObjectList' ); <%ARGS> $TicketObj => undef $QueueObj => undef %Queues => () rt-4.0.19/share/html/Elements/MyAdminQueues0000664000175000017500000000425512262650742017553 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc("Queues I administer"), bodyclass => "" &> <& /Elements/QueueSummaryByStatus, queue_filter => sub { $_->CurrentUserHasRight('AdminQueue') }, &> rt-4.0.19/share/html/Elements/EmailInput0000664000175000017500000000425512262650742017074 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} value="<% $Default || '' %>" /> <%ARGS> $Name $Size => 40 $Default => '' rt-4.0.19/share/html/Elements/QueueSummaryByLifecycle0000664000175000017500000001225512262650742021601 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%perl> foreach my $lifecycle ( map $lifecycle{$_}, sort keys %lifecycle ) { my @cur_statuses = grep $lifecycle->IsValid($_), @statuses; next unless @cur_statuses; % for my $status ( @cur_statuses ) { % } <%PERL> my $i = 0; for my $queue (@queues) { next if lc($queue->{Lifecycle} || '') ne lc $lifecycle->Name; $i++; % for my $status (@cur_statuses) { % } % }
<&|/l&>Queue<% loc($status) %>
<% $queue->{Name} %> <% $data->{$queue->{id}}->{lc $status} || '-' %>
% } <%INIT> my $build_search_link = sub { my ($queue_name, $extra_query) = @_; $queue_name =~ s/(['\\])/\\$1/g; #' return RT->Config->Get('WebPath') . "/Search/Results.html?Query=" . $m->interp->apply_escapes("Queue = '$queue_name' AND $extra_query", 'u'); }; my $link_all = sub { my ($queue, $all_statuses) = @_; return $build_search_link->($queue->{Name}, "(".join(" OR ", map "Status = '$_'", @$all_statuses).")"); }; my $link_status = sub { my ($queue, $status) = @_; return $build_search_link->($queue->{Name}, "Status = '$status'"); }; $m->callback( CallbackName => 'LinkBuilders', build_search_link => \$build_search_link, link_all => \$link_all, link_status => \$link_status, ); my $Queues = RT::Queues->new( $session{'CurrentUser'} ); $Queues->UnLimit(); $m->callback( CallbackName => 'SQLFilter', Queues => $Queues ); my @queues = grep $queue_filter->($_), @{ $Queues->ItemsArrayRef }; $m->callback( CallbackName => 'Filter', Queues => \@queues ); @queues = map { { id => $_->Id, Name => $_->Name, Description => $_->Description || '', Lifecycle => $_->Lifecycle->Name, } } grep $_, @queues; my %lifecycle; for my $queue (@queues) { my $cycle = RT::Lifecycle->Load( $queue->{'Lifecycle'} ); $lifecycle{ lc $cycle->Name } = $cycle; } unless (@statuses) { my %seen; foreach my $set ( 'initial', 'active' ) { foreach my $lifecycle ( map $lifecycle{$_}, sort keys %lifecycle ) { push @statuses, grep !$seen{ lc $_ }++, $lifecycle->Valid($set); } } } my $data = {}; my $statuses = {}; use RT::Report::Tickets; my $report = RT::Report::Tickets->new( RT->SystemUser ); my $query = "(". join(" OR ", map {s{(['\\])}{\\$1}g; "Status = '$_'"} @statuses) #' .") AND (". join(' OR ', map "Queue = ".$_->{id}, @queues) .")"; $query = 'id < 0' unless @queues; $report->SetupGroupings( Query => $query, GroupBy => [qw(Status Queue)] ); while ( my $entry = $report->Next ) { $data->{ $entry->__Value("Queue") }->{ $entry->__Value("Status") } = $entry->__Value('id'); $statuses->{ $entry->__Value("Status") } = 1; } <%ARGS> $queue_filter => undef @statuses => () rt-4.0.19/share/html/Elements/ShowCustomFields0000664000175000017500000001075312262650742020267 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( CallbackName => 'BeforeCustomFields' ); % if ($Table) { % } % while ( my $CustomField = $CustomFields->Next ) { % my $Values = $Object->CustomFieldValues( $CustomField->Id ); % my $count = $Values->Count; % } % if ($Table) {
<% $CustomField->Name %>: % unless ( $count ) { <&|/l&>(no value) % } elsif ( $count == 1 ) { % $print_value->( $CustomField, $Values->First ); % } else {
    % while ( my $Value = $Values->Next ) {
  • % $print_value->( $CustomField, $Value );
  • % }
% }
% } % $m->callback( CallbackName => 'AfterCustomFields', Object => $Object ); <%INIT> $m->callback( %ARGS, CallbackName => 'MassageCustomFields', Object => $Object, CustomFields => $CustomFields, ); # don't print anything if there is no custom fields return unless $CustomFields->First; $CustomFields->GotoFirstItem; my $print_value = sub { my ($cf, $value) = @_; my $linked = $value->LinkValueTo; if ( defined $linked && length $linked ) { my $linked = $m->interp->apply_escapes( $linked, 'h' ); $m->out(''); } my $comp = "ShowCustomField". $cf->Type; $m->callback( CallbackName => 'ShowComponentName', Name => \$comp, CustomField => $cf, Object => $Object, ); if ( $m->comp_exists( $comp ) ) { $m->comp( $comp, Object => $value ); } else { $m->out( $m->interp->apply_escapes( $value->Content, 'h' ) ); } $m->out('') if defined $linked && length $linked; # This section automatically populates a div with the "IncludeContentForValue" for this custom # field if it's been defined if ( $cf->IncludeContentForValue ) { my $vid = $value->id; $m->out( '\n} ); $m->out( qq{\n} ); } }; <%ARGS> $Object => undef $CustomFields => $Object->CustomFields $Table => 1 rt-4.0.19/share/html/Elements/SelectOwnerDropdown0000664000175000017500000000720312262650742020770 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my %user_uniq_hash; my $isSU = $session{CurrentUser} ->HasRight( Right => 'SuperUser', Object => $RT::System ); foreach my $object (@$Objects) { my $Users = RT::Users->new( $session{CurrentUser} ); $Users->WhoHaveRight( Right => 'OwnTicket', Object => $object, IncludeSystemRights => 1, IncludeSuperusers => $isSU ); while ( my $User = $Users->Next() ) { $user_uniq_hash{ $User->Id() } = $User; } } if ($Default && $Default != RT->Nobody->id && !$user_uniq_hash{$Default}) { $user_uniq_hash{$Default} = RT::User->new($session{CurrentUser}); $user_uniq_hash{$Default}->Load($Default); } my @users = values %user_uniq_hash; <%ARGS> $Name => undef $Objects => [] $Default => 0 $DefaultValue => 1 $DefaultLabel => "-" $ValueAttribute => 'id' rt-4.0.19/share/html/Elements/TitleBoxEnd0000664000175000017500000000411212262650742017176 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> # For compatibility with 3.4 $m->comp('/Widgets/TitleBoxEnd', %ARGS ); rt-4.0.19/share/html/Elements/SelectAttachmentField0000664000175000017500000000453212262650742021217 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'AttachmentField' rt-4.0.19/share/html/Elements/SelectTicketSortBy0000664000175000017500000000453212262650742020551 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $tickets = RT::Tickets->new($session{'CurrentUser'}); my @sortfields = $tickets->SortFields(); <%ARGS> $Name => 'SortTicketsBy' $Default => 'id' rt-4.0.19/share/html/Elements/SelectTimeUnits0000664000175000017500000000472412262650742020107 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> $Name .= '-TimeUnits' unless $Name =~ /-TimeUnits$/io; my $HoursDefault = RT->Config->Get('DefaultTimeUnitsToHours', $session{'CurrentUser'}); <%ARGS> $Name => '' rt-4.0.19/share/html/Elements/RT__User/0000775000175000017500000000000012262650742016556 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__User/ColumnMap0000664000175000017500000001214712262650742020401 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->id }, }, Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, RealName => { title => 'Real Name', # loc attribute => 'RealName', value => sub { return $_[0]->RealName() }, }, NickName => { title => 'Nickname', # loc attribute => 'NickName', value => sub { return $_[0]->NickName() }, }, EmailAddress => { title => 'Email Address', # loc attribute => 'EmailAddress', value => sub { return $_[0]->EmailAddress() }, }, Organization => { title => 'Organization', # loc attribute => 'Organization', value => sub { return $_[0]->Organization() }, }, HomePhone => { title => 'Home Phone', # loc attribute => 'HomePhone', value => sub { return $_[0]->HomePhone() }, }, WorkPhone => { title => 'Work Phone', # loc attribute => 'WorkPhone', value => sub { return $_[0]->WorkPhone() }, }, MobilePhone => { title => 'Mobile Phone', # loc attribute => 'MobilePhone', value => sub { return $_[0]->MobilePhone() }, }, PagerPhone => { title => 'Pager Phone', # loc attribute => 'PagerPhone', value => sub { return $_[0]->PagerPhone() }, }, Address1 => { title => 'Address', # loc attribute => 'Address1', value => sub { return $_[0]->Address1() }, }, Address2 => { title => 'Address 2', # loc attribute => 'Address2', value => sub { return $_[0]->Address2() }, }, City => { title => 'City', # loc attribute => 'City', value => sub { return $_[0]->City() }, }, State => { title => 'State', # loc attribute => 'State', value => sub { return $_[0]->State() }, }, Zip => { title => 'Zip', # loc attribute => 'Zip', value => sub { return $_[0]->Zip() }, }, Country => { title => 'Country', # loc attribute => 'Country', value => sub { return $_[0]->Country() }, }, Gecos => { title => 'Unix login', #loc attribute => 'Gecos', value => sub { return $_[0]->Gecos() }, }, Lang => { title => 'Language', #loc attribute => 'Lang', value => sub { return $_[0]->Lang() }, }, FreeformContactInfo => { title => 'Extra Info', #loc attribute => 'FreeformContactInfo', value => sub { return $_[0]->FreeformContactInfo() }, }, }; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/Header0000664000175000017500000001174112262650742016213 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# index.html gets two doctypes unless we can skip it here % unless ($SkipDoctype) { % } <%$Title%> <& /Elements/Framekiller &> % if ($Refresh && $Refresh =~ /^(\d+)/ && $1 > 0) { % my $URL = $m->notes->{RefreshURL}; $URL = $URL ? ";URL=$URL" : ""; " /> % } % for my $cssfile ( @css_files ) { % } % for (keys %{$LinkRel || {}}) { % } % if ( $RSSAutoDiscovery ) { % } % if ($JavaScript) { <& HeaderJavascript, focus => $Focus, onload => $onload, RichText => $RichText &> % } % my $stylesheet_plugin = "/NoAuth/css/".$style."/InHeader"; % if ($m->comp_exists($stylesheet_plugin) ) { <& $stylesheet_plugin &> % } % $m->callback( %ARGS, CallbackName => 'Head' ); " <% $id && qq[id="comp-$id"] |n %>> % if ($ShowBar) { <& /Elements/Logo, %ARGS &>
<& /Elements/PersonalQuickbar, %ARGS &>
% } <%INIT> use Scalar::Util qw(blessed); $r->headers_out->{'Pragma'} = 'no-cache'; $r->headers_out->{'Cache-control'} = 'no-cache'; my $id = $m->request_comp->path; $id =~ s|^/||g; $id =~ s|/|-|g; $id =~ s|\.html$||g; $id =~ s|index$||g if $id ne 'index'; $id =~ s|-$||g; my $style = $session{'CurrentUser'} ? $session{'CurrentUser'}->Stylesheet : RT->Config->Get('WebDefaultStylesheet'); my @css_files; if ( RT->Config->Get('DevelMode') ) { @css_files = ( "$style/main.css", RT->Config->Get('CSSFiles' ) ); } else { my $key = RT::Interface::Web::SquishedCSS( $style )->Key; @css_files = "$style-squished-$key.css"; } <%ARGS> #$Focus => 'focus' $Focus => '' $Title => 'RT' $Code => undef $Refresh => 0 $Why => undef $ShowBar => 1 $URL => undef $RSSAutoDiscovery => undef $onload => undef $LinkRel => undef $JavaScript => 1 $SkipDoctype => 0 $RichText => 1 rt-4.0.19/share/html/Elements/SelectPriority0000664000175000017500000000423312262650742020002 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'Priority' $Default => '' <%INIT> $Default = '' unless defined $Default; rt-4.0.19/share/html/Elements/SelectDate0000664000175000017500000000557112262650742017044 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, Name => $Name, CallbackName => 'BeforeDateInput' ); % $m->callback( %ARGS, Name => $Name, CallbackName => 'AfterDateInput' ); <%init> unless ((defined $Default) or ($current <= 0)) { my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($current); $Default = sprintf("%04d-%02d-%02d %02d:%02d", $year+1900,$mon+1,$mday, $hour,$min); } $Value = $Value || $Default; unless ($Name) { $Name = $menu_prefix. "_Date"; } <%args> $ShowTime => 1 $menu_prefix=>'' $current=>time $Default => '' $Value => '' $Name => undef $Size => 16 rt-4.0.19/share/html/Elements/BevelBoxRaisedEnd0000664000175000017500000000401112262650742020300 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} rt-4.0.19/share/html/Elements/ListMenu0000664000175000017500000000571612262650742016570 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $menu
    % for my $child ($menu->children) {
  • <% $show_link->( $child ) |n %>
    % if ( my $description = $child->description ) { <% $description %>\ % }
  • % }
<%INIT> my $web_path = RT->Config->Get('WebPath'); my $interp = $m->interp; my $show_link = sub { my $e = shift; my $res = ''; if ( $e->path) { $res .= 'path or $e->path =~ m{^\w+:/}) ? $e->path : $web_path . $e->path; $res .= ' href="'. $interp->apply_escapes($url, 'h') .'"' if $url; if ( $e->target ) { $res .= ' target="'. $interp->apply_escapes( $e->target, 'h' ) .'"'; } $res .= '>'; } my $title = $e->title; $title = $interp->apply_escapes( $title, 'h' ); $res .= $title; if ( $e->path) { $res .= ''; } return $res; }; rt-4.0.19/share/html/Elements/QueriesAsComment0000664000175000017500000000453612262650742020253 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return unless RT->Config->Get('StatementLog') && $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser'); rt-4.0.19/share/html/Elements/SelectOwnerAutocomplete0000664000175000017500000000713612262650742021642 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Objects => [] $Default => 0 $ValueAttribute => 'Name' $TicketObj => undef <%INIT> $ValueAttribute = 'Name' unless $ValueAttribute =~ /^(?:id|Name)$/; my $value = ''; if ( $Default and not $Default =~ /\D/ ) { my $user = RT::User->new( $session{'CurrentUser'} ); $user->Load($Default); $value = $user->$ValueAttribute; } elsif (defined $TicketObj) { $value = $TicketObj->OwnerObj->$ValueAttribute; } # Map to a string of RT::Ticket-1|RT::Queue-5|... my $limit = join '|', map { join '-', ref($_), ($_->id || '') } @$Objects; my $query = $m->comp('/Elements/QueryString', return => $ValueAttribute, limit => $limit, ); rt-4.0.19/share/html/Elements/Framekiller0000664000175000017500000000475412262650742017266 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( RT->Config->Get('Framebusting') ) { %# This is defeatable. The current best known implemention uses CSS to hide %# the content and JS to re-show it, but that fails poorly for clients that %# don't run JS. % } rt-4.0.19/share/html/Elements/ShowUserVerbose0000664000175000017500000000516712262650742020135 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Released under the terms of version 2 of the GNU Public License <% $display |n %>\ <%INIT> my $phrase = ''; my $address = ''; my $comment = ''; if ($User) { $address = $User->EmailAddress; $phrase = $User->RealName if $User->RealName && ( !$address || lc $User->RealName ne lc $address ); $comment = $User->Name if !$address || lc $User->Name ne lc $address; } else { $address = $Address; } my $display = ($phrase || $comment || '' ) . ($address ? ' <'.$address.'>' : ''); $display = $m->interp->apply_escapes( $display, 'h' ) unless $ARGS{'NoEscape'}; <%ARGS> $User => undef $Address => undef rt-4.0.19/share/html/Elements/RT__CustomField/0000775000175000017500000000000012262650742020056 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__CustomField/ColumnMap0000664000175000017500000001405712262650742021703 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->id }, }, Disabled => { title => \' ', attribute => 'Disabled', value => sub { return $_[0]->Disabled? $_[0]->loc('Disabled'): $_[0]->loc('Enabled') }, }, map( { my $c = $_; $c => { title => $c, attribute => $c, value => sub { return $_[0]->$c() }, } } qw(Name Description Type LookupType Pattern) ), map( { my $c = $_; my $short = $c; $short =~ s/^Friendly//; $c => { title => $short, attribute => $short, value => sub { return $_[0]->$c() }, } } qw(FriendlyLookupType FriendlyType FriendlyPattern) ), MaxValues => { title => 'MaxValues', # loc attribute => 'MaxValues', value => sub { my $v = $_[0]->MaxValues; return !$v ? $_[0]->loc('unlimited') : $v == 0 ? $_[0]->loc('one') : $v; }, }, AppliedTo => { title => 'Applied', # loc value => sub { if ( $_[0]->IsApplied ) { return $_[0]->loc('Global'); } my $collection = $_[0]->AppliedTo; return '' unless $collection; $collection->RowsPerPage(10); my $found = 0; my $res = ''; while ( my $record = $collection->Next ) { $res .= ', ' if $res; my $id = ''; $id = $record->Name if $record->_Accessible('Name','read'); $id ||= "#". $record->id; $res .= $id; $found++; } $res .= ', ...' if $found >= 10; return $res; }, }, RemoveCheckBox => { title => sub { my $name = 'RemoveCustomField'; my $checked = $DECODED_ARGS->{ $name .'All' }? 'checked="checked"': ''; return \qq{}; }, value => sub { my $id = $_[0]->id; return '' if $_[0]->IsApplied; my $name = 'RemoveCustomField'; my $arg = $DECODED_ARGS->{ $name }; my $checked = ''; if ( $arg && ref $arg ) { $checked = 'checked="checked"' if grep $_ == $id, @$arg; } elsif ( $arg ) { $checked = 'checked="checked"' if $arg == $id; } return \qq{} }, }, MoveCF => { title => 'Move', value => sub { my $id = $_[0]->id; my $context = $_[2] || 0; return '' unless $_[0]->IsApplied( $context ); my $name = 'MoveCustomField'; my $args = $m->caller_args( 1 ); my @pass = ref $args->{'PassArguments'} ? @{$args->{'PassArguments'}} : ($args->{'PassArguments'}); my %pass = map { $_ => $args->{$_} } grep exists $args->{$_}, @pass; my $uri = RT->Config->Get('WebPath') . $m->request_path; my @res = ( \' $id ), \'">', loc('~[Up~]'), \'', \' $id ), \'">', loc('~[Down~]'), \'' ); return @res; }, }, }; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/ShowCustomFieldText0000664000175000017500000000430312262650742020743 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $content = $Object->LargeContent || $Object->Content; $content = $m->comp('/Elements/ScrubHTML', Content => $content); $content =~ s|\n|
|g; <%$content|n%> <%ARGS> $Object rt-4.0.19/share/html/Elements/EditPassword0000664000175000017500000000541512262650742017434 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % unless ( $cond{'CanSet'} ) { <% $cond{'Reason'} %>
% } else { % if ( $cond{'RequireCurrent'} ) { % }
<&|/l, $session{'CurrentUser'}->Name()&>[_1]'s current password:
<&|/l&>New password:
<&|/l&>Retype Password:
% } <%ARGS> $User @Name => qw(CurrentPass NewPass1 NewPass2) <%INIT> my %cond = $User->CurrentUserRequireToSetPassword; rt-4.0.19/share/html/Elements/EditCustomFieldDate0000664000175000017500000000467612262650742020656 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $name = $NamePrefix.$CustomField->Id.'-Values'; <& /Elements/SelectDate, Name => "$name", current => 0, ShowTime => 0 &> (<%$DateObj->AsString(Time => 0, Timezone => 'utc')%>) <%INIT> my $DateObj = RT::Date->new ( $session{'CurrentUser'} ); $DateObj->Set( Format => 'unknown', Value => $Default, Timezone => 'utc' ); <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $MaxValues => 1 rt-4.0.19/share/html/Elements/Login0000664000175000017500000000736012262650742016075 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, CallbackName => 'Header' ); <& /Elements/Header, Title => loc('Login'), Focus => 'user', RichText => 0 &> <& /Elements/Footer, Menu => 0 &> <%ARGS> $next => '' $user => "" $actions => undef rt-4.0.19/share/html/Elements/ShowUserConcise0000664000175000017500000000501012262650742020076 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Released under the terms of version 2 of the GNU Public License <% $display |n %>\ <%ARGS> $User => undef $Address => undef <%INIT> if ( !$User && $Address ) { $User = RT::User->new( $session{'CurrentUser'} ); $User->LoadByEmail( $Address->address ); if ( $User->Id ) { $Address = ''; } else { $Address = $Address->address; } } my $display = $Address || $User->RealName || $User->Name; $display = $m->interp->apply_escapes( $display, 'h' ) unless $ARGS{'NoEscape'}; rt-4.0.19/share/html/Elements/RT__Dashboard/0000775000175000017500000000000012262650742017527 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__Dashboard/ColumnMap0000664000175000017500000001140512262650742021346 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->Id }, }, Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name()||loc("Unnamed dashboard") }, }, Subscription => { title => 'Subscription', # loc attribute => 'Subscription', value => sub { my $Dashboard = shift; my $Subscription = $Dashboard->Subscription; my $url = sprintf '%s/Dashboards/Subscription.html?id=%d', RT->Config->Get('WebPath'), $Dashboard->Id; my $frequency = loc("None"); if (defined $Subscription) { my $freq = $Subscription->SubValue('Frequency'); my $hour = $Subscription->SubValue('Hour'); if (my ($integer_hour) = $hour =~ /^(\d\d):00$/) { my $formatter = RT::Date->new($session{CurrentUser})->LocaleObj; my $dt = DateTime->now; $dt->set_minute(0); $dt->set_second(0); $dt->set_hour($integer_hour); # use the formatted hour instead $hour = $dt->format_cldr($formatter->time_format_short); } if ($freq eq 'weekly') { my $day = $Subscription->SubValue('Dow'); $frequency = loc("weekly (on [_1]) at [_2]", loc($day), $hour); } elsif ($freq eq 'monthly') { $frequency = loc("monthly (day [_1]) at [_2]", $Subscription->SubValue('Dom'), $hour); } elsif ($freq eq 'daily') { $frequency = loc("daily at [_1]", $hour); } elsif ($freq eq 'm-f') { $frequency = loc("M-F at [_1]", $hour); } elsif ($freq eq 'never') { $frequency = loc("Never"); } else { $frequency = loc($freq); } } return \'', $frequency, \''; }, }, ShowURL => { title => '', attribute => 'ShowURL', value => sub { my $dashboard = shift; my $id = $dashboard->Id; my $name = $dashboard->Name; return "Dashboards/$id/$name"; }, } }; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/RT__Ticket/0000775000175000017500000000000012262650742017063 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__Ticket/ColumnMap0000664000175000017500000002630512262650742020707 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef <%ONCE> my $COLUMN_MAP; my $LinkCallback = sub { my $method = shift; my $mode = $RT::Ticket::LINKTYPEMAP{$method}{Mode}; my $type = $RT::Ticket::LINKTYPEMAP{$method}{Type}; my $other_mode = ($mode eq "Target" ? "Base" : "Target"); my $mode_uri = $mode.'URI'; my $local_type = 'Local'.$mode; return sub { map { \'', ( $_->$mode_uri->IsLocal && $_->$local_type ? $_->$local_type : $_->$mode_uri->Resolver->AsString ), \'
', } @{ $_[0]->Links($other_mode,$type)->ItemsArrayRef } } }; $COLUMN_MAP = { Queue => { attribute => 'Queue', title => 'Queue id', # loc value => sub { return $_[0]->Queue } }, QueueName => { attribute => 'Queue', title => 'Queue', # loc value => sub { return $_[0]->QueueObj->Name } }, OwnerName => { title => 'Owner', # loc attribute => 'Owner', value => sub { return $_[0]->OwnerObj->Name } }, Status => { title => 'Status', # loc attribute => 'Status', value => sub { return loc($_[0]->Status) } }, Subject => { title => 'Subject', # loc attribute => 'Subject', value => sub { return $_[0]->Subject || "(" . loc('No subject') . ")" } }, ExtendedStatus => { title => 'Status', # loc attribute => 'Status', value => sub { my $Ticket = shift; if ( my $count = $Ticket->HasUnresolvedDependencies ) { if ( $Ticket->HasUnresolvedDependencies( Type => 'approval' ) or $Ticket->HasUnresolvedDependencies( Type => 'code' ) ) { return \'', loc('(pending approval)'), \''; } else { my $Query = "DependedOnBy = " . $Ticket->id; $Query .= " AND (" . join(" OR ", map { "Status = '$_'" } RT::Queue->ActiveStatusArray) . ")"; my $SearchURL = RT->Config->Get('WebPath') . '/Search/Results.html?' . $m->comp('/Elements/QueryString', Query => $Query); return \'', loc('(pending [quant,_1,other ticket])',$count), \''; } } else { return loc( $Ticket->Status ); } } }, Priority => { title => 'Priority', # loc attribute => 'Priority', value => sub { return $_[0]->Priority } }, InitialPriority => { title => 'InitialPriority', # loc attribute => 'InitialPriority', name => 'Initial Priority', value => sub { return $_[0]->InitialPriority } }, FinalPriority => { title => 'FinalPriority', # loc attribute => 'FinalPriority', name => 'Final Priority', value => sub { return $_[0]->FinalPriority } }, EffectiveId => { title => 'EffectiveId', # loc attribute => 'EffectiveId', value => sub { return $_[0]->EffectiveId } }, Type => { title => 'Type', # loc attribute => 'Type', value => sub { return $_[0]->Type } }, TimeWorked => { attribute => 'TimeWorked', title => 'Time Worked', # loc value => sub { return $_[0]->TimeWorked } }, TimeLeft => { attribute => 'TimeLeft', title => 'Time Left', # loc value => sub { return $_[0]->TimeLeftAsString } }, TimeEstimated => { attribute => 'TimeEstimated', title => 'Time Estimated', # loc value => sub { return $_[0]->TimeEstimated } }, Requestors => { title => 'Requestors', # loc attribute => 'Requestor.EmailAddress', value => sub { return $_[0]->Requestors->MemberEmailAddressesAsString } }, Cc => { title => 'Cc', # loc attribute => 'Cc.EmailAddress', value => sub { return $_[0]->Cc->MemberEmailAddressesAsString } }, AdminCc => { title => 'AdminCc', # loc attribute => 'AdminCc.EmailAddress', value => sub { return $_[0]->AdminCc->MemberEmailAddressesAsString } }, StartsRelative => { title => 'Starts', # loc attribute => 'Starts', value => sub { return $_[0]->StartsObj->AgeAsString } }, StartedRelative => { title => 'Started', # loc attribute => 'Started', value => sub { return $_[0]->StartedObj->AgeAsString } }, ToldRelative => { title => 'Told', # loc attribute => 'Told', value => sub { return $_[0]->ToldObj->AgeAsString } }, DueRelative => { title => 'Due', # loc attribute => 'Due', value => sub { my $date = $_[0]->DueObj; # Highlight the date if it was due in the past, and it's still active if ( $date && $date->Unix > 0 && $date->Diff < 0 && $_[0]->QueueObj->IsActiveStatus($_[0]->Status)) { return (\'' , $date->AgeAsString , \''); } else { return $date->AgeAsString; } } }, ResolvedRelative => { title => 'Resolved', # loc attribute => 'Resolved', value => sub { return $_[0]->ResolvedObj->AgeAsString } }, Starts => { title => 'Starts', # loc attribute => 'Starts', value => sub { return $_[0]->StartsObj->AsString } }, Started => { title => 'Started', # loc attribute => 'Started', value => sub { return $_[0]->StartedObj->AsString } }, Told => { title => 'Told', # loc attribute => 'Told', value => sub { return $_[0]->ToldObj->AsString } }, Due => { title => 'Due', # loc attribute => 'Due', value => sub { return $_[0]->DueObj->AsString } }, Resolved => { title => 'Resolved', # loc attribute => 'Resolved', value => sub { return $_[0]->ResolvedObj->AsString } }, UpdateStatus => { title => 'New messages', # loc value => sub { my $txn = $_[0]->SeenUpTo or return $_[0]->loc('No'); return \(''), $_[0]->loc('New'), \''; }, }, KeyRequestors => { title => 'Requestors', # loc attribute => 'Requestor.EmailAddress', value => sub { my $t = shift; my @requestors = $t->Requestors->MemberEmailAddresses; for my $email (@requestors) { my %key = RT::Crypt::GnuPG::GetKeyInfo($email); if (!defined $key{'info'}) { $email .= ' ' . loc("(no pubkey!)"); } elsif ($key{'info'}{'TrustLevel'} == 0) { $email .= ' ' . loc("(untrusted!)"); } } return join ', ', @requestors; } }, KeyOwnerName => { title => 'Owner', # loc attribute => 'Owner', value => sub { my $t = shift; my $name = $t->OwnerObj->Name; my %key = RT::Crypt::GnuPG::GetKeyInfo($t->OwnerObj->EmailAddress); if (!defined $key{'info'}) { $name .= ' '. loc("(no pubkey!)"); } elsif ($key{'info'}{'TrustLevel'} == 0) { $name .= ' '. loc("(untrusted!)"); } return $name; } }, # Everything from LINKTYPEMAP (map { $_ => { value => $LinkCallback->( $_ ) } } keys %RT::Ticket::LINKTYPEMAP), '_CLASS' => { value => sub { return $_[1] % 2 ? 'oddline' : 'evenline' } }, '_CHECKBOX' => { attribute => 'checkbox', title => 'Update', # loc align => 'right', value => sub { return \('') } }, Bookmark => { title => ' ', value => sub { my $bookmark = $m->scomp( '/Ticket/Elements/Bookmark', id => $_[0]->id ); # the CollectionAsTable/Row template replaces newlines with
$bookmark =~ s/\n//g; return \$bookmark; }, }, }; # if no GPG support, then KeyOwnerName and KeyRequestors fall back to the regular # versions if (RT->Config->Get('GnuPG')->{'Enable'}) { require RT::Crypt::GnuPG; } else { $COLUMN_MAP->{KeyOwnerName} = $COLUMN_MAP->{OwnerName}; $COLUMN_MAP->{KeyRequestors} = $COLUMN_MAP->{Requestors}; } <%init> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 ); # backward compatibility $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap' ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/SelectCustomFieldOperator0000664000175000017500000000464312262650742022120 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef @Options => ( loc('matches'), loc("doesn't match"), loc('is'), loc("isn't"), loc('less than'), loc('greater than')) @Values => ('LIKE', 'NOT LIKE', '=', '!=', '<', '>') $Default => '' rt-4.0.19/share/html/Elements/SelectTicketTypes0000664000175000017500000000433712262650742020436 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'TickType' $Default => undef @Types => qw(Approval Ticket) rt-4.0.19/share/html/Elements/Submit0000664000175000017500000001015112262650742016260 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
% if ($CheckAll) { % } % if ($ClearAll) { % } % if ($Reset) { % }
% if ( $Back ) { % } % if ( $Back ) {
<%$BackCaption%> <% $BackName ? qq[ name="$BackName"] : '' | n %> value="<%$BackLabel%>" class="button" />
% }
<%ARGS> $color => undef $Caption => '' $AlternateCaption => undef $AlternateLabel => undef $Label => loc('Submit') $Name => undef $CheckAll => undef $CheckAllLabel => loc('Check All') $ClearAll => undef $ClearAllLabel => loc('Clear All') $CheckboxName => '' $CheckboxNameRegex => '' $Back => undef $BackName => 'Back' $BackLabel => loc('Back') $BackCaption => '' $BackOnClick => undef $OnClick => undef $Reset => undef $ResetLabel => loc('Reset') $SubmitId => undef $id => undef <%init> my $match; if (length $CheckboxName) { $match = $m->interp->apply_escapes($CheckboxName,'j'); } elsif (length $CheckboxNameRegex) { $match = $CheckboxNameRegex; } else { $match = q{''}; } rt-4.0.19/share/html/Elements/RT__Class/0000775000175000017500000000000012262650742016705 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__Class/ColumnMap0000664000175000017500000000525112262650742020526 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', value => sub { return $_[0]->id }, }, Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, }; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/Menu0000664000175000017500000000652612262650742015734 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % return unless ($menu); <%" " x $depth%><% $toplevel? ' class="toplevel"' : '' |n %>> % for my $child ($menu->children) { % my $item_id = lc(($parent_id? $parent_id."-" : "") .$child->key); % $item_id =~ s/\s/-/g; % my @classes; % push @classes, 'has-children' if $child->has_children; % push @classes, 'active' if $child->active; <%" " x ($depth+1)%>
  • \ % if ($child->raw_html) { <% $child->raw_html |n %> % } else { % my $url = $m->interp->apply_escapes((not $child->path or $child->path =~ m{^\w+:/}) ? $child->path : RT->Config->Get('WebPath').$child->path, 'h'); path ? ' href="'.$url.'"' : '' |n%><% $child->target ? ' target="'.$m->interp->apply_escapes($child->target, 'h').'"' : '' |n %>>\ <% $child->escape_title ? $m->interp->apply_escapes($child->title, 'h') : $child->title |n %>\ \ % } % if ($child->has_children) { <& Menu, menu => $child, toplevel => 0, parent_id => ($parent_id? $parent_id."-": '').$child->key, depth=> ($depth+1) &> <%" " x ($depth+1)%>
  • % } else { % } % } <%" " x $depth%>\ <%ARGS> $menu $id => undef $toplevel => 1 $parent_id => '' $depth => 0 <%init> $id = $m->interp->apply_escapes($id, 'h'); rt-4.0.19/share/html/Elements/TicketList0000664000175000017500000000461612262650742017105 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> $m->comp( '/Elements/CollectionList', %ARGS, Class => 'RT::Tickets' ); <%ARGS> $Collection => undef $Query => undef $Format => RT->Config->Get('DefaultSearchResultFormat') $DisplayFormat => undef $Order => undef $OrderBy => undef $Rows => 50 $Page => 1 $Title => loc('Ticket Search') $BaseURL => undef $AllowSorting => undef $ShowNavigation => 1 $ShowHeader => 1 $ShowEmpty => 0 rt-4.0.19/share/html/Elements/CollectionListPaging0000664000175000017500000000702512262650742021100 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $BaseURL => undef $Rows => undef $TotalFound => undef $CurrentPage => undef $Pages => undef $URLParams => undef <%INIT> $BaseURL = $m->interp->apply_escapes($BaseURL, 'h'); $m->out(qq{
    }); if ($Pages == 1) { $m->out(loc('Page 1 of 1')); } else{ $m->out(loc('Page') . ' '); my $prev = $m->interp->apply_escapes($m->comp( '/Elements/QueryString', %$URLParams, Page => ( $CurrentPage - 1 ) ), 'h'); my $next = $m->interp->apply_escapes($m->comp( '/Elements/QueryString', %$URLParams, Page => ( $CurrentPage + 1 ) ), 'h'); my %show; $show{1} = 1; $show{$_} = 1 for (($CurrentPage - 2)..($CurrentPage + 2)); $show{$Pages} = 1; my $dots; for my $number ( 1 .. $Pages ) { if ( $show{$number} ) { $dots = undef; my $qs = $m->interp->apply_escapes($m->comp( '/Elements/QueryString', %$URLParams, Page => $number ), 'h'); $m->out(qq{}); if ( $number == $CurrentPage ) { $m->out(qq{$number }); } else { $m->out(qq{$number }); } } elsif ( not $dots ) { $dots = 1; $m->out(qq{...}); } $m->out(qq{}); } if ($CurrentPage > 1) { $m->out(qq{}.loc('Previous') . qq{}); } if (($CurrentPage * $Rows) < $TotalFound) { $m->out(qq{}.loc('Next').qq{}); } } $m->out(qq{
    }); rt-4.0.19/share/html/Elements/ShowLinks0000664000175000017500000001372612262650742016751 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % # Allow people to add more rows to the table % $m->callback( %ARGS );
    <& ShowRelationLabel, id => $id, Label => loc('Depends on'), Relation => 'DependsOn' &>:\ % if ($can_create) { (<% loc('Create') %>) % } <%PERL> my ( $depends_on, @active, @inactive, @not_tickets ); $depends_on = $Ticket->DependsOn; while ( my $link = $depends_on->Next ) { my $target = $link->TargetObj; if ( $target && $target->isa('RT::Ticket') ) { if ( $target->QueueObj->IsInactiveStatus( $target->Status ) ) { push( @inactive, $link->TargetURI ); } else { push( @active, $link->TargetURI ); } } else { push( @not_tickets, $link->TargetURI ); } }
      % for my $Link (@not_tickets, @active, @inactive) {
    • <& ShowLink, URI => $Link &>
    • % }
    <& ShowRelationLabel, id => $id, Label => loc('Depended on by'), Relation => 'DependedOnBy' &>:\ % if ($can_create) { (<% loc('Create') %>) % }
      % while (my $Link = $Ticket->DependedOnBy->Next) {
    • <& ShowLink, URI => $Link->BaseURI &>
    • % }
    <& ShowRelationLabel, id => $id, Label => loc('Parents'), Relation => 'Parents' &>:\ % if ($can_create) { (<% loc('Create') %>) % } <& /Ticket/Elements/ShowParents, Ticket => $Ticket &>
    <& ShowRelationLabel, id => $id, Label => loc('Children'), Relation => 'Children' &>:\ % if ($can_create) { (<% loc('Create') %>) % } <& /Ticket/Elements/ShowMembers, Ticket => $Ticket &>
    <& ShowRelationLabel, id => $id, Label => loc('Refers to'), Relation => 'RefersTo' &>:\ % if ($can_create) { (<% loc('Create') %>) % }
      % while (my $Link = $Ticket->RefersTo->Next) {
    • <& ShowLink, URI => $Link->TargetURI &>
    • % }
    <& ShowRelationLabel, id => $id, Label => loc('Referred to by'), Relation => 'ReferredToBy' &>:\ % if ($can_create) { (<% loc('Create') %>) % }
      % while (my $Link = $Ticket->ReferredToBy->Next) { % next if (UNIVERSAL::isa($Link->BaseObj, 'RT::Ticket') && $Link->BaseObj->Type eq 'reminder');
    • <& ShowLink, URI => $Link->BaseURI &>
    • % }
    <%INIT> my $id = $Ticket->id; my $clone = {}; my $path = RT->Config->Get('WebPath') . '/Ticket/Create.html?Queue=' . $Ticket->Queue . '&CloneTicket=' . $id; my $can_create = $Ticket->QueueObj->CurrentUserHasRight('CreateTicket'); for my $relation ( qw(RefersTo ReferredToBy)) { my $mode = $RT::Ticket::LINKTYPEMAP{$relation}->{Mode}; my $type = $RT::Ticket::LINKTYPEMAP{$relation}->{Type}; my $other = "Local" . $mode; my $field = $mode eq 'Base' ? 'new-' . $type : $type . '-new'; $clone->{$field} = $path . "&$field=" . join( '%20', ( map { $_->$other() } @{ $Ticket->$relation->ItemsArrayRef } ), $id ); } for my $relation ( qw(MemberOf Members DependsOn DependedOnBy)) { my $mode = $RT::Ticket::LINKTYPEMAP{$relation}->{Mode}; my $type = $RT::Ticket::LINKTYPEMAP{$relation}->{Type}; my $field = $mode eq 'Base' ? 'new-' . $type : $type . '-new'; $clone->{$field} = $path . "&$field=$id"; } <%ARGS> $Ticket => undef rt-4.0.19/share/html/Elements/SelectDateType0000664000175000017500000000474012262650742017703 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'DateType' rt-4.0.19/share/html/Elements/GnuPG/0000775000175000017500000000000012262650742016054 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/GnuPG/SelectKeyForEncryption0000664000175000017500000000543712262650742022422 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if (!@keys) { <% loc("No usable keys.") %> % } else { % } <%INIT> require RT::Crypt::GnuPG; my $d; my %res = RT::Crypt::GnuPG::GetKeysForEncryption($EmailAddress); # move the preferred key to the top of the list my @keys = map { $_->{'Fingerprint'} eq ( $Default || '' ) ? do { $d = $_; () } : $_ } @{ $res{'info'} }; @keys = sort { $b->{'TrustLevel'} <=> $a->{'TrustLevel'} } @keys; unshift @keys, $d if defined $d; <%ARGS> $Name => 'PreferredKey' $EmailAddress => undef $Default => undef rt-4.0.19/share/html/Elements/GnuPG/SelectKeyForSigning0000664000175000017500000000454012262650742021660 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $user_key ) { % } else { <% loc("Queue's key") %> % } <%ARGS> $Name => 'SignUsing', $User => undef, <%INIT> return unless RT->Config->Get('GnuPG')->{'Enable'}; my $user_key = $User->PrivateKey; rt-4.0.19/share/html/Elements/GnuPG/SignEncryptWidget0000664000175000017500000001233212262650742021411 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $columnsplit = "
    "; <% loc( 'Sign[_1][_2] using [_3]', $columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ), ) |n %> <% loc('Encrypt')%> <& /Widgets/Form/Boolean:InputOnly, Name => 'Encrypt', CurrentValue => $self->{'Encrypt'} &>
    <%ARGS> $self => undef, <%INIT> return unless $self; <%METHOD new> <%ARGS> $Arguments => {} <%INIT> return undef unless RT->Config->Get('GnuPG')->{'Enable'}; require RT::Crypt::GnuPG; return { %$Arguments }; <%METHOD ShowIssues> <%ARGS> $self => undef, <%INIT> return unless $self; return $m->comp( '/Elements/GnuPG/KeyIssues', Issues => $self->{'GnuPGRecipientsKeyIssues'} || [], SignAddresses => $self->{'GnuPGCanNotSignAs'} || [], ); <%METHOD Process> <%ARGS> $self => undef $QueueObj => undef $TicketObj => undef <%INIT> return unless $self; $QueueObj ||= $TicketObj->QueueObj if $TicketObj; foreach ( qw(Sign Encrypt) ) { $self->{ $_ } = $m->comp( '/Widgets/Form/Boolean:Process', Name => $_, DefaultValue => $QueueObj->$_, Arguments => $self, ); } <%METHOD Check> <%ARGS> $self => undef $Operation => 'Update' $TicketObj => undef $QueueObj => undef <%INIT> return 1 unless $self; my $checks_failure = 0; if ( $self->{'Sign'} ) { $QueueObj ||= $TicketObj->QueueObj if $TicketObj; my $private = $session{'CurrentUser'}->UserObj->PrivateKey || ''; my $queue = ($self->{'UpdateType'} && $self->{'UpdateType'} eq "private") ? ( $QueueObj->CommentAddress || RT->Config->Get('CommentAddress') ) : ( $QueueObj->CorrespondAddress || RT->Config->Get('CorrespondAddress') ); my $address = $self->{'SignUsing'} || $queue; if ($address ne $private and $address ne $queue) { push @{ $self->{'GnuPGCanNotSignAs'} ||= [] }, $address; $checks_failure = 1; } elsif ( not RT::Crypt::GnuPG::DrySign( $address ) ) { push @{ $self->{'GnuPGCanNotSignAs'} ||= [] }, $address; $checks_failure = 1; } else { RT::Crypt::GnuPG::UseKeyForSigning( $self->{'SignUsing'} ) if $self->{'SignUsing'}; } } if ( $self->{'Encrypt'} ) { my @recipients; if ( $Operation eq 'Update' ) { @recipients = $TicketObj->DryRun(%$self)->Recipients; } elsif ( $Operation eq 'Create' ) { $TicketObj = RT::Ticket->new( $session{'CurrentUser'} ); @recipients = $TicketObj->DryRunCreate(%$self)->Recipients; } else { $RT::Logger->crit('Incorrect operation: '. $Operation ); } my %seen; @recipients = grep !$seen{ lc $_ }++, @recipients; RT::Crypt::GnuPG::UseKeyForEncryption( map { (/^UseKey-(.*)$/)[0] => $self->{ $_ } } grep $self->{ $_ } && /^UseKey-/, keys %$self ); my ($status, @issues) = RT::Crypt::GnuPG::CheckRecipients( @recipients ); push @{ $self->{'GnuPGRecipientsKeyIssues'} ||= [] }, @issues; $checks_failure = 1 unless $status; } return $checks_failure ? 0 : 1; rt-4.0.19/share/html/Elements/GnuPG/KeyIssues0000664000175000017500000000727212262650742017733 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( @$Issues || @$SignAddresses ) { <&| /Widgets/TitleBox, title => loc('GnuPG issues') &> % if ( @$SignAddresses ) { <% loc("The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:") %>
      % for my $address (@$SignAddresses) {
    • <% $address %>
    • % }
    % } % if (@$Issues == 1) { <% loc("You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption.") %> % } elsif (@$Issues > 1) { <% loc("You are going to encrypt outgoing email messages, but there are problems with recipients' public keys. You have to fix the problems with the keys, disable sending a message to the recipients with key problems, or disable encryption.") %> % }
      % foreach my $issue ( @$Issues ) {
    • % if ( $issue->{'User'} ) { User <&/Elements/ShowUser, User => $issue->{'User'} &> has a problem. % } else { There is a problem with key(s) for address <% $issue->{'EmailAddress'} %>, but there is no user in the DB for this address. % } <% $issue->{'Message'} %>
      Select a key you want to use for encryption: <& /Elements/GnuPG/SelectKeyForEncryption, Name => 'UseKey-'. $issue->{'EmailAddress'}, EmailAddress => $issue->{'EmailAddress'}, Default => ( $issue->{'User'}? $issue->{'User'}->PreferredKey : undef ), &>
    • % }
    % } <%ARGS> $Issues => [] $SignAddresses => [] rt-4.0.19/share/html/Elements/Logo0000664000175000017500000000676112262650742015731 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % if ($user_logo) { <%loc($ARGS{'LogoAltText'}||RT->Config->Get('LogoAltText'))%> % } else { <%loc($ARGS{'LogoAltText'}||RT->Config->Get('LogoAltText'))%> % } % if ( $ShowName ) { <% $Name || loc("RT for [_1]", RT->Config->Get('rtname')) %> % }
    <%INIT> if ( exists $ARGS{'show_name'} ) { $RT::Logger->warning('show_name argument was renamed, use ShowName'); $ShowName = delete $ARGS{'show_name'}; } use Scalar::Util qw(blessed); my $user_logo = blessed $RT::System ? $RT::System->FirstAttribute('UserLogo') : undef; # If we have the attribute, but no content, we don't really have a user logo if ($user_logo) { my $content = $user_logo->Content; undef $user_logo unless ref $content eq 'HASH' and defined $content->{'data'}; } if ($OnlyCustom and not $user_logo and ($ARGS{LogoURL}||RT->Config->Get('LogoURL')) =~ /bpslogo\.png$/) { return; } <%ARGS> $ShowName => 1 $OnlyCustom => 0 $Name => undef $id => 'logo' rt-4.0.19/share/html/Elements/ValidateCustomFields0000664000175000017500000001050312262650742021071 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my ($valid, @res) = (1, ()); $CustomFields->GotoFirstItem; while ( my $CF = $CustomFields->Next ) { my $field = $NamePrefix . $CF->Id . "-Value"; my $value; if ($ARGSRef->{"${field}s-Magic"} and exists $ARGSRef->{"${field}s"}) { $value = $ARGSRef->{"${field}s"}; # We only validate Single Combos -- multis can never be user input next if ref $value; } else { $value = $ARGSRef->{$field}; } $m->notes(('Field-' . $CF->Id) => $value); my @values = (); if ( ref $value eq 'ARRAY' ) { @values = @$value; } elsif ( $CF->Type =~ /text/i ) { @values = ($value); } else { @values = split /\r*\n/, ( defined $value ? $value : ''); } @values = grep $_ ne '', map { s/\r+\n/\n/g; s/^\s+//; s/\s+$//; $_; } grep defined, @values; @values = ('') unless @values; for my $value( @values ) { if ($value) { if ( $CF->Type eq 'IPAddress' ) { use Regexp::Common qw(RE_net_IPv4); my $ip = RT::ObjectCustomFieldValue->ParseIP( $value ); unless ( $ip ) { my $msg = loc( "Input can not be parsed as an IP address" ); $m->notes( ( 'InvalidField-' . $CF->Id ) => $msg ); push @res, $msg; $valid = 0; } } elsif ( $CF->Type eq 'IPAddressRange' ) { my ( $start_ip, $end_ip ) = RT::ObjectCustomFieldValue->ParseIPRange($value); unless ( $start_ip && $end_ip ) { my $msg = loc( "Input can not be parsed as an IP address range" ); $m->notes( ( 'InvalidField-' . $CF->Id ) => $msg ); push @res, $msg; $valid = 0; } } } next if $CF->MatchPattern($value); my $msg = loc("Input must match [_1]", $CF->FriendlyPattern); $m->notes( ('InvalidField-' . $CF->Id) => $msg ); push @res, $msg; $valid = 0; } } $m->notes('ValidFields', $valid); return wantarray? ($valid, @res): $valid; <%ARGS> $CustomFields $ARGSRef $NamePrefix => "Object-RT::Ticket--CustomField-" rt-4.0.19/share/html/Elements/SelectGroups0000664000175000017500000000536712262650742017451 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/SelectMatch, Name => 'GroupOp', Default => $GroupOp &> <%INIT> my $CFs = RT::CustomFields->new($session{'CurrentUser'}); $CFs->LimitToChildType('RT::Group'); $CFs->OrderBy( FIELD => 'Name' ); <%ARGS> $GroupField => '' $GroupOp => '' $GroupString => '' rt-4.0.19/share/html/Elements/RT__Scrip/0000775000175000017500000000000012262650742016720 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__Scrip/ColumnMap0000664000175000017500000000732012262650742020540 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->id }, }, Queue => { title => 'Queue', # loc value => sub { return $_[0]->QueueObj->Name if $_[0]->Queue; return $_[0]->loc('Global'); }, }, QueueId => { title => 'Queue', # loc value => sub { $_[0]->Queue }, }, Condition => { title => 'Condition', # loc value => sub { return $_[0]->loc( $_[0]->ScripConditionObj->Name ) }, }, Action => { title => 'Action', # loc value => sub { return $_[0]->loc( $_[0]->ScripActionObj->Name ) }, }, Template => { title => 'Template', # loc value => sub { return $_[0]->loc( $_[0]->TemplateObj->Name ) }, }, AutoDescription => { title => 'Condition, Action and Template', # loc value => sub { return $_[0]->loc( "[_1] [_2] with template [_3]", $_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->TemplateObj->Name), ) }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, Stage => { title => 'Stage', # loc attribute => 'Stage', value => sub { return $_[0]->Stage() }, }, }; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/MyRT0000664000175000017500000000745312262650742015663 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( ARGSRef => \%ARGS, CallbackName => 'BeforeTable' ); % if ( $summary ) { % }
    % $show_cb->($_) foreach @$body; % $show_cb->($_) foreach @$summary;
    % $m->callback( ARGSRef => \%ARGS, CallbackName => 'AfterTable' ); <%INIT> # XXX: we don't use this, but should. my %allowed_components = map {$_ => 1} @{RT->Config->Get('HomepageComponents')}; my $user = $session{'CurrentUser'}->UserObj; $Portlets ||= $session{'my_rt_portlets'}; unless ( $Portlets ) { my ($default_portlets) = RT::System->new($session{'CurrentUser'})->Attributes->Named('HomepageSettings'); $Portlets = $session{'my_rt_portlets'} = $user->Preferences( HomepageSettings => $default_portlets? $default_portlets->Content: {}, ); } $m->callback( CallbackName => 'MassagePortlets', Portlets => $Portlets ); my ($body, $summary) = @{$Portlets}{qw(body summary)}; unless( $body && @$body ) { $body = $summary || []; $summary = undef; } $summary = undef unless $summary && @$summary; my $Rows = $user->Preferences( 'SummaryRows', ( RT->Config->Get('DefaultSummaryRows') || 10 ) ); my $show_cb = sub { my $entry = shift; my $type = $entry->{type}; my $name = $entry->{'name'}; if ( $type eq 'component' ) { # XXX: security check etc. $m->comp( $name, %{ $entry->{arguments} || {} } ); } elsif ( $type eq 'system' ) { $m->comp( '/Elements/ShowSearch', Name => $name, Override => { Rows => $Rows } ); } elsif ( $type eq 'saved' ) { $m->comp( '/Elements/ShowSearch', SavedSearch => $name, Override => { Rows => $Rows }, IgnoreMissing => 1 ); } else { $RT::Logger->error("unknown portlet type '$type'"); } }; <%ARGS> $Portlets => undef rt-4.0.19/share/html/Elements/EditCustomFieldIPAddressRange0000664000175000017500000000407012262650742022560 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return $m->comp( 'EditCustomFieldFreeform', %ARGS ); rt-4.0.19/share/html/Elements/MyRequests0000664000175000017500000000406212262650742017142 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# DEPRECATED <& /Elements/ShowSearch, Name => 'My Requests' &> rt-4.0.19/share/html/Elements/QuickCreate0000664000175000017500000000650412262650742017224 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <&| /Widgets/TitleBox, title => loc('Quick ticket creation') &>
    callback(CallbackName => 'InFormElement'); >
    <&|/l&>Subject:
    <&|/l&>Queue:<& /Elements/SelectNewTicketQueue, Name => 'Queue' &> <&|/l&>Owner:
    <&|/l&>Requestors: <& /Elements/EmailInput, Name => 'Requestors', Size => '40', Default => $ARGS{Requestors} || $session{CurrentUser}->EmailAddress &>
    <&|/l&>Content:
    <& /Elements/Submit, Label => loc('Create') &>
    rt-4.0.19/share/html/Elements/MyTickets0000664000175000017500000000406112262650742016734 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# DEPRECATED <& /Elements/ShowSearch, Name => 'My Tickets' &> rt-4.0.19/share/html/Elements/CollectionAsTable/0000775000175000017500000000000012262650742020423 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/CollectionAsTable/ParseFormat0000664000175000017500000000737312262650742022603 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Format <%init> use Regexp::Common qw/delimited/; my @Columns; while ($Format =~ /($RE{delimited}{-delim=>qq{\'"}}|[{}\w.]+)/go) { my $col = $1; if ($col =~ /^$RE{quoted}$/o) { substr($col,0,1) = ""; substr($col,-1,1) = ""; $col =~ s/\\(.)/$1/g; } my $colref = { }; $m->callback(CallbackName => 'PreColumn', Column => $colref, col => \$col); while ( $col =~ s{/(STYLE|CLASS|TITLE|ALIGN|SPAN|ATTRIBUTE):([^/]*)}{}i ) { $colref->{ lc $1 } = $2; } $colref->{'last_attribute'} = $colref->{'attribute'}; unless ( length $col ) { $colref->{'output'} = []; $colref->{'last_attribute'} = $colref->{'attribute'} = '' unless defined $colref->{'attribute'}; } elsif ( $col =~ /^__(NEWLINE|NBSP)__$/ || $col =~ /^(NEWLINE|NBSP)$/ ) { $colref->{'title'} = $1; $colref->{'last_attribute'} = ''; } elsif ( $col =~ /__(.*?)__/io ) { my @subcols; while ( $col =~ s/^(.*?)__(.*?)__//o ) { push ( @subcols, $1 ) if $1; push ( @subcols, "__$2__" ); $colref->{'last_attribute'} = $2; } push @subcols, $col; $colref->{'output'} = \@subcols; $colref->{'attribute'} = $colref->{'last_attribute'} unless defined $colref->{'attribute'}; } else { $colref->{'output'} = [ "__" . $col . "__" ]; $colref->{'last_attribute'} = $col; $colref->{'attribute'} = $col unless defined $colref->{'attribute'}; } $m->callback(CallbackName => 'PostColumn', Column => $colref, col => \$col); push @Columns, $colref; } $m->callback(CallbackName => 'PostProcess', Columns => \@Columns, Format => $Format); return(@Columns); rt-4.0.19/share/html/Elements/CollectionAsTable/Header0000664000175000017500000001164712262650742021547 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Class => 'RT__Ticket' @Format => undef $FormatString => undef @OrderBy => () @Order => () $Query => undef $Rows => undef $Page => undef $GenericQueryArgs => undef $maxitems => undef $AllowSorting => undef $BaseURL => undef @PassArguments => qw(Query Format Rows Page Order OrderBy) <%PERL> my $generic_query_args = $GenericQueryArgs || {map { $_ => $ARGS{$_} } @PassArguments}; # backward compatibility workaround $generic_query_args->{'Format'} = $FormatString if grep $_ eq 'Format', @PassArguments; my $item = 0; foreach my $col ( @Format ) { my $title = $col->{'title'} || ''; if ( $title eq 'NEWLINE' ) { while ( $item < $maxitems ) { $m->out(qq{ \n}); $item++; } $item = 0; $m->out(qq{\n}); next; } elsif ( $title eq 'NBSP' ) { $item++; $m->out(qq{ \n}); next; } my $span = $col->{'span'}; $item += ($span || 1); $m->out('out(' colspan="' . $m->interp->apply_escapes($span => 'h') . '"') if $span; $m->out('>'); # if title is not defined then use defined attribute or last # one we saw in the format unless ( defined $col->{'title'} ) { my $attr = $col->{'attribute'} || $col->{'last_attribute'}; my $tmp = $m->comp( '/Elements/ColumnMap', Class => $Class, Name => $attr, Attr => 'title', ); $title = ProcessColumnMapValue( $tmp, Arguments => [ $attr ] ); # in case title is not defined in ColumnMap # the following regex changes $attr like from "ReferredToBy" to "Referred To By" $title = join ' ', split /(?<=[a-z])(?=[A-Z])/, $attr unless defined $title; } else { $title = $m->comp('/Elements/ScrubHTML', Content => $title); } if ( $AllowSorting and $col->{'attribute'} and my $attr = $m->comp( "/Elements/ColumnMap", Class => $Class, Name => $col->{'attribute'}, Attr => 'attribute' ) ) { $attr = ProcessColumnMapValue( $attr, Arguments => [ $col->{'attribute'} ], Escape => 0 ); my $new_order = 'ASC'; $new_order = $Order[0] eq 'ASC'? 'DESC': 'ASC' if $OrderBy[0] && ($OrderBy[0] eq $attr or "$attr|$OrderBy[0]" =~ /^(Created|id)\|(Created|id)$/); $m->out( ''. loc($title) .'' ); } else { $m->out( loc($title) ); } $m->out(''); } rt-4.0.19/share/html/Elements/CollectionAsTable/Row0000664000175000017500000001120012262650742021107 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $i => undef @Format => undef $record => undef $maxitems => undef $Depth => undef $Warning => undef $ColumnMap => {} $Class => 'RT__Ticket' $Classes => '' <%init> $m->out( '' . "\n" ); my $item; foreach my $column (@Format) { if ( defined $column->{title} && $column->{title} eq 'NEWLINE' ) { while ( $item < $maxitems ) { $m->out(qq{ \n}); $item++; } $item = 0; $m->out( '' . "\n" ); $m->out( '' . "\n" ); next; } my $class = $column->{class} ? $m->interp->apply_escapes($column->{class}, 'h') : 'collection-as-table'; $m->out(qq{{ $attr } ) { $attrs{ $attr } = $column->{ $attr }; next; } # if it's not defined then use column map my $col = $column->{'attribute'} || $column->{'last_attribute'}; unless ( exists $ColumnMap->{$col}{$attr} ) { next unless $col; $ColumnMap->{$col}{$attr} = $m->comp( "/Elements/ColumnMap", Class => $Class, Name => $col, Attr => $attr, ); } $attrs{ $attr } = ProcessColumnMapValue( $ColumnMap->{$col}{$attr}, Arguments => [$record, $i], Escape => 0, ); } $attrs{colspan} = $column->{span}; $item += ($attrs{'colspan'} || 1); my @out; foreach my $subcol ( @{ $column->{output} } ) { my ($col) = ($subcol =~ /^__(.*?)__$/); unless ( $col ) { push @out, $subcol; next; } unless ( exists $ColumnMap->{$col}{'value'} ) { $ColumnMap->{$col}{'value'} = $m->comp( "/Elements/ColumnMap", Class => $Class, Name => $col, Attr => 'value' ); } push @out, ProcessColumnMapValue( $ColumnMap->{$col}{'value'}, Arguments => [$record, $i], ); } s/\n/
    /gs for grep defined $_, @out; $m->out( $_ .'="'. $m->interp->apply_escapes( $attrs{$_} => 'h' ) .'"' ) foreach grep $attrs{$_}, qw(align style colspan); $m->out('>'); $m->out(@out) if @out; $m->out( '' . "\n" ); } $m->out(''); rt-4.0.19/share/html/Elements/SelectUsers0000664000175000017500000000577212262650742017273 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/SelectMatch, Name => 'UserOp', Default => $UserOp &> <%INIT> my $CFs = RT::CustomFields->new($session{'CurrentUser'}); $CFs->LimitToChildType('RT::User'); $CFs->OrderBy( FIELD => 'Name' ); my @fields = RT::User->BasicColumns; if ( $Fields and ref $Fields eq 'ARRAY' ) { if ( ref $Fields->[0] eq 'ARRAY' ) { @fields = @$Fields; } else { # make the name equal the label @fields = [ @$Fields, @$Fields ]; } } <%ARGS> $UserField => '' $UserOp => '' $UserString => '' $Fields => undef rt-4.0.19/share/html/Elements/MyReminders0000664000175000017500000000440712262650742017262 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# DEPRECATED <&|/Widgets/TitleBox, class => 'reminders', title => loc("My reminders"), title_href => RT->Config->Get('WebPath') . '/Tools/MyReminders.html' &> <& /Elements/ShowReminders &> <%init> return unless RT->Config->Get('EnableReminders'); rt-4.0.19/share/html/Elements/Callback0000664000175000017500000000436712262650742016525 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> $ARGS{'CallbackPage'} = delete $ARGS{'Page'} || $m->callers(1)->path; $ARGS{'CallbackName'} = delete $ARGS{'_CallbackName'}; $RT::Logger->debug("$ARGS{'CallbackPage'} calls old style callback, use \$m->callback"); return $m->callback( %ARGS ); rt-4.0.19/share/html/Elements/CreateTicket0000664000175000017500000000512012262650742017364 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    callback(CallbackName => 'InFormElement'); > % my $button_start = ''; % my $queue_selector = $m->scomp('/Elements/SelectNewTicketQueue', OnChange => 'document.CreateTicketInQueue.submit()', SendTo => $SendTo ); <&|/l_unsafe, $button_start, $button_end, $queue_selector &>[_1]New ticket in[_2] [_3] % $m->callback(CallbackName => 'BeforeFormEnd');
    <%ARGS> $SendTo => '/Ticket/Create.html', rt-4.0.19/share/html/Elements/PersonalQuickbar0000664000175000017500000000442312262650742020267 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Prefs => '/Prefs/Other.html'
    <&|/l&>Skip Menu | % unless ($session{'CurrentUser'}->Id) { <&|/l&>Not logged in. % } % $m->callback( %ARGS );
    rt-4.0.19/share/html/Elements/SelectIPRelation0000664000175000017500000000455112262650742020172 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef @Options => ( loc('is'), loc("isn't"), loc('less than'), loc('greater than')) @Values => ('=', '!=', '<', '>') $Default => '' rt-4.0.19/share/html/Elements/EditCustomFieldAutocomplete0000664000175000017500000000766412262650742022442 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $Multiple ) { <%INIT> my $name = $NamePrefix . $CustomField->Id; if ( $Default && !$Multiple ) { $Default =~ s/\s*\r*\n\s*/ /g; } if ( $Multiple and $Values ) { $Default = ''; while (my $value = $Values->Next ) { $Default .= $value->Content ."\n"; } } my $Context = ""; if ($CustomField->ContextObject) { $Context .= "ContextId=" . $CustomField->ContextObject->Id . "&"; $Context .= "ContextType=". ref($CustomField->ContextObject) . "&"; } <%ARGS> $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $Multiple => undef $Rows => undef $Cols => undef rt-4.0.19/share/html/Elements/EditCustomFieldIPAddress0000664000175000017500000000407012262650742021603 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return $m->comp( 'EditCustomFieldFreeform', %ARGS ); rt-4.0.19/share/html/Elements/SelectSortOrder0000664000175000017500000000451712262650742020111 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my @orders = qw (ASC DESC); my @order_names = (loc('Ascending'), loc('Descending')); <%ARGS> $Name => 'SortOrder' $Default => 'ASC' rt-4.0.19/share/html/Elements/ShowSearch0000664000175000017500000001375212262650742017075 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc(RT::SavedSearch->EscapeDescription($search->Description), $ProcessedSearchArg->{'Rows'}), title_href => $query_link_url.$QueryString, titleright => $customize ? loc('Edit') : '', titleright_href => $customize, hideable => $hideable &> <& $query_display_component, hideable => $hideable, %$ProcessedSearchArg, ShowNavigation => 0, Class => 'RT::Tickets' &> <%init> my $search; my $user = $session{'CurrentUser'}->UserObj; my $SearchArg; my $customize; my $query_display_component = '/Elements/CollectionList'; my $query_link_url = RT->Config->Get('WebPath').'/Search/Results.html'; if ($SavedSearch) { my ( $container_object, $search_id ) = _parse_saved_search($SavedSearch); unless ( $container_object ) { $m->out(loc("Either you have no rights to view saved search [_1] or identifier is incorrect", $m->interp->apply_escapes($SavedSearch, 'h'))); return; } $search = $container_object->Attributes->WithId($search_id); unless ( $search->Id && ref( $SearchArg = $search->Content ) eq 'HASH' ) { $m->out(loc("Saved Search [_1] not found", $m->interp->apply_escapes($SavedSearch, 'h'))) unless $IgnoreMissing; return; } $SearchArg->{'SavedSearchId'} ||= $SavedSearch; $SearchArg->{'SearchType'} ||= 'Ticket'; if ( $SearchArg->{SearchType} ne 'Ticket' ) { # XXX: dispatch to different handler here $query_display_component = '/Search/Elements/' . $SearchArg->{SearchType}; $query_link_url = RT->Config->Get('WebPath') . "/Search/$SearchArg->{SearchType}.html"; } elsif ($ShowCustomize) { $customize = RT->Config->Get('WebPath') . '/Search/Build.html?' . $m->comp( '/Elements/QueryString', SavedSearchLoad => $SavedSearch ); } } else { ($search) = RT::System->new( $session{'CurrentUser'} ) ->Attributes->Named( 'Search - ' . $Name ); unless ( $search && $search->Id ) { my (@custom_searches) = RT::System->new( $session{'CurrentUser'} )->Attributes->Named('SavedSearch'); foreach my $custom (@custom_searches) { if ($custom->Description eq $Name) { $search = $custom; last } } unless ($search && $search->id) { $m->out(loc("Predefined search [_1] not found", $m->interp->apply_escapes($Name, 'h'))); return; } } $SearchArg = $user->Preferences( $search, $search->Content ); if ($ShowCustomize) { $customize = RT->Config->Get('WebPath') . '/Prefs/Search.html?' . $m->comp( '/Elements/QueryString', name => ref($search) . '-' . $search->Id ); } } # ProcessedSearchArg is a search with overridings, but for link we use # orginal search's poperties my $ProcessedSearchArg = $SearchArg; $ProcessedSearchArg = { %$SearchArg, %Override } if keys %Override; $m->callback( %ARGS, CallbackName => 'ModifySearch', OriginalSearch => $SearchArg, Search => $ProcessedSearchArg, ); foreach ( $SearchArg, $ProcessedSearchArg ) { $_->{'Format'} ||= ''; $_->{'Query'} ||= ''; $_->{'Format'} =~ s/__(Web(?:Path|Base|BaseURL))__/scalar RT->Config->Get($1)/ge; # extract-message-catalog would "$1", so we avoid quotes for loc calls $_->{'Format'} =~ s/__loc\(["']?(\w+)["']?\)__/my $f = "$1"; loc($f)/ge; if ( $_->{'Query'} =~ /__Bookmarks__/ ) { $_->{'Rows'} = 999; # DEPRECATED: will be here for a while up to 3.10/4.0 my $bookmarks = $session{'CurrentUser'}->UserObj->FirstAttribute('Bookmarks'); $bookmarks = $bookmarks->Content if $bookmarks; $bookmarks ||= {}; my $query = join(" OR ", map " id = '$_' ", grep $bookmarks->{ $_ }, keys %$bookmarks ) || 'id=0'; $_->{'Query'} =~ s/__Bookmarks__/( $query )/g; } } my $QueryString = '?' . $m->comp( '/Elements/QueryString', %$SearchArg ); <%ARGS> $Name => undef $SavedSearch => undef %Override => () $IgnoreMissing => undef $hideable => 1 $ShowCustomize => 1 rt-4.0.19/share/html/Elements/CollectionList0000664000175000017500000001454412262650742017756 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> if (!$Collection && $Class eq 'RT::Tickets') { $Collection = RT::Tickets->new( $session{'CurrentUser'} ); $Collection->FromSQL($Query); } $TotalFound = $Collection->CountAll() unless defined $TotalFound; return '' if !$TotalFound && !$ShowEmpty; if ( $Rows ) { if ( $TotalFound <= $Rows ) { $Page = 1; } else { my $MaxPage = int( $TotalFound / $Rows ) + ( $TotalFound % $Rows ? 1 : 0 ); $Page = $MaxPage if $Page > $MaxPage; } } # XXX: ->{'order_by'} is hacky, but there is no way to check if # collection is ordered or not if ( @OrderBy && ($AllowSorting || !$Collection->{'order_by'}) ) { if ( $OrderBy[0] =~ /\|/ ) { @OrderBy = split /\|/, $OrderBy[0]; @Order = split /\|/,$Order[0]; } @OrderBy = grep length, @OrderBy; $Collection->OrderByCols( map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } } ( 0 .. $#OrderBy ) ); } $Collection->RowsPerPage( $Rows ) if $Rows; $Page = 1 unless $Page && $Page > 0; # workaround problems with $Page = '' or undef $Collection->GotoPage( $Page - 1 ); # SB uses page 0 as the first page # DisplayFormat lets us use a "temporary" format for display, while # still using our original format for next/prev page links. # bulk update uses this feature to add checkboxes $DisplayFormat ||= $Format; # Scrub the html of the format string to remove any potential nasties. $Format = $m->comp('/Elements/ScrubHTML', Content => $Format); $DisplayFormat = $m->comp('/Elements/ScrubHTML', Content => $DisplayFormat); my @Format = $m->comp('/Elements/CollectionAsTable/ParseFormat', Format => $DisplayFormat); # Find the maximum number of items in any row, so we can pad the table. my ($maxitems, $item) = (0, 0); foreach my $col (@Format) { $item++; if ( $col->{title} && ($col->{title} eq 'NEWLINE') ) { $item = 0; } else { $maxitems = $item if $item > $maxitems; } } $Class ||= $Collection->ColumnMapClassName; if ($Class =~ /::/) { # older passed in value $Class =~ s/s$//; $Class =~ s/:/_/g; } $m->out(''); if ( $ShowHeader ) { $m->comp('/Elements/CollectionAsTable/Header', %ARGS, Class => $Class, Format => \@Format, FormatString => $Format, Order => \@Order, OrderBy => \@OrderBy, Rows => $Rows, Page => $Page, AllowSorting => $AllowSorting, BaseURL => $BaseURL, GenericQueryArgs => $GenericQueryArgs, maxitems => $maxitems, ); } my ($i, $column_map) = (0, {}); while ( my $record = $Collection->Next ) { # Every ten rows, flush the buffer and put something on the page. $m->flush_buffer unless ++$i % 10; my $warning = 0; my $Classes = ''; $m->callback( CallbackName => 'EachRow', Record => $record, Warning => \$warning, Classes => \$Classes, Format => \@Format, ); $m->comp('/Elements/CollectionAsTable/Row', i => $i, Format => \@Format, record => $record, maxitems => $maxitems, ColumnMap => $column_map, Class => $Class, Warning => $warning, Classes => $Classes, ); } $m->out('
    '); if ( $Rows && $ShowNavigation && $TotalFound > $Rows ) { my $oddRows = ($TotalFound && $TotalFound % $Rows == 0 )? 0 : 1; my $pages = int( $TotalFound / $Rows ) + $oddRows; $pages = 1 if $pages < 1; my %query_args = map { $_ => $ARGS{$_} } @PassArguments; $m->comp( '/Elements/CollectionListPaging', BaseURL => $BaseURL, Rows => $Rows, TotalFound => $TotalFound, CurrentPage => $Page, Pages => $pages, URLParams => \%query_args ); } <%ARGS> $Class => '' $Collection => undef $TotalFound => undef $Format => undef $DisplayFormat => undef @Order => () @OrderBy => () $GenericQueryArgs => undef $Rows => undef $Page => 1 $Title => loc('Ticket Search') $BaseURL => RT->Config->Get('WebPath') . $m->request_comp->path .'?' @PassArguments => qw( Query Format Rows Page Order OrderBy) $AllowSorting => 0 $ShowNavigation => 1 $ShowHeader => 1 $ShowEmpty => 0 $Query => 0 rt-4.0.19/share/html/Elements/SelectNewTicketQueue0000664000175000017500000000471112262650742021064 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $queue = RT->Config->Get("DefaultQueue", $session{'CurrentUser'}); if (RT->Config->Get("RememberDefaultQueue", $session{'CurrentUser'})) { if (my $session_default = $session{'DefaultQueue'}) { $queue = $session_default; } } $m->callback(Queue => \$queue, CallbackName => 'DefaultQueue'); rt-4.0.19/share/html/Elements/SelectEqualityOperator0000664000175000017500000000454612262650742021501 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef @Options => (loc('less than'), loc('equal to'), loc('greater than'), loc('not equal to')) @Values => qw(< = > !=) $Default =>'' rt-4.0.19/share/html/Elements/ColumnMap0000664000175000017500000001573212262650742016722 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Class => 'RT__Ticket' $Name $Attr => undef <%ONCE> # This is scary and should totally be refactored -- jesse my $COLUMN_MAP = { id => { attribute => 'id', title => 'id', # loc align => 'right', value => sub { return $_[0]->id } }, Created => { attribute => 'Created', title => 'Created', # loc value => sub { return $_[0]->CreatedObj->AsString } }, CreatedRelative => { attribute => 'Created', title => 'Created', # loc value => sub { return $_[0]->CreatedObj->AgeAsString } }, CreatedBy => { attribute => 'Creator', title => 'Created By', # loc value => sub { return $_[0]->CreatorObj->Name } }, LastUpdated => { attribute => 'LastUpdated', title => 'Last Updated', # loc value => sub { return $_[0]->LastUpdatedObj->AsString } }, LastUpdatedRelative => { attribute => 'LastUpdated', title => 'Last Updated', # loc value => sub { return $_[0]->LastUpdatedObj->AgeAsString } }, LastUpdatedBy => { attribute => 'LastUpdatedBy', title => 'Last Updated By', # loc value => sub { return $_[0]->LastUpdatedByObj->Name } }, CustomField => { attribute => sub { return shift @_ }, title => sub { return pop @_ }, value => sub { # Cache the CF object on a per-request basis, to avoid # having to load it for every row my $key = join("-","CF", $_[0]->CustomFieldLookupType, $_[0]->CustomFieldLookupId, $_[-1]); my $cf = $m->notes($key); unless ($cf) { $cf = $_[0]->LoadCustomFieldByIdentifier($_[-1]); $m->notes($key, $cf); } # Display custom field contents, separated by newlines. # For Image custom fields we also show a thumbnail here. my $values = $cf->ValuesForObject( $_[0] ); my %types = map { $_ => 1 } qw/Image Date DateTime/; my @values = map { ( $types{$cf->Type} ? \($m->scomp( '/Elements/ShowCustomField' . $cf->Type, Object => $_ )) : $_->Content ), \'
    ', } @{ $values->ItemsArrayRef }; pop @values; # Remove that last
    return @values; }, }, CheckBox => { title => sub { my $name = $_[1] || 'SelectedTickets'; my $checked = $DECODED_ARGS->{ $name .'All' }? 'checked="checked"': ''; return \qq{}; }, value => sub { my $id = $_[0]->id; my $name = $_[2] || 'SelectedTickets'; return \qq{} if $DECODED_ARGS->{ $name . 'All'}; my $arg = $DECODED_ARGS->{ $name }; my $checked = ''; if ( $arg && ref $arg ) { $checked = 'checked="checked"' if grep $_ == $id, grep { defined and length } @$arg; } elsif ( $arg ) { $checked = 'checked="checked"' if $arg == $id; } return \qq{} }, }, RadioButton => { title => \' ', value => sub { my $id = $_[0]->id; my $name = $_[2] || 'SelectedTicket'; my $arg = $DECODED_ARGS->{ $name }; my $checked = ''; $checked = 'checked="checked"' if $arg && $arg == $id; return \qq{}; }, }, (map { my $value = RT->Config->Get($_); $_ => { value => sub { return \$value } }; } qw(WebPath WebBaseURL WebURL)), WebRequestPath => { value => sub { substr( $m->request_path, 1 ) } }, WebRequestPathDir => { value => sub { substr( $m->request_comp->dir_path, 1 ) } }, }; $COLUMN_MAP->{'CF'} = $COLUMN_MAP->{'CustomField'}; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 ); $m->callback( COLUMN_MAP => $COLUMN_MAP ); # first deal with class specific things if (RT::Interface::Web->ComponentPathIsSafe($Class) and $m->comp_exists("/Elements/$Class/ColumnMap")) { my $class_map = $m->comp("/Elements/$Class/ColumnMap", Attr => $Attr, Name => $Name ); return $class_map if defined $class_map; } return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/MySupportQueues0000664000175000017500000000427012262650742020174 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc("Queues I'm an AdminCc for"), bodyclass => "" &> <& /Elements/QueueSummaryByStatus, queue_filter => sub { $_->IsAdminCc($session{'CurrentUser'}->Id) }, &> rt-4.0.19/share/html/Elements/EditLinks0000664000175000017500000001534112262650742016711 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

    <&|/l&>Current Links

    <& ShowRelationLabel, id => $id, Label => loc('Depends on'), Relation => 'DependsOn' &>: % while (my $link = $Object->DependsOn->Next) { <& ShowLink, URI => $link->TargetURI &>
    % }
    <& ShowRelationLabel, id => $id, Label => loc('Depended on by'), Relation => 'DependedOnBy' &>: % while (my $link = $Object->DependedOnBy->Next) { <& ShowLink, URI => $link->BaseURI &>
    % }
    <& ShowRelationLabel, id => $id, Label => loc('Parents'), Relation => 'Parents' &>: % while (my $link = $Object->MemberOf->Next) { <& ShowLink, URI => $link->TargetURI &>
    % }
    <& ShowRelationLabel, id => $id, Label => loc('Children'), Relation => 'Children' &>: % while (my $link = $Object->Members->Next) { <& ShowLink, URI => $link->BaseURI &>
    % }
    <& ShowRelationLabel, id => $id, Label => loc('Refers to'), Relation => 'RefersTo' &>: % while (my $link = $Object->RefersTo->Next) { <& ShowLink, URI => $link->TargetURI &>
    %}
    <& ShowRelationLabel, id => $id, Label => loc('Referred to by'), Relation => 'ReferredToBy' &>: % while (my $link = $Object->ReferredToBy->Next) { % # Skip reminders % next if (UNIVERSAL::isa($link->BaseObj, 'RT::Ticket') && $link->BaseObj->Type eq 'reminder'); <& ShowLink, URI => $link->BaseURI &>
    % }
    <&|/l&>(Check box to delete)

    <&|/l&>New Links

    % if (ref($Object) eq 'RT::Ticket') { <&|/l&>Enter tickets or URIs to link tickets to. Separate multiple entries with spaces.
    <&|/l&>You may enter links to Articles as "a:###", where ### represents the number of the Article. % $m->callback( CallbackName => 'ExtraLinkInstructions' );

    % } elsif (ref($Object) eq 'RT::Queue') { <&|/l&>Enter queues or URIs to link queues to. Separate multiple entries with spaces.
    % } else { <&|/l&>Enter objects or URIs to link objects to. Separate multiple entries with spaces.
    % } % if ($Merge) { % } % $m->callback( CallbackName => 'NewLink' );
    <&|/l&>Merge into: <&|/l&>(only one ticket)
    <& ShowRelationLabel, id => $id, Label => loc('Depends on'), Relation => 'DependsOn' &>:
    <& ShowRelationLabel, id => $id, Label => loc('Depended on by'), Relation => 'DependedOnBy' &>:
    <& ShowRelationLabel, id => $id, Label => loc('Parents'), Relation => 'Parents' &>:
    <& ShowRelationLabel, id => $id, Label => loc('Children'), Relation => 'Children' &>:
    <& ShowRelationLabel, id => $id, Label => loc('Refers to'), Relation => 'RefersTo' &>:
    <& ShowRelationLabel, id => $id, Label => loc('Referred to by'), Relation => 'ReferredToBy' &>:
    <%INIT> my $id; if ($Object && $Object->Id) { $id = $Object->Id; } else { $id = 'new'; } <%ARGS> $Object => undef $Merge => 0 rt-4.0.19/share/html/Elements/EditCustomFieldBinary0000664000175000017500000000527012262650742021214 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ( $Values and my $value = $Values->Next ) { %# XXX - let user download the file(s) here? <% $value->Content %>
    % } % if (!$MaxValues || !$Values || $Values->Count < $MaxValues) { % } <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $MaxValues => undef rt-4.0.19/share/html/Elements/EditTimeValue0000664000175000017500000000475712262650742017535 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/SelectTimeUnits, Name => $UnitName &> <%ARGS> $Default => '' $Name => '' $ValueName => '' $UnitName => '' $InputUnits => 'minutes' <%INIT> $ValueName ||= $Name; $UnitName ||= ($Name||$ValueName) . '-TimeUnits'; if ($InputUnits eq 'minutes' && RT->Config->Get('DefaultTimeUnitsToHours', $session{'CurrentUser'})) { $Default = sprintf '%.3f', $Default / 60 unless $Default eq ''; } rt-4.0.19/share/html/Elements/SelectQueue0000664000175000017500000001060712262650742017247 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($Lite) { % my $d = RT::Queue->new($session{'CurrentUser'}); % $d->Load($Default); % } % else { % } <%args> $CheckQueueRight => 'CreateTicket' $ShowNullOption => 1 $ShowAllQueues => 1 $Name => undef $Verbose => undef $NamedValues => 0 $DefaultLabel => "-" $Default => 0 $Lite => 0 $OnChange => undef $Multiple => 0 $Size => 6 $Class => 'select-queue' <%init> my $cache_key = "SelectQueue---" . $session{'CurrentUser'}->Id . "---$CheckQueueRight---$ShowAllQueues"; if ( defined $session{$cache_key} && ref $session{$cache_key} eq 'ARRAY') { delete $session{$cache_key}; } if ( defined $session{$cache_key} && $session{$cache_key}{lastupdated} <= RT->System->QueueCacheNeedsUpdate ) { delete $session{$cache_key}; } if ( not defined $session{$cache_key} and not $Lite ) { my $q = RT::Queues->new($session{'CurrentUser'}); $q->UnLimit; if ( $Default ) { my $d = RT::Queue->new($session{'CurrentUser'}); $d->Load($Default); unless ( $d->CurrentUserHasRight('SeeQueue') ) { if ( $d->id ) { push @{$session{$cache_key}{queues}}, { Id => $d->id, Name => '#' . $d->id, Description => '#' . $d->id, }; } } } while (my $queue = $q->Next) { if ($ShowAllQueues || $queue->CurrentUserHasRight($CheckQueueRight)) { push @{$session{$cache_key}{queues}}, { Id => $queue->Id, Name => $queue->Name, Description => $queue->Description, }; } } $session{$cache_key}{lastupdated} = time(); } rt-4.0.19/share/html/Elements/RT__Template/0000775000175000017500000000000012262650742017413 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__Template/ColumnMap0000664000175000017500000000572412262650742021241 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->id }, }, Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, Queue => { title => 'Queue', # loc value => sub { return $_[0]->QueueObj->Name if $_[0]->Queue; return $_[0]->loc('Global'); }, }, QueueId => { title => 'Queue', # loc value => sub { $_[0]->Queue }, }, }; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/Checkbox0000664000175000017500000000443112262650742016547 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} /> <%ARGS> $Name => undef $Default => undef $True => undef $False => undef $IsChecked => undef <%INIT> $IsChecked = ($Default && $Default =~ /checked/i) ? ' checked="checked" ' : ""; 1; rt-4.0.19/share/html/Elements/SelectMatch0000664000175000017500000000552312262650742017220 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Like => loc('matches') $NotLike => loc("doesn't match") $True => loc('is') $False => loc("isn't") $Default => undef <%INIT> my $TrueDefault = ''; my $FalseDefault=''; my $LikeDefault=''; my $NotLikeDefault =''; if ($Default && $Default =~ /false|!=/i) { $FalseDefault = qq[ selected="selected"]; } elsif ($Default && $Default =~ /true|=/i) { $TrueDefault = qq[ selected="selected"]; } elsif ($Default && $Default =~ /notlike|NOT LIKE/i) { $NotLikeDefault = qq[ selected="selected"]; } else { $LikeDefault = qq[ selected="selected"]; } rt-4.0.19/share/html/Elements/QueryString0000664000175000017500000000467412262650742017326 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my @params; for my $key (sort keys %ARGS) { my $value = $ARGS{$key}; next unless defined $value; $key = $m->interp->apply_escapes( $key, 'u' ); if( UNIVERSAL::isa( $value, 'ARRAY' ) ) { push @params, map $key ."=". $m->interp->apply_escapes( $_, 'u' ), @$value; } else { push @params, $key ."=". $m->interp->apply_escapes($value, 'u'); } } return join '&', sort(@params); rt-4.0.19/share/html/Elements/ScrubHTML0000664000175000017500000000410212262650742016557 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> return ScrubHTML($Content); <%args> $Content => undef rt-4.0.19/share/html/Elements/SelectTimezone0000664000175000017500000000503112262650742017750 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ONCE> use DateTime; my @names = DateTime::TimeZone->all_names; my %label; my $dt = DateTime->now; for ( @names ) { $dt->set_time_zone( $_ ); $label{$_} = $_ . ' ' . $dt->strftime('%z'); } <%ARGS> $ShowNullOption => 1 $Name => undef $Default => 0 rt-4.0.19/share/html/Elements/MessageBox0000664000175000017500000000750412262650742017062 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, CallbackName => 'AfterTextArea' ); % if (RT->Config->Get('MessageBoxRichText', $session{'CurrentUser'})) { " /> % } <%INIT> my $message = ''; if ( $QuoteTransaction ) { my $transaction = RT::Transaction->new( $session{'CurrentUser'} ); $transaction->Load( $QuoteTransaction ); $message = $transaction->Content( Quote => 1 ); } my $signature = ''; if ( $IncludeSignature and my $text = $session{'CurrentUser'}->UserObj->Signature ) { $signature = "-- \n". $text; } # wrap="something" seems to really break IE + richtext my $wrap_type = ''; if ( not RT->Config->Get('MessageBoxRichText', $session{'CurrentUser'}) ) { $wrap_type = 'wrap="' . $m->interp->apply_escapes($Wrap, 'h') . '"'; } # If there's no cols specified, we want to set the width to 100% in CSS my $width_attr; if ($Width) { $width_attr = 'cols'; } else { $width_attr = 'style'; $Width = 'width: 100%'; } <%ARGS> $QuoteTransaction => undef $Name => 'Content' $Default => '' $Width => RT->Config->Get('MessageBoxWidth', $session{'CurrentUser'} ) $Height => RT->Config->Get('MessageBoxHeight', $session{'CurrentUser'} ) || 15 $Wrap => RT->Config->Get('MessageBoxWrap', $session{'CurrentUser'} ) || 'SOFT' $IncludeSignature => RT->Config->Get('MessageBoxIncludeSignature'); $IncludeArticle => 1; rt-4.0.19/share/html/Elements/ShowCustomFieldDateTime0000664000175000017500000000433412262650742021517 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $content = $Object->Content; my $DateObj = RT::Date->new ( $session{'CurrentUser'} ); $DateObj->Set( Format => 'ISO', Value => $content ); $content = $DateObj->AsString; <%$content|n%> <%ARGS> $Object rt-4.0.19/share/html/Elements/WidgetBar0000664000175000017500000000425212262650742016672 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % return unless ($menu); % for my $child ($menu->children) { % if (defined $child->raw_html) { <% $child->raw_html |n %> % } else { <% $child->title %>\ % } % } <%ARGS> $menu rt-4.0.19/share/html/Elements/CSRF0000664000175000017500000000625212262650742015561 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Possible cross-site request forgery') &> <& /Elements/Tabs &>

    <&|/l&>Possible cross-site request forgery

    % my $strong_start = ""; % my $strong_end = "";

    <&|/l_unsafe, $strong_start, $strong_end, $Reason, $action &>RT has detected a possible [_1]cross-site request forgery[_2] for this request, because [_3]. A malicious attacker may be trying to [_1][_4][_2] on your behalf. If you did not initiate this request, then you should alert your security team.

    % my $start = qq||; % my $end = qq||;

    <&|/l_unsafe, $escaped_path, $action, $start, $end &>If you really intended to visit [_1] and [_2], then [_3]click here to resume your request[_4].

    <& /Elements/Footer, %ARGS &> % $m->abort; <%ARGS> $OriginalURL => '' $Reason => '' $Token => '' <%INIT> my $escaped_path = $m->interp->apply_escapes($OriginalURL, 'h'); $escaped_path = "$escaped_path"; my $url_with_token = URI->new($OriginalURL); $url_with_token->query_form([CSRF_Token => $Token]); my $action = RT::Interface::Web::PotentialPageAction($OriginalURL) || loc("perform actions"); rt-4.0.19/share/html/Elements/PageLayout0000664000175000017500000000476612262650742017106 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $show_menu ) { % }
    <& /Elements/WidgetBar, menu => PageWidgets() &>
    % $m->callback( %ARGS, CallbackName => 'BeforeBody' ); % $m->flush_buffer(); # we've got the page laid out, let's flush the buffer; <%ARGS> $title => $m->callers(-1)->path $show_menu => 1 rt-4.0.19/share/html/Elements/SetupSessionCookie0000664000175000017500000000426112262650742020620 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return if $m->is_subrequest; # avoid reentrancy, as suggested by masonbook RT::Interface::Web::LoadSessionFromCookie(); return (); <%ARGS> $SessionCookie => undef rt-4.0.19/share/html/Elements/ShowLink0000664000175000017500000000562712262650742016567 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($URI->IsLocal) { % my $member = $URI->Object; % my $has_name = UNIVERSAL::can($member, 'Name') || (UNIVERSAL::can($member, '_Accessible') && $member->_Accessible('Name', 'read')); % if (UNIVERSAL::isa($member, "RT::Ticket")) { % my $inactive = $member->QueueObj->IsInactiveStatus($member->Status); <%$member->Id%>: (<& /Elements/ShowUser, User => $member->OwnerObj &>) <%$member->Subject || ''%> [<% loc($member->Status) %>] % } elsif ($has_name) { <%$URI->Resolver->AsString%>: <%$member->Name%> % } else { <%$URI->Resolver->AsString%> % } % } else { <%$URI->Resolver->AsString%> % } <%ARGS> $URI => undef <%INIT> my $href = $URI->Resolver->HREF; if ( $URI->IsLocal ) { my $base = RT->Config->Get('WebBaseURL'); # URI->rel doesn't contain the leading '/' $href = '/' . URI->new($href)->rel($base); } rt-4.0.19/share/html/Elements/SelectWatcherType0000664000175000017500000000473612262650742020430 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my @types; if ($Scope =~ /queue/) { @types = RT::Queue->ManageableRoleGroupTypes; } else { @types = qw(Requestor Cc AdminCc); } <%ARGS> $AllowNull => 1 $Default=>undef $Scope => 'ticket' $Name => 'WatcherType' rt-4.0.19/share/html/Elements/Refresh0000664000175000017500000000470512262650742016423 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my @refreshevery = qw(120 300 600 1200 3600 7200); <%ARGS> $Name => undef $Default => 0 rt-4.0.19/share/html/Elements/SimpleSearch0000664000175000017500000000445012262650742017401 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $SendTo => '/Search/Simple.html' rt-4.0.19/share/html/Elements/SelectStatus0000664000175000017500000001162412262650742017446 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> ### XXX: no cover for Tools/MyDay.html my %statuses_by_lifecycle; if ( @Statuses ) { $statuses_by_lifecycle{''} = \@Statuses; } elsif ( $TicketObj ) { my @status; my $current = $TicketObj->Status; push @status, $current; my $lifecycle = $TicketObj->QueueObj->Lifecycle; my %has = (); foreach my $next ( $lifecycle->Transitions( $current ) ) { my $check = $lifecycle->CheckRight( $current => $next ); $has{ $check } = $TicketObj->CurrentUserHasRight( $check ) unless exists $has{ $check }; push @status, $next if $has{ $check }; } $statuses_by_lifecycle{$lifecycle->Name} = \@status; } elsif ( $QueueObj ) { my $lifecycle = $QueueObj->Lifecycle; $statuses_by_lifecycle{$lifecycle->Name} = [ $lifecycle->Transitions('') ]; } elsif ( %Queues ) { for my $id (keys %Queues) { my $queue = RT::Queue->new($session{'CurrentUser'}); $queue->Load($id); if ($queue->id) { my $lifecycle = $queue->Lifecycle; $statuses_by_lifecycle{$lifecycle->Name} = [ $lifecycle->Valid ]; } } } else { for my $lifecycle (map { RT::Lifecycle->Load($_) } RT::Lifecycle->List) { $statuses_by_lifecycle{$lifecycle->Name} = [ $lifecycle->Valid ]; } } if (keys %statuses_by_lifecycle) { my %simplified; my $key = sub { join "\0", sort @{$_[0]}; }; for my $name (sort keys %statuses_by_lifecycle) { my $matched; my $statuses = $statuses_by_lifecycle{$name}; for my $simple (sort keys %simplified) { if ($key->($statuses) eq $key->($simplified{$simple})) { # Statuses are the same, join 'em! $simplified{"$simple, $name"} = delete $simplified{$simple}; $matched++; last; } } unless ($matched) { $simplified{$name} = $statuses; } } %statuses_by_lifecycle = %simplified; } my $group_by_lifecycle = keys %statuses_by_lifecycle > 1; <%ARGS> $Name => undef @Statuses => () $TicketObj => undef $QueueObj => undef %Queues => () $Default => '' $SkipDeleted => 0 $DefaultValue => 1 $DefaultLabel => "-" $Multiple => 0 $Size => 6 rt-4.0.19/share/html/Elements/SelectBoolean0000664000175000017500000000473312262650742017545 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $True => loc("is") $Default => 'true' $TrueVal => 1 $FalseVal => 0 $False => loc("isn't") <%INIT> my $TrueDefault = ''; my $FalseDefault = ''; if ($Default && $Default !~ /true/i) { $FalseDefault = 'selected="selected"'; } else { $TrueDefault = 'selected="selected"'; } rt-4.0.19/share/html/Elements/EditCustomFieldSelect0000664000175000017500000001742112262650742021210 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Build up the set of cascading select boxes as "guides" %# each one limits the options of the final one a bit %# (perhaps by tweaking the .display style?) % my $selected = 0; % my @category; % my $id = $NamePrefix . $CustomField->Id; % my $out = $m->scomp('SELF:options', %ARGS, SelectedRef => \$selected, CategoryRef => \@category); % if (!$HideCategory and @category and not $CustomField->BasedOnObj->id) { %# XXX - Hide this select from w3m?
    % } elsif ($CustomField->BasedOnObj->id) { % } % if ( $RenderType eq 'List' ) {
    % if ( $checktype eq 'radio' ) {
    />
    % } % my $CFVs = $CustomField->Values; % while ( my $value = $CFVs->Next ) { % my $content = $value->Name; % my $labelid = "$name-". $value->id;
    />
    % }
    % } else { % if (@category) { %# this hidden select is to supply a full list of values, %# see filter_cascade() in js/cascaded.js % } % } <%init> # Handle render types $RenderType ||= $CustomField->RenderType; if ( $RenderType eq 'Dropdown' ) { # Turn it into a dropdown $Rows = 0; } # The following is for rendering checkboxes / radio buttons only my ($checktype, $name); if ( $MaxValues == 1 ) { ($checktype, $name) = ('radio', $NamePrefix . $CustomField->Id . '-Value'); } else { ($checktype, $name) = ('checkbox', $NamePrefix . $CustomField->Id . '-Values'); } @Default = grep defined && length, @Default; if ( !@Default && $Values ) { @Default = map $_->Content, @{ $Values->ItemsArrayRef }; } my %default = map {lc $_ => 1} @Default; <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef @Default => () $Values => undef $Multiple => 0 $Rows => undef $HideCategory => 0 $RenderType => undef $MaxValues => 1 <%METHOD options> % @Default = grep defined && length, @Default; % # $Values->HasEntry is too slow here % if ( !@Default && $Values ) { % @Default = map $_->Content, @{$Values->ItemsArrayRef}; % } % $_ = lc $_ foreach @Default; % my $selected; % my $CFVs = $CustomField->Values; % my @levels; % while ( my $value = $CFVs->Next ) { % my $name = $value->Name; % my $category = $value->Category || ''; % my $level = (split /:/, $category, 2)[0] || ''; % while (@levels) { % if ($levels[-1] eq $level) { % $level = ''; % last; % } elsif (index($level, $levels[-1]) != 0) { % $m->out(''); % pop @levels; % } else { % last; % } % } % if ( length $level ) { % push @$CategoryRef, [0+@levels, $level]; % push @levels, $level; % } % } % for (@levels) { % } <%ARGS> $CustomField => undef @Default => () $Values => undef $SelectedRef => undef $CategoryRef => undef rt-4.0.19/share/html/Elements/SelectLinkType0000664000175000017500000000464712262650742017731 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => "LinkType" $Default => '' rt-4.0.19/share/html/Elements/ShowCustomFieldImage0000664000175000017500000000443512262650742021047 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $url = RT->Config->Get('WebPath') . "/Download/CustomFieldValue/".$Object->Id.'/'.$m->interp->apply_escapes($Object->Content, 'u'); <% $Object->Content %> <%ARGS> $Object rt-4.0.19/share/html/Elements/ShowCustomFieldWikitext0000664000175000017500000000464212262650742021635 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $content = $Object->LargeContent || $Object->Content; % $content = $m->comp('/Elements/ScrubHTML', Content => $content); % my $base = $Object->Object->WikiBase; % my $wiki_content = Text::WikiFormat::format( $content."\n" , {}, { extended => 1, absolute_links => 1, implicit_links => RT->Config->Get('WikiImplicitLinks'), prefix => $base} ); <%$wiki_content|n%> <%init> use Text::WikiFormat; <%ARGS> $Object rt-4.0.19/share/html/Elements/RefreshHomepage0000664000175000017500000000453412262650742020071 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc('Refresh')&>
    <& /Elements/Refresh, Name => 'HomeRefreshInterval', Default => $session{'home_refresh_interval'}||RT->Config->Get('HomePageRefreshInterval', $session{'CurrentUser'}) &> <& /Elements/Submit, Label => loc('Go!') &>
    rt-4.0.19/share/html/Elements/QueueSummaryByStatus0000664000175000017500000001221612262650742021162 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for my $status ( @statuses ) { % } <%PERL> my $i = 0; for my $queue (@queues) { $i++; my $lifecycle = $lifecycle{ lc $queue->{'Lifecycle'} }; my @queue_statuses = grep { $lifecycle->IsValid($_) } @statuses; <%perl> for my $status (@statuses) { if ( $lifecycle->IsValid( $status ) ) { % } else { % } % } % }
    <&|/l&>Queue<% loc($status) %>
    <% $queue->{Name} %> <% $data->{$queue->{id}}->{lc $status} || '-' %> -
    <%INIT> my $build_search_link = sub { my ($queue_name, $extra_query) = @_; $queue_name =~ s/(['\\])/\\$1/g; #' return RT->Config->Get('WebPath') . "/Search/Results.html?Query=" . $m->interp->apply_escapes("Queue = '$queue_name' AND $extra_query", 'u'); }; my $link_all = sub { my ($queue, $all_statuses) = @_; return $build_search_link->($queue->{Name}, "(".join(" OR ", map "Status = '$_'", @$all_statuses).")"); }; my $link_status = sub { my ($queue, $status) = @_; return $build_search_link->($queue->{Name}, "Status = '$status'"); }; $m->callback( CallbackName => 'LinkBuilders', build_search_link => \$build_search_link, link_all => \$link_all, link_status => \$link_status, ); my $Queues = RT::Queues->new( $session{'CurrentUser'} ); $Queues->UnLimit(); $m->callback( CallbackName => 'SQLFilter', Queues => $Queues ); my @queues = grep $queue_filter->($_), @{ $Queues->ItemsArrayRef }; $m->callback( CallbackName => 'Filter', Queues => \@queues ); @queues = map { { id => $_->Id, Name => $_->Name, Description => $_->Description || '', Lifecycle => $_->Lifecycle->Name, } } grep $_, @queues; my %lifecycle; for my $queue (@queues) { my $cycle = RT::Lifecycle->Load( $queue->{'Lifecycle'} ); $lifecycle{ lc $cycle->Name } = $cycle; } unless (@statuses) { my %seen; foreach my $set ( 'initial', 'active' ) { foreach my $lifecycle ( map $lifecycle{$_}, sort keys %lifecycle ) { push @statuses, grep !$seen{ lc $_ }++, $lifecycle->Valid($set); } } } my $data = {}; my $statuses = {}; use RT::Report::Tickets; my $report = RT::Report::Tickets->new( RT->SystemUser ); my $query = "(". join(" OR ", map {s{(['\\])}{\\$1}g; "Status = '$_'"} @statuses) #' .") AND (". join(' OR ', map "Queue = ".$_->{id}, @queues) .")"; $query = 'id < 0' unless @queues; $report->SetupGroupings( Query => $query, GroupBy => [qw(Status Queue)] ); while ( my $entry = $report->Next ) { $data->{ $entry->__Value("Queue") }->{ $entry->__Value("Status") } = $entry->__Value('id'); $statuses->{ $entry->__Value("Status") } = 1; } <%ARGS> $queue_filter => undef @statuses => () rt-4.0.19/share/html/Elements/ShowMemberships0000664000175000017500000000631012262650742020136 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      % while ( my $GroupMember = $GroupMembers->Next ) { % my $Group = RT::Group->new($session{'CurrentUser'}); % $Group->Load($GroupMember->GroupId) or next; % if ($Group->Domain eq 'UserDefined') {
    • <% $Group->Name %>
    • % } elsif ($Group->Domain eq 'SystemInternal') {
    • <% loc($Group->Type) %>
    • % } % }
    <%INIT> my $GroupMembers = RT::GroupMembers->new($session{'CurrentUser'}); $GroupMembers->Limit( FIELD => 'MemberId', VALUE => $UserObj->Id ); my $alias = $GroupMembers->Join( TYPE => 'left', ALIAS1 => 'main', FIELD1 => 'GroupId', TABLE2 => 'Groups', FIELD2 => 'id' ); $GroupMembers->Limit( ALIAS => $alias, FIELD => 'Domain', OPERATOR => '=', VALUE => 'SystemInternal', ); $GroupMembers->Limit( ALIAS => $alias, FIELD => 'Domain', OPERATOR => '=', VALUE => 'UserDefined', ); $GroupMembers->OrderByCols( { ALIAS => $alias, FIELD => 'Domain' }, { ALIAS => $alias, FIELD => 'Name' }, ); $GroupMembers->RowsPerPage($Limit) if $Limit; <%ARGS> $UserObj $Limit => undef rt-4.0.19/share/html/Elements/Dashboards0000664000175000017500000000445312262650742017077 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc('Dashboards'), title_href => RT->Config->Get('WebPath').'/Dashboards/index.html', titleright => loc("Edit"), titleright_href => RT->Config->Get('WebPath').'/Dashboards/index.html', &> <& /Dashboards/Elements/ShowDashboards, IncludeSuperuserGroups => 0 &> rt-4.0.19/share/html/Elements/ListActions0000664000175000017500000000617412262650742017263 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <&| /Widgets/TitleBox, title => loc('Results'), %{$titlebox || {}} &>
      % foreach my $action (@actions) {
    • <%$action%>
    • % }
    <%init> # backward compatibility, don't use array in new code, but use keyed hash if ( ref( $session{'Actions'} ) eq 'ARRAY' ) { unshift @actions, @{ delete $session{'Actions'} }; $session{'i'}++; } if ( ref( $session{'Actions'}{''} ) eq 'ARRAY' ) { unshift @actions, @{ delete $session{'Actions'}{''} }; $session{'i'}++; } my $actions_pointer = $DECODED_ARGS->{'results'}; if ($actions_pointer && ref( $session{'Actions'}->{$actions_pointer} ) eq 'ARRAY' ) { unshift @actions, @{ delete $session{'Actions'}->{$actions_pointer} }; $session{'i'}++; } # XXX: run callbacks per row really crazy idea @actions = grep $_, grep { my $skip; $m->callback( %ARGS, row => \$_, skip => \$skip, CallbackName => 'ModifyRow', ); !$skip; } grep $_, @actions; return unless @actions; <%ARGS> $titlebox => {} @actions => undef rt-4.0.19/share/html/Elements/SavedSearches0000664000175000017500000000607612262650742017550 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc('Saved Searches') &> % foreach my $Object (@Objects) { % my $SavedSearches = RT::SavedSearches->new($session{CurrentUser}); % $SavedSearches->LimitToPrivacy(join('-',ref($Object),$Object->Id),'Ticket'); % my $title; % if (ref $Object eq 'RT::User' && $Object->Id == $session{CurrentUser}->Id) { % $title = loc("My saved searches"); % } else { % $title = loc("[_1]'s saved searches",$Object->Name); % } % $title = $m->interp->apply_escapes($title, 'h'); <& /Elements/CollectionList, %ARGS, Class => 'RT::SavedSearch', Format => qq{'__Name__/TITLE:$title'}, Collection => $SavedSearches, PassArguments => [qw(Format Name id)], &> % } <%init> my @Objects = RT::SavedSearch->new($session{CurrentUser})->ObjectsForLoading; push @Objects, RT::System->new( $session{'CurrentUser'} ) if $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser' ); <%ARGS> $user_attrs => undef rt-4.0.19/share/html/Elements/Footer0000664000175000017500000000603612262650742016262 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# End of div#body from /Elements/PageLayout
    % $m->callback( %ARGS ); % if ($Debug >= 2 ) { % require Data::Dumper; % my $d = Data::Dumper->new([\%ARGS], [qw(%ARGS)]);
    <%$d->Dump() %>
    
    % } <%ARGS> $Debug => 0 $Menu => 1 rt-4.0.19/share/html/Elements/SelectDateRelation0000664000175000017500000000440112262650742020531 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Default => undef $Before => loc('before') $On => loc('on') $After => loc('after') rt-4.0.19/share/html/Elements/Section0000664000175000017500000000404712262650742016430 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

    <%$title%>

    <%ARGS> $title => undef rt-4.0.19/share/html/Elements/EditCustomFieldDateTime0000664000175000017500000000457212262650742021470 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $name = $NamePrefix.$CustomField->Id.'-Values'; <& /Elements/SelectDate, Name => "$name", current => 0 &> (<%$DateObj->AsString%>) <%INIT> my $DateObj = RT::Date->new ( $session{'CurrentUser'} ); $DateObj->Set( Format => 'ISO', Value => $Default ); <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $MaxValues => 1 rt-4.0.19/share/html/Elements/ShowCustomFieldBinary0000664000175000017500000000423712262650742021251 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <% $Object->Content %> <%ARGS> $Object => undef rt-4.0.19/share/html/Elements/BevelBoxRaisedStart0000664000175000017500000000415112262650742020674 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> <%ARGS> $EditClass => 1 $ClassObj => undef $ArticleObj => undef rt-4.0.19/share/html/Articles/Article/Elements/ShowLinks0000664000175000017500000000657512262650742022106 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Refers to:
    <&|/l&>Referred to by:
    <%args> $article => undef rt-4.0.19/share/html/Articles/Article/Elements/SelectSearchPrivacy0000664000175000017500000000503312262650742024054 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $user = $session{'CurrentUser'}->UserObj; my $groups = $session{'CurrentUser'}->UserObj->OwnGroups; $Default = '' unless defined $Default; <%ARGS> $Name => 'GroupField' $Default => '' rt-4.0.19/share/html/Articles/Article/Elements/EditCustomFields0000664000175000017500000000576712262650742023376 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while (my $CustomField = $CustomFields->Next()) {
    % } <%INIT> my $CustomFields; my $NamePrefix; if ($ArticleObj->id && $ArticleObj->ClassObj->id) { $CustomFields = $ArticleObj->CustomFields(); $NamePrefix = "Object-RT::Article-".$ArticleObj->Id."-CustomField-"; } else { $CustomFields = $ClassObj->ArticleCustomFields(); $NamePrefix = "Object-RT::Article--CustomField-"; } <%ARGS> $ArticleObj => undef $ClassObj => undef $CFContent => undef $id => undef rt-4.0.19/share/html/Articles/Article/Elements/ShowTopics0000664000175000017500000000436412262650742022261 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $topics = RT::ObjectTopics->new($session{'CurrentUser'}); % $topics->LimitToObject($article); % my @topics; % while (my $t = $topics->Next) { <& /Articles/Elements/ShowTopic, topic => $t->TopicObj &>
    % }
    <%args> $article => undef rt-4.0.19/share/html/Articles/Article/Elements/LinkEntryInstructions0000664000175000017500000000417212262650742024520 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Type a: before article numbers and t: before ticket numbers. <&|/l&>Separate multiple entries with spaces. rt-4.0.19/share/html/Articles/Article/Elements/EditTopics0000664000175000017500000001130212262650742022214 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> use Tree::Simple; my $inClass = RT::Topics->new($session{'CurrentUser'}); # global topics should always be available push @Classes,$RT::System unless grep { $_ == $RT::System } @Classes; $inClass->LimitToObject($_) for @Classes; $inClass->OrderByCols({FIELD => 'Name'}); my $inTree = buildTree($inClass); my $otherClass = RT::Topics->new($session{'CurrentUser'}); if (@Classes) { $otherClass->Limit(FIELD => 'ObjectType', VALUE => 'RT::Class'); for (@Classes) { $otherClass->Limit(FIELD => 'ObjectId', OPERATOR => '!=', VALUE => $_->Id); } } else { $otherClass->UnLimit; } my $otherTree = buildTree($otherClass); my $articleTopics = RT::ObjectTopics->new($session{'CurrentUser'}); $articleTopics->LimitToObject($ArticleObj); my %topics; while (my $topicObj = $articleTopics->Next) { $topics{$topicObj->Topic} = 1; } $topics{$_} = 1 for @Topics; sub buildTree { my $query = shift; use Tree::Simple; my $tree = Tree::Simple->new(Tree::Simple->ROOT); my %lookup = (0 => $tree); my @todo; while (my $topic = $query->Next) { push @todo, $topic; } { my $changed = 0; my @work = @todo; @todo = (); for my $topic (@work) { if (defined $lookup{$topic->Parent}) { $lookup{$topic->Id} = Tree::Simple->new($topic, $lookup{$topic->Parent}); $changed = 1; } else { push @todo, $topic; } } redo unless $changed == 0; } return $tree; } <%ARGS> $ArticleObj => RT::Article->new($session{'CurrentUser'}) @Classes => () @Topics => () $OnlyThisClass => undef rt-4.0.19/share/html/Articles/Article/Elements/EditLinks0000664000175000017500000001010012262650742022026 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <%ARGS> $ArticleObj => undef $id => undef rt-4.0.19/share/html/Articles/Article/Elements/Preformatted0000664000175000017500000001021212262650742022600 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($include{Name}) { #<%$Article->Id%>: <%$Article->Name || loc('(no name)')%> <%'-' x length("#".$Article->Id.": ".($Article->Name || loc('(no name)'))) %> % } % if ( $include{Summary} && ($Article->Summary||'') =~ /\S/ ) { <% $Article->Summary %> % } % while (my $cf = $cfs->Next) { % next unless $include{"CF-Title-".$cf->Id} or $include{"CF-Value-".$cf->Id}; % my $values = $Article->CustomFieldValues($cf->Id); % if ($values->Count == 1) { % my $value = $values->First; % if ($include{"CF-Title-".$cf->Id}) { <% $cf->Name%>: <% '-' x length($cf->Name) %> % } % if ($value && $include{"CF-Value-".$cf->Id}) { <% $get_content->( $value ) %> % } % } else { % my $val = $values->Next; % if ($include{"CF-Title-".$cf->Id}) { <% $cf->Name%>: \ % } % if ($val && $include{"CF-Value-".$cf->Id}) { <% $get_content->( $val ) %> % } % while ($val = $values->Next) { % if ($include{"CF-Title-".$cf->Id}) { <% ' ' x length($cf->Name)%> \ % } % if ($include{"CF-Value-".$cf->Id}) { <% $get_content->( $val ) %> % } % } % } % } <%init> my $class = $Article->ClassObj; my %include = (Name => 1, Summary => 1); my $cfs = $class->ArticleCustomFields; $include{"CF-Title-".$_->Id} = $include{"CF-Value-".$_->Id} = 1 while $_ = $cfs->Next; $include{$_} = not $class->FirstAttribute("Skip-$_") for keys %include; my $de_htmlify = sub { my $content = shift; require HTML::TreeBuilder; my $tree = HTML::TreeBuilder->new; $tree->parse($content); $tree->eof(); require HTML::FormatText; my $formatter = HTML::FormatText->new(leftmargin => 0, rightmargin => 50); $content = $formatter->format($tree); return $content; }; my $get_content = sub { my $value = shift; return '' unless $value; my $content = $value->Content; return '' unless defined $content && length $content; $m->callback( %ARGS, CallbackName => 'ProcessContent', content => \$content, ); if ( $content =~ /<.{1,5}>/ ) { $content = $de_htmlify->( $content ); } return $content; }; <%args> $Article rt-4.0.19/share/html/Articles/Article/ExtractIntoClass.html0000664000175000017500000000631312262650742022574 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Extract a new article from ticket #[_1]',$Ticket) &> <& /Elements/Tabs &>

    <&|/l&>Create a new article in:

      % my $Classes = RT::Classes->new($session{'CurrentUser'}); % $Classes->LimitToEnabled(); % while (my $Class = $Classes->Next) {
    • <%$Class->Name%>: <%$Class->Description || ''%>
    • % }
    <%args> $Ticket => undef rt-4.0.19/share/html/Articles/Article/Delete.html0000664000175000017500000000636312262650742020551 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> % if ($ARGS{'Delete'}) { <%$title%> <& /Elements/ListActions, actions => \@results &> % } else { <&|/l&>Are you sure you want to delete this article?
    rt-4.0.19/share/html/Elements/RT__Article/0000775000175000017500000000000012262650742017223 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__Article/ColumnMap0000664000175000017500000000716312262650742021050 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef <%ONCE> my $COLUMN_MAP; $COLUMN_MAP = { Name => { attribute => 'Name', title => 'Name', # loc value => sub { $_[0]->Name }, }, Summary => { attribute => 'Summary', title => 'Summary', # loc value => sub { $_[0]->Summary }, }, Class => { attribute => 'Class', title => 'Class id', # loc value => sub { $_[0]->Class }, }, ClassName => { attribute => 'Class', title => 'Class', # loc value => sub { $_[0]->ClassObj->Name }, }, CreatedRelative => { attribute => 'Created', title => 'Created', # loc value => sub { $_[0]->CreatedObj->AgeAsString }, }, LastUpdatedRelative => { attribute => 'LastUpdated', title => 'LastUpdated', # loc value => sub { $_[0]->LastUpdatedObj->AgeAsString }, }, Topics => { title => 'Topics', # loc value => sub { my $topics = ''; my $Topics = $_[0]->Topics; while ( my $t = $Topics->Next ) { $topics .= $m->scomp( '/Articles/Elements/ShowTopic', topic => $t->TopicObj ) . '
    '; } return \$topics; }, } }; <%init> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/EditCustomFieldText0000664000175000017500000000525412262650742020716 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ($Values and my $value = $Values->Next ) {
    % } % if (!$MaxValues or !$Values or $Values->Count < $MaxValues) { % } <%INIT> # XXX - MultiValue textarea is for now outlawed. $MaxValues = 1; <%ARGS> $Object => undef $CustomField => undef $NamePrefix => '' $Default => undef $Values => undef $MaxValues => undef $Cols $Rows rt-4.0.19/share/html/Elements/EditCustomFieldFreeform0000664000175000017500000000533312262650742021535 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $name = $NamePrefix . $CustomField->Id . '-Value'; % if ($Multiple) { % } else { % } <%INIT> if ( $Multiple and $Values ) { $Default = join "\n", map $_->Content, @{ $Values->ItemsArrayRef }; } unless ( $Multiple ) { $Default =~ s/\s*\n+\s*/ /g if $Default; } <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $Multiple => undef $Cols $Rows rt-4.0.19/share/html/Elements/RT__Group/0000775000175000017500000000000012262650742016734 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__Group/ColumnMap0000664000175000017500000000632012262650742020553 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->id }, }, HasMember => { title => 'Member', # loc value => sub { my $group = $_[0]; my $uid = $_[2] || return ''; return $group->HasMember( $uid )? $_[0]->loc('yes'): $_[0]->loc('no'); }, }, HasMemberRecursively => { title => 'Recursive member', # loc value => sub { my $group = $_[0]; my $uid = $_[2] || return ''; return $group->HasMemberRecursively( $uid )? $_[0]->loc('yes'): $_[0]->loc('no'); }, }, Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, }; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Elements/ShowUser0000664000175000017500000000546312262650742016606 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Released under the terms of version 2 of the GNU Public License <%INIT> # $User is an RT::User object # $Address is Email::Address object my $comp = '/Elements/ShowUser'. ucfirst lc $style; unless ( RT::Interface::Web->ComponentPathIsSafe($comp) and $m->comp_exists( $comp ) ) { $RT::Logger->error( 'Either system config or user #' . $session{'CurrentUser'}->id . ' picked UsernameFormat '. $style . ', but '. $comp . "doesn't exist" ); return $m->comp('/Elements/ShowUserConcise', User => $User, Address => $Address, NoEscape => $NoEscape ); } return $m->comp( $comp, User => $User, Address => $Address, NoEscape => $NoEscape ); <%ARGS> $User => undef $Address => undef $NoEscape => 0 $style => RT->Config->Get('UsernameFormat', $session{'CurrentUser'}) rt-4.0.19/share/html/Elements/RT__Queue/0000775000175000017500000000000012262650742016724 5ustar chmrrchmrrrt-4.0.19/share/html/Elements/RT__Queue/ColumnMap0000664000175000017500000000745012262650742020550 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->id }, }, Disabled => { title => \' ', attribute => 'Disabled', value => sub { return $_[0]->Disabled? $_[0]->loc('Disabled'): $_[0]->loc('Enabled') }, }, Priority => { title => 'Priority', # loc value => sub { return $_[0]->InitialPriority .'-'. $_[0]->FinalPriority }, }, Address => { title => 'Address', # loc value => sub { return ($_[0]->CorrespondAddress||'-') .'/'. ($_[0]->CommentAddress||'-') }, }, # SubjectTag is special as we can not sort SubjectTag => { title => 'SubjectTag', # loc attribute => 'SubjectTag', value => sub { return $_[0]->SubjectTag }, }, Sign => { title => 'Sign', # loc value => sub { return $_[0]->Sign? $_[0]->loc('yes') : $_[0]->loc('no') }, }, Encrypt => { title => 'Encrypt', # loc value => sub { return $_[0]->Encrypt? $_[0]->loc('yes') : $_[0]->loc('no') }, }, Lifecycle => { title => 'Lifecycle', attribute => 'Lifecycle', value => sub { return $_[0]->Lifecycle->Name }, }, }; foreach my $field (qw( Name Description CorrespondAddress CommentAddress InitialPriority FinalPriority DefaultDueIn )) { $COLUMN_MAP->{$field} = { title => $field, attribute => $field, value => sub { return $_[0]->$field() }, }, } <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.0.19/share/html/Widgets/0000775000175000017500000000000012262650742014726 5ustar chmrrchmrrrt-4.0.19/share/html/Widgets/TitleBox0000664000175000017500000000433612262650742016411 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <& TitleBoxStart, %ARGS &><% $content | n %><& TitleBoxEnd &>
    <%ARGS> $class => '' $hide_empty => 0 <%INIT> my $content = $m->content; return if $hide_empty && $content =~ /^\s*$/s; rt-4.0.19/share/html/Widgets/TitleBoxStart0000664000175000017500000000700412262650742017422 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <% $rolledup ? " rolled-up" : ""%>" id="<% $id %>">
    "> % if ($hideable) { % } <% $title_href ? qq[] : '' | n %><% $title %><% $title_raw |n %><% $title_href ? "" : '' |n%> \ <% $titleright_href ? qq[] : '' | n %>\ <% $titleright %><% $titleright_raw |n%><% $titleright_href ? "" : '' |n%>\
    " id="<% $tid %>"> <%ARGS> $class => '' $bodyclass => '' $title_href => '' $title => '' $title_raw => '' $title_class => '' $titleright_href => '' $titleright => '' $titleright_raw => '' $id => '' $hideable => 1 $rolledup => 0 <%init> $hideable = 1 if $rolledup; # # This should be pretty bulletproof # my $page = $m->request_comp->path; my $title_b64 = MIME::Base64::encode_base64(Encode::encode_utf8($title), ''); my $tid = "TitleBox--$page--" . join '--', ($class, $bodyclass, $title_b64, $id); # Replace anything that ISN'T alphanumeric, a hyphen, or an underscore $tid =~ s{[^A-Za-z0-9\-_]}{_}g; my $i = 0; $i++ while $m->notes("$tid-$i"); $m->notes("$tid-$i" => 1); $tid = "$tid-$i"; rt-4.0.19/share/html/Widgets/ComboBox0000664000175000017500000000617712262650742016374 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%once> # the $z_index here is to fix wrong z-index bug in ie7 my $z_index = 9999; %# reset $z_index. assuming at most 1000 comboboxx in one page % $z_index = 9999 if $z_index < 9000;
    autocomplete="off" />
    <%ARGS> $Name $Size => undef $Rows => 5 $Default => '' @Values => () $Class => '' rt-4.0.19/share/html/Widgets/TitleBoxEnd0000664000175000017500000000425512262650742017040 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % #Manually flush the content buffer after each titlebox is displayed % $m->flush_buffer(); <%ARGS> $title => undef $content => undef rt-4.0.19/share/html/Widgets/SelectionBox0000664000175000017500000001707712262650742017263 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# The SelectionBox Widget %# %# SYNOPSIS %# %# include javascript: %# <& /Widgets/SelectionBox:header &> %# %# <%init>: %# my $sel = $m->comp ('/Widgets/SelectionBox:new', %# Action => me.html', %# Name => 'my-selection', %# Available => \@items, %# # you can do things with @{$sel->{Current}} in the %# # OnSubmit callback %# OnSubmit => sub { my $sel = shift; }, %# Selected => \@selected); %# %# $m->comp ('/Widgets/SelectionBox:process', %ARGS, self => $sel) %# %# where @items is an arrayref, each element is [value, label], %# and @selected is an arrayref of selected values from @items. %# %# and in html: %# <& /Widgets/SelectionBox:show, self => $sel &> %# %# if the SelectionBox is created with AutoSave option, OnSubmit will be called %# on every button clicked in non-js mode. <%method header> % unless ($nojs) { % } <%ARGS> $nojs => 0 <%method new> <%init> $ARGS{_item_map} = {map {$_->[0] => $_->[1]} @{$ARGS{Available}}}; return \%ARGS; <%method process> <%init> unless ($ARGS{$self->{Name}.'-Submit'}) { # init $self->{Current} = $self->{Selected}; $self->{Selected} = []; return; } $self->{Selected} = $ARGS{$self->{Name}.'-Selected'}; if ($self->{Selected} && !ref($self->{Selected})) { $self->{Selected} = [$self->{Selected}]; } if ($ARGS{fromjs}) { $self->{Current} = $self->{Selected}; } else { my $current = $self->{Current} = $ARGS{$self->{Name}.'-Current'}; if ($current && !ref ($current)) { $current = [$current]; } unless ($self->{ReadOnly}) { ++$self->{Modified}; if ($ARGS{add}) { my $choosed = $ARGS{$self->{Name}.'-Available'}; for my $add (ref($choosed) ? @$choosed : $choosed) { next if grep { $_ eq $add } @$current; push @$current, $add; } } if ($ARGS{remove}) { my $choosed = $ARGS{$self->{Name}.'-Selected'}; for my $del (ref($choosed) ? @$choosed : $choosed) { @$current = map { $_ eq $del ? () : $_ } @$current; } } if ($ARGS{moveup} or $ARGS{movedown}) { my $offset = $ARGS{moveup} ? 1 : 0; my $choosed = $ARGS{$self->{Name}.'-Selected'}; $choosed = [$choosed] unless ref ($choosed); my $canmove = 0; # not in the cornor for my $i ($ARGS{moveup} ? 0..$#{$current} : reverse 0..$#{$current}) { if (grep {$_ eq $current->[$i]} @$choosed) { if ($canmove) { splice (@$current, $i-$offset, 2, @{$current}[$i+1-$offset,$i-$offset]); } } else { ++$canmove; } } } if ($ARGS{clear}) { $current = []; } $self->{Current} = $current; } } @{$self->{Current}} = grep { exists $self->{_item_map}{$_} } @{$self->{Current}}; if ($self->{AutoSave} or $ARGS{$self->{Name}.'-Save'}) { $self->{OnSubmit}->($self); delete $self->{Modified}; } <%ARGS> $self => undef <%method current> % for (@{$self->{Current}}) { % } <%INIT> <%ARGS> $self => undef <%method show>
    <& SelectionBox:current, self => $self &> <&|/l&>Available:
    % unless ($self->{ReadOnly}) { % } % unless ($self->{'ReadOnly'}) { % unless ($ARGS{'NoArrows'}) { % } % if ($ARGS{'Clear'}) { % } % if ( $ARGS{'ShowUpdate'} ) { % } % } % my $caption = ""; % unless ($self->{'AutoSave'}) { % if ($self->{Modified}) { % $caption = loc('Selections modified. Please save your changes'); % } <& /Elements/Submit, Caption => loc($caption), Label => loc('Save'), Name => $name.'-Save' &> % }
    % unless ($nojs) { % } <%ARGS> $self => undef $size => 10 $nojs => 0 <%INIT> my $name = $self->{Name}; my %selected = map {$_ => 1} @{$self->{Selected}}; rt-4.0.19/share/html/Widgets/BulkEdit0000664000175000017500000000476512262650742016370 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for my $type ( @$Types ) { <& $Meta->{$type}{'Widget'}, Default => $Default, %{ $m->comp('/Widgets/FinalizeWidgetArguments', WidgetArguments => $Meta->{$type}{'WidgetArguments'} ) }, Name => $type, exists $CurrentValue->{$type} ? ( CurrentValue => $CurrentValue->{$type} ) : (), exists $DefaultValue->{$type} ? ( DefaultValue => $DefaultValue->{$type} ) : (), &> % } <%args> $Types $Meta $Default => 0 $CurrentValue => {} $DefaultValue => {} rt-4.0.19/share/html/Widgets/FinalizeWidgetArguments0000664000175000017500000000477512262650742021461 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my %args = %$WidgetArguments; %args = (%args, %{ $args{Callback}->() }) if $args{Callback}; $args{'Description'} = loc( $args{'Description'} ) if $args{'Description'}; $args{'Hints'} = loc( $args{'Hints'} ) if $args{'Hints'}; if ( $args{'ValuesLabel'} ) { my %labels; $labels{$_} = loc( $args{'ValuesLabel'}->{$_} ) for keys %{$args{'ValuesLabel'}}; $args{'ValuesLabel'} = \%labels; } return \%args; <%args> $WidgetArguments => {} rt-4.0.19/share/html/Widgets/SavedSearch0000664000175000017500000001624012262650742017044 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%method new> <%init> return \%ARGS; <%method process> <%init> my @actions; $self->{SearchId} ||= $args->{'SavedChartSearchId'} || 'new'; my $SearchParams = { map { $_ => $args->{$_} } @{$self->{SearchFields}} }; if ( my ( $container_object, $search_id ) = _parse_saved_search( $args->{'SavedSearchLoad'} || $args->{'SavedChartSearchId'} ) ) { my $search = $container_object->Attributes->WithId($search_id); # We have a $search and now; import the others $self->{SearchId} = $args->{'SavedSearchLoad'} || $args->{'SavedChartSearchId'}; $self->{CurrentSearch}{Object} = $search; if ( $args->{'SavedSearchLoad'} ) { for ( @{ $self->{SearchFields} } ) { $args->{$_} = $search->SubValue($_) } } $args->{SavedChartSearchId} = $args->{'SavedSearchLoad'} if $args->{'SavedSearchLoad'}; # saved search in /Search/Chart.html is different from /Search/Build.html # the former is of type 'Chart', while the latter is of type 'Ticket'. # After loading a saved search from the former after loading one from the # latter, accessing /Search/Build.html will still show the old one, so we # need to delete $session{CurrentSearchHash} to let it not show the old one. # of course, the new one should not be shown there either because it's of # different type delete $session{'CurrentSearchHash'}; } # look for the current one in the available saved searches if ($self->{SearchId} eq 'new') { my @Objects = RT::SavedSearch->new( $session{CurrentUser} )->ObjectsForLoading; push @Objects, RT::System->new($session{'CurrentUser'}) if $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser' ); for my $obj (@Objects) { for ( $m->comp( "/Search/Elements/SearchesForObject", Object => $obj ) ) { my ( $desc, $loc_desc, $search ) = @$_; use Data::Dumper; # FFS local $Data::Dumper::Sortkeys = 1; if ( Dumper( $search->Content ) eq Dumper( { %$SearchParams, SearchType => $self->{SearchType} } ) ) { $self->{CurrentSearch}{Object} = $search; $self->{SearchId} = $search->Id; } } } } if ( $args->{SavedSearchSave} ) { if ( my $search = $self->{CurrentSearch}{Object} ) { # rename $search->SetDescription( $args->{SavedSearchDescription} ); $search->SetSubValues(%$SearchParams); push @actions, loc( '[_1] [_2] updated.', loc($self->{SearchType}), $args->{SavedSearchDescription} ); } else { # new saved search my $saved_search = RT::SavedSearch->new( $session{'CurrentUser'} ); my ( $ok, $search_msg ) = $saved_search->Save( Privacy => $args->{'SavedSearchOwner'}, Name => $args->{'SavedSearchDescription'}, Type => $self->{'SearchType'}, SearchParams => $SearchParams ); if ($ok) { $self->{CurrentSearch}{Object} = $saved_search->{Attribute}; $self->{SearchId} = $args->{SavedChartSearchId} = 'RT::User-' . $session{CurrentUser}->id . '-SavedSearch-' . $saved_search->Id; push @actions, loc( '[_1] [_2] saved.', loc($self->{SearchType}), $args->{SavedSearchDescription} ); } else { push @actions, [ loc("Can't save [_1]", loc($self->{SearchType})) . ': ' . loc($search_msg), 0 ]; } } } if ( $args->{SavedSearchDelete} && $self->{CurrentSearch}{Object} ) { my ($ok, $msg) = $self->{CurrentSearch}{Object}->Delete; push @actions, $ok ? loc( '[_1] [_2] deleted.', loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description ) : $msg; delete $self->{CurrentSearch}{Object}; delete $self->{SearchId}; delete $args->{SavedChartSearchId}; } $self->{CurrentSearch}{Description} = $self->{CurrentSearch}{Object}->Description if $self->{CurrentSearch}{Object}; return @actions; <%ARGS> $self $args <%method show>
    <& /Search/Elements/EditSearches, Id => $self->{SearchId} || 'new', Type => $self->{SearchType}, CurrentSearch => $self->{CurrentSearch}, Title => $Title, AllowCopy => 0, $self->{CurrentSearch}{Object} ? ( Object => $self->{CurrentSearch}{Object}, Description => $self->{CurrentSearch}{Object}->Description, ) : (), &>
    <%PERL> foreach my $field ( @{$self->{SearchFields}} ) { if ( ref($ARGS{$field}) && ref($ARGS{$field}) ne 'ARRAY' ) { $RT::Logger->error("Couldn't store '$field'. it's reference to ". ref($ARGS{$field}) ); next; } foreach my $value ( grep defined, ref($ARGS{$field})? @{ $ARGS{$field} } : $ARGS{$field} ) { % } % }
    <%ARGS> $self => undef $Action => '' $Title => loc('Saved searches') <%init> rt-4.0.19/share/html/Widgets/BulkProcess0000664000175000017500000000503612262650742017111 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> for my $type ( @$Types ) { my $value = $m->comp( $Meta->{$type}{Widget} . ':Process', Name => $type, Arguments => $Arguments, Default => $Default, DefaultValue => $DefaultValue->{$type}, %{ $Meta->{$type}{WidgetArguments} }, ); unless ( $KeepUndef || defined $value ) { delete $Store->{$type}; } else { $Store->{$type} = $value; } } <%args> $Arguments $Types $Store $Meta => {} $KeepUndef => 0 $Default => 0 $DefaultValue => {} rt-4.0.19/share/html/Widgets/Form/0000775000175000017500000000000012262650742015631 5ustar chmrrchmrrrt-4.0.19/share/html/Widgets/Form/Select0000664000175000017500000001142112262650742016772 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%DOC> see docs/extending/using_forms_widgets.pod
    % if ( $Description ) { <% $Description %> % } <& SELF:InputOnly, %ARGS &> <% $Hints %>
    <%ARGS> $Name $Description => undef, $Hints => '' <%METHOD InputOnly> <%ARGS> $Name $Description => undef, @Values => (), $ValuesCallback => undef, %ValuesLabel => (), @CurrentValue => (), $Default => 1, @DefaultValue => (), $DefaultLabel => undef, $Alternative => 0, $AlternativeLabel => loc('other...'), $Multiple => 0, % if ( $Alternative ) { % } <%INIT> my %CurrentValue = map {$_ => 1} grep defined, @CurrentValue; if ( $ValuesCallback ) { my $values = $ValuesCallback->( CurrentUser => $session{'CurrentUser'}, Name => $Name, ); if ( ref $values eq 'ARRAY' ) { @Values = @$values; } else { %ValuesLabel = %$values; @Values = keys %ValuesLabel; } } unless (defined $DefaultLabel ) { $DefaultLabel = loc('Use system default ([_1])', join ', ', map loc($ValuesLabel{$_} || $_), grep defined, @DefaultValue ); } <%METHOD Process> <%ARGS> $Name $Arguments => {}, @Values => (), %ValuesLabel => (), $Default => 0, @DefaultValue => (), $Alternative => 0, $Multiple => 0, <%INIT> my $value = $Arguments->{ $Name }; if( !defined $value || $value eq '__empty_value__' ) { return undef if $Default; return [ @DefaultValue ] if $Multiple; return $DefaultValue[0]; } $value = [$value] unless ref $value; if ( $Alternative ) { my $alt = $Arguments->{ "Alternative-". $Name }; if( $Multiple ) { push @$value, split /\s*,\s*/, $alt; } else { push @$value, $alt; } } splice @$value, 1 unless $Multiple; # XXX: check values return $value->[0] unless $Multiple; return $value; rt-4.0.19/share/html/Widgets/Form/Boolean0000664000175000017500000000677412262650742017151 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%DOC> see docs/extending/using_forms_widgets.pod
    <% $Description %> <& SELF:InputOnly, %ARGS &> <% $Hints %>
    <%ARGS> $Name => undef, $Description => undef, $Hints => '' <%METHOD InputOnly> <%ARGS> $Name => undef, $Default => 0, $DefaultValue => 0, $DefaultLabel => loc( 'Use default ([_1])', $DefaultValue? loc('Yes'): loc('No') ), $CurrentValue => undef, % unless ( $Default ) { \ />\ % } else { />\ <% loc('Yes') %> />\ <% loc('No') %> />\ <% $DefaultLabel %> % } <%METHOD Process> <%ARGS> $Name $Arguments => {}, $Default => 0, $DefaultValue => 0, <%INIT> my $value = $Arguments->{ $Name }; if ( $Default ) { return undef if !defined $value || $value eq '__empty_value__'; return $value? 1: 0; } else { return $value? 1: 0 if defined $value; return $DefaultValue; } rt-4.0.19/share/html/Widgets/Form/String0000664000175000017500000000636412262650742017033 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%DOC> see docs/extending/using_forms_widgets.pod
    <% $Description %> <& SELF:InputOnly, %ARGS &> % if ( $Default ) { <% $DefaultLabel %> % } <% $Hints %>
    <%ARGS> $Name $Description => undef, $Hints => '' $CurrentValue => '', $Default => 0, $DefaultValue => '', $DefaultLabel => loc( 'Default: [_1]', $DefaultValue ), <%METHOD InputOnly> \ <%ARGS> $Name $CurrentValue => '', $Type => 'text' <%METHOD Process> <%ARGS> $Name $Arguments => {}, $Default => 0, $DefaultValue => '', <%INIT> my $value = $Arguments->{ $Name }; $value = '' unless defined $value; # canonicalize: delete leading and trailing spaces, replaces newlines # with one space and then replace all continuouse spaces with one ' ' # (including tabs and other fancy things) $value =~ s/^\s+//; $value =~ s/\s+$//; $value =~ s/\r*\n/ /g; $value =~ s/\s+$/ /g; if ( $value eq '' ) { return $DefaultValue unless $Default; return undef; } return $value; rt-4.0.19/share/html/Widgets/Form/Integer0000664000175000017500000000614112262650742017153 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%DOC> see docs/extending/using_forms_widgets.pod
    <% $Description %> <& SELF:InputOnly, %ARGS &> % if ( $Default ) { <% $DefaultLabel %> % } <% $Hints %>
    <%INIT> $_ = '' foreach grep !defined, $CurrentValue, $DefaultValue; $DefaultLabel ||= loc( 'Default: [_1]', $DefaultValue ); <%ARGS> $Name $Description => undef, $Hints => '' $CurrentValue => '', $Default => 0, $DefaultValue => 0, $DefaultLabel => undef <%METHOD InputOnly> \ <%ARGS> $Name $CurrentValue => '', <%INIT> $CurrentValue = '' unless defined $CurrentValue; <%METHOD Process> <%ARGS> $Name $Arguments => {}, $Default => 0, $DefaultValue => '', <%INIT> my $value = $Arguments->{ $Name }; if ( !defined $value || $value eq '' ) { return $DefaultValue unless $Default; return undef; } return $value; rt-4.0.19/share/html/Admin/0000775000175000017500000000000012262650742014350 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Elements/0000775000175000017500000000000012262650742016124 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Elements/ListGlobalScrips0000664000175000017500000000462412262650742021275 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % unless ( $Scrips->Count ) {

    <&|/l&>(No scrips)

    % } else { <& /Elements/CollectionList, OrderBy => 'Description', Order => 'ASC', Rows => 0, %ARGS, Format => $Format, Collection => $Scrips, &> % } <%init> my $Format = RT->Config->Get('AdminSearchResultFormat')->{'GlobalScrips'}; my $Scrips = RT::Scrips->new( $session{'CurrentUser'} ); $Scrips->LimitToGlobal; rt-4.0.19/share/html/Admin/Elements/SelectTemplate0000664000175000017500000000570412262650742020770 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $PrimaryTemplates = RT::Templates->new($session{'CurrentUser'}); if ($Queue != 0) { $PrimaryTemplates->LimitToQueue($Queue); $PrimaryTemplates->OrderBy(FIELD => 'Name'); } my $OtherTemplates = RT::Templates->new($session{'CurrentUser'}); $OtherTemplates->LimitToGlobal; $OtherTemplates->OrderBy(FIELD => 'Name'); <%ARGS> $Queue => undef $Default => 'none' $Name => 'Template' rt-4.0.19/share/html/Admin/Elements/SelectScrip0000664000175000017500000000465012262650742020274 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $Scrips = RT::Scrips->new($session{'CurrentUser'}); $Scrips->UnLimit; <%ARGS> $Default => undef $Name => 'Scrip' rt-4.0.19/share/html/Admin/Elements/ListGlobalCustomFields0000664000175000017500000000465012262650742022432 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $count = 0; % while (my $CustomFieldObj = $CustomFields->Next) { % $count++; <%$CustomFieldObj->id%>/<% loc($CustomFieldObj->Type) %>/<%$CustomFieldObj->Name%>: <%$CustomFieldObj->Description%>
    % } % if (!$count) { <&|/l&>(No custom fields) % } <%init> my $CustomFields = RT::CustomFields->new ($session{'CurrentUser'}); $CustomFields->LimitToGlobal(); rt-4.0.19/share/html/Admin/Elements/EditCustomField0000664000175000017500000001245012262650742021075 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@results &>
    <&|/l&>Name:
    <&|/l&>Description:
    <&|/l&>Type: <& /Admin/Elements/SelectCustomFieldType, Name => "Type", Default => $CustomFieldObj->Type &>
    /> <&|/l&>Enabled (Unchecking this box disables this custom field)

    % if ($CustomFieldObj->Id and $CustomFieldObj->Type =~ /Select/) {

    <&|/l&>Values

    <& /Admin/Elements/EditCustomFieldValues, CustomField => $CustomFieldObj &> <& /Admin/Elements/AddCustomFieldValue, CustomField => $CustomFieldObj &> % } <&/Elements/Submit, Label => loc('Create') &>
    <%INIT> my $CustomFieldObj = RT::CustomField->new($session{'CurrentUser'}); my $EnabledChecked = 'checked="checked"'; my (@results); if (! $CustomField ) { $title = loc("Create a CustomField"); $id = 'new'; } else { if ($CustomField eq 'new') { my ($val, $msg) = $CustomFieldObj->Create(Queue => $Queue, Name => $Name, Type => $Type, Description => $Description, ); # if there is an error, then abort. But since at this point there's # stuff already printed, clear it out. # (This only works in conjunction with temporarily turning autoflush # off in the files that use this component.) unless ($val) { $m->clear_buffer; Abort(loc("Could not create CustomField: [_1]", $msg), SuppressHeader => 1); } push @results, $msg; $CustomFieldObj->SetSortOrder($CustomFieldObj->id); $title = loc('Created CustomField [_1]', $CustomFieldObj->Name()); } else { $CustomFieldObj->Load($CustomField) || Abort(loc('No CustomField'), SuppressHeader => 1); $title = loc('Editing CustomField [_1]', $CustomFieldObj->Name()); my @aresults = ProcessCustomFieldUpdates ( CustomFieldObj => $CustomFieldObj, ARGSRef => \%ARGS ); push @results, @aresults; } $id = $CustomFieldObj->id; #we're asking about enabled on the web page but really care about disabled. my $Disabled = ($Enabled ? 0 : 1); if ( ($SetEnabled) and ( $Disabled != $CustomFieldObj->Disabled) ) { my ($code, $msg) = $CustomFieldObj->SetDisabled($Disabled); push @results, loc('Enabled status [_1]', loc_fuzzy($msg)); } if ($CustomFieldObj->Disabled()) { $EnabledChecked =""; } } <%ARGS> $id => undef $title => undef $Queue => undef $CustomField => undef $Type => undef $Description => undef $Name => undef $SetEnabled => undef $Enabled => undef rt-4.0.19/share/html/Admin/Elements/SelectNewGroupMembers0000664000175000017500000000702112262650742022270 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $Show ne 'Groups' ) {
    % } % if ( $Show ne 'Users' ) {
    % } <%INIT> my $user_ids = join(',', grep { $SkipUsers->{$_} } keys %$SkipUsers); my $group_ids = join(',', grep { $SkipGroups->{$_} } keys %$SkipGroups); <%ARGS> $Name => 'Users' $Show => 'All' $Group $SkipUsers => {} $SkipGroups => {} rt-4.0.19/share/html/Admin/Elements/EditTemplates0000664000175000017500000000751312262650742020621 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@actions &>
    % unless ( $Templates->Count ) {

    <&|/l&>(No templates)

    % } else { <& /Elements/CollectionList, OrderBy => 'id', Order => 'ASC', %ARGS, DisplayFormat => '__CheckBox.{DeleteTemplates}__,'. $Format, Format => $Format, Collection => $Templates, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy FindDisabledQueues)], &> <&|/l&>(Check box to delete) % } <& /Elements/Submit, Label => loc('Delete Template') &>
    <%INIT> $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Templates'}; my $QueueObj = RT::Queue->new( $session{'CurrentUser'} ); $QueueObj->Load( $id ) if $id; my $Templates = RT::Templates->new($session{'CurrentUser'}); if ( $QueueObj->id ) { $Templates->LimitToQueue( $id ); } else { $Templates->LimitToGlobal; } # Now let callbacks add their extra limits $m->callback( %ARGS, Templates => $Templates ); $Templates->RedoSearch; # deal with deleting existing templates my @actions; # backwards compatibility, use DeleteTemplates array for this foreach my $key (keys %ARGS) { next unless $key =~ /^DeleteTemplate-(\d+)/; push @DeleteTemplates, $1; } foreach my $id( @DeleteTemplates ) { my $TemplateObj = RT::Template->new( $session{'CurrentUser'} ); $TemplateObj->Load( $id ); unless ( $TemplateObj->id ) { push @actions, loc("Couldn't load template #[_1]", $id); next; } my ($retval, $msg) = $TemplateObj->Delete; if ( $retval ) { push @actions, loc("Template #[_1] deleted", $id); } else { push @actions, $msg; } } <%ARGS> $id => 0 $Format => undef @DeleteTemplates => () rt-4.0.19/share/html/Admin/Elements/SelectModifyQueue0000664000175000017500000000434312262650742021447 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %while ( $queue = $queues->Next) { <%$queue->id%>: <%$queue->Name%>
    %} <%INIT> my ($queue); my $queues = RT::Queues->new($session{'CurrentUser'}); $queues->UnLimit; <%ARGS> rt-4.0.19/share/html/Admin/Elements/EditRights0000664000175000017500000001542412262650742020123 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Context $Principals $AddPrincipal => undef <%init> use Scalar::Util qw(blessed); # Let callbacks get at principals and context before we do anything with them $m->callback( Principals => $Principals, Context => $Context ); # Try to detect if we want to include an add user/group box unless ( $AddPrincipal ) { my $last = $Principals->[-1]; if ( $last->[0] =~ /Groups/i ) { $AddPrincipal = 'group'; # loc } elsif ( $last->[0] =~ /Users/i ) { $AddPrincipal = 'user'; # loc } } my $anchor = $DECODED_ARGS->{Anchor} || ''; if ($anchor =~ /AddPrincipal/) { for my $type ("group", "user") { my $record = _ParseACLNewPrincipal($DECODED_ARGS, $type) or next; if ($record->PrincipalId) { $anchor = "#acl-" . $record->PrincipalId; last; } } } %# Principals is an array of arrays, where the inner arrays are like: %# [ 'Category name' => $CollectionObj => 'DisplayColumn' => 1 ] %# The last value is a boolen determining if the value of DisplayColumn %# should be loc()-ed before display.
    <%perl> # Now generate our rights panels for each principal for my $category (@$Principals) { my ($name, $collection, $col, $loc) = @$category; while ( my $obj = $collection->Next ) { my $display = ref $col eq 'CODE' ? $col->($obj) : $obj->$col; my $id = "acl-" . $obj->PrincipalId;

    <% $loc ? loc($display) : $display %> <%perl> if ($obj->isa('RT::Group') and $obj->Domain eq 'UserDefined') { my $subgroups = $obj->GroupMembersObj( Recursively => 1 ); $subgroups->LimitToUserDefinedGroups; $subgroups->Limit( FIELD => 'Name', OPERATOR => '!=', VALUE => $obj->Name ); if ( $subgroups->Count ) { my $inc = join ", ", map $_->Name, @{$subgroups->ItemsArrayRef}; <&|/l, $inc &>includes [_1]\ <%perl> } }

    <& EditRightsCategoryTabs, Context => $Context, Principal => $obj, id => $id &>
    <%perl> } } if ( $AddPrincipal ) {

    <&|/l, loc($AddPrincipal) &>Add rights for this [_1]

    <& EditRightsCategoryTabs, Context => $Context, id => 'acl-AddPrincipal' &>
    % }
    rt-4.0.19/share/html/Admin/Elements/Header0000664000175000017500000000406212262650742017241 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, %ARGS &> <%ARGS> $Title => undef rt-4.0.19/share/html/Admin/Elements/SelectCustomField0000664000175000017500000000552312262650742021432 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $CustomFields = RT::CustomFields->new($session{'CurrentUser'}); $CustomFields->UnLimit; $CustomFields->LimitToLookupType( $LookupType ) if $LookupType; $CustomFields->OrderByCols( { FIELD => 'LookupType' }, { FIELD => 'Name' } ); $Default = $Default->id || 0 if ref $Default; <%ARGS> $None => 1 $Name => 'BasedOn' $Default => 0 $LookupType => 'RT::Queue-RT::Ticket' $OnlySelectionType => 1 $Not => 0 rt-4.0.19/share/html/Admin/Elements/ConfigureMyRT0000664000175000017500000000542712262650742020554 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Action $OnSave $items $panes $current_portlets $ReadOnly => 0 <%init> my $portlets = $current_portlets; my @panes; for my $pane (@$panes) { push @panes, $m->comp( '/Widgets/SelectionBox:new', Action => $Action, Name => $pane, Available => $items, AutoSave => 1, ReadOnly => $ReadOnly, OnSubmit => sub { my $sel = shift; $portlets->{$pane} = [ map { m/(\w+)-(.*)$/; { type => $1, name => $2 } } @{ $sel->{Current} } ]; $OnSave->( $portlets, $pane ); }, Selected => [ map { join( '-', @{$_}{qw/type name/} ) } @{ $portlets->{$pane} } ] ); } return @panes; rt-4.0.19/share/html/Admin/Elements/AddCustomFieldValue0000664000175000017500000000631312262650742021676 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

    <&|/l&>Add Value

    % if ( $CustomField->Type ne 'Combobox' ) { % } % my $paramtag = "CustomField-". $CustomField->Id ."-Value-new"; % if ( $CustomField->Type ne 'Combobox' ) { % } % $m->callback(CallbackName => 'AfterCustomFieldValueInput', CustomFieldObj => $CustomField, ARGSRef => \%ARGS );
    <&|/l&>Sort <&|/l&>Name <&|/l&>Description<&|/l&>Category
    % my $BasedOnObj = $CustomField->BasedOnObj; % if ( $BasedOnObj and $BasedOnObj->id ) { % my $Categories = $BasedOnObj->Values; % }
    <%args> $CustomField => undef rt-4.0.19/share/html/Admin/Elements/ModifyTemplate0000664000175000017500000000600512262650742020773 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <&|/l&>Name:
    <&|/l&>Description:
    <&|/l&>Type: ><&|/l&>Perl
    ><&|/l&>Simple
    <&|/l&>Content:
    <%INIT> unless ($Type) { $Type = $session{'CurrentUser'}->HasRight(Right => 'ExecuteCode', Object => $RT::System) ? 'Perl' : 'Simple'; } <%ARGS> $Name => '' $Description => '' $Content => '' $Type => '' rt-4.0.19/share/html/Admin/Elements/EditCustomFields0000664000175000017500000001434112262650742021261 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@results &>

    <&|/l&>Selected Custom Fields

    <& /Elements/CollectionList, %ARGS, Collection => $applied_cfs, Rows => 0, Page => 1, Format => $format, DisplayFormat => $display_format, AllowSorting => 0, ShowEmpty => 0, PassArguments => [ qw(Page Order OrderBy), qw(id ObjectType SubType), ], &>

    <&|/l&>Unselected Custom Fields

    <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', %ARGS, Collection => $not_applied_cfs, Rows => 50, Format => $format, DisplayFormat => "'__CheckBox.{AddCustomField}__',". $format, AllowSorting => 1, ShowEmpty => 0, PassArguments => [ qw(Page Order OrderBy), qw(id ObjectType SubType), ], &> <& /Elements/Submit, Name => 'UpdateCFs' &>
    <%INIT> my $id = $Object->Id || 0; if ($id and !$Object->CurrentUserHasRight('AssignCustomFields')) { $m->out('

    ', loc('(No custom fields)'), '

    '); return; } my @results; my $lookup = $ObjectType; $lookup .= "-$SubType" if $SubType; ## deal with moving sortorder of custom fields if ( $MoveCustomFieldUp ) { { my $record = RT::ObjectCustomField->new( $session{'CurrentUser'} ); $record->LoadByCols( ObjectId => $id, CustomField => $MoveCustomFieldUp ); unless ( $record->id ) { push @results, loc("Custom field #[_1] is not applied to this object", $MoveCustomFieldUp); last; } my ($status, $msg) = $record->MoveUp; push @results, $msg; } } if ( $MoveCustomFieldDown ) { { my $record = RT::ObjectCustomField->new( $session{'CurrentUser'} ); $record->LoadByCols( ObjectId => $id, CustomField => $MoveCustomFieldDown ); unless ( $record->id ) { push @results, loc("Custom field #[_1] is not applied to this object", $MoveCustomFieldDown); last; } my ($status, $msg) = $record->MoveDown; push @results, $msg; } } if ( $UpdateCFs ) { foreach my $cf_id ( @AddCustomField ) { my $CF = RT::CustomField->new( $session{'CurrentUser'} ); $CF->SetContextObject( $Object ); $CF->Load( $cf_id ); unless ( $CF->id ) { push @results, loc("Couldn't load CustomField #[_1]", $cf_id); next; } my ($status, $msg) = $CF->AddToObject( $Object ); push @results, $msg; } foreach my $cf_id ( @RemoveCustomField ) { my $CF = RT::CustomField->new( $session{'CurrentUser'} ); $CF->SetContextObject( $Object ); $CF->Load( $cf_id ); unless ( $CF->id ) { push @results, loc("Couldn't load CustomField #[_1]", $cf_id); next; } my ($status, $msg) = $CF->RemoveFromObject( $Object ); push @results, $msg; } } $m->callback(CallbackName => 'UpdateExtraFields', Results => \@results, Object => $Object, %ARGS); my $applied_cfs = RT::CustomFields->new( $session{'CurrentUser'} ); $applied_cfs->LimitToLookupType($lookup); $applied_cfs->LimitToGlobalOrObjectId($id); $applied_cfs->SetContextObject( $Object ); $applied_cfs->ApplySortOrder; my $not_applied_cfs = RT::CustomFields->new( $session{'CurrentUser'} ); $not_applied_cfs->LimitToLookupType($lookup); $not_applied_cfs->LimitToNotApplied( $id ? ($id, 0) : (0) ); my $format = RT->Config->Get('AdminSearchResultFormat')->{'CustomFields'}; my $display_format = $id ? ("'__RemoveCheckBox.{$id}__',". $format .", '__MoveCF.{$id}__'") : ("'__CheckBox.{RemoveCustomField}__',". $format .", '__MoveCF.{$id}__'"); $m->callback(CallbackName => 'EditDisplayFormat', DisplayFormat => \$display_format, id => $id); <%ARGS> $Object $ObjectType $SubType => '' $UpdateCFs => undef @RemoveCustomField => () @AddCustomField => () $MoveCustomFieldUp => undef $MoveCustomFieldDown => undef rt-4.0.19/share/html/Admin/Elements/SelectScripAction0000664000175000017500000000546212262650742021434 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $ScripActions = RT::ScripActions->new($session{'CurrentUser'}); # hide user-defined if the user can't execute code if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) { $ScripActions->UnLimit; } else { $ScripActions->Limit( FIELD => 'ExecModule', OPERATOR => '!=', VALUE => 'UserDefined', ); } $ScripActions->OrderBy(FIELD => 'Name'); <%ARGS> $Default => undef $Name => 'ScripAction' rt-4.0.19/share/html/Admin/Elements/SelectModifyGroup0000664000175000017500000000434312262650742021457 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %while ( $Group = $Groups->Next) { <%$Group->id%>: <%$Group->Name%>
    %} <%INIT> my ($Group); my $Groups = RT::Groups->new($session{'CurrentUser'}); $Groups->UnLimit; <%ARGS> rt-4.0.19/share/html/Admin/Elements/SelectGroups0000664000175000017500000000453212262650742020472 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $groups = RT::Groups->new($session{'CurrentUser'}); $groups->Limit(FIELD => 'Domain', OPERATOR => '=', VALUE => $Domain); <%ARGS> $Name => 'groups' $Domain => 'UserDefined'; rt-4.0.19/share/html/Admin/Elements/EditQueueWatchers0000664000175000017500000000547612262650742021456 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %if ($Members->Count == 0 ) {
    • <&|/l&>none % } else { <&|/l&>(Check box to delete)

      <%INIT> my $Members = $Watchers->MembersObj; <%ARGS> $QueueObj => undef $Watchers => undef rt-4.0.19/share/html/Admin/Elements/PickCustomFields0000664000175000017500000000671212262650742021265 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if (@CustomFields == 0) {

      <&|/l&>(None)

      % } else { % my $count; % foreach my $CustomFieldObj (@CustomFields) { % if (!$ReadOnly) { % } % # show 'move up' unless it's the first item % if ($count++ and $Checked) { % }
      /> % if ($CustomFieldObj->Name) { <%$CustomFieldObj->Name%> % } else { (<&|/l&>no name) % }
      <%$CustomFieldObj->Description%>
      <% $CustomFieldObj->FriendlyTypeComposite %> [<&|/l&>Move up] % } else { % } % # show 'move down' unless it's the last item % if ($count != @CustomFields and $Checked) { % $m->print(' | ') if $count > 1; [<&|/l&>Move down] % }
      % } <%ARGS> @CustomFields $id $ReadOnly => 0 $Checked => 0 $SubType rt-4.0.19/share/html/Admin/Elements/SelectUsers0000664000175000017500000000472612262650742020321 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $users = RT::Users->new($session{'CurrentUser'}); $users->Limit(FIELD => 'id', VALUE => RT->SystemUser->id, OPERATOR => '!=' ); $users->Limit(FIELD => 'id', VALUE => RT->Nobody->id, OPERATOR => '!=' ); $users->LimitToPrivileged(); <%ARGS> $Name => 'Users' rt-4.0.19/share/html/Admin/Elements/Portal0000664000175000017500000000430612262650742017313 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <&| /Widgets/TitleBox, title => 'RT Portal' &>
      rt-4.0.19/share/html/Admin/Elements/SelectSingleOrMultiple0000664000175000017500000000465112262650742022453 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my ($SingleDefault, $MultipleDefault); if ($Default == 1) { $SingleDefault = qq[ selected="selected"]; } elsif ($Default == 0 ) { $MultipleDefault = qq[ selected="selected"]; } <%ARGS> $Name => 'Single' $Default => 1 rt-4.0.19/share/html/Admin/Elements/SelectScripCondition0000664000175000017500000000551512262650742022144 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $ScripConditions = RT::ScripConditions->new($session{'CurrentUser'}); # hide user-defined if the user can't execute code if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) { $ScripConditions->UnLimit; } else { $ScripConditions->Limit( FIELD => 'ExecModule', OPERATOR => '!=', VALUE => 'UserDefined', ); } $ScripConditions->OrderBy(FIELD => 'Name'); <%ARGS> $Default => undef $Name => 'ScripCondition' rt-4.0.19/share/html/Admin/Elements/CreateUserCalled0000664000175000017500000000431312262650742021217 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <&|/l&>New user called
      rt-4.0.19/share/html/Admin/Elements/QueueRightsForUser0000664000175000017500000000453412262650742021630 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
        %while(my $ACE = $ACL->Next) {
      • <% loc($ACE->RightName) %> (<%$ACE->UserObj->RealName%>) %}
      <%INIT> my $ACL = RT::ACL->new($session{'CurrentUser'}); $ACL->LimitToQueue($QueueObj->id); $ACL->LimitPrincipalToUser($PrincipalId); <%ARGS> $PrincipalId => undef $QueueObj => undef rt-4.0.19/share/html/Admin/Elements/EditScrip0000664000175000017500000001544112262650742017742 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@actions &>
      <&| /Widgets/TitleBox, title => loc('Scrip Fields') &>
      <&|/l&>Description:\ Description || '' %>" />
      <&|/l&>Condition:\ <& /Admin/Elements/SelectScripCondition, Name => "Scrip-$id-ScripCondition", Default => $ARGS{"Scrip-$id-ScripCondition"} || $scrip->ConditionObj->Id, &>
      <&|/l&>Action:\ <& /Admin/Elements/SelectScripAction, Name => "Scrip-$id-ScripAction", Default => $ARGS{"Scrip-$id-ScripAction"} || $scrip->ActionObj->Id, &>
      <&|/l&>Template:\ <& /Admin/Elements/SelectTemplate, Name => "Scrip-$id-Template", Default => $ARGS{"Scrip-$id-Template"} || $scrip->TemplateObj->Id, Queue => $Queue, &>
      <&|/l&>Stage:\ <& /Admin/Elements/SelectStage, Name => "Scrip-$id-Stage", Default => $ARGS{"Scrip-$id-Stage"} || $scrip->Stage, &>
      % if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) { <& /Elements/Submit, Label => $SubmitLabel, Reset => 1, &>
      <&| /Widgets/TitleBox, title => loc('User Defined conditions and actions') &>
      <&|/l&>(Use these fields when you choose 'User Defined' for a condition or action)
      <&|/l&>Custom condition: % my $code = $ARGS{"Scrip-$id-CustomIsApplicableCode"} || $scrip->CustomIsApplicableCode || ''; % my $lines = @{[ $code =~ /\n/gs ]} + 3; % $lines = $min_lines if $lines < $min_lines;
      <&|/l&>Custom action preparation code: % $code = $ARGS{"Scrip-$id-CustomPrepareCode"} || $scrip->CustomPrepareCode || ''; % $lines = @{[ $code =~ /\n/gs ]} + 3; % $lines = $min_lines if $lines < $min_lines;
      <&|/l&>Custom action cleanup code: % $code = $ARGS{"Scrip-$id-CustomCommitCode"} || $scrip->CustomCommitCode || ''; % $lines = @{[ $code =~ /\n/gs ]} + 3; % $lines = $min_lines if $lines < $min_lines;
      % } <& /Elements/Submit, Label => $SubmitLabel, Reset => 1, &>
      <%init> my (@actions, $SubmitLabel); my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); if ( $id ) { $scrip->Load( $id ); unless ( $id = $scrip->id ) { push @actions, loc("Couldn't load scrip #[_1]", $id); } $SubmitLabel = loc('Save Changes'); } unless ( $id ) { $id = 'new'; $SubmitLabel = loc('Create'); } my $min_lines = 10; my ($ok, $msg) = $scrip->CompileCheck; push @actions, $msg if !$ok; <%ARGS> $id => undef $title => undef $Queue => 0 <%METHOD Process> <%ARGS> $id => undef $Queue => undef <%INIT> return ($id) unless $id; my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); if ( $id eq 'new' ) { return $scrip->Create( Queue => $Queue, ScripAction => $ARGS{"Scrip-new-ScripAction"}, ScripCondition => $ARGS{"Scrip-new-ScripCondition"}, Template => $ARGS{"Scrip-new-Template"}, Description => $ARGS{"Scrip-new-Description"}, CustomPrepareCode => $ARGS{"Scrip-new-CustomPrepareCode"}, CustomCommitCode => $ARGS{"Scrip-new-CustomCommitCode"}, CustomIsApplicableCode => $ARGS{"Scrip-new-CustomIsApplicableCode"}, Stage => $ARGS{"Scrip-new-Stage"}, ); } else { $scrip->Load( $id ); return (undef, loc("Couldn't load scrip #[_1]", $id)) unless $scrip->id; my @attribs = qw(Queue ScripAction ScripCondition Template Stage Description CustomPrepareCode CustomCommitCode CustomIsApplicableCode); my @results = UpdateRecordObject( AttributesRef => \@attribs, AttributePrefix => 'Scrip-'.$scrip->Id, Object => $scrip, ARGSRef => \%ARGS ); return ($scrip->id, @results); } rt-4.0.19/share/html/Admin/Elements/SelectRights0000664000175000017500000001042412262650742020450 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <%PERL> my %current_rights; my @pairs; while ( my $ace = $ACLObj->Next ) { my $right = $ace->RightName; $current_rights{ $right } = 1; push @pairs, [$right, loc($right)]; } @pairs = sort { $a->[1] cmp $b->[1] } @pairs;

      <&|/l&>Current rights

      % unless ( @pairs ) { <&|/l&>No rights granted.
      % } else { (<&|/l&>Check box to revoke right)
      % foreach my $pair ( @pairs ) {  <% $pair->[1] %>
      % } }

      <&|/l&>New rights

      <%INIT> my ($ACLDesc, $AppliesTo, %Rights); # if the principal id points to a user, we really want to point # to their ACL equivalence group. The machinations we're going through # lead me to start to suspect that we really want users and groups # to just be the same table. or _maybe_ that we want an object db. my $princ = RT::Principal->new($RT::SystemUser); $princ->Load($PrincipalId); if ($princ->PrincipalType eq 'User') { my $group = RT::Group->new($RT::SystemUser); $group->LoadACLEquivalenceGroup($princ); $PrincipalId = $group->PrincipalId; } my $ACLObj = RT::ACL->new($session{'CurrentUser'}); my $ACE = RT::ACE->new($session{'CurrentUser'}); $ACLObj->LimitToObject( $Object); $ACLObj->LimitToPrincipal( Id => $PrincipalId); $ACLObj->OrderBy(FIELD=>'RightName'); eval { %Rights = %{$Object->AvailableRights}; }; if ($@) { %Rights = ( loc('System Error') => loc("No rights found") ); } $ACLDesc = "$PrincipalId-".ref($Object)."-".$Object->Id; <%ARGS> $PrincipalType => undef $PrincipalId => undef $Object =>undef rt-4.0.19/share/html/Admin/Elements/SelectStage0000664000175000017500000000524112262650742020254 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % foreach my $source( @sources ) { % } <%INIT> return unless $CustomField->IsSelectionType; my @sources; foreach my $class( 'RT::CustomFieldValues', RT->Config->Get('CustomFieldValuesSources') ) { next unless $class; local $@; eval "require $class"; if( $@ ) { $RT::Logger->crit("Couldn't load class '$class': $@"); next; } my %res = ( Class => $class ); $res{'Description'} = $class->SourceDescription if $class->can('SourceDescription'); $res{'Description'} ||= $class; $res{'Description'} = 'Provide list of values below' if $class eq 'RT::CustomFieldValues'; push @sources, \%res; } return unless grep $_->{'Class'} ne 'RT::CustomFieldValues', @sources; <%ARGS> $CustomField => undef rt-4.0.19/share/html/Admin/Elements/EditScrips0000664000175000017500000000736512262650742020133 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@actions &>

      <&|/l&>Current Scrips

      <& /Elements/CollectionList, OrderBy => 'Description', Order => 'ASC', Rows => 100, %ARGS, Format => $Format, DisplayFormat => "__CheckBox.{DeleteScrip}__, $Format", Collection => $Scrips, AllowSorting => 1, PassArguments => [ qw(Query Format Rows Page Order OrderBy id) ], &> % if ( $Scrips->Count ) {

      <&|/l&>(Check box to delete)

      % } else {

      <&|/l&>(No scrips)

      % } <& /Elements/Submit, Caption => loc("Delete selected scrips"), Label => loc("Delete") &>
      <%init> my (@actions); my $Scrips = RT::Scrips->new($session{'CurrentUser'}); my $QueueObj = RT::Queue->new($session{'CurrentUser'}); if ( $id ) { $QueueObj->Load( $id ); unless ( $QueueObj->id ) { push @actions, loc("Couldn't load queue #[_1]", $id) } } if ($QueueObj->id) { $Scrips->LimitToQueue($id); $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Scrips'}; } else { $Scrips->LimitToGlobal(); $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'GlobalScrips'}; } # deal with modifying and deleting existing scrips # we still support DeleteScrip-id format but array is preferred foreach my $id ( grep $_, @DeleteScrip, map /^DeleteScrip-(\d+)/, keys %ARGS ) { my $scrip = RT::Scrip->new($session{'CurrentUser'}); $scrip->Load( $id ); my ($retval, $msg) = $scrip->Delete; if ($retval) { push @actions, loc("Scrip deleted"); } else { push @actions, $msg; } } <%ARGS> $id => undef $title => undef $Format => undef @DeleteScrip => () rt-4.0.19/share/html/Admin/Elements/SelectModifyUser0000664000175000017500000000516712262650742021306 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %while ( $user = $users->Next) { <%$user->id%>: <& /Elements/ShowUser, User => $user &>
      %} <%INIT> my ($user); my $users = RT::Users->new($session{'CurrentUser'}); $users->Limit(FIELD => 'id', VALUE => RT->SystemUser->id, OPERATOR => '!=' ); if (defined $IdLike) { $users->Limit(FIELD => 'Name', VALUE => $IdLike, OPERATOR => 'LIKE' ); } if (defined $EmailLike) { $users->Limit(FIELD => 'EmailAddress', VALUE => $EmailLike, OPERATOR => 'LIKE'); } <%ARGS> $IdLike => undef $EmailLike => undef rt-4.0.19/share/html/Admin/Elements/EditQueueWatcherGroup0000664000175000017500000000422112262650742022273 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Label $QueueObj $Watchers <% $Label %>: <& /Admin/Elements/EditQueueWatchers, QueueObj => $QueueObj, Watchers => $Watchers &> rt-4.0.19/share/html/Admin/Elements/SelectCustomFieldLookupType0000664000175000017500000000452712262650742023471 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $cf = RT::CustomField->new($session{'CurrentUser'}); <%ARGS> $Default=> '' $Name => 'LookupType' rt-4.0.19/share/html/Admin/Elements/SelectCustomFieldType0000664000175000017500000000456612262650742022302 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $cf = RT::CustomField->new($session{'CurrentUser'}); $Default = "Freeform-1" if $Default eq "-0"; <%ARGS> $Default=>undef $Name => 'TypeComposite' rt-4.0.19/share/html/Admin/Elements/EditCustomFieldValues0000664000175000017500000000755312262650742022265 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % unless ( $values->Count ) {

      <&|/l&>(no values)

      % return; % } % if ($CustomField->Type ne 'Combobox') { % } % while ( my $value = $values->Next ) { % my $paramtag = "CustomField-". $CustomField->Id ."-Value-". $value->Id; % if ( $CustomField->Type ne 'Combobox' ) { % } % $m->callback(CallbackName => 'AfterCustomFieldValueInput', CustomFieldObj => $CustomField, CustomFieldValueObj => $value, ARGSRef => \%ARGS ); % }
        <&|/l&>Sort <&|/l&>Name <&|/l&>Description<&|/l&>Category
      % if ( $Categories ) { % my $selected = $value->Category; % $selected = '' unless defined $selected; % }
      <&|/l&>(Check box to delete) <%init> my $values = $CustomField->ValuesObj(); my $BasedOnObj = $CustomField->BasedOnObj; my $Categories; if ($BasedOnObj and $BasedOnObj->Id) { $Categories = $BasedOnObj->Values; } <%args> $CustomField => undef rt-4.0.19/share/html/Admin/Elements/ShowKeyInfo0000664000175000017500000000655012262650742020262 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => $title &> % if ( $res{'exit_code'} || !keys %{ $res{'info'} } ) { <% loc('No keys for this address') %> % } else { % unless ( $Type eq 'private' ) { % } % foreach my $uinfo( @{ $res{'info'}{'User'} } ) { % }
      <% loc('Trust') %>: <% loc( $res{'info'}{'Trust'} ) %>
      <% loc('Fingerprint') %>: <% $res{'info'}{'Fingerprint'} %>
      <% loc('Created') %>: <% $res{'info'}{'Created'}? $res{'info'}{'Created'}->AsString( Time => 0 ): loc('never') %>
      <% loc('Expire') %>: <% $res{'info'}{'Expire'}? $res{'info'}{'Expire'}->AsString( Time => 0 ): loc('never') %>
      <% loc('User (created - expire)') %>: <% $uinfo->{'String'} %>\ (<% $uinfo->{'Created'}? $uinfo->{'Created'}->AsString( Time => 0 ): loc('never') %> - \ <% $uinfo->{'Expire'}? $uinfo->{'Expire'}->AsString( Time => 0 ): loc('never') %>)
      % } <%ARGS> $EmailAddress $Type => 'public' <%INIT> require RT::Crypt::GnuPG; my %res = RT::Crypt::GnuPG::GetKeyInfo( $EmailAddress, $Type ); my $title; unless ( $Type eq 'private' ) { $title = loc('GnuPG public key(s) for [_1]', $EmailAddress); } else { $title = loc('GnuPG private key(s) for [_1]', $EmailAddress); } rt-4.0.19/share/html/Admin/Elements/PickObjects0000664000175000017500000000526112262650742020253 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if (@Objects == 0) {

      <&|/l&>(None)

      % } else { % my $count; % foreach my $Object (@Objects) { % my $id = "Object-".$Object->id."-CF-".$id; % if (!$ReadOnly) { % } % }
      />
      % } <%ARGS> @Objects $id $ReadOnly => 0 $Checked => 0 rt-4.0.19/share/html/Admin/Elements/EditUserComments0000664000175000017500000000447312262650742021311 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => "Comments about $name" &> <&|/l&>These comments aren't generally visible to the user:
      <%ARGS> $UserObj => undef rt-4.0.19/share/html/Admin/Elements/EditRightsCategoryTabs0000664000175000017500000001162312262650742022430 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Context $Principal => undef $id $acldesc => '' <%init> # XXX OPTIMIZATION: Moving the calls to AvailableRights and RightCategories up # one component to avoid calling them for every principal would be a win, but # it's cleaner to do it here. The values can really be computed once per # $Context. # Find all our available rights... my (%available_rights, %categories); if ( blessed($Context) and $Context->can('AvailableRights') ) { %available_rights = %{$Context->AvailableRights}; } else { %available_rights = ( loc('System Error') => loc("No rights found") ); } # ...and their categories if ( blessed($Context) and $Context->can('RightCategories') ) { my %right_categories = %{$Context->RightCategories}; for my $right (keys %available_rights) { my $category = $right_categories{$right} || 'Miscellaneous'; # loc push @{$categories{$category}}, $right; } } # Find all the current rights for this principal my %current_rights; if ($Principal) { my $acls = RT::ACL->new($session{'CurrentUser'}); $acls->LimitToObject( $Context ); $acls->LimitToPrincipal( Id => $Principal->PrincipalId ); while ( my $ace = $acls->Next ) { my $right = $ace->RightName; $current_rights{$right} = 1; } } my %category_desc = ( 'General' => loc('General rights'), 'Staff' => loc('Rights for Staff'), 'Admin' => loc('Rights for Administrators'), 'Status' => loc('Status changes'), ); my %catsort = ( General => 1, Staff => 2, Admin => 3, Status => 4, Miscellaneous => 999 ); my $i = 5; for my $category ( sort keys %categories ) { next if $catsort{$category}; $catsort{$category} = $i++; } $acldesc ||= join '-', ($Principal ? $Principal->PrincipalId : 'addprincipal'), ref($Context), $Context->Id;
      % for my $category (sort { $catsort{$a} <=> $catsort{$b} } keys %categories) {
      ">
        % for my $right (sort { $available_rights{$a} cmp $available_rights{$b} } @{$categories{$category}}) {
      • />
      • % }
      % }
      rt-4.0.19/share/html/Admin/Elements/SelectCustomFieldRenderType0000664000175000017500000000465712262650742023443 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $cf = RT::CustomField->new($session{'CurrentUser'}); $Default ||= $cf->DefaultRenderType($TypeComposite); my @types = $cf->RenderTypes($TypeComposite); <%ARGS> $Default => undef $TypeComposite => 'Select-0' $Name => 'RenderType' $BasedOn => 0 rt-4.0.19/share/html/Admin/Users/0000775000175000017500000000000012262650742015451 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Users/GnuPG.html0000664000175000017500000000763612262650742017333 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &> % if ( $email ) { <& /Admin/Elements/ShowKeyInfo, EmailAddress => $email &> % } else {

      <% loc("User has empty email address") %>

      % }
      <&|/Widgets/TitleBox, title => 'GnuPG private key'&> <& /Widgets/Form/Select, Name => 'PrivateKey', Description => loc('Private Key'), Values => \@potential_keys, CurrentValue => $UserObj->PrivateKey, DefaultLabel => loc('No private key'), &> <& /Elements/Submit, Name => 'Update', Label => loc('Save Changes') &>
      <%ARGS> $id => undef $Update => undef <%INIT> return unless RT->Config->Get('GnuPG')->{'Enable'}; require RT::Crypt::GnuPG; my @results; my $UserObj = RT::User->new( $session{'CurrentUser'} ); $UserObj->Load( $id ); unless ( $UserObj->id ) { Abort( loc("Couldn't load user #[_1]", $id) ); } $id = $ARGS{'id'} = $UserObj->id; my $email = $UserObj->EmailAddress; my %keys_meta = RT::Crypt::GnuPG::GetKeysForSigning( $email ); my @potential_keys = map $_->{'Key'}, @{ $keys_meta{'info'} || [] }; $ARGS{'PrivateKey'} = $m->comp('/Widgets/Form/Select:Process', Name => 'PrivateKey', Arguments => \%ARGS, Default => 1, ); if ( $Update ) { if (not $ARGS{'PrivateKey'} or grep {$_ eq $ARGS{'PrivateKey'}} @potential_keys) { if (($ARGS{'PrivateKey'}||'') ne ($UserObj->PrivateKey||'')) { my ($status, $msg) = $UserObj->SetPrivateKey( $ARGS{'PrivateKey'} ); push @results, $msg; } } else { push @results, loc("Invalid key [_1] for address '[_2]'", $ARGS{'PrivateKey'}, $email); } } my $title = loc("[_1]'s GnuPG keys",$UserObj->Name); rt-4.0.19/share/html/Admin/Users/CustomFields.html0000664000175000017500000000504212262650742020741 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, Object => $Object, ObjectType => 'RT::User' &> <%INIT> my $Object = RT::User->new( $session{'CurrentUser'} ); $Object->Load($id) || Abort( loc( "Couldn't load object [_1]", $id ) ); my $FriendlySubTypes = RT::CustomField->new( $session{'CurrentUser'} ) ->FriendlyLookupType( $Object->CustomFieldLookupType ); my $title = loc( 'Edit Custom Fields for [_1]', $Object->Name ); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/Users/index.html0000664000175000017500000001365212262650742017455 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Select a user') &> <& /Elements/Tabs &>

      <% $caption %>

      % foreach my $field( qw(Format Rows Page Order OrderBy) ) { % next unless defined $ARGS{ $field } && length $ARGS{ $field }; % } <&|/l&>Go to user
      % foreach my $field( qw(Format Rows Page Order OrderBy) ) { % next unless defined $ARGS{ $field } && length $ARGS{ $field }; % } <&|/l&>Find all users whose <& /Elements/SelectUsers, %ARGS, Fields => \@fields &>
      /> <&|/l&>Include disabled users in search.
      % unless ( $users->Count ) { <&|/l&>No users matching search criteria found. % } else {

      <&|/l&>Select a user:

      <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => 100, %ARGS, Format => $Format, Collection => $users, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy UserString UserOp UserField IdLike EmailLike FindDisabledUsers)], &> % } <%INIT> my $caption; my $users = RT::Users->new( $session{'CurrentUser'} ); $users->FindAllRows if $FindDisabledUsers; if ( defined($UserString) && length $UserString ) { $caption = loc("Users matching search criteria"); if ( $UserField =~ /^CustomField-(\d+)/ ) { $users->LimitCustomField( CUSTOMFIELD => $1, OPERATOR => $UserOp, VALUE => $UserString, ); } else { $users->Limit( FIELD => $UserField, OPERATOR => $UserOp, VALUE => $UserString, ); } RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Users/Modify.html?id=".$users->First->id) if $users->Count == 1; } else { $caption = loc("Privileged users"); $users->LimitToPrivileged; } $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Users'}; # Build up the list of fields to display for searching my $i = 0; my %sorted = map { $_ => $i++ } qw( Name EmailAddress RealName Organization NickName WorkPhone HomePhone MobilePhone PagerPhone Address1 Address2 City State Zip Country Timezone Lang Gecos Comments ); my @attrs = sort { $sorted{$a} <=> $sorted{$b} } grep { !/(?:^id$|ContactInfo|Encoding|^External|System|PGPKey|AuthToken|^Last|^Creat(?:ed|or)$|^Signature$)/ } RT::User->ReadableAttributes; my @fields; for my $name (@attrs) { my $label = $m->comp( '/Elements/ColumnMap', Class => 'RT__User', Name => $name, Attr => 'title' ); push @fields, [ $name, $label || $name ]; } <%ARGS> $Format => undef, $UserString => undef $UserOp => '=' $UserField => 'Name' $IdLike => undef $EmailLike => undef $FindDisabledUsers => 0 rt-4.0.19/share/html/Admin/Users/Memberships.html0000664000175000017500000001067012262650742020621 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>

      <&|/l&>Groups the user is member of (check box to delete)

      <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', %ARGS, Rows => 20, DisplayFormat => "__CheckBox.{Delete}__,$Format", Format => $Format, Collection => $is_member, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy id)], &>

      <&|/l&>Groups the user is not member of (check box to add)

      <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => 20, %ARGS, DisplayFormat => "__CheckBox.{Add}__,'__HasMemberRecursively.{$id}__/TITLE:Recursive',$Format", Format => $Format, Collection => $is_not_member, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy id)], &> <& /Elements/Submit, Label => loc('Update'), Name => 'Update' &>
      <%INIT> my $UserObj = RT::User->new($session{'CurrentUser'}); $UserObj->Load( $id ) || Abort("Couldn't load user '$id'"); my $title = loc("Memberships of the user [_1]", $UserObj->Name); my @results; if ( $Update ) { foreach my $gid( @Add ) { my $group = RT::Group->new( $session{'CurrentUser'} ); $group->LoadUserDefinedGroup( $gid ); unless ( $group->id ) { push @results, loc( "Couldn't load group #[_1]", $gid ); next; } my ($status, $msg) = $group->AddMember( $id ); push @results, $msg; } foreach my $gid( @Delete ) { my $group = RT::Group->new( $session{'CurrentUser'} ); $group->LoadUserDefinedGroup( $gid ); unless ( $group->id ) { push @results, loc( "Couldn't load group #[_1]", $gid ); next; } my ($status, $msg) = $group->DeleteMember( $id ); push @results, $msg; } } my $is_member = RT::Groups->new( $session{'CurrentUser'} ); $is_member->LimitToUserDefinedGroups; $is_member->WithMember( PrincipalId => $UserObj->Id ); my $is_not_member = RT::Groups->new( $session{'CurrentUser'} ); $is_not_member->LimitToUserDefinedGroups; $is_not_member->WithoutMember( PrincipalId => $UserObj->Id ); $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Groups'}; <%ARGS> $id => undef $Update => 0, @Add => (), @Delete => (), $Format => undef rt-4.0.19/share/html/Admin/Users/History.html0000664000175000017500000000455012262650742020004 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Ticket/Elements/ShowHistory, Ticket => $UserObj, ShowDisplayModes => 0, &> <%INIT> my $UserObj = RT::User->new($session{'CurrentUser'}); $UserObj->Load($id) || Abort("Couldn't load user '$id'"); my $title = loc("History of the user [_1]", $UserObj->Name); <%ARGS> $id => '' rt-4.0.19/share/html/Admin/Users/Modify.html0000664000175000017500000003052512262650742017573 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %if ($Create) { % } else { % }
      <&| /Widgets/TitleBox, title => loc('Identity') &>
      <&|/l&>Username: <&|/l&>(required)
      <&|/l&>Email:
      <&|/l&>Real Name:
      <&|/l&>Nickname:
      <&|/l&>Unix login:
      <&|/l&>Language: <& /Elements/SelectLang, Name => 'Lang', Default => $UserObj->Lang||$Lang &>
      <&|/l&>Extra info:

      <&| /Widgets/TitleBox, title => loc('Access control') &> /> <&|/l&>Let this user access RT
      /> <&|/l&>Let this user be granted rights (<&|/l&>Privileged)
      <& /Elements/EditPassword, User => $UserObj, Name => [qw(CurrentPass Pass1 Pass2)], &> % $m->callback( %ARGS, CallbackName => 'LeftColumnBottom', UserObj => $UserObj );
      <&| /Widgets/TitleBox, title => loc('Location') &>
      <&|/l&>Organization:
      <&|/l&>Address1:
      <&|/l&>Address2:
      <&|/l&>City:
      <&|/l&>State:
      <&|/l&>Zip:
      <&|/l&>Country:

      <&| /Widgets/TitleBox, title => loc('Phone numbers') &>
      <&|/l&>Residence:
      <&|/l&>Work:
      <&|/l&>Mobile:
      <&|/l&>Pager:

      <&| /Widgets/TitleBox, title => loc('Custom Fields') &> % my $CFs = $UserObj->CustomFields; % while (my $CF = $CFs->Next) { % }
      <% loc($CF->Name) %>: % if ($UserObj->id) { <& /Elements/EditCustomField, %ARGS, Object => $UserObj, CustomField => $CF &> % } else { <& /Elements/EditCustomField, %ARGS, NamePrefix => 'Object-RT::User--CustomField-', CustomField => $CF &> % }
      % $m->callback( %ARGS, CallbackName => 'RightColumnBottom', UserObj => $UserObj );
      <&| /Widgets/TitleBox, title => loc('Comments about this user') &> %if (!$Create && $UserObj->Privileged) {
      <&| /Widgets/TitleBox, title => loc('Signature') &> % }
      % if ( $Create ) { <& /Elements/Submit, Label => loc('Create') &> % } else { <& /Elements/Submit, Label => loc('Save Changes') &> % }
      <%INIT> my $UserObj = RT::User->new($session{'CurrentUser'}); my ($title, $PrivilegedChecked, $EnabledChecked, $Disabled, $result, @results); my ($val, $msg); if ($Create) { $title = loc("Create a new user"); } else { if ( defined $id && $id eq 'new') { ( $val, $msg ) = $UserObj->Create( Name => $Name, EmailAddress => $ARGS{'EmailAddress'}, Name => $ARGS{'Name'}, Comments => $ARGS{'Comments'}, Signature => $ARGS{'Signature'}, EmailAddress => $ARGS{'EmailAddress'}, FreeformContactInfo => $ARGS{'FreeformContactInfo'}, Organization => $ARGS{'Organization'}, RealName => $ARGS{'RealName'}, NickName => $ARGS{'NickName'}, Lang => $ARGS{'Lang'}, EmailEncoding => $ARGS{'EmailEncoding'}, WebEncoding => $ARGS{'WebEncoding'}, ExternalContactInfoId => $ARGS{'ExternalContactInfoId'}, ContactInfoSystem => $ARGS{'ContactInfoSystem'}, Gecos => $ARGS{'Gecos'}, ExternalAuthId => $ARGS{'ExternalAuthId'}, AuthSystem => $ARGS{'AuthSystem'}, HomePhone => $ARGS{'HomePhone'}, WorkPhone => $ARGS{'WorkPhone'}, MobilePhone => $ARGS{'MobilePhone'}, PagerPhone => $ARGS{'PagerPhone'}, Address1 => $ARGS{'Address1'}, Address2 => $ARGS{'Address2'}, City => $ARGS{'City'}, State => $ARGS{'State'}, Zip => $ARGS{'Zip'}, Country => $ARGS{'Country'}, Privileged => $ARGS{'Privileged'}, Disabled => ($ARGS{'Enabled'} ? 0 : 1) ); if ($val) { push @results, $msg; push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $UserObj ); } else { push @results, loc('User could not be created: [_1]', $msg); } } else { $UserObj->Load($id) || $UserObj->Load($Name) || Abort("Couldn't load user '" . ( $Name || '') . "'"); $val = $UserObj->Id(); } if ($val) { $title = loc("Modify the user [_1]", $UserObj->Name); } # If the create failed else { $title = loc("Create a new user"); $Create = 1; } } $m->callback( %ARGS, CallbackName => 'BeforeUpdate', User => $UserObj, ARGSRef => \%ARGS, Results => \@results ); # If we have a user to modify, lets try. if ($UserObj->Id && $id ne 'new') { my @fields = qw(Name Comments Signature EmailAddress FreeformContactInfo Organization RealName NickName Lang EmailEncoding WebEncoding ExternalContactInfoId ContactInfoSystem Gecos ExternalAuthId AuthSystem HomePhone WorkPhone MobilePhone PagerPhone Address1 Address2 City State Zip Country ); my @fieldresults = UpdateRecordObject ( AttributesRef => \@fields, Object => $UserObj, ARGSRef => \%ARGS ); push (@results,@fieldresults); push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $UserObj ); # {{{ Deal with special fields: Privileged, Enabled if ( $SetPrivileged and $Privileged != $UserObj->Privileged ) { my ($code, $msg) = $UserObj->SetPrivileged($Privileged); push @results, loc('Privileged status: [_1]', loc_fuzzy($msg)); } #we're asking about enabled on the web page but really care about disabled. $Disabled = $Enabled ? 0 : 1; if ( ($SetEnabled) and ( $Disabled != $UserObj->Disabled) ) { my ($code, $msg) = $UserObj->SetDisabled($Disabled); push @results, $msg; } } my %password_cond = $UserObj->CurrentUserRequireToSetPassword; if ( $UserObj->Id ) { # Deal with Password field my ($status, $msg) = $UserObj->SafeSetPassword( Current => $CurrentPass, New => $Pass1, Confirmation => $Pass2, ); push @results, $msg; if ( $id eq 'new' && !$status ) { push @results, loc("A password was not set, so user won't be able to login."); } } # Do some setup for the ui unless ( $UserObj->id && $UserObj->Disabled ) { $EnabledChecked = 'checked="checked"'; } if ((!$Create && $UserObj->Privileged()) or (!$UserObj->Id and $Privileged)) { $PrivilegedChecked = 'checked="checked"'; } # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $UserObj->Id }, ) if $UserObj->Id; <%ARGS> $id => undef $Name => undef $Comments => undef $Signature => undef $EmailAddress => undef $FreeformContactInfo => undef $Organization => undef $RealName => undef $NickName => undef $Privileged => undef $SetPrivileged => undef $Enabled => undef $SetEnabled => undef $Lang => undef $EmailEncoding => undef $WebEncoding => undef $ExternalContactInfoId => undef $ContactInfoSystem => undef $Gecos => undef $ExternalAuthId => undef $AuthSystem => undef $HomePhone => undef $WorkPhone => undef $MobilePhone => undef $PagerPhone => undef $Address1 => undef $Address2 => undef $City => undef $State => undef $Zip => undef $Country => undef $CurrentPass => undef $Pass1 => undef $Pass2 => undef $Create=> undef rt-4.0.19/share/html/Admin/Users/MyRT.html0000664000175000017500000001125112262650742017172 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Widgets/SelectionBox:header, nojs => 1 &> <& /Elements/ListActions, actions => \@actions &>

      % for my $pane (@panes) { <&|/Widgets/TitleBox, title => loc('RT at a glance').': '.loc($pane->{Name}), bodyclass => "" &> <& /Widgets/SelectionBox:show, self => $pane, nojs => 1 &>
      % } <%init> my @actions; my $UserObj = RT::User->new($session{'CurrentUser'}); $UserObj->Load($id) || Abort("Couldn't load user '" . ($id || '') . "'"); my $title = loc("RT at a glance for the user [_1]", $UserObj->Name); if ($ARGS{Reset}) { my ($ok, $msg) = $UserObj->SetPreferences('HomepageSettings', {}); push @actions, $ok ? loc('Preferences saved for user [_1].', $UserObj->Name) : $msg; } my ($default_portlets) = RT::System->new($session{'CurrentUser'})->Attributes->Named('HomepageSettings'); my $portlets = $UserObj->Preferences('HomepageSettings', $default_portlets ? $default_portlets->Content : {}); my %allowed_components = map {$_ => 1} @{ RT->Config->Get('HomepageComponents') }; my @items; push @items, map {["component-$_", loc($_)]} sort keys %allowed_components; my $sys = RT::System->new( RT::CurrentUser->new($UserObj) ); my @objs = ($sys); push @objs, RT::SavedSearch->new( RT::CurrentUser->new( $UserObj ) )->ObjectsForLoading; for my $object (@objs) { for ($m->comp("/Search/Elements/SearchesForObject", Object => $object)) { my ($desc, $loc_desc, $search) = @$_; my $SearchType = $search->Content->{'SearchType'} || 'Ticket'; if ($object eq $sys && $SearchType eq 'Ticket') { push @items, ["system-$desc", $loc_desc]; } else { my $oid = ref($object).'-'.$object->Id.'-SavedSearch-'.$search->Id; my $type = ($SearchType eq 'Ticket') ? 'Saved Search' : $SearchType; # loc push @items, ["saved-$oid", loc($type).": $loc_desc"]; } } } my @panes = $m->comp( '/Admin/Elements/ConfigureMyRT', panes => ['body', 'summary'], Action => "MyRT.html?id=$id", items => \@items, current_portlets => $portlets, OnSave => sub { my ( $conf, $pane ) = @_; my ($ok, $msg) = $UserObj->SetPreferences( 'HomepageSettings', $conf ); push @actions, $ok ? loc('Preferences [_1] for user [_2].', $pane, $UserObj->Name) : $msg; } ); $m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_, nojs => 1 ) for @panes; <%ARGS> $id => undef rt-4.0.19/share/html/Admin/index.html0000664000175000017500000000433412262650742016351 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('RT Administration') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('tools')->child('config') &> % if (RT->Config->Get('ShowRTPortal')) { <& /Admin/Elements/Portal &> % } rt-4.0.19/share/html/Admin/CustomFields/0000775000175000017500000000000012262650742016751 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/CustomFields/Objects.html0000664000175000017500000001211212262650742021225 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      % if ( $is_global ) {

      <&|/l&>Applies to all objects

      <&|/l&>check this box to remove this Custom Field from all objects and be able to choose specific objects. % } else {

      <&|/l&>Apply globally

      <&|/l&>check this box to apply this Custom Field to all objects. % unless ( $CF->ApplyGlobally ) {

      <&|/l&>Selected objects

      <& /Elements/CollectionList, OrderBy => 'id', Order => 'ASC', %ARGS, Collection => $applied, Rows => 0, Page => 1, Format => $format, DisplayFormat => "'__CheckBox.{RemoveCustomField-". $CF->id ."}__',". $format, AllowSorting => 0, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &>

      <&|/l&>Unselected objects

      <& /Elements/CollectionList, OrderBy => 'id', Order => 'ASC', %ARGS, Collection => $not_applied, Rows => 50, Format => $format, DisplayFormat => "'__CheckBox.{AddCustomField-". $CF->id ."}__',". $format, AllowSorting => 1, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &> % } % } <& /Elements/Submit, Name => 'UpdateObjs' &>
      <%INIT> my $CF = RT::CustomField->new($session{'CurrentUser'}); $CF->Load($id) or Abort(loc("Could not load CustomField [_1]", $id)); my $class = $CF->RecordClassFromLookupType; Abort(loc("Something wrong. Contact system administrator")) unless $class; my (@results); if ( $UpdateObjs ) { if ( defined (my $del = $ARGS{'RemoveCustomField-'.$CF->id}) ) { foreach my $id ( ref $del? (@$del) : ($del) ) { my $object = $class->new( $session{'CurrentUser'} ); if ( $id ) { $object->Load( $id ); next unless $object->id; } my ($status, $msg) = $CF->RemoveFromObject( $object ); push @results, $msg; } } if ( defined (my $add = $ARGS{'AddCustomField-'.$CF->id}) ) { foreach my $id ( ref $add? (@$add) : ($add) ) { my $object = $class->new( $session{'CurrentUser'} ); if ( $id ) { $object->Load( $id ); next unless $object->id; } my ($status, $msg) = $CF->AddToObject( $object ); push @results, $msg; } } } my $is_global = $CF->IsApplied(0); my $applied = $CF->AppliedTo; my $not_applied = $CF->NotAppliedTo; my $collection_class = ref($applied); $collection_class =~ s/^RT:://; my $format = RT->Config->Get('AdminSearchResultFormat')->{$collection_class} || '__id__,__Name__'; my $title = loc('Modify associated objects for [_1]', $CF->Name); <%ARGS> $id => undef $FindDisabledObjects => 0 $UpdateObjs => 0 rt-4.0.19/share/html/Admin/CustomFields/index.html0000664000175000017500000000767012262650742020760 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> % my $tmp = RT::CustomField->new( $session{'CurrentUser'} ); % if ( $Type ) {

      <% loc("Custom Fields for [_1]", $tmp->FriendlyLookupType( $Type )) %>

      % } <& /Elements/CollectionList, OrderBy => 'LookupType|Name', Order => 'ASC|ASC', Rows => 50, %ARGS, Collection => $CustomFields, Format => $Format, DisplayFormat => ($Type? '' : '__FriendlyLookupType__,'). $Format, AllowSorting => 1, PassArguments => [ qw(Format Rows Page Order OrderBy), qw(Type ShowDisabled) ], &>
      <&|/l&>Only show custom fields for:
      /> <&|/l&>Include disabled custom fields in listing.
      % $m->callback(CallbackName => 'BeforeSubmit');
      <%args> $Type => '' $ShowDisabled => 0 $Format => undef <%INIT> my $title = loc('Select a Custom Field'); $Type ||= $ARGS{'type'} || ''; if ( !$Type && $ARGS{'type'} ) { $Type ||= $ARGS{'type'}; $RT::Logger->warning("'type' argument is deprecated use 'Type' instead"); } my $CustomFields = RT::CustomFields->new($session{'CurrentUser'}); $CustomFields->UnLimit; $CustomFields->FindAllRows if $ShowDisabled; $CustomFields->LimitToLookupType( $Type ) if $Type; $m->callback(CallbackName => 'MassageCustomFields', CustomFields => $CustomFields); $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'CustomFields'}; rt-4.0.19/share/html/Admin/CustomFields/UserRights.html0000664000175000017500000000572612262650742021750 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $CustomFieldObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs( \%ARGS ); if (!defined $id) { $m->comp("/Elements/Error", Why => loc("No Class defined")); } my $CustomFieldObj = RT::CustomField->new($session{'CurrentUser'}); $CustomFieldObj->Load($id) || $m->comp("/Elements/Error", Why => loc("Couldn't load Class [_1]",$id)); my $title = loc('Modify user rights for custom field [_1]', $CustomFieldObj->Name); # Principal collections my @principals = GetPrincipalsMap($CustomFieldObj, qw(Users)); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/CustomFields/GroupRights.html0000664000175000017500000000573612262650742022127 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $CustomFieldObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> if (!defined $id) { $m->comp("/Elements/Error", Why => loc("No CustomField defined")); } my $CustomFieldObj = RT::CustomField->new($session{'CurrentUser'}); $CustomFieldObj->Load($id) || $m->comp("/Elements/Error", Why => loc("Couldn't load CustomField [_1]",$id)); my @results = ProcessACLs( \%ARGS ); my $title = loc('Modify group rights for custom field [_1]', $CustomFieldObj->Name); # Principal collections my @principals = GetPrincipalsMap($CustomFieldObj, qw(System Groups)); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/CustomFields/Modify.html0000664000175000017500000002761112262650742021075 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      % if ( $CustomFieldObj->Id and $CustomFieldObj->HasRenderTypes ) { % } % if ( $CustomFieldObj->Id and $CustomFieldObj->IsSelectionType and RT->Config->Get('CustomFieldValuesSources') and ( scalar(@{RT->Config->Get('CustomFieldValuesSources')}) > 0 ) ) { % } % if ( $CustomFieldObj->Id && $CustomFieldObj->IsSelectionType && !$CustomFieldObj->IsExternalValues ) { % } % $m->callback(CallbackName => 'BeforeEnabled', CustomField => $CustomFieldObj, CFvalidations => \@CFvalidations); % $m->callback(CallbackName => 'EndOfTable', CustomField => $CustomFieldObj, CFvalidations => \@CFvalidations);
      <&|/l&>Name
      <&|/l&>Description
      <&|/l&>Type <& /Admin/Elements/SelectCustomFieldType, Name => "TypeComposite", Default => $CustomFieldObj->TypeComposite, &>
      <&|/l&>Render Type <& /Admin/Elements/SelectCustomFieldRenderType, Name => "RenderType", TypeComposite => $CustomFieldObj->TypeComposite, Default => $CustomFieldObj->RenderType, BasedOn => $CustomFieldObj->BasedOnObj->id, &>
      <&|/l&>Field values source: <& /Admin/Elements/EditCustomFieldValuesSource, CustomField => $CustomFieldObj &>
      <&|/l&>Applies to <& /Admin/Elements/SelectCustomFieldLookupType, Name => "LookupType", Default => $CustomFieldObj->LookupType || $LookupType, &>
      <&|/l&>Validation <& /Widgets/ComboBox, Name => 'Pattern', Default => $CustomFieldObj->Pattern || $Pattern, Size => 20, Values => \@CFvalidations, &>
      <&|/l&>Link values to
      <&|/l&>RT can make this custom field's values into hyperlinks to another service. <&|/l&>Fill in this field with a URL. <&|/l_unsafe, '__id__', '__CustomField__' &>RT will replace [_1] and [_2] with the record's id and the custom field's value, respectively.
      <&|/l&>Include page
      <&|/l&>RT can include content from another web service when showing this custom field. <&|/l&>Fill in this field with a URL. <&|/l_unsafe, '__id__', '__CustomField__' &>RT will replace [_1] and [_2] with the record's id and the custom field's value, respectively. <&|/l&>Some browsers may only load content from the same domain as your RT server.
      <&|/l&>Categories are based on <& /Admin/Elements/SelectCustomField, Name => "BasedOn", LookupType => $CustomFieldObj->LookupType, Default => $CustomFieldObj->BasedOnObj || $BasedOn, Not => $CustomFieldObj->id, &>
        /> <&|/l&>Enabled (Unchecking this box disables this custom field)
      % if ( $CustomFieldObj->Id && $CustomFieldObj->IsSelectionType && !$CustomFieldObj->IsExternalValues ) {

      <&|/l&>Values

      <& /Admin/Elements/EditCustomFieldValues, CustomField => $CustomFieldObj &> <& /Admin/Elements/AddCustomFieldValue, CustomField => $CustomFieldObj &>
      % } <& /Elements/Submit, Name => 'Update', Label => $id eq 'new'? loc('Create'): loc('Save Changes') &>
      <%INIT> my ($title, @results); my $CustomFieldObj = RT::CustomField->new( $session{'CurrentUser'} ); $m->callback(CallbackName => 'Initial', Pattern => \$Pattern, ARGSRef => \%ARGS); unless ( $id ) { $title = loc("Create a CustomField"); $id = 'new'; } else { if ( $id eq 'new' ) { my ( $val, $msg ) = $CustomFieldObj->Create( Name => $Name, TypeComposite => $TypeComposite, LookupType => $LookupType, Description => $Description, Pattern => $Pattern, LinkValueTo => $LinkValueTo, IncludeContentForValue => $IncludeContentForValue, BasedOn => $BasedOn, Disabled => !$Enabled, ); if (!$val) { push @results, loc("Could not create CustomField: [_1]", $msg); $title = loc( 'Create a CustomField'); } else { push @results, loc("Object created"); $title = loc( 'Created CustomField [_1]', $CustomFieldObj->Name ); } } else { push @results, loc('No CustomField') unless $CustomFieldObj->Load( $id ); $title = loc( 'Editing CustomField [_1]', $CustomFieldObj->Name ); } } if ( $ARGS{'Update'} && $id ne 'new' ) { #we're asking about enabled on the web page but really care about disabled. $ARGS{'Disabled'} = $Enabled? 0 : 1; my @attribs = qw(Disabled Pattern Name TypeComposite LookupType Description LinkValueTo IncludeContentForValue); push @results, UpdateRecordObject( AttributesRef => \@attribs, Object => $CustomFieldObj, ARGSRef => \%ARGS ); if ( ($ValuesClass||'RT::CustomFieldValues') ne $CustomFieldObj->ValuesClass ) { my $original = $CustomFieldObj->ValuesClass; my ($good, $msg) = $CustomFieldObj->SetValuesClass( $ValuesClass ); if ( $good ) { $msg = loc("[_1] changed from '[_2]' to '[_3]'", loc("Field values source"), $original, $ValuesClass ); } push @results, $msg; } # Set the render type if we have it, but unset it if the new type doesn't # support render types if ( $CustomFieldObj->HasRenderTypes($TypeComposite) ) { my $original = $CustomFieldObj->RenderType; if ( defined $RenderType and $RenderType ne $original ) { # It's changed! Let's update it. my ($good, $msg) = $CustomFieldObj->SetRenderType( $RenderType ); if ( $good ) { $msg = loc("[_1] changed from '[_2]' to '[_3]'", loc("Render Type"), $original, $RenderType ); } push @results, $msg; } } else { # Delete it if we no longer support render types $CustomFieldObj->SetRenderType( undef ); } if (($CustomFieldObj->BasedOn||'') ne ($BasedOn||'')) { my ($good, $msg) = $CustomFieldObj->SetBasedOn( $BasedOn ); push @results, $msg; } my $paramtag = "CustomField-". $CustomFieldObj->Id ."-Value"; # Delete any fields that want to be deleted foreach my $key ( keys %ARGS ) { next unless $key =~ /^Delete-$paramtag-(\d+)$/; my ($val, $msg) = $CustomFieldObj->DeleteValue( $1 ); push (@results, $msg); } # Update any existing values my $values = $CustomFieldObj->ValuesObj; while ( my $value = $values->Next ) { foreach my $attr (qw(Name Description SortOrder Category)) { my $param = join("-", $paramtag, $value->Id, $attr); next unless exists $ARGS{$param}; $ARGS{$param} =~ s/^\s+//; $ARGS{$param} =~ s/\s+$//; next if ($value->$attr()||'') eq ($ARGS{$param}||''); my $mutator = "Set$attr"; my ($id, $msg) = $value->$mutator( $ARGS{$param} ); push (@results, $msg); } $m->callback(CallbackName => 'AfterUpdateCustomFieldValue', CustomFieldObj => $CustomFieldObj, CustomFieldValueObj => $value, ARGSRef => \%ARGS ); } # Add any new values if ( defined $ARGS{ $paramtag ."-new-Name" } && length $ARGS{ $paramtag ."-new-Name" } ) { my ($id, $msg) = $CustomFieldObj->AddValue( map { $ARGS{$paramtag."-new-$_"} =~ s/^\s+//; $ARGS{$paramtag."-new-$_"} =~ s/\s+$//; $_ => $ARGS{ $paramtag ."-new-$_" } } qw/ Name Description SortOrder Category/ ); push (@results, $msg); my $cfv = RT::CustomFieldValue->new( $session{CurrentUser} ); $cfv->Load($id); $m->callback(CallbackName => 'AfterCreateCustomFieldValue', CustomFieldObj => $CustomFieldObj, CustomFieldValueObj => $cfv, ARGSRef => \%ARGS ); } } $id = $CustomFieldObj->id if $CustomFieldObj->id; # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $id }, ) if $CustomFieldObj->id; my $EnabledChecked = qq[checked="checked"]; $EnabledChecked = '' if $CustomFieldObj->Disabled; my @CFvalidations = ( '(?#Mandatory).', '(?#Digits)^[\d.]+$', '(?#Year)^[12]\d{3}$', ); $m->callback(CallbackName => 'ValidationPatterns', Values => \@CFvalidations); <%ARGS> $id => undef $TypeComposite => undef $LookupType => RT::Ticket->CustomFieldLookupType $MaxValues => undef $SortOrder => undef $Description => undef $Pattern => undef $Name => undef $SetEnabled => undef $Enabled => 0 $ValuesClass => 'RT::CustomFieldValues' $RenderType => undef $LinkValueTo => undef $IncludeContentForValue => undef $BasedOn => undef rt-4.0.19/share/html/Admin/Articles/0000775000175000017500000000000012262650742016116 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Articles/Elements/0000775000175000017500000000000012262650742017672 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Articles/Elements/Topics0000664000175000017500000001544112262650742021063 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@results &>
      % if (!$Modify) {
      <&|/l&>Topic Name
      <&|/l&>Description
      % } else { New topic % } <& .tree, Element => $tree, Action => $Modify ? "Move" : "Add", Prefix => $Modify ? "Topic-$Modify-Parent" : "Insert", RootObj => $RootObj, Modify => $Modify &>
      <%def .edit>  
      Topic Name:
      Description:
      <%args> $topic <%def .tree> % my $topic = $Element->getNodeValue; % unless ($Element->isRoot) { % if ($Modify and $topic->Id == $Modify) { % $Action = ""; <& .edit, topic => $topic &> % } else { <%$topic->Name || loc("(no name)") %> % } % }
        % for my $e (sort {$a->getNodeValue->Name cmp $b->getNodeValue->Name} $Element->getAllChildren) {
      • <& .tree, Element => $e, Action => $Action, Prefix => $Prefix, RootObj => $RootObj, Modify => $Modify &>
      • % } % if ($Action) { % unless ($Action eq "Move" and grep {$_->getNodeValue->Id == $Modify} $Element->getAllChildren) {
      • Id%>" value="<% $Action eq 'Move' ? loc('Move here') : loc('Add here') %>" />
      • % } % }
      <%args> $Element $Action $Prefix $RootObj $Modify <%INIT> my @results; for my $k (keys %ARGS) { if ($k =~ /^Topic-(\d+)-(Name|Description)/) { my $topic = RT::Topic->new($session{'CurrentUser'}); $topic->Load($1); if ($topic->Id) { next if $ARGS{$k} eq $topic->$2; my $proc = "Set$2"; my ($val, $msg) = $topic->$proc($ARGS{$k}); push @results, $msg; } else { $m->comp("/Elements/Error", Why => loc("Topic not found")); } } elsif ($k =~ /^Topic-(\d+)-Parent-(\d+)/) { my $topic = RT::Topic->new($session{'CurrentUser'}); $topic->Load($1); if ($topic->Id) { next if $2 eq $topic->Parent; my $old = $topic->Parent; my $new = "$2"; my ($val, $msg) = $topic->setParent($new); push @results, $msg; } else { $m->comp("/Elements/Error", Why => loc("Topic not found")); } } elsif ($k =~ /^Insert-(\d+)/) { my $topic = RT::Topic->new($session{'CurrentUser'}); my ($id, $msg) = $topic->Create( Parent => $1, Name => $ARGS{'Name'}, Description => $ARGS{'Description'}, ObjectType => ref($RootObj), ObjectId => $RootObj->Id, ); push @results, $msg; } } for my $k (keys %ARGS) { next unless $k =~ /^Delete-Topic-(\d+)/; my $topic = RT::Topic->new($session{'CurrentUser'}); $topic->Load($1); if ($topic->Id) { my ($val, $msg) = $topic->DeleteAll(); push @results, $msg; } else { $m->comp("/Elements/Error", Why => loc("Topic not found")); } } my $topics = RT::Topics->new($session{'CurrentUser'}); $topics->LimitToObject($RootObj); $topics->OrderByCols({FIELD => 'Parent'}, {FIELD => 'id'}); use Tree::Simple; my $tree = Tree::Simple->new(Tree::Simple->ROOT); my %lookup = (0 => $tree); my @todo; while (my $topic = $topics->Next) { push @todo, $topic; } { my $changed = 0; my @work = @todo; @todo = (); for my $topic (@work) { if (defined $lookup{$topic->Parent}) { $lookup{$topic->Id} = Tree::Simple->new($topic, $lookup{$topic->Parent}); $changed = 1; } else { push @todo, $topic; } } redo unless $changed == 0; } for my $topic (@todo) { $topic->setParent(0); $lookup{$topic->Id} = Tree::Simple->new($topic, $tree); push @results, "Reparented orphan ".$topic->Id." to root"; } <%ARGS> $RootObj => undef $title => "" $Modify => "" rt-4.0.19/share/html/Admin/Articles/Classes/0000775000175000017500000000000012262650742017513 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Articles/Classes/Topics.html0000664000175000017500000000475112262650742021651 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Articles/Elements/Topics, title => $title, RootObj => $ClassObj, %ARGS &> <%INIT> my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($ARGS{'id'}) || $m->comp("/Elements/Error", Why => "Couldn't load class '$id'"); my $title = $Modify ? loc("Modify topic for [_1]", $ClassObj->Name) : loc("Edit topic hierarchy for [_1]", $ClassObj->Name); <%ARGS> $id => undef $Modify => "" rt-4.0.19/share/html/Admin/Articles/Classes/Objects.html0000664000175000017500000001162512262650742021777 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      % if ( $is_global ) {

      <&|/l&>Applies to all objects

      <&|/l&>check this box to remove this Class globally and be able to choose specific Queues. % } else {

      <&|/l&>Apply globally

      <&|/l&>check this box to apply this Class globally to all Queues.

      <&|/l&>Selected Queues

      <& /Elements/CollectionList, OrderBy => 'id', Order => 'ASC', %ARGS, Collection => $applied, Rows => 0, Page => 1, Format => $format, DisplayFormat => "'__CheckBox.{RemoveClass-". $Class->id ."}__',". $format, AllowSorting => 0, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &>

      <&|/l&>Unselected Queues

      <& /Elements/CollectionList, OrderBy => 'id', Order => 'ASC', %ARGS, Collection => $not_applied, Rows => 50, Format => $format, DisplayFormat => "'__CheckBox.{AddClass-". $Class->id ."}__',". $format, AllowSorting => 1, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &> % } <& /Elements/Submit, Name => 'UpdateObjs' &>
      <%INIT> my $Class = RT::Class->new($session{'CurrentUser'}); $Class->Load($id) or Abort(loc("Could not load Class [_1]"), $id); my (@results); if ( $UpdateObjs ) { if ( defined (my $del = $ARGS{'RemoveClass-'.$Class->id}) ) { foreach my $id ( ref $del? (@$del) : ($del) ) { my $object = RT::Queue->new( $session{'CurrentUser'} ); if ( $id ) { $object->Load( $id ); next unless $object->id; } my ($status, $msg) = $Class->RemoveFromObject( $object ); push @results, $msg; } } if ( defined (my $add = $ARGS{'AddClass-'.$Class->id}) ) { foreach my $id ( ref $add? (@$add) : ($add) ) { my $object = RT::Queue->new( $session{'CurrentUser'} ); if ( $id ) { $object->Load( $id ); next unless $object->id; } my ($status, $msg) = $Class->AddToObject( $object ); push @results, $msg; } } } my $is_global = $Class->IsApplied(0); my $applied = $Class->AppliedTo; my $not_applied = $Class->NotAppliedTo; my $collection_class = ref($applied); $collection_class =~ s/^RT:://; my $format = RT->Config->Get('AdminSearchResultFormat')->{$collection_class} || '__id__,__Name__'; my $title = loc('Modify associated objects for [_1]', $Class->Name); <%ARGS> $id => undef $FindDisabledObjects => 0 $UpdateObjs => 0 rt-4.0.19/share/html/Admin/Articles/Classes/CustomFields.html0000664000175000017500000000505412262650742023006 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, Object => $Object, ObjectType => 'RT::Class', SubType => 'RT::Article' &> <%INIT> my $Object = RT::Class->new( $session{'CurrentUser'} ); $Object->Load($id) || Abort( loc( "Couldn't load object [_1]", $id ) ); my $FriendlySubTypes = RT::CustomField->new( $session{'CurrentUser'} ) ->FriendlyLookupType( $Object->CustomFieldLookupType ); my $title = loc( 'Edit Custom Fields for [_1]', $Object->Name ); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/Articles/Classes/index.html0000664000175000017500000000626312262650742021517 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Select a Class") &> <& /Elements/Tabs &>

      <%$caption%>:

      <&|/l&>Select a Class:

      % unless ($Classes->Count) { <&|/l&>No Classes matching search criteria found. % } else { <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', %ARGS, Format => $Format, Collection => $Classes, AllowSorting => 1, PassArguments => [qw( Format Rows Page Order OrderBy FindDisabledClasses )], &> % }
      <&|/l&>Include disabled classes in listing.
      <%INIT> my $caption; my $Classes = RT::Classes->new($session{'CurrentUser'}); if ($FindDisabledClasses) { $caption = loc("All Classes"); $Classes->{'find_disabled_rows'} = 1; $Classes->UnLimit(); } else { $caption = loc("Enabled Classes"); $Classes->LimitToEnabled(); } $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Classes'}; <%ARGS> $FindDisabledClasses => 0 $Format => undef rt-4.0.19/share/html/Admin/Articles/Classes/UserRights.html0000664000175000017500000000550112262650742022501 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify user rights for class [_1]', $ClassObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $ClassObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &> <%INIT> my @results = ProcessACLs(\%ARGS); if (!defined $id) { $m->comp("/Elements/Error", Why => loc("No Class defined")); } my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($id) || $m->comp("/Elements/Error", Why => loc("Couldn't load Class [_1]",$id)); my @principals = GetPrincipalsMap($ClassObj, 'Users'); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/Articles/Classes/GroupRights.html0000664000175000017500000000552612262650742022666 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify group rights for Class [_1]', $ClassObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &> <& /Admin/Elements/EditRights, Context => $ClassObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &> <%INIT> if (!defined $id) { $m->comp("/Elements/Error", Why => loc("No Class defined")); } my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($id) || $m->comp("/Elements/Error", Why => loc("Couldn't load Class [_1]",$id)); my @results = ProcessACLs(\%ARGS); my @principals = GetPrincipalsMap($ClassObj, qw(System Groups)); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/Articles/Classes/Modify.html0000664000175000017500000001506712262650742021641 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %if ($Create ) { % } else { % }
      <&|/l&>Class Name:
      <&|/l&>Description:
        > <&|/l&>Enabled (Unchecking this box disables this class)
        > <&|/l&>All Articles in this class should be listed in a dropdown of the ticket reply page

      When inserting articles in this class into emails:

      • > Include article name
      • > Include article summary
      • % if ( $cfs ) { % while (my $cf = $cfs->Next) {
      • Include custom field '<% $cf->Name %>'
        • Id} %> />Title
        • Id} %> />Value
      • % } }
      %$m->callback( CallbackName => 'BeforeSubmit', CustomFields => $cfs, ClassObj => $ClassObj ); % if ( $Create ) { <& /Elements/Submit, Label => loc('Create') &> % } else { <& /Elements/Submit, Label => loc('Save Changes') &> % }
      <%INIT> my $ClassObj = RT::Class->new($session{'CurrentUser'}); my ($title, @results, $Disabled); if ($Create) { $title = loc("Create a Class"); } else { my ( $val, $msg ); if ($id eq 'new') { ($val, $msg) = $ClassObj->Create(Name => $Name); if ( $val ) { push @results, $msg; } else { push @results, loc('Class could not be created: [_1]', $msg); } } else { $ClassObj->Load($id) || $ClassObj->Load($Name) || $m->comp("/Elements/Error", Why => "Couldn't load class '$Name'"); $val = $ClassObj->id; } if ( $val ) { $title = loc('Modify the Class [_1]', $ClassObj->Name); } else { $title = loc("Create a Class"); $Create = 1; } } if ($ClassObj->Id()) { $ARGS{HotList} ||= 0 if $Submitted; my @attribs= qw(Description Name HotList); $m->callback( CallbackName => 'AttributeList', Attributes => \@attribs, ARGSRef => \%ARGS ); push @results, UpdateRecordObject( AttributesRef => \@attribs, Object => $ClassObj, ARGSRef => \%ARGS); } #we're asking about enabled on the web page but really care about disabled. if ((defined $Enabled && $Enabled == 1) or (not defined $Enabled and $Create)) { $Disabled = 0; } else { $Disabled = 1; } my %include = (Name => 1, Summary => 1); my $cfs; if ( $ClassObj->id ) { $cfs = $ClassObj->ArticleCustomFields; $include{"CF-Title-".$_->Id} = $include{"CF-Value-".$_->Id} = 1 while $_ = $cfs->Next; } if ( $ClassObj->id && $Submitted ) { if ( $Disabled != $ClassObj->Disabled) { my ($code, $msg) = $ClassObj->SetDisabled($Disabled); push @results, loc('Enabled status [_1]', loc_fuzzy($msg)); } for (keys %include) { if ($ARGS{"Include-$_"}) { $ClassObj->DeleteAttribute("Skip-$_"); } else { $ClassObj->SetAttribute(Name => "Skip-$_", Content => 1); } } } # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $ClassObj->Id }, ) if $ClassObj->id; if ( $ClassObj->id ) { $include{$_} = not $ClassObj->FirstAttribute("Skip-$_") for keys %include; } $include{$_} = $include{$_} ? " CHECKED" : "" for keys %include; my $EnabledChecked = ($Create ? $Disabled : $ClassObj->Disabled()) ? "" : "CHECKED"; my $HotListChecked = $ClassObj->id && $ClassObj->HotList ? "CHECKED" : ""; <%ARGS> $id => undef $result => undef $Name => undef $Create => undef $Description => undef $Submitted => undef $Enabled => undef rt-4.0.19/share/html/Admin/Articles/index.html0000664000175000017500000000424312262650742020116 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Article Administration') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('tools')->child('config')->child('articles') &> rt-4.0.19/share/html/Admin/Queues/0000775000175000017500000000000012262650742015617 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Queues/Templates.html0000664000175000017500000000464112262650742020450 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditTemplates, title => $title, %ARGS &> <%INIT> my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id); if (!$QueueObj->id) { Abort(loc("Queue [_1] not found",$id)); } my $title = loc("Templates for queue [_1]", $QueueObj->Name); <%ARGS> $id => undef #some identifier that a Queue could rt-4.0.19/share/html/Admin/Queues/CustomField.html0000664000175000017500000000507312262650742020730 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomField, title => $title, %ARGS &> <%INIT> my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($Queue); my ($title); unless($QueueObj->id) { Abort(loc("Queue [_1] not found", $Queue)); } if ($CustomField) { $title = loc('Modify a CustomField for queue [_1]', $QueueObj->Name()); }else { $title = loc('Create a CustomField for queue [_1]', $QueueObj->Name()); } <%ARGS> $CustomField => undef $Queue => 0 <%ATTR> AutoFlush => 0 rt-4.0.19/share/html/Admin/Queues/CustomFields.html0000664000175000017500000000511012262650742021103 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, Object => $Object, ObjectType => 'RT::Queue' &> <%INIT> my $Object = RT::Queue->new( $session{'CurrentUser'} ); $Object->Load($id) || Abort( loc( "Couldn't load object [_1]", $id ) ); my $FriendlySubTypes = RT::CustomField->new( $session{'CurrentUser'} ) ->FriendlyLookupType( $Object->CustomFieldLookupType ); my $title = loc( 'Custom Fields for queue [_1]', $Object->Name ); <%ARGS> $id => undef $SubType => 'RT::Queue-RT::Ticket' rt-4.0.19/share/html/Admin/Queues/index.html0000664000175000017500000001065212262650742017620 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Admin queues") &> <& /Elements/Tabs &>

      <%$caption%>

      <&|/l&>Select a queue:

      % unless ( $queues->Count ) { <&|/l&>No queues matching search criteria found. % } else { <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => 50, %ARGS, Format => $Format, Collection => $queues, AllowSorting => 1, PassArguments => [qw( Format Rows Page Order OrderBy FindDisabledQueues QueueString QueueOp QueueField )], &> % }
      % foreach my $field( qw(Format Rows Page Order OrderBy) ) { % next unless defined $ARGS{ $field } && length $ARGS{ $field }; % } <& /Elements/SelectMatch, Name => 'QueueOp', Default => $QueueOp &>
      /> <&|/l&>Include disabled queues in listing.
      <%INIT> my $queues = RT::Queues->new($session{'CurrentUser'}); $queues->FindAllRows if $FindDisabledQueues; my ($caption); if ( defined $QueueString && length $QueueString ) { $caption = $FindDisabledQueues ? loc("All queues matching search criteria") : loc("Enabled queues matching search criteria"); $queues->Limit( FIELD => $QueueField, OPERATOR => $QueueOp, VALUE => $QueueString, ); RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Queues/Modify.html?id=".$queues->First->id) if $queues->Count == 1; } else { $queues->UnLimit; $caption = $FindDisabledQueues ? loc("All Queues") : loc("Enabled Queues"); } $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Queues'}; <%ARGS> $FindDisabledQueues => 0 $Format => undef $QueueField => 'Name' $QueueOp => '=' $QueueString => '' rt-4.0.19/share/html/Admin/Queues/Scrip.html0000664000175000017500000000521212262650742017565 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &> <& /Admin/Elements/EditScrip, title => $title, %ARGS, id => $id &> <%init> my $QueueObj = RT::Queue->new( $session{'CurrentUser'} ); $QueueObj->Load( $Queue ); unless( $QueueObj->id ) { Abort(loc("Queue [_1] not found", $id)); } my ($title); ($id, my @results) = $m->comp( '/Admin/Elements/EditScrip:Process', %ARGS ); if ( $id ) { $title = loc("Modify a scrip for queue [_1]", $QueueObj->Name); } else { $title = loc("Create a scrip for queue [_1]", $QueueObj->Name); } <%ARGS> $id => undef $Queue => undef rt-4.0.19/share/html/Admin/Queues/UserRights.html0000664000175000017500000000575312262650742020616 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify user rights for queue [_1]', $QueueObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %# XXX TODO put this somewhere more reasonable % $m->callback( %ARGS, QueueObj => $QueueObj, results => \@results ); <& /Admin/Elements/EditRights, Context => $QueueObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); if (!defined $id) { Abort(loc("No Queue defined")); } my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id) || Abort(loc("Couldn't load queue [_1]",$id)); my @principals = GetPrincipalsMap($QueueObj, 'Users'); <%ARGS> $id => undef $UserString => undef $UserOp => undef $UserField => undef rt-4.0.19/share/html/Admin/Queues/History.html0000664000175000017500000000460212262650742020150 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Ticket/Elements/ShowHistory, Ticket => $QueueObj, ShowDisplayModes => 0, &> <%INIT> my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id) || Abort("Couldn't load queue '$id'"); my $title = loc("History of the queue [_1]", $QueueObj->Name); <%ARGS> $id => '' unless defined $id rt-4.0.19/share/html/Admin/Queues/GroupRights.html0000664000175000017500000000570112262650742020765 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify group rights for queue [_1]', $QueueObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      % $m->callback( %ARGS, QueueObj => $QueueObj, results => \@results, principals => \@principals ); <& /Admin/Elements/EditRights, Context => $QueueObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); if (!defined $id) { Abort(loc("No Queue defined")); } my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id) || Abort(loc("Couldn't load queue [_1]",$id)); # Principal collections my @principals = GetPrincipalsMap($QueueObj, qw(System Roles Groups)); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/Queues/People.html0000664000175000017500000001347012262650742017736 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>

      <&|/l&>Current watchers

      % for my $Name (RT::Queue->ManageableRoleGroupTypes) { <& /Admin/Elements/EditQueueWatcherGroup, Label => loc($Name), QueueObj => $QueueObj, Watchers => $QueueObj->$Name &> % } % $m->callback(CallbackName => 'CurrentWatchers', QueueObj => $QueueObj);

      <&|/l&>New watchers

      <&|/l&>Find people whose
      <& /Elements/SelectUsers &>
      <&|/l&>Find groups whose
      <& /Elements/SelectGroups &>

      <&|/l&>Add new watchers:

      <&|/l&>Users % if ($user_msg) {
      <%$user_msg%> % } elsif ($Users) {

        % while (my $u = $Users->Next ) {
      • <& /Elements/SelectWatcherType, Scope => 'queue', Name => "Queue-AddWatcher-Principal-". $u->PrincipalId, &> <& /Elements/ShowUser, User => $u &>
      • % }
      % }

      <&|/l&>Groups % if ($group_msg) {
      <%$group_msg%> % } elsif ($Groups) {

        % while (my $g = $Groups->Next ) {
      • <&/Elements/SelectWatcherType, Scope=>'queue', Name => "Queue-AddWatcher-Principal-".$g->PrincipalId &> <%$g->Name%> (<%$g->Description%>) % }
      % }
      <& /Elements/Submit, Label => loc('Save Changes'), Caption => loc("If you've updated anything above, be sure to"), Reset => 1 &>
      <%INIT> my ($field, @results, $User, $Users, $Groups, $watcher, $user_msg, $group_msg); my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id) || Abort(loc("Couldn't load queue", $id)); unless ($OnlySearchForPeople or $OnlySearchForGroup) { # Delete deletable watchers foreach my $key (keys %ARGS) { my $id = $QueueObj->Id; if (($key =~ /^Queue-$id-DeleteWatcher-Type-(.*?)-Principal-(\d*)$/)) {; my ($code, $msg) = $QueueObj->DeleteWatcher(Type => $1, PrincipalId => $2); push @results, $msg; } } # Add new watchers foreach my $key (keys %ARGS) { my $type = $ARGS{$key}; next unless $key =~ /^Queue-AddWatcher-Principal-(\d*)$/; my $id = $1; next unless RT::Queue->IsManageableRoleGroupType($type); my ($code, $msg) = $QueueObj->AddWatcher( Type => $type, PrincipalId => $id, ); push @results, $msg; } } if ( $ARGS{'UserString'} ) { $Users = RT::Users->new( $session{'CurrentUser'} ); $Users->Limit( FIELD => $ARGS{'UserField'}, VALUE => $ARGS{'UserString'}, OPERATOR => $ARGS{'UserOp'} ); } else { $user_msg = loc("No principals selected."); } if ( $ARGS{'GroupString'} ) { $Groups = RT::Groups->new( $session{'CurrentUser'} ); $Groups->Limit( FIELD => 'Domain', OPERATOR => '=', VALUE => 'UserDefined' ); $Groups->Limit( FIELD => $ARGS{'GroupField'}, VALUE => $ARGS{'GroupString'}, OPERATOR => $ARGS{'GroupOp'} ); } else { $group_msg = loc("No principals selected."); } my $title = loc('People related to queue [_1]', $QueueObj->Name); <%ARGS> $OnlySearchForPeople => undef $OnlySearchForGroup => undef $UserField => 'Name' $UserOp => '=' $UserString => undef $GroupField => 'Name' $GroupOp => '=' $GroupString => undef $Type => undef $id => undef rt-4.0.19/share/html/Admin/Queues/Scrips.html0000664000175000017500000000516212262650742017754 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> % unless ( $QueueObj->Disabled ) { # Global scrips does not apply to disabled queues

      <&|/l&>Scrips which apply to all queues

      <& /Admin/Elements/ListGlobalScrips &>
      % } <& /Admin/Elements/EditScrips, title => $title, %ARGS &> <%init> my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id); my $title; if ($QueueObj->id) { $title = loc("Modify scrips for queue [_1]", $QueueObj->Name); } else { Abort(loc("Queue [_1] not found",$id)); } <%ARGS> $id => undef #some identifier that a Queue could rt-4.0.19/share/html/Admin/Queues/Modify.html0000664000175000017500000002356412262650742017746 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      % my $CFs = $QueueObj->CustomFields; % while (my $CF = $CFs->Next) { % } % if ( RT->Config->Get('GnuPG')->{'Enable'} ) { % } % if ( RT->Config->Get('GnuPG')->{'Enable'} ) { % }
      <&|/l&>Queue Name: Name || $Name %>" />
      <&|/l&>Description: Description || $Description || '' %>" size="60" />
      <&|/l&>Lifecycle: <& /Widgets/Form/Select:InputOnly, Name => 'Lifecycle', Values => [ sort { loc($a) cmp loc($b) } RT::Lifecycle->List ], CurrentValue => $Create ? "default" : $QueueObj->Lifecycle || $ARGS{'Lifecycle'}, Default => 0, &>
      <&|/l&>Subject Tag: SubjectTag || '' ) %>" size="60" />
      <&|/l&>Reply Address: CorrespondAddress || $CorrespondAddress || '' %>" />
      <&|/l , RT->Config->Get('CorrespondAddress')&>(If left blank, will default to [_1])
      <&|/l&>Comment Address: CommentAddress || $CommentAddress || '' %>" />
      <&|/l , RT->Config->Get('CommentAddress')&>(If left blank, will default to [_1])
      <&|/l&>Priority starts at: <& /Elements/SelectPriority, Name => "InitialPriority", Default => $Create? 0: $QueueObj->InitialPriority || $InitialPriority, &> <&|/l&>Over time, priority moves toward: <& /Elements/SelectPriority, Name => "FinalPriority", Default => $Create? 0: $QueueObj->FinalPriority || $FinalPriority, &>
      <&|/l&>requires running rt-crontool
      <&|/l&>Requests should be due in: DefaultDueIn || $DefaultDueIn || "" %>" /> <&|/l&>days.
      <% loc($CF->Name) %>: <& /Elements/EditCustomField, CustomField => $CF, Object => $QueueObj, ($Create ? (NamePrefix => 'Object-RT::Queue--CustomField-') : () )&>
      Sign? 'checked="checked"': '' |n%> /> <&|/l&>Sign by default Encrypt? 'checked="checked"': '' |n%> /> <&|/l&>Encrypt by default
      SignAuto? 'checked="checked"': '' |n%> /> <&|/l_unsafe, "","","",""&>Sign all auto-generated mail. [_1]Caution[_2]: Enabling this option alters the signature from providing [_3]authentication[_4] to providing [_3]integrity[_4].
      /> <&|/l&>Enabled (Unchecking this box disables this queue)
      % $m->callback( %ARGS, QueueObj => $QueueObj, results => \@results );
      % if ( my $email = $QueueObj->CorrespondAddress || RT->Config->Get('CorrespondAddress') ) { <& /Admin/Elements/ShowKeyInfo, Type => 'private', EmailAddress => $email &> % } else { <&|/Widgets/TitleBox, title => loc( 'GnuPG private keys') &> <&|/l&>You have enabled GnuPG support but have not set a correspondence address for this queue. <&|/l&>You must set a correspondence address for this queue in order to configure a GnuPG private key. % }
      % if ( my $email = $QueueObj->CommentAddress || RT->Config->Get('CommentAddress') ) { <& /Admin/Elements/ShowKeyInfo, Type => 'private', EmailAddress => $email &> % } else { <&|/Widgets/TitleBox, title => loc( 'GnuPG private keys') &> <&|/l&>You have enabled GnuPG support but have not set a comment address for this queue. <&|/l&>You must set a comment address for this queue in order to configure a GnuPG private key. %}
      % if ( $Create ) { <& /Elements/Submit, Label => loc('Create') &> % } else { <& /Elements/Submit, Label => loc('Save Changes') &> % }
      <%INIT> my ($title, @results, @no_redirect_results, $Disabled, $EnabledChecked); my $QueueObj = RT::Queue->new( $session{'CurrentUser'} ); $QueueObj->Load( $id ) if !$id || $id eq 'new'; $EnabledChecked = 'checked="checked"'; unless ($Create) { if ( defined $id && $id eq 'new' ) { my ($val, $msg) = $QueueObj->Create( Name => $Name ); if (!$val) { $Create = 1; # Create failed, so bring us back to step 1 } push @results, $msg; } else { $QueueObj->Load($id) || $QueueObj->Load($Name) || Abort(loc("Couldn't load queue '[_1]'", $Name)); } } if ( $QueueObj->Id ) { $title = loc('Configuration for queue [_1]', $QueueObj->Name ); my @attribs= qw(Description CorrespondAddress CommentAddress Name InitialPriority FinalPriority DefaultDueIn Sign SignAuto Encrypt Lifecycle SubjectTag Disabled); # we're asking about enabled on the web page but really care about disabled if ( $SetEnabled ) { $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1; $ARGS{$_} = 0 foreach grep !defined $ARGS{$_} || !length $ARGS{$_}, qw(Sign SignAuto Encrypt Disabled); } $m->callback( CallbackName => 'BeforeUpdate', Queue => $QueueObj, AttributesRef => \@attribs, ARGSRef => \%ARGS, ); push @results, UpdateRecordObject( AttributesRef => \@attribs, Object => $QueueObj, ARGSRef => \%ARGS ); $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1; $EnabledChecked = "" if $QueueObj->Disabled; my @linkresults; $m->callback( results => \@linkresults, RecordObj => $QueueObj, ARGSRef => \%ARGS, CallbackName => 'ProcessLinks' ); push @results, @linkresults; push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $QueueObj ); if ( RT->Config->Get('RTAddressRegexp') ) { foreach my $address ( $QueueObj->CorrespondAddress, $QueueObj->CommentAddress ) { next unless defined $address && length $address; next if RT::EmailParser->IsRTAddress( $address ); push @no_redirect_results, loc("RTAddressRegexp option in the config doesn't match [_1]", $address ); } } } else { $title = loc("Create a queue"); } # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $QueueObj->Id }, ) if $QueueObj->id; push @results, @no_redirect_results; <%ARGS> $id => undef $result => undef $Name => undef $Create => undef $Description => undef $CorrespondAddress => undef $CommentAddress => undef $InitialPriority => undef $FinalPriority => undef $DefaultDueIn => undef $SetEnabled => undef $Enabled => undef rt-4.0.19/share/html/Admin/Queues/Template.html0000664000175000017500000001030112262650742020253 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %if ($Create ) { % } else { % } %# hang onto the queue id <& /Admin/Elements/ModifyTemplate, Name => $TemplateObj->Name, Description => $TemplateObj->Description, Content => $TemplateObj->Content, Type => $TemplateObj->Type &> <& /Elements/Submit, Label => $SubmitLabel, Reset => 1 &>
      <%INIT> my $TemplateObj = RT::Template->new( $session{'CurrentUser'} ); my $QueueObj; my $SubmitLabel; my $title; my @results; if ( !$Create ) { if ( $Template eq 'new' ) { my ( $val, $msg ) = $TemplateObj->Create( Queue => $Queue, Name => $Name, Type => $Type ); Abort( loc( "Could not create template: [_1]", $msg ) ) unless ($val); push @results, $msg; } else { $TemplateObj->Load($Template) || Abort( loc('No Template') ); } } if ( $TemplateObj->Id() ) { $Queue = $TemplateObj->Queue; $QueueObj = $TemplateObj->QueueObj; my @attribs = qw( Name Description Queue Type Content ); my @aresults = UpdateRecordObject( AttributesRef => \@attribs, Object => $TemplateObj, ARGSRef => \%ARGS ); push @results, @aresults; my ( $ok, $msg ) = $TemplateObj->CompileCheck; push @results, $msg if !$ok; } else { $QueueObj = RT::Queue->new( $session{'CurrentUser'} ); $QueueObj->Load($Queue); } if ($Create) { $title = loc( 'Create a new template for queue [_1]', $QueueObj->Name ); $SubmitLabel = loc('Create'); } else { $title = loc( 'Modify template [_1] for queue [_2]', loc( $TemplateObj->Name()), $QueueObj->Name ); $SubmitLabel = loc('Save Changes'); } <%ARGS> $Queue => '' $Template => '' $Create => undef $Name => undef $Type => undef rt-4.0.19/share/html/Admin/Tools/0000775000175000017500000000000012262650742015450 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Tools/Queries.html0000664000175000017500000001271612262650742017762 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $title = loc('SQL Queries'); unless ($session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser')) { Abort(loc('This feature is only available to system administrators.')); } <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <&|/Widgets/TitleBox, title => loc('SQL Queries') &> % my $history = $RT::Handle->QueryHistory; % if (!RT->Config->Get('StatementLog')) {

      <&|/l&>You must set StatementLog to true to enable this query history page.

      % } elsif (!$history) {

      <&|/l&>This server process has recorded no SQL queries.

      % } else {
        % my $r = 0; % for my $request (@$history) { % ++$r; % my ($seconds, $count) = (0, 0); % for my $statement (@{ $request->{Queries} }) { % $seconds += $statement->[3]; % $count++; % }
      1. <% $request->{Path} %> - <&|/l, sprintf('%.4f', $seconds) &>[_1]s );"><&|/l, $count &>Toggle [quant,_1,query,queries] % my $s = 0; % my @undup; % for my $statement (@{ $request->{Queries} }) { % my ($dup) = grep {$_->[1] eq $statement->[1]} @undup[-(@undup > 3?3:@undup)..-1]; % if ($dup) { % $dup->[2] = [$dup->[2]] unless $dup->[5]; % push @{$dup->[2]}, $statement->[2]; % $dup->[3] += $statement->[3]; % $dup->[5] ||= 1; $dup->[5]++; % } else { % push @undup, $statement; % } % } % for my $statement (@undup) { % my ( $time, $sql, $bind, $duration, $trace, $dup ) = @$statement; % $sql = $RT::Handle->FillIn($sql, $bind) unless $dup; % }
      2. % }
      % } rt-4.0.19/share/html/Admin/Tools/Configuration.html0000664000175000017500000002063312262650742021151 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> require Module::Versions::Report; my $title = loc('System Configuration'); unless ($session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser')) { Abort(loc('This feature is only available to system administrators')); } <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <&|/Widgets/TitleBox, title => loc("RT Configuration") &> <%PERL> my $index_conf; foreach my $key ( RT->Config->Options( Overridable => undef, Sorted => 0 ) ) { my $val = RT->Config->GetObfuscated( $key ); next unless defined $val; my $meta = RT->Config->Meta( $key ); my $description = ''; if ( $meta->{'Source'}{'Extension'} && $meta->{'Source'}{'SiteConfig'} ) { $description = loc("[_1] site config", $meta->{'Source'}{'Extension'}); } elsif ( $meta->{'Source'}{'Extension'} ) { $description = loc("[_1] core config", $meta->{'Source'}{'Extension'}); } elsif ( $meta->{'Source'}{'SiteConfig'} ) { $description = loc("site config"); } else { $description = loc("core config"); } $index_conf++; % }
      <&|/l&>Option <&|/l&>Value <&|/l&>Source
      <% $key %> % if ( $key =~ /Password(?!Length)/i ) { <% loc('Password not printed' ) %>\ % } else { <% stringify($val) |n %>\ % } % if ( $meta->{'Source'}{'SiteConfig'} ) { <% $description %> % } else { <% $description %> % }
      <&|/Widgets/TitleBox, title=> loc("RT core variables") &> <%PERL> { no strict qw/refs/; my %config_opt = map { $_ => 1 } RT->Config->Options( Overridable => undef ); my $index_var; foreach my $key ( sort keys %{*RT::} ) { next if !${'RT::'.$key} || ref ${'RT::'.$key} || $config_opt{ $key }; $index_var++; % } % }
      <&|/l&>Variable <&|/l&>Value
      RT::<% $key %> % if ( $key =~ /Password(?!Length)/i ) { <% loc('Password not printed' ) %>\ % } else { <% ${'RT::'.$key} %> % }
      <&|/Widgets/TitleBox, title => loc("RT Size") &> <%PERL> my ($index_size, $user_count, $privileged_count); for my $type (qw/Tickets Queues Transactions Groups PrivilegedUsers UnprivilegedUsers/) { my $count; my $class = 'RT::' . $type; $class =~ s/Privileged|Unprivileged//; my $collection = $class->new(RT->SystemUser); $collection->UnLimit; if ($type =~ /PrivilegedUsers/) { $user_count = $collection->CountAll; $collection->LimitToPrivileged; $count = $privileged_count = $collection->CountAll; } elsif ($type =~ /UnprivilegedUsers/) { $count = $user_count - $privileged_count; } else { $count = $collection->CountAll; } $index_size++; % }
      <&|/l&>Object <&|/l&>Size
      <% $type %> <% $count %>
      <&|/Widgets/TitleBox, title => loc("Mason template search order") &>
        % foreach my $path ( RT::Interface::Web->ComponentRoots ) {
      1. <% $path %>
      2. % }
      <&|/Widgets/TitleBox, title => loc("Perl library search order") &>
        % foreach my $inc (@INC) {
      1. <% $inc %>
      2. % }
      <&|/Widgets/TitleBox, title => loc("Global Attributes") &> % my $attrs = $RT::System->Attributes; % my $index_size = 0; % while ( my $attr = $attrs->Next ) { % if ($attr->Name eq 'UserLogo') { % my $content = $attr->Content; % $content->{data} = defined $content->{data} ? 'DATA' : 'undef' % if exists $content->{data}; % } else { % } % $index_size++; % }
      <&|/l&>Name <&|/l&>Value
      <% $attr->Name %><% stringify($content) |n %><% $attr->Name %><% stringify($attr->Content) |n %>
      <&|/Widgets/TitleBox, title => loc("Loaded perl modules")&> <%perl> my $i = 0; my $report = Module::Versions::Report::report(); my @report = grep /v\d/, split("\n",$report); shift @report; # throw away the perl version my ($ver, $source, $distfile); foreach my $item (@report) { if ($item =~ /^\s*(.*?)\s*v(\S+);/) { $item = $1; $ver = $2; $distfile = $item.".pm"; $distfile =~ s|::|/|g; } % }
      <&|/l&>Module <&|/l&>Version <&|/l&>Source
      <% $item %> <%$ver%> <% $INC{$distfile} || '' %>
      <&|/Widgets/TitleBox, title => loc("Perl configuration") &> % require Config;
      <% Config::myconfig() %>
      
      <%INIT> use Data::Dumper; local $Data::Dumper::Terse = 1; local $Data::Dumper::Indent = 2; sub stringify { my $value = shift; my $output = Dumper $value; RT::Interface::Web::EscapeUTF8(\$output); $output =~ s/ / /g; $output =~ s!\n!
      !g; return $output; } rt-4.0.19/share/html/Admin/Tools/index.html0000664000175000017500000000423412262650742017450 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('System Tools') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('tools')->child('config')->child('tools') &> rt-4.0.19/share/html/Admin/Tools/Shredder/0000775000175000017500000000000012262650742017210 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Tools/Shredder/Elements/0000775000175000017500000000000012262650742020764 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Tools/Shredder/Elements/DumpFileLink0000664000175000017500000000460412262650742023236 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $File => '' <%INIT> return unless $File; use File::Spec (); use RT::Shredder (); $File = File::Spec->abs2rel( $File, RT::Shredder->StoragePath ) if File::Spec->file_name_is_absolute($File); rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/Error/0000775000175000017500000000000012262650742022055 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Tools/Shredder/Elements/Error/NoStorage0000664000175000017500000000456612262650742023714 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Path => '' <& /Admin/Elements/Header, Title => 'Error' &> <& /Elements/Tabs &>
      % my $path_tag = q{} . $m->interp->apply_escapes($Path, 'h') . q{}; <&|/l_unsafe, $path_tag &>Shredder needs a directory to write dumps to. Please ensure that the directory [_1] exists and that it is writable by your web server.
      rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/Error/NoRights0000664000175000017500000000420612262650742023537 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => 'Error' &> <& /Elements/Tabs &>
      <% loc("You don't have SuperUser right.") |n%>
      rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/SelectObjects0000664000175000017500000000505112262650742023441 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> @Objects => ()
      % unless( @Objects ) { <& /Elements/ListActions, actions => [loc("Objects list is empty")] &> % } else {
      <% loc("click to check/uncheck all objects at once") %>
      % foreach my $o( @Objects ) { <& ObjectCheckBox, Object => $o &> % }
      <& /Elements/Submit, Name => 'Wipeout', Label => loc('Wipeout') &> % }
      <%INIT> rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/ObjectCheckBox0000664000175000017500000000457412262650742023536 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object => undef % if( $m->comp_exists( $path ) ) { % $m->comp( $path, Object => $Object ); % } else { <% $Object->_AsString %> % }
      <%ONCE> require File::Spec; <%INIT> my $path = ref $Object; $path =~ s/:/-/g; $path = File::Spec->catfile( 'Object', $path ); rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/PluginHelp0000664000175000017500000000525112262650742022761 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Plugin => ''
      <% $text |n%>
      <%ONCE> use RT::Shredder::Plugin; my $plugin_obj = RT::Shredder::Plugin->new; my %plugins = $plugin_obj->List; <%INIT> my $file = $plugins{ $Plugin }; unless( $file ) { $RT::Logger->error( "Couldn't find plugin '$Plugin'" ); return; } use RT::Shredder::POD qw(); my $text = ''; open( my $io_handle, ">:scalar", \$text ) or die "Can't open scalar for write: $!"; RT::Shredder::POD::plugin_html( $file, $io_handle ); if ( $Plugin eq 'Base' ) { $file =~ s/\.pm$/\/Search.pm/; RT::Shredder::POD::plugin_html( $file, $io_handle ); } close $io_handle; rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/PluginArguments0000664000175000017500000000474712262650742024047 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Plugin => ''
      <% loc('Fill arguments') %>:
      % foreach my $a( $plugin_obj->SupportArgs ) { <% loc($a) %>:" value="<% $ARGS{ "$Plugin:$a" } || '' %>" />
      % }
      <%INIT> use RT::Shredder::Plugin; my $plugin_obj = RT::Shredder::Plugin->new; my ($status, $msg) = $plugin_obj->LoadByName( $Plugin ); die $msg unless $status; rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/Object/0000775000175000017500000000000012262650742022172 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket0000664000175000017500000000434512262650742023746 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object => undef <% loc('Ticket') %>(<% loc('id') %>:<% $Object->id %>, <% loc('Subject') %>: <% substr($Object->Subject, 0, 30) %>...) rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment0000664000175000017500000000456012262650742024612 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object => undef % my $name = (defined $Object->Filename and length $Object->Filename) ? $Object->Filename : loc("(no value)"); <% loc('Attachment') %>(<% loc('id') %>:<% $Object->id %>, <% loc('Filename') %>: <% $name %>) rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/Object/RT--User0000664000175000017500000000431712262650742023440 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object => undef <% loc('User') %>(<% loc('id') %>:<% $Object->id %>, <% loc('Name') %>: <% $Object->Name %>) rt-4.0.19/share/html/Admin/Tools/Shredder/Elements/SelectPlugin0000664000175000017500000000540012262650742023304 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Plugin => '' <& PluginHelp, %ARGS, Plugin => 'Base' &>
      Select plugin:
      % foreach my $p( keys %plugins ) {
      <& PluginHelp, %ARGS, Plugin => $p &> <& PluginArguments, %ARGS, Plugin => $p &>
      % }
      <%ONCE> use RT::Shredder::Plugin; my $plugin_obj = RT::Shredder::Plugin->new; my %plugins = $plugin_obj->List('Search'); rt-4.0.19/share/html/Admin/Tools/Shredder/index.html0000664000175000017500000001374012262650742021212 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Plugin => '' $Search => '' $Wipeout => '' @WipeoutObject => () <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &>
      <& /Elements/ListActions, actions => $messages{'Errors'} &> <& /Elements/ListActions, actions => $messages{'Success'} &> <& Elements/DumpFileLink, File => $dump_file &> <& Elements/SelectPlugin, Plugin => $Plugin, %ARGS &>
      <& /Elements/Submit, Name => 'Search', Label => loc('Search') &>

      % if( $Search || $Wipeout ) { <& Elements/SelectObjects, Objects => \@objs &> % }
      <%INIT> require RT::Shredder; my $title = loc('Shredder'); my %messages = ( Errors => [], Success => [] ); my ($plugin_obj, @objs); my $catch_non_fatals = sub { require RT::Shredder::Exceptions; if ( my $e = RT::Shredder::Exception::Info->caught ) { push @{ $messages{Errors} }, "$e"; $Search = ''; @objs = (); return 1; } if ( UNIVERSAL::isa( $@, 'Class::Exception' ) ) { $@->rethrow; } else { die $@; } }; if( $Plugin ) { { # use additional block({}) to effectively exit block on errors use RT::Shredder::Plugin; $plugin_obj = RT::Shredder::Plugin->new; my( $status, $msg ) = $plugin_obj->LoadByName( $Plugin ); unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; last; } my %args; foreach my $k( keys %ARGS ) { next unless $k =~ /^\Q$Plugin\E:(.*)$/; $args{ $1 } = $ARGS{$k}; } ( $status, $msg ) = $plugin_obj->HasSupportForArgs( keys %args ); unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; last; } ($status, $msg) = eval { $plugin_obj->TestArgs( %args ) }; $catch_non_fatals->() && last if $@; unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; last; } } } my $dump_file = ''; if( $Plugin && $Wipeout ) { { # use additional block({}) to effectively exit block on errors my $shredder = RT::Shredder->new( force => 1 ); my $backup_plugin = RT::Shredder::Plugin->new; my ($status, $msg) = $backup_plugin->LoadByName('SQLDump'); unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; @objs = (); last; } ($status, $msg) = $backup_plugin->TestArgs; unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; @objs = (); last; } ($dump_file) = $backup_plugin->FileName; push @{ $messages{'Success'} }, "SQL dump file is '$dump_file'"; $shredder->AddDumpPlugin( Object => $backup_plugin ); $shredder->PutObjects( Objects => \@WipeoutObject ); ($status, $msg) = $plugin_obj->SetResolvers( Shredder => $shredder ); unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; @objs = (); last; } eval { $shredder->WipeoutAll }; $catch_non_fatals->() && last if $@; push @{ $messages{Success} }, loc('objects were successfuly removed'); } } if( $Plugin && ( $Search || $Wipeout ) ) { { # use additional block({}) to effectively exit block on errors my $status; ($status, @objs) = eval { $plugin_obj->Run }; $catch_non_fatals->() && last if $@; unless( $status ) { push @{ $messages{Errors} }, $objs[0]; $Search = ''; @objs = (); last; } push @{ $messages{Success} }, loc('executed plugin successfuly'); my $shredder = RT::Shredder->new; foreach my $o( grep defined, splice @objs ) { eval { push @objs, $shredder->CastObjectsToRecords( Objects => $o ) }; $catch_non_fatals->() && last if $@; } unless( @objs ) { push @{ $messages{Success} }, loc('plugin returned empty list'); } else { push @{ $messages{Success} }, loc('see object list below'); } } } rt-4.0.19/share/html/Admin/Tools/Shredder/Dumps/0000775000175000017500000000000012262650742020300 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Tools/Shredder/Dumps/dhandler0000664000175000017500000000457712262650742022021 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ATTR> AutoFlush => 0 <%INIT> my $arg = $m->dhandler_arg; $m->abort(404) if $arg =~ m{\.\.|/|\\}; use File::Spec (); use RT::Shredder (); my $File = File::Spec->catfile( RT::Shredder->StoragePath, $arg ); $r->content_type('application/octets-stream'); open my $fh, "<:raw", $File or $m->abort(404); my $buf; while( read $fh, $buf, 1024*1024 ) { $m->out($buf); } $m->abort; rt-4.0.19/share/html/Admin/Tools/Shredder/autohandler0000664000175000017500000000450212262650742021442 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> unless( $session{'CurrentUser'}->HasRight( Right => 'SuperUser', Object => $RT::System ) ) { return $m->comp( 'Elements/Error/NoRights' ); } use RT::Shredder (); my $path = RT::Shredder->StoragePath; unless( -d $path && -w _ ) { return $m->comp( 'Elements/Error/NoStorage', Path => $path ); } $m->call_next(%ARGS); rt-4.0.19/share/html/Admin/Tools/Theme.html0000664000175000017500000002620212262650742017402 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Theme"), &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>

      Customize the RT theme

      1. <&|/l&>Select a color for the section:
        % if ($colors) {
        % for (@$colors) { % my $fg = $_->{l} >= $text_threshold ? 'black' : 'white'; % }
        % }

      Custom CSS (Advanced)


      <%ONCE> my @sections = ( ['Page' => ['body']], ['Header' => ['div#quickbar', 'body.aileron #main-navigation #app-nav > li, body.aileron #main-navigation #app-nav > li > a, #prefs-menu > li, #prefs-menu > li > a, #logo .rtname']], ['Page title' => ['div#header h1']], ['Page content' => ['div#body']], ['Buttons' => ['input[type="reset"], input[type="submit"], input[class="button"]']], ['Button hover' => ['input[type="reset"]:hover, input[type="submit"]:hover, input[class="button"]:hover']], ); <%INIT> unless ($session{'CurrentUser'}->HasRight( Object=> RT->System, Right => 'SuperUser')) { Abort(loc('This feature is only available to system administrators.')); } use Digest::MD5 'md5_hex'; my $text_threshold = 0.6; my @results; my $imgdata; if (my $file_hash = _UploadedFile( 'logo-upload' )) { my ($id, $msg) = RT->System->SetAttribute( Name => "UserLogo", Description => "User-provided logo", Content => { type => $file_hash->{ContentType}, data => $file_hash->{LargeContent}, hash => md5_hex($file_hash->{LargeContent}), } ); push @results, loc("Unable to set UserLogo: [_1]", $msg) unless $id; $imgdata = $file_hash->{LargeContent}; } elsif ($ARGS{'reset_logo'}) { RT->System->DeleteAttribute('UserLogo'); } else { if (my $attr = RT->System->FirstAttribute('UserLogo')) { my $content = $attr->Content; if (ref($content) eq 'HASH') { $imgdata = $content->{data}; } else { RT->System->DeleteAttribute('UserLogo'); } } } if ($user_css) { if ($ARGS{'reset_css'}) { RT->System->DeleteAttribute('UserCSS'); undef $user_css; } else { my ($id, $msg) = RT->System->SetAttribute( Name => "UserCSS", Description => "User-provided css", Content => $user_css ); push @results, loc("Unable to set UserCSS: [_1]", $msg) unless $id; } } if (!$user_css) { my $attr = RT->System->FirstAttribute('UserCSS'); $user_css = $attr ? $attr->Content : join( "\n\n" => map { join "\n" => "/* ". $_->[0] ." */", map { "$_ {}" } @{$_->[1]} } @sections ); } # XXX: move this to some other modules use List::MoreUtils qw(uniq); my $has_color_analyzer = eval { require Convert::Color; 1 }; my $colors; my %gd_can; my $valid_image_types; if (not RT->Config->Get('DisableGD') and $has_color_analyzer) { require GD; # Always find out what GD can read... for my $type (qw(Png Jpeg Gif)) { $gd_can{$type}++ if GD::Image->can("newFrom${type}Data"); } $valid_image_types = join(", ", map { uc } sort { lc $a cmp lc $b } keys %gd_can); # ...but only analyze the image if we have data if ($imgdata) { if ( my $img = GD::Image->new($imgdata) ) { $colors = analyze_img($img); } else { # This has to be one damn long line because the loc() needs to be # source parsed correctly. push @results, loc("Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: [_1]. You can recompile libgd and GD.pm to include support for other image types.", $valid_image_types); } } } sub analyze_img { my $img = shift; my $color; for my $i (0..$img->width-1) { for my $j (0..$img->height-1) { my @color = $img->rgb( $img->getPixel($i,$j) ); my $hsl = Convert::Color->new('rgb:'.join(',',map { $_ / 255 } @color))->convert_to('hsl'); my $c = join(',',@color); next if $hsl->lightness < 0.1; $color->{$c} ||= { h => $hsl->hue, s => $hsl->saturation, l => $hsl->lightness, cnt => 0, c => $c}; $color->{$c}->{cnt}++; } } for (values %$color) { $_->{rank} = $_->{s} * $_->{cnt}; } my @top5 = grep { defined and $_->{'l'} and $_->{'c'} } (sort { $b->{rank} <=> $a->{rank} } values %$color)[0..5]; if ((scalar uniq map {$_->{rank}} @top5) == 1) { warn "bad"; } return \@top5; } <%ARGS> $user_css => '' rt-4.0.19/share/html/Admin/Global/0000775000175000017500000000000012262650742015550 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Global/Topics.html0000664000175000017500000000445112262650742017703 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Articles/Elements/Topics, RootObj => $RT::System, title => $title, %ARGS &> <%INIT> my $title = $Modify ? loc("Modify global topics") : loc("Edit global topic hierarchy"); <%ARGS> $id => undef $Modify => "" rt-4.0.19/share/html/Admin/Global/Templates.html0000664000175000017500000000441612262650742020401 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title, FeedURI => 'templates' &> <& /Elements/Tabs &> <& /Admin/Elements/EditTemplates, title => $title, %ARGS &> <%init> my $title = loc("Modify templates which apply to all queues"); my (@actions); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/Global/index.html0000664000175000017500000000425312262650742017551 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Admin/Global configuration') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('tools')->child('config')->child('global') &> rt-4.0.19/share/html/Admin/Global/CustomFields/0000775000175000017500000000000012262650742020151 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Global/CustomFields/Class-Article.html0000664000175000017500000000451312262650742023470 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Class', Object => $object, SubType => 'RT::Article' &> <%INIT> my $title = loc( 'Edit Custom Fields for articles in all classes'); my $object = RT::Class->new($session{'CurrentUser'}); rt-4.0.19/share/html/Admin/Global/CustomFields/Queue-Transactions.html0000664000175000017500000000453712262650742024602 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Queue', Object=> $object, SubType => 'RT::Ticket-RT::Transaction' &> <%INIT> my $title = loc( 'Edit Custom Fields for tickets in all queues'); my $object = RT::Queue->new($session{'CurrentUser'}); rt-4.0.19/share/html/Admin/Global/CustomFields/Queues.html0000664000175000017500000000445312262650742022314 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Queue', Object=> $object &> <%INIT> my $title = loc( 'Edit Custom Fields for all queues'); my $object = RT::Queue->new($session{'CurrentUser'}); rt-4.0.19/share/html/Admin/Global/CustomFields/Groups.html0000664000175000017500000000445312262650742022324 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Group', Object=> $object &> <%INIT> my $title = loc( 'Edit Custom Fields for all groups'); my $object = RT::Group->new($session{'CurrentUser'}); rt-4.0.19/share/html/Admin/Global/CustomFields/index.html0000664000175000017500000000651412262650742022154 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, tabs => $tabs ); <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <%INIT> my $title = loc("Global custom field configuration"); my $tabs = { A => { title => loc('Users'), text => loc('Select custom fields for all users'), path => 'Users.html', }, B => { title => loc('Groups'), text => loc('Select custom fields for all user groups'), path => 'Groups.html', }, C => { title => loc('Queues'), text => loc('Select custom fields for all queues'), path => 'Queues.html', }, F => { title => loc('Tickets'), text => loc('Select custom fields for tickets in all queues'), path => 'Queue-Tickets.html', }, G => { title => loc('Ticket Transactions'), text => loc('Select custom fields for transactions on tickets in all queues'), path => 'Queue-Transactions.html', }, H => { title => loc('Articles'), text => loc('Select Custom Fields for Articles in all Classes'), path => 'Class-Article.html' }, }; $m->callback( tabs => $tabs ); rt-4.0.19/share/html/Admin/Global/CustomFields/Queue-Tickets.html0000664000175000017500000000451712262650742023536 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Queue', Object=> $object, SubType => 'RT::Ticket' &> <%INIT> my $title = loc( 'Edit Custom Fields for tickets in all queues'); my $object = RT::Queue->new($session{'CurrentUser'}); rt-4.0.19/share/html/Admin/Global/CustomFields/Users.html0000664000175000017500000000445012262650742022143 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::User', Object=> $object &> <%INIT> my $title = loc( 'Edit Custom Fields for all users'); my $object = RT::User->new($session{'CurrentUser'}); rt-4.0.19/share/html/Admin/Global/Scrip.html0000664000175000017500000000465712262650742017532 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &> <& /Admin/Elements/EditScrip, title => $title, %ARGS, id => $id &> <%init> my ($id, @results) = $m->comp( '/Admin/Elements/EditScrip:Process', %ARGS ); my ($title); if ( $id ) { $title = loc("Modify a scrip that applies to all queues"); } else { $title = loc("Add a scrip which will apply to all queues"); } rt-4.0.19/share/html/Admin/Global/UserRights.html0000664000175000017500000000474112262650742020543 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify global user rights') &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $RT::System, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> my @results = ProcessACLs(\%ARGS); my @principals = GetPrincipalsMap($RT::System, 'Users'); rt-4.0.19/share/html/Admin/Global/GroupRights.html0000664000175000017500000000504412262650742020716 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify global group rights') &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $RT::System, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); # Principal collections my @principals = GetPrincipalsMap($RT::System, qw(System Roles Groups)); rt-4.0.19/share/html/Admin/Global/Scrips.html0000664000175000017500000000437012262650742017705 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditScrips, title => $title, id => $id, %ARGS &> <%init> my $title = loc("Modify scrips which apply to all queues"); my (@actions); <%ARGS> $id => 0 rt-4.0.19/share/html/Admin/Global/MyRT.html0000664000175000017500000000770512262650742017302 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("RT at a glance") &> <& /Elements/Tabs &> <& /Widgets/SelectionBox:header, nojs => 1 &> <& /Elements/ListActions, actions => \@actions &>
      % for my $pane (@panes) { <&|/Widgets/TitleBox, title => loc('RT at a glance').': '.loc($pane->{Name}), bodyclass => "" &> <& /Widgets/SelectionBox:show, self => $pane, nojs => 1 &>
      % } <%init> my @actions; my @items = map { [ "component-$_", loc($_) ] } sort @{ RT->Config->Get('HomepageComponents') }; my $sys = RT::System->new( $session{'CurrentUser'} ); # XXX: put this in savedsearches_to_portlet_items for ( $m->comp( "/Search/Elements/SearchesForObject", Object => $sys )) { my ( $desc, $loc_desc, $search ) = @$_; my $SearchType = $search->Content->{'SearchType'} || 'Ticket'; if ( $SearchType eq 'Ticket' ) { push @items, [ "system-$desc", $loc_desc ]; } else { my $oid = ref($sys) . '-' . $sys->Id . '-SavedSearch-' . $search->Id; my $type = ( $SearchType eq 'Ticket' ) ? 'Saved Search' # loc : $SearchType; push @items, [ "saved-$oid", loc($type) . ": $loc_desc" ]; } } my ($default_portlets) = $sys->Attributes->Named('HomepageSettings'); my $has_right = $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser'); my @panes = $m->comp( '/Admin/Elements/ConfigureMyRT', panes => [ 'body', #loc 'summary', #loc ], Action => 'MyRT.html', items => \@items, ReadOnly => !$has_right, current_portlets => $default_portlets->Content, OnSave => sub { my ( $conf, $pane ) = @_; if (!$has_right) { push @actions, loc( 'Permission denied' ); } else { $default_portlets->SetContent( $conf ); push @actions, loc( 'Global portlet [_1] saved.', $pane ); } } ); $m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_, nojs => 1 ) for @panes; rt-4.0.19/share/html/Admin/Global/Template.html0000664000175000017500000000743012262650742020215 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %if ($Create ) { % } else { % } %# hang onto the queue id <& /Admin/Elements/ModifyTemplate, Name => $TemplateObj->Name, Description => $TemplateObj->Description, Content => $TemplateObj->Content, Type => $TemplateObj->Type &> <& /Elements/Submit, Label => $SubmitLabel, Reset => 1 &>
      <%INIT> my $TemplateObj = RT::Template->new($session{'CurrentUser'}); my ($title, @results, $SubmitLabel); if ($Create) { $title = loc("Create a template"); $SubmitLabel = loc('Create'); } else { if (defined ($Template) && $Template eq 'new') { my ($val, $msg) = $TemplateObj->Create(Queue => $Queue, Name => $Name, Type => $Type); Abort(loc("Could not create template: [_1]", $msg)) unless ($val); push @results, $msg; } else { $TemplateObj->Load($Template) || Abort(loc('No Template')); } $title = loc('Modify template [_1]', loc($TemplateObj->Name())); $SubmitLabel = loc('Save Changes'); } if ($TemplateObj->Id()) { my @attribs = qw( Name Description Queue Type Content ); my @aresults = UpdateRecordObject( AttributesRef => \@attribs, Object => $TemplateObj, ARGSRef => \%ARGS); push @results, @aresults; my ($ok, $msg) = $TemplateObj->CompileCheck; push @results, $msg if !$ok; } <%ARGS> $Queue => '' $Template => '' $Create => '' $Name => '' $Type => '' rt-4.0.19/share/html/Admin/autohandler0000664000175000017500000000424512262650742016606 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> return $m->call_next(%ARGS) if $session{'CurrentUser'}->UserObj->HasRight( Right => 'ShowConfigTab', Object => $RT::System, ); $m->clear_and_abort(403); rt-4.0.19/share/html/Admin/Groups/0000775000175000017500000000000012262650742015627 5ustar chmrrchmrrrt-4.0.19/share/html/Admin/Groups/Members.html0000664000175000017500000001253612262650742020116 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <&| /Widgets/TitleBox, title => loc('Editing membership for group [_1]', $Group->Name) &>

      <&|/l&>Current members

      <&|/l&>Add members

      % if ($Group->MembersObj->Count == 0 ) { <&|/l&>(No members) % } else { <&|/l&>Users % my $Users = $Group->UserMembersObj( Recursively => 0 ); <%perl> my @users = sort { lc($a->[0]) cmp lc($b->[0]) } map { [$m->scomp("/Elements/ShowUser", User => $_), $_] } @{ $Users->ItemsArrayRef };
        % for (@users) { % my ($rendered, $user) = @$_; % $UsersSeen{ $user->id } = 1 if $SkipSeenUsers;
      • <% $rendered |n%>
      • % }
      <&|/l&>Groups
        % my $GroupMembers = $Group->MembersObj; % $GroupMembers->LimitToGroups(); % while ( my $member = $GroupMembers->Next ) { % $GroupsSeen{ $member->MemberId } = 1 if $SkipSeenGroups;
      • <% $member->MemberObj->Object->Name %> % }
      % }
      <& /Admin/Elements/SelectNewGroupMembers, Name => "AddMembers", Group => $Group, SkipUsers => \%UsersSeen, SkipGroups => \%GroupsSeen &>
      <&|/l&>(Check box to delete) <& /Elements/Submit, Label => loc('Modify Members'), Reset => 1 &>
      <%INIT> my $Group = RT::Group->new($session{'CurrentUser'}); $Group->Load($id) || Abort(loc('Could not load group')); my $title = loc("Modify the group [_1]", $Group->Name); my (%UsersSeen, %GroupsSeen); $GroupsSeen{ $Group->id } = 1; # can't be a member of ourself my (@results); # XXX: safe member id in value instead of name foreach my $key (keys %ARGS) { next unless $key =~ /^DeleteMember-(\d+)$/; my ($val,$msg) = $Group->DeleteMember($1); push (@results, $msg); } # Process new users foreach my $member (grep $_, @AddMembersUsers) { my $principal = RT::User->new($session{'CurrentUser'}); if ($member =~ /^User-(\d+)$/) { # Old style, using id $principal->Load($1); } else { # New style, just a username $principal->Load($member); } my ($val, $msg) = $Group->AddMember($principal->PrincipalId); push (@results, $msg); } # Process new groups foreach my $member (grep $_, @AddMembersGroups) { my $principal = RT::Group->new($session{'CurrentUser'}); if ($member =~ /^Group-(\d+)$/) { # Old style, using id $principal->Load($1); } else { # New style, just a group name $principal->LoadUserDefinedGroup($member); } my ($val, $msg) = $Group->AddMember($principal->PrincipalId); push (@results, $msg); } <%ARGS> @AddMembersUsers => () @AddMembersGroups => () $id => undef $SkipSeenUsers => 1 $SkipSeenGroups => 1 rt-4.0.19/share/html/Admin/Groups/index.html0000664000175000017500000001132112262650742017622 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &>

      <% $caption %>

      <&|/l&>Go to group
      <&|/l&>Find groups whose <& /Elements/SelectGroups &>
      /> <&|/l&>Include disabled groups in listing.
      % unless ( $Groups->Count ) { <&|/l&>No groups matching search criteria found. % } else {

      <&|/l&>Select a group:

      <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => 100, %ARGS, Format => $Format, Collection => $Groups, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy GroupString GroupOp GroupField FindDisabledGroups)], &> % } <%INIT> my $Groups = RT::Groups->new($session{'CurrentUser'}); $Groups->LimitToUserDefinedGroups(); my $title = loc('Select a group'); my $caption; if ($FindDisabledGroups) { $Groups->FindAllRows(); } if (length $GroupString) { $caption = loc("Groups matching search criteria"); if ($GroupField =~ /^CustomField-(\d+)/) { $Groups->LimitCustomField( CUSTOMFIELD => $1, OPERATOR => $GroupOp, VALUE => $GroupString, ); } else { $Groups->Limit( FIELD => $GroupField, OPERATOR => $GroupOp, VALUE => $GroupString, ); } RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Groups/Modify.html?id=".$Groups->First->id) if $Groups->Count == 1 and $Groups->First; } else { $caption = loc("User-defined groups"); } $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Groups'}; <%ARGS> $Format => undef, $GroupString => '' unless defined $GroupString $GroupOp => '=' $GroupField => 'Name' $FindDisabledGroups => 0 rt-4.0.19/share/html/Admin/Groups/UserRights.html0000664000175000017500000000547312262650742020625 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify user rights for group [_1]', $GroupObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $GroupObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); if (!defined $id) { Abort(loc("No Group defined")); } my $GroupObj = RT::Group->new($session{'CurrentUser'}); $GroupObj->Load($id) || Abort(loc("Couldn't load group [_1]",$id)); my @principals = GetPrincipalsMap($GroupObj, 'Users'); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/Groups/History.html0000664000175000017500000000460212262650742020160 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Ticket/Elements/ShowHistory, Ticket => $GroupObj, ShowDisplayModes => 0, &> <%INIT> my $GroupObj = RT::Group->new($session{'CurrentUser'}); $GroupObj->Load($id) || Abort("Couldn't load group '$id'"); my $title = loc("History of the group [_1]", $GroupObj->Name); <%ARGS> $id => '' unless defined $id rt-4.0.19/share/html/Admin/Groups/GroupRights.html0000664000175000017500000000551112262650742020774 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify group rights for group [_1]', $GroupObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $GroupObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); if (!defined $id) { Abort(loc("No Group defined")); } my $GroupObj = RT::Group->new($session{'CurrentUser'}); $GroupObj->Load($id) || Abort(loc("Couldn't load group [_1]",$id)); my @principals = GetPrincipalsMap($GroupObj, 'System', 'Groups'); <%ARGS> $id => undef rt-4.0.19/share/html/Admin/Groups/Modify.html0000664000175000017500000001344012262650742017746 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %unless ($Group->Id) { % } else { % } % my $CFs = $Group->CustomFields; % while (my $CF = $CFs->Next) { % } % $m->callback( %ARGS, GroupObj => $Group, results => \@results );
      <&|/l&>Name:
      <&|/l&>Description:
      <% loc($CF->Name) %>: <& /Elements/EditCustomField, CustomField => $CF, Object => $Group, ($Create ? (NamePrefix => 'Object-RT::Group--CustomField-') : () )&>
      /> <&|/l&>Enabled (Unchecking this box disables this group)
      % if ( $Create ) { <& /Elements/Submit, Label => loc('Create'), Reset => 1 &> % } else { <& /Elements/Submit, Label => loc('Save Changes'), Reset => 1 &> % }
      <%INIT> my ($title, @results, @warnings, $Disabled, $EnabledChecked); my $Group = RT::Group->new($session{'CurrentUser'}); if ($Create) { $title = loc("Create a new group"); } else { if ($id eq 'new' ) { my ($create_id, $create_msg) = $Group->CreateUserDefinedGroup(Name => $Name ); if ($create_id) { $id = $Group->Id; push @results, $create_msg; } else { push @results, loc("Group could not be created: [_1]", $create_msg); } } else { $Group->Load($id) || Abort('Could not load group'); } if ($Group->Id) { $title = loc("Modify the group [_1]", $Group->Name); } # If the create failed else { $title = loc("Create a new group"); $Create = 1; } } if ($Group->Id) { my @fields = qw(Description Name ); my @fieldresults = UpdateRecordObject ( AttributesRef => \@fields, Object => $Group, ARGSRef => \%ARGS ); push (@results,@fieldresults); push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $Group ); # Warn about duplicate groups my $dupcheck = RT::Groups->new(RT->SystemUser); $dupcheck->LimitToUserDefinedGroups(); $dupcheck->Limit( FIELD => 'Name', VALUE => $Group->Name ); if ($dupcheck->Count > 1) { push @warnings, loc("There is more than one group with the name '[_1]'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups.", $Group->Name); } } #we're asking about enabled on the web page but really care about disabled. if (defined $Enabled && $Enabled == 1) { $Disabled = 0; } else { $Disabled = 1; } if ( $Group->Id and ($SetEnabled) and ( $Disabled != $Group->Disabled) ) { my ($code, $msg) = $Group->SetDisabled($Disabled); push @results, $msg; } # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $Group->id }, ) if $Group->Id; push @results, @warnings; $EnabledChecked = ( $Group->Disabled() ? '' : 'checked="checked"' ); <%ARGS> $Create => undef $Name => undef $Description => undef $SetEnabled => undef $Enabled => undef $id => '' unless defined $id rt-4.0.19/share/html/l_unsafe0000664000175000017500000000421412262650742015040 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $hand = ($session{'CurrentUser'} ||= RT::CurrentUser->new)->LanguageHandle; $m->print($hand->maketext($m->content,@_)); return(1); rt-4.0.19/share/html/l0000664000175000017500000000426712262650742013507 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $hand = ($session{'CurrentUser'} ||= RT::CurrentUser->new)->LanguageHandle; $m->print($hand->maketext($m->content,map { $m->interp->apply_escapes($_, 'h') } @_)); return(1); rt-4.0.19/share/html/SelfService/0000775000175000017500000000000012262650742015532 5ustar chmrrchmrrrt-4.0.19/share/html/SelfService/Closed.html0000664000175000017500000000452012262650742017632 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Closed tickets') &> <& /SelfService/Elements/MyRequests, %ARGS, status => [ RT::Queue->InactiveStatusArray ], friendly_status => loc('closed'), BaseURL => RT->Config->Get('WebPath') ."/SelfService/Closed.html?", Page => $Page, &> <%ARGS> $Page => 1 rt-4.0.19/share/html/SelfService/Elements/0000775000175000017500000000000012262650742017306 5ustar chmrrchmrrrt-4.0.19/share/html/SelfService/Elements/GotoTicket0000664000175000017500000000437012262650742021311 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      rt-4.0.19/share/html/SelfService/Elements/SearchArticle0000664000175000017500000000437112262650742021747 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      rt-4.0.19/share/html/SelfService/Elements/Header0000664000175000017500000000404512262650742020424 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, %ARGS &> <& /Elements/Tabs &> rt-4.0.19/share/html/SelfService/Elements/MyRequests0000664000175000017500000000545512262650742021363 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => $title &> <& /Elements/CollectionList, Title => $title, Format => $Format, Query => $Query, Order => @Order, OrderBy => @OrderBy, BaseURL => $BaseURL, AllowSorting => 1, Class => 'RT::Tickets', Rows => $Rows, Page => $Page &> <%INIT> my $title = loc("My [_1] tickets", $friendly_status); my $id = $session{'CurrentUser'}->id; my $Query = "( Watcher.id = $id )"; if ( @status ) { @status = map {s/(['\\])/\\$1/g; "Status = '$_'"} @status; $Query .= " AND ( " . join(' OR ', @status ) . " )"; } my $Format = RT->Config->Get('DefaultSelfServiceSearchResultFormat'); <%ARGS> $friendly_status => loc('open') @status => () $BaseURL => undef $Page => 1 @Order => ('ASC') @OrderBy => ('Created') $Rows => 50 rt-4.0.19/share/html/SelfService/Attachment/0000775000175000017500000000000012262650742017622 5ustar chmrrchmrrrt-4.0.19/share/html/SelfService/Attachment/dhandler0000664000175000017500000000407612262650742021335 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> $m->comp('/Ticket/Attachment/dhandler', %ARGS); $m->abort; rt-4.0.19/share/html/SelfService/index.html0000664000175000017500000000446612262650742017541 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Open tickets') &> <& /SelfService/Elements/MyRequests, %ARGS, status => [ RT::Queue->ActiveStatusArray() ], friendly_status => loc('open'), BaseURL => RT->Config->Get('WebPath') ."/SelfService/?", Page => $Page, &> <%ARGS> $Page => 1 rt-4.0.19/share/html/SelfService/Error.html0000664000175000017500000000466012262650742017517 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Error') &>

      <%loc('Error')%>

      <&| /Widgets/TitleBox, title => $Title &> <%$Why%>
      <%$Details%> <%args> $Code => undef $Details => undef $Title => loc("RT Error") $Why => loc("the calling component did not specify why") <%INIT> $Details ||= loc("No details"); $RT::Logger->error("WebRT: $Why ($Details)"); rt-4.0.19/share/html/SelfService/Display.html0000664000175000017500000001553612262650742020037 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('#[_1]: [_2]', $Ticket->id, $Ticket->Subject) &> % $m->callback(CallbackName => 'BeforeActionList', %ARGS, Actions => \@results, ARGSRef => \%ARGS, Ticket => $Ticket ); <& /Elements/ListActions, actions => \@results &> <& /Ticket/Elements/ShowUpdateStatus, Ticket => $Ticket &>
      <&| /Widgets/TitleBox, title => loc('The Basics'), ($LinkBasicsTitle ? (title_href => $title_box_link) : ()), title_class=> 'inverse', color => "#993333" &> <& /Ticket/Elements/ShowBasics, Ticket => $Ticket &> <& /Ticket/Elements/ShowCustomFields, Ticket => $Ticket &> <&| /Widgets/TitleBox, title => loc("Dates"), title_class=> 'inverse', color => "#663366" &> <& /Ticket/Elements/ShowDates, Ticket => $Ticket, UpdatedLink => 0 &>
      <& /Ticket/Elements/ShowHistory, Ticket => $Ticket, URIFile => "Display.html", ShowHeaders => $ARGS{'ShowHeaders'}, DownloadableHeaders => 0, AttachPath => "Attachment", Attachments => $attachments, UpdatePath => "Update.html" &> <%INIT> my ( $field, @results ); $m->callback( ARGSRef => \%ARGS, CallbackName => 'Initial' ); # Load the ticket #If we get handed two ids, mason will make them an array. bleck. # We want teh first one. Just because there's no other sensible way # to deal my @id = ( ref $id eq 'ARRAY' ) ? @{$id} : ($id); my $Ticket = RT::Ticket->new( $session{'CurrentUser'} ); if ( defined ($id[0]) && $id[0] eq 'new' ) { # {{{ Create a new ticket my $Queue = RT::Queue->new( $session{'CurrentUser'} ); unless ( $Queue->Load( $ARGS{'Queue'} ) ) { $m->comp( 'Error.html', Why => loc('Queue not found') ); $m->abort; } unless ( $Queue->CurrentUserHasRight('CreateTicket') ) { $m->comp( 'Error.html', Why => loc('You have no permission to create tickets in that queue.') ); $m->abort; } ( $Ticket, @results ) = CreateTicket( Attachments => delete $session{'Attachments'}, %ARGS ); unless ( $Ticket->id ) { $m->comp( 'Error.html', Why => join( "\n", @results )); $m->abort(); } } else { unless ( $Ticket->Load( $id[0] ) ) { $m->comp( 'Error.html', Why => loc( "Couldn't load ticket '[_1]'", $id ) ); $m->abort(); } my ( $code, $msg ); if ( $session{'Attachments'} || ( defined $ARGS{'UpdateContent'} && $ARGS{'UpdateContent'} ne '' && $ARGS{'UpdateContent'} ne "-- \n" . $session{'CurrentUser'}->UserObj->Signature ) ) { $ARGS{UpdateAttachments} = $session{'Attachments'}; } push @results, ProcessUpdateMessage( ARGSRef => \%ARGS, TicketObj => $Ticket ); delete $session{'Attachments'}; my @cfupdates = ProcessObjectCustomFieldUpdates(Object => $Ticket, ARGSRef => \%ARGS); push (@results, @cfupdates); #Update the status if ( ( defined $ARGS{'Status'} ) and $ARGS{'Status'} and ( $ARGS{'Status'} ne $Ticket->Status ) ) { ( $code, $msg ) = $Ticket->SetStatus( $ARGS{'Status'} ); push @results, "$msg"; } } # This code does automatic redirection if any updates happen. unless ( $Ticket->CurrentUserHasRight('ShowTicket') ) { $m->comp( 'Error.html', Why => loc("No permission to display that ticket") ); # XXX: Why abort? then we loose footer //ruz $m->abort(); } if ( $ARGS{'MarkAsSeen'} ) { $Ticket->SetAttribute( Name => 'User-'. $Ticket->CurrentUser->id .'-SeenUpTo', Content => $Ticket->LastUpdated, ); push @results, loc('Marked all messages as seen'); } # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Path => '/SelfService/Display.html', Anchor => $ARGS{'Anchor'}, Arguments => { id => $Ticket->id }, ); my $Transactions = $Ticket->Transactions; my $attachments = $m->comp( '/Ticket/Elements/FindAttachments', Ticket => $Ticket ); my $LinkBasicsTitle = $Ticket->CurrentUserHasRight('ModifyTicket') || $Ticket->CurrentUserHasRight('ReplyToTicket'); my $title_box_link = RT->Config->Get('WebPath')."/SelfService/Update.html?id=".$Ticket->Id; $m->callback(CallbackName => 'BeforeDisplay', Ticket => \$Ticket, ARGSRef => \%ARGS, title_box_link => \$title_box_link); <%ARGS> $id => undef rt-4.0.19/share/html/SelfService/CreateTicketInQueue.html0000664000175000017500000000470612262650742022272 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& Elements/Header, Title => loc("Create a ticket") &>

      <&|/l&>Select a queue for your new ticket

      % while (my $queue = $queues->Next) { % next unless $queue->CurrentUserHasRight('CreateTicket');
      <%$queue->Name%>
      <%$queue->Description%>
      % }
      <%init> my $queues = RT::Queues->new($session{'CurrentUser'}); $queues->UnLimit; rt-4.0.19/share/html/SelfService/Create.html0000664000175000017500000001101012262650742017614 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& Elements/Header, Title => loc("Create a ticket") &> <& /Elements/ListActions, actions => \@results &>
      <% $m->callback( CallbackName => 'AfterQueue', %ARGS, QueueObj => $queue_obj ) %> <& /Ticket/Elements/AddAttachments, %ARGS, QueueObj => $queue_obj &>
      <&|/l&>Queue: <%$queue_obj->Name || ''%> <% $queue_obj->Description ? '('.$queue_obj->Description.')' : '' %>
      <&|/l&>Requestors: <& /Elements/EmailInput, Name => 'Requestors', Size => '20', Default => $ARGS{Requestors} || $session{CurrentUser}->EmailAddress &>
      <&|/l&>Cc: <& /Elements/EmailInput, Name => 'Cc', Size => '20', Default => $ARGS{Cc} || '' &>
      <&|/l&>Subject:
      <& /Ticket/Elements/EditCustomFields, %ARGS, QueueObj => $queue_obj &>
      <&|/l&>Describe the issue below:
      <& /Elements/MessageBox, Default => $ARGS{Content} || '' &>
      <& /Elements/Submit, Label => loc("Create ticket")&>
      <%args> $Queue => undef <%init> my @results; my $queue_obj = RT::Queue->new($session{'CurrentUser'}); $queue_obj->Load($Queue); my $CFs = $queue_obj->TicketCustomFields(); my $ValidCFs = $m->comp( '/Elements/ValidateCustomFields', CustomFields => $CFs, ARGSRef => \%ARGS ); ProcessAttachments(ARGSRef => \%ARGS); my $skip_create = 0; $m->callback( CallbackName => 'BeforeCreate', ARGSRef => \%ARGS, skip_create => \$skip_create, results => \@results ); if ( !exists $ARGS{'AddMoreAttach'} and defined($ARGS{'id'}) and $ARGS{'id'} eq 'new' ) { # new ticket? if ( $ValidCFs && !$skip_create ) { $m->comp('Display.html', %ARGS); $RT::Logger->crit("After display call; error is $@"); $m->abort(); } elsif ( !$ValidCFs ) { # Invalid CFs while (my $CF = $CFs->Next) { my $msg = $m->notes('InvalidField-' . $CF->Id) or next; push @results, $CF->Name . ': ' . $msg; } } } rt-4.0.19/share/html/SelfService/Prefs.html0000664000175000017500000001012512262650742017476 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Preferences') &> <& /Elements/ListActions, actions => \@results &>
      <&| /Widgets/TitleBox, title => loc('Locale'), id => "user-prefs-identity" &>
      <&|/l&>Language: <& /Elements/SelectLang, Name => 'Lang', Default => $user->Lang &>
      <&|/l&>Timezone: <& /Elements/SelectTimezone, Name => 'Timezone', Default => $user->Timezone &>
      <&| /Widgets/TitleBox, title => loc('Change password') &> <& /Elements/EditPassword, User => $user, Name => [qw(CurrentPass NewPass1 NewPass2)], &>

      <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> my @results; my $user = $session{'CurrentUser'}->UserObj; if (defined $NewPass1 && length $NewPass1 ) { my ($status, $msg) = $user->SafeSetPassword( Current => $CurrentPass, New => $NewPass1, Confirmation => $NewPass2, ); push @results, loc("Password: [_1]", $msg); } my @fields = qw( Lang Timezone ); $m->callback( CallbackName => 'UpdateLogic', fields => \@fields, results => \@results, UserObj => $user, ARGSRef => \%ARGS, ); push @results, UpdateRecordObject ( AttributesRef => \@fields, Object => $user, ARGSRef => \%ARGS, ); if ( $Lang ) { $session{'CurrentUser'}->LanguageHandle($Lang); $session{'CurrentUser'} = $session{'CurrentUser'}; # force writeback } if ($Signature) { $Signature =~ s/(\r\n|\r)/\n/g; if ($Signature ne $user->Signature) { my ($val, $msg) = $user->SetSignature($Signature); push (@results, "Signature: ".$msg); } } #A hack to make sure that session gets rewritten. $session{'i'}++; <%ARGS> $Signature => undef $CurrentPass => undef $NewPass1 => undef $NewPass2 => undef $Lang => undef rt-4.0.19/share/html/SelfService/Update.html0000664000175000017500000001113512262650742017643 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title =>loc('Update ticket #[_1]', $Ticket->id) &> % $m->callback(CallbackName => 'BeforeForm', %ARGS, ARGSRef => \%ARGS, Ticket => $Ticket );
      <& /Ticket/Elements/AddAttachments, %ARGS, TicketObj => $Ticket &>
      <&|/l&>Status <& /Elements/SelectStatus, Name => "Status", TicketObj => $Ticket, DefaultLabel => loc("[_1] (Unchanged)", loc($Ticket->Status)), Default => $ARGS{'Status'} || ($Ticket->Status eq $DefaultStatus ? undef : $DefaultStatus)&>
      <&|/l&>Subject
      <& /Ticket/Elements/EditCustomFields, TicketObj => $Ticket &>
      % if (exists $ARGS{UpdateContent}) { % # preserve QuoteTransaction so we can use it to set up sane references/in/reply to % my $temp = $ARGS{'QuoteTransaction'}; % delete $ARGS{'QuoteTransaction'}; <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0, %ARGS&> % $ARGS{'QuoteTransaction'} = $temp; % } else { % my $IncludeSignature = 1; <& /Elements/MessageBox, Name=>"UpdateContent", IncludeSignature => $IncludeSignature, %ARGS &> % }
      <& /Elements/Submit, Label => loc('Update Ticket'), Name => 'SubmitTicket', id => 'SubmitTicket' &>
      <%INIT> my $Ticket = LoadTicket($id); $m->callback( Ticket => $Ticket, ARGSRef => \%ARGS, CallbackName => 'Initial' ); my $title = loc( "Update ticket #[_1]", $Ticket->id ); $DefaultStatus = $ARGS{Status} || $Ticket->Status() unless ($DefaultStatus); Abort( loc("No permission to view update ticket") ) unless ( $Ticket->CurrentUserHasRight('ReplyToTicket') or $Ticket->CurrentUserHasRight('ModifyTicket') ); ProcessAttachments(ARGSRef => \%ARGS); if ( exists $ARGS{SubmitTicket} ) { $m->callback(CallbackName => 'BeforeDisplay', Ticket => \$Ticket, ARGSRef => \%ARGS); return $m->comp('Display.html', TicketObj => $Ticket, %ARGS); } <%ARGS> $id => undef $Action => undef $DefaultStatus => undef rt-4.0.19/share/html/SelfService/Article/0000775000175000017500000000000012262650742017115 5ustar chmrrchmrrrt-4.0.19/share/html/SelfService/Article/Search.html0000664000175000017500000001003212262650742021204 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Search Articles') &> % my %dedupe_articles; % while (my $article = $articles_content->Next) { % $dedupe_articles{$article->Id}++; % } % while (my $article = $articles_basics->Next) { % next if $dedupe_articles{$article->Id}; % }
      <&|/l&>Search for Articles matching
        % if ($Articles_Content) { % if ($articles_basics->Count || $articles_content->Count) { <&|/l,$Articles_Content&>Articles matching [_1] % } else { <&|/l,$Articles_Content&>No Articles match [_1] % } % }
        <%$article->Name || loc('(no name)')%>: <%$article->Summary%>
        <%$article->Name || loc('(no name)')%>: <%$article->Summary%>
      <%init> use RT::Articles; my $articles_content = RT::Articles->new( $session{'CurrentUser'} ); my $articles_basics = RT::Articles->new( $session{'CurrentUser'} ); if ( $ARGS{'Articles_Content'} ) { $articles_content->LimitCustomField( VALUE => $ARGS{'Articles_Content'}, OPERATOR => 'LIKE' ); $articles_basics->Limit( SUBCLAUSE => 'all', FIELD => 'Name', OPERATOR => 'LIKE', VALUE => $ARGS{'Articles_Content'}, ENTRYAGGREGATOR => "OR" ); $articles_basics->Limit( SUBCLAUSE => 'all', FIELD => 'Summary', OPERATOR => 'LIKE', VALUE => $ARGS{'Articles_Content'}, ENTRYAGGREGATOR => "OR" ); } <%args> $Articles_Content => '' rt-4.0.19/share/html/SelfService/Article/Display.html0000664000175000017500000000533312262650742021414 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Display Article [_1]', $id) &> <%$article->Name || loc("(no name)")%>
      <%$article->Summary%> <& /Elements/ShowCustomFields, Object => $article &> <%init> my $article = RT::Article->new( $session{'CurrentUser'} ); if ($id) { $article->Load($id); } unless ( $article->Id ) { $m->comp( "/Elements/Error", Why => loc("Article not found") ); } unless ( $article->CurrentUserHasRight('ShowArticle') ) { $m->comp( "/Elements/Error", Why => loc("Permission Denied") ); } my $title = loc( "Article #[_1]: [_2]", $article->Id, $article->Name || loc("(no name)")); $id = $article->id; <%args> $id => undef rt-4.0.19/share/html/SelfService/Article/autohandler0000664000175000017500000000441112262650742021346 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> if ( $session{'CurrentUser'}->HasRight( Right => 'ShowArticle', Object => $RT::System )) { $m->comp( { base_comp => $m->request_comp }, $m->fetch_next, %ARGS); } else { RT::Interface::Web::Redirect($RT::WebURL."SelfService/"); } rt-4.0.19/share/html/Helpers/0000775000175000017500000000000012262650742014722 5ustar chmrrchmrrrt-4.0.19/share/html/Helpers/TicketHistory0000664000175000017500000000502412262650742017453 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $id <%INIT> my $TicketObj = RT::Ticket->new($session{'CurrentUser'}); $TicketObj->Load($id); my $attachments = $m->comp('/Ticket/Elements/FindAttachments', Ticket => $TicketObj); my $attachment_content = $m->comp('/Ticket/Elements/LoadTextAttachments', Ticket => $TicketObj); $m->comp('/Ticket/Elements/ShowHistory', Ticket => $TicketObj, Collapsed => $ARGS{'Collapsed'}, ShowHeaders => $ARGS{'ShowHeaders'}, Attachments => $attachments, AttachmentContent => $attachment_content ); $m->abort(); rt-4.0.19/share/html/Helpers/Toggle/0000775000175000017500000000000012262650742016143 5ustar chmrrchmrrrt-4.0.19/share/html/Helpers/Toggle/ShowRequestor0000664000175000017500000000504212262650742020721 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $TicketTemplate = "/Ticket/Elements/ShowRequestorTickets$Status"; $TicketTemplate = "/Ticket/Elements/ShowRequestorTicketsActive" unless RT::Interface::Web->ComponentPathIsSafe($TicketTemplate) and $m->comp_exists($TicketTemplate); my $user_obj = RT::User->new($session{CurrentUser}); my ($val, $msg) = $user_obj->Load($Requestor); unless ($val) { $RT::Logger->error("Unable to load User $Requestor: $msg"); } else { $m->comp( $TicketTemplate, Requestor => $user_obj ); } $m->abort(); <%ARGS> $Status $Requestor rt-4.0.19/share/html/Helpers/Toggle/TicketBookmark0000664000175000017500000000417012262650742021001 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $id $Toggle => 1 <%INIT> $m->comp('/Ticket/Elements/Bookmark', id => $id, Toggle => $Toggle ); $m->abort(); rt-4.0.19/share/html/Helpers/Autocomplete/0000775000175000017500000000000012262650742017363 5ustar chmrrchmrrrt-4.0.19/share/html/Helpers/Autocomplete/Users0000664000175000017500000001122312262650742020406 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $r->content_type('application/json'); <% JSON( \@suggestions ) |n %> % $m->abort; <%ARGS> $return => '' $term => undef $delim => undef $max => 10 $privileged => undef $exclude => '' $op => undef <%INIT> # Only allow certain return fields $return = 'EmailAddress' unless $return =~ /^(?:EmailAddress|Name|RealName)$/; $m->abort unless defined $return and defined $term and length $term; # Use our delimeter if we have one if ( defined $delim and length $delim ) { if ( $delim eq ',' ) { $delim = qr/,\s*/; } else { $delim = qr/\Q$delim\E/; } # If the field handles multiple values, pop the last one off $term = (split $delim, $term)[-1] if $term =~ $delim; } my $CurrentUser = $session{'CurrentUser'}; # Require privileged users or overriding config $m->abort unless $CurrentUser->Privileged or RT->Config->Get('AllowUserAutocompleteForUnprivileged'); my %fields = %{ RT->Config->Get('UserAutocompleteFields') || { EmailAddress => 1, Name => 1, RealName => 'LIKE' } }; # If an operator is provided, check against only the returned field # using that operator %fields = ( $return => $op ) if $op; my $users = RT::Users->new( $CurrentUser ); $users->RowsPerPage( $max ); $users->LimitToPrivileged() if $privileged; while (my ($name, $op) = each %fields) { $op = 'STARTSWITH' unless $op =~ /^(?:LIKE|(?:START|END)SWITH|=|!=)$/i; $users->Limit( FIELD => $name, OPERATOR => $op, VALUE => $term, ENTRYAGGREGATOR => 'OR', SUBCLAUSE => 'autocomplete', ); } # Exclude users we don't want foreach (split /\s*,\s*/, $exclude) { $users->Limit(FIELD => 'id', VALUE => $_, OPERATOR => '!=', ENTRYAGGREGATOR => 'AND'); } my @suggestions; if ( RT->Config->Get('DatabaseType') eq 'Oracle' ) { $users->Limit( FIELD => $return, OPERATOR => 'IS NOT', VALUE => 'NULL', ); } else { $users->Limit( FIELD => $return, OPERATOR => '!=', VALUE => '' ); $users->Limit( FIELD => $return, OPERATOR => 'IS NOT', VALUE => 'NULL', ENTRYAGGREGATOR => 'AND' ); } while ( my $user = $users->Next ) { next if $user->id == RT->SystemUser->id or $user->id == RT->Nobody->id; my $formatted = $m->scomp('/Elements/ShowUser', User => $user, NoEscape => 1); $formatted =~ s/\n//g; my $suggestion = { label => $formatted, value => $user->$return, id => $user->id }; $m->callback( CallbackName => "ModifySuggestion", suggestion => $suggestion, user => $user ); push @suggestions, $suggestion; } rt-4.0.19/share/html/Helpers/Autocomplete/Owners0000664000175000017500000001150012262650742020560 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $r->content_type('application/json'); <% JSON( \@suggestions ) |n %> % $m->abort; <%ARGS> $return => 'Name' $limit => undef $term => undef $max => 10 <%INIT> # Only allow certain return fields $return = 'Name' unless $return =~ /^(?:EmailAddress|Name|RealName|id)$/; $m->abort unless defined $return and defined $term and defined $limit; my $CurrentUser = $session{'CurrentUser'}; my %fields = %{ RT->Config->Get('UserAutocompleteFields') || { EmailAddress => 1, Name => 1, RealName => 'LIKE' } }; my %user_uniq_hash; my $isSU = $session{CurrentUser} ->HasRight( Right => 'SuperUser', Object => $RT::System ); # Turn RT::Ticket-1|RT::Queue-2 into ['RT::Ticket', 1], ['RT::Queue', 2] foreach my $spec (map { [split /\-/, $_, 2] } split /\|/, $limit) { next unless $spec->[0] =~ /^RT::(Ticket|Queue)$/; my $object = $spec->[0]->new( $session{'CurrentUser'} ); if ( $spec->[1] ) { $object->Load( $spec->[1] ); # Warn if we couldn't load an object unless ( $object->id ) { $RT::Logger->warn("Owner autocomplete couldn't load an '$spec->[0]' with id '$spec->[1]'"); next; } } my $Users = RT::Users->new( $session{CurrentUser} ); $Users->RowsPerPage( $max ); # Limit by our autocomplete term BEFORE we limit to OwnTicket because that # does a funky union hack while (my ($name, $op) = each %fields) { $op = 'STARTSWITH' unless $op =~ /^(?:LIKE|(?:START|END)SWITH)$/i; $Users->Limit( FIELD => $name, OPERATOR => $op, VALUE => $term, ENTRYAGGREGATOR => 'OR', SUBCLAUSE => 'autocomplete', ); } $Users->WhoHaveRight( Right => 'OwnTicket', Object => $object, IncludeSystemRights => 1, IncludeSuperusers => $isSU ); while ( my $User = $Users->Next() ) { next if $user_uniq_hash{ $User->Id }; $user_uniq_hash{ $User->Id() } = [ $User, $m->scomp('/Elements/ShowUser', User => $User, NoEscape => 1) ]; } } # Make sure we add Nobody if we don't already have it my $nobody = qr/^n(?:o(?:b(?:o(?:d(?:y)?)?)?)?)?$/i; if ( not $user_uniq_hash{RT->Nobody->id} and $term =~ $nobody ) { $user_uniq_hash{RT->Nobody->id} = [ RT->Nobody, $m->scomp('/Elements/ShowUser', User => RT->Nobody, NoEscape => 1) ]; } my @users = sort { lc $a->[1] cmp lc $b->[1] } values %user_uniq_hash; my @suggestions; my $count = 1; for my $tuple ( @users ) { last if $count > $max; my $formatted = $tuple->[1]; $formatted =~ s/\n//g; push @suggestions, { label => $formatted, value => $tuple->[0]->$return }; $count++; } rt-4.0.19/share/html/Helpers/Autocomplete/CustomFieldValues0000664000175000017500000001057512262650742022714 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $r->content_type('application/json'); <% JSON( \@suggestions ) |n %> % $m->abort; <%INIT> # Only autocomplete the last value my $term = (split /\n/, $ARGS{term} || '')[-1]; my $abort = sub { $r->content_type('application/json'); $m->out(JSON::to_json( [] )); $m->abort; }; unless ( exists $ARGS{ContextType} and exists $ARGS{ContextId} ) { RT->Logger->debug("No context provided"); $abort->(); } my $CustomField; for my $k ( keys %ARGS ) { next unless $k =~ /^Object-.*?-\d*-CustomField-(\d+)-Values?$/; $CustomField = $1; last; } unless ( $CustomField ) { RT->Logger->debug("No CustomField provided"); $abort->(); } my $SystemCustomFieldObj = RT::CustomField->new( RT->SystemUser ); my ($id, $msg) = $SystemCustomFieldObj->LoadById( $CustomField ) ; unless ( $id ) { RT->Logger->debug("Invalid CustomField provided: $msg"); $abort->(); } my $context_object = $SystemCustomFieldObj->LoadContextObject( $ARGS{ContextType}, $ARGS{ContextId} ); $abort->() unless $context_object; my $CustomFieldObj = RT::CustomField->new( $session{'CurrentUser'} ); if ( $SystemCustomFieldObj->ValidateContextObject($context_object) ) { # drop our privileges that came from calling LoadContextObject as the System User $context_object->new($session{'CurrentUser'}); $context_object->LoadById($ARGS{ContextId}); $CustomFieldObj->SetContextObject( $context_object ); } else { RT->Logger->debug("Invalid Context Object ".$context_object->id." for Custom Field ".$SystemCustomFieldObj->id); $abort->(); } ($id, $msg) = $CustomFieldObj->LoadById( $CustomField ); unless ( $CustomFieldObj->Name ) { RT->Logger->debug("Current User cannot see this Custom Field, terminating"); $abort->(); } my $values = $CustomFieldObj->Values; $values->Limit( FIELD => 'Name', OPERATOR => 'LIKE', VALUE => $term, SUBCLAUSE => 'autocomplete', CASESENSITIVE => 0, ); $values->Limit( ENTRYAGGREGATOR => 'OR', FIELD => 'Description', OPERATOR => 'LIKE', VALUE => $term, SUBCLAUSE => 'autocomplete', CASESENSITIVE => 0, ); my @suggestions; while( my $value = $values->Next ) { push @suggestions, { value => $value->Name, label => $value->Description ? $value->Name . ' (' . $value->Description . ')' : $value->Name, }; } rt-4.0.19/share/html/Helpers/Autocomplete/autohandler0000664000175000017500000000413212262650742021614 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> RT::Interface::Web::CacheControlExpiresHeaders( Time => 2 * 60 ); $m->call_next; rt-4.0.19/share/html/Helpers/Autocomplete/Groups0000664000175000017500000000570712262650742020576 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $r->content_type('application/json'); <% JSON( \@suggestions ) |n %> % $m->abort; <%ARGS> $term => undef $max => 10 $exclude => '' $op => 'LIKE' <%INIT> $m->abort unless defined $term and length $term; my $CurrentUser = $session{'CurrentUser'}; # Require privileged users $m->abort unless $CurrentUser->Privileged; # Sanity check the operator $op = 'LIKE' unless $op =~ /^(?:LIKE|(?:START|END)SWITH|=|!=)$/i; my $groups = RT::Groups->new( $CurrentUser ); $groups->RowsPerPage( $max ); $groups->LimitToUserDefinedGroups(); $groups->Limit( FIELD => 'Name', OPERATOR => $op, VALUE => $term, ); # Exclude groups we don't want foreach (split /\s*,\s*/, $exclude) { $groups->Limit(FIELD => 'id', VALUE => $_, OPERATOR => '!=', ENTRYAGGREGATOR => 'AND'); } my @suggestions; while ( my $group = $groups->Next ) { push @suggestions, { label => $group->Name, value => $group->Name, id => $group->id }; } rt-4.0.19/share/html/Helpers/autohandler0000664000175000017500000000413512262650742017156 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> RT::Interface::Web::CacheControlExpiresHeaders( Time => 'no-cache' ); $m->call_next; rt-4.0.19/share/html/index.html0000664000175000017500000001205312262650742015316 0ustar chmrrchmrr Almost there!

      You're almost there!

      You haven't yet configured your webserver to run RT. You appear to have installed RT's web interface correctly, but haven't yet configured your web server to "run" the RT server which powers the web interface. The next step is to edit your webserver's configuration file to instruct it to use RT's mod_perl or FastCGI handler. If you need commercial support, please contact us at sales@bestpractical.com. rt-4.0.19/share/html/Install/0000775000175000017500000000000012262650742014726 5ustar chmrrchmrrrt-4.0.19/share/html/Install/DatabaseType.html0000664000175000017500000000712012262650742020162 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|Elements/Wrapper, Title => loc('Step [_1] of [_2]', 1, 7 ) .': '. loc('Choose Database Engine') &>

      <&|/l&>RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported.

      <&|/l&>You should choose the database you or your local database administrator is most comfortable with.

      <&|/l&>SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server.

      <&|/l_unsafe, 'CPAN' &>If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using [_1] to download and install DBD::MySQL, DBD::Oracle or DBD::Pg.

      <& /Widgets/BulkEdit, Types => \@Types, Meta => $RT::Installer->{Meta}, CurrentValue => RT::Installer->CurrentValues(@Types) &> <& /Elements/Submit, Label => loc('Next') .': '. loc( 'Check Database Credentials') &>
      <%init> my @Types = 'DatabaseType'; if ( $Run ) { $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Meta => $RT::Installer->{Meta}, Store => $RT::Installer->{InstallConfig} ); RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/DatabaseDetails.html'); } <%args> $Run => undef rt-4.0.19/share/html/Install/Elements/0000775000175000017500000000000012262650742016502 5ustar chmrrchmrrrt-4.0.19/share/html/Install/Elements/Wrapper0000664000175000017500000000436112262650742020051 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&/Elements/Header, title => $Title &> <& /Elements/PageLayout, title => $Title, show_menu => 1 &> <% $m->content() |n%> <& /Elements/Footer &> % $m->abort; <%args> $Title => 'Install RT' rt-4.0.19/share/html/Install/Elements/Errors0000664000175000017500000000430012262650742017676 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if (@Errors) { <&| "/Widgets/TitleBox", title => loc('Error'), hideable => 0, class => 'error' &>
        % for my $Error ( @Errors ) {
      • <% $Error %>
      • % }
      % } <%args> @Errors rt-4.0.19/share/html/Install/DatabaseDetails.html0000664000175000017500000002021312262650742020624 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Step [_1] of [_2]', 2, 7 ) .': '. loc('Check Database Credentials') &> % if ( @errors ) { <& Elements/Errors, Errors => \@errors &>

      <&|/l&>Tell us a little about how to find the database RT will be using

      <&|/l&>We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database.

      <&|/l&>When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database % } elsif ( @results ) { <& /Elements/ListActions, actions => \@results &>

      <&|/l&>We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT. % }

      % if ( @results && !@errors ) { <& /Elements/Submit, Label => loc('Next') .': '. loc('Customize Basics'), Back => 1, BackLabel => loc('Back') .': '. loc('Select Database Type'), Name => 'Next', &> % } else { <& /Widgets/BulkEdit, Types => \@Types, Meta => $RT::Installer->{Meta}, CurrentValue => { %{RT::Installer->CurrentValues(@Types)}, DatabaseAdmin => RT::Installer->CurrentValue( 'DatabaseAdmin' ) || $RT::Installer->{InstallConfig}{DatabaseAdmin} || ( $db_type eq 'mysql' ? 'root' : $db_type eq 'Pg' ? 'postgres' : '' ), } &> <& /Elements/Submit, Label => loc('Check Database Connectivity'), Back => 1, BackLabel => loc('Back') .': '. loc('Choose Database Engine'), &> % }
      <%init> my (@results, @errors); my $ConnectionSucceeded; my @Types = 'DatabaseName'; my $db_type = $RT::Installer->{InstallConfig}{DatabaseType}; unless ( $db_type eq 'SQLite' ) { push @Types, 'DatabaseHost', 'DatabasePort', 'DatabaseAdmin', 'DatabaseAdminPassword', 'DatabaseUser', 'DatabasePassword'; } if ( $db_type eq 'Pg' ) { push @Types, 'DatabaseRequireSSL'; } if ( $Run ) { if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/DatabaseType.html'); } if ( $ARGS{Next} ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Basics.html'); } $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Store => $RT::Installer->{InstallConfig}, Meta => $RT::Installer->{Meta}, KeepUndef => 1 ); my ( $status, $msg ) = RT::Installer->SaveConfig; if ( $status ) { delete $INC{'RT_SiteConfig.pm'}; RT->LoadConfig; RT::Handle->FinalizeDatabaseType(); # dba connect systemdsn my $dbh = DBI->connect( RT::Handle->SystemDSN, $ARGS{DatabaseAdmin}, $ARGS{DatabaseAdminPassword}, { RaiseError => 0, PrintError => 0 }, ); if ( $dbh ) { push @results, loc('Connection succeeded'); # dba connect dsn, which has table info $dbh = DBI->connect( RT::Handle->DSN, $ARGS{DatabaseAdmin}, $ARGS{DatabaseAdminPassword}, { RaiseError => 0, PrintError => 0 }, ); if ( $dbh and $db_type eq "Oracle") { # The database _existing_ is itself insufficient for Oracle -- we need to check for the RT user my $sth = $dbh->prepare('SELECT username FROM dba_users WHERE username = ?'); $sth->execute( $ARGS{DatabaseUser} ); undef $dbh unless $sth->fetchrow_array; push @errors, loc("Oracle users cannot have empty passwords") unless $ARGS{DatabasePassword}; } if ( $dbh ) { # check if table Users exists eval { my $dbh = DBI->connect( RT::Handle->DSN, $ARGS{DatabaseAdmin}, $ARGS{DatabaseAdminPassword}, { RaiseError => 1, PrintError => 0 }, ); my $sth = $dbh->prepare('select * from Users'); }; unless ( $@ ) { my $sth = $dbh->prepare('select id from Users where Name=?'); $sth->execute('RT_System'); if ( $sth->fetchrow_array ) { $RT::Installer->{DatabaseAction} = 'none'; push @results, loc("[_1] appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below", $RT::DatabaseName); } else { $RT::Installer->{DatabaseAction} = 'acl,coredata,insert'; push @results, loc("[_1] already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT.", $RT::DatabaseName); } } else { $RT::Installer->{DatabaseAction} = 'schema,acl,coredata,insert'; push @results, loc("[_1] already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT.", $RT::DatabaseName ); } } else { $RT::Installer->{DatabaseAction} = 'create,schema,acl,coredata,insert'; } } else { $RT::Installer->{DatabaseAction} = 'error'; push @errors, loc("Failed to connect to database: [_1]", $DBI::errstr ); } } else { push @results, loc($msg); } } <%args> $Run => undef $Back => undef rt-4.0.19/share/html/Install/Finish.html0000664000175000017500000000651212262650742017040 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Step [_1] of [_2]', 7, 7) .': '. loc('Finish') &>

      <&|/l&>Click "Finish Installation" below to complete this wizard.

      <&|/l_unsafe, 'root' &>You should be taken directly to a login page. You'll be able to log in with username of [_1] and the password you set earlier.

      <&|/l&>If you've changed the Port that RT runs on, you'll need to restart the server in order to log in.

      <&|/l, RT::Installer->ConfigFile &>The settings you've chosen are stored in [_1].

      <& /Elements/Submit, Label => 'Finish Installation' &>
      <%init> if ( $Run ) { RT->InstallMode(0); RT->ConnectToDatabase(); RT->InitSystemObjects(); RT->InitClasses(); RT->InitPlugins(); system( 'chmod -w ' . RT::Installer->ConfigFile ) && $RT::Logger->error( 'failed to make ' . RT::Installer->ConfigFile . ' readonly' ); my $root = RT::User->new( RT->SystemUser ); $root->Load('root'); my ($ok, $val) = $root->SetPassword( $RT::Installer->{InstallConfig}{Password} ); $RT::Logger->warning("Unable to set root password: $val") if !$ok; RT::Interface::Web::Redirect(RT->Config->Get('WebURL')); } <%args> $Run => undef rt-4.0.19/share/html/Install/index.html0000664000175000017500000001171412262650742016727 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Welcome to RT!') &> <& Elements/Errors, Errors => \@errors &> % return if $locked;

      <% loc('Language') %>

      <&|/l&>Select another language: <& /Elements/SelectLang, Name => 'Lang', Default => $lang_handle? $lang_handle->language_tag : undef, &>

      <% loc('What is RT?') %>

      <&|/l&>RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an "action item."

      <&|/l&>RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)

      <% loc('Getting started') %>

      <&|/l, loc("Let's go!") &>You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click "[_1]" below, RT will guide you through setting up your RT server and database.

      <&|/l&>If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

      <& /Elements/Submit, Label => loc( "Let's go!"), Name => 'Run' &>
      <%init> my @errors; my $locked; my $file = RT::Installer->ConfigFile; if ( ! -e $file ) { # write a blank RT_SiteConfig.pm open( my $fh, '>', $file ) or die $!; close $fh; } elsif ( ! -w $file ) { $locked = 1; } if ( $locked ) { push @errors, loc("Config file [_1] is locked", $file); } elsif ( $Run ) { $RT::Installer->{InstallConfig} ||= {}; for my $field ( qw/DatabaseType DatabaseName DatabaseHost DatabasePort DatabaseUser DatabaseRequireSSL rtname Organization CommentAddress CorrespondAddress SendmailPath WebDomain WebPort/ ) { $RT::Installer->{InstallConfig}{$field} ||= RT->Config->Get($field); } for my $field ( qw/OwnerEmail Password DatabasePassword DatabaseAdminPassword/ ) { # stuff we don't want to keep null $RT::Installer->{InstallConfig}{$field} = ''; } RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/DatabaseType.html'); } elsif ( $ChangeLang && $Lang ) { # hackish, but works $session{'CurrentUser'} = RT::CurrentUser->new; $session{'CurrentUser'}->LanguageHandle( $Lang ); } my $lang_handle = do { local $@; eval { ($session{'CurrentUser'} || RT::CurrentUser->new(RT->SystemUser->Id)) ->LanguageHandle } }; <%args> $Run => 0 $ChangeLang => undef $Lang => undef rt-4.0.19/share/html/Install/Sendmail.html0000664000175000017500000000733712262650742017362 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|Elements/Wrapper, Title => loc('Step [_1] of [_2]', 4, 7 ) .': '. loc('Customize Email Configuration') &> <& Elements/Errors, Errors => \@errors &>

      <&|/l&>RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT.

      <& /Widgets/BulkEdit, Types => \@Types,Meta => $RT::Installer->{Meta}, CurrentValue => RT::Installer->CurrentValues(@Types) &> <& /Elements/Submit, Label => loc('Next') .': '. loc('Customize Email Addresses'), Back => 1, BackLabel => loc('Back' ) .': '. loc('Customize Basics'), &>
      <%init> my @errors; my @Types = qw/SendmailPath OwnerEmail/; if ( $Run ) { $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Store => $RT::Installer->{InstallConfig}, Meta => $RT::Installer->{Meta}, KeepUndef => 1); if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Basics.html'); } unless ( -e $ARGS{SendmailPath} ) { push @errors, loc( "[_1] doesn't exist.", $ARGS{SendmailPath} ); } if ( ! $ARGS{OwnerEmail} || $ARGS{OwnerEmail} !~ /.+@.+/ ) { push @errors, loc("Invalid [_1]: '[_2]' doesn't look like an email address", 'Administrator Email', $ARGS{OwnerEmail} ); } unless ( @errors ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Global.html'); } } <%args> $Run => undef $Back => undef rt-4.0.19/share/html/Install/Initialize.html0000664000175000017500000001202512262650742017715 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|Elements/Wrapper, Title => loc('Step [_1] of [_2]', 6, 7) .': '. loc('Initialize Database') &> <& Elements/Errors, Errors => \@errors &> % unless ( @errors ) {
      <&|/l&>Click "Initialize Database" to create RT's database and insert initial metadata. This may take a few moments
      % }
      <& /Elements/Submit, Label => loc('Initialize Database'), Back => 1, BackLabel => loc('Back') .': '. loc('Customize Email Addresses'), &>
      <%init> my @errors; if ( $Run ) { if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Global.html'); } my @actions = split /,/, $RT::Installer->{DatabaseAction}; # RT::Handle's ISA is dynamical, so we need to unshift the right one. my $class = 'DBIx::SearchBuilder::Handle::' . RT->Config->Get('DatabaseType'); $class->require or die $UNIVERSAL::require::ERROR; unshift @RT::Handle::ISA, $class; my $sysdbh = DBI->connect( RT::Handle->SystemDSN, $RT::Installer->{InstallConfig}{DatabaseAdmin}, $RT::Installer->{InstallConfig}{DatabaseAdminPassword}, { RaiseError => 0, PrintError => 0 }, ); die $DBI::errstr unless $sysdbh; my ( $status, $msg ) = ( 1, '' ); if ( $actions[0] eq 'create' ) { ($status, $msg) = RT::Handle->CreateDatabase( $sysdbh ); unless ( $status ) { push @errors, loc('ERROR: [_1]', $msg ); } shift @actions; # shift the 'create' action since its job is done. } if ( $status ) { my $dbh = DBI->connect( RT::Handle->DSN, $RT::Installer->{InstallConfig}{DatabaseAdmin}, $RT::Installer->{InstallConfig}{DatabaseAdminPassword}, { RaiseError => 0, PrintError => 0 }, ); die $DBI::errstr unless $dbh; foreach my $action ( @actions ) { ($status, $msg) = (1, ''); if ( $action eq 'schema' ) { ($status, $msg) = RT::Handle->InsertSchema( $dbh ); } elsif ( $action eq 'acl' ) { ($status, $msg) = RT::Handle->InsertACL( $dbh ); } elsif ( $action eq 'coredata' ) { $RT::Handle = RT::Handle->new; $RT::Handle->dbh( undef ); RT::ConnectToDatabase(); RT::InitLogging(); ($status, $msg) = $RT::Handle->InsertInitialData; } elsif ( $action eq 'insert' ) { $RT::Handle = RT::Handle->new; RT::Init(); my $file = $RT::EtcPath . "/initialdata"; ($status, $msg) = $RT::Handle->InsertData( $file, undef, disconnect_after => 0 ); } unless ( $status ) { push @errors, loc('ERROR: [_1]', $msg); last; } } } unless ( @errors ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Finish.html'); } } <%args> $Run => undef $Back => undef rt-4.0.19/share/html/Install/Global.html0000664000175000017500000001037212262650742017017 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Step [_1] of [_2]', 5, 7 ) .': '. loc('Customize Email Addresses') &> <& Elements/Errors, Errors => \@errors &>

      <&|/l&>Help us set up some useful defaults for RT.

      <&|/l&>When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program.

      <& /Widgets/BulkEdit, Types => \@Types,Meta => $RT::Installer->{Meta}, CurrentValue => RT::Installer->CurrentValues(@Types) &> <& /Elements/Submit, Label => $RT::Installer->{DatabaseAction} eq 'none' ? loc('Next') .': '. loc('Finish') : loc('Next') .': '. loc('Initialize Database'), Back => 1, BackLabel => loc('Back') .': '. loc('Customize Email Configuration'), &>
      <%init> my @errors; my @Types = qw/CommentAddress CorrespondAddress/; if ( $Run ) { $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Store => $RT::Installer->{InstallConfig}, Meta => $RT::Installer->{Meta}, KeepUndef => 1 ); if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Sendmail.html'); } for ( qw/CommentAddress CorrespondAddress/ ) { if ( $ARGS{$_} && $ARGS{$_} !~ /.+@.+/ ) { push @errors, loc("Invalid [_1]: '[_2]' doesn't look like an email address", $_, $ARGS{$_}); } } unless ( @errors ) { my ( $status, $msg ) = RT::Installer->SaveConfig; if ( $status ) { delete $INC{'RT_SiteConfig.pm'}; RT->LoadConfig; if ( $RT::Installer->{DatabaseAction} ne 'none' ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Initialize.html'); } else { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Finish.html'); } } else { push @errors, loc($msg); } } } <%args> $Run => undef $Back => undef rt-4.0.19/share/html/Install/Basics.html0000664000175000017500000000744512262650742017032 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Step [_1] of [_2]', 3, 7) .': '. loc('Customize Basics') &> <& Elements/Errors, Errors => \@errors &>

      <&|/l&>These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user.

      <& /Widgets/BulkEdit, Types => \@Types,Meta => $RT::Installer->{Meta}, CurrentValue => RT::Installer->CurrentValues(@Types) &> <& /Elements/Submit, Label => loc('Next') .': '. loc('Customize Email Configuration'), Back => 1, BackLabel => loc('Back') .': '. loc('Check Database Credentials'), &>
      <%init> my @errors; my @Types = qw/rtname WebDomain WebPort Password/; if ( $Run ) { $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Store => $RT::Installer->{InstallConfig}, Meta => $RT::Installer->{Meta} ); if ( $ARGS{WebPort} && $ARGS{WebPort} !~ /^\d+$/ ) { push @errors, loc("Invalid [_1]: it should be a number", 'WebPort'); } if ( !$ARGS{Password} ) { push @errors, loc("You must enter an Administrative password"); } else { my $dummy_user = RT::User->new($session{CurrentUser}); my ($ok, $msg) = $dummy_user->ValidatePassword($ARGS{Password}); unless ($ok) { push @errors, $msg; } } if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/DatabaseDetails.html'); } unless ( @errors ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Sendmail.html'); } } <%args> $Run => undef $Back => undef rt-4.0.19/share/html/Install/autohandler0000664000175000017500000000461512262650742017165 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%flags> inherit => undef <%init> if (RT->InstallMode) { $r->content_type("text/html; charset=utf-8"); require RT::Installer; $RT::Installer->{'CurrentUser'} = RT::CurrentUser->new(); $RT::Installer->{Meta} = RT::Installer->Meta; $m->call_next; } else { # redirect to login page if not in install mode RT::Interface::Web::Redirect(RT->Config->Get('WebURL')) } rt-4.0.19/share/html/Articles/0000775000175000017500000000000012262650742015066 5ustar chmrrchmrrrt-4.0.19/share/html/Articles/Topics.html0000664000175000017500000001441312262650742017220 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Browse by topic') &> <& /Elements/Tabs &> <&|/l&>All topics % if (defined $class) { > <% $currclass_name %> % } % if ($id != 0) { > <& /Articles/Elements/ShowTopic, topic => $currtopic &> % }

      <&|/l&>Browse by topic

      % if (defined $class) {

      <% $currclass_name %>

      % my $rtopic = RT::Topic->new( $session{'CurrentUser'} ); % $rtopic->Load($id); % unless ( $rtopic->Id() % && $rtopic->ObjectId() == $currclass->Id ) % { % # Show all of them % $ProduceTree->( 0 ); % } else { % my @showtopics = ( $rtopic ); % my $parent = $rtopic->ParentObj; % while ( $parent->Id ) { % unshift @showtopics, $parent; % $parent = $parent->ParentObj; % } % # List the topics. % for my $t ( @showtopics ) {
      • <& /Articles/Elements/ShowTopicLink, Topic => $t, Class => $currclass_id &> % $ProduceTree->( $id ) if $t->Id == $id; % } % for ( @showtopics ) {
      % } % } % } else { % }
      % if (@articles) { % if ($id) {

      <&|/l, $currtopic->Name&>Articles in [_1]

      % } elsif ($class) {

      <&|/l&>Articles with no topics

      % } % } <%init> my $Classes; my $currclass; my $currclass_id; my $currclass_name; my $currtopic; if ( defined $class ) { if ($class) { $currclass = RT::Class->new( $session{'CurrentUser'} ); $currclass->Load($class); $currclass_id = $currclass->Id; $currclass_name = $currclass->Name; } else { $currclass = $RT::System; $currclass_id = 0; $currclass_name = 'Global Topics'; } } else { $Classes = RT::Classes->new( $session{'CurrentUser'} ); $Classes->LimitToEnabled(); } if ($id) { $currtopic = RT::Topic->new( $session{'CurrentUser'} ); $currtopic->Load($id); } my $ProduceTree; $ProduceTree = sub { my ( $parentid ) = @_; my $topics = RT::Topics->new( $session{'CurrentUser'} ); $topics->LimitToObject($currclass); $topics->LimitToKids($parentid || 0); $topics->OrderBy( FIELD => 'Name' ); return unless $topics->Count; $m->out("
        "); while ( my $t = $topics->Next ) { $m->out("
      • "); $m->comp("/Articles/Elements/ShowTopicLink", Topic => $t, Class => $currclass_id, ); $ProduceTree->( $t->Id ) if $t->Children->Count; $m->out("
      • "); } $m->out("
      "); }; my @articles; if ($id) { my $Articles = RT::ObjectTopics->new($session{'CurrentUser'}); $Articles->Limit(FIELD => 'ObjectType', VALUE => 'RT::Article'); $Articles->Limit(FIELD => 'Topic', VALUE => $id); while (my $objtopic = $Articles->Next) { my $a = RT::Article->new($session{'CurrentUser'}); $a->Load($objtopic->ObjectId); push @articles, $a; } } elsif ($class) { my $Articles = RT::Articles->new($session{'CurrentUser'}); my $TopicsAlias = $Articles->Join( TYPE => 'left', ALIAS1 => 'main', FIELD1 => 'id', TABLE2 => 'ObjectTopics', FIELD2 => 'ObjectId', ); $Articles->Limit( LEFTJOIN => $TopicsAlias, FIELD => 'ObjectType', VALUE => 'RT::Article', ); $Articles->Limit( ALIAS => $TopicsAlias, FIELD => 'Topic', OPERATOR => 'IS', VALUE => 'NULL', QUOTEVALUE => 0, ); $Articles->Limit( FIELD => 'Class', OPERATOR => '=', VALUE => $class, ); @articles = @{$Articles->ItemsArrayRef}; } <%args> $id => 0 $class => undef $showall => undef rt-4.0.19/share/html/Articles/Elements/0000775000175000017500000000000012262650742016642 5ustar chmrrchmrrrt-4.0.19/share/html/Articles/Elements/SelectClass0000664000175000017500000000605112262650742020774 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($Lite) { % } else { % } <%ARGS> $Multiple => undef $Size => undef $ShowNullOption => 1 $ShowAllClasses => 1 $Name => undef $Verbose => undef $Default => undef $Lite => 0 <%INIT> my @Default = ref($Default) eq 'ARRAY' ? @$Default : ( $Default); my $Classes= RT::Classes->new($session{'CurrentUser'}); $Classes->LimitToEnabled(); my $d = RT::Class->new($session{'CurrentUser'}); $d->Load($Default[0]); rt-4.0.19/share/html/Articles/Elements/CheckSkipCreate0000664000175000017500000000525412262650742021563 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return if $checks_failure; # we're already skipping Create return unless RT->Config->Get('ArticleOnTicketCreate'); my $article = RT::Article->new($session{'CurrentUser'}); foreach my $arg ( keys %$ARGSRef) { if ( $ARGSRef->{Articles_Content} || # search for an article $ARGSRef->{'Articles-Include-Topic'} || # using Queue Topics ( $article->LoadByInclude( Field => $arg, Value => $ARGSRef->{$arg} ) && $article->id ) ) { # including an article $$skip_create = 1; last; } } return; <%ARGS> $ARGSRef => undef $skip_create => undef $checks_failure => undef $results => undef rt-4.0.19/share/html/Articles/Elements/ShowTopic0000664000175000017500000000467612262650742020521 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for (@path) { %# this isn't always a class, it can be the system object % my $class_id = ($_->ObjectType eq 'RT::Class' ? $_->ObjectId : 0 ); <% $_->ParentObj->Id ? " > " : "" %><% $_->Name || loc("(no name)") %> % } <%args> $topic <%init> my @path; while ($topic->Id) { unshift @path, $topic; $topic = $topic->ParentObj; } rt-4.0.19/share/html/Articles/Elements/BeforeMessageBox0000664000175000017500000002001512262650742021743 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $ARGS{id} && $ARGS{id} ne 'new' ) { % } % unless (RT->Config->Get('HideArticleSearchOnReplyCreate')) { % } % if ($hotlist->Count) { % } % my %dedupe_articles; % while (my $article = $articles_content->Next) { % $dedupe_articles{$article->Id}++; % } % while (my $article = $articles_basics->Next) { % next if $dedupe_articles{$article->Id}; % } % if ( @$topics ) { % if ( $ARGS{$name_prefix .'Articles-Include-Topic'} ) { % } % }
      <&|/l&>Search for Articles matching
      <&|/l&>Include Article:
      <&|/l&>Select an Article to include
        <%$article->Name|| loc('(no name)')%>: <%$article->Summary%>
        <%$article->Name || loc('(no name)')%>: <%$article->Summary || ''%>
      <&|/l, $QueueObj->Name &>Choose from Topics for [_1]
      <&|/l, $included_topic->Name &>Select an Article from [_1]
      <%init> my $QueueObj = $ARGS{QueueObj}; if ( $ARGS{id} && $ARGS{id} ne 'new' && !$QueueObj ) { my $ticket = RT::Ticket->new( $session{CurrentUser} ); $ticket->Load( $ARGS{id} ); $QueueObj = $ticket->QueueObj; } my $skip = 0; $m->callback(CallbackName => "Init", skip => \$skip, Queue => $QueueObj); return if $skip; my $name_prefix = ''; if ( $ARGS{'MessageBoxName'} ) { $name_prefix = $ARGS{'MessageBoxName'} .'-'; } # convert Articles-Include-Article => $id to Articles-Include-Article-$id if ( my $tmp = $ARGS{$name_prefix ."Articles-Include-Article"} ) { $ARGS{$name_prefix ."Articles-Include-Article-$tmp"}++; } my %uri; if ( $ARGS{id} && $ARGS{id} ne 'new' ) { $uri{$_}++ for split ' ', ($ARGS{$ARGS{'id'}.'-RefersTo'} || ''); foreach my $arg (keys %ARGS) { next if $name_prefix && substr($arg, 0, length($name_prefix)) ne $name_prefix; my $article = RT::Article->new($session{'CurrentUser'}); $article->LoadByInclude( Field => substr($arg, length($name_prefix)), Value => $ARGS{$arg}, ); if ($article->Id) { $uri{$article->URI}++; } } } use RT::Articles; my $articles_content = RT::Articles->new( $session{'CurrentUser'} ); my $articles_basics = RT::Articles->new( $session{'CurrentUser'} ); if ( my $tmp = $ARGS{ $name_prefix ."Articles_Content" } ) { $articles_content->LimitCustomField( VALUE => $tmp, OPERATOR => 'LIKE' ); $articles_content->LimitAppliedClasses( Queue => $QueueObj ); $articles_basics->Limit( SUBCLAUSE => 'all', FIELD => 'Name', OPERATOR => 'LIKE', VALUE => $tmp, ENTRYAGGREGATOR => "OR" ); $articles_basics->Limit( SUBCLAUSE => 'all', FIELD => 'Summary', OPERATOR => 'LIKE', VALUE => $tmp, ENTRYAGGREGATOR => "OR" ); $articles_basics->LimitAppliedClasses( Queue => $QueueObj ); } my $hotlist = RT::Articles->new( $session{'CurrentUser'} ); $hotlist->LimitHotlistClasses; $hotlist->LimitAppliedClasses( Queue => $QueueObj ); my ( $topic_articles, $topics, $included_topic ); $topic_articles = RT::Articles->new( $session{CurrentUser} ); $topics = []; my $top_topic = RT::Topic->new( $session{CurrentUser} ); $top_topic->LoadByCols( Name => 'Queues', Parent => 0 , ObjectType => 'RT::System', ObjectId => 1); if ( $top_topic->id ) { my $queue_topic = RT::Topic->new( $session{CurrentUser} ); $queue_topic->LoadByCols( Name => $QueueObj->Name, Parent => $top_topic->id ); if ( $queue_topic->id ) { # store all topics below $queue_topic to $topics topics( $queue_topic, $topics, 0 ); if ( my $tmp = $ARGS{ $name_prefix .'Articles-Include-Topic'} ) { $included_topic = RT::Topic->new( $session{CurrentUser} ); $included_topic->Load( $tmp ); $topic_articles->LimitTopics( $tmp ); $topic_articles->OrderBy( FIELD => 'Name' ); } } } # recursively get all the topics given a top topic sub topics { my $parent = shift; my $out = shift; my $depth = shift; while ( my $topic = $parent->Children->Next ) { push @$out, { id => $topic->id, name => $topic->Name, depth => $depth }; topics( $topic, $out, $depth+1 ); } } rt-4.0.19/share/html/Articles/Elements/GotoArticle0000664000175000017500000000556112262650742021010 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      % if ($class or $topic) { % }
      <%args> $topic => "" $class => "" rt-4.0.19/share/html/Articles/Elements/NewestArticles0000664000175000017500000000632312262650742021525 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/TitleBoxStart, title => loc("[_1] newest articles", $rows), bodyclass=> '' &> % while (my $Article = $MyArticles->Next) { % $i++; % }
      <&|/l&># <&|/l&>Name <&|/l&>Created by  
      <%$Article->Id%> <%$Article->Name || loc('(no name)')%> <%$Article->CreatorObj->Name%> [<&|/l&>Update]
        <%$Article->Summary || loc('(no Summary)')%>
      <& /Elements/TitleBoxEnd &> <%INIT> my $rows = 10; my $i; my $MyArticles; $MyArticles = RT::Articles->new($session{'CurrentUser'}); $MyArticles->UnLimit; $MyArticles->RowsPerPage($rows); $MyArticles->OrderBy(FIELD => 'LastUpdated', ORDER => 'DESC'); rt-4.0.19/share/html/Articles/Elements/QuickSearch0000664000175000017500000000456712262650742021003 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/TitleBoxStart, title => loc('Quick search') &> <& /Elements/TitleBoxEnd &> <%init> my $classes = RT::Classes->new($session{'CurrentUser'}); $classes->LimitToEnabled; rt-4.0.19/share/html/Articles/Elements/ShowTopicLink0000664000175000017500000000511412262650742021323 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Topic $Class => 0 % if ($Link) { \ % } <% $Topic->Name() || loc("(no name)") %>\ % if ($Topic->Description) { : <% $Topic->Description %> % } % if ( $Articles->Count ) { (<&|/l, $Articles->Count &>[quant,_1,article]) % } % if ($Link) { % } <%init> my $Articles = RT::ObjectTopics->new( $session{'CurrentUser'} ); $Articles->Limit( FIELD => 'ObjectType', VALUE => 'RT::Article' ); $Articles->Limit( FIELD => 'Topic', VALUE => $Topic->Id ); my $Link = $Topic->Children->Count || $Articles->Count; rt-4.0.19/share/html/Articles/Elements/IncludeArticle0000664000175000017500000000710712262650742021461 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $parent_args = $m->caller_args(-1); my $name_prefix = ''; $name_prefix = $ARGS{'Name'} .'-' if $ARGS{'Name'} && grep rindex($_, "$ARGS{'Name'}-Articles-", 0) == 0, keys %$parent_args; foreach my $arg ( keys %$parent_args ) { next if $name_prefix && substr($arg, 0, length($name_prefix)) ne $name_prefix; my $Ticket = $ARGS{Ticket}; if ( !$Ticket and $parent_args->{id} and $parent_args->{id} ne 'new' ) { $Ticket = RT::Ticket->new($session{'CurrentUser'}); $Ticket->Load($parent_args->{id}); unless ( $Ticket->id ) { $RT::Logger->error("Couldn't load ticket ". $parent_args->{id} ) } } my $Queue = RT::Queue->new($session{CurrentUser}); if ($Ticket && $Ticket->Id) { $Queue = $Ticket->QueueObj; } my $article = RT::Article->new($session{'CurrentUser'}); $article->LoadByInclude( Field => substr($arg, length($name_prefix)), Value => $parent_args->{$arg}, Queue => $Queue->Id, ); next unless $article && $article->id; my $formatted_article = $m->scomp('/Articles/Article/Elements/Preformatted', Article => $article, Ticket => $Ticket ); $m->callback( Article => $article, Ticket => $Ticket, formatted_article => \$formatted_article ); if (RT->Config->Get('MessageBoxRichText', $session{'CurrentUser'})) { $formatted_article =~ s/>/>/g; $formatted_article =~ s//g; } $m->print($formatted_article); } return; rt-4.0.19/share/html/Articles/Elements/CreateArticle0000664000175000017500000000447312262650742021304 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/TitleBoxStart, title => loc('Create an article') &> <& /Elements/TitleBoxEnd &> <%init> my $Classes = RT::Classes->new($session{'CurrentUser'}); $Classes->LimitToEnabled; rt-4.0.19/share/html/Articles/Elements/UpdatedArticles0000664000175000017500000000650012262650742021643 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/TitleBoxStart, title => loc("[_1] most recently updated articles", $rows), bodyclass=> '' &> % while (my $Article = $MyArticles->Next) { % $i++; % }
      <&|/l&># <&|/l&>Name <&|/l&>Created by  
      <%$Article->Id%> <%$Article->Name || loc('(no name)')%> <%$Article->CreatorObj->Name%> [<&|/l&>Update]
        <%$Article->Summary || loc('(no Summary)')%>
      <& /Elements/TitleBoxEnd &> <%INIT> my $rows = 10; my $i; my $MyArticles; $MyArticles = RT::Articles->new($session{'CurrentUser'}); $MyArticles->RowsPerPage($rows); $MyArticles->Limit(FIELD => 'Created', OPERATOR => '!=', VALUE => 'LastUpdated', QUOTEVALUE => 0 ); $MyArticles->OrderBy(FIELD => 'Created', ORDER => 'DESC'); rt-4.0.19/share/html/Articles/index.html0000664000175000017500000000451012262650742017063 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Articles') &> <& /Elements/Tabs &>
      <& /Articles/Elements/NewestArticles &>
      <& /Articles/Elements/UpdatedArticles &>
      <& /Articles/Elements/QuickSearch &>
      <& /Articles/Elements/CreateArticle &>
      rt-4.0.19/share/html/Articles/Article/0000775000175000017500000000000012262650742016451 5ustar chmrrchmrrrt-4.0.19/share/html/Articles/Article/ExtractIntoTopic.html0000664000175000017500000000544012262650742022605 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Extract a new article from ticket #[_1]',$Ticket) &> <& /Elements/Tabs &> <&|/l&>Select topics for this article:
      <& Elements/EditTopics, Classes => [$ClassObj], OnlyThisClass => 1, id => 'new', &>
      <%args> $Ticket => undef $Class => undef <%init> my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($Class); unless ($ClassObj->Id) { $m->comp("/Elements/Error", Why => loc("'[_1]' isn't a valid class identifier", $Class)); } rt-4.0.19/share/html/Articles/Article/Search.html0000664000175000017500000002143012262650742020544 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Search for articles") &> <& /Elements/Tabs &> % unless ( keys %ARGS ) { % my $Classes = RT::Classes->new($session{'CurrentUser'}); % $Classes->LimitToEnabled();
      <& /Elements/TitleBoxStart, title => loc('Saved searches') &> <&|/l&>Load saved search:
      <& Elements/SelectSavedSearches, Name => 'LoadSavedSearch', Default => $CurrentSearch &> <& /Elements/TitleBoxEnd &>
      % return; % } <& /Elements/ListActions, actions => \@results &> % if ($articles->BuildSelectCountQuery =~ /WHERE/i) {

      <&|/l&>Search results

      <& /Elements/CollectionList, Collection => $articles, AllowSorting => 1, OrderBy => \@OrderBy, Order => \@Order, Format => $format, GenericQueryArgs => { %filtered, Format => $format, }, &> % }


      <& Elements/ShowSearchCriteria, dates => \%dates, RefersTo => $RefersTo, customfields => $customfields, ReferredToBy => $ReferredToBy, %ARGS &>

      <& Elements/ShowSavedSearches, CurrentSearch => $CurrentSearch, Name => ($search ? $search->Name : undef), Privacy => ($search ? $search->Privacy : undef) &>
      <%init> use RT::SavedSearch; my @results; my $articles = RT::Articles->new( $session{'CurrentUser'} ); my $format = q{ '__id__/TITLE:#', '__Name__/TITLE:Name', '__ClassName__', '__CreatedRelative__', '__LastUpdatedRelative__', '__Summary__', '__Topics__', }; # {{{ Quicksearch logic # If it is a number, load the article with that ID. Otherwise, search # on name and summary. if ($ARGS{'q'} && $ARGS{'q'} =~ /^(\d+)$/) { return $m->comp("/Articles/Article/Display.html", id => $1); } # }}} # {{{ Saved search logic my $search; # The keys in %ARGS that are not saved and loaded with named searches. # These need to be treated specially. my @metakeys = qw/NewSearchName CurrentSearch SearchPrivacy Save Load Update Delete/; if ($CurrentSearch =~ /^(.*-\d+)-SavedSearch-(\d+)$/) { $search = RT::SavedSearch->new($session{'CurrentUser'}); $search->Load($1, $2); } # Have we been asked to load a search? if ($ARGS{'Load'}) { if ($ARGS{'LoadSavedSearch'} =~ /^(.*-\d+)-SavedSearch-(\d+)$/ ) { my $privacy = $1; my $search_id = $2; $search = RT::SavedSearch->new($session{'CurrentUser'}); my ($ret, $msg) = $search->Load($privacy, $search_id); if ($ret) { my $searchargs = $search->GetParameter('args'); # Clean out ARGS and fill it in with the saved args from the # loaded search. foreach my $key (@metakeys) { $searchargs->{$key} = $ARGS{$key}; } %ARGS = %{$searchargs}; $CurrentSearch = "$privacy-SavedSearch-$search_id"; } else { push(@results, loc("Error: could not load saved search [_1]: [_2]", $ARGS{'LoadSavedSearch'}, $msg)); } } else { push(@results, loc("Invalid [_1] argument", 'LoadSavedSearch')); } } # ...or have we been asked to save, update, or delete a search? if ($ARGS{'Save'}) { my %searchargs = %ARGS; foreach my $key (@metakeys) { delete $searchargs{$key}; } $search = RT::SavedSearch->new($session{'CurrentUser'}); unless ($ARGS{'SearchPrivacy'} =~ /^(.*)-(\d+)$/) { # This shouldn't really happen, but hey. push(@results, loc("WARNING: Saving search to user-level privacy")); $ARGS{'SearchPrivacy'} = 'RT::User-'.$session{'CurrentUser'}->Id; } my ($ret, $msg) = $search->Save(Privacy => $ARGS{'SearchPrivacy'}, Type => 'Article', Name => $ARGS{'NewSearchName'}, SearchParams => {'args' => \%searchargs}); if ($ret) { $CurrentSearch = $ARGS{'SearchPrivacy'} . "-SavedSearch-" . $search->Id; push(@results, loc("Created search [_1]", $search->Name)); } else { undef $search; # if we bomb out creating a search # we don't want to have the empty object hang around push(@results, loc("Could not create search: [_1]", $msg)); } } elsif ($ARGS{'Update'}) { if ($ARGS{'SearchPrivacy'} != $search->Privacy) { push(@results, loc("Error: cannot change privacy value of existing search")); } else { my %searchargs = %ARGS; foreach my $key (@metakeys) { delete $searchargs{$key}; } # We already have a search loaded, because CurrentSearch is set, # or else we would not have gotten here. my ($ret, $msg) = $search->Update(Name => $ARGS{'NewSearchName'}, SearchParams => \%searchargs); if ($ret) { push(@results, loc("Search [_1] updated", $search->Name)); } else { push(@results, loc("Error: search [_1] not updated: [_2]", $search->Name, $msg)); } } } elsif ($ARGS{'Delete'}) { # Keep track of this, as we are about to delete the search. my $searchname = $search->Name; my ($ret, $msg) = $search->Delete; if ($ret) { $ARGS{'CurrentSearch'} = undef; push(@results, loc("Deleted search [_1]", $searchname)); # Get rid of all the state. foreach my $key (keys %ARGS) { delete $ARGS{$key}; } $CurrentSearch = 'new'; $search = undef; $RefersTo = undef; $ReferredToBy = undef; } else { push(@results, loc("Could not delete search [_1]: [_2]", $searchname, $msg)); } } # }}} # Don't want to search for a null class when there is no class specced my $customfields = RT::CustomFields->new( $session{'CurrentUser'} ); my %dates; $articles->Search( %ARGS, CustomFields => $customfields, Dates => \%dates, OrderBy => \@OrderBy, Order => \@Order, ); $m->callback( %ARGS, _Search => $articles ); my %filtered = %ARGS; delete $filtered{$_} for (@metakeys, "EditTopics", "ExpandTopics"); delete $filtered{$_} for grep {$filtered{$_} !~ /\S/} keys %filtered; @filtered{qw(OrderBy Order)} = (\@OrderBy, \@Order); my $QueryString = "?".$m->comp('/Elements/QueryString', %filtered); <%ARGS> $CreatedBefore => '' $CreatedAfter => '' $LastUpdatedBefore => '' $LastUpdatedAfter => '' $RefersTo => undef $ReferredToBy => undef $CurrentSearch => 'new' @OrderBy => () @Order => () rt-4.0.19/share/html/Articles/Article/Elements/0000775000175000017500000000000012262650742020225 5ustar chmrrchmrrrt-4.0.19/share/html/Articles/Article/Elements/ShowHistory0000664000175000017500000000533212262650742022455 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $i; % while (my $transaction = $transactions->Next) { % }
      <%$transaction->CreatedObj->AsString%> <%$transaction->CreatorObj->Name%> <%$transaction->Description%>
      <%init> my $article = RT::Article->new($session{'CurrentUser'}); $article->Load($id); unless ($article->Id) { $m->comp("/Elements/Error", Why => loc("Article not found")); } unless ($article->ClassObj->CurrentUserHasRight('ShowArticle')) { $m->comp("/Elements/Error", Why => loc("Permission Denied")); } my $transactions = $article->Transactions(); <%args> $id => undef rt-4.0.19/share/html/Articles/Article/Elements/SelectSavedSearches0000664000175000017500000000574412262650742024042 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> use RT::SavedSearches; my $groups = $session{'CurrentUser'}->UserObj->OwnGroups; my %privacies; $privacies{'RT::User-' . $session{'CurrentUser'}->UserObj->Id} = 1; map { $privacies{'RT::Group-'.$_->Id} = $_ } @{$groups->ItemsArrayRef}; <%args> $Name => undef $Default => undef rt-4.0.19/share/html/Articles/Article/Elements/SearchByCustomField0000664000175000017500000000527612262650742024021 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# if the custom field is a select, enumerate the options % if ($Field->Type =~ /^Select/) { % my $CustomFieldValues = $Field->ValuesObj(); % } %# otherwise, put in a textedity field % else { % } <%init> my @Values =ref( $Values ) ? @{ $Values } : ( $Values ); <%ARGS> $Field => undef $Name => 'CustomField' $Values => undef rt-4.0.19/share/html/Articles/Article/Elements/ShowSearchCriteria0000664000175000017500000001407212262650742023705 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($ARGS{'HideOptions'}) { <& /Elements/TitleBoxStart, title => loc('Advanced search'), class => "rolled-up", bodyclass => "hidden" &> % } else { <& /Elements/TitleBoxStart, title => loc('Advanced search') &> % } % while (my $field = $customfields->Next ) { % }

      <&|/l&>Basics

      <&|/l&>Classis <& /Articles/Elements/SelectClass, Name => 'Class', Multiple =>1, Size => 5 , ShowNullOption => undef, Default => $ARGS{'Class'} &> <&|/l&>and not <& /Articles/Elements/SelectClass, Name => 'Class!', Multiple =>1, Size => 5 , ShowNullOption => undef, Default => $ARGS{'Class!'} &>
      <&|/l&>Name <&|/l&>matches <&|/l&>and not
      <&|/l&>Summary <&|/l&>matches <&|/l&>and not

      <&|/l&>Content

      <&|/l&>Any field <&|/l&>matches <&|/l&>and not
      <% $field->Name %> <&|/l&>matches % my $matches = $field->Name."~"; % my $nomatches = $field->Name."!~"; <& /Articles/Article/Elements/SearchByCustomField, Field => $field, Name => $matches, Values => $ARGS{$matches} &> <&|/l&>and not <& /Articles/Article/Elements/SearchByCustomField, Field => $field, Name => $nomatches, Values => $ARGS{$nomatches} &>

      <&|/l&>Dates

      <&|/l&>Created <&|/l&>after <& /Elements/SelectDate, Name=>"Created>", Default => ($dates->{'Created>'} ? $dates->{'Created>'}->ISO : '') &> <&|/l&>and before <& /Elements/SelectDate, Name=>"Created<", Default => ($dates->{'Created<'} ? $dates->{'Created<'}->ISO:'')&>
      <&|/l&>Last updated <&|/l&>after <& /Elements/SelectDate, Name=>"LastUpdated>", Default => ($dates->{'LastUpdated>'} ? $dates->{'LastUpdated>'}->AsString:'')&> <&|/l&>and before <& /Elements/SelectDate, Name=>"LastUpdated<", Default => ($dates->{'LastUpdated<'} ? $dates->{'LastUpdated<'}->AsString:'')&>

      <&|/l&>Links

      <& LinkEntryInstructions &>
      <&|/l&>Refer to
      <&|/l&>Referred to by

      <&|/l&>Topics

      <& /Articles/Article/Elements/EditTopics, %ARGS, Classes => \@Classes, OnlyThisClass => 1 &>
      /> <&|/l&>Include subtopics
      <& /Elements/Submit, Label => loc('Search') &> <&/Elements/TitleBoxEnd&> <%init> my @Classes = ( ref $ARGS{'Class'} eq 'ARRAY' ) ? @{ $ARGS{'Class'} } : ( $ARGS{'Class'} ); for (@Classes) { my $class = RT::Class->new( $session{'CurrentUser'} ); $class->LoadById($_); $_ = $class; } for my $field ( qw/Class Name Summary Article/ ) { $ARGS{"$field~"} = '' unless defined $ARGS{"$field~"}; $ARGS{"$field!~"} = '' unless defined $ARGS{"$field!~"}; } $RefersTo = '' unless defined $RefersTo; $ReferredToBy = '' unless defined $ReferredToBy; <%ARGS> $dates =>undef $RefersTo => '' $ReferredToBy => '' $customfields => undef rt-4.0.19/share/html/Articles/Article/Elements/ShowSavedSearches0000664000175000017500000000664612262650742023545 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/TitleBoxStart, title => loc('Saved searches') &> %# Keep track of what our current search ID is. %# Hide all the save functionality if the user shouldn't see it. % if ($session{'CurrentUser'}->HasRight( Right => 'CreateSavedSearch', % Object=> $RT::System )) {

      <&|/l&>Save this search

      <&|/l&>Name: <&|/l&>Privacy: <& SelectSearchPrivacy, Name => 'SearchPrivacy', Default => $Privacy &>
      % if ($CurrentSearch && $CurrentSearch ne 'new') {       % } else { % }
      % } # if HasRight 'CreateSavedSearch'

      <&|/l&>Load a saved search

      <& SelectSavedSearches, Name => 'LoadSavedSearch', Default => $CurrentSearch &> <& /Elements/TitleBoxEnd &> <%INIT> unless ($session{'CurrentUser'}->HasRight( Right => 'LoadSavedSearch', Object=> $RT::System )) { return; } <%ARGS> $CurrentSearch => undef $Name => undef $Privacy => undef rt-4.0.19/share/html/Articles/Article/Elements/EditBasics0000664000175000017500000000530612262650742022166 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <&|/l&>Name
    <&|/l&>Summary
    <&|/l&>Class % if ($EditClass) { <& /Articles/Elements/SelectClass, Name => 'Class', Default =>$ArticleObj->ClassObj->Id&> % } else { <%$ClassObj->Name%> % }
    <%$CustomField->Name%>
    <%$CustomField->FriendlyType%>
    <& /Elements/EditCustomField, Object => $ArticleObj, CustomField => $CustomField, NamePrefix => $NamePrefix, Default => ($CFContent->{$CustomField->Id} || $ARGS{$NamePrefix .$CustomField->id .'-Values'} || $ARGS{$NamePrefix .$CustomField->id .'-Value'}) , Rows => 15, Cols => 70 &>
    <&|/l&>Enter articles, tickets, or other URLs related to this article. <& LinkEntryInstructions &> % unless ($id eq 'new') { <&|/l&>(Check boxes to delete)
    % }
    <&|/l&>Refers to:
      % if ($id ne 'new') { % my $refersto = $ArticleObj->RefersTo; % while (my $link = $refersto->Next) { % my $member = $link->TargetURI;
    • % if ($link->TargetURI->IsLocal) { <% loc($member->Object->ObjectTypeStr) %> <%$member->Object->Id%>: % if (UNIVERSAL::isa($member->Object, "RT::Article") or UNIVERSAL::can($member->Object, 'Name')) { <%$member->Object->Name%> % } elsif (UNIVERSAL::isa($member->Object, "RT::Ticket") or UNIVERSAL::can($member->Object, 'Subject')) { <%$member->Object->Subject%> % } % } else { <%$link->Target%> % } % } % }
    <&|/l&>Referred to by:
    % } <%INIT> my @results; my $title; my $ArticleObj = RT::Article->new( $session{'CurrentUser'} ); $ArticleObj->Load($id); unless ( $ArticleObj->id ) { $m->comp("/Elements/Error", Why => loc("Unable to load article") ); } unless ( $ArticleObj->CurrentUserHasRight('ModifyArticle') ) { $m->comp("/Elements/Error", Why => loc("No permission to modify article")); } if ($ARGS{'Delete'} eq 'yes') { $ArticleObj->Delete(); $title = loc('Article #[_1] deleted', $ArticleObj->Id); } else { $title = loc('Delete article #[_1]', $ArticleObj->Id); } <%ARGS> $id => undef rt-4.0.19/share/html/Articles/Article/Display.html0000664000175000017500000000616512262650742020754 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &>

    <&|/l&>Basics

    <&|/l&>Class: <%$article->ClassObj->Name%>
    <%$article->Summary%>

    <&|/l&>Content

    <& /Elements/ShowCustomFields, Object => $article &>

    <&|/l&>Links

    <& Elements/ShowLinks, article => $article &>

    <&|/l&>Topics

    <& Elements/ShowTopics, article => $article &> <%init> my $article = RT::Article->new( $session{'CurrentUser'} ); if ($Name) { $article->LoadByCols( Name => $Name ); } elsif ($id) { $article->Load($id); } unless ( $article->Id ) { if ( $ARGS{'Name'} ) { $m->comp( 'Edit.html', %ARGS ); return (); } else { $m->comp( "/Elements/Error", Why => loc("Article not found") ); } } unless ( $article->CurrentUserHasRight('ShowArticle') ) { $m->comp( "/Elements/Error", Why => loc("Permission Denied") ); } my $title = loc( "Article #[_1]: [_2]", $article->Id, $article->Name || loc("(no name)")); $id = $article->id; <%args> $id => undef $Name => undef rt-4.0.19/share/html/Articles/Article/Edit.html0000664000175000017500000002404312262650742020227 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <& Elements/EditBasics, ArticleObj => $ArticleObj, EditClass =>$EditClass, ClassObj => $ClassObj, %ARGS , id => $id &> <& Elements/EditCustomFields, ArticleObj => $ArticleObj, CFContent => \%CFContent, ClassObj => $ClassObj, %ARGS, id =>$id, &> <& Elements/EditLinks, ArticleObj => $ArticleObj, %ARGS, id => $id &>

    <&|/l&>Basics

    <&|/l&>Content

    <&|/l&>Links

    <&|/l&>Topics

    <&|/l&>Topics <& Elements/EditTopics, ArticleObj => $ArticleObj, Classes => [$ArticleObj->Id ? $ArticleObj->ClassObj : $ClassObj], OnlyThisClass => 1, %ARGS, id => $id &>
    <& /Elements/Submit, Label => ($id eq 'new' ? loc('Create') : loc('Save Changes')), color => "#993333" &>
    <%INIT> if ( exists $ARGS{'Topics'} ) { $ARGS{'Topics'} = ref( $ARGS{'Topics'} ) ? $ARGS{'Topics'} : [ $ARGS{'Topics'} ]; } my @results; my $title; my $Entries = {}; my $ArticleObj = RT::Article->new( $session{'CurrentUser'} ); my $ClassObj = RT::Class->new( $session{'CurrentUser'} ); my %create_args; my %CFContent; my $EditClass = 1; if ( !$id ) { $title = loc('Create a new article'); foreach my $arg ( sort keys %ARGS ) { if ( $arg =~ /^Transaction-(\d+)$/ ) { my $trans = RT::Transaction->new( $session{'CurrentUser'} ); $trans->Load($1); $CFContent{ $ARGS{$arg} } .= "\n\n" if $CFContent{ $ARGS{$arg} }; $CFContent{ $ARGS{$arg} } .= $trans->Content; } } $ClassObj->Load($Class); unless ( $ClassObj->Id ) { $m->comp( "/Elements/Error", Why => loc( "'[_1]' isn't a valid class identifier", $Class ) ); } $EditClass = 0; $id = 'new'; } elsif ( $id eq 'new' ) { if ( $ARGS{'RefersTo-new'} ) { @{ $create_args{'RefersTo-new'} } = split( /\s+/, $ARGS{'RefersTo-new'} ); } if ( $ARGS{'new-RefersTo'} ) { @{ $create_args{'new-RefersTo'} } = split( /\s+/, $ARGS{'new-RefersTo'} ); } foreach my $arg (keys %ARGS) { next if $arg =~ /-(?:Magic|Category)$/; # Object-RT::Article--CustomField-3-Values if ( $arg =~ /^Object-RT::Article--CustomField-(\d+)(.*?)$/ ) { my $cfid = $1; my $cf = RT::CustomField->new( $session{'CurrentUser'} ); $cf->SetContextObject( $ArticleObj ); $cf->Load( $cfid ); unless ( $cf->id ) { $RT::Logger->error( "Couldn't load custom field #". $cfid ); next; } if ( $arg =~ /-Upload$/ ) { $create_args{"CustomField-$cfid"} = _UploadedFile( $arg ); next; } my $type = $cf->Type; my @values = (); if ( ref $ARGS{ $arg } eq 'ARRAY' ) { @values = @{ $ARGS{ $arg } }; } elsif ( $type =~ /text/i ) { @values = ($ARGS{ $arg }); } else { @values = split /\r*\n/, $ARGS{ $arg } || ''; } @values = grep $_ ne '', map { s/\r+\n/\n/g; s/^\s+//; s/\s+$//; $_; } grep defined, @values; $create_args{"CustomField-$cfid"} = \@values; } } my $msg; ( $id, $msg ) = $ArticleObj->Create( Summary => $ARGS{'Summary'}, Name => $ARGS{'Name'}, Class => $ARGS{'Class'}, Topics => $ARGS{'Topics'}, %create_args ); push( @results, $msg ); if ($id) { $ArticleObj->Load($id); $title = loc( 'Modify article #[_1]', $ArticleObj->Id ); delete $ARGS{id}; if ( $ARGS{next} ) { $m->redirect($ARGS{next}); } else { MaybeRedirectForResults( Actions => \@results, Arguments => { id => $ArticleObj->id }, ); } } if (!$id) { $ClassObj->Load($Class); unless ( $ClassObj->Id ) { $m->comp( "/Elements/Error", Why => loc( "'[_1]' isn't a valid class identifier", $Class ) ); } $ArticleObj = RT::Article->new( $session{'CurrentUser'} ); $id = 'new'; $EditClass = 0; $title = loc('Create a new article'); } } else { $ArticleObj->Load($id); unless ( $ArticleObj->id ) { $m->comp( "/Elements/Error", Why => loc("Unable to load article") ); } my @attribs = qw(Name Summary Class); @results = UpdateRecordObject( AttributesRef => \@attribs, Object => $ArticleObj, ARGSRef => \%ARGS ); my @cf_results = ProcessObjectCustomFieldUpdates( Object => $ArticleObj, ARGSRef => \%ARGS ); @results = ( @results, @cf_results ); # Delete links that are gone gone gone. foreach my $arg ( keys %ARGS ) { if ( $arg =~ /DeleteLink-(.*?)-(RefersTo|MemberOf|RefersTo)-(.*)$/ ) { my $base = $1; my $type = $2; my $target = $3; my ( $val, $msg ) = $ArticleObj->DeleteLink( Base => $base, Type => $type, Target => $target ); push @results, $msg; } } my @linktypes = qw(DependsOn MemberOf RefersTo ); foreach my $linktype (@linktypes) { for my $luri ( split( / /, ( $ARGS{ $ArticleObj->Id . "-$linktype" } || '' )) ) { $luri =~ s/\s*$//; # Strip trailing whitespace my ( $val, $msg ) = $ArticleObj->AddLink( Target => $luri, Type => $linktype ); push @results, $msg; delete $ARGS{ $ArticleObj->Id . "-$linktype" } if $val; } for my $luri ( split( / /, ( $ARGS{ "$linktype-" . $ArticleObj->Id } || '' )) ) { my ( $val, $msg ) = $ArticleObj->AddLink( Base => $luri, Type => $linktype ); push @results, $msg; delete $ARGS{ "$linktype-" . $ArticleObj->Id } if $val; } } my %topics; if ( $ARGS{'EditTopics'} ) { $topics{$_}++ for @{ $ARGS{'Topics'} }; my $objTopics = RT::ObjectTopics->new( $session{'CurrentUser'} ); $objTopics->LimitToObject($ArticleObj); while ( my $t = $objTopics->Next ) { $topics{ $t->Topic }--; } for my $id ( keys %topics ) { if ( $topics{$id} > 0 ) { my ( $val, $msg ) = $ArticleObj->AddTopic( Topic => $id ); push @results, $msg; } elsif ( $topics{$id} < 0 ) { my ( $val, $msg ) = $ArticleObj->DeleteTopic( Topic => $id ); push @results, $msg; } } } $title = loc( 'Modify article #[_1]', $ArticleObj->Id ); } # if they're working on an existing article if ( $ArticleObj->id ) { unless ( $ArticleObj->CurrentUserHasRight('ShowArticle') ) { $m->comp( "/Elements/Error", Why => loc("No permission to view Article") ); } } <%ARGS> $id => undef $Class => undef rt-4.0.19/share/html/Articles/Article/History.html0000664000175000017500000000427012262650742021003 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& Elements/ShowHistory, id => $id &> <%init> my $title =loc('History for article #[_1]',$id); <%args> $id => undef rt-4.0.19/share/html/Articles/Article/ExtractFromTicket.html0000664000175000017500000000770412262650742022751 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Extract article from ticket #[_1] into class [_2]',$Ticket, $ClassObj->Name) &> <& /Elements/Tabs &>
    % for (@Topics) { % }

    <&|/l&>Use the dropdown menus to select which ticket updates you want to extract into a new article. <&|/l&>You can insert ticket content into any freeform, text or wiki field.

    % my $i; % while ( my $trans = $transactions->Next ) { % next unless $trans->Content; % }
    <&|/l&>Field <&|/l&>Ticket update
    <%$trans->CreatedObj->AsString%>: <%$trans->Description%>
    <%$trans->Content%>
    <& /Elements/Submit, Label => loc('Create'), color => "#993333" &>
    <%INIT> my $ticket=LoadTicket($Ticket); my $transactions = $ticket->Transactions; my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($Class); unless ($ClassObj->Id) { $m->comp("/Elements/Error", Why => loc("'[_1]' isn't a valid class identifier", $Class)); } my $CustomFields = $ClassObj->ArticleCustomFields(); $CustomFields->Limit(FIELD => 'Type', OPERATOR => '=', VALUE => 'Text'); $CustomFields->Limit(FIELD => 'Type', OPERATOR => '=', VALUE => 'Wikitext'); $CustomFields->Limit(FIELD => 'Type', OPERATOR => '=', VALUE => 'Freeform'); <%ARGS> $Class => undef $Ticket => undef @Topics => () rt-4.0.19/share/html/Articles/Article/PreCreate.html0000664000175000017500000000514212262650742021213 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Create an article in class...') &> <& /Elements/Tabs &>
      % my $Classes = RT::Classes->new($session{'CurrentUser'}); % $Classes->LimitToEnabled(); % my $have_classes = 0; % while (my $Class = $Classes->Next) { % $have_classes++; % my $qs = $m->comp("/Elements/QueryString", %ARGS, Class=> $Class->Id);
    • <&|/l, $Class->Name &>in class [_1]
    • % }
    % unless ( $have_classes ) { <&|/l&>Permission Denied

    <&|/l&>To create an Article, you must first create a Class and have access to that Class.

    % } rt-4.0.19/share/html/User/0000775000175000017500000000000012262650742014236 5ustar chmrrchmrrrt-4.0.19/share/html/User/Prefs.html0000664000175000017500000002365612262650742016217 0ustar chmrrchmrr%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title=>loc("Preferences") &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc('Identity'), id => "user-prefs-identity" &>
    <&|/l&>Email:
    <&|/l&>Real Name:
    <&|/l&>Nickname:
    <&|/l&>Language: <& /Elements/SelectLang, Name => 'Lang', Default => $UserObj->Lang &>
    <&|/l&>Timezone: <& /Elements/SelectTimezone, Name => 'Timezone', Default => $UserObj->Timezone &>
    <&| /Widgets/TitleBox, title => loc('Phone numbers'), id => "user-prefs-phone" &>
    <&|/l&>Residence:
    <&|/l&>Work:
    <&|/l&>Mobile:
    <&|/l&>Pager:
    %if ($UserObj->Privileged) { <&| /Widgets/TitleBox, title => loc('Signature') &> % } % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormLeftColumn' );
    <&| /Widgets/TitleBox, title => loc('Password'), id => "user-prefs-password" &> <& /Elements/EditPassword, User => $UserObj, Name => [qw(CurrentPass Pass1 Pass2)], &> <&| /Widgets/TitleBox, title => loc('Location'), id => "user-prefs-location" &>
    <&|/l&>Organization:
    <&|/l&>Address1:
    <&|/l&>Address2:
    <&|/l&>City:
    <&|/l&>State:
    <&|/l&>Zip:
    <&|/l&>Country:
    <&| /Widgets/TitleBox, title => loc('Custom Fields') &> % my $CustomFields = $UserObj->CustomFields; % while ( my $CF = $CustomFields->Next ) { % }
    <% loc( $CF->Name ) %>: <& /Elements/EditCustomField, %ARGS, Object => $UserObj, CustomField => $CF &>
    <&| /Widgets/TitleBox, title => loc('Secret authentication token'), id => "user-prefs-feeds" &> <&|/l&>All iCal feeds embed a secret token which authorizes you. If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, breaking all existing iCal feeds below. <& /Elements/Submit, Label => loc('Reset secret authentication token'), Name => "ResetAuthToken", id => "ResetAuthTokenContainer" &> % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormRightColumn' );
    % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormEnd' ); <& /Elements/Submit, Label => loc('Save Preferences') &>
    <%INIT> my $UserObj = RT::User->new( $session{'CurrentUser'} ); $UserObj->Load($id) if $id; $UserObj->Load($Name) if $Name && !$UserObj->id; unless ( $UserObj->id ) { Abort(loc("Couldn't load user #[_1] or user '[_2]'", $id, $Name)) if $id && $Name; Abort(loc("Couldn't load user #[_1]", $id)) if $id; Abort(loc("Couldn't load user '[_1]'", $Name)) if $Name; Abort(loc("Couldn't load user")); } $id = $UserObj->id; my @results; if ( $ARGS{'ResetAuthToken'} ) { my ($status, $msg) = $UserObj->GenerateAuthToken; push @results, $msg; } else { my @fields = qw( Name Comments Signature EmailAddress FreeformContactInfo Organization RealName NickName Lang EmailEncoding WebEncoding ExternalContactInfoId ContactInfoSystem Gecos ExternalAuthId AuthSystem HomePhone WorkPhone MobilePhone PagerPhone Address1 Address2 City State Zip Country Timezone ); $m->callback( CallbackName => 'UpdateLogic', fields => \@fields, results => \@results, UserObj => $UserObj, ARGSRef => \%ARGS, ); push @results, UpdateRecordObject ( AttributesRef => \@fields, Object => $UserObj, ARGSRef => \%ARGS, ); push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $UserObj ); # Deal with special fields: Privileged, Enabled, and Password if ( $SetPrivileged and $Privileged != $UserObj->Privileged ) { my ($code, $msg) = $UserObj->SetPrivileged( $Privileged ); push @results, loc('Privileged status: [_1]', loc_fuzzy($msg)); } my %password_cond = $UserObj->CurrentUserRequireToSetPassword; if (defined $Pass1 && length $Pass1 ) { my ($status, $msg) = $UserObj->SafeSetPassword( Current => $CurrentPass, New => $Pass1, Confirmation => $Pass2, ); push @results, loc("Password: [_1]", $msg); } } MaybeRedirectForResults( Actions => \@results, ); <%ARGS> $id => $session{'CurrentUser'}->Id $Name => undef $Comments => undef $Signature => undef $EmailAddress => undef $FreeformContactInfo => undef $Organization => undef $RealName => undef $NickName => undef $Privileged => undef $SetPrivileged => undef $Enabled => undef $SetEnabled => undef $Lang => undef $EmailEncoding => undef $WebEncoding => undef $ExternalContactInfoId => undef $ContactInfoSystem => undef $Gecos => undef $ExternalAuthId => undef $AuthSystem => undef $HomePhone => undef $WorkPhone => undef $MobilePhone => undef $PagerPhone => undef $Address1 => undef $Address2 => undef $City => undef $State => undef $Zip => undef $Country => undef $CurrentPass => undef $Pass1 => undef $Pass2 => undef $Create=> undef rt-4.0.19/share/html/NoAuth/0000775000175000017500000000000012262650742014516 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/0000775000175000017500000000000012262650742016250 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/0000775000175000017500000000000012262650742020054 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/LICENSE.html0000664000175000017500000020743212262650742022034 0ustar chmrrchmrr License - CKEditor

    Software License Agreement

    CKEditor™ - The text editor for Internet™ - http://ckeditor.com
    Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

    Licensed under the terms of any of the following licenses at your choice:

    You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "LEGAL" in your version of this software, indicating your license choice. In any case, your choice will not restrict any recipient of your version of this software to use, reproduce, modify and distribute this software under any of the above licenses.

    Sources of Intellectual Property Included in CKEditor

    Where not otherwise indicated, all CKEditor content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, CKEditor will incorporate work done by developers outside of CKSource with their express permission.

    YUI Test: At _source/tests/yuitest.js can be found part of the source code of YUI, which is licensed under the terms of the BSD License. YUI is Copyright © 2008, Yahoo! Inc.

    Trademarks

    CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.

    rt-4.0.19/share/html/NoAuth/RichText/ckeditor/adapters/0000775000175000017500000000000012262650742021657 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/adapters/jquery.js0000664000175000017500000000475012262650742023542 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){CKEDITOR.config.jqueryOverrideVal=typeof CKEDITOR.config.jqueryOverrideVal=='undefined'?true:CKEDITOR.config.jqueryOverrideVal;var a=window.jQuery;if(typeof a=='undefined')return;a.extend(a.fn,{ckeditorGet:function(){var b=this.eq(0).data('ckeditorInstance');if(!b)throw 'CKEditor not yet initialized, use ckeditor() with callback.';return b;},ckeditor:function(b,c){if(!CKEDITOR.env.isCompatible)return this;if(!a.isFunction(b)){var d=c;c=b;b=d;}c=c||{};this.filter('textarea, div, p').each(function(){var e=a(this),f=e.data('ckeditorInstance'),g=e.data('_ckeditorInstanceLock'),h=this;if(f&&!g){if(b)b.apply(f,[this]);}else if(!g){if(c.autoUpdateElement||typeof c.autoUpdateElement=='undefined'&&CKEDITOR.config.autoUpdateElement)c.autoUpdateElementJquery=true;c.autoUpdateElement=false;e.data('_ckeditorInstanceLock',true);f=CKEDITOR.replace(h,c);e.data('ckeditorInstance',f);f.on('instanceReady',function(i){var j=i.editor;setTimeout(function(){if(!j.element){setTimeout(arguments.callee,100);return;}i.removeListener('instanceReady',this.callee);j.on('dataReady',function(){e.trigger('setData.ckeditor',[j]);});j.on('getData',function(l){e.trigger('getData.ckeditor',[j,l.data]);},999);j.on('destroy',function(){e.trigger('destroy.ckeditor',[j]);});if(j.config.autoUpdateElementJquery&&e.is('textarea')&&e.parents('form').length){var k=function(){e.ckeditor(function(){j.updateElement();});};e.parents('form').submit(k);e.parents('form').bind('form-pre-serialize',k);e.bind('destroy.ckeditor',function(){e.parents('form').unbind('submit',k);e.parents('form').unbind('form-pre-serialize',k);});}j.on('destroy',function(){e.data('ckeditorInstance',null);});e.data('_ckeditorInstanceLock',null);e.trigger('instanceReady.ckeditor',[j]);if(b)b.apply(j,[h]);},0);},null,null,9999);}else CKEDITOR.on('instanceReady',function(i){var j=i.editor;setTimeout(function(){if(!j.element){setTimeout(arguments.callee,100);return;}if(j.element.$==h)if(b)b.apply(j,[h]);},0);},null,null,9999);});return this;}});if(CKEDITOR.config.jqueryOverrideVal)a.fn.val=CKEDITOR.tools.override(a.fn.val,function(b){return function(c,d){var e=typeof c!='undefined',f;this.each(function(){var g=a(this),h=g.data('ckeditorInstance');if(!d&&g.is('textarea')&&h){if(e)h.setData(c);else{f=h.getData();return null;}}else if(e)b.call(g,c);else{f=b.call(g);return null;}return true;});return e?this:f;};});})(); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/0000775000175000017500000000000012262650742021535 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/tabletools/0000775000175000017500000000000012262650742023705 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/tabletools/dialogs/0000775000175000017500000000000012262650742025327 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/tabletools/dialogs/tableCell.js0000664000175000017500000001563012262650742027561 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('cellProperties',function(a){var b=a.lang.table,c=b.cell,d=a.lang.common,e=CKEDITOR.dialog.validate,f=/^(\d+(?:\.\d+)?)(px|%)$/,g=/^(\d+(?:\.\d+)?)px$/,h=CKEDITOR.tools.bind,i={type:'html',html:' '},j=a.lang.dir=='rtl';function k(l,m){var n=function(){var r=this;p(r);m(r,r._.parentDialog);r._.parentDialog.changeFocus();},o=function(){p(this);this._.parentDialog.changeFocus();},p=function(r){r.removeListener('ok',n);r.removeListener('cancel',o);},q=function(r){r.on('ok',n);r.on('cancel',o);};a.execCommand(l);if(a._.storedDialogs.colordialog)q(a._.storedDialogs.colordialog);else CKEDITOR.on('dialogDefinition',function(r){if(r.data.name!=l)return;var s=r.data.definition;r.removeListener();s.onLoad=CKEDITOR.tools.override(s.onLoad,function(t){return function(){q(this);s.onLoad=t;if(typeof t=='function')t.call(this);};});});};return{title:c.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?450:410,minHeight:CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?230:220,contents:[{id:'info',label:c.title,accessKey:'I',elements:[{type:'hbox',widths:['40%','5%','40%'],children:[{type:'vbox',padding:0,children:[{type:'hbox',widths:['70%','30%'],children:[{type:'text',id:'width',width:'100px',label:d.width,validate:e.number(c.invalidWidth),onLoad:function(){var l=this.getDialog().getContentElement('info','widthType'),m=l.getElement(),n=this.getInputElement(),o=n.getAttribute('aria-labelledby');n.setAttribute('aria-labelledby',[o,m.$.id].join(' '));},setup:function(l){var m=parseInt(l.getAttribute('width'),10),n=parseInt(l.getStyle('width'),10);!isNaN(m)&&this.setValue(m);!isNaN(n)&&this.setValue(n);},commit:function(l){var m=parseInt(this.getValue(),10),n=this.getDialog().getValueOf('info','widthType');if(!isNaN(m))l.setStyle('width',m+n);else l.removeStyle('width');l.removeAttribute('width');},'default':''},{type:'select',id:'widthType',label:a.lang.table.widthUnit,labelStyle:'visibility:hidden','default':'px',items:[[b.widthPx,'px'],[b.widthPc,'%']],setup:function(l){var m=f.exec(l.getStyle('width')||l.getAttribute('width'));if(m)this.setValue(m[2]);}}]},{type:'hbox',widths:['70%','30%'],children:[{type:'text',id:'height',label:d.height,width:'100px','default':'',validate:e.number(c.invalidHeight),onLoad:function(){var l=this.getDialog().getContentElement('info','htmlHeightType'),m=l.getElement(),n=this.getInputElement(),o=n.getAttribute('aria-labelledby');n.setAttribute('aria-labelledby',[o,m.$.id].join(' '));},setup:function(l){var m=parseInt(l.getAttribute('height'),10),n=parseInt(l.getStyle('height'),10); !isNaN(m)&&this.setValue(m);!isNaN(n)&&this.setValue(n);},commit:function(l){var m=parseInt(this.getValue(),10);if(!isNaN(m))l.setStyle('height',CKEDITOR.tools.cssLength(m));else l.removeStyle('height');l.removeAttribute('height');}},{id:'htmlHeightType',type:'html',html:'
    '+b.widthPx}]},i,{type:'select',id:'wordWrap',label:c.wordWrap,'default':'yes',items:[[c.yes,'yes'],[c.no,'no']],setup:function(l){var m=l.getAttribute('noWrap'),n=l.getStyle('white-space');if(n=='nowrap'||m)this.setValue('no');},commit:function(l){if(this.getValue()=='no')l.setStyle('white-space','nowrap');else l.removeStyle('white-space');l.removeAttribute('noWrap');}},i,{type:'select',id:'hAlign',label:c.hAlign,'default':'',items:[[d.notSet,''],[d.alignLeft,'left'],[d.alignCenter,'center'],[d.alignRight,'right']],setup:function(l){var m=l.getAttribute('align'),n=l.getStyle('text-align');this.setValue(n||m||'');},commit:function(l){var m=this.getValue();if(m)l.setStyle('text-align',m);else l.removeStyle('text-align');l.removeAttribute('align');}},{type:'select',id:'vAlign',label:c.vAlign,'default':'',items:[[d.notSet,''],[d.alignTop,'top'],[d.alignMiddle,'middle'],[d.alignBottom,'bottom'],[c.alignBaseline,'baseline']],setup:function(l){var m=l.getAttribute('vAlign'),n=l.getStyle('vertical-align');switch(n){case 'top':case 'middle':case 'bottom':case 'baseline':break;default:n='';}this.setValue(n||m||'');},commit:function(l){var m=this.getValue();if(m)l.setStyle('vertical-align',m);else l.removeStyle('vertical-align');l.removeAttribute('vAlign');}}]},i,{type:'vbox',padding:0,children:[{type:'select',id:'cellType',label:c.cellType,'default':'td',items:[[c.data,'td'],[c.header,'th']],setup:function(l){this.setValue(l.getName());},commit:function(l){l.renameNode(this.getValue());}},i,{type:'text',id:'rowSpan',label:c.rowSpan,'default':'',validate:e.integer(c.invalidRowSpan),setup:function(l){var m=parseInt(l.getAttribute('rowSpan'),10);if(m&&m!=1)this.setValue(m);},commit:function(l){var m=parseInt(this.getValue(),10);if(m&&m!=1)l.setAttribute('rowSpan',this.getValue());else l.removeAttribute('rowSpan');}},{type:'text',id:'colSpan',label:c.colSpan,'default':'',validate:e.integer(c.invalidColSpan),setup:function(l){var m=parseInt(l.getAttribute('colSpan'),10);if(m&&m!=1)this.setValue(m);},commit:function(l){var m=parseInt(this.getValue(),10);if(m&&m!=1)l.setAttribute('colSpan',this.getValue());else l.removeAttribute('colSpan');}},i,{type:'hbox',padding:0,widths:['60%','40%'],children:[{type:'text',id:'bgColor',label:c.bgColor,'default':'',setup:function(l){var m=l.getAttribute('bgColor'),n=l.getStyle('background-color'); this.setValue(n||m);},commit:function(l){var m=this.getValue();if(m)l.setStyle('background-color',this.getValue());else l.removeStyle('background-color');l.removeAttribute('bgColor');}},{type:'button',id:'bgColorChoose','class':'colorChooser',label:c.chooseColor,onLoad:function(){this.getElement().getParent().setStyle('vertical-align','bottom');},onClick:function(){var l=this;k('colordialog',function(m){l.getDialog().getContentElement('info','bgColor').setValue(m.getContentElement('picker','selectedColor').getValue());});}}]},i,{type:'hbox',padding:0,widths:['60%','40%'],children:[{type:'text',id:'borderColor',label:c.borderColor,'default':'',setup:function(l){var m=l.getAttribute('borderColor'),n=l.getStyle('border-color');this.setValue(n||m);},commit:function(l){var m=this.getValue();if(m)l.setStyle('border-color',this.getValue());else l.removeStyle('border-color');l.removeAttribute('borderColor');}},{type:'button',id:'borderColorChoose','class':'colorChooser',label:c.chooseColor,style:(j?'margin-right':'margin-left')+': 10px',onLoad:function(){this.getElement().getParent().setStyle('vertical-align','bottom');},onClick:function(){var l=this;k('colordialog',function(m){l.getDialog().getContentElement('info','borderColor').setValue(m.getContentElement('picker','selectedColor').getValue());});}}]}]}]}]}],onShow:function(){var l=this;l.cells=CKEDITOR.plugins.tabletools.getSelectedCells(l._.editor.getSelection());l.setupContent(l.cells[0]);},onOk:function(){var p=this;var l=p._.editor.getSelection(),m=l.createBookmarks(),n=p.cells;for(var o=0;o7)h.concat([[g.armenian,'armenian'],[g.decimalLeadingZero,'decimal-leading-zero'],[g.georgian,'georgian'],[g.lowerGreek,'lower-greek']]);return{title:g.numberedTitle,minWidth:300,minHeight:50,contents:[{id:'info',accessKey:'I',elements:[{type:'hbox',widths:['25%','75%'],children:[{label:g.start,type:'text',id:'start',validate:CKEDITOR.dialog.validate.integer(g.validateStartNumber),setup:function(i){var j=i.getFirst(b).getAttribute('value')||i.getAttribute('start')||1;j&&this.setValue(j);},commit:function(i){var j=i.getFirst(b),k=j.getAttribute('value')||i.getAttribute('start')||1;i.getFirst(b).removeAttribute('value');var l=parseInt(this.getValue(),10);if(isNaN(l))i.removeAttribute('start');else i.setAttribute('start',l);var m=j,n=k,o=isNaN(l)?1:l;while((m=m.getNext(b))&&n++){if(m.getAttribute('value')==n)m.setAttribute('value',o+n-k);}}},{type:'select',label:g.type,id:'type',style:'width: 100%;',items:h,setup:function(i){var j=i.getStyle('list-style-type')||c[i.getAttribute('type')]||i.getAttribute('type')||'';this.setValue(j);},commit:function(i){var j=this.getValue();if(j)i.setStyle('list-style-type',j);else i.removeStyle('list-style-type');}}]}]}],onShow:function(){var i=this.getParentEditor(),j=a(i,'ol'); j&&this.setupContent(j);},onOk:function(){var i=this.getParentEditor(),j=a(i,'ol');j&&this.commitContent(j);}};}};CKEDITOR.dialog.add('numberedListStyle',function(e){return d(e,'numberedListStyle');});CKEDITOR.dialog.add('bulletedListStyle',function(e){return d(e,'bulletedListStyle');});})(); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/templates/0000775000175000017500000000000012262650742023533 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/templates/templates/0000775000175000017500000000000012262650742025531 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/templates/templates/default.js0000664000175000017500000000266112262650742027520 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.addTemplates('default',{imagesPath:CKEDITOR.getUrl(CKEDITOR.plugins.getPath('templates')+'templates/images/'),templates:[{title:'Image and Title',image:'template1.gif',description:'One main image with a title and text that surround the image.',html:'

    Type the title here

    Type the text here

    '},{title:'Strange Template',image:'template2.gif',description:'A template that defines two colums, each one with a title, and some text.',html:'

    Title 1

    Title 2

    Text 1Text 2

    More text goes here.

    '},{title:'Text and Table',image:'template3.gif',description:'A title with some text and a table.',html:'

    Title goes here

    Table title
       
       
       

    Type the text here

    '}]}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images/0000775000175000017500000000000012262650742026776 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images/template2.gif0000664000175000017500000000051512262650742031363 0ustar chmrrchmrrGIF89adF!,dF ޼Hbʪh r-Γz j~"hLƐ JJALW{ ܃=c#9gHhpY'vՖH7 3JzTx:gJ JgJz+[d ;j%;l$l+}]R ]J4Nr}Α>4 /ގI_nn?]N 2 NÈ j C7#HڕTw\JrZ| 3̙ ;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images/template3.gif0000664000175000017500000000064612262650742031371 0ustar chmrrchmrrGIF89adF!,dF ޼Hbʪh r-Γz j~"hLƐ JԪ0ܮ> l׸ gtm 2Th08rxrפ!xy99#Gg aJ"j9z*)BKk :++{zXL4]M-mL>N ^-MmNQzm^ܞM]
    '),n='';if(k.image&&l)n+='';n+='';m.getFirst().setHtml(n);m.on('click',function(){e(k.html);});return m;};function e(k){var l=CKEDITOR.dialog.getCurrent(),m=l.getValueOf('selectTpl','chkInsertOpt');if(m){b.on('contentDom',function(n){n.removeListener();l.hide();var o=new CKEDITOR.dom.range(b.document);o.moveToElementEditStart(b.document.getBody());o.select(1);setTimeout(function(){b.fire('saveSnapshot');},0);});b.fire('saveSnapshot');b.setData(k);}else{b.insertHtml(k);l.hide();}};function f(k){var l=k.data.getTarget(),m=g.equals(l);if(m||g.contains(l)){var n=k.data.getKeystroke(),o=g.getElementsByTag('a'),p;if(o){if(m)p=o.getItem(0);else switch(n){case 40:p=l.getNext();break;case 38:p=l.getPrevious();break;case 13:case 32:l.fire('click');}if(p){p.focus();k.data.preventDefault();}}}};CKEDITOR.skins.load(b,'templates');var g,h='cke_tpl_list_label_'+CKEDITOR.tools.getNextNumber(),i=b.lang.templates,j=b.config;return{title:b.lang.templates.title,minWidth:CKEDITOR.env.ie?440:400,minHeight:340,contents:[{id:'selectTpl',label:i.title,elements:[{type:'vbox',padding:5,children:[{id:'selectTplText',type:'html',html:''+i.selectPromptMsg+''},{id:'templatesList',type:'html',focus:true,html:'
    '+'
    '+'
    '+''+i.options+''},{id:'chkInsertOpt',type:'checkbox',label:i.insertOption,'default':j.templates_replaceContent}]}]}],buttons:[CKEDITOR.dialog.cancelButton],onShow:function(){var k=this.getContentElement('selectTpl','templatesList'); g=k.getElement();CKEDITOR.loadTemplates(j.templates_files,function(){var l=(j.templates||'default').split(',');if(l.length){c(g,l);k.focus();}else g.setHtml('
    '+i.emptyListMsg+''+'
    ');});this._.element.on('keydown',f);},onHide:function(){this._.element.removeListener('keydown',f);}};});})(); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/pagebreak/0000775000175000017500000000000012262650742023456 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/pagebreak/images/0000775000175000017500000000000012262650742024723 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/pagebreak/images/pagebreak.gif0000664000175000017500000000006612262650742027335 0ustar chmrrchmrrGIF89a!, Do\)A;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/about/0000775000175000017500000000000012262650742022647 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/about/dialogs/0000775000175000017500000000000012262650742024271 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/about/dialogs/logo_ckeditor.png0000664000175000017500000000530712262650742027630 0ustar chmrrchmrrPNG  IHDR=)PLTE&8<=\ dY%2颤72N[ju`cdҚ|jA\d6oz}~w"^֘SzP~Snyݽ6Ia$*T,sSVW.#UA尳UEIJ+-mpq ׯ~oi(_.7J*Wtg1FϐQ^y2\9Zwm7/-rggXAN.YCш1^1?c׽On1Ÿxc|0᥌.,Yyȗhmb<5 dXX0QcC"1\sdw> ~=99Gb46z5:~&6a }5(4xI}j{ SD=SS<}Moxa?سAu w1Z1.}pF/wҠ~ 8v_0́ѡɱcs ,vY (ƈI PǕ:6|sa΂QhP&y.Jm2nUE<ٸa3͙ˌ;]3;|Q"$3 ޕwy~GLѻ%H2Ud$2 _-fN4fѠ=]bOx~I ~ƍ+{xL,)2q@#[͒qMxf2Lƾ#^E-2%! R)$qY1;߅\1Bn ӏ $%Qouwej4,X>hLlǖyrA90xϺdH <}'޸@RԌUA*|c^h,D]A|[#& K^灊AXHu$g1{ F gF7ض1$~Êw5:CLnA4hS)Ay|q'ӓcUdXh޹^ |{jCS+]e*\j[ {/+=ڀxݳ aF6l9̱(*{m$m, #iUѠDF3>ұgY^*+1!˹|Em4+c+\ؠ(~4}è`OSAAD~mclPO"҄96lpoB⾯J{^ j1lPOcmR%%̵H4JHWc5V30عE"agQr\#4UhS=W=FڷE`H'a{x w{R\ɨD9ՍA}#lqPO㯰~ߵHGlzN^B >kAb4aeȈcذx߸9;H()PmdT9Sl̂ )ƭo;LD B5 Dina#faMRN=orgFcSk<P1k_-?Ox ul||stb! `'PWCYᑙM5qq Ws)22Ә (ȸV 0<y N}6bӦ4ԩ 4E?Lmޔ"(#IIkD1`&Fi Zۛ6;ᑸk}nBEVkZ3T5T6T7rrrbSwEiU0IENDB`rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/about/dialogs/about.js0000664000175000017500000000273512262650742025750 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('about',function(a){var b=a.lang.about;return{title:CKEDITOR.env.ie?b.dlgTitle:b.title,minWidth:390,minHeight:230,contents:[{id:'tab1',label:'',title:'',expand:true,padding:0,elements:[{type:'html',html:''+'
    '+''+'

    '+'CKEditor '+CKEDITOR.version+' (revision '+CKEDITOR.revision+')
    '+'http://ckeditor.com'+'

    '+'

    '+b.help.replace('$1',''+b.userGuide+'')+'

    '+'

    '+b.moreInfo+'
    '+'http://ckeditor.com/license'+'

    '+'

    '+b.copy.replace('$1','CKSource - Frederico Knabben')+'

    '+'
    '}]}],buttons:[CKEDITOR.dialog.cancelButton]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/wsc/0000775000175000017500000000000012262650742022331 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs/0000775000175000017500000000000012262650742023753 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs/ciframe.html0000664000175000017500000000205712262650742026253 0ustar chmrrchmrr

    rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs/wsc.js0000664000175000017500000000656612262650742025122 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('checkspell',function(a){var b=CKEDITOR.tools.getNextNumber(),c='cke_frame_'+b,d='cke_data_'+b,e='cke_error_'+b,f,g=document.location.protocol||'http:',h=a.lang.spellCheck.notAvailable,i='
    '+'',j=a.config.wsc_customLoaderScript||g+'//loader.webspellchecker.net/sproxy_fck/sproxy.php'+'?plugin=fck2'+'&customerid='+a.config.wsc_customerId+'&cmd=script&doc=wsc&schema=22';if(a.config.wsc_customLoaderScript)h+='

    '+a.lang.spellCheck.errorLoading.replace(/%s/g,a.config.wsc_customLoaderScript)+'

    ';function k(m,n){var o=0;return function(){if(typeof window.doSpell=='function'){if(typeof f!='undefined')window.clearInterval(f);l(m);}else if(o++==180)window._cancelOnError(n);};};window._cancelOnError=function(m){if(typeof window.WSC_Error=='undefined'){CKEDITOR.document.getById(c).setStyle('display','none');var n=CKEDITOR.document.getById(e);n.setStyle('display','block');n.setHtml(m||a.lang.spellCheck.notAvailable);}};function l(m){var n=new window._SP_FCK_LangCompare(),o=CKEDITOR.getUrl(a.plugins.wsc.path+'dialogs/'),p=o+'tmpFrameset.html';window.gFCKPluginName='wsc';n.setDefaulLangCode(a.config.defaultLanguage);window.doSpell({ctrl:d,lang:a.config.wsc_lang||n.getSPLangCode(a.langCode),intLang:a.config.wsc_uiLang||n.getSPLangCode(a.langCode),winType:c,onCancel:function(){m.hide();},onFinish:function(q){a.focus();m.getParentEditor().setData(q.value);m.hide();},staticFrame:p,framesetPath:p,iframePath:o+'ciframe.html',schemaURI:o+'wsc.css',userDictionaryName:a.config.wsc_userDictionaryName,customDictionaryName:a.config.wsc_customDictionaryIds&&a.config.wsc_customDictionaryIds.split(','),domainName:a.config.wsc_domainName});CKEDITOR.document.getById(e).setStyle('display','none');CKEDITOR.document.getById(c).setStyle('display','block');};return{title:a.config.wsc_dialogTitle||a.lang.spellCheck.title,minWidth:485,minHeight:380,buttons:[CKEDITOR.dialog.cancelButton],onShow:function(){var m=this.getContentElement('general','content').getElement();m.setHtml(i);m.getChild(2).setStyle('height',this._.contentSize.height+'px'); if(typeof window.doSpell!='function')CKEDITOR.document.getHead().append(CKEDITOR.document.createElement('script',{attributes:{type:'text/javascript',src:j}}));var n=a.getData();CKEDITOR.document.getById(d).setValue(n);f=window.setInterval(k(this,h),250);},onHide:function(){window.ooo=undefined;window.int_framsetLoaded=undefined;window.framesetLoaded=undefined;window.is_window_opened=false;},contents:[{id:'general',label:a.config.wsc_dialogTitle||a.lang.spellCheck.title,padding:0,elements:[{type:'html',id:'content',html:''}]}]};});CKEDITOR.dialog.on('resize',function(a){var b=a.data,c=b.dialog;if(c._.name=='checkspell'){var d=c.getContentElement('general','content').getElement(),e=d&&d.getChild(2);e&&e.setSize('height',b.height);e&&e.setSize('width',b.width);}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs/wsc.css0000664000175000017500000000174612262650742025271 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ html,body{background-color:transparent;margin:0;padding:0;}body{padding:10px;}body,td,input,select,textarea{font-size:11px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;}.midtext{padding:0;margin:10px;}.midtext p{padding:0;margin:10px;}.Button{border:#737357 1px solid;color:#3b3b1f;background-color:#c7c78f;}.PopupTabArea{color:#737357;background-color:#e3e3c7;}.PopupTitleBorder{border-bottom:#d5d59d 1px solid;}.PopupTabEmptyArea{padding-left:10px;border-bottom:#d5d59d 1px solid;}.PopupTab,.PopupTabSelected{border-right:#d5d59d 1px solid;border-top:#d5d59d 1px solid;border-left:#d5d59d 1px solid;padding:3px 5px 3px 5px;color:#737357;}.PopupTab{margin-top:1px;border-bottom:#d5d59d 1px solid;cursor:pointer;}.PopupTabSelected{font-weight:bold;cursor:default;padding-top:4px;border-bottom:#f1f1e3 1px solid;background-color:#f1f1e3;} rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs/tmpFrameset.html0000664000175000017500000000353312262650742027134 0ustar chmrrchmrr rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/find/0000775000175000017500000000000012262650742022455 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/find/dialogs/0000775000175000017500000000000012262650742024077 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/find/dialogs/find.js0000664000175000017500000002503512262650742025362 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){var a;function b(i){return i.type==CKEDITOR.NODE_TEXT&&i.getLength()>0&&(!a||!i.isReadOnly());};function c(i){return!(i.type==CKEDITOR.NODE_ELEMENT&&i.isBlockBoundary(CKEDITOR.tools.extend({},CKEDITOR.dtd.$empty,CKEDITOR.dtd.$nonEditable)));};var d=function(){var i=this;return{textNode:i.textNode,offset:i.offset,character:i.textNode?i.textNode.getText().charAt(i.offset):null,hitMatchBoundary:i._.matchBoundary};},e=['find','replace'],f=[['txtFindFind','txtFindReplace'],['txtFindCaseChk','txtReplaceCaseChk'],['txtFindWordChk','txtReplaceWordChk'],['txtFindCyclic','txtReplaceCyclic']];function g(i){var j,k,l,m;j=i==='find'?1:0;k=1-j;var n,o=f.length;for(n=0;n0){A.offset--;return d.call(A);}else if(z&&A.offsetA._.rangeLength)z.pop();return y;},moveNext:function(){var A=this;var y=A._.walker.next(),z=A._.cursors;if(y.hitMatchBoundary)A._.cursors=z=[];z.push(y);if(z.length>A._.rangeLength)z.shift();return y;},getEndCharacter:function(){var y=this._.cursors;if(y.length<1)return null;return y[y.length-1].character;},getNextCharacterRange:function(y){var z,A,B=this._.cursors;if((z=B[B.length-1])&&z.textNode)A=new l(n(z));else A=this._.walker;return new m(A,y);},getCursors:function(){return this._.cursors;}};function n(y,z){var A=new CKEDITOR.dom.range();A.setStart(y.textNode,z?y.offset:y.offset+1);A.setEndAt(i.document.getBody(),CKEDITOR.POSITION_BEFORE_END);return A;};function o(y){var z=new CKEDITOR.dom.range();z.setStartAt(i.document.getBody(),CKEDITOR.POSITION_AFTER_START);z.setEnd(y.textNode,y.offset);return z;};var p=0,q=1,r=2,s=function(y,z){var A=[-1];if(z)y=y.toLowerCase();for(var B=0;B0&&y.charAt(B)!=y.charAt(A[B+1]-1))A[B+1]=A[A[B+1]-1]+1;}this._={overlap:A,state:0,ignoreCase:!!z,pattern:y};};s.prototype={feedCharacter:function(y){var z=this;if(z._.ignoreCase)y=y.toLowerCase();for(;;){if(y==z._.pattern.charAt(z._.state)){z._.state++;if(z._.state==z._.pattern.length){z._.state=0;return r;}return q;}else if(!z._.state)return p;else z._.state=z._.overlap[z._.state];}return null;},reset:function(){this._.state=0;}};var t=/[.,"'?!;: \u0085\u00a0\u1680\u280e\u2028\u2029\u202f\u205f\u3000]/,u=function(y){if(!y)return true;var z=y.charCodeAt(0);return z>=9&&z<=13||z>=8192&&z<=8202||t.test(y);},v={searchRange:null,matchRange:null,find:function(y,z,A,B,C,D){var O=this;if(!O.matchRange)O.matchRange=new m(new l(O.searchRange),y.length); else{O.matchRange.removeHighlight();O.matchRange=O.matchRange.getNextCharacterRange(y.length);}var E=new s(y,!z),F=p,G='%';while(G!==null){O.matchRange.moveNext();while(G=O.matchRange.getEndCharacter()){F=E.feedCharacter(G);if(F==r)break;if(O.matchRange.moveNext().hitMatchBoundary)E.reset();}if(F==r){if(A){var H=O.matchRange.getCursors(),I=H[H.length-1],J=H[0],K=o(J),L=n(I);K.trim();L.trim();var M=new l(K,true),N=new l(L,true);if(!(u(M.back().character)&&u(N.next().character)))continue;}O.matchRange.setMatched();if(C!==false)O.matchRange.highlight();return true;}}O.matchRange.clearMatched();O.matchRange.removeHighlight();if(B&&!D){O.searchRange=w(1);O.matchRange=null;return arguments.callee.apply(O,Array.prototype.slice.call(arguments).concat([true]));}return false;},replaceCounter:0,replace:function(y,z,A,B,C,D,E){var J=this;a=1;var F=0;if(J.matchRange&&J.matchRange.isMatched()&&!J.matchRange._.isReplaced&&!J.matchRange.isReadOnly()){J.matchRange.removeHighlight();var G=J.matchRange.toDomRange(),H=i.document.createText(A);if(!E){var I=i.getSelection();I.selectRanges([G]);i.fire('saveSnapshot');}G.deleteContents();G.insertNode(H);if(!E){I.selectRanges([G]);i.fire('saveSnapshot');}J.matchRange.updateFromDomRange(G);if(!E)J.matchRange.highlight();J.matchRange._.isReplaced=true;J.replaceCounter++;F=1;}else F=J.find(z,B,C,D,!E);a=0;return F;}};function w(y){var z,A=i.getSelection(),B=i.document.getBody();if(A&&!y){z=A.getRanges()[0].clone();z.collapse(true);}else{z=new CKEDITOR.dom.range();z.setStartAt(B,CKEDITOR.POSITION_AFTER_START);}z.setEndAt(B,CKEDITOR.POSITION_BEFORE_END);return z;};var x=i.lang.findAndReplace;return{title:x.title,resizable:CKEDITOR.DIALOG_RESIZE_NONE,minWidth:350,minHeight:170,buttons:[CKEDITOR.dialog.cancelButton],contents:[{id:'find',label:x.find,title:x.find,accessKey:'',elements:[{type:'hbox',widths:['230px','90px'],children:[{type:'text',id:'txtFindFind',label:x.findWhat,isChanged:false,labelLayout:'horizontal',accessKey:'F'},{type:'button',id:'btnFind',align:'left',style:'width:100%',label:x.find,onClick:function(){var y=this.getDialog();if(!v.find(y.getValueOf('find','txtFindFind'),y.getValueOf('find','txtFindCaseChk'),y.getValueOf('find','txtFindWordChk'),y.getValueOf('find','txtFindCyclic')))alert(x.notFoundMsg);}}]},{type:'fieldset',label:CKEDITOR.tools.htmlEncode(x.findOptions),style:'margin-top:29px',children:[{type:'vbox',padding:0,children:[{type:'checkbox',id:'txtFindCaseChk',isChanged:false,label:x.matchCase},{type:'checkbox',id:'txtFindWordChk',isChanged:false,label:x.matchWord},{type:'checkbox',id:'txtFindCyclic',isChanged:false,'default':true,label:x.matchCyclic}]}]}]},{id:'replace',label:x.replace,accessKey:'M',elements:[{type:'hbox',widths:['230px','90px'],children:[{type:'text',id:'txtFindReplace',label:x.findWhat,isChanged:false,labelLayout:'horizontal',accessKey:'F'},{type:'button',id:'btnFindReplace',align:'left',style:'width:100%',label:x.replace,onClick:function(){var y=this.getDialog(); if(!v.replace(y,y.getValueOf('replace','txtFindReplace'),y.getValueOf('replace','txtReplace'),y.getValueOf('replace','txtReplaceCaseChk'),y.getValueOf('replace','txtReplaceWordChk'),y.getValueOf('replace','txtReplaceCyclic')))alert(x.notFoundMsg);}}]},{type:'hbox',widths:['230px','90px'],children:[{type:'text',id:'txtReplace',label:x.replaceWith,isChanged:false,labelLayout:'horizontal',accessKey:'R'},{type:'button',id:'btnReplaceAll',align:'left',style:'width:100%',label:x.replaceAll,isChanged:false,onClick:function(){var y=this.getDialog(),z;v.replaceCounter=0;v.searchRange=w(1);if(v.matchRange){v.matchRange.removeHighlight();v.matchRange=null;}i.fire('saveSnapshot');while(v.replace(y,y.getValueOf('replace','txtFindReplace'),y.getValueOf('replace','txtReplace'),y.getValueOf('replace','txtReplaceCaseChk'),y.getValueOf('replace','txtReplaceWordChk'),false,true)){}if(v.replaceCounter){alert(x.replaceSuccessMsg.replace(/%1/,v.replaceCounter));i.fire('saveSnapshot');}else alert(x.notFoundMsg);}}]},{type:'fieldset',label:CKEDITOR.tools.htmlEncode(x.findOptions),children:[{type:'vbox',padding:0,children:[{type:'checkbox',id:'txtReplaceCaseChk',isChanged:false,label:x.matchCase},{type:'checkbox',id:'txtReplaceWordChk',isChanged:false,label:x.matchWord},{type:'checkbox',id:'txtReplaceCyclic',isChanged:false,'default':true,label:x.matchCyclic}]}]}]}],onLoad:function(){var y=this,z,A,B=0;this.on('hide',function(){B=0;});this.on('show',function(){B=1;});this.selectPage=CKEDITOR.tools.override(this.selectPage,function(C){return function(D){C.call(y,D);var E=y._.tabs[D],F,G,H;G=D==='find'?'txtFindFind':'txtFindReplace';H=D==='find'?'txtFindWordChk':'txtReplaceWordChk';z=y.getContentElement(D,G);A=y.getContentElement(D,H);if(!E.initialized){F=CKEDITOR.document.getById(z._.inputId);E.initialized=true;}if(B)g.call(this,D);};});},onShow:function(){var B=this;v.searchRange=w();var y=B.getParentEditor().getSelection().getSelectedText(),z=j=='find'?'txtFindFind':'txtFindReplace',A=B.getContentElement(j,z);A.setValue(y);A.select();B.selectPage(j);B[(j=='find'&&B._.editor.readOnly?'hide':'show')+'Page']('replace');},onHide:function(){var y;if(v.matchRange&&v.matchRange.isMatched()){v.matchRange.removeHighlight();i.focus();y=v.matchRange.toDomRange();if(y)i.getSelection().selectRanges([y]);}delete v.matchRange;},onFocus:function(){if(j=='replace')return this.getContentElement('replace','txtFindReplace');else return this.getContentElement('find','txtFindFind');}};};CKEDITOR.dialog.add('find',function(i){return h(i,'find'); });CKEDITOR.dialog.add('replace',function(i){return h(i,'replace');});})(); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/iframe/0000775000175000017500000000000012262650742023000 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/iframe/images/0000775000175000017500000000000012262650742024245 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/iframe/images/placeholder.png0000664000175000017500000000070112262650742027233 0ustar chmrrchmrrPNG  IHDR;M` pHYs   cHRMz%u0`:o_FGIDATxm0@.@F 0B!<~pBUJ>~$9{ >[dL3#Gx( ZZQߍQ2}/A.hJݍJ&%i69 H]K>B,[3xOH ki8ʔs9a 1xd^sp\bkӉ˒:Ex8$ޯY1ה^&ę88RukČM:^IENDB`rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/iframe/dialogs/0000775000175000017500000000000012262650742024422 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/iframe/dialogs/iframe.js0000664000175000017500000000555712262650742026237 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){var a={scrolling:{'true':'yes','false':'no'},frameborder:{'true':'1','false':'0'}};function b(d){var g=this;var e=g instanceof CKEDITOR.ui.dialog.checkbox;if(d.hasAttribute(g.id)){var f=d.getAttribute(g.id);if(e)g.setValue(a[g.id]['true']==f.toLowerCase());else g.setValue(f);}};function c(d){var h=this;var e=h.getValue()==='',f=h instanceof CKEDITOR.ui.dialog.checkbox,g=h.getValue();if(e)d.removeAttribute(h.att||h.id);else if(f)d.setAttribute(h.id,a[h.id][g]);else d.setAttribute(h.att||h.id,g);};CKEDITOR.dialog.add('iframe',function(d){var e=d.lang.iframe,f=d.lang.common,g=d.plugins.dialogadvtab;return{title:e.title,minWidth:350,minHeight:260,onShow:function(){var j=this;j.fakeImage=j.iframeNode=null;var h=j.getSelectedElement();if(h&&h.data('cke-real-element-type')&&h.data('cke-real-element-type')=='iframe'){j.fakeImage=h;var i=d.restoreRealElement(h);j.iframeNode=i;j.setupContent(i);}},onOk:function(){var l=this;var h;if(!l.fakeImage)h=new CKEDITOR.dom.element('iframe');else h=l.iframeNode;var i={},j={};l.commitContent(h,i,j);var k=d.createFakeElement(h,'cke_iframe','iframe',true);k.setAttributes(j);k.setStyles(i);if(l.fakeImage){k.replace(l.fakeImage);d.getSelection().selectElement(k);}else d.insertElement(k);},contents:[{id:'info',label:f.generalTab,accessKey:'I',elements:[{type:'vbox',padding:0,children:[{id:'src',type:'text',label:f.url,required:true,validate:CKEDITOR.dialog.validate.notEmpty(e.noUrl),setup:b,commit:c}]},{type:'hbox',children:[{id:'width',type:'text',style:'width:100%',labelLayout:'vertical',label:f.width,validate:CKEDITOR.dialog.validate.htmlLength(f.invalidHtmlLength.replace('%1',f.width)),setup:b,commit:c},{id:'height',type:'text',style:'width:100%',labelLayout:'vertical',label:f.height,validate:CKEDITOR.dialog.validate.htmlLength(f.invalidHtmlLength.replace('%1',f.height)),setup:b,commit:c},{id:'align',type:'select','default':'',items:[[f.notSet,''],[f.alignLeft,'left'],[f.alignRight,'right'],[f.alignTop,'top'],[f.alignMiddle,'middle'],[f.alignBottom,'bottom']],style:'width:100%',labelLayout:'vertical',label:f.align,setup:function(h,i){b.apply(this,arguments);if(i){var j=i.getAttribute('align');this.setValue(j&&j.toLowerCase()||'');}},commit:function(h,i,j){c.apply(this,arguments);if(this.getValue())j.align=this.getValue();}}]},{type:'hbox',widths:['50%','50%'],children:[{id:'scrolling',type:'checkbox',label:e.scrolling,setup:b,commit:c},{id:'frameborder',type:'checkbox',label:e.border,setup:b,commit:c}]},{type:'hbox',widths:['50%','50%'],children:[{id:'name',type:'text',label:f.name,setup:b,commit:c},{id:'title',type:'text',label:f.advisoryTitle,setup:b,commit:c}]},{id:'longdesc',type:'text',label:f.longDescr,setup:b,commit:c}]},g&&g.createAdvancedTab(d,{id:1,classes:1,styles:1})]}; });})(); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/bbcode/0000775000175000017500000000000012262650742022753 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/bbcode/plugin.js0000664000175000017500000002343012262650742024611 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){CKEDITOR.on('dialogDefinition',function(r){var s,t=r.data.name,u=r.data.definition;if(t=='link'){u.removeContents('target');u.removeContents('upload');u.removeContents('advanced');s=u.getContents('info');s.remove('emailSubject');s.remove('emailBody');}else if(t=='image'){u.removeContents('advanced');s=u.getContents('Link');s.remove('cmbTarget');s=u.getContents('info');s.remove('txtAlt');s.remove('basic');}});var a={b:'strong',u:'u',i:'em',color:'span',size:'span',quote:'blockquote',code:'code',url:'a',email:'span',img:'span','*':'li',list:'ol'},b={strong:'b',b:'b',u:'u',em:'i',i:'i',code:'code',li:'*'},c={strong:'b',em:'i',u:'u',li:'*',ul:'list',ol:'list',code:'code',a:'link',img:'img',blockquote:'quote'},d={color:'color',size:'font-size'},e={url:'href',email:'mailhref',quote:'cite',list:'listType'},f=CKEDITOR.dtd,g=CKEDITOR.tools.extend({table:1},f.$block,f.$listItem,f.$tableContent,f.$list),h=/\s*(?:;\s*|$)/;function i(r){var s='';for(var t in r){var u=r[t],v=(t+':'+u).replace(h,';');s+=v;}return s;};function j(r){var s={};(r||'').replace(/"/g,'"').replace(/\s*([^ :;]+)\s*:\s*([^;]+)\s*(?=;|$)/g,function(t,u,v){s[u.toLowerCase()]=v;});return s;};function k(r){return r.replace(/(?:rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\))/gi,function(s,t,u,v){t=parseInt(t,10).toString(16);u=parseInt(u,10).toString(16);v=parseInt(v,10).toString(16);var w=[t,u,v];for(var x=0;x:(',angel:'o:)',cool:'8-)',devil:'>:-)',crying:';(',kiss:':-*'},m={},n=[];for(var o in l){m[l[o]]=o;n.push(l[o].replace(/\(|\)|\:|\/|\*|\-|\|/g,function(r){return '\\'+r;}));}n=new RegExp(n.join('|'),'g');var p=(function(){var r=[],s={nbsp:'\xa0',shy:'­',gt:'>',lt:'<'};for(var t in s)r.push(t);r=new RegExp('&('+r.join('|')+');','g');return function(u){return u.replace(r,function(v,w){return s[w];});};})();CKEDITOR.BBCodeParser=function(){this._={bbcPartsRegex:/(?:\[([^\/\]=]*?)(?:=([^\]]*?))?\])|(?:\[\/([a-z]{1,16})\])/ig};};CKEDITOR.BBCodeParser.prototype={parse:function(r){var B=this;var s,t,u=0;while(s=B._.bbcPartsRegex.exec(r)){var v=s.index;if(v>u){var w=r.substring(u,v);B.onText(w,1);}u=B._.bbcPartsRegex.lastIndex;t=(s[1]||s[3]||'').toLowerCase();if(t&&!a[t]){B.onText(s[0]);continue;}if(s[1]){var x=a[t],y={},z={},A=s[2];if(A){if(t=='list')if(!isNaN(A))A='decimal';else if(/^[a-z]+$/.test(A))A='lower-alpha'; else if(/^[A-Z]+$/.test(A))A='upper-alpha';if(d[t]){if(t=='size')A+='%';z[d[t]]=A;y.style=i(z);}else if(e[t])y[e[t]]=A;}if(t=='email'||t=='img')y.bbcode=t;B.onTagOpen(x,y,CKEDITOR.dtd.$empty[x]);}else if(s[3])B.onTagClose(a[t]);}if(r.length>u)B.onText(r.substring(u,r.length),1);}};CKEDITOR.htmlParser.fragment.fromBBCode=function(r){var s=new CKEDITOR.BBCodeParser(),t=new CKEDITOR.htmlParser.fragment(),u=[],v=0,w=t,x;function y(D){if(u.length>0)for(var E=0;E0&&w.children[F-1],H=!G&&q.getRule(c[w.name],'breakAfterOpen'),I=G&&G.type==CKEDITOR.NODE_ELEMENT&&q.getRule(c[G.name],'breakAfterClose'),J=D&&q.getRule(c[D],E?'breakBeforeClose':'breakBeforeOpen');if(v&&(H||I||J))v--;if(v&&D in g)v++;while(v&&v--)w.children.push(G=new CKEDITOR.htmlParser.element('br'));};function A(D,E){z(D.name,1);E=E||w||t;var F=E.children.length,G=F>0&&E.children[F-1]||null;D.previous=G;D.parent=E;E.children.push(D);if(D.returnPoint){w=D.returnPoint;delete D.returnPoint;}};s.onTagOpen=function(D,E,F){var G=new CKEDITOR.htmlParser.element(D,E);if(CKEDITOR.dtd.$removeEmpty[D]){u.push(G);return;}var H=w.name,I=H&&(CKEDITOR.dtd[H]||(w._.isBlockLike?CKEDITOR.dtd.div:CKEDITOR.dtd.span));if(I&&!I[D]){var J=false,K;if(D==H)A(w,w.parent);else if(D in CKEDITOR.dtd.$listItem){s.onTagOpen('ul',{});K=w;J=true;}else{A(w,w.parent);u.unshift(w);J=true;}if(K)w=K;else w=w.returnPoint||w.parent;if(J){s.onTagOpen.apply(this,arguments);return;}}y(D);z(D);G.parent=w;G.returnPoint=x;x=0;if(G.isEmpty)A(G);else w=G;};s.onTagClose=function(D){for(var E=u.length-1;E>=0;E--){if(D==u[E].name){u.splice(E,1);return;}}var F=[],G=[],H=w;while(H.type&&H.name!=D){if(!H._.isBlockLike)G.unshift(H);F.push(H);H=H.parent;}if(H.type){for(E=0;E'+a.lang.clipboard.pasteMsg+'
    '},{type:'textarea',id:'content',className:'cke_pastetext',onLoad:function(){var b=this.getDialog().getContentElement('general','pasteMsg').getElement(),c=this.getElement().getElementsByTag('textarea').getItem(0);c.setAttribute('aria-labelledby',b.$.id);c.setStyle('direction',a.config.contentsLangDirection);},focus:function(){this.getElement().focus();},setup:function(){this.setValue('');},commit:function(){var b=this.getValue();setTimeout(function(){a.fire('paste',{text:b});},0);}}]}]};});})(); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/0000775000175000017500000000000012262650742023037 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/0000775000175000017500000000000012262650742024304 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/heart.gif0000664000175000017500000000026712262650742026103 0ustar chmrrchmrrGIF89a /O J 9A,z'o ZdT! ,dpI8klIS`! I A11Lt&I _Pa '%AFTs,ŬPXX=Hk&o$~j;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/thumbs_down.gif0000664000175000017500000000063012262650742027323 0ustar chmrrchmrrGIF89a*KTQڛ7L5?;;@9"ʔ.@"HА,ߙUj4jԹ"aIǒrgv𱍠LZ t.}UͻQ@OO,!?,pH,dP8I`N(L lQ;(#.&_4x{ k>mBI 6 9324, C 2 %<*""( ?[7;#   ƘI8 8>1ƸK7 bB '+):&O 0 C!$,X!}"PbCNG-ŋ;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/angry_smile.gif0000664000175000017500000000067312262650742027312 0ustar chmrrchmrrGIF89a;?o$fDNeD3Wz)KQByP ?,sJ9xU$j01o Z ]t8J z'Z]#Sa` j,O agvǯTA˜u0dIwαZkcSZM !;,pH,ȤP Ls>xV[|χ1.7XcE u d;]! C "2'0 .6$ (#7$ %*:o #! % -3)8u; 1" ,uE 4&{cEJ8$? h)dX?J2 ;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/cry_smile.gif0000664000175000017500000000072412262650742026764 0ustar chmrrchmrrGIF89a?\dLק0DJv(՘-R+:dͻ޽}UېarZ jxB]k5ǒtǯgv>ɉXIVѩR3P4u0L ]ڛ7wo:ZRsJ"!?,pH,O%ARvUW(PiI\!LGB(24<<,D 677 r2#= #+ C*04):5C), "C%(>!C& '8%! "C1 #;'"&B&>W3.ЯB xq5 V b…BdQ[$,`c(0;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/embaressed_smile.gif0000664000175000017500000000067212262650742030303 0ustar chmrrchmrrGIF89a?8*S:ژXٰ8i)7\DgMGj0BZ "Q?yP 1Z9@bODKԳgwBʔ.!t3'6"k@R]ԥj}C!?,pH,`y9 2q&I6PP$F`'y0xRU*"7&"%mC'/> 4~1!8: 2&C""; <"B 6=x#)(C(,,) 5-n#3H.Xa>,@B'B@ŋ;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/angel_smile.gif0000664000175000017500000000072112262650742027252 0ustar chmrrchmrrGIF89a?'ؘoFk1h$D<Ҙ38'TM],\zwh }Z Nԥ.".jǒ'I5Գgα>3 ` # E@ H ^0D C;e ;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/kiss.gif0000664000175000017500000000036112262650742025744 0ustar chmrrchmrrGIF89adZFNo c]/TS` U'ZɉXsJj,αԥ!,n %dihlRAL1lHHAd" !6 &JbH U4$wC0d?1 L8C M*BY} -3/"!;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/devil_smile.gif0000664000175000017500000000066412262650742027275 0ustar chmrrchmrrGIF89a?S j/9H&ϖ1<v$^CVnL#fWS.5А.,"<ͻ-ק0jz@L}\"##b%wx1"1!?,pH,He.-gRZ\N U. P& *A(` hl"b8pb Y}69'$#":D+* 5< C.#4 %20 :B)"  ;'% /E y3l1  ? l=E;7 EBT8pO&0tXH`6tG$;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif0000664000175000017500000000070412262650742032235 0ustar chmrrchmrrGIF89a?;RDs2X&Mh%.TI,Z 7Rj0"ʔ.}L*#rͻ]}ULo3 Jt1@]bDCАd!?,pH,dt:咙0 PɈ@Qj&bh^ 1A#v+\r%"w!$6.7%i?x(*''C,*-"&"!(B  V$&02 >;15 է3; =?3B ,{` 7&PeIXhĢqRB ;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/omg_smile.gif0000664000175000017500000000070312262650742026746 0ustar chmrrchmrrGIF89a?!jgZT6uDjXw3vk1[,GNI,K9@ѩRZ ڵ<АKCNǒԥ"Q@}UyP \u06ڛ7?ǯ@-}Գg!?,pH,ry$ZԲ40 u(ky=m$0HK ʤ=Af 1  0pBI 6-3> C + 7 *  +<R,;\4))? $%%:5&bB%'58B$( .2(rC&r B D`as66Մ0x  8PB@!A( A+hq\ɒH;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/shades_smile.gif0000664000175000017500000000070112262650742027431 0ustar chmrrchmrrGIF89a?BjT")(("&7!),BSw++ ? a''=43. C  ֌?::* 2 -D69/*>@ wmPZEZhw-!A;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/tounge_smile.gif0000664000175000017500000000067612262650742027476 0ustar chmrrchmrrGIF89a?eeV M=Dk1M [M(QEAWCϑڵ<@UyP qGG9 ߙǒ}UO %1KZRjBPQ-7ǯ4\k!?,pH,r$>.dH"P)i^ B)=y4mC. (  *! ;!5")0"&B823/6'Ca$1 nBa:%% ʫa = 4SE?r˂ q4-l)jȱH;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/envelope.gif0000664000175000017500000000065212262650742026613 0ustar chmrrchmrrGIF89a(LߙQ5<,,"H1;kڟ@<-&I@Аק0ʔ.Z@5wQ7!(,@pH,䰠P Jba=id ~d2@ h!Bx<$>PI(j{z B zT(  "C]   B  K  B D  Ҍ D&F &%  *<;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/sad_smile.gif0000664000175000017500000000071412262650742026735 0ustar chmrrchmrrGIF89a?&ӕSKcMQ1G]cjj0,/) C +9>7%0+B":$,++)?  $-<% **&L C.2'1ގ?n"4 BH@" 'd.\cB, @P hɓ(;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/wink_smile.gif0000664000175000017500000000071212262650742027134 0ustar chmrrchmrrGIF89a?g#uج4ESc"IKM;t=?H"yP jj0А1Z >]ѩRkLoEK#ɉXa@]x4LP21;B@Ά +]΂ok$3!~n/ w" |o$ (&}B$81)07<6C+>=)54 9" #JU %-2 ?[#*  o?-;Bn.$ (p A`7%"xС <ؓpǏE;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/images/broken_heart.gif0000664000175000017500000000030012262650742027427 0ustar chmrrchmrrGIF89a /O J 9A,z'o ZdT! ,mpI8B! y@LEkt~*1, KMط\ᕈ|`a Yʦ\FE.`p1*'4B gZKK$y35qo^y;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/dialogs/0000775000175000017500000000000012262650742024461 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/smiley/dialogs/smiley.js0000664000175000017500000000632112262650742026323 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('smiley',function(a){var b=a.config,c=a.lang.smiley,d=b.smiley_images,e=b.smiley_columns||8,f,g,h=function(o){var p=o.data.getTarget(),q=p.getName();if(q=='a')p=p.getChild(0);else if(q!='img')return;var r=p.getAttribute('cke_src'),s=p.getAttribute('title'),t=a.document.createElement('img',{attributes:{src:r,'data-cke-saved-src':r,title:s,alt:s,width:p.$.width,height:p.$.height}});a.insertElement(t);g.hide();o.data.preventDefault();},i=CKEDITOR.tools.addFunction(function(o,p){o=new CKEDITOR.dom.event(o);p=new CKEDITOR.dom.element(p);var q,r,s=o.getKeystroke(),t=a.lang.dir=='rtl';switch(s){case 38:if(q=p.getParent().getParent().getPrevious()){r=q.getChild([p.getParent().getIndex(),0]);r.focus();}o.preventDefault();break;case 40:if(q=p.getParent().getParent().getNext()){r=q.getChild([p.getParent().getIndex(),0]);if(r)r.focus();}o.preventDefault();break;case 32:h({data:o});o.preventDefault();break;case t?37:39:if(q=p.getParent().getNext()){r=q.getChild(0);r.focus();o.preventDefault(true);}else if(q=p.getParent().getParent().getNext()){r=q.getChild([0,0]);if(r)r.focus();o.preventDefault(true);}break;case t?39:37:if(q=p.getParent().getPrevious()){r=q.getChild(0);r.focus();o.preventDefault(true);}else if(q=p.getParent().getParent().getPrevious()){r=q.getLast().getChild(0);r.focus();o.preventDefault(true);}break;default:return;}}),j=CKEDITOR.tools.getNextId()+'_smiley_emtions_label',k=['
    '+c.options+'',''],l=d.length;for(f=0;f');var m='cke_smile_label_'+f+'_'+CKEDITOR.tools.getNextNumber();k.push(''); if(f%e==e-1)k.push('');}if(f');k.push('');}k.push('
    ');var n={type:'html',id:'smileySelector',html:k.join(''),onLoad:function(o){g=o.sender;},focus:function(){var o=this;setTimeout(function(){var p=o.getElement().getElementsByTag('a').getItem(0);p.focus();},0);},onClick:h,style:'width: 100%; border-collapse: separate;'};return{title:a.lang.smiley.title,minWidth:270,minHeight:120,contents:[{id:'tab1',label:'',title:'',expand:true,padding:0,elements:[n]}],buttons:[CKEDITOR.dialog.cancelButton]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/autogrow/0000775000175000017500000000000012262650742023404 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/autogrow/plugin.js0000664000175000017500000000344012262650742025241 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){function a(d){var e=d.getStyle('overflow-y'),f=d.getDocument(),g=CKEDITOR.dom.element.createFromHtml(''+(CKEDITOR.env.webkit?' ':'')+'',f);f[CKEDITOR.env.ie?'getBody':'getDocumentElement']().append(g);var h=g.getDocumentPosition(f).y+g.$.offsetHeight;g.remove();d.setStyle('overflow-y',e);return h;};function b(d){var e=d.document,f=e.getBody(),g=e.getDocumentElement();return e.$.compatMode=='BackCompat'?f:g;};var c=function(d){if(!d.window)return;var e=b(d),f=d.window.getViewPaneSize().height,g=a(e);g+=d.config.autoGrow_bottomSpace||0;var h=d.config.autoGrow_minHeight!=undefined?d.config.autoGrow_minHeight:200,i=d.config.autoGrow_maxHeight||Infinity;g=Math.max(g,h);g=Math.min(g,i);if(g!=f){g=d.fire('autoGrow',{currentHeight:f,newHeight:g}).newHeight;d.resize(d.container.getStyle('width'),g,true);}if(e.$.scrollHeight>e.$.clientHeight&&g
    '+'\t
    '+'\t
    '+'\t\t'+'\t\t'+'\t
    '+'\t
    '+'\t\t'+'\t\t'+'\t
    '+'\t
    '+'\t'+'\t\t'+'\t
    '+'\t
    '+'\t\t'+'\t\t'+'\t
    '+'
    '}]},{id:'langs',label:o.languagesTab,elements:[{type:'html',id:'langs',html:'
    '+'\t
    \t'+'
    '+'
    '+'
    '}]},{id:'dictionaries',label:o.dictionariesTab,elements:[{type:'html',style:'',id:'dictionaries',html:'
    '+'\t
    '+'\t
    '+' Dictionary name
    '+'\t\t'+'\t\t\t
    '+'\t\t\t\t'+'\t\t
    '+'\t\t
    '+'\t\t\t'+'\t\t\t'+'\t\t\t'+'\t\t\t'+'\t\t
    '+'\t
    '+'
    '}]},{id:'about',label:o.aboutTab,elements:[{type:'html',id:'about',style:'margin: 5px 5px;',html:'
    '}]}],q={title:o.title,minWidth:360,minHeight:220,onShow:function(){var z=this; z.data=a.fire('scaytDialog',{});z.options=z.data.scayt_control.option();z.chosed_lang=z.sLang=z.data.scayt_control.sLang;if(!z.data||!z.data.scayt||!z.data.scayt_control){alert('Error loading application service');z.hide();return;}var A=0;if(b)z.data.scayt.getCaption(a.langCode||'en',function(B){if(A++>0)return;c=B;s.apply(z);t.apply(z);b=false;});else t.apply(z);z.selectPage(z.data.tab);},onOk:function(){var z=this.data.scayt_control;z.option(this.options);var A=this.chosed_lang;z.setLang(A);z.refresh();},onCancel:function(){var z=l();for(var A in z)z[A].checked=false;n(m(),'');},contents:h},r=CKEDITOR.plugins.scayt.getScayt(a);for(g=0;g'+c['button_'+B[F]]+'');}d.getById('dic_info_'+e).setHtml(c.dic_info);}if(f[0]==1)for(F in E){var G='label_'+E[F],H=G+'_'+e,I=d.getById(H);if('undefined'!=typeof I&&'undefined'!=typeof c[G]&&'undefined'!=typeof z.options[E[F]]){I.setHtml(c[G]);var J=I.getParent();J.$.style.display='block';}}var K='

    '+'

    '+c.version+window.scayt.getAboutInfo().version.toString()+'

    '+'

    '+c.about_throwt_copy+'

    ';d.getById('scayt_about_'+e).setHtml(K);var L=function(U,V){var W=d.createElement('label');W.setAttribute('for','cke_option'+U);W.setHtml(V[U]);if(z.sLang==U)z.chosed_lang=U;var X=d.createElement('div'),Y=CKEDITOR.dom.element.createFromHtml('');Y.on('click',function(){this.$.checked=true;z.chosed_lang=U;});X.append(Y);X.append(W);return{lang:V[U],code:U,radio:X};};if(f[1]==1){for(F in A.rtl)D[D.length]=L(F,A.ltr);for(F in A.ltr)D[D.length]=L(F,A.ltr);D.sort(function(U,V){return V.lang>U.lang?-1:1;});var M=d.getById('scayt_lcol_'+e),N=d.getById('scayt_rcol_'+e);for(F=0;F'+z+'');};function v(z){d.getById('dic_message_'+e).setHtml(''+z+'');};function w(z){z=String(z);var A=z.split(',');for(var B=0,C=A.length;B var doc = document; doc.open(); doc.write( window.opener._cke_htmlToLoad ); doc.close(); delete window.opener._cke_htmlToLoad; rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/clipboard/0000775000175000017500000000000012262650742023474 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/clipboard/dialogs/0000775000175000017500000000000012262650742025116 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/clipboard/dialogs/paste.js0000664000175000017500000000645512262650742026602 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('paste',function(a){var b=a.lang.clipboard,c=CKEDITOR.env.isCustomDomain();function d(e){var f=new CKEDITOR.dom.document(e.document),g=f.$,h=f.getById('cke_actscrpt');h&&h.remove();CKEDITOR.env.ie?g.body.contentEditable='true':g.designMode='on';if(CKEDITOR.env.ie&&CKEDITOR.env.version<8)f.getWindow().on('blur',function(){g.selection.empty();});f.on('keydown',function(i){var j=i.data,k=j.getKeystroke(),l;switch(k){case 27:this.hide();l=1;break;case 9:case CKEDITOR.SHIFT+9:this.changeFocus(1);l=1;}l&&j.preventDefault();},this);a.fire('ariaWidget',new CKEDITOR.dom.element(e.frameElement));};return{title:b.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?370:350,minHeight:CKEDITOR.env.quirks?250:245,onShow:function(){this.parts.dialog.$.offsetHeight;this.setupContent();},onHide:function(){if(CKEDITOR.env.ie)this.getParentEditor().document.getBody().$.contentEditable='true';},onLoad:function(){if((CKEDITOR.env.ie7Compat||CKEDITOR.env.ie6Compat)&&a.lang.dir=='rtl')this.parts.contents.setStyle('overflow','hidden');},onOk:function(){this.commitContent();},contents:[{id:'general',label:a.lang.common.generalTab,elements:[{type:'html',id:'securityMsg',html:'
    '+b.securityMsg+'
    '},{type:'html',id:'pasteMsg',html:'
    '+b.pasteMsg+'
    '},{type:'html',id:'editing_area',style:'width: 100%; height: 100%;',html:'',focus:function(){var e=this.getInputElement().$.contentWindow;setTimeout(function(){e.focus();},500);},setup:function(){var e=this.getDialog(),f=''+''+''+'',g=CKEDITOR.env.air?'javascript:void(0)':c?"javascript:void((function(){document.open();document.domain='"+document.domain+"';"+'document.close();'+'})())"':'',h=CKEDITOR.dom.element.createFromHtml('');h.on('load',function(k){k.removeListener();var l=h.getFrameDocument();l.write(f);if(CKEDITOR.env.air)d.call(this,l.getWindow().$); },e);h.setCustomData('dialog',e);var i=this.getElement();i.setHtml('');i.append(h);if(CKEDITOR.env.ie){var j=CKEDITOR.dom.element.createFromHtml('');j.on('focus',function(){h.$.contentWindow.focus();});i.append(j);this.focus=function(){j.focus();this.fire('focus');};}this.getInputElement=function(){return h;};if(CKEDITOR.env.ie){i.setStyle('display','block');i.setStyle('height',h.$.offsetHeight+2+'px');}},commit:function(e){var f=this.getElement(),g=this.getDialog().getParentEditor(),h=this.getInputElement().getFrameDocument().getBody(),i=h.getBogus(),j;i&&i.remove();j=h.getHtml();setTimeout(function(){g.fire('paste',{html:j});},0);}}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/0000775000175000017500000000000012262650742024013 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/0000775000175000017500000000000012262650742024734 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/fi.js0000664000175000017500000001073412262650742025675 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','fi',{euro:'Euron merkki',lsquo:'Vasen yksittäinen lainausmerkki',rsquo:'Oikea yksittäinen lainausmerkki',ldquo:'Vasen kaksoislainausmerkki',rdquo:'Oikea kaksoislainausmerkki',ndash:'En dash',mdash:'Em dash',iexcl:'Inverted exclamation mark',cent:'Sentin merkki',pound:'Punnan merkki',curren:'Valuuttamerkki',yen:'Yenin merkki',brvbar:'Broken bar',sect:'Section sign',uml:'Diaeresis',copy:'Copyright sign',ordf:'Feminine ordinal indicator',laquo:'Left-pointing double angle quotation mark',not:'Not sign',reg:'Rekisteröity merkki',macr:'Macron',deg:'Asteen merkki',sup2:'Yläindeksi kaksi',sup3:'Yläindeksi kolme',acute:'Acute accent',micro:'Mikron merkki',para:'Pilcrow sign',middot:'Middle dot',cedil:'Cedilla',sup1:'Yläindeksi yksi',ordm:'Masculine ordinal indicator',raquo:'Right-pointing double angle quotation mark',frac14:'Vulgar fraction one quarter',frac12:'Vulgar fraction one half',frac34:'Vulgar fraction three quarters',iquest:'Ylösalaisin oleva kysymysmerkki',Agrave:'Latin capital letter A with grave accent',Aacute:'Latin capital letter A with acute accent',Acirc:'Latin capital letter A with circumflex',Atilde:'Latin capital letter A with tilde',Auml:'Latin capital letter A with diaeresis',Aring:'Latin capital letter A with ring above',AElig:'Latin Capital letter Æ',Ccedil:'Latin capital letter C with cedilla',Egrave:'Latin capital letter E with grave accent',Eacute:'Latin capital letter E with acute accent',Ecirc:'Latin capital letter E with circumflex',Euml:'Latin capital letter E with diaeresis',Igrave:'Latin capital letter I with grave accent',Iacute:'Latin capital letter I with acute accent',Icirc:'Latin capital letter I with circumflex',Iuml:'Latin capital letter I with diaeresis',ETH:'Latin capital letter Eth',Ntilde:'Latin capital letter N with tilde',Ograve:'Latin capital letter O with grave accent',Oacute:'Latin capital letter O with acute accent',Ocirc:'Latin capital letter O with circumflex',Otilde:'Latin capital letter O with tilde',Ouml:'Latin capital letter O with diaeresis',times:'Kertomerkki',Oslash:'Latin capital letter O with stroke',Ugrave:'Latin capital letter U with grave accent',Uacute:'Latin capital letter U with acute accent',Ucirc:'Latin capital letter U with circumflex',Uuml:'Latin capital letter U with diaeresis',Yacute:'Latin capital letter Y with acute accent',THORN:'Latin capital letter Thorn',szlig:'Latin small letter sharp s',agrave:'Latin small letter a with grave accent',aacute:'Latin small letter a with acute accent',acirc:'Latin small letter a with circumflex',atilde:'Latin small letter a with tilde',auml:'Latin small letter a with diaeresis',aring:'Latin small letter a with ring above',aelig:'Latin small letter æ',ccedil:'Latin small letter c with cedilla',egrave:'Latin small letter e with grave accent',eacute:'Latin small letter e with acute accent',ecirc:'Latin small letter e with circumflex',euml:'Latin small letter e with diaeresis',igrave:'Latin small letter i with grave accent',iacute:'Latin small letter i with acute accent',icirc:'Latin small letter i with circumflex',iuml:'Latin small letter i with diaeresis',eth:'Latin small letter eth',ntilde:'Latin small letter n with tilde',ograve:'Latin small letter o with grave accent',oacute:'Latin small letter o with acute accent',ocirc:'Latin small letter o with circumflex',otilde:'Latin small letter o with tilde',ouml:'Latin small letter o with diaeresis',divide:'Jakomerkki',oslash:'Latin small letter o with stroke',ugrave:'Latin small letter u with grave accent',uacute:'Latin small letter u with acute accent',ucirc:'Latin small letter u with circumflex',uuml:'Latin small letter u with diaeresis',yacute:'Latin small letter y with acute accent',thorn:'Latin small letter thorn',yuml:'Latin small letter y with diaeresis',OElig:'Latin capital ligature OE',oelig:'Latin small ligature oe',372:'Latin capital letter W with circumflex',374:'Latin capital letter Y with circumflex',373:'Latin small letter w with circumflex',375:'Latin small letter y with circumflex',sbquo:'Single low-9 quotation mark',8219:'Single high-reversed-9 quotation mark',bdquo:'Double low-9 quotation mark',hellip:'Horizontal ellipsis',trade:'Tavaramerkki merkki',9658:'Black right-pointing pointer',bull:'Bullet',rarr:'Nuoli oikealle',rArr:'Kaksoisnuoli oikealle',hArr:'Kaksoisnuoli oikealle ja vasemmalle',diams:'Black diamond suit',asymp:'Noin'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/no.js0000664000175000017500000000653512262650742025717 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','no',{euro:'Eurosymbol',lsquo:'Venstre enkelt anførselstegn',rsquo:'Høyre enkelt anførselstegn',ldquo:'Venstre dobbelt anførselstegn',rdquo:'Høyre anførsesltegn',ndash:'Kort tankestrek',mdash:'Lang tankestrek',iexcl:'Omvendt utropstegn',cent:'Centsymbol',pound:'Pundsymbol',curren:'Valutategn',yen:'Yensymbol',brvbar:'Brutt loddrett strek',sect:'Paragraftegn',uml:'Tøddel',copy:'Copyrighttegn',ordf:'Feminin ordensindikator',laquo:'Venstre anførselstegn',not:'Negasjonstegn',reg:'Registrert varemerke-tegn',macr:'Makron',deg:'Gradsymbol',sup2:'Hevet totall',sup3:'Hevet tretall',acute:'Akutt aksent',micro:'Mikrosymbol',para:'Avsnittstegn',middot:'Midtstilt prikk',cedil:'Cedille',sup1:'Hevet ettall',ordm:'Maskulin ordensindikator',raquo:'Høyre anførselstegn',frac14:'Fjerdedelsbrøk',frac12:'Halvbrøk',frac34:'Tre fjerdedelers brøk',iquest:'Omvendt spørsmålstegn',Agrave:'Stor A med grav aksent',Aacute:'Stor A med akutt aksent',Acirc:'Stor A med cirkumfleks',Atilde:'Stor A med tilde',Auml:'Stor A med tøddel',Aring:'Stor Å',AElig:'Stor Æ',Ccedil:'Stor C med cedille',Egrave:'Stor E med grav aksent',Eacute:'Stor E med akutt aksent',Ecirc:'Stor E med cirkumfleks',Euml:'Stor E med tøddel',Igrave:'Stor I med grav aksent',Iacute:'Stor I med akutt aksent',Icirc:'Stor I med cirkumfleks',Iuml:'Stor I med tøddel',ETH:'Stor Edd/stungen D',Ntilde:'Stor N med tilde',Ograve:'Stor O med grav aksent',Oacute:'Stor O med akutt aksent',Ocirc:'Stor O med cirkumfleks',Otilde:'Stor O med tilde',Ouml:'Stor O med tøddel',times:'Multiplikasjonstegn',Oslash:'Stor Ø',Ugrave:'Stor U med grav aksent',Uacute:'Stor U med akutt aksent',Ucirc:'Stor U med cirkumfleks',Uuml:'Stor U med tøddel',Yacute:'Stor Y med akutt aksent',THORN:'Stor Thorn',szlig:'Liten dobbelt-s/Eszett',agrave:'Liten a med grav aksent',aacute:'Liten a med akutt aksent',acirc:'Liten a med cirkumfleks',atilde:'Liten a med tilde',auml:'Liten a med tøddel',aring:'Liten å',aelig:'Liten æ',ccedil:'Liten c med cedille',egrave:'Liten e med grav aksent',eacute:'Liten e med akutt aksent',ecirc:'Liten e med cirkumfleks',euml:'Liten e med tøddel',igrave:'Liten i med grav aksent',iacute:'Liten i med akutt aksent',icirc:'Liten i med cirkumfleks',iuml:'Liten i med tøddel',eth:'Liten edd/stungen d',ntilde:'Liten n med tilde',ograve:'Liten o med grav aksent',oacute:'Liten o med akutt aksent',ocirc:'Liten o med cirkumfleks',otilde:'Liten o med tilde',ouml:'Liten o med tøddel',divide:'Divisjonstegn',oslash:'Liten ø',ugrave:'Liten u med grav aksent',uacute:'Liten u med akutt aksent',ucirc:'Liten u med cirkumfleks',uuml:'Liten u med tøddel',yacute:'Liten y med akutt aksent',thorn:'Liten thorn',yuml:'Liten y med tøddel',OElig:'Stor ligatur av O og E',oelig:'Liten ligatur av o og e',372:'Stor W med cirkumfleks',374:'Stor Y med cirkumfleks',373:'Liten w med cirkumfleks',375:'Liten y med cirkumfleks',sbquo:'Enkelt lavt 9-anførselstegn',8219:'Enkelt høyt reversert 9-anførselstegn',bdquo:'Dobbelt lavt 9-anførselstegn',hellip:'Ellipse',trade:'Varemerkesymbol',9658:'Svart høyrevendt peker',bull:'Tykk interpunkt',rarr:'Høyrevendt pil',rArr:'Dobbel høyrevendt pil',hArr:'Dobbel venstrevendt pil',diams:'Svart ruter',asymp:'Omtrent likhetstegn'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/sk.js0000664000175000017500000001121712262650742025711 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','sk',{euro:'Znak eura',lsquo:'Ľavá jednoduchá úvodzovka',rsquo:'Pravá jednoduchá úvodzovka',ldquo:'Pravá dvojitá úvodzovka',rdquo:'Pravá dvojitá úvodzovka',ndash:'En pomlčka',mdash:'Em pomlčka',iexcl:'Obrátený výkričník',cent:'Znak centu',pound:'Znak libry',curren:'Znak meny',yen:'Znak jenu',brvbar:'Prerušená zvislá čiara',sect:'Znak odseku',uml:'Prehláska',copy:'Znak copyrightu',ordf:'Ženský indikátor rodu',laquo:'Znak dvojitých lomených úvodzoviek vľavo',not:'Logistický zápor',reg:'Znak registrácie',macr:'Pomlčka nad',deg:'Znak stupňa',sup2:'Dvojka ako horný index',sup3:'Trojka ako horný index',acute:'Dĺžeň',micro:'Znak mikro',para:'Znak odstavca',middot:'Bodka uprostred',cedil:'Chvost vľavo',sup1:'Jednotka ako horný index',ordm:'Mužský indikátor rodu',raquo:'Znak dvojitých lomených úvodzoviek vpravo',frac14:'Obyčajný zlomok jedna štvrtina',frac12:'Obyčajný zlomok jedna polovica',frac34:'Obyčajný zlomok tri štvrtiny',iquest:'Otočený otáznik',Agrave:'Veľké písmeno latinky A s accentom',Aacute:'Veľké písmeno latinky A s dĺžňom',Acirc:'Veľké písmeno latinky A s mäkčeňom',Atilde:'Veľké písmeno latinky A s tildou',Auml:'Veľké písmeno latinky A s dvoma bodkami',Aring:'Veľké písmeno latinky A s krúžkom nad',AElig:'Veľké písmeno latinky Æ',Ccedil:'Veľké písmeno latinky C s chvostom vľavo',Egrave:'Veľké písmeno latinky E s accentom',Eacute:'Veľké písmeno latinky E s dĺžňom',Ecirc:'Veľké písmeno latinky E s mäkčeňom',Euml:'Veľké písmeno latinky E s dvoma bodkami',Igrave:'Veľké písmeno latinky I s accentom',Iacute:'Veľké písmeno latinky I s dĺžňom',Icirc:'Veľké písmeno latinky I s mäkčeňom',Iuml:'Veľké písmeno latinky I s dvoma bodkami',ETH:'Veľké písmeno latinky Eth',Ntilde:'Veľké písmeno latinky N s tildou',Ograve:'Veľké písmeno latinky O s accentom',Oacute:'Veľké písmeno latinky O s dĺžňom',Ocirc:'Veľké písmeno latinky O s mäkčeňom',Otilde:'Veľké písmeno latinky O s tildou',Ouml:'Veľké písmeno latinky O s dvoma bodkami',times:'Znak násobenia',Oslash:'Veľké písmeno latinky O preškrtnuté',Ugrave:'Veľké písmeno latinky U s accentom',Uacute:'Veľké písmeno latinky U s dĺžňom',Ucirc:'Veľké písmeno latinky U s mäkčeňom',Uuml:'Veľké písmeno latinky U s dvoma bodkami',Yacute:'Veľké písmeno latinky Y s dĺžňom',THORN:'Veľké písmeno latinky Thorn',szlig:'Malé písmeno latinky ostré s',agrave:'Malé písmeno latinky a s accentom',aacute:'Malé písmeno latinky a s dĺžňom',acirc:'Malé písmeno latinky a s mäkčeňom',atilde:'Malé písmeno latinky a s tildou',auml:'Malé písmeno latinky a s dvoma bodkami',aring:'Malé písmeno latinky a s krúžkom nad',aelig:'Malé písmeno latinky æ',ccedil:'Malé písmeno latinky c s chvostom vľavo',egrave:'Malé písmeno latinky e s accentom',eacute:'Malé písmeno latinky e s dĺžňom',ecirc:'Malé písmeno latinky e s mäkčeňom',euml:'Malé písmeno latinky e s dvoma bodkami',igrave:'Malé písmeno latinky i s accentom',iacute:'Malé písmeno latinky i s dĺžňom',icirc:'Malé písmeno latinky i s mäkčeňom',iuml:'Malé písmeno latinky i s dvoma bodkami',eth:'Malé písmeno latinky eth',ntilde:'Malé písmeno latinky n s tildou',ograve:'Malé písmeno latinky o s accentom',oacute:'Malé písmeno latinky o s dĺžňom',ocirc:'Malé písmeno latinky o s mäkčeňom',otilde:'Malé písmeno latinky o s tildou',ouml:'Malé písmeno latinky o s dvoma bodkami',divide:'Znak delenia',oslash:'Malé písmeno latinky o preškrtnuté',ugrave:'Malé písmeno latinky u s accentom',uacute:'Malé písmeno latinky u s dĺžňom',ucirc:'Malé písmeno latinky u s mäkčeňom',uuml:'Malé písmeno latinky u s dvoma bodkami',yacute:'Malé písmeno latinky y s dĺžňom',thorn:'Malé písmeno latinky thorn',yuml:'Malé písmeno latinky y s dvoma bodkami',OElig:'Veľká ligatúra latinky OE',oelig:'Malá ligatúra latinky OE',372:'Veľké písmeno latinky W s mäkčeňom',374:'Veľké písmeno latinky Y s mäkčeňom',373:'Malé písmeno latinky w s mäkčeňom',375:'Malé písmeno latinky y s mäkčeňom',sbquo:'Dolná jednoduchá 9-úvodzovka',8219:'Horná jednoduchá otočená 9-úvodzovka',bdquo:'Dolná dvojitá 9-úvodzovka',hellip:'Trojbodkový úvod',trade:'Znak ibchodnej značky',9658:'Čierny ukazovateľ smerujúci vpravo',bull:'Kruh',rarr:'Šípka vpravo',rArr:'Dvojitá šipka vpravo',hArr:'Dvojitá šipka vľavo a vpravo',diams:'Čierne piky',asymp:'Skoro sa rovná'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/he.js0000664000175000017500000001066512262650742025676 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','he',{euro:'יורו',lsquo:'Left single quotation mark',rsquo:'Right single quotation mark',ldquo:'Left double quotation mark',rdquo:'Right double quotation mark',ndash:'En dash',mdash:'Em dash',iexcl:'Inverted exclamation mark',cent:'Cent sign',pound:'Pound sign',curren:'Currency sign',yen:'Yen sign',brvbar:'Broken bar',sect:'Section sign',uml:'Diaeresis',copy:'Copyright sign',ordf:'Feminine ordinal indicator',laquo:'Left-pointing double angle quotation mark',not:'Not sign',reg:'Registered sign',macr:'Macron',deg:'Degree sign',sup2:'Superscript two',sup3:'Superscript three',acute:'Acute accent',micro:'Micro sign',para:'Pilcrow sign',middot:'Middle dot',cedil:'Cedilla',sup1:'Superscript one',ordm:'Masculine ordinal indicator',raquo:'Right-pointing double angle quotation mark',frac14:'Vulgar fraction one quarter',frac12:'Vulgar fraction one half',frac34:'Vulgar fraction three quarters',iquest:'Inverted question mark',Agrave:'Latin capital letter A with grave accent',Aacute:'Latin capital letter A with acute accent',Acirc:'Latin capital letter A with circumflex',Atilde:'Latin capital letter A with tilde',Auml:'Latin capital letter A with diaeresis',Aring:'Latin capital letter A with ring above',AElig:'Latin Capital letter Æ',Ccedil:'Latin capital letter C with cedilla',Egrave:'Latin capital letter E with grave accent',Eacute:'Latin capital letter E with acute accent',Ecirc:'Latin capital letter E with circumflex',Euml:'Latin capital letter E with diaeresis',Igrave:'Latin capital letter I with grave accent',Iacute:'Latin capital letter I with acute accent',Icirc:'Latin capital letter I with circumflex',Iuml:'Latin capital letter I with diaeresis',ETH:'Latin capital letter Eth',Ntilde:'Latin capital letter N with tilde',Ograve:'Latin capital letter O with grave accent',Oacute:'Latin capital letter O with acute accent',Ocirc:'Latin capital letter O with circumflex',Otilde:'Latin capital letter O with tilde',Ouml:'Latin capital letter O with diaeresis',times:'Multiplication sign',Oslash:'Latin capital letter O with stroke',Ugrave:'Latin capital letter U with grave accent',Uacute:'Latin capital letter U with acute accent',Ucirc:'Latin capital letter U with circumflex',Uuml:'Latin capital letter U with diaeresis',Yacute:'Latin capital letter Y with acute accent',THORN:'Latin capital letter Thorn',szlig:'Latin small letter sharp s',agrave:'Latin small letter a with grave accent',aacute:'Latin small letter a with acute accent',acirc:'Latin small letter a with circumflex',atilde:'Latin small letter a with tilde',auml:'Latin small letter a with diaeresis',aring:'Latin small letter a with ring above',aelig:'Latin small letter æ',ccedil:'Latin small letter c with cedilla',egrave:'Latin small letter e with grave accent',eacute:'Latin small letter e with acute accent',ecirc:'Latin small letter e with circumflex',euml:'Latin small letter e with diaeresis',igrave:'Latin small letter i with grave accent',iacute:'Latin small letter i with acute accent',icirc:'Latin small letter i with circumflex',iuml:'Latin small letter i with diaeresis',eth:'Latin small letter eth',ntilde:'Latin small letter n with tilde',ograve:'Latin small letter o with grave accent',oacute:'Latin small letter o with acute accent',ocirc:'Latin small letter o with circumflex',otilde:'Latin small letter o with tilde',ouml:'Latin small letter o with diaeresis',divide:'Division sign',oslash:'Latin small letter o with stroke',ugrave:'Latin small letter u with grave accent',uacute:'Latin small letter u with acute accent',ucirc:'Latin small letter u with circumflex',uuml:'Latin small letter u with diaeresis',yacute:'Latin small letter y with acute accent',thorn:'Latin small letter thorn',yuml:'Latin small letter y with diaeresis',OElig:'Latin capital ligature OE',oelig:'Latin small ligature oe',372:'Latin capital letter W with circumflex',374:'Latin capital letter Y with circumflex',373:'Latin small letter w with circumflex',375:'Latin small letter y with circumflex',sbquo:'Single low-9 quotation mark',8219:'Single high-reversed-9 quotation mark',bdquo:'Double low-9 quotation mark',hellip:'Horizontal ellipsis',trade:'Trade mark sign',9658:'Black right-pointing pointer',bull:'Bullet',rarr:'Rightwards arrow',rArr:'Rightwards double arrow',hArr:'Left right double arrow',diams:'Black diamond suit',asymp:'Almost equal to'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/cy.js0000664000175000017500000001135712262650742025714 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','cy',{euro:'Arwydd yr Ewro',lsquo:'Dyfynnod chwith unigol',rsquo:'Dyfynnod dde unigol',ldquo:'Dyfynnod chwith dwbl',rdquo:'Dyfynnod dde dwbl',ndash:'Cysylltnod en',mdash:'Cysylltnod em',iexcl:'Ebychnod gwrthdro',cent:'Arwydd sent',pound:'Arwydd punt',curren:'Arwydd arian cyfred',yen:'Arwydd yen',brvbar:'Bar toriedig',sect:'Arwydd adran',uml:'Didolnod',copy:'Arwydd hawlfraint',ordf:'Dangosydd benywaidd',laquo:"Dyfynnod dwbl ar ongl i'r chwith",not:'Arwydd Nid',reg:'Arwydd cofrestredig',macr:'Macron',deg:'Arwydd gradd',sup2:'Dau uwchsgript',sup3:'Tri uwchsgript',acute:'Acen ddyrchafedig',micro:'Arwydd micro',para:'Arwydd pilcrow',middot:'Dot canol',cedil:'Sedila',sup1:'Un uwchsgript',ordm:'Dangosydd gwrywaidd',raquo:"Dyfynnod dwbl ar ongl i'r dde",frac14:'Ffracsiwn cyffredin un cwarter',frac12:'Ffracsiwn cyffredin un hanner',frac34:'Ffracsiwn cyffredin tri chwarter',iquest:'Marc cwestiwn gwrthdroëdig',Agrave:'Priflythyren A Lladinaidd gydag acen ddisgynedig',Aacute:'Priflythyren A Lladinaidd gydag acen ddyrchafedig',Acirc:'Priflythyren A Lladinaidd gydag acen grom',Atilde:'Priflythyren A Lladinaidd gyda thild',Auml:'Priflythyren A Lladinaidd gyda didolnod',Aring:'Priflythyren A Lladinaidd gyda chylch uwchben',AElig:'Priflythyren Æ Lladinaidd',Ccedil:'Priflythyren C Lladinaidd gyda sedila',Egrave:'Priflythyren E Lladinaidd gydag acen ddisgynedig',Eacute:'Priflythyren E Lladinaidd gydag acen ddyrchafedig',Ecirc:'Priflythyren E Lladinaidd gydag acen grom',Euml:'Priflythyren E Lladinaidd gyda didolnod',Igrave:'Priflythyren I Lladinaidd gydag acen ddisgynedig',Iacute:'Priflythyren I Lladinaidd gydag acen ddyrchafedig',Icirc:'Priflythyren I Lladinaidd gydag acen grom',Iuml:'Priflythyren I Lladinaidd gyda didolnod',ETH:'Priflythyren Eth',Ntilde:'Priflythyren N Lladinaidd gyda thild',Ograve:'Priflythyren O Lladinaidd gydag acen ddisgynedig',Oacute:'Priflythyren O Lladinaidd gydag acen ddyrchafedig',Ocirc:'Priflythyren O Lladinaidd gydag acen grom',Otilde:'Priflythyren O Lladinaidd gyda thild',Ouml:'Priflythyren O Lladinaidd gyda didolnod',times:'Arwydd lluosi',Oslash:'Priflythyren O Lladinaidd gyda strôc',Ugrave:'Priflythyren U Lladinaidd gydag acen ddisgynedig',Uacute:'Priflythyren U Lladinaidd gydag acen ddyrchafedig',Ucirc:'Priflythyren U Lladinaidd gydag acen grom',Uuml:'Priflythyren U Lladinaidd gyda didolnod',Yacute:'Priflythyren Y Lladinaidd gydag acen ddyrchafedig',THORN:'Priflythyren Thorn',szlig:'Llythyren s fach Lladinaidd siarp ',agrave:'Llythyren a fach Lladinaidd gydag acen ddisgynedig',aacute:'Llythyren a fach Lladinaidd gydag acen ddyrchafedig',acirc:'Llythyren a fach Lladinaidd gydag acen grom',atilde:'Llythyren a fach Lladinaidd gyda thild',auml:'Llythyren a fach Lladinaidd gyda didolnod',aring:'Llythyren a fach Lladinaidd gyda chylch uwchben',aelig:'Llythyren æ fach Lladinaidd',ccedil:'Llythyren c fach Lladinaidd gyda sedila',egrave:'Llythyren e fach Lladinaidd gydag acen ddisgynedig',eacute:'Llythyren e fach Lladinaidd gydag acen ddyrchafedig',ecirc:'Llythyren e fach Lladinaidd gydag acen grom',euml:'Llythyren e fach Lladinaidd gyda didolnod',igrave:'Llythyren i fach Lladinaidd gydag acen ddisgynedig',iacute:'Llythyren i fach Lladinaidd gydag acen ddyrchafedig',icirc:'Llythyren i fach Lladinaidd gydag acen grom',iuml:'Llythyren i fach Lladinaidd gyda didolnod',eth:'Llythyren eth fach',ntilde:'Llythyren n fach Lladinaidd gyda thild',ograve:'Llythyren o fach Lladinaidd gydag acen ddisgynedig',oacute:'Llythyren o fach Lladinaidd gydag acen ddyrchafedig',ocirc:'Llythyren o fach Lladinaidd gydag acen grom',otilde:'Llythyren o fach Lladinaidd gyda thild',ouml:'Llythyren o fach Lladinaidd gyda didolnod',divide:'Arwydd rhannu',oslash:'Llyth',ugrave:'Llythyren u fach Lladinaidd gydag acen ddisgynedig',uacute:'Llythyren u fach Lladinaidd gydag acen ddyrchafedig',ucirc:'Llythyren u fach Lladinaidd gydag acen grom',uuml:'Llythyren u fach Lladinaidd gyda didolnod',yacute:'Llythyren y fach Lladinaidd gydag acen ddisgynedig',thorn:'Llythyren o fach Lladinaidd gyda strôc',yuml:'Llythyren y fach Lladinaidd gyda didolnod',OElig:'Priflythyren cwlwm OE Lladinaidd ',oelig:'Priflythyren cwlwm oe Lladinaidd ',372:'Priflythyren W gydag acen grom',374:'Priflythyren Y gydag acen grom',373:'Llythyren w fach gydag acen grom',375:'Llythyren y fach gydag acen grom',sbquo:'Dyfynnod sengl 9-isel',8219:'Dyfynnod sengl 9-uchel cildro',bdquo:'Dyfynnod dwbl 9-isel',hellip:'Coll geiriau llorweddol',trade:'Arwydd marc masnachol',9658:"Pwyntydd du i'r dde",bull:'Bwled',rarr:"Saeth i'r dde",rArr:"Saeth ddwbl i'r dde",hArr:"Saeth ddwbl i'r chwith",diams:'Siwt diemwnt du',asymp:'Bron yn hafal iddo'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/it.js0000664000175000017500000001161612262650742025713 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','it',{euro:'Simbolo Euro',lsquo:'Virgoletta singola sinistra',rsquo:'Virgoletta singola destra',ldquo:'Virgolette aperte',rdquo:'Virgolette chiuse',ndash:'Trattino',mdash:'Trattino lungo',iexcl:'Punto esclavamativo invertito',cent:'Simbolo Cent',pound:'Simbolo Sterlina',curren:'Simbolo Moneta',yen:'Simbolo Yen',brvbar:'Barra interrotta',sect:'Simbolo di sezione',uml:'Dieresi',copy:'Simbolo Copyright',ordf:'Indicatore ordinale femminile',laquo:'Virgolette basse aperte',not:'Nessun segno',reg:'Simbolo Registrato',macr:'Macron',deg:'Simbolo Grado',sup2:'Apice Due',sup3:'Apice Tre',acute:'Accento acuto',micro:'Simbolo Micro',para:'Simbolo Paragrafo',middot:'Punto centrale',cedil:'Cediglia',sup1:'Apice Uno',ordm:'Indicatore ordinale maschile',raquo:'Virgolette basse chiuse',frac14:'Frazione volgare un quarto',frac12:'Frazione volgare un mezzo',frac34:'Frazione volgare tre quarti',iquest:'Punto interrogativo invertito',Agrave:'Lettera maiuscola latina A con accento grave',Aacute:'Lettera maiuscola latina A con accento acuto',Acirc:'Lettera maiuscola latina A con accento circonflesso',Atilde:'Lettera maiuscola latina A con tilde',Auml:'Lettera maiuscola latina A con dieresi',Aring:'Lettera maiuscola latina A con anello sopra',AElig:'Lettera maiuscola latina AE',Ccedil:'Lettera maiuscola latina C con cediglia',Egrave:'Lettera maiuscola latina E con accento grave',Eacute:'Lettera maiuscola latina E con accento acuto',Ecirc:'Lettera maiuscola latina E con accento circonflesso',Euml:'Lettera maiuscola latina E con dieresi',Igrave:'Lettera maiuscola latina I con accento grave',Iacute:'Lettera maiuscola latina I con accento acuto',Icirc:'Lettera maiuscola latina I con accento circonflesso',Iuml:'Lettera maiuscola latina I con dieresi',ETH:'Lettera maiuscola latina Eth',Ntilde:'Lettera maiuscola latina N con tilde',Ograve:'Lettera maiuscola latina O con accento grave',Oacute:'Lettera maiuscola latina O con accento acuto',Ocirc:'Lettera maiuscola latina O con accento circonflesso',Otilde:'Lettera maiuscola latina O con tilde',Ouml:'Lettera maiuscola latina O con dieresi',times:'Simbolo di moltiplicazione',Oslash:'Lettera maiuscola latina O barrata',Ugrave:'Lettera maiuscola latina U con accento grave',Uacute:'Lettera maiuscola latina U con accento acuto',Ucirc:'Lettera maiuscola latina U con accento circonflesso',Uuml:'Lettera maiuscola latina U con accento circonflesso',Yacute:'Lettera maiuscola latina Y con accento acuto',THORN:'Lettera maiuscola latina Thorn',szlig:'Lettera latina minuscola doppia S',agrave:'Lettera minuscola latina a con accento grave',aacute:'Lettera minuscola latina a con accento acuto',acirc:'Lettera minuscola latina a con accento circonflesso',atilde:'Lettera minuscola latina a con tilde',auml:'Lettera minuscola latina a con dieresi',aring:'Lettera minuscola latina a con anello superiore',aelig:'Lettera minuscola latina ae',ccedil:'Lettera minuscola latina c con cediglia',egrave:'Lettera minuscola latina e con accento grave',eacute:'Lettera minuscola latina e con accento acuto',ecirc:'Lettera minuscola latina e con accento circonflesso',euml:'Lettera minuscola latina e con dieresi',igrave:'Lettera minuscola latina i con accento grave',iacute:'Lettera minuscola latina i con accento acuto',icirc:'Lettera minuscola latina i con accento circonflesso',iuml:'Lettera minuscola latina i con dieresi',eth:'Lettera minuscola latina eth',ntilde:'Lettera minuscola latina n con tilde',ograve:'Lettera minuscola latina o con accento grave',oacute:'Lettera minuscola latina o con accento acuto',ocirc:'Lettera minuscola latina o con accento circonflesso',otilde:'Lettera minuscola latina o con tilde',ouml:'Lettera minuscola latina o con dieresi',divide:'Simbolo di divisione',oslash:'Lettera minuscola latina o barrata',ugrave:'Lettera minuscola latina u con accento grave',uacute:'Lettera minuscola latina u con accento acuto',ucirc:'Lettera minuscola latina u con accento circonflesso',uuml:'Lettera minuscola latina u con dieresi',yacute:'Lettera minuscola latina y con accento acuto',thorn:'Lettera minuscola latina thorn',yuml:'Lettera minuscola latina y con dieresi',OElig:'Legatura maiuscola latina OE',oelig:'Legatura minuscola latina oe',372:'Lettera maiuscola latina W con accento circonflesso',374:'Lettera maiuscola latina Y con accento circonflesso',373:'Lettera minuscola latina w con accento circonflesso',375:'Lettera minuscola latina y con accento circonflesso',sbquo:'Singola virgoletta bassa low-9',8219:'Singola virgoletta bassa low-9 inversa',bdquo:'Doppia virgoletta bassa low-9',hellip:'Ellissi orizzontale',trade:'Simbolo TM',9658:'Puntatore nero rivolto verso destra',bull:'Punto',rarr:'Freccia verso destra',rArr:'Doppia freccia verso destra',hArr:'Doppia freccia sinistra destra',diams:'Simbolo nero diamante',asymp:'Quasi uguale a'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/nl.js0000664000175000017500000001115012262650742025701 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','nl',{euro:'Euro-teken',lsquo:'Linker enkel aanhalingsteken',rsquo:'Rechter enkel aanhalingsteken',ldquo:'Linker dubbel aanhalingsteken',rdquo:'Rechter dubbel aanhalingsteken',ndash:'En dash',mdash:'Em dash',iexcl:'Omgekeerd uitroepteken',cent:'Cent-teken',pound:'Pond-teken',curren:'Valuta-teken',yen:'Yen-teken',brvbar:'Gebroken streep',sect:'Paragraaf-teken',uml:'Trema',copy:'Copyright-teken',ordf:'Vrouwelijk ordinaal',laquo:'Linker guillemet',not:'Ongelijk-teken',reg:'Geregistreerd handelsmerk-teken',macr:'Macron',deg:'Graden-teken',sup2:'Superscript twee',sup3:'Superscript drie',acute:'Accent aigu',micro:'Mico-teken',para:'Alinea-teken',middot:'Halfhoge punt',cedil:'Cedille',sup1:'Superscript een',ordm:'Mannelijk ordinaal',raquo:'Rechter guillemet',frac14:'Breuk kwart',frac12:'Breuk half',frac34:'Breuk driekwart',iquest:'Omgekeerd vraagteken',Agrave:'Latijnse hoofdletter A met een accent grave',Aacute:'Latijnse hoofdletter A met een accent aigu',Acirc:'Latijnse hoofdletter A met een circonflexe',Atilde:'Latijnse hoofdletter A met een tilde',Auml:'Latijnse hoofdletter A met een trema',Aring:'Latijnse hoofdletter A met een corona',AElig:'Latijnse hoofdletter Æ',Ccedil:'Latijnse hoofdletter C met een cedille',Egrave:'Latijnse hoofdletter E met een accent grave',Eacute:'Latijnse hoofdletter E met een accent aigu',Ecirc:'Latijnse hoofdletter E met een circonflexe',Euml:'Latijnse hoofdletter E met een trema',Igrave:'Latijnse hoofdletter I met een accent grave',Iacute:'Latijnse hoofdletter I met een accent aigu',Icirc:'Latijnse hoofdletter I met een circonflexe',Iuml:'Latijnse hoofdletter I met een trema',ETH:'Latijnse hoofdletter Eth',Ntilde:'Latijnse hoofdletter N met een tilde',Ograve:'Latijnse hoofdletter O met een accent grave',Oacute:'Latijnse hoofdletter O met een accent aigu',Ocirc:'Latijnse hoofdletter O met een circonflexe',Otilde:'Latijnse hoofdletter O met een tilde',Ouml:'Latijnse hoofdletter O met een trema',times:'Maal-teken',Oslash:'Latijnse hoofdletter O met een schuine streep',Ugrave:'Latijnse hoofdletter U met een accent grave',Uacute:'Latijnse hoofdletter U met een accent aigu',Ucirc:'Latijnse hoofdletter U met een circonflexe',Uuml:'Latijnse hoofdletter U met een trema',Yacute:'Latijnse hoofdletter Y met een accent aigu',THORN:'Latijnse hoofdletter Thorn',szlig:'Latijnse kleine ringel-s',agrave:'Latijnse kleine letter a met een accent grave',aacute:'Latijnse kleine letter a met een accent aigu',acirc:'Latijnse kleine letter a met een circonflexe',atilde:'Latijnse kleine letter a met een tilde',auml:'Latijnse kleine letter a met een trema',aring:'Latijnse kleine letter a met een corona',aelig:'Latijnse kleine letter æ',ccedil:'Latijnse kleine letter c met een cedille',egrave:'Latijnse kleine letter e met een accent grave',eacute:'Latijnse kleine letter e met een accent aigu',ecirc:'Latijnse kleine letter e met een circonflexe',euml:'Latijnse kleine letter e met een trema',igrave:'Latijnse kleine letter i met een accent grave',iacute:'Latijnse kleine letter i met een accent aigu',icirc:'Latijnse kleine letter i met een circonflexe',iuml:'Latijnse kleine letter i met een trema',eth:'Latijnse kleine letter eth',ntilde:'Latijnse kleine letter n met een tilde',ograve:'Latijnse kleine letter o met een accent grave',oacute:'Latijnse kleine letter o met een accent aigu',ocirc:'Latijnse kleine letter o met een circonflexe',otilde:'Latijnse kleine letter o met een tilde',ouml:'Latijnse kleine letter o met een trema',divide:'Deel-teken',oslash:'Latijnse kleine letter o met een schuine streep',ugrave:'Latijnse kleine letter u met een accent grave',uacute:'Latijnse kleine letter u met een accent aigu',ucirc:'Latijnse kleine letter u met een circonflexe',uuml:'Latijnse kleine letter u met een trema',yacute:'Latijnse kleine letter y met een accent aigu',thorn:'Latijnse kleine letter thorn',yuml:'Latijnse kleine letter y met een trema',OElig:'Latijnse hoofdletter Œ',oelig:'Latijnse kleine letter œ',372:'Latijnse hoofdletter W met een circonflexe',374:'Latijnse hoofdletter Y met een circonflexe',373:'Latijnse kleine letter w met een circonflexe',375:'Latijnse kleine letter y met een circonflexe',sbquo:'Lage enkele aanhalingsteken',8219:'Hoge omgekeerde enkele aanhalingsteken',bdquo:'Lage dubbele aanhalingsteken',hellip:'Beletselteken',trade:'Trademark-teken',9658:'Zwarte driehoek naar rechts',bull:'Bullet',rarr:'Pijl naar rechts',rArr:'Dubbele pijl naar rechts',hArr:'Dubbele pijl naar links',diams:'Zwart ruitje',asymp:'Benaderingsteken'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/pt-br.js0000664000175000017500000000735312262650742026326 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','pt-br',{euro:'Euro',lsquo:'Aspas simples esquerda',rsquo:'Aspas simples direita',ldquo:'Aspas duplas esquerda',rdquo:'Aspas duplas direita',ndash:'Traço',mdash:'Travessão',iexcl:'Ponto de exclamação invertido',cent:'Cent',pound:'Cerquilha',curren:'Dinheiro',yen:'Yen',brvbar:'Bara interrompida',sect:'Símbolo de Parágrafo',uml:'Trema',copy:'Direito de Cópia',ordf:'Indicador ordinal feminino',laquo:'Aspas duplas angulares esquerda',not:'Negação',reg:'Marca Registrada',macr:'Mácron',deg:'Grau',sup2:'2 Superscrito',sup3:'3 Superscrito',acute:'Acento agudo',micro:'Micro',para:'Pé de mosca',middot:'Ponto mediano',cedil:'Cedilha',sup1:'1 Superscrito',ordm:'Indicador ordinal masculino',raquo:'Aspas duplas angulares direita',frac14:'Um quarto',frac12:'Um meio',frac34:'Três quartos',iquest:'Interrogação invertida',Agrave:'A maiúsculo com acento grave',Aacute:'A maiúsculo com acento agudo',Acirc:'A maiúsculo com acento circunflexo',Atilde:'A maiúsculo com til',Auml:'A maiúsculo com trema',Aring:'A maiúsculo com anel acima',AElig:'Æ maiúsculo',Ccedil:'Ç maiúlculo',Egrave:'E maiúsculo com acento grave',Eacute:'E maiúsculo com acento agudo',Ecirc:'E maiúsculo com acento circumflexo',Euml:'E maiúsculo com trema',Igrave:'I maiúsculo com acento grave',Iacute:'I maiúsculo com acento agudo',Icirc:'I maiúsculo com acento circunflexo',Iuml:'I maiúsculo com crase',ETH:'Eth maiúsculo',Ntilde:'N maiúsculo com til',Ograve:'O maiúsculo com acento grave',Oacute:'O maiúsculo com acento agudo',Ocirc:'O maiúsculo com acento circunflexo',Otilde:'O maiúsculo com til',Ouml:'O maiúsculo com trema',times:'Multiplicação',Oslash:'Diâmetro',Ugrave:'U maiúsculo com acento grave',Uacute:'U maiúsculo com acento agudo',Ucirc:'U maiúsculo com acento circunflexo',Uuml:'U maiúsculo com trema',Yacute:'Y maiúsculo com acento agudo',THORN:'Thorn maiúsculo',szlig:'Eszett minúsculo',agrave:'a minúsculo com acento grave',aacute:'a minúsculo com acento agudo',acirc:'a minúsculo com acento circunflexo',atilde:'a minúsculo com til',auml:'a minúsculo com trema',aring:'a minúsculo com anel acima',aelig:'æ minúsculo',ccedil:'ç minúsculo',egrave:'e minúsculo com acento grave',eacute:'e minúsculo com acento agudo',ecirc:'e minúsculo com acento circunflexo',euml:'e minúsculo com trema',igrave:'i minúsculo com acento grave',iacute:'i minúsculo com acento agudo',icirc:'i minúsculo com acento circunflexo',iuml:'i minúsculo com trema',eth:'eth minúsculo',ntilde:'n minúsculo com til',ograve:'o minúsculo com acento grave',oacute:'o minúsculo com acento agudo',ocirc:'o minúsculo com acento circunflexo',otilde:'o minúsculo com til',ouml:'o minúsculo com trema',divide:'Divisão',oslash:'o minúsculo com cortado ou diâmetro',ugrave:'u minúsculo com acento grave',uacute:'u minúsculo com acento agudo',ucirc:'u minúsculo com acento circunflexo',uuml:'u minúsculo com trema',yacute:'y minúsculo com acento agudo',thorn:'thorn minúsculo',yuml:'y minúsculo com trema',OElig:'Ligação tipográfica OE maiúscula',oelig:'Ligação tipográfica oe minúscula',372:'W maiúsculo com acento circunflexo',374:'Y maiúsculo com acento circunflexo',373:'w minúsculo com acento circunflexo',375:'y minúsculo com acento circunflexo',sbquo:'Aspas simples inferior direita',8219:'Aspas simples superior esquerda',bdquo:'Aspas duplas inferior direita',hellip:'Reticências',trade:'Trade mark',9658:'Ponta de seta preta para direita',bull:'Ponto lista',rarr:'Seta para direita',rArr:'Seta dupla para direita',hArr:'Seta dupla direita e esquerda',diams:'Ouros',asymp:'Aproximadamente'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/ug.js0000664000175000017500000001150612262650742025710 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','ug',{euro:'ياۋرو بەلگىسى',lsquo:'يالاڭ پەش سول',rsquo:'يالاڭ پەش ئوڭ',ldquo:'قوش پەش سول',rdquo:'قوش پەش ئوڭ',ndash:'سىزىقچە',mdash:'سىزىق',iexcl:'ئۈندەش',cent:'تىيىن بەلگىسى',pound:'فوند ستېرلىڭ',curren:'پۇل بەلگىسى',yen:'ياپونىيە يىنى',brvbar:'ئۈزۈك بالداق',sect:'پاراگراف بەلگىسى',uml:'تاۋۇش ئايرىش بەلگىسى',copy:'نەشر ھوقۇقى بەلگىسى',ordf:'Feminine ordinal indicator',laquo:'قوش تىرناق سول',not:'غەيرى بەلگە',reg:'خەتلەتكەن تاۋار ماركىسى',macr:'سوزۇش بەلگىسى',deg:'گىرادۇس بەلگىسى',sup2:'يۇقىرى ئىندېكىس 2',sup3:'يۇقىرى ئىندېكىس 3',acute:'ئۇرغۇ بەلگىسى',micro:'Micro sign',para:'ئابزاس بەلگىسى',middot:'ئوتتۇرا چېكىت',cedil:'ئاستىغا قوشۇلىدىغان بەلگە',sup1:'يۇقىرى ئىندېكىس 1',ordm:'Masculine ordinal indicator',raquo:'قوش تىرناق ئوڭ',frac14:'ئاددىي كەسىر تۆتتىن بىر',frac12:'ئاددىي كەسىر ئىككىدىن بىر',frac34:'ئاددىي كەسىر ئۈچتىن تۆرت',iquest:'Inverted question mark',Agrave:'Latin capital letter A with grave accent',Aacute:'Latin capital letter A with acute accent',Acirc:'Latin capital letter A with circumflex',Atilde:'Latin capital letter A with tilde',Auml:'Latin capital letter A with diaeresis',Aring:'Latin capital letter A with ring above',AElig:'Latin Capital letter Æ',Ccedil:'Latin capital letter C with cedilla',Egrave:'Latin capital letter E with grave accent',Eacute:'Latin capital letter E with acute accent',Ecirc:'Latin capital letter E with circumflex',Euml:'Latin capital letter E with diaeresis',Igrave:'Latin capital letter I with grave accent',Iacute:'Latin capital letter I with acute accent',Icirc:'Latin capital letter I with circumflex',Iuml:'Latin capital letter I with diaeresis',ETH:'Latin capital letter Eth',Ntilde:'Latin capital letter N with tilde',Ograve:'قوش پەش ئوڭ',Oacute:'Latin capital letter O with acute accent',Ocirc:'Latin capital letter O with circumflex',Otilde:'Latin capital letter O with tilde',Ouml:'Latin capital letter O with diaeresis',times:'Multiplication sign',Oslash:'Latin capital letter O with stroke',Ugrave:'Latin capital letter U with grave accent',Uacute:'Latin capital letter U with acute accent',Ucirc:'Latin capital letter U with circumflex',Uuml:'Latin capital letter U with diaeresis',Yacute:'Latin capital letter Y with acute accent',THORN:'Latin capital letter Thorn',szlig:'Latin small letter sharp s',agrave:'Latin small letter a with grave accent',aacute:'Latin small letter a with acute accent',acirc:'Latin small letter a with circumflex',atilde:'Latin small letter a with tilde',auml:'Latin small letter a with diaeresis',aring:'Latin small letter a with ring above',aelig:'Latin small letter æ',ccedil:'Latin small letter c with cedilla',egrave:'Latin small letter e with grave accent',eacute:'Latin small letter e with acute accent',ecirc:'Latin small letter e with circumflex',euml:'Latin small letter e with diaeresis',igrave:'Latin small letter i with grave accent',iacute:'Latin small letter i with acute accent',icirc:'Latin small letter i with circumflex',iuml:'Latin small letter i with diaeresis',eth:'Latin small letter eth',ntilde:'تىك موللاق سوئال بەلگىسى',ograve:'Latin small letter o with grave accent',oacute:'Latin small letter o with acute accent',ocirc:'Latin small letter o with circumflex',otilde:'Latin small letter o with tilde',ouml:'Latin small letter o with diaeresis',divide:'Division sign',oslash:'Latin small letter o with stroke',ugrave:'Latin small letter u with grave accent',uacute:'Latin small letter u with acute accent',ucirc:'Latin small letter u with circumflex',uuml:'Latin small letter u with diaeresis',yacute:'Latin small letter y with acute accent',thorn:'Latin small letter thorn',yuml:'Latin small letter y with diaeresis',OElig:'Latin capital ligature OE',oelig:'Latin small ligature oe',372:'Latin capital letter W with circumflex',374:'Latin capital letter Y with circumflex',373:'Latin small letter w with circumflex',375:'Latin small letter y with circumflex',sbquo:'Single low-9 quotation mark',8219:'Single high-reversed-9 quotation mark',bdquo:'Double low-9 quotation mark',hellip:'Horizontal ellipsis',trade:'Trade mark sign',9658:'Black right-pointing pointer',bull:'Bullet',rarr:'ئوڭ يا ئوق',rArr:'ئوڭ قوش سىزىق يا ئوق',hArr:'ئوڭ سول قوش سىزىق يا ئوق',diams:'ئۇيۇل غىچ',asymp:'تەخمىنەن تەڭ'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/tr.js0000664000175000017500000001056312262650742025724 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','tr',{euro:'Euro işareti',lsquo:'Sol tek tırnak işareti',rsquo:'Sağ tek tırnak işareti',ldquo:'Sol çift tırnak işareti',rdquo:'Sağ çift tırnak işareti',ndash:'En tire',mdash:'Em tire',iexcl:'Ters ünlem işareti',cent:'Cent işareti',pound:'Pound işareti',curren:'Para birimi işareti',yen:'Yen işareti',brvbar:'Kırık bar',sect:'Bölüm işareti',uml:'İki sesli harfin ayrılması',copy:'Telif hakkı işareti',ordf:'Dişil sıralı gösterge',laquo:'Sol-işaret çift açı tırnak işareti',not:'Not işareti',reg:'Kayıtlı işareti',macr:'Makron',deg:'Derece işareti',sup2:'İkili üstsimge',sup3:'Üçlü üstsimge',acute:'Aksan işareti',micro:'Mikro işareti',para:'Pilcrow işareti',middot:'Orta nokta',cedil:'Kedilla',sup1:'Üstsimge',ordm:'Eril sıralı gösterge',raquo:'Sağ işaret çift açı tırnak işareti',frac14:'Bayağı kesrin dörtte biri',frac12:'Bayağı kesrin bir yarım',frac34:'Bayağı kesrin dörtte üç',iquest:'Ters soru işareti',Agrave:'Aksanlı latin harfi',Aacute:'Aşırı aksanıyla Latin harfi',Acirc:'Çarpık Latin harfi',Atilde:'Tilde latin harfi',Auml:'Sesli harf ayrılımlıı latin harfi',Aring:'Halkalı latin büyük A harfi',AElig:'Latin büyük Æ harfi',Ccedil:'Latin büyük C harfi ile kedilla',Egrave:'Aksanlı latin büyük E harfi',Eacute:'Aşırı vurgulu latin büyük E harfi',Ecirc:'Çarpık latin büyük E harfi',Euml:'Sesli harf ayrılımlıı latin büyük E harfi',Igrave:'Aksanlı latin büyük I harfi',Iacute:'Aşırı aksanlı latin büyük I harfi',Icirc:'Çarpık latin büyük I harfi',Iuml:'Sesli harf ayrılımlıı latin büyük I harfi',ETH:'Latin büyük Eth harfi',Ntilde:'Tildeli latin büyük N harfi',Ograve:'Aksanlı latin büyük O harfi',Oacute:'Aşırı aksanlı latin büyük O harfi',Ocirc:'Çarpık latin büyük O harfi',Otilde:'Tildeli latin büyük O harfi',Ouml:'Sesli harf ayrılımlı latin büyük O harfi',times:'Çarpma işareti',Oslash:'Vurgulu latin büyük O harfi',Ugrave:'Aksanlı latin büyük U harfi',Uacute:'Aşırı aksanlı latin büyük U harfi',Ucirc:'Çarpık latin büyük U harfi',Uuml:'Sesli harf ayrılımlı latin büyük U harfi',Yacute:'Aşırı aksanlı latin büyük Y harfi',THORN:'Latin büyük Thorn harfi',szlig:'Latin küçük keskin s harfi',agrave:'Aksanlı latin küçük a harfi',aacute:'Aşırı aksanlı latin küçük a harfi',acirc:'Çarpık latin küçük a harfi',atilde:'Tildeli latin küçük a harfi',auml:'Sesli harf ayrılımlı latin küçük a harfi',aring:'Halkalı latin küçük a harfi',aelig:'Latin büyük æ harfi',ccedil:'Kedillalı latin küçük c harfi',egrave:'Aksanlı latin küçük e harfi',eacute:'Aşırı aksanlı latin küçük e harfi',ecirc:'Çarpık latin küçük e harfi',euml:'Sesli harf ayrılımlı latin küçük e harfi',igrave:'Aksanlı latin küçük i harfi',iacute:'Aşırı aksanlı latin küçük i harfi',icirc:'Çarpık latin küçük i harfi',iuml:'Sesli harf ayrılımlı latin küçük i harfi',eth:'Latin küçük eth harfi',ntilde:'Tildeli latin küçük n harfi',ograve:'Aksanlı latin küçük o harfi',oacute:'Aşırı aksanlı latin küçük o harfi',ocirc:'Çarpık latin küçük o harfi',otilde:'Tildeli latin küçük o harfi',ouml:'Sesli harf ayrılımlı latin küçük o harfi',divide:'Bölme işareti',oslash:'Vurgulu latin küçük o harfi',ugrave:'Aksanlı latin küçük u harfi',uacute:'Aşırı aksanlı latin küçük u harfi',ucirc:'Çarpık latin küçük u harfi',uuml:'Sesli harf ayrılımlı latin küçük u harfi',yacute:'Aşırı aksanlı latin küçük y harfi',thorn:'Latin küçük thorn harfi',yuml:'Sesli harf ayrılımlı latin küçük y harfi',OElig:'Latin büyük bağlı OE harfi',oelig:'Latin küçük bağlı oe harfi',372:'Çarpık latin büyük W harfi',374:'Çarpık latin büyük Y harfi',373:'Çarpık latin küçük w harfi',375:'Çarpık latin küçük y harfi',sbquo:'Tek düşük-9 tırnak işareti',8219:'Tek yüksek-ters-9 tırnak işareti',bdquo:'Çift düşük-9 tırnak işareti',hellip:'Yatay elips',trade:'Marka tescili işareti',9658:'Siyah sağ işaret işaretçisi',bull:'Koyu nokta',rarr:'Sağa doğru ok',rArr:'Sağa doğru çift ok',hArr:'Sol, sağ çift ok',diams:'Siyah elmas takımı',asymp:'Hemen hemen eşit'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/_translationstatus.txt0000664000175000017500000000154312262650742031441 0ustar chmrrchmrrCopyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license cs.js Found: 118 Missing: 0 cy.js Found: 118 Missing: 0 de.js Found: 118 Missing: 0 el.js Found: 16 Missing: 102 eo.js Found: 118 Missing: 0 et.js Found: 31 Missing: 87 fa.js Found: 24 Missing: 94 fi.js Found: 23 Missing: 95 fr.js Found: 118 Missing: 0 he.js Found: 1 Missing: 117 hr.js Found: 23 Missing: 95 it.js Found: 118 Missing: 0 ku.js Found: 118 Missing: 0 lv.js Found: 118 Missing: 0 nb.js Found: 118 Missing: 0 nl.js Found: 118 Missing: 0 no.js Found: 118 Missing: 0 pt-br.js Found: 118 Missing: 0 sk.js Found: 118 Missing: 0 tr.js Found: 118 Missing: 0 ug.js Found: 39 Missing: 79 zh-cn.js Found: 118 Missing: 0 rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/lv.js0000664000175000017500000001162112262650742025714 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','lv',{euro:'Euro zīme',lsquo:'Kreisā vienkārtīga pēdiņa',rsquo:'Labā vienkārtīga pēdiņa',ldquo:'Kreisā dubult pēdiņa',rdquo:'Labā dubult pēdiņa',ndash:'En svītra',mdash:'Em svītra',iexcl:'Apgriezta izsaukuma zīme',cent:'Centu naudas zīme',pound:'Sterliņu mārciņu naudas zīme',curren:'Valūtas zīme',yen:'Jenu naudas zīme',brvbar:'Vertikāla pārrauta līnija',sect:'Paragrāfa zīme',uml:'Diakritiska zīme',copy:'Autortiesību zīme',ordf:'Sievišķas kārtas rādītājs',laquo:'Kreisā dubult stūra pēdiņu zīme',not:'Neparakstīts',reg:'Reģistrēta zīme',macr:'Garumzīme',deg:'Grādu zīme',sup2:'Augšraksts divi',sup3:'Augšraksts trīs',acute:'Akūta uzsvara zīme',micro:'Mikro zīme',para:'Rindkopas zīme ',middot:'Vidējs punkts',cedil:'Āķītis zem burta',sup1:'Augšraksts viens',ordm:'Vīrišķīgas kārtas rādītājs',raquo:'Labā dubult stūra pēdiņu zīme',frac14:'Vulgāra frakcija 1/4',frac12:'Vulgāra frakcija 1/2',frac34:'Vulgāra frakcija 3/4',iquest:'Apgriezta jautājuma zīme',Agrave:'Lielais latīņu burts A ar uzsvara zīmi',Aacute:'Lielais latīņu burts A ar akūtu uzsvara zīmi',Acirc:'Lielais latīņu burts A ar diakritisku zīmi',Atilde:'Lielais latīņu burts A ar tildi ',Auml:'Lielais latīņu burts A ar diakritisko zīmi',Aring:'Lielais latīņu burts A ar aplīti augšā',AElig:'Lielais latīņu burts Æ',Ccedil:'Lielais latīņu burts C ar āķīti zem burta',Egrave:'Lielais latīņu burts E ar apostrofu',Eacute:'Lielais latīņu burts E ar akūtu uzsvara zīmi',Ecirc:'Lielais latīņu burts E ar diakritisko zīmi',Euml:'Lielais latīņu burts E ar diakritisko zīmi',Igrave:'Lielais latīņu burts I ar uzsvaras zīmi',Iacute:'Lielais latīņu burts I ar akūtu uzsvara zīmi',Icirc:'Lielais latīņu burts I ar diakritisko zīmi',Iuml:'Lielais latīņu burts I ar diakritisko zīmi',ETH:'Lielais latīņu burts Eth',Ntilde:'Lielais latīņu burts N ar tildi',Ograve:'Lielais latīņu burts O ar uzsvara zīmi',Oacute:'Lielais latīņu burts O ar akūto uzsvara zīmi',Ocirc:'Lielais latīņu burts O ar diakritisko zīmi',Otilde:'Lielais latīņu burts O ar tildi',Ouml:'Lielais latīņu burts O ar diakritisko zīmi',times:'Reizināšanas zīme ',Oslash:'Lielais latīņu burts O ar iesvītrojumu',Ugrave:'Lielais latīņu burts U ar uzsvaras zīmi',Uacute:'Lielais latīņu burts U ar akūto uzsvars zīmi',Ucirc:'Lielais latīņu burts U ar diakritisko zīmi',Uuml:'Lielais latīņu burts U ar diakritisko zīmi',Yacute:'Lielais latīņu burts Y ar akūto uzsvaras zīmi',THORN:'Lielais latīņu burts torn',szlig:'Mazs latīņu burts ar ligatūru',agrave:'Mazs latīņu burts a ar uzsvara zīmi',aacute:'Mazs latīņu burts a ar akūto uzsvara zīmi',acirc:'Mazs latīņu burts a ar diakritisko zīmi',atilde:'Mazs latīņu burts a ar tildi',auml:'Mazs latīņu burts a ar diakritisko zīmi',aring:'Mazs latīņu burts a ar aplīti augšā',aelig:'Mazs latīņu burts æ',ccedil:'Mazs latīņu burts c ar āķīti zem burta',egrave:'Mazs latīņu burts e ar uzsvara zīmi ',eacute:'Mazs latīņu burts e ar akūtu uzsvara zīmi',ecirc:'Mazs latīņu burts e ar diakritisko zīmi',euml:'Mazs latīņu burts e ar diakritisko zīmi',igrave:'Mazs latīņu burts i ar uzsvara zīmi ',iacute:'Mazs latīņu burts i ar akūtu uzsvara zīmi',icirc:'Mazs latīņu burts i ar diakritisko zīmi',iuml:'Mazs latīņu burts i ar diakritisko zīmi',eth:'Mazs latīņu burts eth',ntilde:'Mazs latīņu burts n ar tildi',ograve:'Mazs latīņu burts o ar uzsvara zīmi ',oacute:'Mazs latīņu burts o ar akūtu uzsvara zīmi',ocirc:'Mazs latīņu burts o ar diakritisko zīmi',otilde:'Mazs latīņu burts o ar tildi',ouml:'Mazs latīņu burts o ar diakritisko zīmi',divide:'Dalīšanas zīme',oslash:'Mazs latīņu burts o ar iesvītrojumu',ugrave:'Mazs latīņu burts u ar uzsvara zīmi ',uacute:'Mazs latīņu burts u ar akūtu uzsvara zīmi',ucirc:'Mazs latīņu burts u ar diakritisko zīmi',uuml:'Mazs latīņu burts u ar diakritisko zīmi',yacute:'Mazs latīņu burts y ar akūtu uzsvaras zīmi',thorn:'Mazs latīņu burts torns',yuml:'Mazs latīņu burts y ar diakritisko zīmi',OElig:'Liela latīņu ligatūra OE',oelig:'Maza latīņu ligatūra oe',372:'Liels latīņu burts W ar diakritisko zīmi ',374:'Liels latīņu burts Y ar diakritisko zīmi ',373:'Mazs latīņu burts w ar diakritisko zīmi ',375:'Mazs latīņu burts y ar diakritisko zīmi ',sbquo:'Mazas-9 vienkārtīgas pēdiņas',8219:'Lielas-9 vienkārtīgas apgrieztas pēdiņas',bdquo:'Mazas-9 dubultas pēdiņas',hellip:'Horizontāli daudzpunkti',trade:'Preču zīmes zīme',9658:'Melns pa labi pagriezts radītājs',bull:'Lode',rarr:'Bulta pa labi',rArr:'Dubulta Bulta pa labi',hArr:'Bulta pa kreisi',diams:'Dubulta Bulta pa kreisi',asymp:'Gandrīz vienāds ar'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/fr.js0000664000175000017500000000737512262650742025715 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','fr',{euro:'Symbole Euro',lsquo:'Guillemet simple ouvrant',rsquo:'Guillemet simple fermant',ldquo:'Guillemet double ouvrant',rdquo:'Guillemet double fermant',ndash:'Tiret haut',mdash:'Tiret bas underscore',iexcl:"Point d'exclamation inversé",cent:'Symbole Cent',pound:'Symbole Livre Sterling',curren:'Symbole monétaire',yen:'Symbole Yen',brvbar:'Barre verticale scindée',sect:'Section',uml:'Tréma',copy:'Symbole Copyright',ordf:'Indicateur ordinal féminin',laquo:'Guillemet français ouvrant',not:'Crochet de négation',reg:'Marque déposée',macr:'Macron',deg:'Degré',sup2:'Exposant 2',sup3:'\\tExposant 3',acute:'Accent aigu',micro:'Omicron',para:'Paragraphe',middot:'Point médian',cedil:'Cédille',sup1:'\\tExposant 1',ordm:'Indicateur ordinal masculin',raquo:'Guillemet français fermant',frac14:'Un quart',frac12:'Un demi',frac34:'Trois quarts',iquest:"Point d'interrogation inversé",Agrave:'A majuscule accent grave',Aacute:'A majuscule accent aigu',Acirc:'A majuscule accent circonflexe',Atilde:'A majuscule avec caron',Auml:'A majuscule tréma',Aring:'A majuscule avec un rond au-dessus',AElig:'Æ majuscule ligaturés',Ccedil:'C majuscule cédille',Egrave:'E majuscule accent grave',Eacute:'E majuscule accent aigu',Ecirc:'E majuscule accent circonflexe',Euml:'E majuscule tréma',Igrave:'I majuscule accent grave',Iacute:'I majuscule accent aigu',Icirc:'I majuscule accent circonflexe',Iuml:'I majuscule tréma',ETH:'Lettre majuscule islandaise ED',Ntilde:'N majuscule avec caron',Ograve:'O majuscule accent grave',Oacute:'O majuscule accent aigu',Ocirc:'O majuscule accent circonflexe',Otilde:'O majuscule avec caron',Ouml:'O majuscule tréma',times:'Multiplication',Oslash:'O majuscule barré',Ugrave:'U majuscule accent grave',Uacute:'U majuscule accent aigu',Ucirc:'U majuscule accent circonflexe',Uuml:'U majuscule tréma',Yacute:'Y majuscule accent aigu',THORN:'Lettre islandaise Thorn majuscule',szlig:'Lettre minuscule allemande s dur',agrave:'a minuscule accent grave',aacute:'a minuscule accent aigu',acirc:'a minuscule accent circonflexe',atilde:'a minuscule avec caron',auml:'a minuscule tréma',aring:'a minuscule avec un rond au-dessus',aelig:'æ minuscule ligaturés',ccedil:'c minuscule cédille',egrave:'e minuscule accent grave',eacute:'e minuscule accent aigu',ecirc:'e minuscule accent circonflexe',euml:'e minuscule tréma',igrave:'i minuscule accent grave',iacute:'i minuscule accent aigu',icirc:'i minuscule accent circonflexe',iuml:'i minuscule tréma',eth:'Lettre minuscule islandaise ED',ntilde:'n minuscule avec caron',ograve:'o minuscule accent grave',oacute:'o minuscule accent aigu',ocirc:'o minuscule accent circonflexe',otilde:'o minuscule avec caron',ouml:'o minuscule tréma',divide:'Division',oslash:'o minuscule barré',ugrave:'u minuscule accent grave',uacute:'u minuscule accent aigu',ucirc:'u minuscule accent circonflexe',uuml:'u minuscule tréma',yacute:'y minuscule accent aigu',thorn:'Lettre islandaise thorn minuscule',yuml:'y minuscule tréma',OElig:'ligature majuscule latine Œ',oelig:'ligature minuscule latine œ',372:'W majuscule accent circonflexe',374:'Y majuscule accent circonflexe',373:'w minuscule accent circonflexe',375:'y minuscule accent circonflexe',sbquo:'Guillemet simple fermant (anglais)',8219:'Guillemet-virgule supérieur culbuté',bdquo:'Guillemet-virgule double inférieur',hellip:'Points de suspension',trade:'Marque commerciale (trade mark)',9658:'Flèche noire pointant vers la droite',bull:'Gros point médian',rarr:'Flèche vers la droite',rArr:'Double flèche vers la droite',hArr:'Double flèche vers la gauche',diams:'Carreau noir',asymp:'Presque égal'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/zh-cn.js0000664000175000017500000001042412262650742026312 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','zh-cn',{euro:'欧元符号',lsquo:'左单引号',rsquo:'右单引号',ldquo:'左双引号',rdquo:'右双引号',ndash:'短划线',mdash:'破折号',iexcl:'竖翻叹号',cent:'分币标记',pound:'英镑标记',curren:'货币标记',yen:'日元标记',brvbar:'间断条',sect:'节标记',uml:'分音符',copy:'版权所有标记',ordf:'阴性顺序指示符',laquo:'左指双尖引号',not:'非标记',reg:'注册标记',macr:'长音符',deg:'度标记',sup2:'上标二',sup3:'上标三',acute:'锐音符',micro:'微符',para:'段落标记',middot:'中间点',cedil:'下加符',sup1:'上标一',ordm:'阳性顺序指示符',raquo:'右指双尖引号',frac14:'普通分数四分之一',frac12:'普通分数二分之一',frac34:'普通分数四分之三',iquest:'竖翻问号',Agrave:'带抑音符的拉丁文大写字母 A',Aacute:'带锐音符的拉丁文大写字母 A',Acirc:'带扬抑符的拉丁文大写字母 A',Atilde:'带颚化符的拉丁文大写字母 A',Auml:'带分音符的拉丁文大写字母 A',Aring:'带上圆圈的拉丁文大写字母 A',AElig:'拉丁文大写字母 Ae',Ccedil:'带下加符的拉丁文大写字母 C',Egrave:'带抑音符的拉丁文大写字母 E',Eacute:'带锐音符的拉丁文大写字母 E',Ecirc:'带扬抑符的拉丁文大写字母 E',Euml:'带分音符的拉丁文大写字母 E',Igrave:'带抑音符的拉丁文大写字母 I',Iacute:'带锐音符的拉丁文大写字母 I',Icirc:'带扬抑符的拉丁文大写字母 I',Iuml:'带分音符的拉丁文大写字母 I',ETH:'拉丁文大写字母 Eth',Ntilde:'带颚化符的拉丁文大写字母 N',Ograve:'带抑音符的拉丁文大写字母 O',Oacute:'带锐音符的拉丁文大写字母 O',Ocirc:'带扬抑符的拉丁文大写字母 O',Otilde:'带颚化符的拉丁文大写字母 O',Ouml:'带分音符的拉丁文大写字母 O',times:'乘号',Oslash:'带粗线的拉丁文大写字母 O',Ugrave:'带抑音符的拉丁文大写字母 U',Uacute:'带锐音符的拉丁文大写字母 U',Ucirc:'带扬抑符的拉丁文大写字母 U',Uuml:'带分音符的拉丁文大写字母 U',Yacute:'带抑音符的拉丁文大写字母 Y',THORN:'拉丁文大写字母 Thorn',szlig:'拉丁文小写字母清音 S',agrave:'带抑音符的拉丁文小写字母 A',aacute:'带锐音符的拉丁文小写字母 A',acirc:'带扬抑符的拉丁文小写字母 A',atilde:'带颚化符的拉丁文小写字母 A',auml:'带分音符的拉丁文小写字母 A',aring:'带上圆圈的拉丁文小写字母 A',aelig:'拉丁文小写字母 Ae',ccedil:'带下加符的拉丁文小写字母 C',egrave:'带抑音符的拉丁文小写字母 E',eacute:'带锐音符的拉丁文小写字母 E',ecirc:'带扬抑符的拉丁文小写字母 E',euml:'带分音符的拉丁文小写字母 E',igrave:'带抑音符的拉丁文小写字母 I',iacute:'带锐音符的拉丁文小写字母 I',icirc:'带扬抑符的拉丁文小写字母 I',iuml:'带分音符的拉丁文小写字母 I',eth:'拉丁文小写字母 Eth',ntilde:'带颚化符的拉丁文小写字母 N',ograve:'带抑音符的拉丁文小写字母 O',oacute:'带锐音符的拉丁文小写字母 O',ocirc:'带扬抑符的拉丁文小写字母 O',otilde:'带颚化符的拉丁文小写字母 O',ouml:'带分音符的拉丁文小写字母 O',divide:'除号',oslash:'带粗线的拉丁文小写字母 O',ugrave:'带抑音符的拉丁文小写字母 U',uacute:'带锐音符的拉丁文小写字母 U',ucirc:'带扬抑符的拉丁文小写字母 U',uuml:'带分音符的拉丁文小写字母 U',yacute:'带抑音符的拉丁文小写字母 Y',thorn:'拉丁文小写字母 Thorn',yuml:'带分音符的拉丁文小写字母 Y',OElig:'拉丁文大写连字 Oe',oelig:'拉丁文小写连字 Oe',372:'带扬抑符的拉丁文大写字母 W',374:'带扬抑符的拉丁文大写字母 Y',373:'带扬抑符的拉丁文小写字母 W',375:'带扬抑符的拉丁文小写字母 Y',sbquo:'单下 9 形引号',8219:'单高横翻 9 形引号',bdquo:'双下 9 形引号',hellip:'水平省略号',trade:'商标标志',9658:'实心右指指针',bull:'加重号',rarr:'向右箭头',rArr:'向右双线箭头',hArr:'左右双线箭头',diams:'实心方块纸牌',asymp:'约等于'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/de.js0000664000175000017500000001114412262650742025663 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','de',{euro:'Euro Zeichen',lsquo:'Hochkomma links',rsquo:'Hochkomma rechts',ldquo:'Anführungszeichen links',rdquo:'Anführungszeichen rechts',ndash:'kleiner Strich',mdash:'mittlerer Strich',iexcl:'invertiertes Ausrufezeichen',cent:'Cent',pound:'Pfund',curren:'Währung',yen:'Yen',brvbar:'gestrichelte Linie',sect:'§ Zeichen',uml:'Diäresis',copy:'Copyright',ordf:'Feminine ordinal Anzeige',laquo:'Nach links zeigenden Doppel-Winkel Anführungszeichen',not:'Not-Zeichen',reg:'Registriert',macr:'Längezeichen',deg:'Grad',sup2:'Hoch 2',sup3:'Hoch 3',acute:'Akzentzeichen ',micro:'Micro',para:'Pilcrow-Zeichen',middot:'Mittelpunkt',cedil:'Cedilla',sup1:'Hoch 1',ordm:'Männliche Ordnungszahl Anzeige',raquo:'Nach rechts zeigenden Doppel-Winkel Anführungszeichen',frac14:'ein Viertel',frac12:'Hälfte',frac34:'Dreiviertel',iquest:'Umgekehrtes Fragezeichen',Agrave:'Lateinischer Buchstabe A mit AkzentGrave',Aacute:'Lateinischer Buchstabe A mit Akutakzent',Acirc:'Lateinischer Buchstabe A mit Zirkumflex',Atilde:'Lateinischer Buchstabe A mit Tilde',Auml:'Lateinischer Buchstabe A mit Trema',Aring:'Lateinischer Buchstabe A mit Ring oben',AElig:'Lateinischer Buchstabe Æ',Ccedil:'Lateinischer Buchstabe C mit Cedille',Egrave:'Lateinischer Buchstabe E mit AkzentGrave',Eacute:'Lateinischer Buchstabe E mit Akutakzent',Ecirc:'Lateinischer Buchstabe E mit Zirkumflex',Euml:'Lateinischer Buchstabe E Trema',Igrave:'Lateinischer Buchstabe I mit AkzentGrave',Iacute:'Lateinischer Buchstabe I mit Akutakzent',Icirc:'Lateinischer Buchstabe I mit Zirkumflex',Iuml:'Lateinischer Buchstabe I mit Trema',ETH:'Lateinischer Buchstabe Eth',Ntilde:'Lateinischer Buchstabe N mit Tilde',Ograve:'Lateinischer Buchstabe O mit AkzentGrave',Oacute:'Lateinischer Buchstabe O mit Akutakzent',Ocirc:'Lateinischer Buchstabe O mit Zirkumflex',Otilde:'Lateinischer Buchstabe O mit Tilde',Ouml:'Lateinischer Buchstabe O mit Trema',times:'Multiplikation',Oslash:'Lateinischer Buchstabe O durchgestrichen',Ugrave:'Lateinischer Buchstabe U mit Akzentgrave',Uacute:'Lateinischer Buchstabe U mit Akutakzent',Ucirc:'Lateinischer Buchstabe U mit Zirkumflex',Uuml:'Lateinischer Buchstabe a mit Trema',Yacute:'Lateinischer Buchstabe a mit Akzent',THORN:'Lateinischer Buchstabe mit Dorn',szlig:'Kleiner lateinischer Buchstabe scharfe s',agrave:'Kleiner lateinischer Buchstabe a mit Accent grave',aacute:'Kleiner lateinischer Buchstabe a mit Akut',acirc:'Lateinischer Buchstabe a mit Zirkumflex',atilde:'Lateinischer Buchstabe a mit Tilde',auml:'Kleiner lateinischer Buchstabe a mit Trema',aring:'Kleiner lateinischer Buchstabe a mit Ring oben',aelig:'Lateinischer Buchstabe æ',ccedil:'Kleiner lateinischer Buchstabe c mit Cedille',egrave:'Kleiner lateinischer Buchstabe e mit Accent grave',eacute:'Kleiner lateinischer Buchstabe e mit Akut',ecirc:'Kleiner lateinischer Buchstabe e mit Zirkumflex',euml:'Kleiner lateinischer Buchstabe e mit Trema',igrave:'Kleiner lateinischer Buchstabe i mit AkzentGrave',iacute:'Kleiner lateinischer Buchstabe i mit Akzent',icirc:'Kleiner lateinischer Buchstabe i mit Zirkumflex',iuml:'Kleiner lateinischer Buchstabe i mit Trema',eth:'Kleiner lateinischer Buchstabe eth',ntilde:'Kleiner lateinischer Buchstabe n mit Tilde',ograve:'Kleiner lateinischer Buchstabe o mit Accent grave',oacute:'Kleiner lateinischer Buchstabe o mit Akzent',ocirc:'Kleiner lateinischer Buchstabe o mit Zirkumflex',otilde:'Lateinischer Buchstabe i mit Tilde',ouml:'Kleiner lateinischer Buchstabe o mit Trema',divide:'Divisionszeichen',oslash:'Kleiner lateinischer Buchstabe o durchgestrichen',ugrave:'Kleiner lateinischer Buchstabe u mit Accent grave',uacute:'Kleiner lateinischer Buchstabe u mit Akut',ucirc:'Kleiner lateinischer Buchstabe u mit Zirkumflex',uuml:'Kleiner lateinischer Buchstabe u mit Trema',yacute:'Kleiner lateinischer Buchstabe y mit Akut',thorn:'Kleiner lateinischer Buchstabe Dorn',yuml:'Kleiner lateinischer Buchstabe y mit Trema',OElig:'Lateinischer Buchstabe Ligatur OE',oelig:'Kleiner lateinischer Buchstabe Ligatur OE',372:'Lateinischer Buchstabe W mit Zirkumflex',374:'Lateinischer Buchstabe Y mit Zirkumflex',373:'Kleiner lateinischer Buchstabe w mit Zirkumflex',375:'Kleiner lateinischer Buchstabe y mit Zirkumflex',sbquo:'Tiefergestelltes Komma',8219:'Rumgedrehtes Komma',bdquo:'Doppeltes Anführungszeichen unten',hellip:'horizontale Auslassungspunkte',trade:'Handelszeichen',9658:'Dreickspfeil rechts',bull:'Bullet',rarr:'Pfeil rechts',rArr:'Doppelpfeil rechts',hArr:'Doppelpfeil links',diams:'Karo',asymp:'Ungefähr'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/fa.js0000664000175000017500000001434512262650742025667 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'specialchar', 'fa', { euro: 'نشان یورو', lsquo: 'علامت نقل قول تکی چپ', rsquo: 'علامت نقل قول تکی راست', ldquo: 'علامت دوتایی نقل قول چپ', rdquo: 'علامت دوتایی نقل قول راست', ndash: 'En dash', // MISSING mdash: 'Em dash', // MISSING iexcl: 'علامت گذاری به عنوان علامت تعجب وارونه', cent: 'نشان سنت', pound: 'نشان پوند', curren: 'نشان ارز', yen: 'نشان ین', brvbar: 'نوار شکسته', sect: 'نشان بخش', uml: 'Diaeresis', // MISSING copy: 'نشان کپی رایت', ordf: 'Feminine ordinal indicator', // MISSING laquo: 'Left-pointing double angle quotation mark', // MISSING not: 'علامت ثبت نشده', reg: 'علامت ثبت شده', macr: 'Macron', // MISSING deg: 'نشان درجه', sup2: 'بالانویس دو', sup3: 'بالانویس سه', acute: 'لهجه غلیظ', micro: 'نشان مایکرو', para: 'Pilcrow sign', // MISSING middot: 'نقطه میانی', cedil: 'Cedilla', // MISSING sup1: 'Superscript one', // MISSING ordm: 'Masculine ordinal indicator', // MISSING raquo: 'نشان زاویه‌دار دوتایی نقل قول راست چین', frac14: 'Vulgar fraction one quarter', // MISSING frac12: 'Vulgar fraction one half', // MISSING frac34: 'Vulgar fraction three quarters', // MISSING iquest: 'Inverted question mark', // MISSING Agrave: 'Latin capital letter A with grave accent', // MISSING Aacute: 'Latin capital letter A with acute accent', // MISSING Acirc: 'Latin capital letter A with circumflex', // MISSING Atilde: 'Latin capital letter A with tilde', // MISSING Auml: 'Latin capital letter A with diaeresis', // MISSING Aring: 'Latin capital letter A with ring above', // MISSING AElig: 'Latin Capital letter Æ', // MISSING Ccedil: 'Latin capital letter C with cedilla', // MISSING Egrave: 'Latin capital letter E with grave accent', // MISSING Eacute: 'Latin capital letter E with acute accent', // MISSING Ecirc: 'Latin capital letter E with circumflex', // MISSING Euml: 'Latin capital letter E with diaeresis', // MISSING Igrave: 'Latin capital letter I with grave accent', // MISSING Iacute: 'Latin capital letter I with acute accent', // MISSING Icirc: 'Latin capital letter I with circumflex', // MISSING Iuml: 'Latin capital letter I with diaeresis', // MISSING ETH: 'Latin capital letter Eth', // MISSING Ntilde: 'Latin capital letter N with tilde', // MISSING Ograve: 'Latin capital letter O with grave accent', // MISSING Oacute: 'Latin capital letter O with acute accent', // MISSING Ocirc: 'Latin capital letter O with circumflex', // MISSING Otilde: 'Latin capital letter O with tilde', // MISSING Ouml: 'Latin capital letter O with diaeresis', // MISSING times: 'Multiplication sign', // MISSING Oslash: 'Latin capital letter O with stroke', // MISSING Ugrave: 'Latin capital letter U with grave accent', // MISSING Uacute: 'Latin capital letter U with acute accent', // MISSING Ucirc: 'Latin capital letter U with circumflex', // MISSING Uuml: 'Latin capital letter U with diaeresis', // MISSING Yacute: 'Latin capital letter Y with acute accent', // MISSING THORN: 'Latin capital letter Thorn', // MISSING szlig: 'Latin small letter sharp s', // MISSING agrave: 'Latin small letter a with grave accent', // MISSING aacute: 'Latin small letter a with acute accent', // MISSING acirc: 'Latin small letter a with circumflex', // MISSING atilde: 'Latin small letter a with tilde', // MISSING auml: 'Latin small letter a with diaeresis', // MISSING aring: 'Latin small letter a with ring above', // MISSING aelig: 'Latin small letter æ', // MISSING ccedil: 'Latin small letter c with cedilla', // MISSING egrave: 'Latin small letter e with grave accent', // MISSING eacute: 'Latin small letter e with acute accent', // MISSING ecirc: 'Latin small letter e with circumflex', // MISSING euml: 'Latin small letter e with diaeresis', // MISSING igrave: 'Latin small letter i with grave accent', // MISSING iacute: 'Latin small letter i with acute accent', // MISSING icirc: 'Latin small letter i with circumflex', // MISSING iuml: 'Latin small letter i with diaeresis', // MISSING eth: 'Latin small letter eth', // MISSING ntilde: 'Latin small letter n with tilde', // MISSING ograve: 'Latin small letter o with grave accent', // MISSING oacute: 'Latin small letter o with acute accent', // MISSING ocirc: 'Latin small letter o with circumflex', // MISSING otilde: 'Latin small letter o with tilde', // MISSING ouml: 'Latin small letter o with diaeresis', // MISSING divide: 'Division sign', // MISSING oslash: 'Latin small letter o with stroke', // MISSING ugrave: 'Latin small letter u with grave accent', // MISSING uacute: 'Latin small letter u with acute accent', // MISSING ucirc: 'Latin small letter u with circumflex', // MISSING uuml: 'Latin small letter u with diaeresis', // MISSING yacute: 'Latin small letter y with acute accent', // MISSING thorn: 'Latin small letter thorn', // MISSING yuml: 'Latin small letter y with diaeresis', // MISSING OElig: 'Latin capital ligature OE', // MISSING oelig: 'Latin small ligature oe', // MISSING '372': 'Latin capital letter W with circumflex', // MISSING '374': 'Latin capital letter Y with circumflex', // MISSING '373': 'Latin small letter w with circumflex', // MISSING '375': 'Latin small letter y with circumflex', // MISSING sbquo: 'Single low-9 quotation mark', // MISSING '8219': 'Single high-reversed-9 quotation mark', // MISSING bdquo: 'Double low-9 quotation mark', // MISSING hellip: 'Horizontal ellipsis', // MISSING trade: 'Trade mark sign', // MISSING '9658': 'Black right-pointing pointer', // MISSING bull: 'Bullet', // MISSING rarr: 'Rightwards arrow', // MISSING rArr: 'Rightwards double arrow', // MISSING hArr: 'جهت‌نمای دوتایی چپ به راست', diams: 'Black diamond suit', // MISSING asymp: 'تقریبا برابر با' }); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/nb.js0000664000175000017500000000653512262650742025702 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','nb',{euro:'Eurosymbol',lsquo:'Venstre enkelt anførselstegn',rsquo:'Høyre enkelt anførselstegn',ldquo:'Venstre dobbelt anførselstegn',rdquo:'Høyre anførsesltegn',ndash:'Kort tankestrek',mdash:'Lang tankestrek',iexcl:'Omvendt utropstegn',cent:'Centsymbol',pound:'Pundsymbol',curren:'Valutategn',yen:'Yensymbol',brvbar:'Brutt loddrett strek',sect:'Paragraftegn',uml:'Tøddel',copy:'Copyrighttegn',ordf:'Feminin ordensindikator',laquo:'Venstre anførselstegn',not:'Negasjonstegn',reg:'Registrert varemerke-tegn',macr:'Makron',deg:'Gradsymbol',sup2:'Hevet totall',sup3:'Hevet tretall',acute:'Akutt aksent',micro:'Mikrosymbol',para:'Avsnittstegn',middot:'Midtstilt prikk',cedil:'Cedille',sup1:'Hevet ettall',ordm:'Maskulin ordensindikator',raquo:'Høyre anførselstegn',frac14:'Fjerdedelsbrøk',frac12:'Halvbrøk',frac34:'Tre fjerdedelers brøk',iquest:'Omvendt spørsmålstegn',Agrave:'Stor A med grav aksent',Aacute:'Stor A med akutt aksent',Acirc:'Stor A med cirkumfleks',Atilde:'Stor A med tilde',Auml:'Stor A med tøddel',Aring:'Stor Å',AElig:'Stor Æ',Ccedil:'Stor C med cedille',Egrave:'Stor E med grav aksent',Eacute:'Stor E med akutt aksent',Ecirc:'Stor E med cirkumfleks',Euml:'Stor E med tøddel',Igrave:'Stor I med grav aksent',Iacute:'Stor I med akutt aksent',Icirc:'Stor I med cirkumfleks',Iuml:'Stor I med tøddel',ETH:'Stor Edd/stungen D',Ntilde:'Stor N med tilde',Ograve:'Stor O med grav aksent',Oacute:'Stor O med akutt aksent',Ocirc:'Stor O med cirkumfleks',Otilde:'Stor O med tilde',Ouml:'Stor O med tøddel',times:'Multiplikasjonstegn',Oslash:'Stor Ø',Ugrave:'Stor U med grav aksent',Uacute:'Stor U med akutt aksent',Ucirc:'Stor U med cirkumfleks',Uuml:'Stor U med tøddel',Yacute:'Stor Y med akutt aksent',THORN:'Stor Thorn',szlig:'Liten dobbelt-s/Eszett',agrave:'Liten a med grav aksent',aacute:'Liten a med akutt aksent',acirc:'Liten a med cirkumfleks',atilde:'Liten a med tilde',auml:'Liten a med tøddel',aring:'Liten å',aelig:'Liten æ',ccedil:'Liten c med cedille',egrave:'Liten e med grav aksent',eacute:'Liten e med akutt aksent',ecirc:'Liten e med cirkumfleks',euml:'Liten e med tøddel',igrave:'Liten i med grav aksent',iacute:'Liten i med akutt aksent',icirc:'Liten i med cirkumfleks',iuml:'Liten i med tøddel',eth:'Liten edd/stungen d',ntilde:'Liten n med tilde',ograve:'Liten o med grav aksent',oacute:'Liten o med akutt aksent',ocirc:'Liten o med cirkumfleks',otilde:'Liten o med tilde',ouml:'Liten o med tøddel',divide:'Divisjonstegn',oslash:'Liten ø',ugrave:'Liten u med grav aksent',uacute:'Liten u med akutt aksent',ucirc:'Liten u med cirkumfleks',uuml:'Liten u med tøddel',yacute:'Liten y med akutt aksent',thorn:'Liten thorn',yuml:'Liten y med tøddel',OElig:'Stor ligatur av O og E',oelig:'Liten ligatur av o og e',372:'Stor W med cirkumfleks',374:'Stor Y med cirkumfleks',373:'Liten w med cirkumfleks',375:'Liten y med cirkumfleks',sbquo:'Enkelt lavt 9-anførselstegn',8219:'Enkelt høyt reversert 9-anførselstegn',bdquo:'Dobbelt lavt 9-anførselstegn',hellip:'Ellipse',trade:'Varemerkesymbol',9658:'Svart høyrevendt peker',bull:'Tykk interpunkt',rarr:'Høyrevendt pil',rArr:'Dobbel høyrevendt pil',hArr:'Dobbel venstrevendt pil',diams:'Svart ruter',asymp:'Omtrent likhetstegn'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/hr.js0000664000175000017500000001063012262650742025703 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','hr',{euro:'Euro znak',lsquo:'Lijevi jednostruki navodnik',rsquo:'Desni jednostruki navodnik',ldquo:'Lijevi dvostruki navodnik',rdquo:'Desni dvostruki navodnik',ndash:'En crtica',mdash:'Em crtica',iexcl:'Naopaki uskličnik',cent:'Cent znak',pound:'Funta znak',curren:'Znak valute',yen:'Yen znak',brvbar:'Potrgana prečka',sect:'Znak odjeljka',uml:'Diaeresis',copy:'Copyright znak',ordf:'Feminine ordinal indicator',laquo:'Lijevi dvostruki uglati navodnik',not:'Not znak',reg:'Registered znak',macr:'Macron',deg:'Stupanj znak',sup2:'Superscript two',sup3:'Superscript three',acute:'Acute accent',micro:'Micro sign',para:'Pilcrow sign',middot:'Srednja točka',cedil:'Cedilla',sup1:'Superscript one',ordm:'Masculine ordinal indicator',raquo:'Desni dvostruku uglati navodnik',frac14:'Vulgar fraction one quarter',frac12:'Vulgar fraction one half',frac34:'Vulgar fraction three quarters',iquest:'Naopaki upitnik',Agrave:'Veliko latinsko slovo A s akcentom',Aacute:'Latin capital letter A with acute accent',Acirc:'Latin capital letter A with circumflex',Atilde:'Latin capital letter A with tilde',Auml:'Latin capital letter A with diaeresis',Aring:'Latin capital letter A with ring above',AElig:'Latin Capital letter Æ',Ccedil:'Latin capital letter C with cedilla',Egrave:'Latin capital letter E with grave accent',Eacute:'Latin capital letter E with acute accent',Ecirc:'Latin capital letter E with circumflex',Euml:'Latin capital letter E with diaeresis',Igrave:'Latin capital letter I with grave accent',Iacute:'Latin capital letter I with acute accent',Icirc:'Latin capital letter I with circumflex',Iuml:'Latin capital letter I with diaeresis',ETH:'Latin capital letter Eth',Ntilde:'Latin capital letter N with tilde',Ograve:'Latin capital letter O with grave accent',Oacute:'Latin capital letter O with acute accent',Ocirc:'Latin capital letter O with circumflex',Otilde:'Latin capital letter O with tilde',Ouml:'Latin capital letter O with diaeresis',times:'Multiplication sign',Oslash:'Latin capital letter O with stroke',Ugrave:'Latin capital letter U with grave accent',Uacute:'Latin capital letter U with acute accent',Ucirc:'Latin capital letter U with circumflex',Uuml:'Latin capital letter U with diaeresis',Yacute:'Latin capital letter Y with acute accent',THORN:'Latin capital letter Thorn',szlig:'Latin small letter sharp s',agrave:'Latin small letter a with grave accent',aacute:'Latin small letter a with acute accent',acirc:'Latin small letter a with circumflex',atilde:'Latin small letter a with tilde',auml:'Latin small letter a with diaeresis',aring:'Latin small letter a with ring above',aelig:'Latin small letter æ',ccedil:'Latin small letter c with cedilla',egrave:'Latin small letter e with grave accent',eacute:'Latin small letter e with acute accent',ecirc:'Latin small letter e with circumflex',euml:'Latin small letter e with diaeresis',igrave:'Latin small letter i with grave accent',iacute:'Latin small letter i with acute accent',icirc:'Latin small letter i with circumflex',iuml:'Latin small letter i with diaeresis',eth:'Latin small letter eth',ntilde:'Latin small letter n with tilde',ograve:'Latin small letter o with grave accent',oacute:'Latin small letter o with acute accent',ocirc:'Latin small letter o with circumflex',otilde:'Latin small letter o with tilde',ouml:'Latin small letter o with diaeresis',divide:'Division sign',oslash:'Latin small letter o with stroke',ugrave:'Latin small letter u with grave accent',uacute:'Latin small letter u with acute accent',ucirc:'Latin small letter u with circumflex',uuml:'Latin small letter u with diaeresis',yacute:'Latin small letter y with acute accent',thorn:'Latin small letter thorn',yuml:'Latin small letter y with diaeresis',OElig:'Latin capital ligature OE',oelig:'Latin small ligature oe',372:'Latin capital letter W with circumflex',374:'Latin capital letter Y with circumflex',373:'Latin small letter w with circumflex',375:'Latin small letter y with circumflex',sbquo:'Single low-9 quotation mark',8219:'Single high-reversed-9 quotation mark',bdquo:'Double low-9 quotation mark',hellip:'Horizontal ellipsis',trade:'Trade mark sign',9658:'Black right-pointing pointer',bull:'Bullet',rarr:'Rightwards arrow',rArr:'Rightwards double arrow',hArr:'Left right double arrow',diams:'Black diamond suit',asymp:'Almost equal to'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/el.js0000664000175000017500000001150012262650742025667 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','el',{euro:'Σύμβολο Ευρώ',lsquo:'Αριστερός χαρακτήρας μονού εισαγωγικού',rsquo:'Δεξιός χαρακτήρας μονού εισαγωγικού',ldquo:'Αριστερός χαρακτήρας διπλού εισαγωγικού',rdquo:'Δεξιός χαρακτήρας διπλού εισαγωγικού',ndash:'Παύλα en',mdash:'Παύλα em',iexcl:'Ανάποδο θαυμαστικό',cent:'Σύμβολο Σεντ',pound:'Σύμβολο λίρας',curren:'Σύμβολο συναλλαγματικής μονάδας',yen:'Σύμβολο Γιέν',brvbar:'Σπασμένη μπάρα',sect:'Σύμβολο τμήματος',uml:'Διαίρεση',copy:'Σύμβολο πνευματικών δικαιωμάτων',ordf:'Feminine ordinal indicator',laquo:'Left-pointing double angle quotation mark',not:'Not sign',reg:'Registered sign',macr:'Macron',deg:'Degree sign',sup2:'Superscript two',sup3:'Superscript three',acute:'Acute accent',micro:'Micro sign',para:'Pilcrow sign',middot:'Middle dot',cedil:'Cedilla',sup1:'Superscript one',ordm:'Masculine ordinal indicator',raquo:'Right-pointing double angle quotation mark',frac14:'Vulgar fraction one quarter',frac12:'Vulgar fraction one half',frac34:'Vulgar fraction three quarters',iquest:'Inverted question mark',Agrave:'Latin capital letter A with grave accent',Aacute:'Latin capital letter A with acute accent',Acirc:'Latin capital letter A with circumflex',Atilde:'Latin capital letter A with tilde',Auml:'Latin capital letter A with diaeresis',Aring:'Latin capital letter A with ring above',AElig:'Latin Capital letter Æ',Ccedil:'Latin capital letter C with cedilla',Egrave:'Latin capital letter E with grave accent',Eacute:'Latin capital letter E with acute accent',Ecirc:'Latin capital letter E with circumflex',Euml:'Latin capital letter E with diaeresis',Igrave:'Latin capital letter I with grave accent',Iacute:'Latin capital letter I with acute accent',Icirc:'Latin capital letter I with circumflex',Iuml:'Latin capital letter I with diaeresis',ETH:'Latin capital letter Eth',Ntilde:'Latin capital letter N with tilde',Ograve:'Latin capital letter O with grave accent',Oacute:'Latin capital letter O with acute accent',Ocirc:'Latin capital letter O with circumflex',Otilde:'Latin capital letter O with tilde',Ouml:'Latin capital letter O with diaeresis',times:'Multiplication sign',Oslash:'Latin capital letter O with stroke',Ugrave:'Latin capital letter U with grave accent',Uacute:'Latin capital letter U with acute accent',Ucirc:'Latin capital letter U with circumflex',Uuml:'Latin capital letter U with diaeresis',Yacute:'Latin capital letter Y with acute accent',THORN:'Latin capital letter Thorn',szlig:'Latin small letter sharp s',agrave:'Latin small letter a with grave accent',aacute:'Latin small letter a with acute accent',acirc:'Latin small letter a with circumflex',atilde:'Latin small letter a with tilde',auml:'Latin small letter a with diaeresis',aring:'Latin small letter a with ring above',aelig:'Latin small letter æ',ccedil:'Latin small letter c with cedilla',egrave:'Latin small letter e with grave accent',eacute:'Latin small letter e with acute accent',ecirc:'Latin small letter e with circumflex',euml:'Latin small letter e with diaeresis',igrave:'Latin small letter i with grave accent',iacute:'Latin small letter i with acute accent',icirc:'Latin small letter i with circumflex',iuml:'Latin small letter i with diaeresis',eth:'Latin small letter eth',ntilde:'Latin small letter n with tilde',ograve:'Latin small letter o with grave accent',oacute:'Latin small letter o with acute accent',ocirc:'Latin small letter o with circumflex',otilde:'Latin small letter o with tilde',ouml:'Latin small letter o with diaeresis',divide:'Division sign',oslash:'Latin small letter o with stroke',ugrave:'Latin small letter u with grave accent',uacute:'Latin small letter u with acute accent',ucirc:'Latin small letter u with circumflex',uuml:'Latin small letter u with diaeresis',yacute:'Latin small letter y with acute accent',thorn:'Latin small letter thorn',yuml:'Latin small letter y with diaeresis',OElig:'Latin capital ligature OE',oelig:'Latin small ligature oe',372:'Latin capital letter W with circumflex',374:'Latin capital letter Y with circumflex',373:'Latin small letter w with circumflex',375:'Latin small letter y with circumflex',sbquo:'Single low-9 quotation mark',8219:'Single high-reversed-9 quotation mark',bdquo:'Double low-9 quotation mark',hellip:'Horizontal ellipsis',trade:'Trade mark sign',9658:'Black right-pointing pointer',bull:'Bullet',rarr:'Rightwards arrow',rArr:'Rightwards double arrow',hArr:'Left right double arrow',diams:'Black diamond suit',asymp:'Almost equal to'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/et.js0000664000175000017500000001061112262650742025701 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','et',{euro:'Euromärk',lsquo:'Alustav ühekordne jutumärk',rsquo:'Lõpetav ühekordne jutumärk',ldquo:'Alustav kahekordne jutumärk',rdquo:'Lõpetav kahekordne jutumärk',ndash:'Enn-kriips',mdash:'Emm-kriips',iexcl:'Pööratud hüüumärk',cent:'Sendimärk',pound:'Naela märk',curren:'Valuutamärk',yen:'Jeeni märk',brvbar:'Katkestatud kriips',sect:'Lõigu märk',uml:'Täpid',copy:'Autoriõiguse märk',ordf:'Feminine ordinal indicator',laquo:'Left-pointing double angle quotation mark',not:'Ei-märk',reg:'Registered sign',macr:'Macron',deg:'Kraadimärk',sup2:'Ülaindeks kaks',sup3:'Ülaindeks kolm',acute:'Acute accent',micro:'Mikro-märk',para:'Pilcrow sign',middot:'Keskpunkt',cedil:'Cedilla',sup1:'Ülaindeks üks',ordm:'Masculine ordinal indicator',raquo:'Right-pointing double angle quotation mark',frac14:'Vulgar fraction one quarter',frac12:'Vulgar fraction one half',frac34:'Vulgar fraction three quarters',iquest:'Inverted question mark',Agrave:'Latin capital letter A with grave accent',Aacute:'Latin capital letter A with acute accent',Acirc:'Latin capital letter A with circumflex',Atilde:'Ladina suur A tildega',Auml:'Latin capital letter A with diaeresis',Aring:'Latin capital letter A with ring above',AElig:'Latin Capital letter Æ',Ccedil:'Latin capital letter C with cedilla',Egrave:'Latin capital letter E with grave accent',Eacute:'Latin capital letter E with acute accent',Ecirc:'Latin capital letter E with circumflex',Euml:'Latin capital letter E with diaeresis',Igrave:'Latin capital letter I with grave accent',Iacute:'Latin capital letter I with acute accent',Icirc:'Latin capital letter I with circumflex',Iuml:'Latin capital letter I with diaeresis',ETH:'Latin capital letter Eth',Ntilde:'Latin capital letter N with tilde',Ograve:'Latin capital letter O with grave accent',Oacute:'Latin capital letter O with acute accent',Ocirc:'Latin capital letter O with circumflex',Otilde:'Latin capital letter O with tilde',Ouml:'Täppidega ladina suur O',times:'Multiplication sign',Oslash:'Latin capital letter O with stroke',Ugrave:'Latin capital letter U with grave accent',Uacute:'Latin capital letter U with acute accent',Ucirc:'Kandilise katusega suur ladina U',Uuml:'Täppidega ladina suur U',Yacute:'Latin capital letter Y with acute accent',THORN:'Latin capital letter Thorn',szlig:'Ladina väike terav s',agrave:'Latin small letter a with grave accent',aacute:'Latin small letter a with acute accent',acirc:'Kandilise katusega ladina väike a',atilde:'Tildega ladina väike a',auml:'Täppidega ladina väike a',aring:'Latin small letter a with ring above',aelig:'Latin small letter æ',ccedil:'Latin small letter c with cedilla',egrave:'Latin small letter e with grave accent',eacute:'Latin small letter e with acute accent',ecirc:'Latin small letter e with circumflex',euml:'Latin small letter e with diaeresis',igrave:'Latin small letter i with grave accent',iacute:'Latin small letter i with acute accent',icirc:'Latin small letter i with circumflex',iuml:'Latin small letter i with diaeresis',eth:'Latin small letter eth',ntilde:'Latin small letter n with tilde',ograve:'Latin small letter o with grave accent',oacute:'Latin small letter o with acute accent',ocirc:'Latin small letter o with circumflex',otilde:'Latin small letter o with tilde',ouml:'Latin small letter o with diaeresis',divide:'Division sign',oslash:'Latin small letter o with stroke',ugrave:'Latin small letter u with grave accent',uacute:'Latin small letter u with acute accent',ucirc:'Latin small letter u with circumflex',uuml:'Latin small letter u with diaeresis',yacute:'Latin small letter y with acute accent',thorn:'Latin small letter thorn',yuml:'Latin small letter y with diaeresis',OElig:'Latin capital ligature OE',oelig:'Latin small ligature oe',372:'Latin capital letter W with circumflex',374:'Latin capital letter Y with circumflex',373:'Latin small letter w with circumflex',375:'Latin small letter y with circumflex',sbquo:'Single low-9 quotation mark',8219:'Single high-reversed-9 quotation mark',bdquo:'Double low-9 quotation mark',hellip:'Horizontal ellipsis',trade:'Trade mark sign',9658:'Black right-pointing pointer',bull:'Bullet',rarr:'Rightwards arrow',rArr:'Rightwards double arrow',hArr:'Left right double arrow',diams:'Black diamond suit',asymp:'Almost equal to'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/ku.js0000664000175000017500000002204512262650742025714 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'specialchar', 'ku', { euro: 'نیشانه‌ی یۆرۆ', lsquo: 'نیشانه‌ی فاریزه‌ی سه‌رووژێری تاکی چه‌پ', rsquo: 'نیشانه‌ی فاریزه‌ی سه‌رووژێری تاکی ڕاست', ldquo: 'نیشانه‌ی فاریزه‌ی سه‌رووژێری دووهێنده‌ی چه‌پ', rdquo: 'نیشانه‌ی فاریزه‌ی سه‌رووژێری دووهێنده‌ی ڕاست', ndash: 'ته‌قه‌ڵی کورت', mdash: 'ته‌قه‌ڵی درێژ', iexcl: 'نیشانه‌ی هه‌ڵه‌وگێڕی سه‌رسوڕمێنه‌ر', cent: 'نیشانه‌ی سه‌نت', pound: 'نیشانه‌ی پاوه‌ند', curren: 'نیشانه‌ی دراو', yen: 'نیشانه‌ی یه‌نی ژاپۆنی', brvbar: 'شریتی ئه‌ستوونی پچڕاو', sect: 'نیشانه‌ی دوو s له‌سه‌ریه‌ك', uml: 'خاڵ', copy: 'نیشانه‌ی مافی چاپ', ordf: 'هێڵ له‌سه‌ر پیتی a', laquo: 'دوو تیری به‌دووایه‌کی چه‌پ', not: 'نیشانه‌ی نه‌خێر', reg: 'نیشانه‌ی R له‌ناو بازنه‌دا', macr: 'ماکڕوون', deg: 'نیشانه‌ی پله', sup2: 'سه‌رنووسی دوو', sup3: 'سه‌رنووسی سێ', acute: 'لاری تیژ', micro: 'نیشانه‌ی u لق درێژی چه‌پی خواروو', para: 'نیشانه‌یپه‌ڕه‌گراف', middot: 'ناوه‌ڕاستی خاڵ', cedil: 'نیشانه‌ی c ژێر چووکره‌', sup1: 'سه‌رنووسی یه‌ك', ordm: 'هێڵ له‌ژێر پیتی o', raquo: 'دوو تیری به‌دووایه‌کی ڕاست', frac14: 'یه‌ك له‌سه‌ر چووار', frac12: 'یه‌ك له‌سه‌ر دوو', frac34: 'سێ له‌سه‌ر چووار', iquest: 'هێمای هه‌ڵه‌وگێری پرسیار', Agrave: 'پیتی لاتینی A-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری لار', Aacute: 'پیتی لاتینی A-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری تیژ', Acirc: 'پیتی لاتینی A-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', Atilde: 'پیتی لاتینی A-ی گه‌وره‌ له‌گه‌ڵ زه‌ڕه‌', Auml: 'پیتی لاتینی A-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', Aring: 'پیتی لاتینی گه‌وره‌ی Å', AElig: 'پیتی لاتینی گه‌وره‌ی Æ', Ccedil: 'پیتی لاتینی C-ی گه‌وره‌ له‌گه‌ڵ ژێر چووکره‌', Egrave: 'پیتی لاتینی E-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری لار', Eacute: 'پیتی لاتینی E-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری تیژ', Ecirc: 'پیتی لاتینی E-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', Euml: 'پیتی لاتینی E-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', Igrave: 'پیتی لاتینی I-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری لار', Iacute: 'پیتی لاتینی I-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری تیژ', Icirc: 'پیتی لاتینی I-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', Iuml: 'پیتی لاتینی I-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', ETH: 'پیتی لاتینی E-ی گه‌وره‌ی', Ntilde: 'پیتی لاتینی N-ی گه‌وره‌ له‌گه‌ڵ زه‌ڕه‌', Ograve: 'پیتی لاتینی O-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری لار', Oacute: 'پیتی لاتینی O-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری تیژ', Ocirc: 'پیتی لاتینی O-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', Otilde: 'پیتی لاتینی O-ی گه‌وره‌ له‌گه‌ڵ زه‌ڕه‌', Ouml: 'پیتی لاتینی O-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', times: 'نیشانه‌ی لێکدان', Oslash: 'پیتی لاتینی گه‌وره‌ی Ø له‌گه‌ڵ هێمای دڵ وه‌ستان', Ugrave: 'پیتی لاتینی U-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری لار', Uacute: 'پیتی لاتینی U-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری تیژ', Ucirc: 'پیتی لاتینی U-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', Uuml: 'پیتی لاتینی U-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', Yacute: 'پیتی لاتینی Y-ی گه‌وره‌ له‌گه‌ڵ ڕوومه‌تداری تیژ', THORN: 'پیتی لاتینی دڕکی گه‌وره', szlig: 'پیتی لاتنی نووك تیژی s', agrave: 'پیتی لاتینی a-ی بچووك له‌گه‌ڵ ڕوومه‌تداری لار', aacute: 'پیتی لاتینی a-ی بچووك له‌گه‌ڵ ڕوومه‌تداری تیژ', acirc: 'پیتی لاتینی a-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', atilde: 'پیتی لاتینی a-ی بچووك له‌گه‌ڵ زه‌ڕه‌', auml: 'پیتی لاتینی a-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', aring: 'پیتی لاتینی å-ی بچووك', aelig: 'پیتی لاتینی æ-ی بچووك', ccedil: 'پیتی لاتینی c-ی بچووك له‌گه‌ڵ ژێر چووکره‌', egrave: 'پیتی لاتینی e-ی بچووك له‌گه‌ڵ ڕوومه‌تداری لار', eacute: 'پیتی لاتینی e-ی بچووك له‌گه‌ڵ ڕوومه‌تداری تیژ', ecirc: 'پیتی لاتینی e-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', euml: 'پیتی لاتینی e-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', igrave: 'پیتی لاتینی i-ی بچووك له‌گه‌ڵ ڕوومه‌تداری لار', iacute: 'پیتی لاتینی i-ی بچووك له‌گه‌ڵ ڕوومه‌تداری تیژ', icirc: 'پیتی لاتینی i-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', iuml: 'پیتی لاتینی i-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', eth: 'پیتی لاتینی e-ی بچووك', ntilde: 'پیتی لاتینی n-ی بچووك له‌گه‌ڵ زه‌ڕه‌', ograve: 'پیتی لاتینی o-ی بچووك له‌گه‌ڵ ڕوومه‌تداری لار', oacute: 'پیتی لاتینی o-ی بچووك له‌گه‌ڵ ڕوومه‌تداری تیژ', ocirc: 'پیتی لاتینی o-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', otilde: 'پیتی لاتینی o-ی بچووك له‌گه‌ڵ زه‌ڕه‌', ouml: 'پیتی لاتینی o-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', divide: 'نیشانه‌ی دابه‌ش', oslash: 'پیتی لاتینی گه‌وره‌ی ø له‌گه‌ڵ هێمای دڵ وه‌ستان', ugrave: 'پیتی لاتینی u-ی بچووك له‌گه‌ڵ ڕوومه‌تداری لار', uacute: 'پیتی لاتینی u-ی بچووك له‌گه‌ڵ ڕوومه‌تداری تیژ', ucirc: 'پیتی لاتینی u-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', uuml: 'پیتی لاتینی u-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', yacute: 'پیتی لاتینی y-ی بچووك له‌گه‌ڵ ڕوومه‌تداری تیژ', thorn: 'پیتی لاتینی دڕکی بچووك', yuml: 'پیتی لاتینی y-ی بچووك له‌گه‌ڵ نیشانه‌ له‌سه‌ری', OElig: 'پیتی لاتینی گه‌وره‌ی پێکه‌وه‌نووسراوی OE', oelig: 'پیتی لاتینی بچووکی پێکه‌وه‌نووسراوی oe', '372': 'پیتی لاتینی W-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', '374': 'پیتی لاتینی Y-ی گه‌وره‌ له‌گه‌ڵ نیشانه‌ له‌سه‌ری', '373': 'پیتی لاتینی w-ی بچووکی له‌گه‌ڵ نیشانه‌ له‌سه‌ری', '375': 'پیتی لاتینی y-ی بچووکی له‌گه‌ڵ نیشانه‌ له‌سه‌ری', sbquo: 'نیشانه‌ی فاریزه‌ی نزم', '8219': 'نیشانه‌ی فاریزه‌ی به‌رزی پێچه‌وانه', bdquo: 'دوو فاریزه‌ی ته‌نیش یه‌ك', hellip: 'ئاسۆیی بازنه', trade: 'نیشانه‌ی بازرگانی', '9658': 'ئاراسته‌ی ڕه‌شی ده‌ستی ڕاست', bull: 'فیشه‌ك', rarr: 'تیری ده‌ستی ڕاست', rArr: 'دووتیری ده‌ستی ڕاست', hArr: 'دوو تیری ڕاست و چه‌پ', diams: 'ڕه‌شی پاقڵاوه‌یی', asymp: 'نیشانه‌ی یه‌کسانه' }); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/eo.js0000664000175000017500000000773012262650742025704 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','eo',{euro:'Eŭrosigno',lsquo:'Supra 6-citilo',rsquo:'Supra 9-citilo',ldquo:'Supra 66-citilo',rdquo:'Supra 99-citilo',ndash:'Streketo',mdash:'Substreko',iexcl:'Renversita krisigno',cent:'Cendosigno',pound:'Pundosigno',curren:'Monersigno',yen:'Enosigno',brvbar:'Rompita vertikala streko',sect:'Kurba paragrafo',uml:'Tremao',copy:'Kopirajtosigno',ordf:'Adjektiva numerfinaĵo',laquo:'Duobla malplio-citilo',not:'Negohoko',reg:'Registrita marko',macr:'Superstreko',deg:'Gradosigno',sup2:'Supra indico 2',sup3:'Supra indico 3',acute:'Dekstra korno',micro:'Mikrosigno',para:'Rekta paragrafo',middot:'Meza punkto',cedil:'Zoeto',sup1:'Supra indico 1',ordm:'Substantiva numerfinaĵo',raquo:'Duobla plio-citilo',frac14:'Kvaronosigno',frac12:'Duonosigno',frac34:'Trikvaronosigno',iquest:'renversita demandosigno',Agrave:'Latina ĉeflitero A kun liva korno',Aacute:'Latina ĉeflitero A kun dekstra korno',Acirc:'Latina ĉeflitero A kun ĉapelo',Atilde:'Latina ĉeflitero A kun tildo',Auml:'Latina ĉeflitero A kun tremao',Aring:'Latina ĉeflitero A kun superringo',AElig:'Latina ĉeflitera ligaturo Æ',Ccedil:'Latina ĉeflitero C kun zoeto',Egrave:'Latina ĉeflitero E kun liva korno',Eacute:'Latina ĉeflitero E kun dekstra korno',Ecirc:'Latina ĉeflitero E kun ĉapelo',Euml:'Latina ĉeflitero E kun tremao',Igrave:'Latina ĉeflitero I kun liva korno',Iacute:'Latina ĉeflitero I kun dekstra korno',Icirc:'Latina ĉeflitero I kun ĉapelo',Iuml:'Latina ĉeflitero I kun tremao',ETH:'Latina ĉeflitero islanda edo',Ntilde:'Latina ĉeflitero N kun tildo',Ograve:'Latina ĉeflitero O kun liva korno',Oacute:'Latina ĉeflitero O kun dekstra korno',Ocirc:'Latina ĉeflitero O kun ĉapelo',Otilde:'Latina ĉeflitero O kun tildo',Ouml:'Latina ĉeflitero O kun tremao',times:'Multipliko',Oslash:'Latina ĉeflitero O trastrekita',Ugrave:'Latina ĉeflitero U kun liva korno',Uacute:'Latina ĉeflitero U kun dekstra korno',Ucirc:'Latina ĉeflitero U kun ĉapelo',Uuml:'Latina ĉeflitero U kun tremao',Yacute:'Latina ĉeflitero Y kun dekstra korno',THORN:'Latina ĉeflitero islanda dorno',szlig:'Latina etlitero germana sozo (akra s)',agrave:'Latina etlitero a kun liva korno',aacute:'Latina etlitero a kun dekstra korno',acirc:'Latina etlitero a kun ĉapelo',atilde:'Latina etlitero a kun tildo',auml:'Latina etlitero a kun tremao',aring:'Latina etlitero a kun superringo',aelig:'Latina etlitera ligaturo æ',ccedil:'Latina etlitero c kun zoeto',egrave:'Latina etlitero e kun liva korno',eacute:'Latina etlitero e kun dekstra korno',ecirc:'Latina etlitero e kun ĉapelo',euml:'Latina etlitero e kun tremao',igrave:'Latina etlitero i kun liva korno',iacute:'Latina etlitero i kun dekstra korno',icirc:'Latina etlitero i kun ĉapelo',iuml:'Latina etlitero i kun tremao',eth:'Latina etlitero islanda edo',ntilde:'Latina etlitero n kun tildo',ograve:'Latina etlitero o kun liva korno',oacute:'Latina etlitero o kun dekstra korno',ocirc:'Latina etlitero o kun ĉapelo',otilde:'Latina etlitero o kun tildo',ouml:'Latina etlitero o kun tremao',divide:'Dividosigno',oslash:'Latina etlitero o trastrekita',ugrave:'Latina etlitero u kun liva korno',uacute:'Latina etlitero u kun dekstra korno',ucirc:'Latina etlitero u kun ĉapelo',uuml:'Latina etlitero u kun tremao',yacute:'Latina etlitero y kun dekstra korno',thorn:'Latina etlitero islanda dorno',yuml:'Latina etlitero y kun tremao',OElig:'Latina ĉeflitera ligaturo Œ',oelig:'Latina etlitera ligaturo œ',372:'Latina ĉeflitero W kun ĉapelo',374:'Latina ĉeflitero Y kun ĉapelo',373:'Latina etlitero w kun ĉapelo',375:'Latina etlitero y kun ĉapelo',sbquo:'Suba 9-citilo',8219:'Supra renversita 9-citilo',bdquo:'Suba 99-citilo',hellip:'Tripunkto',trade:'Varmarka signo',9658:'Nigra sago dekstren',bull:'Bulmarko',rarr:'Sago dekstren',rArr:'Duobla sago dekstren',hArr:'Duobla sago maldekstren',diams:'Nigra kvadrato',asymp:'Preskaŭ egala'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/en.js0000664000175000017500000001066612262650742025705 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','en',{euro:'Euro sign',lsquo:'Left single quotation mark',rsquo:'Right single quotation mark',ldquo:'Left double quotation mark',rdquo:'Right double quotation mark',ndash:'En dash',mdash:'Em dash',iexcl:'Inverted exclamation mark',cent:'Cent sign',pound:'Pound sign',curren:'Currency sign',yen:'Yen sign',brvbar:'Broken bar',sect:'Section sign',uml:'Diaeresis',copy:'Copyright sign',ordf:'Feminine ordinal indicator',laquo:'Left-pointing double angle quotation mark',not:'Not sign',reg:'Registered sign',macr:'Macron',deg:'Degree sign',sup2:'Superscript two',sup3:'Superscript three',acute:'Acute accent',micro:'Micro sign',para:'Pilcrow sign',middot:'Middle dot',cedil:'Cedilla',sup1:'Superscript one',ordm:'Masculine ordinal indicator',raquo:'Right-pointing double angle quotation mark',frac14:'Vulgar fraction one quarter',frac12:'Vulgar fraction one half',frac34:'Vulgar fraction three quarters',iquest:'Inverted question mark',Agrave:'Latin capital letter A with grave accent',Aacute:'Latin capital letter A with acute accent',Acirc:'Latin capital letter A with circumflex',Atilde:'Latin capital letter A with tilde',Auml:'Latin capital letter A with diaeresis',Aring:'Latin capital letter A with ring above',AElig:'Latin Capital letter Æ',Ccedil:'Latin capital letter C with cedilla',Egrave:'Latin capital letter E with grave accent',Eacute:'Latin capital letter E with acute accent',Ecirc:'Latin capital letter E with circumflex',Euml:'Latin capital letter E with diaeresis',Igrave:'Latin capital letter I with grave accent',Iacute:'Latin capital letter I with acute accent',Icirc:'Latin capital letter I with circumflex',Iuml:'Latin capital letter I with diaeresis',ETH:'Latin capital letter Eth',Ntilde:'Latin capital letter N with tilde',Ograve:'Latin capital letter O with grave accent',Oacute:'Latin capital letter O with acute accent',Ocirc:'Latin capital letter O with circumflex',Otilde:'Latin capital letter O with tilde',Ouml:'Latin capital letter O with diaeresis',times:'Multiplication sign',Oslash:'Latin capital letter O with stroke',Ugrave:'Latin capital letter U with grave accent',Uacute:'Latin capital letter U with acute accent',Ucirc:'Latin capital letter U with circumflex',Uuml:'Latin capital letter U with diaeresis',Yacute:'Latin capital letter Y with acute accent',THORN:'Latin capital letter Thorn',szlig:'Latin small letter sharp s',agrave:'Latin small letter a with grave accent',aacute:'Latin small letter a with acute accent',acirc:'Latin small letter a with circumflex',atilde:'Latin small letter a with tilde',auml:'Latin small letter a with diaeresis',aring:'Latin small letter a with ring above',aelig:'Latin small letter æ',ccedil:'Latin small letter c with cedilla',egrave:'Latin small letter e with grave accent',eacute:'Latin small letter e with acute accent',ecirc:'Latin small letter e with circumflex',euml:'Latin small letter e with diaeresis',igrave:'Latin small letter i with grave accent',iacute:'Latin small letter i with acute accent',icirc:'Latin small letter i with circumflex',iuml:'Latin small letter i with diaeresis',eth:'Latin small letter eth',ntilde:'Latin small letter n with tilde',ograve:'Latin small letter o with grave accent',oacute:'Latin small letter o with acute accent',ocirc:'Latin small letter o with circumflex',otilde:'Latin small letter o with tilde',ouml:'Latin small letter o with diaeresis',divide:'Division sign',oslash:'Latin small letter o with stroke',ugrave:'Latin small letter u with grave accent',uacute:'Latin small letter u with acute accent',ucirc:'Latin small letter u with circumflex',uuml:'Latin small letter u with diaeresis',yacute:'Latin small letter y with acute accent',thorn:'Latin small letter thorn',yuml:'Latin small letter y with diaeresis',OElig:'Latin capital ligature OE',oelig:'Latin small ligature oe',372:'Latin capital letter W with circumflex',374:'Latin capital letter Y with circumflex',373:'Latin small letter w with circumflex',375:'Latin small letter y with circumflex',sbquo:'Single low-9 quotation mark',8219:'Single high-reversed-9 quotation mark',bdquo:'Double low-9 quotation mark',hellip:'Horizontal ellipsis',trade:'Trade mark sign',9658:'Black right-pointing pointer',bull:'Bullet',rarr:'Rightwards arrow',rArr:'Rightwards double arrow',hArr:'Left right double arrow',diams:'Black diamond suit',asymp:'Almost equal to'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/cs.js0000664000175000017500000001153612262650742025705 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('specialchar','cs',{euro:'Znak eura',lsquo:'Počáteční uvozovka jednoduchá',rsquo:'Koncová uvozovka jednoduchá',ldquo:'Počáteční uvozovka dvojitá',rdquo:'Koncová uvozovka dvojitá',ndash:'En pomlčka',mdash:'Em pomlčka',iexcl:'Obrácený vykřičník',cent:'Znak centu',pound:'Znak libry',curren:'Znak měny',yen:'Znak jenu',brvbar:'Přerušená svislá čára',sect:'Znak oddílu',uml:'Přehláska',copy:'Znak copyrightu',ordf:'Ženský indikátor rodu',laquo:'Znak dvojitých lomených uvozovek vlevo',not:'Logistický zápor',reg:'Znak registrace',macr:'Pomlčka nad',deg:'Znak stupně',sup2:'Dvojka jako horní index',sup3:'Trojka jako horní index',acute:'Čárka nad vpravo',micro:'Znak mikro',para:'Znak odstavce',middot:'Tečka uprostřed',cedil:'Ocásek vlevo',sup1:'Jednička jako horní index',ordm:'Mužský indikátor rodu',raquo:'Znak dvojitých lomených uvozovek vpravo',frac14:'Obyčejný zlomek jedna čtvrtina',frac12:'Obyčejný zlomek jedna polovina',frac34:'Obyčejný zlomek tři čtvrtiny',iquest:'Znak obráceného otazníku',Agrave:'Velké písmeno latinky A s čárkou nad vlevo',Aacute:'Velké písmeno latinky A s čárkou nad vpravo',Acirc:'Velké písmeno latinky A s vokáněm',Atilde:'Velké písmeno latinky A s tildou',Auml:'Velké písmeno latinky A s dvěma tečkami',Aring:'Velké písmeno latinky A s kroužkem nad',AElig:'Velké písmeno latinky Ae',Ccedil:'Velké písmeno latinky C s ocáskem vlevo',Egrave:'Velké písmeno latinky E s čárkou nad vlevo',Eacute:'Velké písmeno latinky E s čárkou nad vpravo',Ecirc:'Velké písmeno latinky E s vokáněm',Euml:'Velké písmeno latinky E s dvěma tečkami',Igrave:'Velké písmeno latinky I s čárkou nad vlevo',Iacute:'Velké písmeno latinky I s čárkou nad vpravo',Icirc:'Velké písmeno latinky I s vokáněm',Iuml:'Velké písmeno latinky I s dvěma tečkami',ETH:'Velké písmeno latinky Eth',Ntilde:'Velké písmeno latinky N s tildou',Ograve:'Velké písmeno latinky O s čárkou nad vlevo',Oacute:'Velké písmeno latinky O s čárkou nad vpravo',Ocirc:'Velké písmeno latinky O s vokáněm',Otilde:'Velké písmeno latinky O s tildou',Ouml:'Velké písmeno latinky O s dvěma tečkami',times:'Znak násobení',Oslash:'Velké písmeno latinky O přeškrtnuté',Ugrave:'Velké písmeno latinky U s čárkou nad vlevo',Uacute:'Velké písmeno latinky U s čárkou nad vpravo',Ucirc:'Velké písmeno latinky U s vokáněm',Uuml:'Velké písmeno latinky U s dvěma tečkami',Yacute:'Velké písmeno latinky Y s čárkou nad vpravo',THORN:'Velké písmeno latinky Thorn',szlig:'Malé písmeno latinky ostré s',agrave:'Malé písmeno latinky a s čárkou nad vlevo',aacute:'Malé písmeno latinky a s čárkou nad vpravo',acirc:'Malé písmeno latinky a s vokáněm',atilde:'Malé písmeno latinky a s tildou',auml:'Malé písmeno latinky a s dvěma tečkami',aring:'Malé písmeno latinky a s kroužkem nad',aelig:'Malé písmeno latinky ae',ccedil:'Malé písmeno latinky c s ocáskem vlevo',egrave:'Malé písmeno latinky e s čárkou nad vlevo',eacute:'Malé písmeno latinky e s čárkou nad vpravo',ecirc:'Malé písmeno latinky e s vokáněm',euml:'Malé písmeno latinky e s dvěma tečkami',igrave:'Malé písmeno latinky i s čárkou nad vlevo',iacute:'Malé písmeno latinky i s čárkou nad vpravo',icirc:'Malé písmeno latinky i s vokáněm',iuml:'Malé písmeno latinky i s dvěma tečkami',eth:'Malé písmeno latinky eth',ntilde:'Malé písmeno latinky n s tildou',ograve:'Malé písmeno latinky o s čárkou nad vlevo',oacute:'Malé písmeno latinky o s čárkou nad vpravo',ocirc:'Malé písmeno latinky o s vokáněm',otilde:'Malé písmeno latinky o s tildou',ouml:'Malé písmeno latinky o s dvěma tečkami',divide:'Znak dělení',oslash:'Malé písmeno latinky o přeškrtnuté',ugrave:'Malé písmeno latinky u s čárkou nad vlevo',uacute:'Malé písmeno latinky u s čárkou nad vpravo',ucirc:'Malé písmeno latinky u s vokáněm',uuml:'Malé písmeno latinky u s dvěma tečkami',yacute:'Malé písmeno latinky y s čárkou nad vpravo',thorn:'Malé písmeno latinky thorn',yuml:'Malé písmeno latinky y s dvěma tečkami',OElig:'Velká ligatura latinky OE',oelig:'Malá ligatura latinky OE',372:'Velké písmeno latinky W s vokáněm',374:'Velké písmeno latinky Y s vokáněm',373:'Malé písmeno latinky w s vokáněm',375:'Malé písmeno latinky y s vokáněm',sbquo:'Dolní 9 uvozovka jednoduchá',8219:'Horní obrácená 9 uvozovka jednoduchá',bdquo:'Dolní 9 uvozovka dvojitá',hellip:'Trojtečkový úvod',trade:'Obchodní značka',9658:'Černý ukazatel směřující vpravo',bull:'Kolečko',rarr:'Šipka vpravo',rArr:'Dvojitá šipka vpravo',hArr:'Dvojitá šipka vlevo a vpravo',diams:'Černé piky',asymp:'Téměř se rovná'}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/dialogs/0000775000175000017500000000000012262650742025435 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/specialchar/dialogs/specialchar.js0000664000175000017500000001170012262650742030250 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('specialchar',function(a){var b,c=a.lang.specialChar,d=function(j){var k,l;if(j.data)k=j.data.getTarget();else k=new CKEDITOR.dom.element(j);if(k.getName()=='a'&&(l=k.getChild(0).getHtml())){k.removeClass('cke_light_background');b.hide();var m=a.document.createElement('span');m.setHtml(l);a.insertText(m.getText());}},e=CKEDITOR.tools.addFunction(d),f,g=function(j,k){var l;k=k||j.data.getTarget();if(k.getName()=='span')k=k.getParent();if(k.getName()=='a'&&(l=k.getChild(0).getHtml())){if(f)h(null,f);var m=b.getContentElement('info','htmlPreview').getElement();b.getContentElement('info','charPreview').getElement().setHtml(l);m.setHtml(CKEDITOR.tools.htmlEncode(l));k.getParent().addClass('cke_light_background');f=k;}},h=function(j,k){k=k||j.data.getTarget();if(k.getName()=='span')k=k.getParent();if(k.getName()=='a'){b.getContentElement('info','charPreview').getElement().setHtml(' ');b.getContentElement('info','htmlPreview').getElement().setHtml(' ');k.getParent().removeClass('cke_light_background');f=undefined;}},i=CKEDITOR.tools.addFunction(function(j){j=new CKEDITOR.dom.event(j);var k=j.getTarget(),l,m,n=j.getKeystroke(),o=a.lang.dir=='rtl';switch(n){case 38:if(l=k.getParent().getParent().getPrevious()){m=l.getChild([k.getParent().getIndex(),0]);m.focus();h(null,k);g(null,m);}j.preventDefault();break;case 40:if(l=k.getParent().getParent().getNext()){m=l.getChild([k.getParent().getIndex(),0]);if(m&&m.type==1){m.focus();h(null,k);g(null,m);}}j.preventDefault();break;case 32:d({data:j});j.preventDefault();break;case o?37:39:if(l=k.getParent().getNext()){m=l.getChild(0);if(m.type==1){m.focus();h(null,k);g(null,m);j.preventDefault(true);}else h(null,k);}else if(l=k.getParent().getParent().getNext()){m=l.getChild([0,0]);if(m&&m.type==1){m.focus();h(null,k);g(null,m);j.preventDefault(true);}else h(null,k);}break;case o?39:37:if(l=k.getParent().getPrevious()){m=l.getChild(0);m.focus();h(null,k);g(null,m);j.preventDefault(true);}else if(l=k.getParent().getParent().getPrevious()){m=l.getLast().getChild(0);m.focus();h(null,k);g(null,m);j.preventDefault(true);}else h(null,k);break;default:return;}});return{title:c.title,minWidth:430,minHeight:280,buttons:[CKEDITOR.dialog.cancelButton],charColumns:17,onLoad:function(){var j=this.definition.charColumns,k=a.config.extraSpecialChars,l=a.config.specialChars,m=CKEDITOR.tools.getNextId()+'_specialchar_table_label',n=[''],o=0,p=l.length,q,r; while(o');for(var s=0;s'+''+q+''+''+r+'');}else n.push('');}n.push('');}n.push('
     ');n.push('
    ',''+c.options+'');this.getContentElement('info','charContainer').getElement().setHtml(n.join(''));},contents:[{id:'info',label:a.lang.common.generalTab,title:a.lang.common.generalTab,padding:0,align:'top',elements:[{type:'hbox',align:'top',widths:['320px','90px'],children:[{type:'html',id:'charContainer',html:'',onMouseover:g,onMouseout:h,focus:function(){var j=this.getElement().getElementsByTag('a').getItem(0);setTimeout(function(){j.focus();g(null,j);},0);},onShow:function(){var j=this.getElement().getChild([0,0,0,0,0]);setTimeout(function(){j.focus();g(null,j);},0);},onLoad:function(j){b=j.sender;}},{type:'hbox',align:'top',widths:['100%'],children:[{type:'vbox',align:'top',children:[{type:'html',html:'
    '},{type:'html',id:'charPreview',className:'cke_dark_background',style:"border:1px solid #eeeeee;font-size:28px;height:40px;width:70px;padding-top:9px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;text-align:center;",html:'
     
    '},{type:'html',id:'htmlPreview',className:'cke_dark_background',style:"border:1px solid #eeeeee;font-size:14px;height:20px;width:70px;padding-top:2px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;text-align:center;",html:'
     
    '}]}]}]}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/dialog/0000775000175000017500000000000012262650742022774 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/dialog/dialogDefinition.js0000664000175000017500000000022112262650742026575 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/table/0000775000175000017500000000000012262650742022624 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/table/dialogs/0000775000175000017500000000000012262650742024246 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/table/dialogs/table.js0000664000175000017500000002065012262650742025676 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){var a=CKEDITOR.tools.cssLength,b=function(f){var g=this.id;if(!f.info)f.info={};f.info[g]=this.getValue();};function c(f){var g=0,h=0;for(var i=0,j,k=f.$.rows.length;ih&&(h=g);}return h;};function d(f){return function(){var g=this.getValue(),h=!!(CKEDITOR.dialog.validate.integer()(g)&&g>0);if(!h){alert(f);this.select();}return h;};};function e(f,g){var h=function(j){return new CKEDITOR.dom.element(j,f.document);},i=f.plugins.dialogadvtab;return{title:f.lang.table.title,minWidth:310,minHeight:CKEDITOR.env.ie?310:280,onLoad:function(){var j=this,k=j.getContentElement('advanced','advStyles');if(k)k.on('change',function(l){var m=this.getStyle('width',''),n=j.getContentElement('info','txtWidth');n&&n.setValue(m,true);var o=this.getStyle('height',''),p=j.getContentElement('info','txtHeight');p&&p.setValue(o,true);});},onShow:function(){var r=this;var j=f.getSelection(),k=j.getRanges(),l=null,m=r.getContentElement('info','txtRows'),n=r.getContentElement('info','txtCols'),o=r.getContentElement('info','txtWidth'),p=r.getContentElement('info','txtHeight');if(g=='tableProperties'){if(l=j.getSelectedElement())l=l.getAscendant('table',true);else if(k.length>0){if(CKEDITOR.env.webkit)k[0].shrink(CKEDITOR.NODE_ELEMENT);var q=k[0].getCommonAncestor(true);l=q.getAscendant('table',true);}r._.selectedElement=l;}if(l){r.setupContent(l);m&&m.disable();n&&n.disable();}else{m&&m.enable();n&&n.enable();}o&&o.onChange();p&&p.onChange();},onOk:function(){var j=f.getSelection(),k=this._.selectedElement&&j.createBookmarks(),l=this._.selectedElement||h('table'),m=this,n={};this.commitContent(n,l);if(n.info){var o=n.info;if(!this._.selectedElement){var p=l.append(h('tbody')),q=parseInt(o.txtRows,10)||0,r=parseInt(o.txtCols,10)||0;for(var s=0;s0){y=x.getFirst(); for(s=0;s0){var l=k.getItem(0),m=l.getFirst(CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_ELEMENT));if(m&&!m.equals(l.getBogus())){n.disable(); n.setValue(l.getText());return;}l=CKEDITOR.tools.trim(l.getText());n.setValue(l);}},commit:function(j,k){if(!this.isEnabled())return;var l=this.getValue(),m=k.getElementsByTag('caption');if(l){if(m.count()>0){m=m.getItem(0);m.setHtml('');}else{m=new CKEDITOR.dom.element('caption',f.document);if(k.getChildCount())m.insertBefore(k.getFirst());else m.appendTo(k);}m.append(new CKEDITOR.dom.text(l,f.document));}else if(m.count()>0)for(var n=m.count()-1;n>=0;n--)m.getItem(n).remove();}},{type:'text',id:'txtSummary',label:f.lang.table.summary,setup:function(j){this.setValue(j.getAttribute('summary')||'');},commit:function(j,k){if(this.getValue())k.setAttribute('summary',this.getValue());else k.removeAttribute('summary');}}]}]},i&&i.createAdvancedTab(f)]};};CKEDITOR.dialog.add('table',function(f){return e(f,'table');});CKEDITOR.dialog.add('tableProperties',function(f){return e(f,'tableProperties');});})(); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/colordialog/0000775000175000017500000000000012262650742024033 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/colordialog/dialogs/0000775000175000017500000000000012262650742025455 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/colordialog/dialogs/colordialog.js0000664000175000017500000001117512262650742030316 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('colordialog',function(a){var b=CKEDITOR.dom.element,c=CKEDITOR.document,d=a.lang.colordialog,e,f={type:'html',html:' '},g;function h(){c.getById(u).removeStyle('background-color');e.getContentElement('picker','selectedColor').setValue('');g&&g.removeAttribute('aria-selected');g=null;};function i(w){var x=w.data.getTarget(),y;if(x.getName()=='td'&&(y=x.getChild(0).getHtml())){g=x;g.setAttribute('aria-selected',true);e.getContentElement('picker','selectedColor').setValue(y);}};function j(w){w=w.replace(/^#/,'');for(var x=0,y=[];x<=2;x++)y[x]=parseInt(w.substr(x*2,2),16);var z=0.2126*y[0]+0.7152*y[1]+0.0722*y[2];return '#'+(z>=165?'000':'fff');};var k,l;function m(w){!w.name&&(w=new CKEDITOR.event(w));var x=!/mouse/.test(w.name),y=w.data.getTarget(),z;if(y.getName()=='td'&&(z=y.getChild(0).getHtml())){o(w);x?k=y:l=y;if(x){y.setStyle('border-color',j(z));y.setStyle('border-style','dotted');}c.getById(s).setStyle('background-color',z);c.getById(t).setHtml(z);}};function n(){var w=k.getChild(0).getHtml();k.setStyle('border-color',w);k.setStyle('border-style','solid');c.getById(s).removeStyle('background-color');c.getById(t).setHtml(' ');k=null;};function o(w){var x=!/mouse/.test(w.name),y=x&&k;if(y){var z=y.getChild(0).getHtml();y.setStyle('border-color',z);y.setStyle('border-style','solid');}if(!(k||l)){c.getById(s).removeStyle('background-color');c.getById(t).setHtml(' ');}};function p(w){var x=w.data,y=x.getTarget(),z,A,B=x.getKeystroke(),C=a.lang.dir=='rtl';switch(B){case 38:if(z=y.getParent().getPrevious()){A=z.getChild([y.getIndex()]);A.focus();}x.preventDefault();break;case 40:if(z=y.getParent().getNext()){A=z.getChild([y.getIndex()]);if(A&&A.type==1)A.focus();}x.preventDefault();break;case 32:case 13:i(w);x.preventDefault();break;case C?37:39:if(A=y.getNext()){if(A.type==1){A.focus();x.preventDefault(true);}}else if(z=y.getParent().getNext()){A=z.getChild([0]);if(A&&A.type==1){A.focus();x.preventDefault(true);}}break;case C?39:37:if(A=y.getPrevious()){A.focus();x.preventDefault(true);}else if(z=y.getParent().getPrevious()){A=z.getLast();A.focus();x.preventDefault(true);}break;default:return;}};function q(){v=CKEDITOR.dom.element.createFromHtml(''+''+'
    '+d.options+'
    ');v.on('mouseover',m);v.on('mouseout',o);var w=['00','33','66','99','cc','ff']; function x(C,D){for(var E=C;E'+D+'',CKEDITOR.document));};x(0,0);x(3,0);x(0,3);x(3,3);var z=new b(v.$.insertRow(-1));z.setAttribute('role','row');for(var A=0;A<6;A++)y(z.$,'#'+w[A]+w[A]+w[A]);for(var B=0;B<12;B++)y(z.$,'#000000');};var r=function(w){return CKEDITOR.tools.getNextId()+'_'+w;},s=r('hicolor'),t=r('hicolortext'),u=r('selhicolor'),v;q();return{title:d.title,minWidth:360,minHeight:220,onLoad:function(){e=this;},onHide:function(){h();n();},contents:[{id:'picker',label:d.title,accessKey:'I',elements:[{type:'hbox',padding:0,widths:['70%','10%','30%'],children:[{type:'html',html:'
    ',onLoad:function(){CKEDITOR.document.getById(this.domId).append(v);},focus:function(){(k||this.getElement().getElementsByTag('td').getItem(0)).focus();}},f,{type:'vbox',padding:0,widths:['70%','5%','25%'],children:[{type:'html',html:''+d.highlight+'\t\t\t\t\t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t\t\t\t\t
     
    '+d.selected+'\t\t\t\t\t\t\t\t\t\t\t\t
    '},{type:'text',label:d.selected,labelStyle:'display:none',id:'selectedColor',style:'width: 74px',onChange:function(){try{c.getById(u).setStyle('background-color',this.getValue());}catch(w){h();}}},f,{type:'button',id:'clear',style:'margin-top: 5px',label:d.clear,onClick:h}]}]}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/flash/0000775000175000017500000000000012262650742022632 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/flash/images/0000775000175000017500000000000012262650742024077 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/flash/images/placeholder.png0000664000175000017500000000040012262650742027061 0ustar chmrrchmrrPNG  IHDR;W3PLTE33""DDwwUUiiffM3jIDATx^I 0 5׬kk\ Yz"x$ ,B qH5ۄawU@JNHt7xI_כ֚msVEWf@r}uq"ꉲ&tot /=}IENDB`rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/flash/dialogs/0000775000175000017500000000000012262650742024254 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/flash/dialogs/flash.js0000664000175000017500000002310112262650742025704 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){var a=1,b=2,c=4,d={id:[{type:a,name:'id'}],classid:[{type:a,name:'classid'}],codebase:[{type:a,name:'codebase'}],pluginspage:[{type:c,name:'pluginspage'}],src:[{type:b,name:'movie'},{type:c,name:'src'},{type:a,name:'data'}],name:[{type:c,name:'name'}],align:[{type:a,name:'align'}],'class':[{type:a,name:'class'},{type:c,name:'class'}],width:[{type:a,name:'width'},{type:c,name:'width'}],height:[{type:a,name:'height'},{type:c,name:'height'}],hSpace:[{type:a,name:'hSpace'},{type:c,name:'hSpace'}],vSpace:[{type:a,name:'vSpace'},{type:c,name:'vSpace'}],style:[{type:a,name:'style'},{type:c,name:'style'}],type:[{type:c,name:'type'}]},e=['play','loop','menu','quality','scale','salign','wmode','bgcolor','base','flashvars','allowScriptAccess','allowFullScreen'];for(var f=0;f',j.getDocument());s.setAttributes({name:q.name,value:r});if(j.getChildCount()<1)s.appendTo(j);else s.insertBefore(j.getFirst());}break;case c:if(!k)continue;r=t.getValue();if(n||o&&r===q['default'])k.removeAttribute(q.name);else k.setAttribute(q.name,r); }}};CKEDITOR.dialog.add('flash',function(j){var k=!j.config.flashEmbedTagOnly,l=j.config.flashAddEmbedTag||j.config.flashEmbedTagOnly,m,n='
    '+CKEDITOR.tools.htmlEncode(j.lang.common.preview)+'
    '+''+'
    ';return{title:j.lang.flash.title,minWidth:420,minHeight:310,onShow:function(){var A=this;A.fakeImage=A.objectNode=A.embedNode=null;m=new CKEDITOR.dom.element('embed',j.document);var o=A.getSelectedElement();if(o&&o.data('cke-real-element-type')&&o.data('cke-real-element-type')=='flash'){A.fakeImage=o;var p=j.restoreRealElement(o),q=null,r=null,s={};if(p.getName()=='cke:object'){q=p;var t=q.getElementsByTag('embed','cke');if(t.count()>0)r=t.getItem(0);var u=q.getElementsByTag('param','cke');for(var v=0,w=u.count();v',j.document);var r={classid:'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',codebase:'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'};o.setAttributes(r);}if(l){p=CKEDITOR.dom.element.createFromHtml('',j.document);p.setAttributes({type:'application/x-shockwave-flash',pluginspage:'http://www.macromedia.com/go/getflashplayer'});if(o)p.appendTo(o);}}else{o=y.objectNode;p=y.embedNode;}if(o){q={};var s=o.getElementsByTag('param','cke');for(var t=0,u=s.count();t');};o.preview=o.getContentElement('info','preview').getElement().getChild(3);this.on('change',function(q){if(q.data&&q.data.value)p(q.data.value);});this.getInputElement().on('change',function(q){p(this.getValue());},this);}},{type:'button',id:'browse',filebrowser:'info:src',hidden:true,style:'display:inline-block;margin-top:10px;',label:j.lang.common.browseServer}]}]},{type:'hbox',widths:['25%','25%','25%','25%','25%'],children:[{type:'text',id:'width',style:'width:95px',label:j.lang.common.width,validate:CKEDITOR.dialog.validate.htmlLength(j.lang.common.invalidHtmlLength.replace('%1',j.lang.common.width)),setup:h,commit:i},{type:'text',id:'height',style:'width:95px',label:j.lang.common.height,validate:CKEDITOR.dialog.validate.htmlLength(j.lang.common.invalidHtmlLength.replace('%1',j.lang.common.height)),setup:h,commit:i},{type:'text',id:'hSpace',style:'width:95px',label:j.lang.flash.hSpace,validate:CKEDITOR.dialog.validate.integer(j.lang.flash.validateHSpace),setup:h,commit:i},{type:'text',id:'vSpace',style:'width:95px',label:j.lang.flash.vSpace,validate:CKEDITOR.dialog.validate.integer(j.lang.flash.validateVSpace),setup:h,commit:i}]},{type:'vbox',children:[{type:'html',id:'preview',style:'width:95%;',html:n}]}]},{id:'Upload',hidden:true,filebrowser:'uploadButton',label:j.lang.common.upload,elements:[{type:'file',id:'upload',label:j.lang.common.upload,size:38},{type:'fileButton',id:'uploadButton',label:j.lang.common.uploadSubmit,filebrowser:'info:src','for':['Upload','upload']}]},{id:'properties',label:j.lang.flash.propertiesTab,elements:[{type:'hbox',widths:['50%','50%'],children:[{id:'scale',type:'select',label:j.lang.flash.scale,'default':'',style:'width : 100%;',items:[[j.lang.common.notSet,''],[j.lang.flash.scaleAll,'showall'],[j.lang.flash.scaleNoBorder,'noborder'],[j.lang.flash.scaleFit,'exactfit']],setup:h,commit:i},{id:'allowScriptAccess',type:'select',label:j.lang.flash.access,'default':'',style:'width : 100%;',items:[[j.lang.common.notSet,''],[j.lang.flash.accessAlways,'always'],[j.lang.flash.accessSameDomain,'samedomain'],[j.lang.flash.accessNever,'never']],setup:h,commit:i}]},{type:'hbox',widths:['50%','50%'],children:[{id:'wmode',type:'select',label:j.lang.flash.windowMode,'default':'',style:'width : 100%;',items:[[j.lang.common.notSet,''],[j.lang.flash.windowModeWindow,'window'],[j.lang.flash.windowModeOpaque,'opaque'],[j.lang.flash.windowModeTransparent,'transparent']],setup:h,commit:i},{id:'quality',type:'select',label:j.lang.flash.quality,'default':'high',style:'width : 100%;',items:[[j.lang.common.notSet,''],[j.lang.flash.qualityBest,'best'],[j.lang.flash.qualityHigh,'high'],[j.lang.flash.qualityAutoHigh,'autohigh'],[j.lang.flash.qualityMedium,'medium'],[j.lang.flash.qualityAutoLow,'autolow'],[j.lang.flash.qualityLow,'low']],setup:h,commit:i}]},{type:'hbox',widths:['50%','50%'],children:[{id:'align',type:'select',label:j.lang.common.align,'default':'',style:'width : 100%;',items:[[j.lang.common.notSet,''],[j.lang.common.alignLeft,'left'],[j.lang.flash.alignAbsBottom,'absBottom'],[j.lang.flash.alignAbsMiddle,'absMiddle'],[j.lang.flash.alignBaseline,'baseline'],[j.lang.common.alignBottom,'bottom'],[j.lang.common.alignMiddle,'middle'],[j.lang.common.alignRight,'right'],[j.lang.flash.alignTextTop,'textTop'],[j.lang.common.alignTop,'top']],setup:h,commit:function(o,p,q,r,s){var t=this.getValue(); i.apply(this,arguments);t&&(s.align=t);}},{type:'html',html:'
    '}]},{type:'fieldset',label:CKEDITOR.tools.htmlEncode(j.lang.flash.flashvars),children:[{type:'vbox',padding:0,children:[{type:'checkbox',id:'menu',label:j.lang.flash.chkMenu,'default':true,setup:h,commit:i},{type:'checkbox',id:'play',label:j.lang.flash.chkPlay,'default':true,setup:h,commit:i},{type:'checkbox',id:'loop',label:j.lang.flash.chkLoop,'default':true,setup:h,commit:i},{type:'checkbox',id:'allowFullScreen',label:j.lang.flash.chkFull,'default':true,setup:h,commit:i}]}]}]},{id:'advanced',label:j.lang.common.advancedTab,elements:[{type:'hbox',children:[{type:'text',id:'id',label:j.lang.common.id,setup:h,commit:i}]},{type:'hbox',widths:['45%','55%'],children:[{type:'text',id:'bgcolor',label:j.lang.flash.bgcolor,setup:h,commit:i},{type:'text',id:'class',label:j.lang.common.cssClass,setup:h,commit:i}]},{type:'text',id:'style',validate:CKEDITOR.dialog.validate.inlineStyle(j.lang.common.invalidInlineStyle),label:j.lang.common.cssStyle,setup:h,commit:i}]}]};});})(); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/ajax/0000775000175000017500000000000012262650742022460 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/ajax/plugin.js0000664000175000017500000000201312262650742024310 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){CKEDITOR.plugins.add('ajax',{requires:['xml']});CKEDITOR.ajax=(function(){var a=function(){if(!CKEDITOR.env.ie||location.protocol!='file:')try{return new XMLHttpRequest();}catch(f){}try{return new ActiveXObject('Msxml2.XMLHTTP');}catch(g){}try{return new ActiveXObject('Microsoft.XMLHTTP');}catch(h){}return null;},b=function(f){return f.readyState==4&&(f.status>=200&&f.status<300||f.status==304||f.status===0||f.status==1223);},c=function(f){if(b(f))return f.responseText;return null;},d=function(f){if(b(f)){var g=f.responseXML;return new CKEDITOR.xml(g&&g.firstChild?g:f.responseText);}return null;},e=function(f,g,h){var i=!!g,j=a();if(!j)return null;j.open('GET',f,i);if(i)j.onreadystatechange=function(){if(j.readyState==4){g(h(j));j=null;}};j.send(null);return i?'':h(j);};return{load:function(f,g){return e(f,g,c);},loadXml:function(f,g){return e(f,g,d);}};})();})(); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/0000775000175000017500000000000012262650742022663 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/images/0000775000175000017500000000000012262650742024130 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/images/hiddenfield.gif0000664000175000017500000000015112262650742027053 0ustar chmrrchmrrGIF89a,BD3ڋU-HQU"D*:(۷ֵdϸ^:a/En% dJӫ*a,;rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/0000775000175000017500000000000012262650742024305 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/textarea.js0000664000175000017500000000371012262650742026461 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('textarea',function(a){return{title:a.lang.textarea.title,minWidth:350,minHeight:220,onShow:function(){var c=this;delete c.textarea;var b=c.getParentEditor().getSelection().getSelectedElement();if(b&&b.getName()=='textarea'){c.textarea=b;c.setupContent(b);}},onOk:function(){var b,c=this.textarea,d=!c;if(d){b=this.getParentEditor();c=b.document.createElement('textarea');}this.commitContent(c);if(d)b.insertElement(c);},contents:[{id:'info',label:a.lang.textarea.title,title:a.lang.textarea.title,elements:[{id:'_cke_saved_name',type:'text',label:a.lang.common.name,'default':'',accessKey:'N',setup:function(b){this.setValue(b.data('cke-saved-name')||b.getAttribute('name')||'');},commit:function(b){if(this.getValue())b.data('cke-saved-name',this.getValue());else{b.data('cke-saved-name',false);b.removeAttribute('name');}}},{type:'hbox',widths:['50%','50%'],children:[{id:'cols',type:'text',label:a.lang.textarea.cols,'default':'',accessKey:'C',style:'width:50px',validate:CKEDITOR.dialog.validate.integer(a.lang.common.validateNumberFailed),setup:function(b){var c=b.hasAttribute('cols')&&b.getAttribute('cols');this.setValue(c||'');},commit:function(b){if(this.getValue())b.setAttribute('cols',this.getValue());else b.removeAttribute('cols');}},{id:'rows',type:'text',label:a.lang.textarea.rows,'default':'',accessKey:'R',style:'width:50px',validate:CKEDITOR.dialog.validate.integer(a.lang.common.validateNumberFailed),setup:function(b){var c=b.hasAttribute('rows')&&b.getAttribute('rows');this.setValue(c||'');},commit:function(b){if(this.getValue())b.setAttribute('rows',this.getValue());else b.removeAttribute('rows');}}]},{id:'value',type:'textarea',label:a.lang.textfield.value,'default':'',setup:function(b){this.setValue(b.$.defaultValue);},commit:function(b){b.$.value=b.$.defaultValue=this.getValue();}}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/form.js0000664000175000017500000000415212262650742025610 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('form',function(a){var b={action:1,id:1,method:1,enctype:1,target:1};return{title:a.lang.form.title,minWidth:350,minHeight:200,onShow:function(){var e=this;delete e.form;var c=e.getParentEditor().getSelection().getStartElement(),d=c&&c.getAscendant('form',true);if(d){e.form=d;e.setupContent(d);}},onOk:function(){var c,d=this.form,e=!d;if(e){c=this.getParentEditor();d=c.document.createElement('form');!CKEDITOR.env.ie&&d.append(c.document.createElement('br'));}if(e)c.insertElement(d);this.commitContent(d);},onLoad:function(){function c(e){this.setValue(e.getAttribute(this.id)||'');};function d(e){var f=this;if(f.getValue())e.setAttribute(f.id,f.getValue());else e.removeAttribute(f.id);};this.foreach(function(e){if(b[e.id]){e.setup=c;e.commit=d;}});},contents:[{id:'info',label:a.lang.form.title,title:a.lang.form.title,elements:[{id:'txtName',type:'text',label:a.lang.common.name,'default':'',accessKey:'N',setup:function(c){this.setValue(c.data('cke-saved-name')||c.getAttribute('name')||'');},commit:function(c){if(this.getValue())c.data('cke-saved-name',this.getValue());else{c.data('cke-saved-name',false);c.removeAttribute('name');}}},{id:'action',type:'text',label:a.lang.form.action,'default':'',accessKey:'T'},{type:'hbox',widths:['45%','55%'],children:[{id:'id',type:'text',label:a.lang.common.id,'default':'',accessKey:'I'},{id:'enctype',type:'select',label:a.lang.form.encoding,style:'width:100%',accessKey:'E','default':'',items:[[''],['text/plain'],['multipart/form-data'],['application/x-www-form-urlencoded']]}]},{type:'hbox',widths:['45%','55%'],children:[{id:'target',type:'select',label:a.lang.common.target,style:'width:100%',accessKey:'M','default':'',items:[[a.lang.common.notSet,''],[a.lang.common.targetNew,'_blank'],[a.lang.common.targetTop,'_top'],[a.lang.common.targetSelf,'_self'],[a.lang.common.targetParent,'_parent']]},{id:'method',type:'select',label:a.lang.form.method,accessKey:'M','default':'GET',items:[['GET','get'],['POST','post']]}]}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/textfield.js0000664000175000017500000000512712262650742026640 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('textfield',function(a){var b={value:1,size:1,maxLength:1},c={text:1,password:1};return{title:a.lang.textfield.title,minWidth:350,minHeight:150,onShow:function(){var e=this;delete e.textField;var d=e.getParentEditor().getSelection().getSelectedElement();if(d&&d.getName()=='input'&&(c[d.getAttribute('type')]||!d.getAttribute('type'))){e.textField=d;e.setupContent(d);}},onOk:function(){var d,e=this.textField,f=!e;if(f){d=this.getParentEditor();e=d.document.createElement('input');e.setAttribute('type','text');}if(f)d.insertElement(e);this.commitContent({element:e});},onLoad:function(){var d=function(f){var g=f.hasAttribute(this.id)&&f.getAttribute(this.id);this.setValue(g||'');},e=function(f){var g=f.element,h=this.getValue();if(h)g.setAttribute(this.id,h);else g.removeAttribute(this.id);};this.foreach(function(f){if(b[f.id]){f.setup=d;f.commit=e;}});},contents:[{id:'info',label:a.lang.textfield.title,title:a.lang.textfield.title,elements:[{type:'hbox',widths:['50%','50%'],children:[{id:'_cke_saved_name',type:'text',label:a.lang.textfield.name,'default':'',accessKey:'N',setup:function(d){this.setValue(d.data('cke-saved-name')||d.getAttribute('name')||'');},commit:function(d){var e=d.element;if(this.getValue())e.data('cke-saved-name',this.getValue());else{e.data('cke-saved-name',false);e.removeAttribute('name');}}},{id:'value',type:'text',label:a.lang.textfield.value,'default':'',accessKey:'V'}]},{type:'hbox',widths:['50%','50%'],children:[{id:'size',type:'text',label:a.lang.textfield.charWidth,'default':'',accessKey:'C',style:'width:50px',validate:CKEDITOR.dialog.validate.integer(a.lang.common.validateNumberFailed)},{id:'maxLength',type:'text',label:a.lang.textfield.maxChars,'default':'',accessKey:'M',style:'width:50px',validate:CKEDITOR.dialog.validate.integer(a.lang.common.validateNumberFailed)}],onLoad:function(){if(CKEDITOR.env.ie7Compat)this.getElement().setStyle('zoom','100%');}},{id:'type',type:'select',label:a.lang.textfield.type,'default':'text',accessKey:'M',items:[[a.lang.textfield.typeText,'text'],[a.lang.textfield.typePass,'password']],setup:function(d){this.setValue(d.getAttribute('type'));},commit:function(d){var e=d.element;if(CKEDITOR.env.ie){var f=e.getAttribute('type'),g=this.getValue();if(f!=g){var h=CKEDITOR.dom.element.createFromHtml('',a.document);e.copyAttributes(h,{type:1});h.replace(e);a.getSelection().selectElement(h);d.element=h;}}else e.setAttribute('type',this.getValue());}}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/button.js0000664000175000017500000000333412262650742026161 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('button',function(a){function b(c){var e=this;var d=e.getValue();if(d){c.attributes[e.id]=d;if(e.id=='name')c.attributes['data-cke-saved-name']=d;}else{delete c.attributes[e.id];if(e.id=='name')delete c.attributes['data-cke-saved-name'];}};return{title:a.lang.button.title,minWidth:350,minHeight:150,onShow:function(){var e=this;delete e.button;var c=e.getParentEditor().getSelection().getSelectedElement();if(c&&c.is('input')){var d=c.getAttribute('type');if(d in {button:1,reset:1,submit:1}){e.button=c;e.setupContent(c);}}},onOk:function(){var c=this.getParentEditor(),d=this.button,e=!d,f=d?CKEDITOR.htmlParser.fragment.fromHtml(d.getOuterHtml()).children[0]:new CKEDITOR.htmlParser.element('input');this.commitContent(f);var g=new CKEDITOR.htmlParser.basicWriter();f.writeHtml(g);var h=CKEDITOR.dom.element.createFromHtml(g.getHtml(),c.document);if(e)c.insertElement(h);else{h.replace(d);c.getSelection().selectElement(h);}},contents:[{id:'info',label:a.lang.button.title,title:a.lang.button.title,elements:[{id:'name',type:'text',label:a.lang.common.name,'default':'',setup:function(c){this.setValue(c.data('cke-saved-name')||c.getAttribute('name')||'');},commit:b},{id:'value',type:'text',label:a.lang.button.text,accessKey:'V','default':'',setup:function(c){this.setValue(c.getAttribute('value')||'');},commit:b},{id:'type',type:'select',label:a.lang.button.type,'default':'button',accessKey:'T',items:[[a.lang.button.typeBtn,'button'],[a.lang.button.typeSbm,'submit'],[a.lang.button.typeRst,'reset']],setup:function(c){this.setValue(c.getAttribute('type')||'');},commit:b}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/hiddenfield.js0000664000175000017500000000327712262650742027113 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('hiddenfield',function(a){return{title:a.lang.hidden.title,hiddenField:null,minWidth:350,minHeight:110,onShow:function(){var e=this;delete e.hiddenField;var b=e.getParentEditor(),c=b.getSelection(),d=c.getSelectedElement();if(d&&d.data('cke-real-element-type')&&d.data('cke-real-element-type')=='hiddenfield'){e.hiddenField=d;d=b.restoreRealElement(e.hiddenField);e.setupContent(d);c.selectElement(e.hiddenField);}},onOk:function(){var g=this;var b=g.getValueOf('info','_cke_saved_name'),c=g.getValueOf('info','value'),d=g.getParentEditor(),e=CKEDITOR.env.ie&&!(CKEDITOR.document.$.documentMode>=8)?d.document.createElement(''):d.document.createElement('input');e.setAttribute('type','hidden');g.commitContent(e);var f=d.createFakeElement(e,'cke_hidden','hiddenfield');if(!g.hiddenField)d.insertElement(f);else{f.replace(g.hiddenField);d.getSelection().selectElement(f);}return true;},contents:[{id:'info',label:a.lang.hidden.title,title:a.lang.hidden.title,elements:[{id:'_cke_saved_name',type:'text',label:a.lang.hidden.name,'default':'',accessKey:'N',setup:function(b){this.setValue(b.data('cke-saved-name')||b.getAttribute('name')||'');},commit:function(b){if(this.getValue())b.setAttribute('name',this.getValue());else b.removeAttribute('name');}},{id:'value',type:'text',label:a.lang.hidden.value,'default':'',accessKey:'V',setup:function(b){this.setValue(b.getAttribute('value')||'');},commit:function(b){if(this.getValue())b.setAttribute('value',this.getValue());else b.removeAttribute('value');}}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/select.js0000664000175000017500000002001612262650742026121 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('select',function(a){function b(k,l,m,n,o){k=j(k);var p;if(n)p=n.createElement('OPTION');else p=document.createElement('OPTION');if(k&&p&&p.getName()=='option'){if(CKEDITOR.env.ie){if(!isNaN(parseInt(o,10)))k.$.options.add(p.$,o);else k.$.options.add(p.$);p.$.innerHTML=l.length>0?l:'';p.$.value=m;}else{if(o!==null&&o0?l:'');p.setValue(m);}}else return false;return p;};function c(k){k=j(k);var l=g(k);for(var m=k.getChildren().count()-1;m>=0;m--){if(k.getChild(m).$.selected)k.getChild(m).remove();}h(k,l);};function d(k,l,m,n){k=j(k);if(l<0)return false;var o=k.getChild(l);o.setText(m);o.setValue(n);return o;};function e(k){k=j(k);while(k.getChild(0)&&k.getChild(0).remove()){}};function f(k,l,m){k=j(k);var n=g(k);if(n<0)return false;var o=n+l;o=o<0?0:o;o=o>=k.getChildCount()?k.getChildCount()-1:o;if(n==o)return false;var p=k.getChild(n),q=p.getText(),r=p.getValue();p.remove();p=b(k,q,r,!m?null:m,o);h(k,o);return p;};function g(k){k=j(k);return k?k.$.selectedIndex:-1;};function h(k,l){k=j(k);if(l<0)return null;var m=k.getChildren().count();k.$.selectedIndex=l>=m?m-1:l;return k;};function i(k){k=j(k);return k?k.getChildren():false;};function j(k){if(k&&k.domId&&k.getInputElement().$)return k.getInputElement();else if(k&&k.$)return k;return false;};return{title:a.lang.select.title,minWidth:CKEDITOR.env.ie?460:395,minHeight:CKEDITOR.env.ie?320:300,onShow:function(){var n=this;delete n.selectBox;n.setupContent('clear');var k=n.getParentEditor().getSelection().getSelectedElement();if(k&&k.getName()=='select'){n.selectBox=k;n.setupContent(k.getName(),k);var l=i(k);for(var m=0;m'+CKEDITOR.tools.htmlEncode(a.lang.select.lines)+''}]},{type:'html',html:''+CKEDITOR.tools.htmlEncode(a.lang.select.opAvail)+''},{type:'hbox',widths:['115px','115px','100px'],children:[{type:'vbox',children:[{id:'txtOptName',type:'text',label:a.lang.select.opText,style:'width:115px',setup:function(k,l){if(k=='clear')this.setValue('');}},{type:'select',id:'cmbName',label:'',title:'',size:5,style:'width:115px;height:75px',items:[],onChange:function(){var k=this.getDialog(),l=k.getContentElement('info','cmbValue'),m=k.getContentElement('info','txtOptName'),n=k.getContentElement('info','txtOptValue'),o=g(this);h(l,o);m.setValue(this.getValue());n.setValue(l.getValue());},setup:function(k,l){if(k=='clear')e(this);else if(k=='option')b(this,l.getText(),l.getText(),this.getDialog().getParentEditor().document);},commit:function(k){var l=this.getDialog(),m=i(this),n=i(l.getContentElement('info','cmbValue')),o=l.getContentElement('info','txtValue').getValue();e(k);for(var p=0;p=0){d(n,p,l.getValue(),l.getValue());d(o,p,m.getValue(),m.getValue());}}},{type:'button',id:'btnUp',style:'width:100%;',label:a.lang.select.btnUp,title:a.lang.select.btnUp,onClick:function(){var k=this.getDialog(),l=k.getContentElement('info','cmbName'),m=k.getContentElement('info','cmbValue');f(l,-1,k.getParentEditor().document);f(m,-1,k.getParentEditor().document);}},{type:'button',id:'btnDown',style:'width:100%;',label:a.lang.select.btnDown,title:a.lang.select.btnDown,onClick:function(){var k=this.getDialog(),l=k.getContentElement('info','cmbName'),m=k.getContentElement('info','cmbValue');f(l,1,k.getParentEditor().document);f(m,1,k.getParentEditor().document);}}]}]},{type:'hbox',widths:['40%','20%','40%'],children:[{type:'button',id:'btnSetValue',label:a.lang.select.btnSetValue,title:a.lang.select.btnSetValue,onClick:function(){var k=this.getDialog(),l=k.getContentElement('info','cmbValue'),m=k.getContentElement('info','txtValue');m.setValue(l.getValue());}},{type:'button',id:'btnDelete',label:a.lang.select.btnDelete,title:a.lang.select.btnDelete,onClick:function(){var k=this.getDialog(),l=k.getContentElement('info','cmbName'),m=k.getContentElement('info','cmbValue'),n=k.getContentElement('info','txtOptName'),o=k.getContentElement('info','txtOptValue');c(l);c(m);n.setValue('');o.setValue('');}},{id:'chkMulti',type:'checkbox',label:a.lang.select.chkMulti,'default':'',accessKey:'M',value:'checked',setup:function(k,l){if(k=='select')this.setValue(l.getAttribute('multiple')); if(CKEDITOR.env.webkit)this.getElement().getParent().setStyle('vertical-align','middle');},commit:function(k){if(this.getValue())k.setAttribute('multiple',this.getValue());else k.removeAttribute('multiple');}}]}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/checkbox.js0000664000175000017500000000430412262650742026432 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('checkbox',function(a){return{title:a.lang.checkboxAndRadio.checkboxTitle,minWidth:350,minHeight:140,onShow:function(){var c=this;delete c.checkbox;var b=c.getParentEditor().getSelection().getSelectedElement();if(b&&b.getAttribute('type')=='checkbox'){c.checkbox=b;c.setupContent(b);}},onOk:function(){var b,c=this.checkbox,d=!c;if(d){b=this.getParentEditor();c=b.document.createElement('input');c.setAttribute('type','checkbox');b.insertElement(c);}this.commitContent({element:c});},contents:[{id:'info',label:a.lang.checkboxAndRadio.checkboxTitle,title:a.lang.checkboxAndRadio.checkboxTitle,startupFocus:'txtName',elements:[{id:'txtName',type:'text',label:a.lang.common.name,'default':'',accessKey:'N',setup:function(b){this.setValue(b.data('cke-saved-name')||b.getAttribute('name')||'');},commit:function(b){var c=b.element;if(this.getValue())c.data('cke-saved-name',this.getValue());else{c.data('cke-saved-name',false);c.removeAttribute('name');}}},{id:'txtValue',type:'text',label:a.lang.checkboxAndRadio.value,'default':'',accessKey:'V',setup:function(b){var c=b.getAttribute('value');this.setValue(CKEDITOR.env.ie&&c=='on'?'':c);},commit:function(b){var c=b.element,d=this.getValue();if(d&&!(CKEDITOR.env.ie&&d=='on'))c.setAttribute('value',d);else if(CKEDITOR.env.ie){var e=new CKEDITOR.dom.element('input',c.getDocument());c.copyAttributes(e,{value:1});e.replace(c);a.getSelection().selectElement(e);b.element=e;}else c.removeAttribute('value');}},{id:'cmbSelected',type:'checkbox',label:a.lang.checkboxAndRadio.selected,'default':'',accessKey:'S',value:'checked',setup:function(b){this.setValue(b.getAttribute('checked'));},commit:function(b){var c=b.element;if(CKEDITOR.env.ie){var d=!!c.getAttribute('checked'),e=!!this.getValue();if(d!=e){var f=CKEDITOR.dom.element.createFromHtml('',a.document);c.copyAttributes(f,{type:1,checked:1});f.replace(c);a.getSelection().selectElement(f);b.element=f;}}else{var g=this.getValue();if(g)c.setAttribute('checked','checked');else c.removeAttribute('checked');}}}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/radio.js0000664000175000017500000000375012262650742025746 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('radio',function(a){return{title:a.lang.checkboxAndRadio.radioTitle,minWidth:350,minHeight:140,onShow:function(){var c=this;delete c.radioButton;var b=c.getParentEditor().getSelection().getSelectedElement();if(b&&b.getName()=='input'&&b.getAttribute('type')=='radio'){c.radioButton=b;c.setupContent(b);}},onOk:function(){var b,c=this.radioButton,d=!c;if(d){b=this.getParentEditor();c=b.document.createElement('input');c.setAttribute('type','radio');}if(d)b.insertElement(c);this.commitContent({element:c});},contents:[{id:'info',label:a.lang.checkboxAndRadio.radioTitle,title:a.lang.checkboxAndRadio.radioTitle,elements:[{id:'name',type:'text',label:a.lang.common.name,'default':'',accessKey:'N',setup:function(b){this.setValue(b.data('cke-saved-name')||b.getAttribute('name')||'');},commit:function(b){var c=b.element;if(this.getValue())c.data('cke-saved-name',this.getValue());else{c.data('cke-saved-name',false);c.removeAttribute('name');}}},{id:'value',type:'text',label:a.lang.checkboxAndRadio.value,'default':'',accessKey:'V',setup:function(b){this.setValue(b.getAttribute('value')||'');},commit:function(b){var c=b.element;if(this.getValue())c.setAttribute('value',this.getValue());else c.removeAttribute('value');}},{id:'checked',type:'checkbox',label:a.lang.checkboxAndRadio.selected,'default':'',accessKey:'S',value:'checked',setup:function(b){this.setValue(b.getAttribute('checked'));},commit:function(b){var c=b.element;if(!(CKEDITOR.env.ie||CKEDITOR.env.opera)){if(this.getValue())c.setAttribute('checked','checked');else c.removeAttribute('checked');}else{var d=c.getAttribute('checked'),e=!!this.getValue();if(d!=e){var f=CKEDITOR.dom.element.createFromHtml('',a.document);c.copyAttributes(f,{type:1,checked:1});f.replace(c);a.getSelection().selectElement(f);b.element=f;}}}}]}]};}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/0000775000175000017500000000000012262650742023161 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/0000775000175000017500000000000012262650742024102 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/fi.js0000664000175000017500000000547612262650742025052 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','fi',{accessibilityHelp:{title:'Saavutettavuus ohjeet',contents:'Ohjeen sisällöt. Sulkeaksesi tämän dialogin paina ESC.',legend:[{name:'Yleinen',items:[{name:'Editorin työkalupalkki',legend:'Paina ${toolbarFocus} siirtyäksesi työkalupalkkiin. Siirry seuraavaan ja edelliseen työkalupalkin ryhmään TAB ja SHIFT-TAB näppäimillä. Siirry seuraavaan ja edelliseen työkalupainikkeeseen käyttämällä NUOLI OIKEALLE tai NUOLI VASEMMALLE näppäimillä. Paina VÄLILYÖNTI tai ENTER näppäintä aktivoidaksesi työkalupainikkeen.'},{name:'Editorin dialogi',legend:'Dialogin sisällä, painamalla TAB siirryt seuraavaan dialogin kenttään, painamalla SHIFT+TAB siirryt aiempaan kenttään, painamalla ENTER lähetät dialogin, painamalla ESC peruutat dialogin. Dialogeille joissa on useita välilehtiä, paina ALT+F10 siirtyäksesi välillehtilistaan. Siirtyäksesi seuraavaan välilehteen paina TAB tai NUOLI OIKEALLE. Siirry edelliseen välilehteen painamalla SHIFT+TAB tai nuoli vasemmalle. Paina VÄLILYÖNTI tai ENTER valitaksesi välilehden.'},{name:'Editorin oheisvalikko',legend:'Paina ${contextMenu} tai SOVELLUSPAINIKETTA avataksesi oheisvalikon. Liiku seuraavaan valikon vaihtoehtoon TAB tai NUOLI ALAS näppäimillä. Siirry edelliseen vaihtoehtoon SHIFT+TAB tai NUOLI YLÖS näppäimillä. Paina VÄLILYÖNTI tai ENTER valitaksesi valikon kohdan. Avataksesi nykyisen kohdan alivalikon paina VÄLILYÖNTI tai ENTER tai NUOLI OIKEALLE painiketta. Siirtyäksesi takaisin valikon ylemmälle tasolle paina ESC tai NUOLI vasemmalle. Oheisvalikko suljetaan ESC painikkeella.'},{name:'Editorin listalaatikko',legend:'Listalaatikon sisällä siirry seuraavaan listan kohtaan TAB tai NUOLI ALAS painikkeilla. Siirry edelliseen listan kohtaan SHIFT+TAB tai NUOLI YLÖS painikkeilla. Paina VÄLILYÖNTI tai ENTER valitaksesi listan vaihtoehdon. Paina ESC sulkeaksesi listalaatikon.'},{name:'Editorin elementtipolun palkki',legend:'Paina ${elementsPathFocus} siirtyäksesi elementtipolun palkkiin. Siirry seuraavaan elementtipainikkeeseen TAB tai NUOLI OIKEALLE painikkeilla. Siirry aiempaan painikkeeseen SHIFT+TAB tai NUOLI VASEMMALLE painikkeilla. Paina VÄLILYÖNTI tai ENTER valitaksesi elementin editorissa.'}]},{name:'Komennot',items:[{name:'Peruuta komento',legend:'Paina ${undo}'},{name:'Tee uudelleen komento',legend:'Paina ${redo}'},{name:'Lihavoi komento',legend:'Paina ${bold}'},{name:'Kursivoi komento',legend:'Paina ${italic}'},{name:'Alleviivaa komento',legend:'Paina ${underline}'},{name:'Linkki komento',legend:'Paina ${link}'},{name:'Pienennä työkalupalkki komento',legend:'Paina ${toolbarCollapse}'},{name:'Saavutettavuus ohjeet',legend:'Paina ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/no.js0000664000175000017500000000511512262650742025056 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','no',{accessibilityHelp:{title:'Instruksjoner for tilgjengelighet',contents:'Innhold for hjelp. Trykk ESC for å lukke denne dialogen.',legend:[{name:'Generelt',items:[{name:'Verktøylinje for editor',legend:'Trykk ${toolbarFocus} for å navigere til verktøylinjen. Flytt til neste og forrige verktøylinjegruppe med TAB og SHIFT-TAB. Flytt til neste og forrige verktøylinjeknapp med HØYRE PILTAST og VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å aktivere verktøylinjeknappen.'},{name:'Dialog for editor',legend:'Mens du er i en dialog, trykk TAB for å navigere til neste dialogfelt, press SHIFT + TAB for å flytte til forrige felt, trykk ENTER for å akseptere dialogen, trykk ESC for å avbryte dialogen. For dialoger med flere faner, trykk ALT + F10 for å navigere til listen over faner. Gå til neste fane med TAB eller HØYRE PILTAST. Gå til forrige fane med SHIFT + TAB eller VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å velge fanen.'},{name:'Kontekstmeny for editor',legend:'Trykk ${contextMenu} eller MENYKNAPP for å åpne kontekstmeny. Gå til neste alternativ i menyen med TAB eller PILTAST NED. Gå til forrige alternativ med SHIFT+TAB eller PILTAST OPP. Trykk MELLOMROM eller ENTER for å velge menyalternativet. Åpne undermenyen på valgt alternativ med MELLOMROM eller ENTER eller HØYRE PILTAST. Gå tilbake til overordnet menyelement med ESC eller VENSTRE PILTAST. Lukk kontekstmenyen med ESC.'},{name:'Listeboks for editor',legend:'I en listeboks, gå til neste alternativ i listen med TAB eller PILTAST NED. Gå til forrige alternativ i listen med SHIFT + TAB eller PILTAST OPP. Trykk MELLOMROM eller ENTER for å velge alternativet i listen. Trykk ESC for å lukke listeboksen.'},{name:'Verktøylinje for elementsti',legend:'Trykk ${elementsPathFocus} for å navigere til verktøylinjen som viser elementsti. Gå til neste elementknapp med TAB eller HØYRE PILTAST. Gå til forrige elementknapp med SHIFT+TAB eller VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å velge elementet i editoren.'}]},{name:'Kommandoer',items:[{name:'Angre',legend:'Trykk ${undo}'},{name:'Gjør om',legend:'Trykk ${redo}'},{name:'Fet tekst',legend:'Trykk ${bold}'},{name:'Kursiv tekst',legend:'Trykk ${italic}'},{name:'Understreking',legend:'Trykk ${underline}'},{name:'Link',legend:'Trykk ${link}'},{name:'Skjul verktøylinje',legend:'Trykk ${toolbarCollapse}'},{name:'Hjelp for tilgjengelighet',legend:'Trykk ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/sk.js0000664000175000017500000000567312262650742025070 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','sk',{accessibilityHelp:{title:'Inštrukcie prístupnosti',contents:'Pomocný obsah. Pre zatvorenie tohto okna, stlačte ESC.',legend:[{name:'Všeobecne',items:[{name:'Lišta nástrojov editora',legend:'Stlačte ${toolbarFocus} pre navigáciu na lištu nástrojov. Medzi ďalšou a predchádzajúcou lištou nástrojov sa pohybujete s TAB a SHIFT-TAB. Medzi ďalším a predchádzajúcim tlačidlom na lište nástrojov sa pohybujete s pravou šípkou a ľavou šípkou. Stlačte medzerník alebo ENTER pre aktiváciu tlačidla lišty nástrojov.'},{name:'Editorový dialóg',legend:'V dialogu, stlačte TAB pre navigáciu na ďalšie dialógové pole, stlačte STIFT + TAB pre presun na predchádzajúce pole, stlačte ENTER pre odoslanie dialógu, stlačte ESC pre zrušenie dialógu. Pre dialógy, ktoré majú viac záložiek, stlačte ALT + F10 pre navigácou do zoznamu záložiek. Potom sa posúvajte k ďalšej žáložke pomocou TAB alebo pravou šípkou. Pre presun k predchádzajúcej záložke, stlačte SHIFT + TAB alebo ľavú šípku. Stlačte medzerník alebo ENTER pre vybranie záložky.'},{name:'Editorové kontextové menu',legend:'Stlačte ${contextMenu} alebo APPLICATION KEY pre otvorenie kontextového menu. Potom sa presúvajte na ďalšie možnosti menu s TAB alebo dolnou šípkou. Presunte sa k predchádzajúcej možnosti s SHIFT + TAB alebo hornou šípkou. Stlačte medzerník alebo ENTER pre výber možnosti menu. Otvorte pod-menu danej možnosti s medzerníkom, alebo ENTER, alebo pravou šípkou. Vráťte sa späť do položky rodičovského menu s ESC alebo ľavou šípkou. Zatvorte kontextové menu s ESC.'},{name:'Editorov box zoznamu',legend:'V boxe zoznamu, presuňte sa na ďalšiu položku v zozname s TAB alebo dolnou šípkou. Presuňte sa k predchádzajúcej položke v zozname so SHIFT + TAB alebo hornou šípkou. Stlačte medzerník alebo ENTER pre výber možnosti zoznamu. Stlačte ESC pre zatvorenie boxu zoznamu.'},{name:'Editorove pásmo cesty prvku',legend:'Stlačte ${elementsPathFocus} pre navigovanie na pásmo cesty elementu. Presuňte sa na tlačidlo ďalšieho prvku s TAB alebo pravou šípkou. Presuňte sa k predchádzajúcemu tlačidlu s SHIFT + TAB alebo ľavou šípkou. Stlačte medzerník alebo ENTER pre výber prvku v editore.'}]},{name:'Príkazy',items:[{name:'Vrátiť príkazy',legend:'Stlačte ${undo}'},{name:'Nanovo vrátiť príkaz',legend:'Stlačte ${redo}'},{name:'Príkaz na stučnenie',legend:'Stlačte ${bold}'},{name:'Príkaz na kurzívu',legend:'Stlačte ${italic}'},{name:'Príkaz na podčiarknutie',legend:'Stlačte ${underline}'},{name:'Príkaz na odkaz',legend:'Stlačte ${link}'},{name:'Príkaz na zbalenie lišty nástrojov',legend:'Stlačte ${toolbarCollapse}'},{name:'Pomoc prístupnosti',legend:'Stlačte ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/he.js0000664000175000017500000000630312262650742025036 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','he',{accessibilityHelp:{title:'הוראות נגישות',contents:'הוראות נגישות. לסגירה לחץ אסקייפ (ESC).',legend:[{name:'כללי',items:[{name:'סרגל הכלים',legend:'לחץ על ${toolbarFocus} כדי לנווט לסרגל הכלים. עבור לכפתור הבא עם מקש הטאב (TAB) או חץ שמאלי. עבור לכפתור הקודם עם מקש השיפט (SHIFT) + טאב (TAB) או חץ ימני. לחץ רווח או אנטר (ENTER) כדי להפעיל את הכפתור הנבחר.'},{name:'דיאלוגים (חלונות תשאול)',legend:'בתוך דיאלוג, לחץ טאב (TAB) כדי לנווט לשדה הבא, לחץ שיפט (SHIFT) + טאב (TAB) כדי לנווט לשדה הקודם, לחץ אנטר (ENTER) כדי לשלוח את הדיאלוג, לחץ אסקייפ (ESC) כדי לבטל. בתוך דיאלוגים בעלי מספר טאבים (לשוניות), לחץ אלט (ALT) + F10 כדי לנווט לשורת הטאבים. נווט לטאב הבא עם טאב (TAB) או חץ שמאלי. עבור לטאב הקודם עם שיפט (SHIFT) + טאב (TAB) או חץ שמאלי. לחץ רווח או אנטר (ENTER) כדי להיכנס לטאב.'},{name:'תפריט ההקשר (Context Menu)',legend:'לחץ ${contextMenu} או APPLICATION KEYכדי לפתוח את תפריט ההקשר. עבור לאפשרות הבאה עם טאב (TAB) או חץ למטה. עבור לאפשרות הקודמת עם שיפט (SHIFT) + טאב (TAB) או חץ למעלה. לחץ רווח או אנטר (ENTER) כדי לבחור את האפשרות. פתח את תת התפריט (Sub-menu) של האפשרות הנוכחית עם רווח או אנטר (ENTER) או חץ שמאלי. חזור לתפריט האב עם אסקייפ (ESC) או חץ שמאלי. סגור את תפריט ההקשר עם אסקייפ (ESC).'},{name:'תפריטים צפים (List boxes)',legend:'בתוך תפריט צף, עבור לפריט הבא עם טאב (TAB) או חץ למטה. עבור לתפריט הקודם עם שיפט (SHIFT) + טאב (TAB) or חץ עליון. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'},{name:'עץ אלמנטים (Elements Path)',legend:'לחץ ${elementsPathFocus} כדי לנווט לעץ האלמנטים. עבור לפריט הבא עם טאב (TAB) או חץ ימני. עבור לפריט הקודם עם שיפט (SHIFT) + טאב (TAB) או חץ שמאלי. לחץ רווח או אנטר (ENTER) כדי לבחור את האלמנט בעורך.'}]},{name:'פקודות',items:[{name:' ביטול צעד אחרון',legend:'לחץ ${undo}'},{name:' חזרה על צעד אחרון',legend:'לחץ ${redo}'},{name:' הדגשה',legend:'לחץ ${bold}'},{name:' הטייה',legend:'לחץ ${italic}'},{name:' הוספת קו תחתון',legend:'לחץ ${underline}'},{name:' הוספת לינק',legend:'לחץ ${link}'},{name:' כיווץ סרגל הכלים',legend:'לחץ ${toolbarCollapse}'},{name:' הוראות נגישות',legend:'לחץ ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/cy.js0000664000175000017500000000513412262650742025056 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','cy',{accessibilityHelp:{title:'Canllawiau Hygyrchedd',contents:'Cynnwys Cymorth. I gau y deialog hwn, pwyswch ESC.',legend:[{name:'Cyffredinol',items:[{name:'Bar Offer y Golygydd',legend:"Pwyswch $ {toolbarFocus} i fynd at y bar offer. Symudwch i'r grŵp bar offer nesaf a blaenorol gyda TAB a SHIFT-TAB. Symudwch i'r botwm bar offer nesaf a blaenorol gyda SAETH DDE neu SAETH CHWITH. Pwyswch SPACE neu ENTER i wneud botwm y bar offer yn weithredol."},{name:'Deialog y Golygydd',legend:"Tu mewn i'r deialog, pwyswch TAB i fynd i'r maes nesaf ar y deialog, pwyswch SHIFT + TAB i symud i faes blaenorol, pwyswch ENTER i gyflwyno'r deialog, pwyswch ESC i ddiddymu'r deialog. Ar gyfer deialogau sydd â thudalennau aml-tab, pwyswch ALT + F10 i lywio'r tab-restr. Yna symudwch i'r tab nesaf gyda TAB neu SAETH DDE. Symudwch i dab blaenorol gyda SHIFT + TAB neu'r SAETH CHWITH. Pwyswch SPACE neu ENTER i ddewis y dudalen tab."},{name:'Dewislen Cyd-destun y Golygydd',legend:"Pwyswch $ {contextMenu} neu'r ALLWEDD 'APPLICATION' i agor y ddewislen cyd-destun. Yna symudwch i'r opsiwn ddewislen nesaf gyda'r TAB neu'r SAETH I LAWR. Symudwch i'r opsiwn blaenorol gyda SHIFT + TAB neu'r SAETH I FYNY. Pwyswch SPACE neu ENTER i ddewis yr opsiwn ddewislen. Agorwch is-dewislen yr opsiwn cyfredol gyda SPACE neu ENTER neu SAETH DDE. Ewch yn ôl i'r eitem ar y ddewislen uwch gydag ESC neu SAETH CHWITH. Ceuwch y ddewislen cyd-destun gydag ESC."},{name:'Blwch Rhestr y Golygydd',legend:"Tu mewn rhestr-bocs, ewch i'r eitem rhestr nesaf gyda TAB neu'r SAETH I LAWR. Symudwch i restr eitem flaenorol gyda SHIFT + TAB neu SAETH I FYNY. Pwyswch SPACE neu ENTER i ddewis yr opsiwn o'r rhestr. Pwyswch ESC i gau'r rhestr."},{name:'Bar Llwybr Elfen y Golygydd',legend:"Pwyswch $ {elementsPathFocus} i fynd i'r elfennau llwybr bar. Symudwch i fotwm yr elfen nesaf gyda TAB neu SAETH DDE. Symudwch i fotwm blaenorol gyda SHIFT + TAB neu SAETH CHWITH. Pwyswch SPACE neu ENTER i ddewis yr elfen yn y golygydd."}]},{name:'Gorchmynion',items:[{name:'Gorchymyn dadwneud',legend:'Pwyswch ${undo}'},{name:'Gorchymyn ailadrodd',legend:'Pwyswch ${redo}'},{name:'Gorchymyn Bras',legend:'Pwyswch ${bold}'},{name:'Gorchymyn italig',legend:'Pwyswch ${italig}'},{name:'Gorchymyn tanlinellu',legend:'Pwyso ${underline}'},{name:'Gorchymyn dolen',legend:'Pwyswch ${link}'},{name:"Gorchymyn Cwympo'r Dewislen",legend:'Pwyswch ${toolbarCollapse}'},{name:'Cymorth Hygyrchedd',legend:'Pwyswch ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/it.js0000664000175000017500000000564612262650742025067 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','it',{accessibilityHelp:{title:'Istruzioni di Accessibilità',contents:'Contenuti di Aiuto. Per chiudere questa finestra premi ESC.',legend:[{name:'Generale',items:[{name:'Barra degli strumenti Editor',legend:'Premi ${toolbarFocus} per navigare fino alla barra degli strumenti. Muoviti tra i gruppi della barra degli strumenti con i tasti Tab e Maiusc-Tab. Spostati tra il successivo ed il precedente pulsante della barra degli strumenti usando le frecce direzionali Destra e Sinistra. Premi Spazio o Invio per attivare il pulsante della barra degli strumenti.'},{name:'Finestra Editor',legend:"All'interno di una finestra di dialogo, premi Tab per navigare fino al campo successivo della finestra di dialogo, premi Maiusc-Tab per tornare al campo precedente, premi Invio per inviare la finestra di dialogo, premi Esc per uscire. Per le finestre che hanno schede multiple, premi Alt+F10 per navigare nella lista delle schede. Quindi spostati alla scheda successiva con il tasto Tab oppure con la Freccia Destra. Torna alla scheda precedente con Maiusc+Tab oppure con la Freccia Sinistra. Premi Spazio o Invio per scegliere la scheda."},{name:'Menù contestuale Editor',legend:"Premi ${contextMenu} o TASTO APPLICAZIONE per aprire il menu contestuale. Dunque muoviti all'opzione successiva del menu con il tasto TAB o con la Freccia Sotto. Muoviti all'opzione precedente con MAIUSC+TAB o con Freccia Sopra. Premi SPAZIO o INVIO per scegliere l'opzione di menu. Apri il sottomenu dell'opzione corrente con SPAZIO o INVIO oppure con la Freccia Destra. Torna indietro al menu superiore con ESC oppure Freccia Sinistra. Chiudi il menu contestuale con ESC."},{name:'Box Lista Editor',legend:"Dentro un box-lista, muoviti al prossimo elemento della lista con TAB o con la Freccia direzionale giù. Spostati all'elemento precedente con MAIUSC+TAB oppure con Freccia direzionale sopra. Premi SPAZIO o INVIO per scegliere l'opzione della lista. Premi ESC per chiudere il box-lista."},{name:'Barra percorso elementi editor',legend:"Premi ${elementsPathFocus} per navigare tra gli elementi della barra percorso. Muoviti al prossimo pulsante di elemento con TAB o la Freccia direzionale destra. Muoviti al pulsante precedente con MAIUSC+TAB o la Freccia Direzionale Sinistra. Premi SPAZIO o INVIO per scegliere l'elemento nell'editor."}]},{name:'Comandi',items:[{name:' Annulla comando',legend:'Premi ${undo}'},{name:' Ripeti comando',legend:'Premi ${redo}'},{name:' Comando Grassetto',legend:'Premi ${bold}'},{name:' Comando Corsivo',legend:'Premi ${italic}'},{name:' Comando Sottolineato',legend:'Premi ${underline}'},{name:' Comando Link',legend:'Premi ${link}'},{name:' Comando riduci barra degli strumenti',legend:'Premi ${toolbarCollapse}'},{name:' Aiuto Accessibilità',legend:'Premi ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/nl.js0000664000175000017500000000534112262650742025054 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','nl',{accessibilityHelp:{title:'Toegankelijkheidsinstructies',contents:'Help inhoud. Druk op ESC om dit dialoog te sluiten.',legend:[{name:'Algemeen',items:[{name:'Werkbalk tekstverwerker',legend:'Druk op ${toolbarFocus} om naar de werkbalk te navigeren. Om te schakelen naar de volgende en vorige werkbalkgroep, gebruik TAB en SHIFT+TAB. Om te schakelen naar de volgende en vorige werkbalkknop, gebruik de PIJL RECHTS en PIJL LINKS. Druk op SPATIE of ENTER om een werkbalkknop te activeren.'},{name:'Dialoog tekstverwerker',legend:'In een dialoogvenster, druk op TAB om te navigeren naar het volgende veld. Druk op SHIFT+TAB om naar het vorige veld te navigeren. Druk op ENTER om het dialoogvenster te verzenden. Druk op ESC om het dialoogvenster te sluiten. Voor dialoogvensters met meerdere tabbladen, druk op ALT+F10 om naar de tabset te navigeren. Schakel naar het volgende tabblad met TAB of PIJL RECHTS. Schakel naar het vorige tabblad met SHIFT+TAB of PIJL LINKS. Druk op SPATIE of ENTER om het tabblad te selecteren.'},{name:'Contextmenu tekstverwerker',legend:'Druk op ${contextMenu} of APPLICATION KEY om het contextmenu te openen. Schakel naar de volgende menuoptie met TAB of PIJL OMLAAG. Schakel naar de vorige menuoptie met SHIFT+TAB of PIJL OMHOOG. Druk op SPATIE of ENTER om een menuoptie te selecteren. Op een submenu van de huidige optie met SPATIE, ENTER of PIJL RECHTS. Ga terug naar de bovenliggende menuoptie met ESC of PIJL LINKS. Sluit het contextmenu met ESC.'},{name:'Keuzelijst tekstverwerker',legend:'In een keuzelijst, schakel naar het volgende item met TAB of PIJL OMLAAG. Schakel naar het vorige item met SHIFT+TAB of PIJL OMHOOG. Druk op SPATIE of ENTER om het item te selecteren. Druk op ESC om de keuzelijst te sluiten.'},{name:'Elementenpad werkbalk tekstverwerker',legend:'Druk op ${elementsPathFocus} om naar het elementenpad te navigeren. Om te schakelen naar het volgende element, gebruik TAB of PIJL RECHTS. Om te schakelen naar het vorige element, gebruik SHIFT+TAB or PIJL LINKS. Druk op SPATIE of ENTER om een element te selecteren in de tekstverwerker.'}]},{name:'Opdrachten',items:[{name:'Ongedaan maken opdracht',legend:'Druk op ${undo}'},{name:'Opnieuw uitvoeren opdracht',legend:'Druk op ${redo}'},{name:'Vetgedrukt opdracht',legend:'Druk up ${bold}'},{name:'Cursief opdracht',legend:'Druk op ${italic}'},{name:'Onderstrepen opdracht',legend:'Druk op ${underline}'},{name:'Link opdracht',legend:'Druk op ${link}'},{name:'Werkbalk inklappen opdracht',legend:'Druk op ${toolbarCollapse}'},{name:'Toegankelijkheidshulp',legend:'Druk op ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/pt-br.js0000664000175000017500000000530512262650742025467 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','pt-br',{accessibilityHelp:{title:'Instruções de Acessibilidade',contents:'Conteúdo da Ajuda. Para fechar este diálogo pressione ESC.',legend:[{name:'Geral',items:[{name:'Barra de Ferramentas do Editor',legend:'Pressione ${toolbarFocus} para navegar para a barra de ferramentas. Mova para o anterior ou próximo grupo de ferramentas com TAB e SHIFT-TAB. Mova para o anterior ou próximo botão com SETA PARA DIREITA or SETA PARA ESQUERDA. Pressione ESPAÇO ou ENTER para ativar o botão da barra de ferramentas.'},{name:'Diálogo do Editor',legend:'Dentro de um diálogo, pressione TAB para navegar para o próximo campo, pressione SHIFT + TAB para mover para o campo anterior, pressione ENTER para enviar o diálogo, pressione ESC para cancelar o diálogo. Para diálogos que tem múltiplas abas, pressione ALT + F10 para navegar para a lista de abas, então mova para a próxima aba com SHIFT + TAB ou SETA PARA ESQUERDA. Pressione ESPAÇO ou ENTER para selecionar a aba.'},{name:'Menu de Contexto do Editor',legend:'Pressione ${contextMenu} ou TECLA DE MENU para abrir o menu de contexto, então mova para a próxima opção com TAB ou SETA PARA BAIXO. Mova para a anterior com SHIFT+TAB ou SETA PARA CIMA. Pressione ESPAÇO ou ENTER para selecionar a opção do menu. Abra o submenu da opção atual com ESPAÇO ou ENTER ou SETA PARA DIREITA. Volte para o menu pai com ESC ou SETA PARA ESQUERDA. Feche o menu de contexto com ESC.'},{name:'Caixa de Lista do Editor',legend:'Dentro de uma caixa de lista, mova para o próximo item com TAB ou SETA PARA BAIXO. Mova para o item anterior com SHIFT + TAB ou SETA PARA CIMA. Pressione ESPAÇO ou ENTER para selecionar uma opção na lista. Pressione ESC para fechar a caixa de lista.'},{name:'Barra de Caminho do Elementos do Editor',legend:'Pressione ${elementsPathFocus} para a barra de caminho dos elementos. Mova para o próximo botão de elemento com TAB ou SETA PARA DIREITA. Mova para o botão anterior com SHIFT+TAB ou SETA PARA ESQUERDA. Pressione ESPAÇO ou ENTER para selecionar o elemento no editor.'}]},{name:'Comandos',items:[{name:' Comando Desfazer',legend:'Pressione ${undo}'},{name:' Comando Refazer',legend:'Pressione ${redo}'},{name:' Comando Negrito',legend:'Pressione ${bold}'},{name:' Comando Itálico',legend:'Pressione ${italic}'},{name:' Comando Sublinhado',legend:'Pressione ${underline}'},{name:' Comando Link',legend:'Pressione ${link}'},{name:' Comando Fechar Barra de Ferramentas',legend:'Pressione ${toolbarCollapse}'},{name:' Ajuda de Acessibilidade',legend:'Pressione ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/ug.js0000664000175000017500000000612512262650742025057 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','ug',{accessibilityHelp:{title:'قوشۇمچە چۈشەندۈرۈش',contents:'ياردەم مەزمۇنى. بۇ سۆزلەشكۈنى ياپماقچى بولسىڭىز ESC نى بېسىڭ.',legend:[{name:'ئادەتتىكى',items:[{name:'قورال بالداق تەھرىر',legend:'${toolbarFocus} بېسىلسا قورال بالداققا يېتەكلەيدۇ، TAB ياكى SHIFT+TAB ئارقىلىق قورال بالداق گۇرۇپپىسى تاللىنىدۇ، ئوڭ سول يا ئوقتا توپچا تاللىنىدۇ، بوشلۇق ياكى Enter كۇنۇپكىسىدا تاللانغان توپچىنى قوللىنىدۇ.'},{name:'تەھرىرلىگۈچ سۆزلەشكۈسى',legend:'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.'},{name:'تەھرىرلىگۈچ تىل مۇھىت تىزىملىكى',legend:'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.'},{name:'تەھرىرلىگۈچ تىزىمى',legend:'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'},{name:'تەھرىرلىگۈچ ئېلېمېنت يول بالداق',legend:'${elementsPathFocus} بېسىلسا ئېلېمېنت يول بالداققا يېتەكلەيدۇ، TAB ياكى ئوڭ يا ئوقتا كېيىنكى ئېلېمېنت تاللىنىدۇ، SHIFT+TAB ياكى سول يا ئوقتا ئالدىنقى ئېلېمېنت تاللىنىدۇ، بوشلۇق ياكى Enter كۇنۇپكىسىدا تەھرىرلىگۈچتىكى ئېلېمېنت تاللىنىدۇ.'}]},{name:'بۇيرۇق',items:[{name:'بۇيرۇقتىن يېنىۋال',legend:'${undo} نى بېسىڭ'},{name:'قايتىلاش بۇيرۇقى',legend:'${redo} نى بېسىڭ'},{name:'توملىتىش بۇيرۇقى',legend:'${bold} نى بېسىڭ'},{name:'يانتۇ بۇيرۇقى',legend:'${italic} نى بېسىڭ'},{name:'ئاستى سىزىق بۇيرۇقى',legend:'${underline} نى بېسىڭ'},{name:'ئۇلانما بۇيرۇقى',legend:'${link} نى بېسىڭ'},{name:'قورال بالداق قاتلاش بۇيرۇقى',legend:'${toolbarCollapse} نى بېسىڭ'},{name:'توسالغۇسىز لايىھە چۈشەندۈرۈشى',legend:'${a11yHelp} نى بېسىڭ'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/tr.js0000664000175000017500000000550212262650742025067 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','tr',{accessibilityHelp:{title:'Erişilebilirlik Talimatları',contents:'Yardım içeriği. Bu pencereyi kapatmak için ESC tuşuna basın.',legend:[{name:'Genel',items:[{name:'Araç Çubuğu Editörü',legend:'Araç çubuğunda gezinmek için ${toolbarFocus} basın. TAB ve SHIFT-TAB ile önceki ve sonraki araç çubuğu grubuna taşıyın. SAĞ OK veya SOL OK ile önceki ve sonraki bir araç çubuğu düğmesini hareket ettirin. SPACE tuşuna basın veya araç çubuğu düğmesini etkinleştirmek için ENTER tuşna basın.'},{name:'Dialog Editörü',legend:'Dialog penceresi içinde, sonraki iletişim alanına gitmek için SEKME tuşuna basın, önceki alana geçmek için SHIFT + TAB tuşuna basın, pencereyi göndermek için ENTER tuşuna basın, dialog penceresini iptal etmek için ESC tuşuna basın. Birden çok sekme sayfaları olan diyalogların, sekme listesine gitmek için ALT + F10 tuşlarına basın. Sonra TAB veya SAĞ OK sonraki sekmeye taşıyın. SHIFT + TAB veya SOL OK ile önceki sekmeye geçin. Sekme sayfayı seçmek için SPACE veya ENTER tuşuna basın.'},{name:'İçerik Menü Editörü',legend:"İçerik menüsünü açmak için ${contextMenu} veya UYGULAMA TUŞU'na basın. Daha sonra SEKME veya AŞAĞI OK ile bir sonraki menü seçeneği taşıyın. SHIFT + TAB veya YUKARI OK ile önceki seçeneğe gider. Menü seçeneğini seçmek için SPACE veya ENTER tuşuna basın. Seçili seçeneğin alt menüsünü SPACE ya da ENTER veya SAĞ OK açın. Üst menü öğesini geçmek için ESC veya SOL OK ile geri dönün. ESC ile bağlam menüsünü kapatın."},{name:'Liste Kutusu Editörü',legend:'Liste kutusu içinde, bir sonraki liste öğesine SEKME VEYA AŞAĞI OK ile taşıyın. SHIFT + TAB veya YUKARI önceki liste öğesi taşıyın. Liste seçeneği seçmek için SPACE veya ENTER tuşuna basın. Liste kutusunu kapatmak için ESC tuşuna basın.'},{name:'Element Yol Çubuğu Editörü',legend:'Elementlerin yol çubuğunda gezinmek için ${ElementsPathFocus} basın. SEKME veya SAĞ OK ile sonraki element düğmesine taşıyın. SHIFT + TAB veya SOL OK önceki düğmeye hareket ettirin. Editör içindeki elementi seçmek için ENTER veya SPACE tuşuna basın.'}]},{name:'Komutlar',items:[{name:'Komutu geri al',legend:'${undo} basın'},{name:' Tekrar komutu uygula',legend:'${redo} basın'},{name:' Kalın komut',legend:'${bold} basın'},{name:' İtalik komutu',legend:'${italic} basın'},{name:' Alttan çizgi komutu',legend:'${underline} basın'},{name:' Bağlantı komutu',legend:'${link} basın'},{name:' Araç çubuğu Toplama komutu',legend:'${toolbarCollapse} basın'},{name:'Erişilebilirlik Yardımı',legend:'${a11yHelp} basın'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/mk.js0000664000175000017500000000476112262650742025057 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','mk',{accessibilityHelp:{title:'Инструкции за пристапност',contents:'Содржина на делот за помош. За да го затворите овој дијалот притиснете ESC.',legend:[{name:'Општо',items:[{name:'Мени за едиторот',legend:'Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button.'},{name:'Дијалот за едиторот',legend:'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.'},{name:'Editor Context Menu',legend:'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.'},{name:'Editor List Box',legend:'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'},{name:'Editor Element Path Bar',legend:'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.'}]},{name:'Commands',items:[{name:' Undo command',legend:'Press ${undo}'},{name:' Redo command',legend:'Press ${redo}'},{name:' Bold command',legend:'Press ${bold}'},{name:' Italic command',legend:'Press ${italic}'},{name:' Underline command',legend:'Press ${underline}'},{name:' Link command',legend:'Press ${link}'},{name:' Toolbar Collapse command',legend:'Press ${toolbarCollapse}'},{name:' Accessibility Help',legend:'Press ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt0000664000175000017500000000165612262650742030614 0ustar chmrrchmrrCopyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license cs.js Found: 30 Missing: 0 cy.js Found: 30 Missing: 0 da.js Found: 12 Missing: 18 de.js Found: 30 Missing: 0 el.js Found: 25 Missing: 5 eo.js Found: 30 Missing: 0 fa.js Found: 30 Missing: 0 fi.js Found: 30 Missing: 0 fr.js Found: 30 Missing: 0 gu.js Found: 12 Missing: 18 he.js Found: 30 Missing: 0 it.js Found: 30 Missing: 0 ku.js Found: 30 Missing: 0 lv.js Found: 30 Missing: 0 mk.js Found: 5 Missing: 25 nb.js Found: 30 Missing: 0 nl.js Found: 30 Missing: 0 no.js Found: 30 Missing: 0 pt-br.js Found: 30 Missing: 0 ro.js Found: 6 Missing: 24 sk.js Found: 30 Missing: 0 tr.js Found: 30 Missing: 0 ug.js Found: 27 Missing: 3 vi.js Found: 6 Missing: 24 zh-cn.js Found: 30 Missing: 0 rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/lv.js0000664000175000017500000000612312262650742025063 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','lv',{accessibilityHelp:{title:'Pieejamības instrukcija',contents:'Palīdzības saturs. Lai aizvērtu ciet šo dialogu nospiediet ESC.',legend:[{name:'Galvenais',items:[{name:'Redaktora rīkjosla',legend:'Nospiediet ${toolbarFocus} lai pārvietotos uz rīkjoslu. Lai pārvietotos uz nākošo vai iepriekšējo rīkjoslas grupu izmantojiet pogu TAB un SHIFT+TAB. Lai pārvietotos uz nākošo vai iepriekšējo rīkjoslas pogu izmantojiet Kreiso vai Labo bultiņu. Nospiediet Atstarpi vai ENTER lai aktivizētu rīkjosla pogu.'},{name:'Redaktora dialoga logs',legend:'Dialoga logā nospiediet pogu TAB lai pārvietotos uz nākošo dialoga loga lauku, nospiediet SHIFT+TAB lai atgrieztos iepriekšējā laukā, nospiediet ENTER lai apstiprinātu dialoga datus, nospiediet ESC lai aizvērtu šo dialogu. Dialogam kuram ir vairākas cilnes, nospiediet ALT+F10 lai pārvietotos uz nepieciešamo cilni. Lai pārvietotos uz nākošo cilni izmantojiet pogu TAB vai Labo bultiņu. Lai pārvietotos uz iepriekšējo cilni nospiediet SHIFT+TAB vai kreiso bultiņu. Nospiediet SPACE vai ENTER lai izvēlētos lapas cilni.'},{name:'Redaktora satura izvēle',legend:'Nospiediet ${contextMenu} vai APPLICATION KEY lai atvērtu satura izvēlni. Lai pārvietotos uz nākošo izvēlnes opciju izmantojiet pogu TAB vai pogu Bultiņu uz leju. Lai pārvietotos uz iepriekšējo opciju izmantojiet SHIFT+TAB vai pogu Bultiņa uz augšu. Nospiediet SPACE vai ENTER lai izvelētos izvēlnes opciju. Atveriet tekošajā opcija apakšizvēlni ar SAPCE vai ENTER ka ari to var izdarīt ar Labo bultiņu. Lai atgrieztos atpakaļ uz sakuma izvēlni nospiediet ESC vai Kreiso bultiņu. Lai aizvērtu ciet izvēlnes saturu nospiediet ESC.'},{name:'Redaktora saraksta lauks',legend:'Saraksta laukā, lai pārvietotos uz nākošo saraksta elementu nospiediet TAB vai pogu Bultiņa uz leju. Lai pārvietotos uz iepriekšējo saraksta elementu nospiediet SHIFT+TAB vai pogu Bultiņa uz augšu. Nospiediet SPACE vai ENTER lai izvēlētos saraksta opcijas. Nospiediet ESC lai aizvērtu saraksta lauku. '},{name:'Redaktora elementa ceļa josla',legend:'Nospiediet ${elementsPathFocus} lai pārvietotos uz elementa ceļa joslu. Lai pārvietotos uz nākošo elementa pogu izmantojiet TAB vai Labo bultiņu. Lai pārvietotos uz iepriekšējo elementa pogu izmantojiet SHIFT + TAB vai Kreiso bultiņu. Nospiediet SPACE vai ENTER lai izvēlētos elementu redaktorā.'}]},{name:'Komandas',items:[{name:'Komanda atcelt darbību',legend:'Nospiediet ${undo}'},{name:'Komanda atkārtot darbību',legend:'Nospiediet ${redo}'},{name:'Treknraksta komanda',legend:'Nospiediet ${bold}'},{name:'Kursīva komanda',legend:'Nospiediet ${italic}'},{name:'Apakšsvītras komanda ',legend:'Nospiediet ${underline}'},{name:'Hipersaites komanda',legend:'Nospiediet ${link}'},{name:'Rīkjoslas aizvēršanas komanda',legend:'Nospiediet ${toolbarCollapse}'},{name:'Pieejamības palīdzība',legend:'Nospiediet ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/fr.js0000664000175000017500000000670212262650742025054 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','fr',{accessibilityHelp:{title:"Instructions pour l'accessibilité",contents:"Contenu de l'aide. Pour fermer ce dialogue, appuyez sur la touche ESC (Echappement).",legend:[{name:'Général',items:[{name:"Barre d'outils de l'éditeur",legend:"Appuyer sur ${toolbarFocus} pour accéder à la barre d'outils. Se déplacer vers les groupes suivant ou précédent de la barre d'outil avec les touches TAB et SHIFT-TAB. Se déplacer vers les boutons suivant ou précédent de la barre d'outils avec les touches FLECHE DROITE et FLECHE GAUCHE. Appuyer sur la barre d'espace ou la touche ENTRER pour activer le bouton de barre d'outils."},{name:'Dialogue de léditeur',legend:"A l'intérieur d'un dialogue, appuyer sur la touche TAB pour naviguer jusqu'au champ de dalogue suivant, appuyez sur les touches SHIFT + TAB pour revenir au champ précédent, appuyez sur la touche ENTRER pour soumettre le dialogue, appuyer sur la touche ESC pour annuler le dialogue. Pour les dialogues avec plusieurs pages d'onglets, appuyer sur ALT + F10 pour naviguer jusqu'à la liste des onglets. Puis se déplacer vers l'onglet suivant avec la touche TAB ou FLECHE DROITE. Se déplacer vers l'onglet précédent avec les touches SHIFT + TAB ou FLECHE GAUCHE. Appuyer sur la barre d'espace ou la touche ENTRER pour sélectionner la page de l'onglet."},{name:"Menu contextuel de l'éditeur",legend:"Appuyer sur ${contextMenu} ou entrer le RACCOURCI CLAVIER pour ouvrir le menu contextuel. Puis se déplacer vers l'option suivante du menu avec les touches TAB ou FLECHE BAS. Se déplacer vers l'option précédente avec les touches SHIFT+TAB ou FLECHE HAUT. appuyer sur la BARRE D'ESPACE ou la touche ENTREE pour sélectionner l'option du menu. Oovrir le sous-menu de l'option courante avec la BARRE D'ESPACE ou les touches ENTREE ou FLECHE DROITE. Revenir à l'élément de menu parent avec les touches ESC ou FLECHE GAUCHE. Fermer le menu contextuel avec ESC."},{name:"Zone de liste en menu déroulant de l'éditeur",legend:"A l'intérieur d'une liste en menu déroulant, se déplacer vers l'élément suivant de la liste avec les touches TAB ou FLECHE BAS. Se déplacer vers l'élément précédent de la liste avec les touches SHIFT + TAB ou FLECHE HAUT. Appuyer sur la BARRE D'ESPACE ou sur ENTREE pour sélectionner l'option dans la liste. Appuyer sur ESC pour fermer le menu déroulant."},{name:"Barre d'emplacement des éléments de léditeur",legend:"Appuyer sur ${elementsPathFocus} pour naviguer vers la barre d'emplacement des éléments de léditeur. Se déplacer vers le bouton d'élément suivant avec les touches TAB ou FLECHE DROITE. Se déplacer vers le bouton d'élément précédent avec les touches SHIFT+TAB ou FLECHE GAUCHE. Appuyer sur la BARRE D'ESPACE ou sur ENTREE pour sélectionner l'élément dans l'éditeur."}]},{name:'Commandes',items:[{name:' Commande défaire',legend:'Appuyer sur ${undo}'},{name:' Commande refaire',legend:'Appuyer sur ${redo}'},{name:' Commande gras',legend:'Appuyer sur ${bold}'},{name:' Commande italique',legend:'Appuyer sur ${italic}'},{name:' Commande souligné',legend:'Appuyer sur ${underline}'},{name:' Commande lien',legend:'Appuyer sur ${link}'},{name:" Commande enrouler la barre d'outils",legend:'Appuyer sur ${toolbarCollapse}'},{name:' Aide Accessibilité',legend:'Appuyer sur ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/zh-cn.js0000664000175000017500000000450012262650742025456 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','zh-cn',{accessibilityHelp:{title:'辅助说明',contents:'帮助内容。要关闭此对话框请按 ESC 键。',legend:[{name:'常规',items:[{name:'编辑器工具栏',legend:'按 ${toolbarFocus} 导航到工具栏,使用 TAB 键或 SHIFT+TAB 组合键选择工具栏组,使用左右箭头键选择按钮,按空格键或回车键以应用选中的按钮。'},{name:'编辑器对话框',legend:'在对话框内,TAB 键移动到下一个字段,SHIFT + TAB 组合键移动到上一个字段,ENTER 键提交对话框,ESC 键取消对话框。对于有多标签的对话框,用ALT + F10来移到标签列表。然后用 TAB 键或者向右箭头来移动到下一个标签;SHIFT + TAB 组合键或者向左箭头移动到上一个标签。用 SPACE 键或者 ENTER 键选择标签。'},{name:'编辑器上下文菜单',legend:'用 ${contextMenu}或者 应用程序键 打开上下文菜单。然后用 TAB 键或者下箭头键来移动到下一个菜单项;SHIFT + TAB 组合键或者上箭头键移动到上一个菜单项。用 SPACE 键或者 ENTER 键选择菜单项。用 SPACE 键,ENTER 键或者右箭头键打开子菜单。返回菜单用 ESC 键或者左箭头键。用 ESC 键关闭上下文菜单。'},{name:'编辑器列表框',legend:'在列表框中,移到下一列表项用 TAB 键或者下箭头键。移到上一列表项用SHIFT + TAB 组合键或者上箭头键,用 SPACE 键或者 ENTER 键选择列表项。用 ESC 键收起列表框。'},{name:'编辑器元素路径栏',legend:'按 ${elementsPathFocus} 以导航到元素路径栏,使用 TAB 键或右箭头键选择下一个元素,使用 SHIFT+TAB 组合键或左箭头键选择上一个元素,按空格键或回车键以选定编辑器里的元素。'}]},{name:'命令',items:[{name:' 撤消命令',legend:'按 ${undo}'},{name:' 重做命令',legend:'按 ${redo}'},{name:' 加粗命令',legend:'按 ${bold}'},{name:' 倾斜命令',legend:'按 ${italic}'},{name:' 下划线命令',legend:'按 ${underline}'},{name:' 链接命令',legend:'按 ${link}'},{name:' 工具栏折叠命令',legend:'按 ${toolbarCollapse}'},{name:' 无障碍设计说明',legend:'按 ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/de.js0000664000175000017500000000535212262650742025035 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','de',{accessibilityHelp:{title:'Barrierefreiheitinformationen',contents:"Hilfeinhalt. Um den Dialog zu schliessen die Taste 'ESC' drücken.",legend:[{name:'Allgemein',items:[{name:'Editor Symbolleiste',legend:'Drücken Sie ${toolbarFocus} auf der Symbolleiste. Gehen Sie zur nächsten oder vorherigen Symbolleistengruppe mit TAB und SHIFT-TAB. Gehen Sie zur nächsten oder vorherigen Symbolleiste auf die Schaltfläche mit dem RECHTS- oder LINKS-Pfeil. Drücken Sie die Leertaste oder Eingabetaste, um die Schaltfläche in der Symbolleiste aktivieren.'},{name:'Editor Dialog',legend:'Innerhalb des Dialogs drücken Sie TAB um zum nächsten Dialogfeld zu gelangen, drücken Sie SHIFT-TAG um zum vorherigen Feld zu wechseln, drücken Sie ENTER um den Dialog abzusenden und ESC um den Dialog zu abzubrechen. Um zwischen den Reitern innerhalb eines Dialogs zu wechseln drücken sie ALT-F10. Um zum nächsten Reiter zu gelangen können Sie TAB oder die rechte Pfeiltaste. Zurück gelangt man mit SHIFT-TAB oder der linken Pfeiltaste. Mit der Leertaste oder Enter kann man den Reiter auswählen.'},{name:'Editor Kontextmenü',legend:'Dürcken Sie ${contextMenu} oder die Anwendungstaste um das Kontextmenü zu öffnen. Man kann die Pfeiltasten zum Wechsel benutzen. Mit der Leertaste oder der Enter-Taste kann man den Menüpunkt aufrufen. Schliessen Sie das Kontextmenü mit der ESC-Taste.'},{name:'Editor Listen',legend:'Innerhalb einer Listenbox kann man mit der TAB-Taste oder den Pfeilrunter-Taste den nächsten Menüeintrag wählen. Mit der Shift-TAB Tastenkombination oder der Pfeilhoch-Taste gelangt man zum vorherigen Menüpunkt. Mit der Leertaste oder Enter kann man den Menüpunkt auswählen. Drücken Sie ESC zum Verlassen des Menüs.'},{name:'Editor Elementpfadleiste',legend:'Drücken Sie ${elementsPathFocus} um sich durch die Pfadleiste zu bewegen. Um zum nächsten Element zu gelangen drücken Sie TAB oder die Pfeilrechts-Taste. Zum vorherigen Element gelangen Sie mit der SHIFT-TAB oder der Pfeillinks-Taste. Drücken Sie die Leertaste oder Enter um das Element auszuwählen.'}]},{name:'Befehle',items:[{name:'Wiederholen Befehl',legend:'Drücken Sie ${undo}'},{name:'Rückgängig Befehl',legend:'Drücken Sie ${redo}'},{name:'Fettschrift Befehl',legend:'Drücken Sie ${bold}'},{name:'Italic Befehl',legend:'Drücken Sie ${italic}'},{name:'Unterstreichung Befehl',legend:'Drücken Sie ${underline}'},{name:'Link Befehl',legend:'Drücken Sie ${link}'},{name:'Symbolleiste zuammenklappen Befehl',legend:'Drücken Sie ${toolbarCollapse}'},{name:'Eingabehilfen',legend:'Drücken Sie ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/fa.js0000664000175000017500000001114112262650742025024 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'a11yhelp', 'fa', { accessibilityHelp : { title : 'دستورالعمل‌های دسترسی', contents : 'راهنمای فهرست مطالب. برای بستن این کادر محاوره‌ای ESC را فشار دهید.', legend : [ { name : 'عمومی', items : [ { name : 'نوار ابزار ویرایشگر', legend: '${toolbarFocus} را برای باز کردن نوار ابزار بفشارید. با کلید Tab و Shif-Tab در مجموعه نوار ابزار بعدی و قبلی حرکت کنید. برای حرکت در کلید نوار ابزار قبلی و بعدی با کلید جهت‌نمای راست و چپ جابجا شوید. کلید Space یا Enter را برای فعال کردن کلید نوار ابزار بفشارید.' }, { name : 'پنجره محاوره‌ای ویرایشگر', legend : 'در داخل یک پنجره محاوره‌ای، کلید Tab را بفشارید تا به پنجره‌ی بعدی بروید، Shift+Tab برای حرکت به فیلد قبلی، فشردن Enter برای ثبت اطلاعات پنجره‌، فشردن Esc برای لغو پنجره محاوره‌ای و برای پنجره‌هایی که چندین برگه دارند، فشردن Alt+F10 جهت رفتن به Tab-List. در نهایت حرکت به برگه بعدی با Tab یا کلید جهت‌نمای راست. حرکت به برگه قبلی با Shift+Tab یا کلید جهت‌نمای چپ. فشردن Space یا Enter برای انتخاب یک برگه.' }, { name : 'منوی متنی ویرایشگر', legend : '${contextMenu} یا کلید برنامه‌های کاربردی را برای باز کردن منوی متن را بفشارید. سپس می‌توانید برای حرکت به گزینه بعدی منو با کلید Tab و یا کلید جهت‌نمای پایین جابجا شوید. حرکت به گزینه قبلی با Shift+Tab یا کلید جهت‌نمای بالا. فشردن Space یا Enter برای انتخاب یک گزینه از منو. باز کردن زیر شاخه گزینه منو جاری با کلید Space یا Enter و یا کلید جهت‌نمای راست و چپ. بازگشت به منوی والد با کلید Esc یا کلید جهت‌نمای چپ. بستن منوی متن با Esc.' }, { name : 'جعبه فهرست ویرایشگر', legend : 'در داخل جعبه لیست، قلم دوم از اقلام لیست بعدی را با TAB و یا Arrow Down حرکت دهید. انتقال به قلم دوم از اقلام لیست قبلی را با SHIFT + TAB یا UP ARROW. کلید Space یا ENTER را برای انتخاب گزینه لیست بفشارید. کلید ESC را برای بستن جعبه لیست بفشارید.' }, { name : 'ویرایشگر عنصر نوار راه', legend : 'برای رفتن به مسیر عناصر ${elementsPathFocus} را بفشارید. حرکت به کلید عنصر بعدی با کلید Tab یا کلید جهت‌نمای راست. برگشت به کلید قبلی با Shift+Tab یا کلید جهت‌نمای چپ. فشردن Space یا Enter برای انتخاب یک عنصر در ویرایشگر.' } ] }, { name : 'فرمان‌ها', items : [ { name : 'بازگشت فرمان', legend : 'فشردن ${undo}' }, { name : 'انجام مجدد فرمان', legend : 'فشردن ${redo}' }, { name : 'فرمان متن درشت', legend : 'فشردن ${bold}' }, { name : 'فرمان متن کج', legend : 'فشردن ${italic}' }, { name : 'فرمان متن زیرخط‌دار', legend : 'فشردن ${underline}' }, { name : 'فرمان پیوند', legend : 'فشردن ${link}' }, { name : 'بستن نوار ابزار فرمان', legend : 'فشردن ${toolbarCollapse}' }, { name : 'راهنمای دسترسی', legend : 'فشردن ${a11yHelp}' } ] } ] } }); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/da.js0000664000175000017500000000455012262650742025030 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','da',{accessibilityHelp:{title:'Tilgængelighedsinstrukser',contents:'Help Contents. To close this dialog press ESC.',legend:[{name:'Generelt',items:[{name:'Editor værktøjslinje',legend:'Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button.'},{name:'Editor Dialog',legend:'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.'},{name:'Editor Context Menu',legend:'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.'},{name:'Editor List Box',legend:'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'},{name:'Editor Element Path Bar',legend:'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.'}]},{name:'Kommandoer',items:[{name:'Fortryd kommando',legend:'Klik på ${undo}'},{name:'Gentag kommando',legend:'Klik ${redo}'},{name:' Bold command',legend:'Klik ${bold}'},{name:' Italic command',legend:'Press ${italic}'},{name:' Underline command',legend:'Klik ${underline}'},{name:' Link command',legend:'Klik ${link}'},{name:' Toolbar Collapse command',legend:'Press ${toolbarCollapse}'},{name:' Accessibility Help',legend:'Kilk ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/vi.js0000664000175000017500000000474412262650742025067 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','vi',{accessibilityHelp:{title:'Accessibility Instructions',contents:'Nội dung Hỗ trợ. Nhấn ESC để đóng hộp thoại.',legend:[{name:'Chung',items:[{name:'Thanh công cụ soạn th',legend:'Nhấn ${toolbarFocus} để điều hướng đến thanh công cụ. Nhấn TAB và SHIFT-TAB để chuyển đến nhóm thanh công cụ khác. Nhấn MŨI TÊN PHẢI hoặc MŨI TÊN TRÁI để chuyển sang nút khác trên thanh công cụ. Nhấn PHÍM CÁCH hoặc ENTER để kích hoạt nút trên thanh công c.'},{name:'Hộp thoại Biên t',legend:'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.'},{name:'Trình đơn Ngữ cảnh cBộ soạn thảo',legend:'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.'},{name:'Editor List Box',legend:'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'},{name:'Editor Element Path Bar',legend:'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.'}]},{name:'Commands',items:[{name:' Undo command',legend:'Press ${undo}'},{name:' Redo command',legend:'Press ${redo}'},{name:' Bold command',legend:'Press ${bold}'},{name:' Italic command',legend:'Press ${italic}'},{name:' Underline command',legend:'Press ${underline}'},{name:' Link command',legend:'Press ${link}'},{name:' Toolbar Collapse command',legend:'Press ${toolbarCollapse}'},{name:' Accessibility Help',legend:'Press ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/nb.js0000664000175000017500000000511512262650742025041 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','nb',{accessibilityHelp:{title:'Instruksjoner for tilgjengelighet',contents:'Innhold for hjelp. Trykk ESC for å lukke denne dialogen.',legend:[{name:'Generelt',items:[{name:'Verktøylinje for editor',legend:'Trykk ${toolbarFocus} for å navigere til verktøylinjen. Flytt til neste og forrige verktøylinjegruppe med TAB og SHIFT-TAB. Flytt til neste og forrige verktøylinjeknapp med HØYRE PILTAST og VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å aktivere verktøylinjeknappen.'},{name:'Dialog for editor',legend:'Mens du er i en dialog, trykk TAB for å navigere til neste dialogfelt, press SHIFT + TAB for å flytte til forrige felt, trykk ENTER for å akseptere dialogen, trykk ESC for å avbryte dialogen. For dialoger med flere faner, trykk ALT + F10 for å navigere til listen over faner. Gå til neste fane med TAB eller HØYRE PILTAST. Gå til forrige fane med SHIFT + TAB eller VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å velge fanen.'},{name:'Kontekstmeny for editor',legend:'Trykk ${contextMenu} eller MENYKNAPP for å åpne kontekstmeny. Gå til neste alternativ i menyen med TAB eller PILTAST NED. Gå til forrige alternativ med SHIFT+TAB eller PILTAST OPP. Trykk MELLOMROM eller ENTER for å velge menyalternativet. Åpne undermenyen på valgt alternativ med MELLOMROM eller ENTER eller HØYRE PILTAST. Gå tilbake til overordnet menyelement med ESC eller VENSTRE PILTAST. Lukk kontekstmenyen med ESC.'},{name:'Listeboks for editor',legend:'I en listeboks, gå til neste alternativ i listen med TAB eller PILTAST NED. Gå til forrige alternativ i listen med SHIFT + TAB eller PILTAST OPP. Trykk MELLOMROM eller ENTER for å velge alternativet i listen. Trykk ESC for å lukke listeboksen.'},{name:'Verktøylinje for elementsti',legend:'Trykk ${elementsPathFocus} for å navigere til verktøylinjen som viser elementsti. Gå til neste elementknapp med TAB eller HØYRE PILTAST. Gå til forrige elementknapp med SHIFT+TAB eller VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å velge elementet i editoren.'}]},{name:'Kommandoer',items:[{name:'Angre',legend:'Trykk ${undo}'},{name:'Gjør om',legend:'Trykk ${redo}'},{name:'Fet tekst',legend:'Trykk ${bold}'},{name:'Kursiv tekst',legend:'Trykk ${italic}'},{name:'Understreking',legend:'Trykk ${underline}'},{name:'Link',legend:'Trykk ${link}'},{name:'Skjul verktøylinje',legend:'Trykk ${toolbarCollapse}'},{name:'Hjelp for tilgjengelighet',legend:'Trykk ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/el.js0000664000175000017500000000713612262650742025047 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','el',{accessibilityHelp:{title:'Οδηγίες Προσβασιμότητας',contents:'Περιεχόμενα Βοήθειας. Πατήστε ESC για κλείσιμο.',legend:[{name:'Γενικά',items:[{name:'Εργαλειοθήκη Επεξεργαστή',legend:'Πατήστε ${toolbarFocus} για να περιηγηθείτε στην γραμμή εργαλείων. Μετακινηθείτε ανάμεσα στις ομάδες της γραμμής εργαλείων με TAB και Shift-TAB. Μετακινηθείτε ανάμεσα στα κουμπία εργαλείων με ΔΕΞΙ και ΑΡΙΣΤΕΡΟ ΒΕΛΑΚΙ. Πατήστε ΚΕΝΟ ή ENTER για να ενεργοποιήσετε το ενεργό κουμπί εργαλείου.'},{name:'Παράθυρο Διαλόγου Επεξεργαστή',legend:'Μέσα σε ένα παράθυρο διαλόγου, πατήστε TAB για να μεταβείτε στο επόμενο πεδίο ή SHIFT + TAB για να μεταβείτε στο προηγούμενο. Πατήστε ENTER για να υποβάλετε την φόρμα. Πατήστε ESC για να ακυρώσετε την διαδικασία της φόρμας. Για παράθυρα διαλόγων που έχουν πολλές σελίδες σε καρτέλες πατήστε ALT + F10 για να μεταβείτε στην λίστα των καρτέλων. Στην συνέχεια μπορείτε να μεταβείτε στην επόμενη καρτέλα πατώντας TAB ή RIGHT ARROW. Μπορείτε να μεταβείτε στην προηγούμενη καρτέλα πατώντας SHIFT + TAB ή LEFT ARROW. Πατήστε SPACE ή ENTER για να επιλέξετε την καρτέλα για προβολή.'},{name:'Αναδυόμενο Μενού Επεξεργαστή',legend:'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.'},{name:'Editor List Box',legend:'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'},{name:'Editor Element Path Bar',legend:'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.'}]},{name:'Εντολές',items:[{name:' Εντολή αναίρεσης',legend:'Πατήστε ${undo}'},{name:' Εντολή επανάληψης',legend:'Πατήστε ${redo}'},{name:' Εντολή έντονης γραφής',legend:'Πατήστε ${bold}'},{name:' Εντολή πλάγιας γραφής',legend:'Πατήστε ${italic}'},{name:' Εντολή υπογράμμισης',legend:'Πατήστε ${underline}'},{name:' Εντολή συνδέσμου',legend:'Πατήστε ${link}'},{name:' Εντολή Σύμπτηξης Εργαλειοθήκης',legend:'Πατήστε ${toolbarCollapse}'},{name:' Βοήθεια Προσβασιμότητας',legend:'Πατήστε ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/ro.js0000664000175000017500000000456312262650742025070 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','ro',{accessibilityHelp:{title:'Instrucțiuni de accesibilitate',contents:'Cuprins. Pentru a închide acest dialog, apăsați tasta ESC.',legend:[{name:'General',items:[{name:'Editează bara.',legend:'Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button.'},{name:'Dialog editor',legend:'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.'},{name:'Editor meniu contextual',legend:'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.'},{name:'Editor List Box',legend:'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'},{name:'Editor Element Path Bar',legend:'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.'}]},{name:'Commands',items:[{name:' Undo command',legend:'Press ${undo}'},{name:' Redo command',legend:'Press ${redo}'},{name:' Bold command',legend:'Press ${bold}'},{name:' Italic command',legend:'Press ${italic}'},{name:' Underline command',legend:'Press ${underline}'},{name:' Link command',legend:'Press ${link}'},{name:' Toolbar Collapse command',legend:'Press ${toolbarCollapse}'},{name:' Accessibility Help',legend:'Press ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/gu.js0000664000175000017500000000505412262650742025057 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','gu',{accessibilityHelp:{title:'એક્ક્ષેબિલિટી ની વિગતો',contents:'હેલ્પ. આ બંધ કરવા ESC દબાવો.',legend:[{name:'જનરલ',items:[{name:'એડિટર ટૂલબાર',legend:'Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button.'},{name:'એડિટર ડાયલોગ',legend:'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.'},{name:'Editor Context Menu',legend:'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.'},{name:'Editor List Box',legend:'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'},{name:'Editor Element Path Bar',legend:'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.'}]},{name:'કમાંડસ',items:[{name:'અન્ડું કમાંડ',legend:'$ દબાવો {undo}'},{name:'ફરી કરો કમાંડ',legend:'$ દબાવો {redo}'},{name:'બોલ્દનો કમાંડ',legend:'$ દબાવો {bold}'},{name:' Italic command',legend:'Press ${italic}'},{name:' Underline command',legend:'Press ${underline}'},{name:' Link command',legend:'Press ${link}'},{name:' Toolbar Collapse command',legend:'Press ${toolbarCollapse}'},{name:' Accessibility Help',legend:'Press ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/ku.js0000664000175000017500000001265712262650742025072 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'a11yhelp', 'ku', { accessibilityHelp : { title : 'ڕێنمای لەبەردەستدابوون', contents : 'پێکهاتەی یارمەتی. کلیك ESC بۆ داخستنی ئەم دیالۆگه.', legend : [ { name : 'گشتی', items : [ { name : 'تووڵامرازی ده‌ستكاریكه‌ر', legend: 'کلیك ${toolbarFocus} بۆ ڕابەری تووڵامراز. بۆ گواستنەوەی پێشوو داهاتووی گرووپی تووڵامرازی داگرتنی کلیلی TAB له‌گه‌ڵ‌ SHIFT-TAB. بۆ گواستنەوەی پێشوو داهاتووی دووگمەی تووڵامرازی لەڕێی کلیلی تیری دەستی ڕاست یان کلیلی تیری دەستی چەپ. کلیکی کلیلی SPACE یان ENTER بۆ چالاککردنی دووگمەی تووڵامراز.' }, { name : 'دیالۆگی ده‌ستكاریكه‌ر', legend : 'لەهەمانکاتدا کەتۆ لەدیالۆگی, کلیکی کلیلی TAB بۆ ڕابەری خانەی دیالۆگێکی تر, داگرتنی کلیلی SHIFT + TAB بۆ گواستنەوەی بۆ خانەی پێشووتر, کلیكی کلیلی ENTER بۆ ڕازیکردنی دیالۆگەکە, کلیكی کلیلی ESC بۆ هەڵوەشاندنەوەی دیالۆگەکە. بۆ دیالۆگی لەبازدەری (تابی) زیاتر, کلیكی کلیلی ALT + F10 بۆ ڕابه‌ری لیستی بازده‌ره‌کان. بۆ چوونه‌ بازده‌ری تابی داهاتوو کلیكی کلیلی TAB یان کلیلی تیری ده‌ستی ڕاست. بۆچوونه‌ بازده‌ری تابی پێشوو داگرتنی کلیلی SHIFT + TAB یان کلیلی تیری ده‌ستی چه‌پ. کلیی کلیلی SPACE یان ENTER بۆ هه‌ڵبژاردنی بازده‌ر (تاب).' }, { name : 'پێڕستی سه‌رنووسه‌ر', legend : 'کلیك ${contextMenu} یان دوگمه‌ی لیسته‌(Menu) بۆ کردنه‌وه‌ی لیسته‌ی ده‌ق. بۆ چوونه‌ هه‌ڵبژارده‌یه‌کی تر له‌ لیسته‌ کلیکی کلیلی TAB یان کلیلی تیری ڕوو له‌خواره‌وه‌ بۆ چوون بۆ هه‌ڵبژارده‌ی پێشوو کلیکی کلیلی SHIFT+TAB یان کلیلی تیری ڕوو له‌ سه‌ره‌وه. داگرتنی کلیلی SPACE یان ENTER بۆ هه‌ڵبژاردنی هه‌ڵبژارده‌ی لیسته‌. بۆ کردنه‌وه‌ی لقی ژێر لیسته‌ له‌هه‌ڵبژارده‌ی لیسته‌ کلیکی کلیلی SPACE یان ENTER یان کلیلی تیری ده‌ستی ڕاست. بۆ گه‌ڕانه‌وه بۆ سه‌ره‌وه‌ی لیسته‌ کلیکی کلیلی ESC یان کلیلی تیری ده‌ستی چه‌پ. بۆ داخستنی لیسته‌ کلیكی کلیلی ESC بکه.' }, { name : 'لیستی سنووقی سه‌رنووسه‌ر', legend : 'له‌ناو سنوقی لیست, چۆن بۆ هه‌ڵنبژارده‌ی لیستێکی تر کلیکی کلیلی TAB یان کلیلی تیری ڕوو له‌خوار. چوون بۆ هه‌ڵبژارده‌ی لیستی پێشوو کلیکی کلیلی SHIFT + TAB یان کلیلی تیری ڕوو له‌سه‌ره‌وه‌. کلیکی کلیلی SPACE یان ENTER بۆ دیاریکردنی ‌هه‌ڵبژارده‌ی لیست. کلیکی کلیلی ESC بۆ داخستنی سنوقی لیست.' }, { name : 'تووڵامرازی توخم', legend : 'کلیك ${elementsPathFocus} بۆ ڕابه‌ری تووڵامرازی توخمه‌کان. چوون بۆ دوگمه‌ی توخمێکی تر کلیکی کلیلی TAB یان کلیلی تیری ده‌ستی ڕاست. چوون بۆ دوگمه‌ی توخمی پێشوو کلیلی SHIFT+TAB یان کلیکی کلیلی تیری ده‌ستی چه‌پ. داگرتنی کلیلی SPACE یان ENTER بۆ دیاریکردنی توخمه‌که‌ له‌سه‌رنووسه.' } ] }, { name : 'فه‌رمانه‌کان', items : [ { name : 'فه‌رمانی پووچکردنه‌وه', legend : 'کلیك ${undo}' }, { name : 'فه‌رمانی هه‌ڵگه‌ڕانه‌وه', legend : 'کلیك ${redo}' }, { name : 'فه‌رمانی ده‌قی قه‌ڵه‌و', legend : 'کلیك ${bold}' }, { name : 'فه‌رمانی ده‌قی لار', legend : 'کلیك ${italic}' }, { name : 'فه‌رمانی ژێرهێڵ', legend : 'کلیك ${underline}' }, { name : 'فه‌رمانی به‌سته‌ر', legend : 'کلیك ${link}' }, { name : 'شارده‌نه‌وه‌ی تووڵامراز', legend : 'کلیك ${toolbarCollapse}' }, { name : 'ده‌ستپێگه‌یشتنی یارمه‌تی', legend : 'کلیك ${a11yHelp}' } ] } ] } }); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/eo.js0000664000175000017500000000600712262650742025046 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','eo',{accessibilityHelp:{title:'Uzindikoj pri atingeblo',contents:'Helpilenhavo. Por fermi tiun dialogon, premu la ESKAPAN klavon.',legend:[{name:'Ĝeneralaĵoj',items:[{name:'Ilbreto de la redaktilo',legend:'Premu ${toolbarFocus} por atingi la ilbreton. Moviĝu al la sekva aŭ antaŭa grupoj de la ilbreto per la klavoj TABA kaj MAJUSKLIGA-TABA. Moviĝu al la sekva aŭ antaŭa butonoj de la ilbreto per la klavoj SAGO DEKSTREN kaj SAGO MALDEKSTREN. Premu la SPACETklavon aŭ la ENENklavon por aktivigi la ilbretbutonon.'},{name:'Redaktildialogo',legend:'En dialogo, premu la TABAN klavon por navigi al la sekva dialogkampo, premu la MAJUSKLIGAN + TABAN klavojn por reveni al la antaŭa kampo, premu la ENENklavon por sendi la dialogon, premu la ESKAPAN klavon por nuligi la dialogon. Por dialogoj kun pluraj retpaĝoj sub langetoj, premu ALT + F10 por navigi al la langetlisto. Poste moviĝu al la sekva langeto per la klavo TABA aŭ SAGO DEKSTREN. Moviĝu al la antaŭa langeto per la klavoj MAJUSKLIGA + TABA aŭ SAGO MALDEKSTREN. Premu la SPACETklavon aŭ la ENENklavon por selekti la langetretpaĝon.'},{name:'Kunteksta menuo de la redaktilo',legend:'Premu ${contextMenu} aŭ entajpu la KLAVKOMBINAĴON por malfermi la kuntekstan menuon. Poste moviĝu al la sekva opcio de la menuo per la klavoj TABA aŭ SAGO SUBEN. Moviĝu al la antaŭa opcio per la klavoj MAJUSKLGA + TABA aŭ SAGO SUPREN. Premu la SPACETklavon aŭ ENENklavon por selekti la menuopcion. Malfermu la submenuon de la kuranta opcio per la SPACETklavo aŭ la ENENklavo aŭ la SAGO DEKSTREN. Revenu al la elemento de la patra menuo per la klavoj ESKAPA aŭ SAGO MALDEKSTREN. Fermu la kuntekstan menuon per la ESKAPA klavo.'},{name:'Fallisto de la redaktilo',legend:'En fallisto, moviĝu al la sekva listelemento per la klavoj TABA aŭ SAGO SUBEN. Moviĝu al la antaŭa listelemento per la klavoj MAJUSKLIGA + TABA aŭ SAGO SUPREN. Premu la SPACETklavon aŭ ENENklavon por selekti la opcion en la listo. Premu la ESKAPAN klavon por fermi la falmenuon.'},{name:'Breto indikanta la vojon al la redaktilelementoj',legend:'Premu ${elementsPathFocus} por navigi al la breto indikanta la vojon al la redaktilelementoj. Moviĝu al la butono de la sekva elemento per la klavoj TABA aŭ SAGO DEKSTREN. Moviĝu al la butono de la antaŭa elemento per la klavoj MAJUSKLIGA + TABA aŭ SAGO MALDEKSTREN. Premu la SPACETklavon aŭ ENENklavon por selekti la elementon en la redaktilo.'}]},{name:'Komandoj',items:[{name:'Komando malfari',legend:'Premu ${undo}'},{name:'Komando refari',legend:'Premu ${redo}'},{name:'Komando grasa',legend:'Premu ${bold}'},{name:'Komando kursiva',legend:'Premu ${italic}'},{name:'Komando substreki',legend:'Premu ${underline}'},{name:'Komando ligilo',legend:'Premu ${link}'},{name:'Komando faldi la ilbreton',legend:'Premu ${toolbarCollapse}'},{name:'Helpilo pri atingeblo',legend:'Premu ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/en.js0000664000175000017500000000453212262650742025046 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','en',{accessibilityHelp:{title:'Accessibility Instructions',contents:'Help Contents. To close this dialog press ESC.',legend:[{name:'General',items:[{name:'Editor Toolbar',legend:'Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button.'},{name:'Editor Dialog',legend:'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.'},{name:'Editor Context Menu',legend:'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.'},{name:'Editor List Box',legend:'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'},{name:'Editor Element Path Bar',legend:'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.'}]},{name:'Commands',items:[{name:' Undo command',legend:'Press ${undo}'},{name:' Redo command',legend:'Press ${redo}'},{name:' Bold command',legend:'Press ${bold}'},{name:' Italic command',legend:'Press ${italic}'},{name:' Underline command',legend:'Press ${underline}'},{name:' Link command',legend:'Press ${link}'},{name:' Toolbar Collapse command',legend:'Press ${toolbarCollapse}'},{name:' Accessibility Help',legend:'Press ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/cs.js0000664000175000017500000000547712262650742025062 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('a11yhelp','cs',{accessibilityHelp:{title:'Instrukce pro přístupnost',contents:'Obsah nápovědy. Pro uzavření tohoto dialogu stiskněte klávesu ESC.',legend:[{name:'Obecné',items:[{name:'Panel nástrojů editoru',legend:'Stiskněte${toolbarFocus} k procházení panelu nástrojů. Přejděte na další a předchozí skupiny pomocí TAB a SHIFT-TAB. Přechod na další a předchozí tlačítko panelu nástrojů je pomocí ŠIPKA VPRAVO nebo ŠIPKA VLEVO. Stisknutím mezerníku nebo klávesy ENTER tlačítko aktivujete.'},{name:'Dialogové okno editoru',legend:'Uvnitř dialogového okna stiskněte TAB pro přesunutí na další pole, stiskněte SHIFT + TAB pro přesun na předchozí pole, stiskněte ENTER pro odeslání dialogu, stiskněte ESC pro jeho zrušení. Pro dialogová okna, která mají mnoho karet stiskněte ALT + F10 pr oprocházení seznamu karet. Pak se přesuňte na další kartu pomocí TAB nebo ŠIPKA VPRAVO. Pro přesun na předchozí stiskněte SHIFT + TAB nebo ŠIPKA VLEVO. Stiskněte MEZERNÍK nebo ENTER pro vybrání stránky karet.'},{name:'Kontextové menu editoru',legend:'Stiskněte ${contextMenu} nebo klávesu APPLICATION k otevření kontextového menu. Pak se přesuňte na další možnost menu pomocí TAB nebo ŠIPKY DOLŮ. Přesuňte se na předchozí možnost pomocí SHIFT+TAB nebo ŠIPKY NAHORU. Stiskněte MEZERNÍK nebo ENTER pro zvolení možnosti menu. Podmenu současné možnosti otevřete pomocí MEZERNÍKU nebo ENTER či ŠIPKY DOLEVA. Kontextové menu uzavřete stiskem ESC.'},{name:'Rámeček seznamu editoru',legend:'Uvnitř rámečku seznamu se přesunete na další položku menu pomocí TAB nebo ŠIPKA DOLŮ. Na předchozí položku se přesunete SHIFT + TAB nebo ŠIPKA NAHORU. Stiskněte MEZERNÍK nebo ENTER pro zvolení možnosti seznamu. Stiskněte ESC pro uzavření seznamu.'},{name:'Lišta cesty prvku v editoru',legend:'Stiskněte ${elementsPathFocus} pro procházení lišty cesty prvku. Na další tlačítko prvku se přesunete pomocí TAB nebo ŠIPKA VPRAVO. Na předchozí položku se přesunete pomocí SHIFT + TAB nebo ŠIPKA VLEVO. Stiskněte MEZERNÍK nebo ENTER pro vybrání prvku v editoru.'}]},{name:'Příkazy',items:[{name:' Příkaz Zpět',legend:'Stiskněte ${undo}'},{name:' Příkaz Znovu',legend:'Stiskněte ${redo}'},{name:' Příkaz Tučné',legend:'Stiskněte ${bold}'},{name:' Příkaz Kurzíva',legend:'Stiskněte ${italic}'},{name:' Příkaz Podtržení',legend:'Stiskněte ${underline}'},{name:' Příkaz Odkaz',legend:'Stiskněte ${link}'},{name:' Příkaz Skrýt panel nástrojů',legend:'Stiskněte ${toolbarCollapse}'},{name:' Nápověda přístupnosti',legend:'Stiskněte ${a11yHelp}'}]}]}}); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/dialogs/0000775000175000017500000000000012262650742024603 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js0000664000175000017500000000563112262650742026572 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('a11yHelp',function(a){var b=a.lang.accessibilityHelp,c=CKEDITOR.tools.getNextId(),d={8:'BACKSPACE',9:'TAB',13:'ENTER',16:'SHIFT',17:'CTRL',18:'ALT',19:'PAUSE',20:'CAPSLOCK',27:'ESCAPE',33:'PAGE UP',34:'PAGE DOWN',35:'END',36:'HOME',37:'LEFT ARROW',38:'UP ARROW',39:'RIGHT ARROW',40:'DOWN ARROW',45:'INSERT',46:'DELETE',91:'LEFT WINDOW KEY',92:'RIGHT WINDOW KEY',93:'SELECT KEY',96:'NUMPAD 0',97:'NUMPAD 1',98:'NUMPAD 2',99:'NUMPAD 3',100:'NUMPAD 4',101:'NUMPAD 5',102:'NUMPAD 6',103:'NUMPAD 7',104:'NUMPAD 8',105:'NUMPAD 9',106:'MULTIPLY',107:'ADD',109:'SUBTRACT',110:'DECIMAL POINT',111:'DIVIDE',112:'F1',113:'F2',114:'F3',115:'F4',116:'F5',117:'F6',118:'F7',119:'F8',120:'F9',121:'F10',122:'F11',123:'F12',144:'NUM LOCK',145:'SCROLL LOCK',186:'SEMI-COLON',187:'EQUAL SIGN',188:'COMMA',189:'DASH',190:'PERIOD',191:'FORWARD SLASH',192:'GRAVE ACCENT',219:'OPEN BRACKET',220:'BACK SLASH',221:'CLOSE BRAKET',222:'SINGLE QUOTE'};d[CKEDITOR.ALT]='ALT';d[CKEDITOR.SHIFT]='SHIFT';d[CKEDITOR.CTRL]='CTRL';var e=[CKEDITOR.ALT,CKEDITOR.SHIFT,CKEDITOR.CTRL];function f(j){var k,l,m=[];for(var n=0;n1&&k<=2){j-=l;m.push(d[l]);}}m.push(d[j]||String.fromCharCode(j));return m.join('+');};var g=/\$\{(.*?)\}/g;function h(j,k){var l=a.config.keystrokes,m,n=l.length;for(var o=0;o%1
    '+''+b.contents+' ',k='

    %1

    %2
    ',l='
    %1
    %2
    ',m=[],n=b.legend,o=n.length;for(var p=0;p'+'.cke_accessibility_legend'+'{'+'width:600px;'+'height:400px;'+'padding-right:5px;'+'overflow-y:auto;'+'overflow-x:hidden;'+'}'+'.cke_browser_quirks .cke_accessibility_legend,'+'.cke_browser_ie6 .cke_accessibility_legend'+'{'+'height:390px'+'}'+'.cke_accessibility_legend *'+'{'+'white-space:normal;'+'}'+'.cke_accessibility_legend h1'+'{'+'font-size: 20px;'+'border-bottom: 1px solid #AAA;'+'margin: 5px 0px 15px;'+'}'+'.cke_accessibility_legend dl'+'{'+'margin-left: 5px;'+'}'+'.cke_accessibility_legend dt'+'{'+'font-size: 13px;'+'font-weight: bold;'+'}'+'.cke_accessibility_legend dd'+'{'+'margin:10px'+'}'+''}]}],buttons:[CKEDITOR.dialog.cancelButton]}; }); rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/div/0000775000175000017500000000000012262650742022317 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/div/dialogs/0000775000175000017500000000000012262650742023741 5ustar chmrrchmrrrt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/div/dialogs/div.js0000664000175000017500000001207412262650742025065 0ustar chmrrchmrr/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){function a(d,e,f){if(!e.is||!e.getCustomData('block_processed')){e.is&&CKEDITOR.dom.element.setMarker(f,e,'block_processed',true);d.push(e);}};function b(d){var e=[],f=d.getChildren();for(var g=0;g1?'enable':'disable']();setTimeout(function(){q.setup(p._element);},0);});},onShow:function(){if(e=='editdiv'){var p=k(d);p&&this.setupContent(this._element=p);}},onOk:function(){if(e=='editdiv')o=[this._element];else o=j(d,true);var p=o.length;for(var q=0;q]*>)([\s\S]*?)<\/style>/gi,function(g,h,i){b(f,'style',h,i);return '';});c=c.replace(/]*\/>/i,function(g){b(f,'base',g);return '';});c=c.replace(/([\s\S]*)<\/title>/i,function(g,h){e.$.title=h;return '';});c=c.replace(/<head>([\s\S]*)<\/head>/i,function(g){var h=new CKEDITOR.dom.element('div',e);h.setHtml(g);h.moveChildren(f);return '';});c.replace(/(<body[^>]*>)([\s\S]*)(?=$|<\/body>)/i,function(g,h,i){e.getBody().setHtml(i);var j=CKEDITOR.htmlParser.fragment.fromHtml(h).children[0].attributes;j&&e.getBody().setAttributes(j);});}else a.apply(this,arguments);};}); ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/��������������������������������������0000775�0001750�0001750�00000000000�12262650742�023211� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/����������������������������������0000775�0001750�0001750�00000000000�12262650742�024017� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/���������������������������0000775�0001750�0001750�00000000000�12262650742�025321� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/hue_bg.png�����������������0000664�0001750�0001750�00000002140�12262650742�027255� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������S^���gAMA��OX2���tEXtSoftware�Adobe ImageReadyqe<�� PLTE�C!�#�.�5�0�!,�3G��9�G]�'�l��@|�+d��9��g�o��,,#Z3�\�O?���,P�,AU�6+0�b+��-X-P�W*/t�.z-0�013&v�x�"I(-h21� 7�+2 .!?%>+�2��,&03$d,:,H�6'~)k�q4u��5y/��^�&+ 5�� %Y,cG-`j/�O�N�%m�"R:�U�A�6�+4�6.pI,2-�%��IDATxڤW;��@ RHCPD*ѐ4-*4$ZT\'01I`b\Z!|"dτrroSx!AB& QB6 .;!yKoBn򀐉B^r| R!B.2WeBY"d\ ! .W!? 9K! )dB2 O\,d=B Y#!OIȕB6 9(a! Y)M! .d{|,d,! QB>C$! Y'A!O OKBr@R! Y%!.! ,_!WyQ.! PBf & !g yR!!<'dLr|%dmB>rEB_{BrT=BLB~2KBn2BcB򈐷,rK,]!oyGV!7 RȵB2M!DŽ<+]!S+Sr:9?�|t,{����IENDB`��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png�����������0000664�0001750�0001750�00000000300�12262650742�030474� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ��� ���r���gAMA��OX2���tEXtSoftware�Adobe ImageReadyqe<��� PLTE���sxc���tRNS� A���.IDATxb`bbb �d2�#qHf#b>^��+P�C����IENDB`��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/yui.css��������������������0000664�0001750�0001750�00000005543�12262650742�026650� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ .yui-h-slider,.yui-v-slider{position:relative;}.yui-h-slider .yui-slider-thumb,.yui-v-slider .yui-slider-thumb{position:absolute;cursor:default;}.yui-skin-sam .yui-h-slider{background:url(bg-h.gif) no-repeat 5px 0;height:28px;width:228px;}.yui-skin-sam .yui-h-slider .yui-slider-thumb{top:4px;}.yui-skin-sam .yui-v-slider{background:url(bg-v.gif) no-repeat 12px 0;height:228px;width:48px;}.cke_uicolor_picker .yui-picker-panel{background:#e3e3e3;border-color:#888;}.cke_uicolor_picker .yui-picker-panel .hd{background-color:#ccc;font-size:100%;line-height:100%;border:1px solid #e3e3e3;font-weight:bold;overflow:hidden;padding:6px;color:#000;}.cke_uicolor_picker .yui-picker-panel .bd{background:#e8e8e8;margin:1px;height:200px;}.cke_uicolor_picker .yui-picker-panel .ft{background:#e8e8e8;margin:1px;padding:1px;}.cke_uicolor_picker .yui-picker{position:relative;}.cke_uicolor_picker .yui-picker-hue-thumb{cursor:default;width:18px;height:18px;top:-8px;left:-2px;z-index:9;position:absolute;}.cke_uicolor_picker .yui-picker-hue-bg{-moz-outline:none;outline:0 none;position:absolute;left:200px;height:183px;width:14px;background:url(hue_bg.png) no-repeat;top:4px;}.cke_uicolor_picker .yui-picker-bg{-moz-outline:none;outline:0 none;position:absolute;top:4px;left:4px;height:182px;width:182px;background-color:#F00;background-image:url(picker_mask.png);}*html .cke_uicolor_picker .yui-picker-bg{background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='picker_mask.png',sizingMethod='scale');}.cke_uicolor_picker .yui-picker-mask{position:absolute;z-index:1;top:0;left:0;}.cke_uicolor_picker .yui-picker-thumb{cursor:default;width:11px;height:11px;z-index:9;position:absolute;top:-4px;left:-4px;}.cke_uicolor_picker .yui-picker-swatch{position:absolute;left:240px;top:4px;height:60px;width:55px;border:1px solid #888;}.cke_uicolor_picker .yui-picker-websafe-swatch{position:absolute;left:304px;top:4px;height:24px;width:24px;border:1px solid #888;}.cke_uicolor_picker .yui-picker-controls{position:absolute;top:72px;left:226px;font:1em monospace;}.cke_uicolor_picker .yui-picker-controls .hd{background:transparent;border-width:0!important;}.cke_uicolor_picker .yui-picker-controls .bd{height:100px;border-width:0!important;}.cke_uicolor_picker .yui-picker-controls ul{float:left;padding:0 2px 0 0;margin:0;}.cke_uicolor_picker .yui-picker-controls li{padding:2px;list-style:none;margin:0;}.cke_uicolor_picker .yui-picker-controls input{font-size:.85em;width:2.4em;}.cke_uicolor_picker .yui-picker-hex-controls{clear:both;padding:2px;}.cke_uicolor_picker .yui-picker-hex-controls input{width:4.6em;}.cke_uicolor_picker .yui-picker-controls a{font:1em arial,helvetica,clean,sans-serif;display:block;*display:inline-block;padding:0;color:#000;} �������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/picker_mask.png������������0000664�0001750�0001750�00000027616�12262650742�030333� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������tw���gAMA��OX2���tEXtSoftware�Adobe ImageReadyqe<��/ IDATx]ۖ8rL?ϼ~<gg=.1]*�ǥs% P~G/?o [6myy^ۼmk$~_>؟w?7 hBlﶉ@oy[l=-rk>O׿EE?O}?Ï?|N|w^gˋ3;VگK@?uۻm3VJV`+h ̯۷oVPF?~O)"KYo>̻)Ewmj]|N};Ypa~e"Cr2sYW;c~ɐ_or�۸"Ndz�'<)%vu =od nYz AM~嗛YAn p'�\d: b7XX`S ebMجٸ_[ov ؿM_7@WqđC'|NJNh@zEA3f xCV<4C)1Ԑېܨ+7whP߀]l^{c]5|*3,gfc1Q"OmcKjV21k zm<KV[3|pTPK1)n[U+i6 }<hC% )at(C@H % )dGqX2jg1l5zn||}϶&rɄ F 2)J> ̖զef:Z~h-2$"R~TƖIoR[#׫W׿uvN> eHA  ^?ꈐ~.cZ~ `Czد2W/_>v&qT:CI2)ge9P�Ȏ W�k"[3+k&v:(gh^]YzvuG4W羚~[HY{Y,AfF;|W/;ǎdXAbv0op hϋzmǭ-;_^ƨx^>oAcZy]Y{mKg~ y<y{n~<0c!h^3"I�.md[^R F-C-t~s1#�9ff!=][3`.U+RW}o/ /F@=MO#ݻӳnhۭjkW佭r E<`7�10+ l ]3 rey X�,GmA '.,;  MZyE2I%j z"v_Z[Upk`˚$.E&~Y. PK+EQZrh%!AVlcY!Yّes7WKl�ܥrCVPE5+Yԏ{VW˨DP7uvu[iȄXrA.吝 X[_,hln1v-tbF@^+dv ],|X6Lz<h=9-y#Vf�緀Xie1RKWJfz֫!,rҌ]^BsK�7j}="$ Z>ۍ:6ei 9ɞ J4'E QtY[e2 0?[H/{.y#Gƌ]$a9J>*&&<$G(Ff~Ѧzҋ\M?Ov=n7ZGKc_DmYW=]E ׻]߯,_Xכnyl5v xNk'%OFÐ&ʐ"`ғͺvZ9w)RWo!A*c#cnםef E %ckY}g )0~K 3D,RvSrh-xXޓDy> [~!M�Z#\8hd7[[ 8Vp@ tƓUw #=|)Ͷze[+;+&H=I=D{/[`/|X_Gv\46Jv}NN^\_40UpXT-X]gKWBFʨPDy= ؗmz瀞w}ևzuMd I}],5a5;+CbHK{E 1/p>PӖF-Cn ɡ1Ejp)E6L]A$v~Γ` qu}瀝,iFO?$GcH Xxսh@/vcc䵣s$ +@\-=C Kq,xt!@ofr($u5^)_>HNoݶ <"+ʺ3ZkHcsvT&J[WmF9zZ؋}՗Z뺽nVni]z֛!ΰs؛f\hݫnZ}뜻W^ݖk2dp{v$7Y)R$t6f`%1XYwG{u1sm#JdɌ`RZlHk}qv1cb\! ej8ȾXNgUP Mg#p?47.h,uF&p,\..l` HޞKu;6'dJ|YUZ,uX/Yvk؛"X169mmvk2сܨ {QyRںJ ]Թ$Rw#orEd6RcUZ$K+gsul(g!`ONv /̂0<W")�&@`|i; `AYHH s464fQV)"{" jŐ#ZvVr xdU,hid7/I/R~Ȃ*3D`, 0;!uޫDh/RLYZ:#2xdn2 AvmLD@9%0BV�Rdt(.j~V}Sk-2⥕&BVXbWYwf2Q= ',k+8D2"Cy:HNcE]^MWN38ui<jv+SӭےH_tJ]ga݃ɯeECf 2s3s{B`h02;vuSa!mU&QۂR2yk*J\Z?y~af 1QϑJshZ5:VI`옉j h=;++^$#1l*AL4ʚYPg!I3uNc?A_O= -l  #莡A9jێ?Z5 k-nS30Fg΢Ckm o/5X˦;E#=<bEYCz PRHZȎC9u.tI*}S 3J_@"F2 ]k 1[DjlZ5]0Ҍ];Lnqζ $#llpz1آ+`iN_'UԱ`鐽%#WV o#,VUzhFX;POj=JF08䊐SM+R-6kqE4s n4vBO< g+w,=n0xLQB;u%]aT8!KUYCsE>KeR1r=C9TDe#vހδ7Al9JO ,JX)�zb &O8ະaF_M^jQ<6BGwZe :tK!֮Na;;O;{m#Ac-uUACiJJߺsI,ٚA e45Nt[׺+r.OaJK{IIƾ|q2,sNrT\$9q1!΢u[BCٙZ╵"үg=LZzicXTؙmn4@.aī6 α gjg;-a#mꊼK7#Vm 5>?k?[cLskE u^m`SPz(]]S/om,@޺"QQxՒ;:/կde]jA4ci#:oĠvnp/tXI%2"Ui@wmR� puTn@vٟ';rԨINH=vvó\O-E`UorKXk""ڡ4<(6CϩDˁcI90 v,}gEYæٸ8!c[r2Zof}%3$c[,Go.m% W6ww c5k}PHyct;Vzp{}YC\6V?@c!ANƝ +ݍEeeQW)K"jI.RvPֻd`ZIF jHGP;HFbE\ � iaȎC]`UԒf߾% +`KN9dN`d V A3(ENLaʜELf$#dk]DFำyzA)4QA"bi(ZRD8Ǘk#c" 렱SWsw}bC6gsI`u~Úu<Z 7S�,<Ow+ʘ"gwBCv`uD ؽ4r|Z7K_z7 6GV M(t;rXe, 5fw}'Х=" e'!:9*Z rWw͞~ե6jrKf1Fm[]z\fO!z 6I>lc1t^"ZH&EPhڅyy@[_kyh{EQ)W"zhఝQi�fkp,cI16}Y/E>ŔP!9)m�rDM6c\!ќ!-?,INK̚Ѽ0K<p+d> }L&A&-Q:JV,#J+pC" |"'櫆3R3Zi^( GW Œ<h!UG̬dI29% RC>#FٮegJ U0@̻"U�F` bTziMCʊKw<�1vBR DSÕ&FӛEBWwx '5MܦP[*&t`z2sDDo1Qg1ѻ4;Ckf`t󚯽hY{F ۀi ,<g4v:l%[lb6㈒BJ(u,2>Zg@}ׁ޳=a}҂"xc{i\ЫNk mLdd#Qj]ƖM!$A6f:>3& Aϑ" f_0"fybjiKӚulGCOIɋ"jBCK s vm<urDxG}ωj>2&!c|# !EAM*P$chs?Pu>qѱrݘE1*mNub"lJ GNDc5MMjL"ь1:�EǨ51T:OXoim:mM[꾁$+]ge n4#QxݤQ'N꤅H�6v]c${adJSvXsEt6x Hztj҆}8iP S4og| (%O9,{믓r KșP*AB0h3;l JQƋz媚} %(wr`suu@MJ$CAo�k1j/6UP2skzV�9ʒ0{huL4@78rA9lҝGxְȫ51 <ڶ;{}-8ZzZVі+k##80XPU  [aQ? wMֺ) 刕!Ok:J"<uoÁGHTˑ^xeȘRY,_#wRT¥[X[%Ot*2IJ isQ$[p%Gy = V&gA$UX@m&v5,3:%jﯗf*%2ju4سm%9/L$ dYH-͍'l7#$U4pYG.u1ݱ\B`#pe5B'Kd'x>txMR22; m6/*Akd&~2:&{sFAh,i0W\2&uD*SјC+6�EA# v]s.'{[Z v&S{2\L2`sdqkFt'&=;^bdi*=NȓFr |>\+I@,>Cvbx�t |= t[A&E{Eq7:.P�BωdL& /4 %#xt] p1p5+_4h:j{TS:M?Y�-ۓ%H4X5#@O`kBvpx;+q-J3KU2.ڷReiEyN+S?mzzDzz{>2R& @5rE ttQ&1Hww,;PK4XnzU{ӫ{zI{}1@:F`3$f<:KɄ $9|B1~fTf֕yY V@ӤHR+S�aa_"3R<RdM :Io/l�Z�6?0-ѝGm16,GD)@!}=\*/ۖ5XdLu]K�:әn {VxrHWkO:bl'4sRRY#b!!϶Syі>6r:lr:惮H#%Fuꔐf ibĈ\CrN÷&WJvz[_قG3bD᪳/+E ` /Ft@iJXM b$vJg#lKk0P]߰T ZCR�cΓ )SL`c�$ɲ ba6%KHh ),hiw,k-$4S !,逘?V!anR#0J&IEP=@݀ݤ#W$ .=O=ؐ6)n[:%V ,>xEgZg]2a c3i!۫ t/\̫Xv&b{ {`w=h YF t5-"W;u #xL@FI+F@uΛعA6&�YI,@>Qp L $Iƀ=2S!7ROcLmhCou$6:w)�R=y�xVnZ䴐1{7fjhVSjE3b `GR݆_MN)e: Sd?]jRc-4:ncШLU33 LY,I0p!Hpydpz"k h�x�8F+ҵ+�ݣנ15ʑ!c'ctj tYM>zV9vl�1-6$8ӈq ƎEϣcu%6G'Sy {]kNՓ\6i쉇5qt92RyQgibh%,rO V@iU:)wAg\g=�Mm3р1H7!�,`ѬaĔFzsngJ(m>R4x$2#A^{A.) zZ:ba`; ۡ,q $�~nƨ8L؃s;iR Pf@ՆR`]gtv +zm,}:Gqّ kJ%*z\c^Cauΰr4YN;#h?b.v9 nc.ne!ƈzδ[b--vʶh{YE5JG!ǁrM!Cr�|8'C,GeMQ_NVuA\z@&_[Qep(~^:S3:sXk3f$HzE(O[-A@*6ftw-GXkb˾.M+tؘ-.́Y}5;%Eᤕ(!KPjs.?G+3< e;<-6w# wrdLI<92vVGR'T9$G-IX<[ih~|g禸}X,x29#^؅R IwEVz^kjjxVЕpG3ҏ-]|Bd73ӈvٹuyY9J`4E'Y׿fVVOG;wGNt(?~;& 2A66ػǨr~Qj Vٜ[쥥Y�r캽$]H#�L`|A΋qwv|CWc:65xF1#mjnu*d?l8Qnآ ;{=5~Ep8m1Pbej_8csMTئ[V2'2`|km4 6;kL "%Gtn�'kI,A7򜽎\jv�8qG#Gvg4=MNƖvf-H|.5&$}�r/@uAV\2q{Wl9#Er-iF]ƎQfFő)඲m^0fPO+;71ܽmLJ+FDݮb-1 $I˧ݔ: sA?A"\ Ls:!SHvځԈ;532 !eyI3; m/Šߡ4^Py?ne|Ď#5B&3vaČQuq&u:{l uFvߍ݇� 6 <U ޤe>VNcN0$ZX;eb Aܒ(VlV(p<O ȑ0 I9eJWmeO!"F+CPg\`~F$G)C#E"�GS1Q'p݋lV_ ΐ!QV4GհFԜ8TMG&q8`hF 20~1^ %1{ane 3+~3ly@ ful@ORʓ*A,3ˎ̴n"^L*<C�̳w1#Jλ( oRۧ1[Lm ֞'SʌL8@VdDŽ_Ov4Kk&c&�꤉LF{w):@QD`ےhz뉚y`OJ;+lTͳ@y}4k-S򐼸nEV{nGgHHr 3kHf&A#rX{yPF;d S:$"MȒ06qh$H3s$B$B,=' alU$؛ .g87J}` ,V szD3cΖ"3LGQ0m% >`{Yo1DfAf휨d0f#Z 2Gkz,su2fr# 3ݰFA=j t3k)> If p݋8o,QLnI|7dܨ#9MEݎH{G::p =^\CL!F%m'=$]tx<(g؞ShFH)aȋY<ijU~rs2$uL:$V0\ami25n4Mˬ<d8y)G;*br`sTGvW LtL.Ōf$wt3rrF'.gft4`8w[IJM'& V25rTRd:;bJRB ̈1 uL#,D„vlMG$\씓$t_cm$`Ei^XCqā}#i!e:˒(=9out7sq4P}GjY !t`Oy^x`>}$~gz;[ Rd9dͶ 5b4gxݫ;yl?T3Bh# ?#empS�z Gna'NHk ȮmaF;zYCc 2p'eA-3]7gj;ct8F&?!, dJjMiqysmgj9[q�-—<N{➔1~<G@ڡkሔq7'c8 bfw>`хM&HfI0YS{my෱{wTM+ILt 2v8[g-D@eS b۳ \:Ͳ79S)/KN6 Bd�&_<2 YHDG=T`}43![))t$29B:; .b[@:my))4N0v::/ 0fxp`J<#,$b3�~ԡ8�3�}΀zC}@oH{�suT͞<�w3:B·�4ǁZƾo ϡ{Tʠtfv=f̃혎8yFm;mh{ ,>~�ȧyRϸS>zG6lgSd;i S2>Y{P3e-z2{=!iÿHL?+EGYN2QFf:T  ԇ(b3A~`o�xW9g�y6x<33MgGA>˰ӌ &>gyk6ڣ~+؇kb`gI3u$/ `e<{9~'3OA, : ⷖ5ig0'~o'딄*OSAtDz&g$ '+:ȱXj\O~} hWyq_ ]_> cuCwyK)]q[ߊ_;/=1ٕ?5�ZF׭}DT����IENDB`������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png��������������0000664�0001750�0001750�00000000303�12262650742�030003� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������a~e���gAMA��OX2���tEXtSoftware�Adobe ImageReadyqe<��� PLTE���~O���tRNS� A���1IDATxb`� bD!F$bd@V Ĉ]HK?�g#e����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/yui.js����������������������������0000664�0001750�0001750�00000345746�12262650742�025206� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /*jsl:ignoreall*/ /* Copyright (c) 2009, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt version: 2.7.0 */ if(typeof YAHOO=="undefined"||!YAHOO){var YAHOO={};}YAHOO.namespace=function(){var A=arguments,E=null,C,B,D;for(C=0;C<A.length;C=C+1){D=(""+A[C]).split(".");E=YAHOO;for(B=(D[0]=="YAHOO")?1:0;B<D.length;B=B+1){E[D[B]]=E[D[B]]||{};E=E[D[B]];}}return E;};YAHOO.log=function(D,A,C){var B=YAHOO.widget.Logger;if(B&&B.log){return B.log(D,A,C);}else{return false;}};YAHOO.register=function(A,E,D){var I=YAHOO.env.modules,B,H,G,F,C;if(!I[A]){I[A]={versions:[],builds:[]};}B=I[A];H=D.version;G=D.build;F=YAHOO.env.listeners;B.name=A;B.version=H;B.build=G;B.versions.push(H);B.builds.push(G);B.mainClass=E;for(C=0;C<F.length;C=C+1){F[C](B);}if(E){E.VERSION=H;E.BUILD=G;}else{YAHOO.log("mainClass is undefined for module "+A,"warn");}};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(A){return YAHOO.env.modules[A]||null;};YAHOO.env.ua=function(){var C={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0,caja:0},B=navigator.userAgent,A;if((/KHTML/).test(B)){C.webkit=1;}A=B.match(/AppleWebKit\/([^\s]*)/);if(A&&A[1]){C.webkit=parseFloat(A[1]);if(/ Mobile\//.test(B)){C.mobile="Apple";}else{A=B.match(/NokiaN[^\/]*/);if(A){C.mobile=A[0];}}A=B.match(/AdobeAIR\/([^\s]*)/);if(A){C.air=A[0];}}if(!C.webkit){A=B.match(/Opera[\s\/]([^\s]*)/);if(A&&A[1]){C.opera=parseFloat(A[1]);A=B.match(/Opera Mini[^;]*/);if(A){C.mobile=A[0];}}else{A=B.match(/MSIE\s([^;]*)/);if(A&&A[1]){C.ie=parseFloat(A[1]);}else{A=B.match(/Gecko\/([^\s]*)/);if(A){C.gecko=1;A=B.match(/rv:([^\s\)]*)/);if(A&&A[1]){C.gecko=parseFloat(A[1]);}}}}}A=B.match(/Caja\/([^\s]*)/);if(A&&A[1]){C.caja=parseFloat(A[1]);}return C;}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var B=YAHOO_config.listener,A=YAHOO.env.listeners,D=true,C;if(B){for(C=0;C<A.length;C=C+1){if(A[C]==B){D=false;break;}}if(D){A.push(B);}}}})();YAHOO.lang=YAHOO.lang||{};(function(){var B=YAHOO.lang,F="[object Array]",C="[object Function]",A=Object.prototype,E=["toString","valueOf"],D={isArray:function(G){return A.toString.apply(G)===F;},isBoolean:function(G){return typeof G==="boolean";},isFunction:function(G){return A.toString.apply(G)===C;},isNull:function(G){return G===null;},isNumber:function(G){return typeof G==="number"&&isFinite(G);},isObject:function(G){return(G&&(typeof G==="object"||B.isFunction(G)))||false;},isString:function(G){return typeof G==="string";},isUndefined:function(G){return typeof G==="undefined";},_IEEnumFix:(YAHOO.env.ua.ie)?function(I,H){var G,K,J;for(G=0;G<E.length;G=G+1){K=E[G];J=H[K];if(B.isFunction(J)&&J!=A[K]){I[K]=J;}}}:function(){},extend:function(J,K,I){if(!K||!J){throw new Error("extend failed, please check that "+"all dependencies are included.");}var H=function(){},G;H.prototype=K.prototype;J.prototype=new H();J.prototype.constructor=J;J.superclass=K.prototype;if(K.prototype.constructor==A.constructor){K.prototype.constructor=K;}if(I){for(G in I){if(B.hasOwnProperty(I,G)){J.prototype[G]=I[G];}}B._IEEnumFix(J.prototype,I);}},augmentObject:function(K,J){if(!J||!K){throw new Error("Absorb failed, verify dependencies.");}var G=arguments,I,L,H=G[2];if(H&&H!==true){for(I=2;I<G.length;I=I+1){K[G[I]]=J[G[I]];}}else{for(L in J){if(H||!(L in K)){K[L]=J[L];}}B._IEEnumFix(K,J);}},augmentProto:function(J,I){if(!I||!J){throw new Error("Augment failed, verify dependencies.");}var G=[J.prototype,I.prototype],H;for(H=2;H<arguments.length;H=H+1){G.push(arguments[H]);}B.augmentObject.apply(this,G);},dump:function(G,L){var I,K,N=[],O="{...}",H="f(){...}",M=", ",J=" => ";if(!B.isObject(G)){return G+"";}else{if(G instanceof Date||("nodeType" in G&&"tagName" in G)){return G;}else{if(B.isFunction(G)){return H;}}}L=(B.isNumber(L))?L:3;if(B.isArray(G)){N.push("[");for(I=0,K=G.length;I<K;I=I+1){if(B.isObject(G[I])){N.push((L>0)?B.dump(G[I],L-1):O);}else{N.push(G[I]);}N.push(M);}if(N.length>1){N.pop();}N.push("]");}else{N.push("{");for(I in G){if(B.hasOwnProperty(G,I)){N.push(I+J);if(B.isObject(G[I])){N.push((L>0)?B.dump(G[I],L-1):O);}else{N.push(G[I]);}N.push(M);}}if(N.length>1){N.pop();}N.push("}");}return N.join("");},substitute:function(V,H,O){var L,K,J,R,S,U,Q=[],I,M="dump",P=" ",G="{",T="}",N;for(;;){L=V.lastIndexOf(G);if(L<0){break;}K=V.indexOf(T,L);if(L+1>=K){break;}I=V.substring(L+1,K);R=I;U=null;J=R.indexOf(P);if(J>-1){U=R.substring(J+1);R=R.substring(0,J);}S=H[R];if(O){S=O(R,S,U);}if(B.isObject(S)){if(B.isArray(S)){S=B.dump(S,parseInt(U,10));}else{U=U||"";N=U.indexOf(M);if(N>-1){U=U.substring(4);}if(S.toString===A.toString||N>-1){S=B.dump(S,parseInt(U,10));}else{S=S.toString();}}}else{if(!B.isString(S)&&!B.isNumber(S)){S="~-"+Q.length+"-~";Q[Q.length]=I;}}V=V.substring(0,L)+S+V.substring(K+1);}for(L=Q.length-1;L>=0;L=L-1){V=V.replace(new RegExp("~-"+L+"-~"),"{"+Q[L]+"}","g");}return V;},trim:function(G){try{return G.replace(/^\s+|\s+$/g,"");}catch(H){return G;}},merge:function(){var J={},H=arguments,G=H.length,I;for(I=0;I<G;I=I+1){B.augmentObject(J,H[I],true);}return J;},later:function(N,H,O,J,K){N=N||0;H=H||{};var I=O,M=J,L,G;if(B.isString(O)){I=H[O];}if(!I){throw new TypeError("method undefined");}if(!B.isArray(M)){M=[J];}L=function(){I.apply(H,M);};G=(K)?setInterval(L,N):setTimeout(L,N);return{interval:K,cancel:function(){if(this.interval){clearInterval(G);}else{clearTimeout(G);}}};},isValue:function(G){return(B.isObject(G)||B.isString(G)||B.isNumber(G)||B.isBoolean(G));}};B.hasOwnProperty=(A.hasOwnProperty)?function(G,H){return G&&G.hasOwnProperty(H);}:function(G,H){return !B.isUndefined(G[H])&&G.constructor.prototype[H]!==G[H];};D.augmentObject(B,D,true);YAHOO.util.Lang=B;B.augment=B.augmentProto;YAHOO.augment=B.augmentProto;YAHOO.extend=B.extend;})();YAHOO.register("yahoo",YAHOO,{version:"2.7.0",build:"1796"});(function(){YAHOO.env._id_counter=YAHOO.env._id_counter||0;var E=YAHOO.util,L=YAHOO.lang,m=YAHOO.env.ua,A=YAHOO.lang.trim,d={},h={},N=/^t(?:able|d|h)$/i,X=/color$/i,K=window.document,W=K.documentElement,e="ownerDocument",n="defaultView",v="documentElement",t="compatMode",b="offsetLeft",P="offsetTop",u="offsetParent",Z="parentNode",l="nodeType",C="tagName",O="scrollLeft",i="scrollTop",Q="getBoundingClientRect",w="getComputedStyle",a="currentStyle",M="CSS1Compat",c="BackCompat",g="class",F="className",J="",B=" ",s="(?:^|\\s)",k="(?= |$)",U="g",p="position",f="fixed",V="relative",j="left",o="top",r="medium",q="borderLeftWidth",R="borderTopWidth",D=m.opera,I=m.webkit,H=m.gecko,T=m.ie;E.Dom={CUSTOM_ATTRIBUTES:(!W.hasAttribute)?{"for":"htmlFor","class":F}:{"htmlFor":"for","className":g},get:function(y){var AA,Y,z,x,G;if(y){if(y[l]||y.item){return y;}if(typeof y==="string"){AA=y;y=K.getElementById(y);if(y&&y.id===AA){return y;}else{if(y&&K.all){y=null;Y=K.all[AA];for(x=0,G=Y.length;x<G;++x){if(Y[x].id===AA){return Y[x];}}}}return y;}if(y.DOM_EVENTS){y=y.get("element");}if("length" in y){z=[];for(x=0,G=y.length;x<G;++x){z[z.length]=E.Dom.get(y[x]);}return z;}return y;}return null;},getComputedStyle:function(G,Y){if(window[w]){return G[e][n][w](G,null)[Y];}else{if(G[a]){return E.Dom.IE_ComputedStyle.get(G,Y);}}},getStyle:function(G,Y){return E.Dom.batch(G,E.Dom._getStyle,Y);},_getStyle:function(){if(window[w]){return function(G,y){y=(y==="float")?y="cssFloat":E.Dom._toCamel(y);var x=G.style[y],Y;if(!x){Y=G[e][n][w](G,null);if(Y){x=Y[y];}}return x;};}else{if(W[a]){return function(G,y){var x;switch(y){case"opacity":x=100;try{x=G.filters["DXImageTransform.Microsoft.Alpha"].opacity;}catch(z){try{x=G.filters("alpha").opacity;}catch(Y){}}return x/100;case"float":y="styleFloat";default:y=E.Dom._toCamel(y);x=G[a]?G[a][y]:null;return(G.style[y]||x);}};}}}(),setStyle:function(G,Y,x){E.Dom.batch(G,E.Dom._setStyle,{prop:Y,val:x});},_setStyle:function(){if(T){return function(Y,G){var x=E.Dom._toCamel(G.prop),y=G.val;if(Y){switch(x){case"opacity":if(L.isString(Y.style.filter)){Y.style.filter="alpha(opacity="+y*100+")";if(!Y[a]||!Y[a].hasLayout){Y.style.zoom=1;}}break;case"float":x="styleFloat";default:Y.style[x]=y;}}else{}};}else{return function(Y,G){var x=E.Dom._toCamel(G.prop),y=G.val;if(Y){if(x=="float"){x="cssFloat";}Y.style[x]=y;}else{}};}}(),getXY:function(G){return E.Dom.batch(G,E.Dom._getXY);},_canPosition:function(G){return(E.Dom._getStyle(G,"display")!=="none"&&E.Dom._inDoc(G));},_getXY:function(){if(K[v][Q]){return function(y){var z,Y,AA,AF,AE,AD,AC,G,x,AB=Math.floor,AG=false;if(E.Dom._canPosition(y)){AA=y[Q]();AF=y[e];z=E.Dom.getDocumentScrollLeft(AF);Y=E.Dom.getDocumentScrollTop(AF);AG=[AB(AA[j]),AB(AA[o])];if(T&&m.ie<8){AE=2;AD=2;AC=AF[t];G=S(AF[v],q);x=S(AF[v],R);if(m.ie===6){if(AC!==c){AE=0;AD=0;}}if((AC==c)){if(G!==r){AE=parseInt(G,10);}if(x!==r){AD=parseInt(x,10);}}AG[0]-=AE;AG[1]-=AD;}if((Y||z)){AG[0]+=z;AG[1]+=Y;}AG[0]=AB(AG[0]);AG[1]=AB(AG[1]);}else{}return AG;};}else{return function(y){var x,Y,AA,AB,AC,z=false,G=y;if(E.Dom._canPosition(y)){z=[y[b],y[P]];x=E.Dom.getDocumentScrollLeft(y[e]);Y=E.Dom.getDocumentScrollTop(y[e]);AC=((H||m.webkit>519)?true:false);while((G=G[u])){z[0]+=G[b];z[1]+=G[P];if(AC){z=E.Dom._calcBorders(G,z);}}if(E.Dom._getStyle(y,p)!==f){G=y;while((G=G[Z])&&G[C]){AA=G[i];AB=G[O];if(H&&(E.Dom._getStyle(G,"overflow")!=="visible")){z=E.Dom._calcBorders(G,z);}if(AA||AB){z[0]-=AB;z[1]-=AA;}}z[0]+=x;z[1]+=Y;}else{if(D){z[0]-=x;z[1]-=Y;}else{if(I||H){z[0]+=x;z[1]+=Y;}}}z[0]=Math.floor(z[0]);z[1]=Math.floor(z[1]);}else{}return z;};}}(),getX:function(G){var Y=function(x){return E.Dom.getXY(x)[0];};return E.Dom.batch(G,Y,E.Dom,true);},getY:function(G){var Y=function(x){return E.Dom.getXY(x)[1];};return E.Dom.batch(G,Y,E.Dom,true);},setXY:function(G,x,Y){E.Dom.batch(G,E.Dom._setXY,{pos:x,noRetry:Y});},_setXY:function(G,z){var AA=E.Dom._getStyle(G,p),y=E.Dom.setStyle,AD=z.pos,Y=z.noRetry,AB=[parseInt(E.Dom.getComputedStyle(G,j),10),parseInt(E.Dom.getComputedStyle(G,o),10)],AC,x;if(AA=="static"){AA=V;y(G,p,AA);}AC=E.Dom._getXY(G);if(!AD||AC===false){return false;}if(isNaN(AB[0])){AB[0]=(AA==V)?0:G[b];}if(isNaN(AB[1])){AB[1]=(AA==V)?0:G[P];}if(AD[0]!==null){y(G,j,AD[0]-AC[0]+AB[0]+"px");}if(AD[1]!==null){y(G,o,AD[1]-AC[1]+AB[1]+"px");}if(!Y){x=E.Dom._getXY(G);if((AD[0]!==null&&x[0]!=AD[0])||(AD[1]!==null&&x[1]!=AD[1])){E.Dom._setXY(G,{pos:AD,noRetry:true});}}},setX:function(Y,G){E.Dom.setXY(Y,[G,null]);},setY:function(G,Y){E.Dom.setXY(G,[null,Y]);},getRegion:function(G){var Y=function(x){var y=false;if(E.Dom._canPosition(x)){y=E.Region.getRegion(x);}else{}return y;};return E.Dom.batch(G,Y,E.Dom,true);},getClientWidth:function(){return E.Dom.getViewportWidth();},getClientHeight:function(){return E.Dom.getViewportHeight();},getElementsByClassName:function(AB,AF,AC,AE,x,AD){AB=L.trim(AB);AF=AF||"*";AC=(AC)?E.Dom.get(AC):null||K;if(!AC){return[];}var Y=[],G=AC.getElementsByTagName(AF),z=E.Dom.hasClass;for(var y=0,AA=G.length;y<AA;++y){if(z(G[y],AB)){Y[Y.length]=G[y];}}if(AE){E.Dom.batch(Y,AE,x,AD);}return Y;},hasClass:function(Y,G){return E.Dom.batch(Y,E.Dom._hasClass,G);},_hasClass:function(x,Y){var G=false,y;if(x&&Y){y=E.Dom.getAttribute(x,F)||J;if(Y.exec){G=Y.test(y);}else{G=Y&&(B+y+B).indexOf(B+Y+B)>-1;}}else{}return G;},addClass:function(Y,G){return E.Dom.batch(Y,E.Dom._addClass,G);},_addClass:function(x,Y){var G=false,y;if(x&&Y){y=E.Dom.getAttribute(x,F)||J;if(!E.Dom._hasClass(x,Y)){E.Dom.setAttribute(x,F,A(y+B+Y));G=true;}}else{}return G;},removeClass:function(Y,G){return E.Dom.batch(Y,E.Dom._removeClass,G);},_removeClass:function(y,x){var Y=false,AA,z,G;if(y&&x){AA=E.Dom.getAttribute(y,F)||J;E.Dom.setAttribute(y,F,AA.replace(E.Dom._getClassRegex(x),J));z=E.Dom.getAttribute(y,F);if(AA!==z){E.Dom.setAttribute(y,F,A(z));Y=true;if(E.Dom.getAttribute(y,F)===""){G=(y.hasAttribute&&y.hasAttribute(g))?g:F;y.removeAttribute(G);}}}else{}return Y;},replaceClass:function(x,Y,G){return E.Dom.batch(x,E.Dom._replaceClass,{from:Y,to:G}); },_replaceClass:function(y,x){var Y,AB,AA,G=false,z;if(y&&x){AB=x.from;AA=x.to;if(!AA){G=false;}else{if(!AB){G=E.Dom._addClass(y,x.to);}else{if(AB!==AA){z=E.Dom.getAttribute(y,F)||J;Y=(B+z.replace(E.Dom._getClassRegex(AB),B+AA)).split(E.Dom._getClassRegex(AA));Y.splice(1,0,B+AA);E.Dom.setAttribute(y,F,A(Y.join(J)));G=true;}}}}else{}return G;},generateId:function(G,x){x=x||"yui-gen";var Y=function(y){if(y&&y.id){return y.id;}var z=x+YAHOO.env._id_counter++;if(y){if(y[e].getElementById(z)){return E.Dom.generateId(y,z+x);}y.id=z;}return z;};return E.Dom.batch(G,Y,E.Dom,true)||Y.apply(E.Dom,arguments);},isAncestor:function(Y,x){Y=E.Dom.get(Y);x=E.Dom.get(x);var G=false;if((Y&&x)&&(Y[l]&&x[l])){if(Y.contains&&Y!==x){G=Y.contains(x);}else{if(Y.compareDocumentPosition){G=!!(Y.compareDocumentPosition(x)&16);}}}else{}return G;},inDocument:function(G,Y){return E.Dom._inDoc(E.Dom.get(G),Y);},_inDoc:function(Y,x){var G=false;if(Y&&Y[C]){x=x||Y[e];G=E.Dom.isAncestor(x[v],Y);}else{}return G;},getElementsBy:function(Y,AF,AB,AD,y,AC,AE){AF=AF||"*";AB=(AB)?E.Dom.get(AB):null||K;if(!AB){return[];}var x=[],G=AB.getElementsByTagName(AF);for(var z=0,AA=G.length;z<AA;++z){if(Y(G[z])){if(AE){x=G[z];break;}else{x[x.length]=G[z];}}}if(AD){E.Dom.batch(x,AD,y,AC);}return x;},getElementBy:function(x,G,Y){return E.Dom.getElementsBy(x,G,Y,null,null,null,true);},batch:function(x,AB,AA,z){var y=[],Y=(z)?AA:window;x=(x&&(x[C]||x.item))?x:E.Dom.get(x);if(x&&AB){if(x[C]||x.length===undefined){return AB.call(Y,x,AA);}for(var G=0;G<x.length;++G){y[y.length]=AB.call(Y,x[G],AA);}}else{return false;}return y;},getDocumentHeight:function(){var Y=(K[t]!=M||I)?K.body.scrollHeight:W.scrollHeight,G=Math.max(Y,E.Dom.getViewportHeight());return G;},getDocumentWidth:function(){var Y=(K[t]!=M||I)?K.body.scrollWidth:W.scrollWidth,G=Math.max(Y,E.Dom.getViewportWidth());return G;},getViewportHeight:function(){var G=self.innerHeight,Y=K[t];if((Y||T)&&!D){G=(Y==M)?W.clientHeight:K.body.clientHeight;}return G;},getViewportWidth:function(){var G=self.innerWidth,Y=K[t];if(Y||T){G=(Y==M)?W.clientWidth:K.body.clientWidth;}return G;},getAncestorBy:function(G,Y){while((G=G[Z])){if(E.Dom._testElement(G,Y)){return G;}}return null;},getAncestorByClassName:function(Y,G){Y=E.Dom.get(Y);if(!Y){return null;}var x=function(y){return E.Dom.hasClass(y,G);};return E.Dom.getAncestorBy(Y,x);},getAncestorByTagName:function(Y,G){Y=E.Dom.get(Y);if(!Y){return null;}var x=function(y){return y[C]&&y[C].toUpperCase()==G.toUpperCase();};return E.Dom.getAncestorBy(Y,x);},getPreviousSiblingBy:function(G,Y){while(G){G=G.previousSibling;if(E.Dom._testElement(G,Y)){return G;}}return null;},getPreviousSibling:function(G){G=E.Dom.get(G);if(!G){return null;}return E.Dom.getPreviousSiblingBy(G);},getNextSiblingBy:function(G,Y){while(G){G=G.nextSibling;if(E.Dom._testElement(G,Y)){return G;}}return null;},getNextSibling:function(G){G=E.Dom.get(G);if(!G){return null;}return E.Dom.getNextSiblingBy(G);},getFirstChildBy:function(G,x){var Y=(E.Dom._testElement(G.firstChild,x))?G.firstChild:null;return Y||E.Dom.getNextSiblingBy(G.firstChild,x);},getFirstChild:function(G,Y){G=E.Dom.get(G);if(!G){return null;}return E.Dom.getFirstChildBy(G);},getLastChildBy:function(G,x){if(!G){return null;}var Y=(E.Dom._testElement(G.lastChild,x))?G.lastChild:null;return Y||E.Dom.getPreviousSiblingBy(G.lastChild,x);},getLastChild:function(G){G=E.Dom.get(G);return E.Dom.getLastChildBy(G);},getChildrenBy:function(Y,y){var x=E.Dom.getFirstChildBy(Y,y),G=x?[x]:[];E.Dom.getNextSiblingBy(x,function(z){if(!y||y(z)){G[G.length]=z;}return false;});return G;},getChildren:function(G){G=E.Dom.get(G);if(!G){}return E.Dom.getChildrenBy(G);},getDocumentScrollLeft:function(G){G=G||K;return Math.max(G[v].scrollLeft,G.body.scrollLeft);},getDocumentScrollTop:function(G){G=G||K;return Math.max(G[v].scrollTop,G.body.scrollTop);},insertBefore:function(Y,G){Y=E.Dom.get(Y);G=E.Dom.get(G);if(!Y||!G||!G[Z]){return null;}return G[Z].insertBefore(Y,G);},insertAfter:function(Y,G){Y=E.Dom.get(Y);G=E.Dom.get(G);if(!Y||!G||!G[Z]){return null;}if(G.nextSibling){return G[Z].insertBefore(Y,G.nextSibling);}else{return G[Z].appendChild(Y);}},getClientRegion:function(){var x=E.Dom.getDocumentScrollTop(),Y=E.Dom.getDocumentScrollLeft(),y=E.Dom.getViewportWidth()+Y,G=E.Dom.getViewportHeight()+x;return new E.Region(x,y,G,Y);},setAttribute:function(Y,G,x){G=E.Dom.CUSTOM_ATTRIBUTES[G]||G;Y.setAttribute(G,x);},getAttribute:function(Y,G){G=E.Dom.CUSTOM_ATTRIBUTES[G]||G;return Y.getAttribute(G);},_toCamel:function(Y){var x=d;function G(y,z){return z.toUpperCase();}return x[Y]||(x[Y]=Y.indexOf("-")===-1?Y:Y.replace(/-([a-z])/gi,G));},_getClassRegex:function(Y){var G;if(Y!==undefined){if(Y.exec){G=Y;}else{G=h[Y];if(!G){Y=Y.replace(E.Dom._patterns.CLASS_RE_TOKENS,"\\$1");G=h[Y]=new RegExp(s+Y+k,U);}}}return G;},_patterns:{ROOT_TAG:/^body|html$/i,CLASS_RE_TOKENS:/([\.\(\)\^\$\*\+\?\|\[\]\{\}])/g},_testElement:function(G,Y){return G&&G[l]==1&&(!Y||Y(G));},_calcBorders:function(x,y){var Y=parseInt(E.Dom[w](x,R),10)||0,G=parseInt(E.Dom[w](x,q),10)||0;if(H){if(N.test(x[C])){Y=0;G=0;}}y[0]+=G;y[1]+=Y;return y;}};var S=E.Dom[w];if(m.opera){E.Dom[w]=function(Y,G){var x=S(Y,G);if(X.test(G)){x=E.Dom.Color.toRGB(x);}return x;};}if(m.webkit){E.Dom[w]=function(Y,G){var x=S(Y,G);if(x==="rgba(0, 0, 0, 0)"){x="transparent";}return x;};}})();YAHOO.util.Region=function(C,D,A,B){this.top=C;this.y=C;this[1]=C;this.right=D;this.bottom=A;this.left=B;this.x=B;this[0]=B;this.width=this.right-this.left;this.height=this.bottom-this.top;};YAHOO.util.Region.prototype.contains=function(A){return(A.left>=this.left&&A.right<=this.right&&A.top>=this.top&&A.bottom<=this.bottom);};YAHOO.util.Region.prototype.getArea=function(){return((this.bottom-this.top)*(this.right-this.left));};YAHOO.util.Region.prototype.intersect=function(E){var C=Math.max(this.top,E.top),D=Math.min(this.right,E.right),A=Math.min(this.bottom,E.bottom),B=Math.max(this.left,E.left);if(A>=C&&D>=B){return new YAHOO.util.Region(C,D,A,B); }else{return null;}};YAHOO.util.Region.prototype.union=function(E){var C=Math.min(this.top,E.top),D=Math.max(this.right,E.right),A=Math.max(this.bottom,E.bottom),B=Math.min(this.left,E.left);return new YAHOO.util.Region(C,D,A,B);};YAHOO.util.Region.prototype.toString=function(){return("Region {"+"top: "+this.top+", right: "+this.right+", bottom: "+this.bottom+", left: "+this.left+", height: "+this.height+", width: "+this.width+"}");};YAHOO.util.Region.getRegion=function(D){var F=YAHOO.util.Dom.getXY(D),C=F[1],E=F[0]+D.offsetWidth,A=F[1]+D.offsetHeight,B=F[0];return new YAHOO.util.Region(C,E,A,B);};YAHOO.util.Point=function(A,B){if(YAHOO.lang.isArray(A)){B=A[1];A=A[0];}YAHOO.util.Point.superclass.constructor.call(this,B,A,B,A);};YAHOO.extend(YAHOO.util.Point,YAHOO.util.Region);(function(){var B=YAHOO.util,A="clientTop",F="clientLeft",J="parentNode",K="right",W="hasLayout",I="px",U="opacity",L="auto",D="borderLeftWidth",G="borderTopWidth",P="borderRightWidth",V="borderBottomWidth",S="visible",Q="transparent",N="height",E="width",H="style",T="currentStyle",R=/^width|height$/,O=/^(\d[.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg|rad|ms|s|hz|khz|%){1}?/i,M={get:function(X,Z){var Y="",a=X[T][Z];if(Z===U){Y=B.Dom.getStyle(X,U);}else{if(!a||(a.indexOf&&a.indexOf(I)>-1)){Y=a;}else{if(B.Dom.IE_COMPUTED[Z]){Y=B.Dom.IE_COMPUTED[Z](X,Z);}else{if(O.test(a)){Y=B.Dom.IE.ComputedStyle.getPixel(X,Z);}else{Y=a;}}}}return Y;},getOffset:function(Z,e){var b=Z[T][e],X=e.charAt(0).toUpperCase()+e.substr(1),c="offset"+X,Y="pixel"+X,a="",d;if(b==L){d=Z[c];if(d===undefined){a=0;}a=d;if(R.test(e)){Z[H][e]=d;if(Z[c]>d){a=d-(Z[c]-d);}Z[H][e]=L;}}else{if(!Z[H][Y]&&!Z[H][e]){Z[H][e]=b;}a=Z[H][Y];}return a+I;},getBorderWidth:function(X,Z){var Y=null;if(!X[T][W]){X[H].zoom=1;}switch(Z){case G:Y=X[A];break;case V:Y=X.offsetHeight-X.clientHeight-X[A];break;case D:Y=X[F];break;case P:Y=X.offsetWidth-X.clientWidth-X[F];break;}return Y+I;},getPixel:function(Y,X){var a=null,b=Y[T][K],Z=Y[T][X];Y[H][K]=Z;a=Y[H].pixelRight;Y[H][K]=b;return a+I;},getMargin:function(Y,X){var Z;if(Y[T][X]==L){Z=0+I;}else{Z=B.Dom.IE.ComputedStyle.getPixel(Y,X);}return Z;},getVisibility:function(Y,X){var Z;while((Z=Y[T])&&Z[X]=="inherit"){Y=Y[J];}return(Z)?Z[X]:S;},getColor:function(Y,X){return B.Dom.Color.toRGB(Y[T][X])||Q;},getBorderColor:function(Y,X){var Z=Y[T],a=Z[X]||Z.color;return B.Dom.Color.toRGB(B.Dom.Color.toHex(a));}},C={};C.top=C.right=C.bottom=C.left=C[E]=C[N]=M.getOffset;C.color=M.getColor;C[G]=C[P]=C[V]=C[D]=M.getBorderWidth;C.marginTop=C.marginRight=C.marginBottom=C.marginLeft=M.getMargin;C.visibility=M.getVisibility;C.borderColor=C.borderTopColor=C.borderRightColor=C.borderBottomColor=C.borderLeftColor=M.getBorderColor;B.Dom.IE_COMPUTED=C;B.Dom.IE_ComputedStyle=M;})();(function(){var C="toString",A=parseInt,B=RegExp,D=YAHOO.util;D.Dom.Color={KEYWORDS:{black:"000",silver:"c0c0c0",gray:"808080",white:"fff",maroon:"800000",red:"f00",purple:"800080",fuchsia:"f0f",green:"008000",lime:"0f0",olive:"808000",yellow:"ff0",navy:"000080",blue:"00f",teal:"008080",aqua:"0ff"},re_RGB:/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i,re_hex:/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i,re_hex3:/([0-9A-F])/gi,toRGB:function(E){if(!D.Dom.Color.re_RGB.test(E)){E=D.Dom.Color.toHex(E);}if(D.Dom.Color.re_hex.exec(E)){E="rgb("+[A(B.$1,16),A(B.$2,16),A(B.$3,16)].join(", ")+")";}return E;},toHex:function(H){H=D.Dom.Color.KEYWORDS[H]||H;if(D.Dom.Color.re_RGB.exec(H)){var G=(B.$1.length===1)?"0"+B.$1:Number(B.$1),F=(B.$2.length===1)?"0"+B.$2:Number(B.$2),E=(B.$3.length===1)?"0"+B.$3:Number(B.$3);H=[G[C](16),F[C](16),E[C](16)].join("");}if(H.length<6){H=H.replace(D.Dom.Color.re_hex3,"$1$1");}if(H!=="transparent"&&H.indexOf("#")<0){H="#"+H;}return H.toLowerCase();}};}());YAHOO.register("dom",YAHOO.util.Dom,{version:"2.7.0",build:"1796"});YAHOO.util.CustomEvent=function(D,C,B,A){this.type=D;this.scope=C||window;this.silent=B;this.signature=A||YAHOO.util.CustomEvent.LIST;this.subscribers=[];if(!this.silent){}var E="_YUICEOnSubscribe";if(D!==E){this.subscribeEvent=new YAHOO.util.CustomEvent(E,this,true);}this.lastError=null;};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1;YAHOO.util.CustomEvent.prototype={subscribe:function(A,B,C){if(!A){throw new Error("Invalid callback for subscriber to '"+this.type+"'");}if(this.subscribeEvent){this.subscribeEvent.fire(A,B,C);}this.subscribers.push(new YAHOO.util.Subscriber(A,B,C));},unsubscribe:function(D,F){if(!D){return this.unsubscribeAll();}var E=false;for(var B=0,A=this.subscribers.length;B<A;++B){var C=this.subscribers[B];if(C&&C.contains(D,F)){this._delete(B);E=true;}}return E;},fire:function(){this.lastError=null;var K=[],E=this.subscribers.length;if(!E&&this.silent){return true;}var I=[].slice.call(arguments,0),G=true,D,J=false;if(!this.silent){}var C=this.subscribers.slice(),A=YAHOO.util.Event.throwErrors;for(D=0;D<E;++D){var M=C[D];if(!M){J=true;}else{if(!this.silent){}var L=M.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var B=null;if(I.length>0){B=I[0];}try{G=M.fn.call(L,B,M.obj);}catch(F){this.lastError=F;if(A){throw F;}}}else{try{G=M.fn.call(L,this.type,I,M.obj);}catch(H){this.lastError=H;if(A){throw H;}}}if(false===G){if(!this.silent){}break;}}}return(G!==false);},unsubscribeAll:function(){var A=this.subscribers.length,B;for(B=A-1;B>-1;B--){this._delete(B);}this.subscribers=[];return A;},_delete:function(A){var B=this.subscribers[A];if(B){delete B.fn;delete B.obj;}this.subscribers.splice(A,1);},toString:function(){return"CustomEvent: "+"'"+this.type+"', "+"context: "+this.scope;}};YAHOO.util.Subscriber=function(A,B,C){this.fn=A;this.obj=YAHOO.lang.isUndefined(B)?null:B;this.overrideContext=C;};YAHOO.util.Subscriber.prototype.getScope=function(A){if(this.overrideContext){if(this.overrideContext===true){return this.obj;}else{return this.overrideContext;}}return A;};YAHOO.util.Subscriber.prototype.contains=function(A,B){if(B){return(this.fn==A&&this.obj==B);}else{return(this.fn==A);}};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", overrideContext: "+(this.overrideContext||"no")+" }";};if(!YAHOO.util.Event){YAHOO.util.Event=function(){var H=false;var I=[];var J=[];var G=[];var E=[];var C=0;var F=[];var B=[];var A=0;var D={63232:38,63233:40,63234:37,63235:39,63276:33,63277:34,25:9};var K=YAHOO.env.ua.ie?"focusin":"focus";var L=YAHOO.env.ua.ie?"focusout":"blur";return{POLL_RETRYS:2000,POLL_INTERVAL:20,EL:0,TYPE:1,FN:2,WFN:3,UNLOAD_OBJ:3,ADJ_SCOPE:4,OBJ:5,OVERRIDE:6,lastError:null,isSafari:YAHOO.env.ua.webkit,webkit:YAHOO.env.ua.webkit,isIE:YAHOO.env.ua.ie,_interval:null,_dri:null,DOMReady:false,throwErrors:false,startInterval:function(){if(!this._interval){var M=this;var N=function(){M._tryPreloadAttach();};this._interval=setInterval(N,this.POLL_INTERVAL);}},onAvailable:function(S,O,Q,R,P){var M=(YAHOO.lang.isString(S))?[S]:S;for(var N=0;N<M.length;N=N+1){F.push({id:M[N],fn:O,obj:Q,overrideContext:R,checkReady:P});}C=this.POLL_RETRYS;this.startInterval();},onContentReady:function(P,M,N,O){this.onAvailable(P,M,N,O,true);},onDOMReady:function(M,N,O){if(this.DOMReady){setTimeout(function(){var P=window;if(O){if(O===true){P=N;}else{P=O;}}M.call(P,"DOMReady",[],N);},0);}else{this.DOMReadyEvent.subscribe(M,N,O);}},_addListener:function(O,M,Y,S,W,b){if(!Y||!Y.call){return false;}if(this._isValidCollection(O)){var Z=true;for(var T=0,V=O.length;T<V;++T){Z=this.on(O[T],M,Y,S,W)&&Z;}return Z;}else{if(YAHOO.lang.isString(O)){var R=this.getEl(O);if(R){O=R;}else{this.onAvailable(O,function(){YAHOO.util.Event.on(O,M,Y,S,W);});return true;}}}if(!O){return false;}if("unload"==M&&S!==this){J[J.length]=[O,M,Y,S,W];return true;}var N=O;if(W){if(W===true){N=S;}else{N=W;}}var P=function(c){return Y.call(N,YAHOO.util.Event.getEvent(c,O),S);};var a=[O,M,Y,P,N,S,W];var U=I.length;I[U]=a;if(this.useLegacyEvent(O,M)){var Q=this.getLegacyIndex(O,M);if(Q==-1||O!=G[Q][0]){Q=G.length;B[O.id+M]=Q;G[Q]=[O,M,O["on"+M]];E[Q]=[];O["on"+M]=function(c){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(c),Q);};}E[Q].push(a);}else{try{this._simpleAdd(O,M,P,b);}catch(X){this.lastError=X;this.removeListener(O,M,Y);return false;}}return true;},addListener:function(N,Q,M,O,P){return this._addListener(N,Q,M,O,P,false);},addFocusListener:function(N,M,O,P){return this._addListener(N,K,M,O,P,true);},removeFocusListener:function(N,M){return this.removeListener(N,K,M);},addBlurListener:function(N,M,O,P){return this._addListener(N,L,M,O,P,true);},removeBlurListener:function(N,M){return this.removeListener(N,L,M);},fireLegacyEvent:function(R,P){var T=true,M,V,U,N,S;V=E[P].slice();for(var O=0,Q=V.length;O<Q;++O){U=V[O];if(U&&U[this.WFN]){N=U[this.ADJ_SCOPE];S=U[this.WFN].call(N,R);T=(T&&S);}}M=G[P];if(M&&M[2]){M[2](R);}return T;},getLegacyIndex:function(N,O){var M=this.generateId(N)+O;if(typeof B[M]=="undefined"){return -1;}else{return B[M];}},useLegacyEvent:function(M,N){return(this.webkit&&this.webkit<419&&("click"==N||"dblclick"==N));},removeListener:function(N,M,V){var Q,T,X;if(typeof N=="string"){N=this.getEl(N);}else{if(this._isValidCollection(N)){var W=true;for(Q=N.length-1;Q>-1;Q--){W=(this.removeListener(N[Q],M,V)&&W);}return W;}}if(!V||!V.call){return this.purgeElement(N,false,M);}if("unload"==M){for(Q=J.length-1;Q>-1;Q--){X=J[Q];if(X&&X[0]==N&&X[1]==M&&X[2]==V){J.splice(Q,1);return true;}}return false;}var R=null;var S=arguments[3];if("undefined"===typeof S){S=this._getCacheIndex(N,M,V);}if(S>=0){R=I[S];}if(!N||!R){return false;}if(this.useLegacyEvent(N,M)){var P=this.getLegacyIndex(N,M);var O=E[P];if(O){for(Q=0,T=O.length;Q<T;++Q){X=O[Q];if(X&&X[this.EL]==N&&X[this.TYPE]==M&&X[this.FN]==V){O.splice(Q,1);break;}}}}else{try{this._simpleRemove(N,M,R[this.WFN],false);}catch(U){this.lastError=U;return false;}}delete I[S][this.WFN];delete I[S][this.FN]; I.splice(S,1);return true;},getTarget:function(O,N){var M=O.target||O.srcElement;return this.resolveTextNode(M);},resolveTextNode:function(N){try{if(N&&3==N.nodeType){return N.parentNode;}}catch(M){}return N;},getPageX:function(N){var M=N.pageX;if(!M&&0!==M){M=N.clientX||0;if(this.isIE){M+=this._getScrollLeft();}}return M;},getPageY:function(M){var N=M.pageY;if(!N&&0!==N){N=M.clientY||0;if(this.isIE){N+=this._getScrollTop();}}return N;},getXY:function(M){return[this.getPageX(M),this.getPageY(M)];},getRelatedTarget:function(N){var M=N.relatedTarget;if(!M){if(N.type=="mouseout"){M=N.toElement;}else{if(N.type=="mouseover"){M=N.fromElement;}}}return this.resolveTextNode(M);},getTime:function(O){if(!O.time){var N=new Date().getTime();try{O.time=N;}catch(M){this.lastError=M;return N;}}return O.time;},stopEvent:function(M){this.stopPropagation(M);this.preventDefault(M);},stopPropagation:function(M){if(M.stopPropagation){M.stopPropagation();}else{M.cancelBubble=true;}},preventDefault:function(M){if(M.preventDefault){M.preventDefault();}else{M.returnValue=false;}},getEvent:function(O,M){var N=O||window.event;if(!N){var P=this.getEvent.caller;while(P){N=P.arguments[0];if(N&&Event==N.constructor){break;}P=P.caller;}}return N;},getCharCode:function(N){var M=N.keyCode||N.charCode||0;if(YAHOO.env.ua.webkit&&(M in D)){M=D[M];}return M;},_getCacheIndex:function(Q,R,P){for(var O=0,N=I.length;O<N;O=O+1){var M=I[O];if(M&&M[this.FN]==P&&M[this.EL]==Q&&M[this.TYPE]==R){return O;}}return -1;},generateId:function(M){var N=M.id;if(!N){N="yuievtautoid-"+A;++A;M.id=N;}return N;},_isValidCollection:function(N){try{return(N&&typeof N!=="string"&&N.length&&!N.tagName&&!N.alert&&typeof N[0]!=="undefined");}catch(M){return false;}},elCache:{},getEl:function(M){return(typeof M==="string")?document.getElementById(M):M;},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady",this),_load:function(N){if(!H){H=true;var M=YAHOO.util.Event;M._ready();M._tryPreloadAttach();}},_ready:function(N){var M=YAHOO.util.Event;if(!M.DOMReady){M.DOMReady=true;M.DOMReadyEvent.fire();M._simpleRemove(document,"DOMContentLoaded",M._ready);}},_tryPreloadAttach:function(){if(F.length===0){C=0;if(this._interval){clearInterval(this._interval);this._interval=null;}return;}if(this.locked){return;}if(this.isIE){if(!this.DOMReady){this.startInterval();return;}}this.locked=true;var S=!H;if(!S){S=(C>0&&F.length>0);}var R=[];var T=function(V,W){var U=V;if(W.overrideContext){if(W.overrideContext===true){U=W.obj;}else{U=W.overrideContext;}}W.fn.call(U,W.obj);};var N,M,Q,P,O=[];for(N=0,M=F.length;N<M;N=N+1){Q=F[N];if(Q){P=this.getEl(Q.id);if(P){if(Q.checkReady){if(H||P.nextSibling||!S){O.push(Q);F[N]=null;}}else{T(P,Q);F[N]=null;}}else{R.push(Q);}}}for(N=0,M=O.length;N<M;N=N+1){Q=O[N];T(this.getEl(Q.id),Q);}C--;if(S){for(N=F.length-1;N>-1;N--){Q=F[N];if(!Q||!Q.id){F.splice(N,1);}}this.startInterval();}else{if(this._interval){clearInterval(this._interval);this._interval=null;}}this.locked=false;},purgeElement:function(Q,R,T){var O=(YAHOO.lang.isString(Q))?this.getEl(Q):Q;var S=this.getListeners(O,T),P,M;if(S){for(P=S.length-1;P>-1;P--){var N=S[P];this.removeListener(O,N.type,N.fn);}}if(R&&O&&O.childNodes){for(P=0,M=O.childNodes.length;P<M;++P){this.purgeElement(O.childNodes[P],R,T);}}},getListeners:function(O,M){var R=[],N;if(!M){N=[I,J];}else{if(M==="unload"){N=[J];}else{N=[I];}}var T=(YAHOO.lang.isString(O))?this.getEl(O):O;for(var Q=0;Q<N.length;Q=Q+1){var V=N[Q];if(V){for(var S=0,U=V.length;S<U;++S){var P=V[S];if(P&&P[this.EL]===T&&(!M||M===P[this.TYPE])){R.push({type:P[this.TYPE],fn:P[this.FN],obj:P[this.OBJ],adjust:P[this.OVERRIDE],scope:P[this.ADJ_SCOPE],index:S});}}}}return(R.length)?R:null;},_unload:function(T){var N=YAHOO.util.Event,Q,P,O,S,R,U=J.slice(),M;for(Q=0,S=J.length;Q<S;++Q){O=U[Q];if(O){M=window;if(O[N.ADJ_SCOPE]){if(O[N.ADJ_SCOPE]===true){M=O[N.UNLOAD_OBJ];}else{M=O[N.ADJ_SCOPE];}}O[N.FN].call(M,N.getEvent(T,O[N.EL]),O[N.UNLOAD_OBJ]);U[Q]=null;}}O=null;M=null;J=null;if(I){for(P=I.length-1;P>-1;P--){O=I[P];if(O){N.removeListener(O[N.EL],O[N.TYPE],O[N.FN],P);}}O=null;}G=null;N._simpleRemove(window,"unload",N._unload);},_getScrollLeft:function(){return this._getScroll()[1];},_getScrollTop:function(){return this._getScroll()[0];},_getScroll:function(){var M=document.documentElement,N=document.body;if(M&&(M.scrollTop||M.scrollLeft)){return[M.scrollTop,M.scrollLeft];}else{if(N){return[N.scrollTop,N.scrollLeft];}else{return[0,0];}}},regCE:function(){},_simpleAdd:function(){if(window.addEventListener){return function(O,P,N,M){O.addEventListener(P,N,(M));};}else{if(window.attachEvent){return function(O,P,N,M){O.attachEvent("on"+P,N);};}else{return function(){};}}}(),_simpleRemove:function(){if(window.removeEventListener){return function(O,P,N,M){O.removeEventListener(P,N,(M));};}else{if(window.detachEvent){return function(N,O,M){N.detachEvent("on"+O,M);};}else{return function(){};}}}()};}();(function(){var EU=YAHOO.util.Event;EU.on=EU.addListener;EU.onFocus=EU.addFocusListener;EU.onBlur=EU.addBlurListener; /* DOMReady: based on work by: Dean Edwards/John Resig/Matthias Miller */ if(EU.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,true);var n=document.createElement("p");EU._dri=setInterval(function(){try{n.doScroll("left");clearInterval(EU._dri);EU._dri=null;EU._ready();n=null;}catch(ex){}},EU.POLL_INTERVAL);}else{if(EU.webkit&&EU.webkit<525){EU._dri=setInterval(function(){var rs=document.readyState;if("loaded"==rs||"complete"==rs){clearInterval(EU._dri);EU._dri=null;EU._ready();}},EU.POLL_INTERVAL);}else{EU._simpleAdd(document,"DOMContentLoaded",EU._ready);}}EU._simpleAdd(window,"load",EU._load);EU._simpleAdd(window,"unload",EU._unload);EU._tryPreloadAttach();})();}YAHOO.util.EventProvider=function(){};YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(A,C,F,E){this.__yui_events=this.__yui_events||{};var D=this.__yui_events[A];if(D){D.subscribe(C,F,E); }else{this.__yui_subscribers=this.__yui_subscribers||{};var B=this.__yui_subscribers;if(!B[A]){B[A]=[];}B[A].push({fn:C,obj:F,overrideContext:E});}},unsubscribe:function(C,E,G){this.__yui_events=this.__yui_events||{};var A=this.__yui_events;if(C){var F=A[C];if(F){return F.unsubscribe(E,G);}}else{var B=true;for(var D in A){if(YAHOO.lang.hasOwnProperty(A,D)){B=B&&A[D].unsubscribe(E,G);}}return B;}return false;},unsubscribeAll:function(A){return this.unsubscribe(A);},createEvent:function(G,D){this.__yui_events=this.__yui_events||{};var A=D||{};var I=this.__yui_events;if(I[G]){}else{var H=A.scope||this;var E=(A.silent);var B=new YAHOO.util.CustomEvent(G,H,E,YAHOO.util.CustomEvent.FLAT);I[G]=B;if(A.onSubscribeCallback){B.subscribeEvent.subscribe(A.onSubscribeCallback);}this.__yui_subscribers=this.__yui_subscribers||{};var F=this.__yui_subscribers[G];if(F){for(var C=0;C<F.length;++C){B.subscribe(F[C].fn,F[C].obj,F[C].overrideContext);}}}return I[G];},fireEvent:function(E,D,A,C){this.__yui_events=this.__yui_events||{};var G=this.__yui_events[E];if(!G){return null;}var B=[];for(var F=1;F<arguments.length;++F){B.push(arguments[F]);}return G.fire.apply(G,B);},hasEvent:function(A){if(this.__yui_events){if(this.__yui_events[A]){return true;}}return false;}};(function(){var A=YAHOO.util.Event,C=YAHOO.lang;YAHOO.util.KeyListener=function(D,I,E,F){if(!D){}else{if(!I){}else{if(!E){}}}if(!F){F=YAHOO.util.KeyListener.KEYDOWN;}var G=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent=new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");if(C.isString(D)){D=document.getElementById(D);}if(C.isFunction(E)){G.subscribe(E);}else{G.subscribe(E.fn,E.scope,E.correctScope);}function H(O,N){if(!I.shift){I.shift=false;}if(!I.alt){I.alt=false;}if(!I.ctrl){I.ctrl=false;}if(O.shiftKey==I.shift&&O.altKey==I.alt&&O.ctrlKey==I.ctrl){var J,M=I.keys,L;if(YAHOO.lang.isArray(M)){for(var K=0;K<M.length;K++){J=M[K];L=A.getCharCode(O);if(J==L){G.fire(L,O);break;}}}else{L=A.getCharCode(O);if(M==L){G.fire(L,O);}}}}this.enable=function(){if(!this.enabled){A.on(D,F,H);this.enabledEvent.fire(I);}this.enabled=true;};this.disable=function(){if(this.enabled){A.removeListener(D,F,H);this.disabledEvent.fire(I);}this.enabled=false;};this.toString=function(){return"KeyListener ["+I.keys+"] "+D.tagName+(D.id?"["+D.id+"]":"");};};var B=YAHOO.util.KeyListener;B.KEYDOWN="keydown";B.KEYUP="keyup";B.KEY={ALT:18,BACK_SPACE:8,CAPS_LOCK:20,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,META:224,NUM_LOCK:144,PAGE_DOWN:34,PAGE_UP:33,PAUSE:19,PRINTSCREEN:44,RIGHT:39,SCROLL_LOCK:145,SHIFT:16,SPACE:32,TAB:9,UP:38};})();YAHOO.register("event",YAHOO.util.Event,{version:"2.7.0",build:"1796"});YAHOO.register("yahoo-dom-event", YAHOO, {version: "2.7.0", build: "1796"}); /* Copyright (c) 2009, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt version: 2.7.0 */ if(!YAHOO.util.DragDropMgr){YAHOO.util.DragDropMgr=function(){var A=YAHOO.util.Event,B=YAHOO.util.Dom;return{useShim:false,_shimActive:false,_shimState:false,_debugShim:false,_createShim:function(){var C=document.createElement("div");C.id="yui-ddm-shim";if(document.body.firstChild){document.body.insertBefore(C,document.body.firstChild);}else{document.body.appendChild(C);}C.style.display="none";C.style.backgroundColor="red";C.style.position="absolute";C.style.zIndex="99999";B.setStyle(C,"opacity","0");this._shim=C;A.on(C,"mouseup",this.handleMouseUp,this,true);A.on(C,"mousemove",this.handleMouseMove,this,true);A.on(window,"scroll",this._sizeShim,this,true);},_sizeShim:function(){if(this._shimActive){var C=this._shim;C.style.height=B.getDocumentHeight()+"px";C.style.width=B.getDocumentWidth()+"px";C.style.top="0";C.style.left="0";}},_activateShim:function(){if(this.useShim){if(!this._shim){this._createShim();}this._shimActive=true;var C=this._shim,D="0";if(this._debugShim){D=".5";}B.setStyle(C,"opacity",D);this._sizeShim();C.style.display="block";}},_deactivateShim:function(){this._shim.style.display="none";this._shimActive=false;},_shim:null,ids:{},handleIds:{},dragCurrent:null,dragOvers:{},deltaX:0,deltaY:0,preventDefault:true,stopPropagation:true,initialized:false,locked:false,interactionInfo:null,init:function(){this.initialized=true;},POINT:0,INTERSECT:1,STRICT_INTERSECT:2,mode:0,_execOnAll:function(E,D){for(var F in this.ids){for(var C in this.ids[F]){var G=this.ids[F][C];if(!this.isTypeOfDD(G)){continue;}G[E].apply(G,D);}}},_onLoad:function(){this.init();A.on(document,"mouseup",this.handleMouseUp,this,true);A.on(document,"mousemove",this.handleMouseMove,this,true);A.on(window,"unload",this._onUnload,this,true);A.on(window,"resize",this._onResize,this,true);},_onResize:function(C){this._execOnAll("resetConstraints",[]);},lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isLocked:function(){return this.locked;},locationCache:{},useCache:true,clickPixelThresh:3,clickTimeThresh:1000,dragThreshMet:false,clickTimeout:null,startX:0,startY:0,fromTimeout:false,regDragDrop:function(D,C){if(!this.initialized){this.init();}if(!this.ids[C]){this.ids[C]={};}this.ids[C][D.id]=D;},removeDDFromGroup:function(E,C){if(!this.ids[C]){this.ids[C]={};}var D=this.ids[C];if(D&&D[E.id]){delete D[E.id];}},_remove:function(E){for(var D in E.groups){if(D){var C=this.ids[D];if(C&&C[E.id]){delete C[E.id];}}}delete this.handleIds[E.id];},regHandle:function(D,C){if(!this.handleIds[D]){this.handleIds[D]={};}this.handleIds[D][C]=C;},isDragDrop:function(C){return(this.getDDById(C))?true:false;},getRelated:function(H,D){var G=[];for(var F in H.groups){for(var E in this.ids[F]){var C=this.ids[F][E];if(!this.isTypeOfDD(C)){continue;}if(!D||C.isTarget){G[G.length]=C;}}}return G;},isLegalTarget:function(G,F){var D=this.getRelated(G,true);for(var E=0,C=D.length;E<C;++E){if(D[E].id==F.id){return true;}}return false;},isTypeOfDD:function(C){return(C&&C.__ygDragDrop);},isHandle:function(D,C){return(this.handleIds[D]&&this.handleIds[D][C]);},getDDById:function(D){for(var C in this.ids){if(this.ids[C][D]){return this.ids[C][D];}}return null;},handleMouseDown:function(E,D){this.currentTarget=YAHOO.util.Event.getTarget(E);this.dragCurrent=D;var C=D.getEl();this.startX=YAHOO.util.Event.getPageX(E);this.startY=YAHOO.util.Event.getPageY(E);this.deltaX=this.startX-C.offsetLeft;this.deltaY=this.startY-C.offsetTop;this.dragThreshMet=false;this.clickTimeout=setTimeout(function(){var F=YAHOO.util.DDM;F.startDrag(F.startX,F.startY);F.fromTimeout=true;},this.clickTimeThresh);},startDrag:function(C,E){if(this.dragCurrent&&this.dragCurrent.useShim){this._shimState=this.useShim;this.useShim=true;}this._activateShim();clearTimeout(this.clickTimeout);var D=this.dragCurrent;if(D&&D.events.b4StartDrag){D.b4StartDrag(C,E);D.fireEvent("b4StartDragEvent",{x:C,y:E});}if(D&&D.events.startDrag){D.startDrag(C,E);D.fireEvent("startDragEvent",{x:C,y:E});}this.dragThreshMet=true;},handleMouseUp:function(C){if(this.dragCurrent){clearTimeout(this.clickTimeout);if(this.dragThreshMet){if(this.fromTimeout){this.fromTimeout=false;this.handleMouseMove(C);}this.fromTimeout=false;this.fireEvents(C,true);}else{}this.stopDrag(C);this.stopEvent(C);}},stopEvent:function(C){if(this.stopPropagation){YAHOO.util.Event.stopPropagation(C);}if(this.preventDefault){YAHOO.util.Event.preventDefault(C);}},stopDrag:function(E,D){var C=this.dragCurrent;if(C&&!D){if(this.dragThreshMet){if(C.events.b4EndDrag){C.b4EndDrag(E);C.fireEvent("b4EndDragEvent",{e:E});}if(C.events.endDrag){C.endDrag(E);C.fireEvent("endDragEvent",{e:E});}}if(C.events.mouseUp){C.onMouseUp(E);C.fireEvent("mouseUpEvent",{e:E});}}if(this._shimActive){this._deactivateShim();if(this.dragCurrent&&this.dragCurrent.useShim){this.useShim=this._shimState;this._shimState=false;}}this.dragCurrent=null;this.dragOvers={};},handleMouseMove:function(F){var C=this.dragCurrent;if(C){if(YAHOO.util.Event.isIE&&!F.button){this.stopEvent(F);return this.handleMouseUp(F);}else{if(F.clientX<0||F.clientY<0){}}if(!this.dragThreshMet){var E=Math.abs(this.startX-YAHOO.util.Event.getPageX(F));var D=Math.abs(this.startY-YAHOO.util.Event.getPageY(F));if(E>this.clickPixelThresh||D>this.clickPixelThresh){this.startDrag(this.startX,this.startY);}}if(this.dragThreshMet){if(C&&C.events.b4Drag){C.b4Drag(F);C.fireEvent("b4DragEvent",{e:F});}if(C&&C.events.drag){C.onDrag(F);C.fireEvent("dragEvent",{e:F});}if(C){this.fireEvents(F,false);}}this.stopEvent(F);}},fireEvents:function(V,L){var a=this.dragCurrent;if(!a||a.isLocked()||a.dragOnly){return;}var N=YAHOO.util.Event.getPageX(V),M=YAHOO.util.Event.getPageY(V),P=new YAHOO.util.Point(N,M),K=a.getTargetCoord(P.x,P.y),F=a.getDragEl(),E=["out","over","drop","enter"],U=new YAHOO.util.Region(K.y,K.x+F.offsetWidth,K.y+F.offsetHeight,K.x),I=[],D={},Q=[],c={outEvts:[],overEvts:[],dropEvts:[],enterEvts:[]};for(var S in this.dragOvers){var d=this.dragOvers[S];if(!this.isTypeOfDD(d)){continue; }if(!this.isOverTarget(P,d,this.mode,U)){c.outEvts.push(d);}I[S]=true;delete this.dragOvers[S];}for(var R in a.groups){if("string"!=typeof R){continue;}for(S in this.ids[R]){var G=this.ids[R][S];if(!this.isTypeOfDD(G)){continue;}if(G.isTarget&&!G.isLocked()&&G!=a){if(this.isOverTarget(P,G,this.mode,U)){D[R]=true;if(L){c.dropEvts.push(G);}else{if(!I[G.id]){c.enterEvts.push(G);}else{c.overEvts.push(G);}this.dragOvers[G.id]=G;}}}}}this.interactionInfo={out:c.outEvts,enter:c.enterEvts,over:c.overEvts,drop:c.dropEvts,point:P,draggedRegion:U,sourceRegion:this.locationCache[a.id],validDrop:L};for(var C in D){Q.push(C);}if(L&&!c.dropEvts.length){this.interactionInfo.validDrop=false;if(a.events.invalidDrop){a.onInvalidDrop(V);a.fireEvent("invalidDropEvent",{e:V});}}for(S=0;S<E.length;S++){var Y=null;if(c[E[S]+"Evts"]){Y=c[E[S]+"Evts"];}if(Y&&Y.length){var H=E[S].charAt(0).toUpperCase()+E[S].substr(1),X="onDrag"+H,J="b4Drag"+H,O="drag"+H+"Event",W="drag"+H;if(this.mode){if(a.events[J]){a[J](V,Y,Q);a.fireEvent(J+"Event",{event:V,info:Y,group:Q});}if(a.events[W]){a[X](V,Y,Q);a.fireEvent(O,{event:V,info:Y,group:Q});}}else{for(var Z=0,T=Y.length;Z<T;++Z){if(a.events[J]){a[J](V,Y[Z].id,Q[0]);a.fireEvent(J+"Event",{event:V,info:Y[Z].id,group:Q[0]});}if(a.events[W]){a[X](V,Y[Z].id,Q[0]);a.fireEvent(O,{event:V,info:Y[Z].id,group:Q[0]});}}}}}},getBestMatch:function(E){var G=null;var D=E.length;if(D==1){G=E[0];}else{for(var F=0;F<D;++F){var C=E[F];if(this.mode==this.INTERSECT&&C.cursorIsOver){G=C;break;}else{if(!G||!G.overlap||(C.overlap&&G.overlap.getArea()<C.overlap.getArea())){G=C;}}}}return G;},refreshCache:function(D){var F=D||this.ids;for(var C in F){if("string"!=typeof C){continue;}for(var E in this.ids[C]){var G=this.ids[C][E];if(this.isTypeOfDD(G)){var H=this.getLocation(G);if(H){this.locationCache[G.id]=H;}else{delete this.locationCache[G.id];}}}}},verifyEl:function(D){try{if(D){var C=D.offsetParent;if(C){return true;}}}catch(E){}return false;},getLocation:function(H){if(!this.isTypeOfDD(H)){return null;}var F=H.getEl(),K,E,D,M,L,N,C,J,G;try{K=YAHOO.util.Dom.getXY(F);}catch(I){}if(!K){return null;}E=K[0];D=E+F.offsetWidth;M=K[1];L=M+F.offsetHeight;N=M-H.padding[0];C=D+H.padding[1];J=L+H.padding[2];G=E-H.padding[3];return new YAHOO.util.Region(N,C,J,G);},isOverTarget:function(K,C,E,F){var G=this.locationCache[C.id];if(!G||!this.useCache){G=this.getLocation(C);this.locationCache[C.id]=G;}if(!G){return false;}C.cursorIsOver=G.contains(K);var J=this.dragCurrent;if(!J||(!E&&!J.constrainX&&!J.constrainY)){return C.cursorIsOver;}C.overlap=null;if(!F){var H=J.getTargetCoord(K.x,K.y);var D=J.getDragEl();F=new YAHOO.util.Region(H.y,H.x+D.offsetWidth,H.y+D.offsetHeight,H.x);}var I=F.intersect(G);if(I){C.overlap=I;return(E)?true:C.cursorIsOver;}else{return false;}},_onUnload:function(D,C){this.unregAll();},unregAll:function(){if(this.dragCurrent){this.stopDrag();this.dragCurrent=null;}this._execOnAll("unreg",[]);this.ids={};},elementCache:{},getElWrapper:function(D){var C=this.elementCache[D];if(!C||!C.el){C=this.elementCache[D]=new this.ElementWrapper(YAHOO.util.Dom.get(D));}return C;},getElement:function(C){return YAHOO.util.Dom.get(C);},getCss:function(D){var C=YAHOO.util.Dom.get(D);return(C)?C.style:null;},ElementWrapper:function(C){this.el=C||null;this.id=this.el&&C.id;this.css=this.el&&C.style;},getPosX:function(C){return YAHOO.util.Dom.getX(C);},getPosY:function(C){return YAHOO.util.Dom.getY(C);},swapNode:function(E,C){if(E.swapNode){E.swapNode(C);}else{var F=C.parentNode;var D=C.nextSibling;if(D==E){F.insertBefore(E,C);}else{if(C==E.nextSibling){F.insertBefore(C,E);}else{E.parentNode.replaceChild(C,E);F.insertBefore(E,D);}}}},getScroll:function(){var E,C,F=document.documentElement,D=document.body;if(F&&(F.scrollTop||F.scrollLeft)){E=F.scrollTop;C=F.scrollLeft;}else{if(D){E=D.scrollTop;C=D.scrollLeft;}else{}}return{top:E,left:C};},getStyle:function(D,C){return YAHOO.util.Dom.getStyle(D,C);},getScrollTop:function(){return this.getScroll().top;},getScrollLeft:function(){return this.getScroll().left;},moveToEl:function(C,E){var D=YAHOO.util.Dom.getXY(E);YAHOO.util.Dom.setXY(C,D);},getClientHeight:function(){return YAHOO.util.Dom.getViewportHeight();},getClientWidth:function(){return YAHOO.util.Dom.getViewportWidth();},numericSort:function(D,C){return(D-C);},_timeoutCount:0,_addListeners:function(){var C=YAHOO.util.DDM;if(YAHOO.util.Event&&document){C._onLoad();}else{if(C._timeoutCount>2000){}else{setTimeout(C._addListeners,10);if(document&&document.body){C._timeoutCount+=1;}}}},handleWasClicked:function(C,E){if(this.isHandle(E,C.id)){return true;}else{var D=C.parentNode;while(D){if(this.isHandle(E,D.id)){return true;}else{D=D.parentNode;}}}return false;}};}();YAHOO.util.DDM=YAHOO.util.DragDropMgr;YAHOO.util.DDM._addListeners();}(function(){var A=YAHOO.util.Event;var B=YAHOO.util.Dom;YAHOO.util.DragDrop=function(E,C,D){if(E){this.init(E,C,D);}};YAHOO.util.DragDrop.prototype={events:null,on:function(){this.subscribe.apply(this,arguments);},id:null,config:null,dragElId:null,handleElId:null,invalidHandleTypes:null,invalidHandleIds:null,invalidHandleClasses:null,startPageX:0,startPageY:0,groups:null,locked:false,lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isTarget:true,padding:null,dragOnly:false,useShim:false,_domRef:null,__ygDragDrop:true,constrainX:false,constrainY:false,minX:0,maxX:0,minY:0,maxY:0,deltaX:0,deltaY:0,maintainOffset:false,xTicks:null,yTicks:null,primaryButtonOnly:true,available:false,hasOuterHandles:false,cursorIsOver:false,overlap:null,b4StartDrag:function(C,D){},startDrag:function(C,D){},b4Drag:function(C){},onDrag:function(C){},onDragEnter:function(C,D){},b4DragOver:function(C){},onDragOver:function(C,D){},b4DragOut:function(C){},onDragOut:function(C,D){},b4DragDrop:function(C){},onDragDrop:function(C,D){},onInvalidDrop:function(C){},b4EndDrag:function(C){},endDrag:function(C){},b4MouseDown:function(C){},onMouseDown:function(C){},onMouseUp:function(C){},onAvailable:function(){},getEl:function(){if(!this._domRef){this._domRef=B.get(this.id); }return this._domRef;},getDragEl:function(){return B.get(this.dragElId);},init:function(F,C,D){this.initTarget(F,C,D);A.on(this._domRef||this.id,"mousedown",this.handleMouseDown,this,true);for(var E in this.events){this.createEvent(E+"Event");}},initTarget:function(E,C,D){this.config=D||{};this.events={};this.DDM=YAHOO.util.DDM;this.groups={};if(typeof E!=="string"){this._domRef=E;E=B.generateId(E);}this.id=E;this.addToGroup((C)?C:"default");this.handleElId=E;A.onAvailable(E,this.handleOnAvailable,this,true);this.setDragElId(E);this.invalidHandleTypes={A:"A"};this.invalidHandleIds={};this.invalidHandleClasses=[];this.applyConfig();},applyConfig:function(){this.events={mouseDown:true,b4MouseDown:true,mouseUp:true,b4StartDrag:true,startDrag:true,b4EndDrag:true,endDrag:true,drag:true,b4Drag:true,invalidDrop:true,b4DragOut:true,dragOut:true,dragEnter:true,b4DragOver:true,dragOver:true,b4DragDrop:true,dragDrop:true};if(this.config.events){for(var C in this.config.events){if(this.config.events[C]===false){this.events[C]=false;}}}this.padding=this.config.padding||[0,0,0,0];this.isTarget=(this.config.isTarget!==false);this.maintainOffset=(this.config.maintainOffset);this.primaryButtonOnly=(this.config.primaryButtonOnly!==false);this.dragOnly=((this.config.dragOnly===true)?true:false);this.useShim=((this.config.useShim===true)?true:false);},handleOnAvailable:function(){this.available=true;this.resetConstraints();this.onAvailable();},setPadding:function(E,C,F,D){if(!C&&0!==C){this.padding=[E,E,E,E];}else{if(!F&&0!==F){this.padding=[E,C,E,C];}else{this.padding=[E,C,F,D];}}},setInitPosition:function(F,E){var G=this.getEl();if(!this.DDM.verifyEl(G)){if(G&&G.style&&(G.style.display=="none")){}else{}return;}var D=F||0;var C=E||0;var H=B.getXY(G);this.initPageX=H[0]-D;this.initPageY=H[1]-C;this.lastPageX=H[0];this.lastPageY=H[1];this.setStartPosition(H);},setStartPosition:function(D){var C=D||B.getXY(this.getEl());this.deltaSetXY=null;this.startPageX=C[0];this.startPageY=C[1];},addToGroup:function(C){this.groups[C]=true;this.DDM.regDragDrop(this,C);},removeFromGroup:function(C){if(this.groups[C]){delete this.groups[C];}this.DDM.removeDDFromGroup(this,C);},setDragElId:function(C){this.dragElId=C;},setHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.handleElId=C;this.DDM.regHandle(this.id,C);},setOuterHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}A.on(C,"mousedown",this.handleMouseDown,this,true);this.setHandleElId(C);this.hasOuterHandles=true;},unreg:function(){A.removeListener(this.id,"mousedown",this.handleMouseDown);this._domRef=null;this.DDM._remove(this);},isLocked:function(){return(this.DDM.isLocked()||this.locked);},handleMouseDown:function(J,I){var D=J.which||J.button;if(this.primaryButtonOnly&&D>1){return;}if(this.isLocked()){return;}var C=this.b4MouseDown(J),F=true;if(this.events.b4MouseDown){F=this.fireEvent("b4MouseDownEvent",J);}var E=this.onMouseDown(J),H=true;if(this.events.mouseDown){H=this.fireEvent("mouseDownEvent",J);}if((C===false)||(E===false)||(F===false)||(H===false)){return;}this.DDM.refreshCache(this.groups);var G=new YAHOO.util.Point(A.getPageX(J),A.getPageY(J));if(!this.hasOuterHandles&&!this.DDM.isOverTarget(G,this)){}else{if(this.clickValidator(J)){this.setStartPosition();this.DDM.handleMouseDown(J,this);this.DDM.stopEvent(J);}else{}}},clickValidator:function(D){var C=YAHOO.util.Event.getTarget(D);return(this.isValidHandleChild(C)&&(this.id==this.handleElId||this.DDM.handleWasClicked(C,this.id)));},getTargetCoord:function(E,D){var C=E-this.deltaX;var F=D-this.deltaY;if(this.constrainX){if(C<this.minX){C=this.minX;}if(C>this.maxX){C=this.maxX;}}if(this.constrainY){if(F<this.minY){F=this.minY;}if(F>this.maxY){F=this.maxY;}}C=this.getTick(C,this.xTicks);F=this.getTick(F,this.yTicks);return{x:C,y:F};},addInvalidHandleType:function(C){var D=C.toUpperCase();this.invalidHandleTypes[D]=D;},addInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.invalidHandleIds[C]=C;},addInvalidHandleClass:function(C){this.invalidHandleClasses.push(C);},removeInvalidHandleType:function(C){var D=C.toUpperCase();delete this.invalidHandleTypes[D];},removeInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}delete this.invalidHandleIds[C];},removeInvalidHandleClass:function(D){for(var E=0,C=this.invalidHandleClasses.length;E<C;++E){if(this.invalidHandleClasses[E]==D){delete this.invalidHandleClasses[E];}}},isValidHandleChild:function(F){var E=true;var H;try{H=F.nodeName.toUpperCase();}catch(G){H=F.nodeName;}E=E&&!this.invalidHandleTypes[H];E=E&&!this.invalidHandleIds[F.id];for(var D=0,C=this.invalidHandleClasses.length;E&&D<C;++D){E=!B.hasClass(F,this.invalidHandleClasses[D]);}return E;},setXTicks:function(F,C){this.xTicks=[];this.xTickSize=C;var E={};for(var D=this.initPageX;D>=this.minX;D=D-C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}for(D=this.initPageX;D<=this.maxX;D=D+C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}this.xTicks.sort(this.DDM.numericSort);},setYTicks:function(F,C){this.yTicks=[];this.yTickSize=C;var E={};for(var D=this.initPageY;D>=this.minY;D=D-C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}for(D=this.initPageY;D<=this.maxY;D=D+C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}this.yTicks.sort(this.DDM.numericSort);},setXConstraint:function(E,D,C){this.leftConstraint=parseInt(E,10);this.rightConstraint=parseInt(D,10);this.minX=this.initPageX-this.leftConstraint;this.maxX=this.initPageX+this.rightConstraint;if(C){this.setXTicks(this.initPageX,C);}this.constrainX=true;},clearConstraints:function(){this.constrainX=false;this.constrainY=false;this.clearTicks();},clearTicks:function(){this.xTicks=null;this.yTicks=null;this.xTickSize=0;this.yTickSize=0;},setYConstraint:function(C,E,D){this.topConstraint=parseInt(C,10);this.bottomConstraint=parseInt(E,10);this.minY=this.initPageY-this.topConstraint;this.maxY=this.initPageY+this.bottomConstraint;if(D){this.setYTicks(this.initPageY,D); }this.constrainY=true;},resetConstraints:function(){if(this.initPageX||this.initPageX===0){var D=(this.maintainOffset)?this.lastPageX-this.initPageX:0;var C=(this.maintainOffset)?this.lastPageY-this.initPageY:0;this.setInitPosition(D,C);}else{this.setInitPosition();}if(this.constrainX){this.setXConstraint(this.leftConstraint,this.rightConstraint,this.xTickSize);}if(this.constrainY){this.setYConstraint(this.topConstraint,this.bottomConstraint,this.yTickSize);}},getTick:function(I,F){if(!F){return I;}else{if(F[0]>=I){return F[0];}else{for(var D=0,C=F.length;D<C;++D){var E=D+1;if(F[E]&&F[E]>=I){var H=I-F[D];var G=F[E]-I;return(G>H)?F[D]:F[E];}}return F[F.length-1];}}},toString:function(){return("DragDrop "+this.id);}};YAHOO.augment(YAHOO.util.DragDrop,YAHOO.util.EventProvider);})();YAHOO.util.DD=function(C,A,B){if(C){this.init(C,A,B);}};YAHOO.extend(YAHOO.util.DD,YAHOO.util.DragDrop,{scroll:true,autoOffset:function(C,B){var A=C-this.startPageX;var D=B-this.startPageY;this.setDelta(A,D);},setDelta:function(B,A){this.deltaX=B;this.deltaY=A;},setDragElPos:function(C,B){var A=this.getDragEl();this.alignElWithMouse(A,C,B);},alignElWithMouse:function(C,G,F){var E=this.getTargetCoord(G,F);if(!this.deltaSetXY){var H=[E.x,E.y];YAHOO.util.Dom.setXY(C,H);var D=parseInt(YAHOO.util.Dom.getStyle(C,"left"),10);var B=parseInt(YAHOO.util.Dom.getStyle(C,"top"),10);this.deltaSetXY=[D-E.x,B-E.y];}else{YAHOO.util.Dom.setStyle(C,"left",(E.x+this.deltaSetXY[0])+"px");YAHOO.util.Dom.setStyle(C,"top",(E.y+this.deltaSetXY[1])+"px");}this.cachePosition(E.x,E.y);var A=this;setTimeout(function(){A.autoScroll.call(A,E.x,E.y,C.offsetHeight,C.offsetWidth);},0);},cachePosition:function(B,A){if(B){this.lastPageX=B;this.lastPageY=A;}else{var C=YAHOO.util.Dom.getXY(this.getEl());this.lastPageX=C[0];this.lastPageY=C[1];}},autoScroll:function(J,I,E,K){if(this.scroll){var L=this.DDM.getClientHeight();var B=this.DDM.getClientWidth();var N=this.DDM.getScrollTop();var D=this.DDM.getScrollLeft();var H=E+I;var M=K+J;var G=(L+N-I-this.deltaY);var F=(B+D-J-this.deltaX);var C=40;var A=(document.all)?80:30;if(H>L&&G<C){window.scrollTo(D,N+A);}if(I<N&&N>0&&I-N<C){window.scrollTo(D,N-A);}if(M>B&&F<C){window.scrollTo(D+A,N);}if(J<D&&D>0&&J-D<C){window.scrollTo(D-A,N);}}},applyConfig:function(){YAHOO.util.DD.superclass.applyConfig.call(this);this.scroll=(this.config.scroll!==false);},b4MouseDown:function(A){this.setStartPosition();this.autoOffset(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},b4Drag:function(A){this.setDragElPos(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},toString:function(){return("DD "+this.id);}});YAHOO.util.DDProxy=function(C,A,B){if(C){this.init(C,A,B);this.initFrame();}};YAHOO.util.DDProxy.dragElId="ygddfdiv";YAHOO.extend(YAHOO.util.DDProxy,YAHOO.util.DD,{resizeFrame:true,centerFrame:false,createFrame:function(){var B=this,A=document.body;if(!A||!A.firstChild){setTimeout(function(){B.createFrame();},50);return;}var F=this.getDragEl(),E=YAHOO.util.Dom;if(!F){F=document.createElement("div");F.id=this.dragElId;var D=F.style;D.position="absolute";D.visibility="hidden";D.cursor="move";D.border="2px solid #aaa";D.zIndex=999;D.height="25px";D.width="25px";var C=document.createElement("div");E.setStyle(C,"height","100%");E.setStyle(C,"width","100%");E.setStyle(C,"background-color","#ccc");E.setStyle(C,"opacity","0");F.appendChild(C);A.insertBefore(F,A.firstChild);}},initFrame:function(){this.createFrame();},applyConfig:function(){YAHOO.util.DDProxy.superclass.applyConfig.call(this);this.resizeFrame=(this.config.resizeFrame!==false);this.centerFrame=(this.config.centerFrame);this.setDragElId(this.config.dragElId||YAHOO.util.DDProxy.dragElId);},showFrame:function(E,D){var C=this.getEl();var A=this.getDragEl();var B=A.style;this._resizeProxy();if(this.centerFrame){this.setDelta(Math.round(parseInt(B.width,10)/2),Math.round(parseInt(B.height,10)/2));}this.setDragElPos(E,D);YAHOO.util.Dom.setStyle(A,"visibility","visible");},_resizeProxy:function(){if(this.resizeFrame){var H=YAHOO.util.Dom;var B=this.getEl();var C=this.getDragEl();var G=parseInt(H.getStyle(C,"borderTopWidth"),10);var I=parseInt(H.getStyle(C,"borderRightWidth"),10);var F=parseInt(H.getStyle(C,"borderBottomWidth"),10);var D=parseInt(H.getStyle(C,"borderLeftWidth"),10);if(isNaN(G)){G=0;}if(isNaN(I)){I=0;}if(isNaN(F)){F=0;}if(isNaN(D)){D=0;}var E=Math.max(0,B.offsetWidth-I-D);var A=Math.max(0,B.offsetHeight-G-F);H.setStyle(C,"width",E+"px");H.setStyle(C,"height",A+"px");}},b4MouseDown:function(B){this.setStartPosition();var A=YAHOO.util.Event.getPageX(B);var C=YAHOO.util.Event.getPageY(B);this.autoOffset(A,C);},b4StartDrag:function(A,B){this.showFrame(A,B);},b4EndDrag:function(A){YAHOO.util.Dom.setStyle(this.getDragEl(),"visibility","hidden");},endDrag:function(D){var C=YAHOO.util.Dom;var B=this.getEl();var A=this.getDragEl();C.setStyle(A,"visibility","");C.setStyle(B,"visibility","hidden");YAHOO.util.DDM.moveToEl(B,A);C.setStyle(A,"visibility","hidden");C.setStyle(B,"visibility","");},toString:function(){return("DDProxy "+this.id);}});YAHOO.util.DDTarget=function(C,A,B){if(C){this.initTarget(C,A,B);}};YAHOO.extend(YAHOO.util.DDTarget,YAHOO.util.DragDrop,{toString:function(){return("DDTarget "+this.id);}});YAHOO.register("dragdrop",YAHOO.util.DragDropMgr,{version:"2.7.0",build:"1796"});/* Copyright (c) 2009, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt version: 2.7.0 */ (function(){var B=YAHOO.util.Dom.getXY,A=YAHOO.util.Event,D=Array.prototype.slice;function C(G,E,F,H){C.ANIM_AVAIL=(!YAHOO.lang.isUndefined(YAHOO.util.Anim));if(G){this.init(G,E,true);this.initSlider(H);this.initThumb(F);}}YAHOO.lang.augmentObject(C,{getHorizSlider:function(F,G,I,H,E){return new C(F,F,new YAHOO.widget.SliderThumb(G,F,I,H,0,0,E),"horiz");},getVertSlider:function(G,H,E,I,F){return new C(G,G,new YAHOO.widget.SliderThumb(H,G,0,0,E,I,F),"vert");},getSliderRegion:function(G,H,J,I,E,K,F){return new C(G,G,new YAHOO.widget.SliderThumb(H,G,J,I,E,K,F),"region");},SOURCE_UI_EVENT:1,SOURCE_SET_VALUE:2,SOURCE_KEY_EVENT:3,ANIM_AVAIL:false},true);YAHOO.extend(C,YAHOO.util.DragDrop,{_mouseDown:false,dragOnly:true,initSlider:function(E){this.type=E;this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);this.isTarget=false;this.animate=C.ANIM_AVAIL;this.backgroundEnabled=true;this.tickPause=40;this.enableKeys=true;this.keyIncrement=20;this.moveComplete=true;this.animationDuration=0.2;this.SOURCE_UI_EVENT=1;this.SOURCE_SET_VALUE=2;this.valueChangeSource=0;this._silent=false;this.lastOffset=[0,0];},initThumb:function(F){var E=this;this.thumb=F;F.cacheBetweenDrags=true;if(F._isHoriz&&F.xTicks&&F.xTicks.length){this.tickPause=Math.round(360/F.xTicks.length);}else{if(F.yTicks&&F.yTicks.length){this.tickPause=Math.round(360/F.yTicks.length);}}F.onAvailable=function(){return E.setStartSliderState();};F.onMouseDown=function(){E._mouseDown=true;return E.focus();};F.startDrag=function(){E._slideStart();};F.onDrag=function(){E.fireEvents(true);};F.onMouseUp=function(){E.thumbMouseUp();};},onAvailable:function(){this._bindKeyEvents();},_bindKeyEvents:function(){A.on(this.id,"keydown",this.handleKeyDown,this,true);A.on(this.id,"keypress",this.handleKeyPress,this,true);},handleKeyPress:function(F){if(this.enableKeys){var E=A.getCharCode(F);switch(E){case 37:case 38:case 39:case 40:case 36:case 35:A.preventDefault(F);break;default:}}},handleKeyDown:function(J){if(this.enableKeys){var G=A.getCharCode(J),F=this.thumb,H=this.getXValue(),E=this.getYValue(),I=true;switch(G){case 37:H-=this.keyIncrement;break;case 38:E-=this.keyIncrement;break;case 39:H+=this.keyIncrement;break;case 40:E+=this.keyIncrement;break;case 36:H=F.leftConstraint;E=F.topConstraint;break;case 35:H=F.rightConstraint;E=F.bottomConstraint;break;default:I=false;}if(I){if(F._isRegion){this._setRegionValue(C.SOURCE_KEY_EVENT,H,E,true);}else{this._setValue(C.SOURCE_KEY_EVENT,(F._isHoriz?H:E),true);}A.stopEvent(J);}}},setStartSliderState:function(){this.setThumbCenterPoint();this.baselinePos=B(this.getEl());this.thumb.startOffset=this.thumb.getOffsetFromParent(this.baselinePos);if(this.thumb._isRegion){if(this.deferredSetRegionValue){this._setRegionValue.apply(this,this.deferredSetRegionValue);this.deferredSetRegionValue=null;}else{this.setRegionValue(0,0,true,true,true);}}else{if(this.deferredSetValue){this._setValue.apply(this,this.deferredSetValue);this.deferredSetValue=null;}else{this.setValue(0,true,true,true);}}},setThumbCenterPoint:function(){var E=this.thumb.getEl();if(E){this.thumbCenterPoint={x:parseInt(E.offsetWidth/2,10),y:parseInt(E.offsetHeight/2,10)};}},lock:function(){this.thumb.lock();this.locked=true;},unlock:function(){this.thumb.unlock();this.locked=false;},thumbMouseUp:function(){this._mouseDown=false;if(!this.isLocked()&&!this.moveComplete){this.endMove();}},onMouseUp:function(){this._mouseDown=false;if(this.backgroundEnabled&&!this.isLocked()&&!this.moveComplete){this.endMove();}},getThumb:function(){return this.thumb;},focus:function(){this.valueChangeSource=C.SOURCE_UI_EVENT;var E=this.getEl();if(E.focus){try{E.focus();}catch(F){}}this.verifyOffset();return !this.isLocked();},onChange:function(E,F){},onSlideStart:function(){},onSlideEnd:function(){},getValue:function(){return this.thumb.getValue();},getXValue:function(){return this.thumb.getXValue();},getYValue:function(){return this.thumb.getYValue();},setValue:function(){var E=D.call(arguments);E.unshift(C.SOURCE_SET_VALUE);return this._setValue.apply(this,E);},_setValue:function(I,L,G,H,E){var F=this.thumb,K,J;if(!F.available){this.deferredSetValue=arguments;return false;}if(this.isLocked()&&!H){return false;}if(isNaN(L)){return false;}if(F._isRegion){return false;}this._silent=E;this.valueChangeSource=I||C.SOURCE_SET_VALUE;F.lastOffset=[L,L];this.verifyOffset(true);this._slideStart();if(F._isHoriz){K=F.initPageX+L+this.thumbCenterPoint.x;this.moveThumb(K,F.initPageY,G);}else{J=F.initPageY+L+this.thumbCenterPoint.y;this.moveThumb(F.initPageX,J,G);}return true;},setRegionValue:function(){var E=D.call(arguments);E.unshift(C.SOURCE_SET_VALUE);return this._setRegionValue.apply(this,E);},_setRegionValue:function(F,J,H,I,G,K){var L=this.thumb,E,M;if(!L.available){this.deferredSetRegionValue=arguments;return false;}if(this.isLocked()&&!G){return false;}if(isNaN(J)){return false;}if(!L._isRegion){return false;}this._silent=K;this.valueChangeSource=F||C.SOURCE_SET_VALUE;L.lastOffset=[J,H];this.verifyOffset(true);this._slideStart();E=L.initPageX+J+this.thumbCenterPoint.x;M=L.initPageY+H+this.thumbCenterPoint.y;this.moveThumb(E,M,I);return true;},verifyOffset:function(F){var G=B(this.getEl()),E=this.thumb;if(!this.thumbCenterPoint||!this.thumbCenterPoint.x){this.setThumbCenterPoint();}if(G){if(G[0]!=this.baselinePos[0]||G[1]!=this.baselinePos[1]){this.setInitPosition();this.baselinePos=G;E.initPageX=this.initPageX+E.startOffset[0];E.initPageY=this.initPageY+E.startOffset[1];E.deltaSetXY=null;this.resetThumbConstraints();return false;}}return true;},moveThumb:function(K,J,I,G){var L=this.thumb,M=this,F,E,H;if(!L.available){return;}L.setDelta(this.thumbCenterPoint.x,this.thumbCenterPoint.y);E=L.getTargetCoord(K,J);F=[Math.round(E.x),Math.round(E.y)];if(this.animate&&L._graduated&&!I){this.lock();this.curCoord=B(this.thumb.getEl());this.curCoord=[Math.round(this.curCoord[0]),Math.round(this.curCoord[1])];setTimeout(function(){M.moveOneTick(F); },this.tickPause);}else{if(this.animate&&C.ANIM_AVAIL&&!I){this.lock();H=new YAHOO.util.Motion(L.id,{points:{to:F}},this.animationDuration,YAHOO.util.Easing.easeOut);H.onComplete.subscribe(function(){M.unlock();if(!M._mouseDown){M.endMove();}});H.animate();}else{L.setDragElPos(K,J);if(!G&&!this._mouseDown){this.endMove();}}}},_slideStart:function(){if(!this._sliding){if(!this._silent){this.onSlideStart();this.fireEvent("slideStart");}this._sliding=true;}},_slideEnd:function(){if(this._sliding&&this.moveComplete){var E=this._silent;this._sliding=false;this._silent=false;this.moveComplete=false;if(!E){this.onSlideEnd();this.fireEvent("slideEnd");}}},moveOneTick:function(F){var H=this.thumb,G=this,I=null,E,J;if(H._isRegion){I=this._getNextX(this.curCoord,F);E=(I!==null)?I[0]:this.curCoord[0];I=this._getNextY(this.curCoord,F);J=(I!==null)?I[1]:this.curCoord[1];I=E!==this.curCoord[0]||J!==this.curCoord[1]?[E,J]:null;}else{if(H._isHoriz){I=this._getNextX(this.curCoord,F);}else{I=this._getNextY(this.curCoord,F);}}if(I){this.curCoord=I;this.thumb.alignElWithMouse(H.getEl(),I[0]+this.thumbCenterPoint.x,I[1]+this.thumbCenterPoint.y);if(!(I[0]==F[0]&&I[1]==F[1])){setTimeout(function(){G.moveOneTick(F);},this.tickPause);}else{this.unlock();if(!this._mouseDown){this.endMove();}}}else{this.unlock();if(!this._mouseDown){this.endMove();}}},_getNextX:function(E,F){var H=this.thumb,J,G=[],I=null;if(E[0]>F[0]){J=H.tickSize-this.thumbCenterPoint.x;G=H.getTargetCoord(E[0]-J,E[1]);I=[G.x,G.y];}else{if(E[0]<F[0]){J=H.tickSize+this.thumbCenterPoint.x;G=H.getTargetCoord(E[0]+J,E[1]);I=[G.x,G.y];}else{}}return I;},_getNextY:function(E,F){var H=this.thumb,J,G=[],I=null;if(E[1]>F[1]){J=H.tickSize-this.thumbCenterPoint.y;G=H.getTargetCoord(E[0],E[1]-J);I=[G.x,G.y];}else{if(E[1]<F[1]){J=H.tickSize+this.thumbCenterPoint.y;G=H.getTargetCoord(E[0],E[1]+J);I=[G.x,G.y];}else{}}return I;},b4MouseDown:function(E){if(!this.backgroundEnabled){return false;}this.thumb.autoOffset();this.resetThumbConstraints();},onMouseDown:function(F){if(!this.backgroundEnabled||this.isLocked()){return false;}this._mouseDown=true;var E=A.getPageX(F),G=A.getPageY(F);this.focus();this._slideStart();this.moveThumb(E,G);},onDrag:function(F){if(this.backgroundEnabled&&!this.isLocked()){var E=A.getPageX(F),G=A.getPageY(F);this.moveThumb(E,G,true,true);this.fireEvents();}},endMove:function(){this.unlock();this.fireEvents();this.moveComplete=true;this._slideEnd();},resetThumbConstraints:function(){var E=this.thumb;E.setXConstraint(E.leftConstraint,E.rightConstraint,E.xTickSize);E.setYConstraint(E.topConstraint,E.bottomConstraint,E.xTickSize);},fireEvents:function(G){var F=this.thumb,I,H,E;if(!G){F.cachePosition();}if(!this.isLocked()){if(F._isRegion){I=F.getXValue();H=F.getYValue();if(I!=this.previousX||H!=this.previousY){if(!this._silent){this.onChange(I,H);this.fireEvent("change",{x:I,y:H});}}this.previousX=I;this.previousY=H;}else{E=F.getValue();if(E!=this.previousVal){if(!this._silent){this.onChange(E);this.fireEvent("change",E);}}this.previousVal=E;}}},toString:function(){return("Slider ("+this.type+") "+this.id);}});YAHOO.lang.augmentProto(C,YAHOO.util.EventProvider);YAHOO.widget.Slider=C;})();YAHOO.widget.SliderThumb=function(G,B,E,D,A,F,C){if(G){YAHOO.widget.SliderThumb.superclass.constructor.call(this,G,B);this.parentElId=B;}this.isTarget=false;this.tickSize=C;this.maintainOffset=true;this.initSlider(E,D,A,F,C);this.scroll=false;};YAHOO.extend(YAHOO.widget.SliderThumb,YAHOO.util.DD,{startOffset:null,dragOnly:true,_isHoriz:false,_prevVal:0,_graduated:false,getOffsetFromParent0:function(C){var A=YAHOO.util.Dom.getXY(this.getEl()),B=C||YAHOO.util.Dom.getXY(this.parentElId);return[(A[0]-B[0]),(A[1]-B[1])];},getOffsetFromParent:function(H){var A=this.getEl(),E,I,F,B,K,D,C,J,G;if(!this.deltaOffset){I=YAHOO.util.Dom.getXY(A);F=H||YAHOO.util.Dom.getXY(this.parentElId);E=[(I[0]-F[0]),(I[1]-F[1])];B=parseInt(YAHOO.util.Dom.getStyle(A,"left"),10);K=parseInt(YAHOO.util.Dom.getStyle(A,"top"),10);D=B-E[0];C=K-E[1];if(isNaN(D)||isNaN(C)){}else{this.deltaOffset=[D,C];}}else{J=parseInt(YAHOO.util.Dom.getStyle(A,"left"),10);G=parseInt(YAHOO.util.Dom.getStyle(A,"top"),10);E=[J+this.deltaOffset[0],G+this.deltaOffset[1]];}return E;},initSlider:function(D,C,A,E,B){this.initLeft=D;this.initRight=C;this.initUp=A;this.initDown=E;this.setXConstraint(D,C,B);this.setYConstraint(A,E,B);if(B&&B>1){this._graduated=true;}this._isHoriz=(D||C);this._isVert=(A||E);this._isRegion=(this._isHoriz&&this._isVert);},clearTicks:function(){YAHOO.widget.SliderThumb.superclass.clearTicks.call(this);this.tickSize=0;this._graduated=false;},getValue:function(){return(this._isHoriz)?this.getXValue():this.getYValue();},getXValue:function(){if(!this.available){return 0;}var A=this.getOffsetFromParent();if(YAHOO.lang.isNumber(A[0])){this.lastOffset=A;return(A[0]-this.startOffset[0]);}else{return(this.lastOffset[0]-this.startOffset[0]);}},getYValue:function(){if(!this.available){return 0;}var A=this.getOffsetFromParent();if(YAHOO.lang.isNumber(A[1])){this.lastOffset=A;return(A[1]-this.startOffset[1]);}else{return(this.lastOffset[1]-this.startOffset[1]);}},toString:function(){return"SliderThumb "+this.id;},onChange:function(A,B){}});(function(){var A=YAHOO.util.Event,B=YAHOO.widget;function C(I,F,H,D){var G=this,J={min:false,max:false},E,K;this.minSlider=I;this.maxSlider=F;this.activeSlider=I;this.isHoriz=I.thumb._isHoriz;E=this.minSlider.thumb.onMouseDown;K=this.maxSlider.thumb.onMouseDown;this.minSlider.thumb.onMouseDown=function(){G.activeSlider=G.minSlider;E.apply(this,arguments);};this.maxSlider.thumb.onMouseDown=function(){G.activeSlider=G.maxSlider;K.apply(this,arguments);};this.minSlider.thumb.onAvailable=function(){I.setStartSliderState();J.min=true;if(J.max){G.fireEvent("ready",G);}};this.maxSlider.thumb.onAvailable=function(){F.setStartSliderState();J.max=true;if(J.min){G.fireEvent("ready",G);}};I.onMouseDown=F.onMouseDown=function(L){return this.backgroundEnabled&&G._handleMouseDown(L); };I.onDrag=F.onDrag=function(L){G._handleDrag(L);};I.onMouseUp=F.onMouseUp=function(L){G._handleMouseUp(L);};I._bindKeyEvents=function(){G._bindKeyEvents(this);};F._bindKeyEvents=function(){};I.subscribe("change",this._handleMinChange,I,this);I.subscribe("slideStart",this._handleSlideStart,I,this);I.subscribe("slideEnd",this._handleSlideEnd,I,this);F.subscribe("change",this._handleMaxChange,F,this);F.subscribe("slideStart",this._handleSlideStart,F,this);F.subscribe("slideEnd",this._handleSlideEnd,F,this);this.createEvent("ready",this);this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);D=YAHOO.lang.isArray(D)?D:[0,H];D[0]=Math.min(Math.max(parseInt(D[0],10)|0,0),H);D[1]=Math.max(Math.min(parseInt(D[1],10)|0,H),0);if(D[0]>D[1]){D.splice(0,2,D[1],D[0]);}this.minVal=D[0];this.maxVal=D[1];this.minSlider.setValue(this.minVal,true,true,true);this.maxSlider.setValue(this.maxVal,true,true,true);}C.prototype={minVal:-1,maxVal:-1,minRange:0,_handleSlideStart:function(E,D){this.fireEvent("slideStart",D);},_handleSlideEnd:function(E,D){this.fireEvent("slideEnd",D);},_handleDrag:function(D){B.Slider.prototype.onDrag.call(this.activeSlider,D);},_handleMinChange:function(){this.activeSlider=this.minSlider;this.updateValue();},_handleMaxChange:function(){this.activeSlider=this.maxSlider;this.updateValue();},_bindKeyEvents:function(D){A.on(D.id,"keydown",this._handleKeyDown,this,true);A.on(D.id,"keypress",this._handleKeyPress,this,true);},_handleKeyDown:function(D){this.activeSlider.handleKeyDown.apply(this.activeSlider,arguments);},_handleKeyPress:function(D){this.activeSlider.handleKeyPress.apply(this.activeSlider,arguments);},setValues:function(H,K,I,E,J){var F=this.minSlider,M=this.maxSlider,D=F.thumb,L=M.thumb,N=this,G={min:false,max:false};if(D._isHoriz){D.setXConstraint(D.leftConstraint,L.rightConstraint,D.tickSize);L.setXConstraint(D.leftConstraint,L.rightConstraint,L.tickSize);}else{D.setYConstraint(D.topConstraint,L.bottomConstraint,D.tickSize);L.setYConstraint(D.topConstraint,L.bottomConstraint,L.tickSize);}this._oneTimeCallback(F,"slideEnd",function(){G.min=true;if(G.max){N.updateValue(J);setTimeout(function(){N._cleanEvent(F,"slideEnd");N._cleanEvent(M,"slideEnd");},0);}});this._oneTimeCallback(M,"slideEnd",function(){G.max=true;if(G.min){N.updateValue(J);setTimeout(function(){N._cleanEvent(F,"slideEnd");N._cleanEvent(M,"slideEnd");},0);}});F.setValue(H,I,E,false);M.setValue(K,I,E,false);},setMinValue:function(F,H,I,E){var G=this.minSlider,D=this;this.activeSlider=G;D=this;this._oneTimeCallback(G,"slideEnd",function(){D.updateValue(E);setTimeout(function(){D._cleanEvent(G,"slideEnd");},0);});G.setValue(F,H,I);},setMaxValue:function(D,H,I,F){var G=this.maxSlider,E=this;this.activeSlider=G;this._oneTimeCallback(G,"slideEnd",function(){E.updateValue(F);setTimeout(function(){E._cleanEvent(G,"slideEnd");},0);});G.setValue(D,H,I);},updateValue:function(J){var E=this.minSlider.getValue(),K=this.maxSlider.getValue(),F=false,D,M,H,I,L,G;if(E!=this.minVal||K!=this.maxVal){F=true;D=this.minSlider.thumb;M=this.maxSlider.thumb;H=this.isHoriz?"x":"y";G=this.minSlider.thumbCenterPoint[H]+this.maxSlider.thumbCenterPoint[H];I=Math.max(K-G-this.minRange,0);L=Math.min(-E-G-this.minRange,0);if(this.isHoriz){I=Math.min(I,M.rightConstraint);D.setXConstraint(D.leftConstraint,I,D.tickSize);M.setXConstraint(L,M.rightConstraint,M.tickSize);}else{I=Math.min(I,M.bottomConstraint);D.setYConstraint(D.leftConstraint,I,D.tickSize);M.setYConstraint(L,M.bottomConstraint,M.tickSize);}}this.minVal=E;this.maxVal=K;if(F&&!J){this.fireEvent("change",this);}},selectActiveSlider:function(H){var E=this.minSlider,D=this.maxSlider,J=E.isLocked()||!E.backgroundEnabled,G=D.isLocked()||!E.backgroundEnabled,F=YAHOO.util.Event,I;if(J||G){this.activeSlider=J?D:E;}else{if(this.isHoriz){I=F.getPageX(H)-E.thumb.initPageX-E.thumbCenterPoint.x;}else{I=F.getPageY(H)-E.thumb.initPageY-E.thumbCenterPoint.y;}this.activeSlider=I*2>D.getValue()+E.getValue()?D:E;}},_handleMouseDown:function(D){if(!D._handled){D._handled=true;this.selectActiveSlider(D);return B.Slider.prototype.onMouseDown.call(this.activeSlider,D);}else{return false;}},_handleMouseUp:function(D){B.Slider.prototype.onMouseUp.apply(this.activeSlider,arguments);},_oneTimeCallback:function(F,D,E){F.subscribe(D,function(){F.unsubscribe(D,arguments.callee);E.apply({},[].slice.apply(arguments));});},_cleanEvent:function(K,E){var J,I,D,G,H,F;if(K.__yui_events&&K.events[E]){for(I=K.__yui_events.length;I>=0;--I){if(K.__yui_events[I].type===E){J=K.__yui_events[I];break;}}if(J){H=J.subscribers;F=[];G=0;for(I=0,D=H.length;I<D;++I){if(H[I]){F[G++]=H[I];}}J.subscribers=F;}}}};YAHOO.lang.augmentProto(C,YAHOO.util.EventProvider);B.Slider.getHorizDualSlider=function(H,J,K,G,F,D){var I=new B.SliderThumb(J,H,0,G,0,0,F),E=new B.SliderThumb(K,H,0,G,0,0,F);return new C(new B.Slider(H,H,I,"horiz"),new B.Slider(H,H,E,"horiz"),G,D);};B.Slider.getVertDualSlider=function(H,J,K,G,F,D){var I=new B.SliderThumb(J,H,0,0,0,G,F),E=new B.SliderThumb(K,H,0,0,0,G,F);return new B.DualSlider(new B.Slider(H,H,I,"vert"),new B.Slider(H,H,E,"vert"),G,D);};YAHOO.widget.DualSlider=C;})();YAHOO.register("slider",YAHOO.widget.Slider,{version:"2.7.0",build:"1796"});/* Copyright (c) 2009, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt version: 2.7.0 */ YAHOO.util.Attribute=function(B,A){if(A){this.owner=A;this.configure(B,true);}};YAHOO.util.Attribute.prototype={name:undefined,value:null,owner:null,readOnly:false,writeOnce:false,_initialConfig:null,_written:false,method:null,setter:null,getter:null,validator:null,getValue:function(){var A=this.value;if(this.getter){A=this.getter.call(this.owner,this.name);}return A;},setValue:function(F,B){var E,A=this.owner,C=this.name;var D={type:C,prevValue:this.getValue(),newValue:F};if(this.readOnly||(this.writeOnce&&this._written)){return false;}if(this.validator&&!this.validator.call(A,F)){return false;}if(!B){E=A.fireBeforeChangeEvent(D);if(E===false){return false;}}if(this.setter){F=this.setter.call(A,F,this.name);if(F===undefined){}}if(this.method){this.method.call(A,F,this.name);}this.value=F;this._written=true;D.type=C;if(!B){this.owner.fireChangeEvent(D);}return true;},configure:function(B,C){B=B||{};if(C){this._written=false;}this._initialConfig=this._initialConfig||{};for(var A in B){if(B.hasOwnProperty(A)){this[A]=B[A];if(C){this._initialConfig[A]=B[A];}}}},resetValue:function(){return this.setValue(this._initialConfig.value);},resetConfig:function(){this.configure(this._initialConfig,true);},refresh:function(A){this.setValue(this.value,A);}};(function(){var A=YAHOO.util.Lang;YAHOO.util.AttributeProvider=function(){};YAHOO.util.AttributeProvider.prototype={_configs:null,get:function(C){this._configs=this._configs||{};var B=this._configs[C];if(!B||!this._configs.hasOwnProperty(C)){return null;}return B.getValue();},set:function(D,E,B){this._configs=this._configs||{};var C=this._configs[D];if(!C){return false;}return C.setValue(E,B);},getAttributeKeys:function(){this._configs=this._configs;var C=[],B;for(B in this._configs){if(A.hasOwnProperty(this._configs,B)&&!A.isUndefined(this._configs[B])){C[C.length]=B;}}return C;},setAttributes:function(D,B){for(var C in D){if(A.hasOwnProperty(D,C)){this.set(C,D[C],B);}}},resetValue:function(C,B){this._configs=this._configs||{};if(this._configs[C]){this.set(C,this._configs[C]._initialConfig.value,B);return true;}return false;},refresh:function(E,C){this._configs=this._configs||{};var F=this._configs;E=((A.isString(E))?[E]:E)||this.getAttributeKeys();for(var D=0,B=E.length;D<B;++D){if(F.hasOwnProperty(E[D])){this._configs[E[D]].refresh(C);}}},register:function(B,C){this.setAttributeConfig(B,C);},getAttributeConfig:function(C){this._configs=this._configs||{};var B=this._configs[C]||{};var D={};for(C in B){if(A.hasOwnProperty(B,C)){D[C]=B[C];}}return D;},setAttributeConfig:function(B,C,D){this._configs=this._configs||{};C=C||{};if(!this._configs[B]){C.name=B;this._configs[B]=this.createAttribute(C);}else{this._configs[B].configure(C,D);}},configureAttribute:function(B,C,D){this.setAttributeConfig(B,C,D);},resetAttributeConfig:function(B){this._configs=this._configs||{};this._configs[B].resetConfig();},subscribe:function(B,C){this._events=this._events||{};if(!(B in this._events)){this._events[B]=this.createEvent(B);}YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){this.subscribe.apply(this,arguments);},addListener:function(){this.subscribe.apply(this,arguments);},fireBeforeChangeEvent:function(C){var B="before";B+=C.type.charAt(0).toUpperCase()+C.type.substr(1)+"Change";C.type=B;return this.fireEvent(C.type,C);},fireChangeEvent:function(B){B.type+="Change";return this.fireEvent(B.type,B);},createAttribute:function(B){return new YAHOO.util.Attribute(B,this);}};YAHOO.augment(YAHOO.util.AttributeProvider,YAHOO.util.EventProvider);})();(function(){var B=YAHOO.util.Dom,C=YAHOO.util.AttributeProvider;var A=function(D,E){this.init.apply(this,arguments);};A.DOM_EVENTS={"click":true,"dblclick":true,"keydown":true,"keypress":true,"keyup":true,"mousedown":true,"mousemove":true,"mouseout":true,"mouseover":true,"mouseup":true,"focus":true,"blur":true,"submit":true,"change":true};A.prototype={DOM_EVENTS:null,DEFAULT_HTML_SETTER:function(F,D){var E=this.get("element");if(E){E[D]=F;}},DEFAULT_HTML_GETTER:function(D){var E=this.get("element"),F;if(E){F=E[D];}return F;},appendChild:function(D){D=D.get?D.get("element"):D;return this.get("element").appendChild(D);},getElementsByTagName:function(D){return this.get("element").getElementsByTagName(D);},hasChildNodes:function(){return this.get("element").hasChildNodes();},insertBefore:function(D,E){D=D.get?D.get("element"):D;E=(E&&E.get)?E.get("element"):E;return this.get("element").insertBefore(D,E);},removeChild:function(D){D=D.get?D.get("element"):D;return this.get("element").removeChild(D);},replaceChild:function(D,E){D=D.get?D.get("element"):D;E=E.get?E.get("element"):E;return this.get("element").replaceChild(D,E);},initAttributes:function(D){},addListener:function(H,G,I,F){var E=this.get("element")||this.get("id");F=F||this;var D=this;if(!this._events[H]){if(E&&this.DOM_EVENTS[H]){YAHOO.util.Event.addListener(E,H,function(J){if(J.srcElement&&!J.target){J.target=J.srcElement;}D.fireEvent(H,J);},I,F);}this.createEvent(H,this);}return YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){return this.addListener.apply(this,arguments);},subscribe:function(){return this.addListener.apply(this,arguments);},removeListener:function(E,D){return this.unsubscribe.apply(this,arguments);},addClass:function(D){B.addClass(this.get("element"),D);},getElementsByClassName:function(E,D){return B.getElementsByClassName(E,D,this.get("element"));},hasClass:function(D){return B.hasClass(this.get("element"),D);},removeClass:function(D){return B.removeClass(this.get("element"),D);},replaceClass:function(E,D){return B.replaceClass(this.get("element"),E,D);},setStyle:function(E,D){return B.setStyle(this.get("element"),E,D);},getStyle:function(D){return B.getStyle(this.get("element"),D);},fireQueue:function(){var E=this._queue;for(var F=0,D=E.length;F<D;++F){this[E[F][0]].apply(this,E[F][1]);}},appendTo:function(E,F){E=(E.get)?E.get("element"):B.get(E);this.fireEvent("beforeAppendTo",{type:"beforeAppendTo",target:E}); F=(F&&F.get)?F.get("element"):B.get(F);var D=this.get("element");if(!D){return false;}if(!E){return false;}if(D.parent!=E){if(F){E.insertBefore(D,F);}else{E.appendChild(D);}}this.fireEvent("appendTo",{type:"appendTo",target:E});return D;},get:function(D){var F=this._configs||{},E=F.element;if(E&&!F[D]&&!YAHOO.lang.isUndefined(E.value[D])){this._setHTMLAttrConfig(D);}return C.prototype.get.call(this,D);},setAttributes:function(J,G){var E={},H=this._configOrder;for(var I=0,D=H.length;I<D;++I){if(J[H[I]]!==undefined){E[H[I]]=true;this.set(H[I],J[H[I]],G);}}for(var F in J){if(J.hasOwnProperty(F)&&!E[F]){this.set(F,J[F],G);}}},set:function(E,G,D){var F=this.get("element");if(!F){this._queue[this._queue.length]=["set",arguments];if(this._configs[E]){this._configs[E].value=G;}return;}if(!this._configs[E]&&!YAHOO.lang.isUndefined(F[E])){this._setHTMLAttrConfig(E);}return C.prototype.set.apply(this,arguments);},setAttributeConfig:function(D,E,F){this._configOrder.push(D);C.prototype.setAttributeConfig.apply(this,arguments);},createEvent:function(E,D){this._events[E]=true;return C.prototype.createEvent.apply(this,arguments);},init:function(E,D){this._initElement(E,D);},destroy:function(){var D=this.get("element");YAHOO.util.Event.purgeElement(D,true);this.unsubscribeAll();if(D&&D.parentNode){D.parentNode.removeChild(D);}this._queue=[];this._events={};this._configs={};this._configOrder=[];},_initElement:function(F,E){this._queue=this._queue||[];this._events=this._events||{};this._configs=this._configs||{};this._configOrder=[];E=E||{};E.element=E.element||F||null;var H=false;var D=A.DOM_EVENTS;this.DOM_EVENTS=this.DOM_EVENTS||{};for(var G in D){if(D.hasOwnProperty(G)){this.DOM_EVENTS[G]=D[G];}}if(typeof E.element==="string"){this._setHTMLAttrConfig("id",{value:E.element});}if(B.get(E.element)){H=true;this._initHTMLElement(E);this._initContent(E);}YAHOO.util.Event.onAvailable(E.element,function(){if(!H){this._initHTMLElement(E);}this.fireEvent("available",{type:"available",target:B.get(E.element)});},this,true);YAHOO.util.Event.onContentReady(E.element,function(){if(!H){this._initContent(E);}this.fireEvent("contentReady",{type:"contentReady",target:B.get(E.element)});},this,true);},_initHTMLElement:function(D){this.setAttributeConfig("element",{value:B.get(D.element),readOnly:true});},_initContent:function(D){this.initAttributes(D);this.setAttributes(D,true);this.fireQueue();},_setHTMLAttrConfig:function(D,F){var E=this.get("element");F=F||{};F.name=D;F.setter=F.setter||this.DEFAULT_HTML_SETTER;F.getter=F.getter||this.DEFAULT_HTML_GETTER;F.value=F.value||E[D];this._configs[D]=new YAHOO.util.Attribute(F,this);}};YAHOO.augment(A,C);YAHOO.util.Element=A;})();YAHOO.register("element",YAHOO.util.Element,{version:"2.7.0",build:"1796"});/* Copyright (c) 2009, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt version: 2.7.0 */ YAHOO.util.Color=function(){var A="0",B=YAHOO.lang.isArray,C=YAHOO.lang.isNumber;return{real2dec:function(D){return Math.min(255,Math.round(D*256));},hsv2rgb:function(H,O,M){if(B(H)){return this.hsv2rgb.call(this,H[0],H[1],H[2]);}var D,I,L,G=Math.floor((H/60)%6),J=(H/60)-G,F=M*(1-O),E=M*(1-J*O),N=M*(1-(1-J)*O),K;switch(G){case 0:D=M;I=N;L=F;break;case 1:D=E;I=M;L=F;break;case 2:D=F;I=M;L=N;break;case 3:D=F;I=E;L=M;break;case 4:D=N;I=F;L=M;break;case 5:D=M;I=F;L=E;break;}K=this.real2dec;return[K(D),K(I),K(L)];},rgb2hsv:function(D,H,I){if(B(D)){return this.rgb2hsv.apply(this,D);}D/=255;H/=255;I/=255;var G,L,E=Math.min(Math.min(D,H),I),J=Math.max(Math.max(D,H),I),K=J-E,F;switch(J){case E:G=0;break;case D:G=60*(H-I)/K;if(H<I){G+=360;}break;case H:G=(60*(I-D)/K)+120;break;case I:G=(60*(D-H)/K)+240;break;}L=(J===0)?0:1-(E/J);F=[Math.round(G),L,J];return F;},rgb2hex:function(F,E,D){if(B(F)){return this.rgb2hex.apply(this,F);}var G=this.dec2hex;return G(F)+G(E)+G(D);},dec2hex:function(D){D=parseInt(D,10)|0;D=(D>255||D<0)?0:D;return(A+D.toString(16)).slice(-2).toUpperCase();},hex2dec:function(D){return parseInt(D,16);},hex2rgb:function(D){var E=this.hex2dec;return[E(D.slice(0,2)),E(D.slice(2,4)),E(D.slice(4,6))];},websafe:function(F,E,D){if(B(F)){return this.websafe.apply(this,F);}var G=function(H){if(C(H)){H=Math.min(Math.max(0,H),255);var I,J;for(I=0;I<256;I=I+51){J=I+51;if(H>=I&&H<=J){return(H-I>25)?J:I;}}}return H;};return[G(F),G(E),G(D)];}};}();(function(){var J=0,F=YAHOO.util,C=YAHOO.lang,D=YAHOO.widget.Slider,B=F.Color,E=F.Dom,I=F.Event,A=C.substitute,H="yui-picker";function G(L,K){J=J+1;K=K||{};if(arguments.length===1&&!YAHOO.lang.isString(L)&&!L.nodeName){K=L;L=K.element||null;}if(!L&&!K.element){L=this._createHostElement(K);}G.superclass.constructor.call(this,L,K);this.initPicker();}YAHOO.extend(G,YAHOO.util.Element,{ID:{R:H+"-r",R_HEX:H+"-rhex",G:H+"-g",G_HEX:H+"-ghex",B:H+"-b",B_HEX:H+"-bhex",H:H+"-h",S:H+"-s",V:H+"-v",PICKER_BG:H+"-bg",PICKER_THUMB:H+"-thumb",HUE_BG:H+"-hue-bg",HUE_THUMB:H+"-hue-thumb",HEX:H+"-hex",SWATCH:H+"-swatch",WEBSAFE_SWATCH:H+"-websafe-swatch",CONTROLS:H+"-controls",RGB_CONTROLS:H+"-rgb-controls",HSV_CONTROLS:H+"-hsv-controls",HEX_CONTROLS:H+"-hex-controls",HEX_SUMMARY:H+"-hex-summary",CONTROLS_LABEL:H+"-controls-label"},TXT:{ILLEGAL_HEX:"Illegal hex value entered",SHOW_CONTROLS:"Show color details",HIDE_CONTROLS:"Hide color details",CURRENT_COLOR:"Currently selected color: {rgb}",CLOSEST_WEBSAFE:"Closest websafe color: {rgb}. Click to select.",R:"R",G:"G",B:"B",H:"H",S:"S",V:"V",HEX:"#",DEG:"\u00B0",PERCENT:"%"},IMAGE:{PICKER_THUMB:"../../build/colorpicker/assets/picker_thumb.png",HUE_THUMB:"../../build/colorpicker/assets/hue_thumb.png"},DEFAULT:{PICKER_SIZE:180},OPT:{HUE:"hue",SATURATION:"saturation",VALUE:"value",RED:"red",GREEN:"green",BLUE:"blue",HSV:"hsv",RGB:"rgb",WEBSAFE:"websafe",HEX:"hex",PICKER_SIZE:"pickersize",SHOW_CONTROLS:"showcontrols",SHOW_RGB_CONTROLS:"showrgbcontrols",SHOW_HSV_CONTROLS:"showhsvcontrols",SHOW_HEX_CONTROLS:"showhexcontrols",SHOW_HEX_SUMMARY:"showhexsummary",SHOW_WEBSAFE:"showwebsafe",CONTAINER:"container",IDS:"ids",ELEMENTS:"elements",TXT:"txt",IMAGES:"images",ANIMATE:"animate"},skipAnim:true,_createHostElement:function(){var K=document.createElement("div");if(this.CSS.BASE){K.className=this.CSS.BASE;}return K;},_updateHueSlider:function(){var K=this.get(this.OPT.PICKER_SIZE),L=this.get(this.OPT.HUE);L=K-Math.round(L/360*K);if(L===K){L=0;}this.hueSlider.setValue(L,this.skipAnim);},_updatePickerSlider:function(){var L=this.get(this.OPT.PICKER_SIZE),M=this.get(this.OPT.SATURATION),K=this.get(this.OPT.VALUE);M=Math.round(M*L/100);K=Math.round(L-(K*L/100));this.pickerSlider.setRegionValue(M,K,this.skipAnim);},_updateSliders:function(){this._updateHueSlider();this._updatePickerSlider();},setValue:function(L,K){K=(K)||false;this.set(this.OPT.RGB,L,K);this._updateSliders();},hueSlider:null,pickerSlider:null,_getH:function(){var K=this.get(this.OPT.PICKER_SIZE),L=(K-this.hueSlider.getValue())/K;L=Math.round(L*360);return(L===360)?0:L;},_getS:function(){return this.pickerSlider.getXValue()/this.get(this.OPT.PICKER_SIZE);},_getV:function(){var K=this.get(this.OPT.PICKER_SIZE);return(K-this.pickerSlider.getYValue())/K;},_updateSwatch:function(){var M=this.get(this.OPT.RGB),O=this.get(this.OPT.WEBSAFE),N=this.getElement(this.ID.SWATCH),L=M.join(","),K=this.get(this.OPT.TXT);E.setStyle(N,"background-color","rgb("+L+")");N.title=A(K.CURRENT_COLOR,{"rgb":"#"+this.get(this.OPT.HEX)});N=this.getElement(this.ID.WEBSAFE_SWATCH);L=O.join(",");E.setStyle(N,"background-color","rgb("+L+")");N.title=A(K.CLOSEST_WEBSAFE,{"rgb":"#"+B.rgb2hex(O)});},_getValuesFromSliders:function(){this.set(this.OPT.RGB,B.hsv2rgb(this._getH(),this._getS(),this._getV()));},_updateFormFields:function(){this.getElement(this.ID.H).value=this.get(this.OPT.HUE);this.getElement(this.ID.S).value=this.get(this.OPT.SATURATION);this.getElement(this.ID.V).value=this.get(this.OPT.VALUE);this.getElement(this.ID.R).value=this.get(this.OPT.RED);this.getElement(this.ID.R_HEX).innerHTML=B.dec2hex(this.get(this.OPT.RED));this.getElement(this.ID.G).value=this.get(this.OPT.GREEN);this.getElement(this.ID.G_HEX).innerHTML=B.dec2hex(this.get(this.OPT.GREEN));this.getElement(this.ID.B).value=this.get(this.OPT.BLUE);this.getElement(this.ID.B_HEX).innerHTML=B.dec2hex(this.get(this.OPT.BLUE));this.getElement(this.ID.HEX).value=this.get(this.OPT.HEX);},_onHueSliderChange:function(N){var L=this._getH(),K=B.hsv2rgb(L,1,1),M="rgb("+K.join(",")+")";this.set(this.OPT.HUE,L,true);E.setStyle(this.getElement(this.ID.PICKER_BG),"background-color",M);if(this.hueSlider.valueChangeSource!==D.SOURCE_SET_VALUE){this._getValuesFromSliders();}this._updateFormFields();this._updateSwatch();},_onPickerSliderChange:function(M){var L=this._getS(),K=this._getV();this.set(this.OPT.SATURATION,Math.round(L*100),true);this.set(this.OPT.VALUE,Math.round(K*100),true);if(this.pickerSlider.valueChangeSource!==D.SOURCE_SET_VALUE){this._getValuesFromSliders(); }this._updateFormFields();this._updateSwatch();},_getCommand:function(K){var L=I.getCharCode(K);if(L===38){return 3;}else{if(L===13){return 6;}else{if(L===40){return 4;}else{if(L>=48&&L<=57){return 1;}else{if(L>=97&&L<=102){return 2;}else{if(L>=65&&L<=70){return 2;}else{if("8, 9, 13, 27, 37, 39".indexOf(L)>-1||K.ctrlKey||K.metaKey){return 5;}else{return 0;}}}}}}}},_useFieldValue:function(L,K,N){var M=K.value;if(N!==this.OPT.HEX){M=parseInt(M,10);}if(M!==this.get(N)){this.set(N,M);}},_rgbFieldKeypress:function(M,K,O){var N=this._getCommand(M),L=(M.shiftKey)?10:1;switch(N){case 6:this._useFieldValue.apply(this,arguments);break;case 3:this.set(O,Math.min(this.get(O)+L,255));this._updateFormFields();break;case 4:this.set(O,Math.max(this.get(O)-L,0));this._updateFormFields();break;default:}},_hexFieldKeypress:function(L,K,N){var M=this._getCommand(L);if(M===6){this._useFieldValue.apply(this,arguments);}},_hexOnly:function(L,K){var M=this._getCommand(L);switch(M){case 6:case 5:case 1:break;case 2:if(K!==true){break;}default:I.stopEvent(L);return false;}},_numbersOnly:function(K){return this._hexOnly(K,true);},getElement:function(K){return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[K]];},_createElements:function(){var N,M,P,O,L,K=this.get(this.OPT.IDS),Q=this.get(this.OPT.TXT),S=this.get(this.OPT.IMAGES),R=function(U,V){var W=document.createElement(U);if(V){C.augmentObject(W,V,true);}return W;},T=function(U,V){var W=C.merge({autocomplete:"off",value:"0",size:3,maxlength:3},V);W.name=W.id;return new R(U,W);};L=this.get("element");N=new R("div",{id:K[this.ID.PICKER_BG],className:"yui-picker-bg",tabIndex:-1,hideFocus:true});M=new R("div",{id:K[this.ID.PICKER_THUMB],className:"yui-picker-thumb"});P=new R("img",{src:S.PICKER_THUMB});M.appendChild(P);N.appendChild(M);L.appendChild(N);N=new R("div",{id:K[this.ID.HUE_BG],className:"yui-picker-hue-bg",tabIndex:-1,hideFocus:true});M=new R("div",{id:K[this.ID.HUE_THUMB],className:"yui-picker-hue-thumb"});P=new R("img",{src:S.HUE_THUMB});M.appendChild(P);N.appendChild(M);L.appendChild(N);N=new R("div",{id:K[this.ID.CONTROLS],className:"yui-picker-controls"});L.appendChild(N);L=N;N=new R("div",{className:"hd"});M=new R("a",{id:K[this.ID.CONTROLS_LABEL],href:"#"});N.appendChild(M);L.appendChild(N);N=new R("div",{className:"bd"});L.appendChild(N);L=N;N=new R("ul",{id:K[this.ID.RGB_CONTROLS],className:"yui-picker-rgb-controls"});M=new R("li");M.appendChild(document.createTextNode(Q.R+" "));O=new T("input",{id:K[this.ID.R],className:"yui-picker-r"});M.appendChild(O);N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.G+" "));O=new T("input",{id:K[this.ID.G],className:"yui-picker-g"});M.appendChild(O);N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.B+" "));O=new T("input",{id:K[this.ID.B],className:"yui-picker-b"});M.appendChild(O);N.appendChild(M);L.appendChild(N);N=new R("ul",{id:K[this.ID.HSV_CONTROLS],className:"yui-picker-hsv-controls"});M=new R("li");M.appendChild(document.createTextNode(Q.H+" "));O=new T("input",{id:K[this.ID.H],className:"yui-picker-h"});M.appendChild(O);M.appendChild(document.createTextNode(" "+Q.DEG));N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.S+" "));O=new T("input",{id:K[this.ID.S],className:"yui-picker-s"});M.appendChild(O);M.appendChild(document.createTextNode(" "+Q.PERCENT));N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.V+" "));O=new T("input",{id:K[this.ID.V],className:"yui-picker-v"});M.appendChild(O);M.appendChild(document.createTextNode(" "+Q.PERCENT));N.appendChild(M);L.appendChild(N);N=new R("ul",{id:K[this.ID.HEX_SUMMARY],className:"yui-picker-hex_summary"});M=new R("li",{id:K[this.ID.R_HEX]});N.appendChild(M);M=new R("li",{id:K[this.ID.G_HEX]});N.appendChild(M);M=new R("li",{id:K[this.ID.B_HEX]});N.appendChild(M);L.appendChild(N);N=new R("div",{id:K[this.ID.HEX_CONTROLS],className:"yui-picker-hex-controls"});N.appendChild(document.createTextNode(Q.HEX+" "));M=new T("input",{id:K[this.ID.HEX],className:"yui-picker-hex",size:6,maxlength:6});N.appendChild(M);L.appendChild(N);L=this.get("element");N=new R("div",{id:K[this.ID.SWATCH],className:"yui-picker-swatch"});L.appendChild(N);N=new R("div",{id:K[this.ID.WEBSAFE_SWATCH],className:"yui-picker-websafe-swatch"});L.appendChild(N);},_attachRGBHSV:function(L,K){I.on(this.getElement(L),"keydown",function(N,M){M._rgbFieldKeypress(N,this,K);},this);I.on(this.getElement(L),"keypress",this._numbersOnly,this,true);I.on(this.getElement(L),"blur",function(N,M){M._useFieldValue(N,this,K);},this);},_updateRGB:function(){var K=[this.get(this.OPT.RED),this.get(this.OPT.GREEN),this.get(this.OPT.BLUE)];this.set(this.OPT.RGB,K);this._updateSliders();},_initElements:function(){var O=this.OPT,N=this.get(O.IDS),L=this.get(O.ELEMENTS),K,M,P;for(K in this.ID){if(C.hasOwnProperty(this.ID,K)){N[this.ID[K]]=N[K];}}M=E.get(N[this.ID.PICKER_BG]);if(!M){this._createElements();}else{}for(K in N){if(C.hasOwnProperty(N,K)){M=E.get(N[K]);P=E.generateId(M);N[K]=P;N[N[K]]=P;L[P]=M;}}},initPicker:function(){this._initSliders();this._bindUI();this.syncUI(true);},_initSliders:function(){var K=this.ID,L=this.get(this.OPT.PICKER_SIZE);this.hueSlider=D.getVertSlider(this.getElement(K.HUE_BG),this.getElement(K.HUE_THUMB),0,L);this.pickerSlider=D.getSliderRegion(this.getElement(K.PICKER_BG),this.getElement(K.PICKER_THUMB),0,L,0,L);this.set(this.OPT.ANIMATE,this.get(this.OPT.ANIMATE));},_bindUI:function(){var K=this.ID,L=this.OPT;this.hueSlider.subscribe("change",this._onHueSliderChange,this,true);this.pickerSlider.subscribe("change",this._onPickerSliderChange,this,true);I.on(this.getElement(K.WEBSAFE_SWATCH),"click",function(M){this.setValue(this.get(L.WEBSAFE));},this,true);I.on(this.getElement(K.CONTROLS_LABEL),"click",function(M){this.set(L.SHOW_CONTROLS,!this.get(L.SHOW_CONTROLS));I.preventDefault(M);},this,true);this._attachRGBHSV(K.R,L.RED);this._attachRGBHSV(K.G,L.GREEN);this._attachRGBHSV(K.B,L.BLUE);this._attachRGBHSV(K.H,L.HUE); this._attachRGBHSV(K.S,L.SATURATION);this._attachRGBHSV(K.V,L.VALUE);I.on(this.getElement(K.HEX),"keydown",function(N,M){M._hexFieldKeypress(N,this,L.HEX);},this);I.on(this.getElement(this.ID.HEX),"keypress",this._hexOnly,this,true);I.on(this.getElement(this.ID.HEX),"blur",function(N,M){M._useFieldValue(N,this,L.HEX);},this);},syncUI:function(K){this.skipAnim=K;this._updateRGB();this.skipAnim=false;},_updateRGBFromHSV:function(){var L=[this.get(this.OPT.HUE),this.get(this.OPT.SATURATION)/100,this.get(this.OPT.VALUE)/100],K=B.hsv2rgb(L);this.set(this.OPT.RGB,K);this._updateSliders();},_updateHex:function(){var N=this.get(this.OPT.HEX),K=N.length,O,M,L;if(K===3){O=N.split("");for(M=0;M<K;M=M+1){O[M]=O[M]+O[M];}N=O.join("");}if(N.length!==6){return false;}L=B.hex2rgb(N);this.setValue(L);},_hideShowEl:function(M,K){var L=(C.isString(M)?this.getElement(M):M);E.setStyle(L,"display",(K)?"":"none");},initAttributes:function(K){K=K||{};G.superclass.initAttributes.call(this,K);this.setAttributeConfig(this.OPT.PICKER_SIZE,{value:K.size||this.DEFAULT.PICKER_SIZE});this.setAttributeConfig(this.OPT.HUE,{value:K.hue||0,validator:C.isNumber});this.setAttributeConfig(this.OPT.SATURATION,{value:K.saturation||0,validator:C.isNumber});this.setAttributeConfig(this.OPT.VALUE,{value:C.isNumber(K.value)?K.value:100,validator:C.isNumber});this.setAttributeConfig(this.OPT.RED,{value:C.isNumber(K.red)?K.red:255,validator:C.isNumber});this.setAttributeConfig(this.OPT.GREEN,{value:C.isNumber(K.green)?K.green:255,validator:C.isNumber});this.setAttributeConfig(this.OPT.BLUE,{value:C.isNumber(K.blue)?K.blue:255,validator:C.isNumber});this.setAttributeConfig(this.OPT.HEX,{value:K.hex||"FFFFFF",validator:C.isString});this.setAttributeConfig(this.OPT.RGB,{value:K.rgb||[255,255,255],method:function(O){this.set(this.OPT.RED,O[0],true);this.set(this.OPT.GREEN,O[1],true);this.set(this.OPT.BLUE,O[2],true);var Q=B.websafe(O),P=B.rgb2hex(O),N=B.rgb2hsv(O);this.set(this.OPT.WEBSAFE,Q,true);this.set(this.OPT.HEX,P,true);if(N[1]){this.set(this.OPT.HUE,N[0],true);}this.set(this.OPT.SATURATION,Math.round(N[1]*100),true);this.set(this.OPT.VALUE,Math.round(N[2]*100),true);},readonly:true});this.setAttributeConfig(this.OPT.CONTAINER,{value:null,method:function(N){if(N){N.showEvent.subscribe(function(){this.pickerSlider.focus();},this,true);}}});this.setAttributeConfig(this.OPT.WEBSAFE,{value:K.websafe||[255,255,255]});var M=K.ids||C.merge({},this.ID),L;if(!K.ids&&J>1){for(L in M){if(C.hasOwnProperty(M,L)){M[L]=M[L]+J;}}}this.setAttributeConfig(this.OPT.IDS,{value:M,writeonce:true});this.setAttributeConfig(this.OPT.TXT,{value:K.txt||this.TXT,writeonce:true});this.setAttributeConfig(this.OPT.IMAGES,{value:K.images||this.IMAGE,writeonce:true});this.setAttributeConfig(this.OPT.ELEMENTS,{value:{},readonly:true});this.setAttributeConfig(this.OPT.SHOW_CONTROLS,{value:C.isBoolean(K.showcontrols)?K.showcontrols:true,method:function(N){var O=E.getElementsByClassName("bd","div",this.getElement(this.ID.CONTROLS))[0];this._hideShowEl(O,N);this.getElement(this.ID.CONTROLS_LABEL).innerHTML=(N)?this.get(this.OPT.TXT).HIDE_CONTROLS:this.get(this.OPT.TXT).SHOW_CONTROLS;}});this.setAttributeConfig(this.OPT.SHOW_RGB_CONTROLS,{value:C.isBoolean(K.showrgbcontrols)?K.showrgbcontrols:true,method:function(N){this._hideShowEl(this.ID.RGB_CONTROLS,N);}});this.setAttributeConfig(this.OPT.SHOW_HSV_CONTROLS,{value:C.isBoolean(K.showhsvcontrols)?K.showhsvcontrols:false,method:function(N){this._hideShowEl(this.ID.HSV_CONTROLS,N);if(N&&this.get(this.OPT.SHOW_HEX_SUMMARY)){this.set(this.OPT.SHOW_HEX_SUMMARY,false);}}});this.setAttributeConfig(this.OPT.SHOW_HEX_CONTROLS,{value:C.isBoolean(K.showhexcontrols)?K.showhexcontrols:false,method:function(N){this._hideShowEl(this.ID.HEX_CONTROLS,N);}});this.setAttributeConfig(this.OPT.SHOW_WEBSAFE,{value:C.isBoolean(K.showwebsafe)?K.showwebsafe:true,method:function(N){this._hideShowEl(this.ID.WEBSAFE_SWATCH,N);}});this.setAttributeConfig(this.OPT.SHOW_HEX_SUMMARY,{value:C.isBoolean(K.showhexsummary)?K.showhexsummary:true,method:function(N){this._hideShowEl(this.ID.HEX_SUMMARY,N);if(N&&this.get(this.OPT.SHOW_HSV_CONTROLS)){this.set(this.OPT.SHOW_HSV_CONTROLS,false);}}});this.setAttributeConfig(this.OPT.ANIMATE,{value:C.isBoolean(K.animate)?K.animate:true,method:function(N){if(this.pickerSlider){this.pickerSlider.animate=N;this.hueSlider.animate=N;}}});this.on(this.OPT.HUE+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.SATURATION+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.VALUE+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.RED+"Change",this._updateRGB,this,true);this.on(this.OPT.GREEN+"Change",this._updateRGB,this,true);this.on(this.OPT.BLUE+"Change",this._updateRGB,this,true);this.on(this.OPT.HEX+"Change",this._updateHex,this,true);this._initElements();}});YAHOO.widget.ColorPicker=G;})();YAHOO.register("colorpicker",YAHOO.widget.ColorPicker,{version:"2.7.0",build:"1796"}); /* Copyright (c) 2009, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt version: 2.7.0 */ (function(){var B=YAHOO.util;var A=function(D,C,E,F){if(!D){}this.init(D,C,E,F);};A.NAME="Anim";A.prototype={toString:function(){var C=this.getEl()||{};var D=C.id||C.tagName;return(this.constructor.NAME+": "+D);},patterns:{noNegatives:/width|height|opacity|padding/i,offsetAttribute:/^((width|height)|(top|left))$/,defaultUnit:/width|height|top$|bottom$|left$|right$/i,offsetUnit:/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i},doMethod:function(C,E,D){return this.method(this.currentFrame,E,D-E,this.totalFrames);},setAttribute:function(C,F,E){var D=this.getEl();if(this.patterns.noNegatives.test(C)){F=(F>0)?F:0;}if("style" in D){B.Dom.setStyle(D,C,F+E);}else{if(C in D){D[C]=F;}}},getAttribute:function(C){var E=this.getEl();var G=B.Dom.getStyle(E,C);if(G!=="auto"&&!this.patterns.offsetUnit.test(G)){return parseFloat(G);}var D=this.patterns.offsetAttribute.exec(C)||[];var H=!!(D[3]);var F=!!(D[2]);if("style" in E){if(F||(B.Dom.getStyle(E,"position")=="absolute"&&H)){G=E["offset"+D[0].charAt(0).toUpperCase()+D[0].substr(1)];}else{G=0;}}else{if(C in E){G=E[C];}}return G;},getDefaultUnit:function(C){if(this.patterns.defaultUnit.test(C)){return"px";}return"";},setRuntimeAttribute:function(D){var I;var E;var F=this.attributes;this.runtimeAttributes[D]={};var H=function(J){return(typeof J!=="undefined");};if(!H(F[D]["to"])&&!H(F[D]["by"])){return false;}I=(H(F[D]["from"]))?F[D]["from"]:this.getAttribute(D);if(H(F[D]["to"])){E=F[D]["to"];}else{if(H(F[D]["by"])){if(I.constructor==Array){E=[];for(var G=0,C=I.length;G<C;++G){E[G]=I[G]+F[D]["by"][G]*1;}}else{E=I+F[D]["by"]*1;}}}this.runtimeAttributes[D].start=I;this.runtimeAttributes[D].end=E;this.runtimeAttributes[D].unit=(H(F[D].unit))?F[D]["unit"]:this.getDefaultUnit(D);return true;},init:function(E,J,I,C){var D=false;var F=null;var H=0;E=B.Dom.get(E);this.attributes=J||{};this.duration=!YAHOO.lang.isUndefined(I)?I:1;this.method=C||B.Easing.easeNone;this.useSeconds=true;this.currentFrame=0;this.totalFrames=B.AnimMgr.fps;this.setEl=function(M){E=B.Dom.get(M);};this.getEl=function(){return E;};this.isAnimated=function(){return D;};this.getStartTime=function(){return F;};this.runtimeAttributes={};this.animate=function(){if(this.isAnimated()){return false;}this.currentFrame=0;this.totalFrames=(this.useSeconds)?Math.ceil(B.AnimMgr.fps*this.duration):this.duration;if(this.duration===0&&this.useSeconds){this.totalFrames=1;}B.AnimMgr.registerElement(this);return true;};this.stop=function(M){if(!this.isAnimated()){return false;}if(M){this.currentFrame=this.totalFrames;this._onTween.fire();}B.AnimMgr.stop(this);};var L=function(){this.onStart.fire();this.runtimeAttributes={};for(var M in this.attributes){this.setRuntimeAttribute(M);}D=true;H=0;F=new Date();};var K=function(){var O={duration:new Date()-this.getStartTime(),currentFrame:this.currentFrame};O.toString=function(){return("duration: "+O.duration+", currentFrame: "+O.currentFrame);};this.onTween.fire(O);var N=this.runtimeAttributes;for(var M in N){this.setAttribute(M,this.doMethod(M,N[M].start,N[M].end),N[M].unit);}H+=1;};var G=function(){var M=(new Date()-F)/1000;var N={duration:M,frames:H,fps:H/M};N.toString=function(){return("duration: "+N.duration+", frames: "+N.frames+", fps: "+N.fps);};D=false;H=0;this.onComplete.fire(N);};this._onStart=new B.CustomEvent("_start",this,true);this.onStart=new B.CustomEvent("start",this);this.onTween=new B.CustomEvent("tween",this);this._onTween=new B.CustomEvent("_tween",this,true);this.onComplete=new B.CustomEvent("complete",this);this._onComplete=new B.CustomEvent("_complete",this,true);this._onStart.subscribe(L);this._onTween.subscribe(K);this._onComplete.subscribe(G);}};B.Anim=A;})();YAHOO.util.AnimMgr=new function(){var C=null;var B=[];var A=0;this.fps=1000;this.delay=1;this.registerElement=function(F){B[B.length]=F;A+=1;F._onStart.fire();this.start();};this.unRegister=function(G,F){F=F||E(G);if(!G.isAnimated()||F==-1){return false;}G._onComplete.fire();B.splice(F,1);A-=1;if(A<=0){this.stop();}return true;};this.start=function(){if(C===null){C=setInterval(this.run,this.delay);}};this.stop=function(H){if(!H){clearInterval(C);for(var G=0,F=B.length;G<F;++G){this.unRegister(B[0],0);}B=[];C=null;A=0;}else{this.unRegister(H);}};this.run=function(){for(var H=0,F=B.length;H<F;++H){var G=B[H];if(!G||!G.isAnimated()){continue;}if(G.currentFrame<G.totalFrames||G.totalFrames===null){G.currentFrame+=1;if(G.useSeconds){D(G);}G._onTween.fire();}else{YAHOO.util.AnimMgr.stop(G,H);}}};var E=function(H){for(var G=0,F=B.length;G<F;++G){if(B[G]==H){return G;}}return -1;};var D=function(G){var J=G.totalFrames;var I=G.currentFrame;var H=(G.currentFrame*G.duration*1000/G.totalFrames);var F=(new Date()-G.getStartTime());var K=0;if(F<G.duration*1000){K=Math.round((F/H-1)*G.currentFrame);}else{K=J-(I+1);}if(K>0&&isFinite(K)){if(G.currentFrame+K>=J){K=J-(I+1);}G.currentFrame+=K;}};};YAHOO.util.Bezier=new function(){this.getPosition=function(E,D){var F=E.length;var C=[];for(var B=0;B<F;++B){C[B]=[E[B][0],E[B][1]];}for(var A=1;A<F;++A){for(B=0;B<F-A;++B){C[B][0]=(1-D)*C[B][0]+D*C[parseInt(B+1,10)][0];C[B][1]=(1-D)*C[B][1]+D*C[parseInt(B+1,10)][1];}}return[C[0][0],C[0][1]];};};(function(){var A=function(F,E,G,H){A.superclass.constructor.call(this,F,E,G,H);};A.NAME="ColorAnim";A.DEFAULT_BGCOLOR="#fff";var C=YAHOO.util;YAHOO.extend(A,C.Anim);var D=A.superclass;var B=A.prototype;B.patterns.color=/color$/i;B.patterns.rgb=/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;B.patterns.hex=/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;B.patterns.hex3=/^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;B.patterns.transparent=/^transparent|rgba\(0, 0, 0, 0\)$/;B.parseColor=function(E){if(E.length==3){return E;}var F=this.patterns.hex.exec(E);if(F&&F.length==4){return[parseInt(F[1],16),parseInt(F[2],16),parseInt(F[3],16)];}F=this.patterns.rgb.exec(E);if(F&&F.length==4){return[parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10)];}F=this.patterns.hex3.exec(E);if(F&&F.length==4){return[parseInt(F[1]+F[1],16),parseInt(F[2]+F[2],16),parseInt(F[3]+F[3],16)]; }return null;};B.getAttribute=function(E){var G=this.getEl();if(this.patterns.color.test(E)){var I=YAHOO.util.Dom.getStyle(G,E);var H=this;if(this.patterns.transparent.test(I)){var F=YAHOO.util.Dom.getAncestorBy(G,function(J){return !H.patterns.transparent.test(I);});if(F){I=C.Dom.getStyle(F,E);}else{I=A.DEFAULT_BGCOLOR;}}}else{I=D.getAttribute.call(this,E);}return I;};B.doMethod=function(F,J,G){var I;if(this.patterns.color.test(F)){I=[];for(var H=0,E=J.length;H<E;++H){I[H]=D.doMethod.call(this,F,J[H],G[H]);}I="rgb("+Math.floor(I[0])+","+Math.floor(I[1])+","+Math.floor(I[2])+")";}else{I=D.doMethod.call(this,F,J,G);}return I;};B.setRuntimeAttribute=function(F){D.setRuntimeAttribute.call(this,F);if(this.patterns.color.test(F)){var H=this.attributes;var J=this.parseColor(this.runtimeAttributes[F].start);var G=this.parseColor(this.runtimeAttributes[F].end);if(typeof H[F]["to"]==="undefined"&&typeof H[F]["by"]!=="undefined"){G=this.parseColor(H[F].by);for(var I=0,E=J.length;I<E;++I){G[I]=J[I]+G[I];}}this.runtimeAttributes[F].start=J;this.runtimeAttributes[F].end=G;}};C.ColorAnim=A;})(); /* TERMS OF USE - EASING EQUATIONS Open source under the BSD License. Copyright 2001 Robert Penner All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ YAHOO.util.Easing={easeNone:function(B,A,D,C){return D*B/C+A;},easeIn:function(B,A,D,C){return D*(B/=C)*B+A;},easeOut:function(B,A,D,C){return -D*(B/=C)*(B-2)+A;},easeBoth:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B+A;}return -D/2*((--B)*(B-2)-1)+A;},easeInStrong:function(B,A,D,C){return D*(B/=C)*B*B*B+A;},easeOutStrong:function(B,A,D,C){return -D*((B=B/C-1)*B*B*B-1)+A;},easeBothStrong:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B*B*B+A;}return -D/2*((B-=2)*B*B*B-2)+A;},elasticIn:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return -(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;},elasticOut:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return B*Math.pow(2,-10*C)*Math.sin((C*F-D)*(2*Math.PI)/E)+G+A;},elasticBoth:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F/2)==2){return A+G;}if(!E){E=F*(0.3*1.5);}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}if(C<1){return -0.5*(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;}return B*Math.pow(2,-10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E)*0.5+G+A;},backIn:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*(B/=D)*B*((C+1)*B-C)+A;},backOut:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*((B=B/D-1)*B*((C+1)*B+C)+1)+A;},backBoth:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}if((B/=D/2)<1){return E/2*(B*B*(((C*=(1.525))+1)*B-C))+A;}return E/2*((B-=2)*B*(((C*=(1.525))+1)*B+C)+2)+A;},bounceIn:function(B,A,D,C){return D-YAHOO.util.Easing.bounceOut(C-B,0,D,C)+A;},bounceOut:function(B,A,D,C){if((B/=C)<(1/2.75)){return D*(7.5625*B*B)+A;}else{if(B<(2/2.75)){return D*(7.5625*(B-=(1.5/2.75))*B+0.75)+A;}else{if(B<(2.5/2.75)){return D*(7.5625*(B-=(2.25/2.75))*B+0.9375)+A;}}}return D*(7.5625*(B-=(2.625/2.75))*B+0.984375)+A;},bounceBoth:function(B,A,D,C){if(B<C/2){return YAHOO.util.Easing.bounceIn(B*2,0,D,C)*0.5+A;}return YAHOO.util.Easing.bounceOut(B*2-C,0,D,C)*0.5+D*0.5+A;}};(function(){var A=function(H,G,I,J){if(H){A.superclass.constructor.call(this,H,G,I,J);}};A.NAME="Motion";var E=YAHOO.util;YAHOO.extend(A,E.ColorAnim);var F=A.superclass;var C=A.prototype;C.patterns.points=/^points$/i;C.setAttribute=function(G,I,H){if(this.patterns.points.test(G)){H=H||"px";F.setAttribute.call(this,"left",I[0],H);F.setAttribute.call(this,"top",I[1],H);}else{F.setAttribute.call(this,G,I,H);}};C.getAttribute=function(G){if(this.patterns.points.test(G)){var H=[F.getAttribute.call(this,"left"),F.getAttribute.call(this,"top")];}else{H=F.getAttribute.call(this,G);}return H;};C.doMethod=function(G,K,H){var J=null;if(this.patterns.points.test(G)){var I=this.method(this.currentFrame,0,100,this.totalFrames)/100;J=E.Bezier.getPosition(this.runtimeAttributes[G],I);}else{J=F.doMethod.call(this,G,K,H);}return J;};C.setRuntimeAttribute=function(P){if(this.patterns.points.test(P)){var H=this.getEl();var J=this.attributes;var G;var L=J["points"]["control"]||[];var I;var M,O;if(L.length>0&&!(L[0] instanceof Array)){L=[L];}else{var K=[];for(M=0,O=L.length;M<O;++M){K[M]=L[M];}L=K;}if(E.Dom.getStyle(H,"position")=="static"){E.Dom.setStyle(H,"position","relative");}if(D(J["points"]["from"])){E.Dom.setXY(H,J["points"]["from"]); }else{E.Dom.setXY(H,E.Dom.getXY(H));}G=this.getAttribute("points");if(D(J["points"]["to"])){I=B.call(this,J["points"]["to"],G);var N=E.Dom.getXY(this.getEl());for(M=0,O=L.length;M<O;++M){L[M]=B.call(this,L[M],G);}}else{if(D(J["points"]["by"])){I=[G[0]+J["points"]["by"][0],G[1]+J["points"]["by"][1]];for(M=0,O=L.length;M<O;++M){L[M]=[G[0]+L[M][0],G[1]+L[M][1]];}}}this.runtimeAttributes[P]=[G];if(L.length>0){this.runtimeAttributes[P]=this.runtimeAttributes[P].concat(L);}this.runtimeAttributes[P][this.runtimeAttributes[P].length]=I;}else{F.setRuntimeAttribute.call(this,P);}};var B=function(G,I){var H=E.Dom.getXY(this.getEl());G=[G[0]-H[0]+I[0],G[1]-H[1]+I[1]];return G;};var D=function(G){return(typeof G!=="undefined");};E.Motion=A;})();(function(){var D=function(F,E,G,H){if(F){D.superclass.constructor.call(this,F,E,G,H);}};D.NAME="Scroll";var B=YAHOO.util;YAHOO.extend(D,B.ColorAnim);var C=D.superclass;var A=D.prototype;A.doMethod=function(E,H,F){var G=null;if(E=="scroll"){G=[this.method(this.currentFrame,H[0],F[0]-H[0],this.totalFrames),this.method(this.currentFrame,H[1],F[1]-H[1],this.totalFrames)];}else{G=C.doMethod.call(this,E,H,F);}return G;};A.getAttribute=function(E){var G=null;var F=this.getEl();if(E=="scroll"){G=[F.scrollLeft,F.scrollTop];}else{G=C.getAttribute.call(this,E);}return G;};A.setAttribute=function(E,H,G){var F=this.getEl();if(E=="scroll"){F.scrollLeft=H[0];F.scrollTop=H[1];}else{C.setAttribute.call(this,E,H,G);}};B.Scroll=D;})();YAHOO.register("animation",YAHOO.util.Anim,{version:"2.7.0",build:"1799"}); ��������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/���������������������������������0000775�0001750�0001750�00000000000�12262650742�024132� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/fi.js����������������������������0000664�0001750�0001750�00000000550�12262650742�025066� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','fi',{uicolor:{title:'Käyttöliittymän värivalitsin',preview:'Esikatsele',config:'Liitä tämä merkkijono config.js tiedostoosi',predefined:'Esimääritellyt värijoukot'}}); ��������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/no.js����������������������������0000664�0001750�0001750�00000000566�12262650742�025113� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','no',{uicolor:{title:'Fargevelger for brukergrensesnitt',preview:'Forhåndsvisning i sanntid',config:'Lim inn følgende tekst i din config.js-fil',predefined:'Forhåndsdefinerte fargesett'}}); ������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/bg.js����������������������������0000664�0001750�0001750�00000000630�12262650742�025057� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','bg',{uicolor:{title:'ПИ избор на цвят',preview:'Преглед',config:'Вмъкнете този низ във Вашия config.js fajl',predefined:'Предефинирани цветови палитри'}}); ��������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/sk.js����������������������������0000664�0001750�0001750�00000000540�12262650742�025104� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','sk',{uicolor:{title:'UI výber farby',preview:'Živý náhľad',config:'Vložte tento reťazec do vášho config.js súboru',predefined:'Preddefinované sady farieb'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/he.js����������������������������0000664�0001750�0001750�00000000634�12262650742�025067� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','he',{uicolor:{title:'בחירת צבע ממשק משתמש',preview:'תצוגה מקדימה',config:'הדבק את הטקסט הבא לתוך הקובץ config.js',predefined:'קבוצות צבעים מוגדרות מראש'}}); ����������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/cy.js����������������������������0000664�0001750�0001750�00000000536�12262650742�025107� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','cy',{uicolor:{title:"Dewisydd Lliwiau'r UI",preview:'Rhagolwg Byw',config:"Gludwch y llinyn hwn i'ch ffeil config.js",predefined:"Setiau lliw wedi'u cyn-ddiffinio"}}); ������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/it.js����������������������������0000664�0001750�0001750�00000000533�12262650742�025105� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','it',{uicolor:{title:'Selettore Colore UI',preview:'Anteprima Live',config:'Incolla questa stringa nel tuo file config.js',predefined:'Set di colori predefiniti'}}); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/nl.js����������������������������0000664�0001750�0001750�00000000530�12262650742�025077� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','nl',{uicolor:{title:'UI Kleurenkiezer',preview:'Live voorbeeld',config:'Plak deze tekst in jouw config.js bestand',predefined:'Voorgedefinieerde kleurensets'}}); ������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/pt-br.js�������������������������0000664�0001750�0001750�00000000540�12262650742�025513� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','pt-br',{uicolor:{title:'Paleta de Cores',preview:'Visualização ao vivo',config:'Cole o texto no seu arquivo config.js',predefined:'Conjuntos de cores predefinidos'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/ug.js����������������������������0000664�0001750�0001750�00000000721�12262650742�025103� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','ug',{uicolor:{title:'ئىشلەتكۈچى ئارايۈزى رەڭ تاللىغۇچ',preview:'شۇئان ئالدىن كۆزىتىش',config:'بۇ ھەرپ تىزىقىنى config.js ھۆججەتكە چاپلايدۇ',predefined:'ئالدىن بەلگىلەنگەن رەڭلەر'}}); �����������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/tr.js����������������������������0000664�0001750�0001750�00000000561�12262650742�025117� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','tr',{uicolor:{title:'UI Renk Seçicisi',preview:'Canlı önizleme',config:'Bu dizeyi config.js dosyasının içine yapıştırın',predefined:'Önceden tanımlanmış renk kümeleri'}}); �����������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/mk.js����������������������������0000664�0001750�0001750�00000000634�12262650742�025102� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','mk',{uicolor:{title:'Палета со бои',preview:'Преглед',config:'Залепи го овој текст во config.js датотеката',predefined:'Предефинирани множества на бои'}}); ����������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/_translationstatus.txt�����������0000664�0001750�0001750�00000001760�12262650742�030640� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license bg.js Found: 4 Missing: 0 cs.js Found: 4 Missing: 0 cy.js Found: 4 Missing: 0 da.js Found: 4 Missing: 0 de.js Found: 4 Missing: 0 el.js Found: 4 Missing: 0 eo.js Found: 4 Missing: 0 et.js Found: 4 Missing: 0 fa.js Found: 4 Missing: 0 fi.js Found: 4 Missing: 0 fr.js Found: 4 Missing: 0 he.js Found: 4 Missing: 0 hr.js Found: 4 Missing: 0 it.js Found: 4 Missing: 0 ku.js Found: 4 Missing: 0 lv.js Found: 4 Missing: 0 mk.js Found: 4 Missing: 0 nb.js Found: 4 Missing: 0 nl.js Found: 4 Missing: 0 no.js Found: 4 Missing: 0 pl.js Found: 4 Missing: 0 pt-br.js Found: 4 Missing: 0 sk.js Found: 4 Missing: 0 tr.js Found: 4 Missing: 0 ug.js Found: 4 Missing: 0 uk.js Found: 4 Missing: 0 vi.js Found: 4 Missing: 0 zh-cn.js Found: 4 Missing: 0 ����������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/lv.js����������������������������0000664�0001750�0001750�00000000541�12262650742�025111� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','lv',{uicolor:{title:'UI krāsas izvēle',preview:'Priekšskatījums',config:'Ielīmējiet šo rindu jūsu config.js failā',predefined:'Predefinēti krāsu komplekti'}}); ���������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/fr.js����������������������������0000664�0001750�0001750�00000000565�12262650742�025105� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','fr',{uicolor:{title:'UI Sélecteur de couleur',preview:'Aperçu',config:'Collez cette chaîne de caractères dans votre fichier config.js',predefined:'Palettes de couleurs prédéfinies'}}); �������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/zh-cn.js�������������������������0000664�0001750�0001750�00000000534�12262650742�025511� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','zh-cn',{uicolor:{title:'用户界面颜色选择器',preview:'即时预览',config:'粘贴此字符串到您的 config.js 文件',predefined:'预定义颜色集'}}); ��������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/de.js����������������������������0000664�0001750�0001750�00000000532�12262650742�025060� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','de',{uicolor:{title:'UI Pipette',preview:'Live-Vorschau',config:"Fügen Sie diese Zeichenfolge in die 'config.js' Datei.",predefined:'Vordefinierte Farbsätze'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/fa.js����������������������������0000664�0001750�0001750�00000001115�12262650742�025054� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'uicolor', 'fa', { uicolor : { title : 'انتخاب رنگ UI', preview : 'پیش‌نمایش زنده', config : 'این رشته را در فایل config.js خود بچسبانید.', predefined : 'مجموعه رنگ از پیش تعریف شده' } }); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/da.js����������������������������0000664�0001750�0001750�00000000543�12262650742�025056� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','da',{uicolor:{title:'Brugerflade på farvevælger',preview:'Vis liveeksempel',config:'Indsæt denne streng i din config.js fil',predefined:'Prædefinerede farveskemaer'}}); �������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/vi.js����������������������������0000664�0001750�0001750�00000000612�12262650742�025105� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','vi',{uicolor:{title:'Giao diện người dùng Color Picker',preview:'Xem trước trực tiếp',config:'Dán chuỗi này vào tập tin config.js của bạn',predefined:'Tập màu định nghĩa sẵn'}}); ����������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/pl.js����������������������������0000664�0001750�0001750�00000000561�12262650742�025105� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','pl',{uicolor:{title:'Wybór koloru interfejsu',preview:'Podgląd na żywo',config:'Wklej poniższy łańcuch znaków do pliku config.js:',predefined:'Predefiniowane zestawy kolorów'}}); �����������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/nb.js����������������������������0000664�0001750�0001750�00000000566�12262650742�025076� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','nb',{uicolor:{title:'Fargevelger for brukergrensesnitt',preview:'Forhåndsvisning i sanntid',config:'Lim inn følgende tekst i din config.js-fil',predefined:'Forhåndsdefinerte fargesett'}}); ������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/hr.js����������������������������0000664�0001750�0001750�00000000535�12262650742�025104� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','hr',{uicolor:{title:'UI odabir boja',preview:'Pregled uživo',config:'Zalijepite ovaj tekst u Vašu config.js datoteku.',predefined:'Već postavljeni setovi boja'}}); �������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/uk.js����������������������������0000664�0001750�0001750�00000000630�12262650742�025106� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','uk',{uicolor:{title:'Color Picker Інтерфейс',preview:'Перегляд наживо',config:'Вставте цей рядок у файл config.js',predefined:'Стандартний набір кольорів'}}); ��������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/el.js����������������������������0000664�0001750�0001750�00000000730�12262650742�025070� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','el',{uicolor:{title:'Διεπαφή Επιλογέα Χρωμάτων',preview:'Ζωντανή Προεπισκόπηση',config:'Επικολλήστε αυτό το κείμενο στο αρχείο config.js',predefined:'Προκαθορισμένα σύνολα χρωμάτων'}}); ����������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/et.js����������������������������0000664�0001750�0001750�00000000544�12262650742�025103� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','et',{uicolor:{title:'Värvivalija kasutajaliides',preview:'Automaatne eelvaade',config:'Aseta see sõne oma config.js faili.',predefined:'Eelmääratud värvikomplektid'}}); ������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/ku.js����������������������������0000664�0001750�0001750�00000001273�12262650742�025112� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'uicolor', 'ku', { uicolor : { title : 'هه‌ڵگری ڕه‌نگ بۆ ڕووکاری به‌کارهێنه‌ر', preview : 'پێشبینین به‌ زیندوویی', config : 'ئه‌م ده‌قانه‌ بلکێنه‌ به‌ په‌ڕگه‌ی config.js-fil', predefined : 'کۆمه‌ڵه‌ ڕه‌نگه‌ دیاریکراوه‌کانی پێشوو' } }); �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/eo.js����������������������������0000664�0001750�0001750�00000000536�12262650742�025077� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','eo',{uicolor:{title:'UI Kolorselektilo',preview:'Vidigi la aspekton',config:'Gluu tiun signoĉenon en vian dosieron config.js',predefined:'Antaŭdifinita koloraro'}}); ������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/en.js����������������������������0000664�0001750�0001750�00000000516�12262650742�025074� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefined color sets'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/cs.js����������������������������0000664�0001750�0001750�00000000547�12262650742�025103� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('uicolor','cs',{uicolor:{title:'Výběr barvy rozhraní',preview:'Živý náhled',config:'Vložte tento řetězec do Vašeho souboru config.js',predefined:'Přednastavené sady barev'}}); ���������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/dialogs/������������������������������0000775�0001750�0001750�00000000000�12262650742�024633� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/dialogs/uicolor.js��������������������0000664�0001750�0001750�00000005571�12262650742�026655� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('uicolor',function(a){var b,c,d,e=a.getUiColor(),f='cke_uicolor_picker'+CKEDITOR.tools.getNextNumber();function g(j){if(/^#/.test(j))j=window.YAHOO.util.Color.hex2rgb(j.substr(1));c.setValue(j,true);c.refresh(f);};function h(j,k){if(k||b._.contents.tab1.livePeview.getValue())a.setUiColor(j);b._.contents.tab1.configBox.setValue('config.uiColor = "#'+c.get('hex')+'"');};d={id:'yuiColorPicker',type:'html',html:"<div id='"+f+"' class='cke_uicolor_picker' style='width: 360px; height: 200px; position: relative;'></div>",onLoad:function(j){var k=CKEDITOR.getUrl('plugins/uicolor/yui/');c=new window.YAHOO.widget.ColorPicker(f,{showhsvcontrols:true,showhexcontrols:true,images:{PICKER_THUMB:k+'assets/picker_thumb.png',HUE_THUMB:k+'assets/hue_thumb.png'}});if(e)g(e);c.on('rgbChange',function(){b._.contents.tab1.predefined.setValue('');h('#'+c.get('hex'));});var l=new CKEDITOR.dom.nodeList(c.getElementsByTagName('input'));for(var m=0;m<l.count();m++)l.getItem(m).addClass('cke_dialog_ui_input_text');}};var i=true;return{title:a.lang.uicolor.title,minWidth:360,minHeight:320,onLoad:function(){b=this;this.setupContent();if(CKEDITOR.env.ie7Compat)b.parts.contents.setStyle('overflow','hidden');},contents:[{id:'tab1',label:'',title:'',expand:true,padding:0,elements:[d,{id:'tab1',type:'vbox',children:[{id:'livePeview',type:'checkbox',label:a.lang.uicolor.preview,'default':1,onLoad:function(){i=true;},onChange:function(){if(i)return;var j=this.getValue(),k=j?'#'+c.get('hex'):e;h(k,true);}},{type:'hbox',children:[{id:'predefined',type:'select','default':'',label:a.lang.uicolor.predefined,items:[[''],['Light blue','#9AB8F3'],['Sand','#D2B48C'],['Metallic','#949AAA'],['Purple','#C2A3C7'],['Olive','#A2C980'],['Happy green','#9BD446'],['Jezebel Blue','#14B8C4'],['Burn','#FF893A'],['Easy red','#FF6969'],['Pisces 3','#48B4F2'],['Aquarius 5','#487ED4'],['Absinthe','#A8CF76'],['Scrambled Egg','#C7A622'],['Hello monday','#8E8D80'],['Lovely sunshine','#F1E8B1'],['Recycled air','#B3C593'],['Down','#BCBCA4'],['Mark Twain','#CFE91D'],['Specks of dust','#D1B596'],['Lollipop','#F6CE23']],onChange:function(){var j=this.getValue();if(j){g(j);h(j);CKEDITOR.document.getById('predefinedPreview').setStyle('background',j);}else CKEDITOR.document.getById('predefinedPreview').setStyle('background','');},onShow:function(){var j=a.getUiColor();if(j)this.setValue(j);}},{id:'predefinedPreview',type:'html',html:'<div id="cke_uicolor_preview" style="border: 1px solid black; padding: 3px; width: 30px;"><div id="predefinedPreview" style="width: 30px; height: 30px;"> </div></div>'}]},{id:'configBox',type:'text',label:a.lang.uicolor.config,onShow:function(){var j=a.getUiColor(); if(j)this.setValue('config.uiColor = "'+j+'"');}}]}]}],buttons:[CKEDITOR.dialog.okButton]};}); ���������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/plugin.js�����������������������������0000664�0001750�0001750�00000001442�12262650742�025046� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.add('uicolor',{requires:['dialog'],lang:['bg','cs','cy','da','de','el','en','eo','et','fa','fi','fr','he','hr','it','ku','mk','nb','nl','no','pl','pt-br','sk','tr','ug','uk','vi','zh-cn'],init:function(a){if(CKEDITOR.env.ie6Compat)return;a.addCommand('uicolor',new CKEDITOR.dialogCommand('uicolor'));a.ui.addButton('UIColor',{label:a.lang.uicolor.title,command:'uicolor',icon:this.path+'uicolor.gif'});CKEDITOR.dialog.add('uicolor',this.path+'dialogs/uicolor.js');CKEDITOR.scriptLoader.load(CKEDITOR.getUrl('plugins/uicolor/yui/yui.js'));a.element.getDocument().appendStyleSheet(CKEDITOR.getUrl('plugins/uicolor/yui/assets/yui.css'));}}); ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/uicolor/uicolor.gif���������������������������0000664�0001750�0001750�00000002124�12262650742�025353� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a���                    !!"##$%$&&'&"+'$%, ,((,()-(,'. -),.)/)/*2,2/31435#57(.=67+88/:830@ <973B?:=>;9@;>7C:D<F!>G&@H+CH09Q FJ7=R HK<KKALKF@TMLJOMMCWRMQEXHY&LZ,EcQ[5R\;Hf V]BY^IMh\^O__V__ZPjb``Sk"dadXn,[n4Qw_o=bpFUzgqMY|jqVmr]]~osdrska'ttputte1i:^nErOcvXfzb}kk tn+{s6yBi}MnXrcnx#y|/;uGSzamz&1>LZh'v4BQ`p'̀6̎F˜U̩e̶(vʼڇ8ٖGڦYjڵ)®8{ ⥵Iת[)땵:m翻K]q!Created with GIMP�,��������ˇ6r[W.ܷlգ7Ośf3g޹cnnؤEk̘_i6 ddž -Y#\hr )Rj͊TJIӥJFiS&L(MzHѡB"ArhQ"D g;sGO;uȉf 3ciFM3eȈ K+SxE +UHɒ#E4a$ #D ǎ5| 4fȈㅋ'Z`$F⃇6%hȀႅ &H (H� (@@���;��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/image/����������������������������������������0000775�0001750�0001750�00000000000�12262650742�022617� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/image/dialogs/��������������������������������0000775�0001750�0001750�00000000000�12262650742�024241� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/image/dialogs/image.js������������������������0000664�0001750�0001750�00000047657�12262650742�025704� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){var a=function(b,c){var d=1,e=2,f=4,g=8,h=/^\s*(\d+)((px)|\%)?\s*$/i,i=/(^\s*(\d+)((px)|\%)?\s*$)|^$/i,j=/^\d+px$/,k=function(){var B=this.getValue(),C=this.getDialog(),D=B.match(h);if(D){if(D[2]=='%')p(C,false);B=D[1];}if(C.lockRatio){var E=C.originalElement;if(E.getCustomData('isReady')=='true')if(this.id=='txtHeight'){if(B&&B!='0')B=Math.round(E.$.width*(B/E.$.height));if(!isNaN(B))C.setValueOf('info','txtWidth',B);}else{if(B&&B!='0')B=Math.round(E.$.height*(B/E.$.width));if(!isNaN(B))C.setValueOf('info','txtHeight',B);}}l(C);},l=function(B){if(!B.originalElement||!B.preview)return 1;B.commitContent(f,B.preview);return 0;};function m(){var B=arguments,C=this.getContentElement('advanced','txtdlgGenStyle');C&&C.commit.apply(C,B);this.foreach(function(D){if(D.commit&&D.id!='txtdlgGenStyle')D.commit.apply(D,B);});};var n;function o(B){if(n)return;n=1;var C=this.getDialog(),D=C.imageElement;if(D){this.commit(d,D);B=[].concat(B);var E=B.length,F;for(var G=0;G<E;G++){F=C.getContentElement.apply(C,B[G].split(':'));F&&F.setup(d,D);}}n=0;};var p=function(B,C){if(!B.getContentElement('info','ratioLock'))return null;var D=B.originalElement;if(!D)return null;if(C=='check'){if(!B.userlockRatio&&D.getCustomData('isReady')=='true'){var E=B.getValueOf('info','txtWidth'),F=B.getValueOf('info','txtHeight'),G=D.$.width*1000/D.$.height,H=E*1000/F;B.lockRatio=false;if(!E&&!F)B.lockRatio=true;else if(!isNaN(G)&&!isNaN(H))if(Math.round(G)==Math.round(H))B.lockRatio=true;}}else if(C!=undefined)B.lockRatio=C;else{B.userlockRatio=1;B.lockRatio=!B.lockRatio;}var I=CKEDITOR.document.getById(w);if(B.lockRatio)I.removeClass('cke_btn_unlocked');else I.addClass('cke_btn_unlocked');I.setAttribute('aria-checked',B.lockRatio);if(CKEDITOR.env.hc){var J=I.getChild(0);J.setHtml(B.lockRatio?CKEDITOR.env.ie?'■':'▣':CKEDITOR.env.ie?'□':'▢');}return B.lockRatio;},q=function(B){var C=B.originalElement;if(C.getCustomData('isReady')=='true'){var D=B.getContentElement('info','txtWidth'),E=B.getContentElement('info','txtHeight');D&&D.setValue(C.$.width);E&&E.setValue(C.$.height);}l(B);},r=function(B,C){if(B!=d)return;function D(I,J){var K=I.match(h);if(K){if(K[2]=='%'){K[1]+='%';p(E,false);}return K[1];}return J;};var E=this.getDialog(),F='',G=this.id=='txtWidth'?'width':'height',H=C.getAttribute(G);if(H)F=D(H,F);F=D(C.getStyle(G),F);this.setValue(F);},s,t=function(){var B=this.originalElement;B.setCustomData('isReady','true');B.removeListener('load',t);B.removeListener('error',u);B.removeListener('abort',u); CKEDITOR.document.getById(y).setStyle('display','none');if(!this.dontResetSize)q(this);if(this.firstLoad)CKEDITOR.tools.setTimeout(function(){p(this,'check');},0,this);this.firstLoad=false;this.dontResetSize=false;},u=function(){var D=this;var B=D.originalElement;B.removeListener('load',t);B.removeListener('error',u);B.removeListener('abort',u);var C=CKEDITOR.getUrl(b.skinPath+'images/noimage.png');if(D.preview)D.preview.setAttribute('src',C);CKEDITOR.document.getById(y).setStyle('display','none');p(D,false);},v=function(B){return CKEDITOR.tools.getNextId()+'_'+B;},w=v('btnLockSizes'),x=v('btnResetSize'),y=v('ImagePreviewLoader'),z=v('previewLink'),A=v('previewImage');return{title:b.lang.image[c=='image'?'title':'titleButton'],minWidth:420,minHeight:360,onShow:function(){var H=this;H.imageElement=false;H.linkElement=false;H.imageEditMode=false;H.linkEditMode=false;H.lockRatio=true;H.userlockRatio=0;H.dontResetSize=false;H.firstLoad=true;H.addLink=false;var B=H.getParentEditor(),C=B.getSelection(),D=C&&C.getSelectedElement(),E=D&&D.getAscendant('a');CKEDITOR.document.getById(y).setStyle('display','none');s=new CKEDITOR.dom.element('img',B.document);H.preview=CKEDITOR.document.getById(A);H.originalElement=B.document.createElement('img');H.originalElement.setAttribute('alt','');H.originalElement.setCustomData('isReady','false');if(E){H.linkElement=E;H.linkEditMode=true;var F=E.getChildren();if(F.count()==1){var G=F.getItem(0).getName();if(G=='img'||G=='input'){H.imageElement=F.getItem(0);if(H.imageElement.getName()=='img')H.imageEditMode='img';else if(H.imageElement.getName()=='input')H.imageEditMode='input';}}if(c=='image')H.setupContent(e,E);}if(D&&D.getName()=='img'&&!D.data('cke-realelement')||D&&D.getName()=='input'&&D.getAttribute('type')=='image'){H.imageEditMode=D.getName();H.imageElement=D;}if(H.imageEditMode){H.cleanImageElement=H.imageElement;H.imageElement=H.cleanImageElement.clone(true,true);H.setupContent(d,H.imageElement);}else H.imageElement=B.document.createElement('img');p(H,true);if(!CKEDITOR.tools.trim(H.getValueOf('info','txtUrl'))){H.preview.removeAttribute('src');H.preview.setStyle('display','none');}},onOk:function(){var C=this;if(C.imageEditMode){var B=C.imageEditMode;if(c=='image'&&B=='input'&&confirm(b.lang.image.button2Img)){B='img';C.imageElement=b.document.createElement('img');C.imageElement.setAttribute('alt','');b.insertElement(C.imageElement);}else if(c!='image'&&B=='img'&&confirm(b.lang.image.img2Button)){B='input';C.imageElement=b.document.createElement('input'); C.imageElement.setAttributes({type:'image',alt:''});b.insertElement(C.imageElement);}else{C.imageElement=C.cleanImageElement;delete C.cleanImageElement;}}else{if(c=='image')C.imageElement=b.document.createElement('img');else{C.imageElement=b.document.createElement('input');C.imageElement.setAttribute('type','image');}C.imageElement.setAttribute('alt','');}if(!C.linkEditMode)C.linkElement=b.document.createElement('a');C.commitContent(d,C.imageElement);C.commitContent(e,C.linkElement);if(!C.imageElement.getAttribute('style'))C.imageElement.removeAttribute('style');if(!C.imageEditMode){if(C.addLink){if(!C.linkEditMode){b.insertElement(C.linkElement);C.linkElement.append(C.imageElement,false);}else b.insertElement(C.imageElement);}else b.insertElement(C.imageElement);}else if(!C.linkEditMode&&C.addLink){b.insertElement(C.linkElement);C.imageElement.appendTo(C.linkElement);}else if(C.linkEditMode&&!C.addLink){b.getSelection().selectElement(C.linkElement);b.insertElement(C.imageElement);}},onLoad:function(){var C=this;if(c!='image')C.hidePage('Link');var B=C._.element.getDocument();if(C.getContentElement('info','ratioLock')){C.addFocusable(B.getById(x),5);C.addFocusable(B.getById(w),5);}C.commitContent=m;},onHide:function(){var B=this;if(B.preview)B.commitContent(g,B.preview);if(B.originalElement){B.originalElement.removeListener('load',t);B.originalElement.removeListener('error',u);B.originalElement.removeListener('abort',u);B.originalElement.remove();B.originalElement=false;}delete B.imageElement;},contents:[{id:'info',label:b.lang.image.infoTab,accessKey:'I',elements:[{type:'vbox',padding:0,children:[{type:'hbox',widths:['280px','110px'],align:'right',children:[{id:'txtUrl',type:'text',label:b.lang.common.url,required:true,onChange:function(){var B=this.getDialog(),C=this.getValue();if(C.length>0){B=this.getDialog();var D=B.originalElement;B.preview.removeStyle('display');D.setCustomData('isReady','false');var E=CKEDITOR.document.getById(y);if(E)E.setStyle('display','');D.on('load',t,B);D.on('error',u,B);D.on('abort',u,B);D.setAttribute('src',C);s.setAttribute('src',C);B.preview.setAttribute('src',s.$.src);l(B);}else if(B.preview){B.preview.removeAttribute('src');B.preview.setStyle('display','none');}},setup:function(B,C){if(B==d){var D=C.data('cke-saved-src')||C.getAttribute('src'),E=this;this.getDialog().dontResetSize=true;E.setValue(D);E.setInitValue();}},commit:function(B,C){var D=this;if(B==d&&(D.getValue()||D.isChanged())){C.data('cke-saved-src',D.getValue()); C.setAttribute('src',D.getValue());}else if(B==g){C.setAttribute('src','');C.removeAttribute('src');}},validate:CKEDITOR.dialog.validate.notEmpty(b.lang.image.urlMissing)},{type:'button',id:'browse',style:'display:inline-block;margin-top:10px;',align:'center',label:b.lang.common.browseServer,hidden:true,filebrowser:'info:txtUrl'}]}]},{id:'txtAlt',type:'text',label:b.lang.image.alt,accessKey:'T','default':'',onChange:function(){l(this.getDialog());},setup:function(B,C){if(B==d)this.setValue(C.getAttribute('alt'));},commit:function(B,C){var D=this;if(B==d){if(D.getValue()||D.isChanged())C.setAttribute('alt',D.getValue());}else if(B==f)C.setAttribute('alt',D.getValue());else if(B==g)C.removeAttribute('alt');}},{type:'hbox',children:[{id:'basic',type:'vbox',children:[{type:'hbox',widths:['50%','50%'],children:[{type:'vbox',padding:1,children:[{type:'text',width:'40px',id:'txtWidth',label:b.lang.common.width,onKeyUp:k,onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:function(){var B=this.getValue().match(i),C=!!(B&&parseInt(B[1],10)!==0);if(!C)alert(b.lang.common.invalidWidth);return C;},setup:r,commit:function(B,C,D){var E=this.getValue();if(B==d){if(E)C.setStyle('width',CKEDITOR.tools.cssLength(E));else C.removeStyle('width');!D&&C.removeAttribute('width');}else if(B==f){var F=E.match(h);if(!F){var G=this.getDialog().originalElement;if(G.getCustomData('isReady')=='true')C.setStyle('width',G.$.width+'px');}else C.setStyle('width',CKEDITOR.tools.cssLength(E));}else if(B==g){C.removeAttribute('width');C.removeStyle('width');}}},{type:'text',id:'txtHeight',width:'40px',label:b.lang.common.height,onKeyUp:k,onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:function(){var B=this.getValue().match(i),C=!!(B&&parseInt(B[1],10)!==0);if(!C)alert(b.lang.common.invalidHeight);return C;},setup:r,commit:function(B,C,D){var E=this.getValue();if(B==d){if(E)C.setStyle('height',CKEDITOR.tools.cssLength(E));else C.removeStyle('height');!D&&C.removeAttribute('height');}else if(B==f){var F=E.match(h);if(!F){var G=this.getDialog().originalElement;if(G.getCustomData('isReady')=='true')C.setStyle('height',G.$.height+'px');}else C.setStyle('height',CKEDITOR.tools.cssLength(E));}else if(B==g){C.removeAttribute('height');C.removeStyle('height');}}}]},{id:'ratioLock',type:'html',style:'margin-top:30px;width:40px;height:40px;',onLoad:function(){var B=CKEDITOR.document.getById(x),C=CKEDITOR.document.getById(w);if(B){B.on('click',function(D){q(this);D.data&&D.data.preventDefault(); },this.getDialog());B.on('mouseover',function(){this.addClass('cke_btn_over');},B);B.on('mouseout',function(){this.removeClass('cke_btn_over');},B);}if(C){C.on('click',function(D){var I=this;var E=p(I),F=I.originalElement,G=I.getValueOf('info','txtWidth');if(F.getCustomData('isReady')=='true'&&G){var H=F.$.height/F.$.width*G;if(!isNaN(H)){I.setValueOf('info','txtHeight',Math.round(H));l(I);}}D.data&&D.data.preventDefault();},this.getDialog());C.on('mouseover',function(){this.addClass('cke_btn_over');},C);C.on('mouseout',function(){this.removeClass('cke_btn_over');},C);}},html:'<div><a href="javascript:void(0)" tabindex="-1" title="'+b.lang.image.lockRatio+'" class="cke_btn_locked" id="'+w+'" role="checkbox"><span class="cke_icon"></span><span class="cke_label">'+b.lang.image.lockRatio+'</span></a>'+'<a href="javascript:void(0)" tabindex="-1" title="'+b.lang.image.resetSize+'" class="cke_btn_reset" id="'+x+'" role="button"><span class="cke_label">'+b.lang.image.resetSize+'</span></a>'+'</div>'}]},{type:'vbox',padding:1,children:[{type:'text',id:'txtBorder',width:'60px',label:b.lang.image.border,'default':'',onKeyUp:function(){l(this.getDialog());},onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:CKEDITOR.dialog.validate.integer(b.lang.image.validateBorder),setup:function(B,C){if(B==d){var D,E=C.getStyle('border-width');E=E&&E.match(/^(\d+px)(?: \1 \1 \1)?$/);D=E&&parseInt(E[1],10);isNaN(parseInt(D,10))&&(D=C.getAttribute('border'));this.setValue(D);}},commit:function(B,C,D){var E=parseInt(this.getValue(),10);if(B==d||B==f){if(!isNaN(E)){C.setStyle('border-width',CKEDITOR.tools.cssLength(E));C.setStyle('border-style','solid');}else if(!E&&this.isChanged())C.removeStyle('border');if(!D&&B==d)C.removeAttribute('border');}else if(B==g){C.removeAttribute('border');C.removeStyle('border-width');C.removeStyle('border-style');C.removeStyle('border-color');}}},{type:'text',id:'txtHSpace',width:'60px',label:b.lang.image.hSpace,'default':'',onKeyUp:function(){l(this.getDialog());},onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:CKEDITOR.dialog.validate.integer(b.lang.image.validateHSpace),setup:function(B,C){if(B==d){var D,E,F,G=C.getStyle('margin-left'),H=C.getStyle('margin-right');G=G&&G.match(j);H=H&&H.match(j);E=parseInt(G,10);F=parseInt(H,10);D=E==F&&E;isNaN(parseInt(D,10))&&(D=C.getAttribute('hspace'));this.setValue(D);}},commit:function(B,C,D){var E=parseInt(this.getValue(),10);if(B==d||B==f){if(!isNaN(E)){C.setStyle('margin-left',CKEDITOR.tools.cssLength(E)); C.setStyle('margin-right',CKEDITOR.tools.cssLength(E));}else if(!E&&this.isChanged()){C.removeStyle('margin-left');C.removeStyle('margin-right');}if(!D&&B==d)C.removeAttribute('hspace');}else if(B==g){C.removeAttribute('hspace');C.removeStyle('margin-left');C.removeStyle('margin-right');}}},{type:'text',id:'txtVSpace',width:'60px',label:b.lang.image.vSpace,'default':'',onKeyUp:function(){l(this.getDialog());},onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:CKEDITOR.dialog.validate.integer(b.lang.image.validateVSpace),setup:function(B,C){if(B==d){var D,E,F,G=C.getStyle('margin-top'),H=C.getStyle('margin-bottom');G=G&&G.match(j);H=H&&H.match(j);E=parseInt(G,10);F=parseInt(H,10);D=E==F&&E;isNaN(parseInt(D,10))&&(D=C.getAttribute('vspace'));this.setValue(D);}},commit:function(B,C,D){var E=parseInt(this.getValue(),10);if(B==d||B==f){if(!isNaN(E)){C.setStyle('margin-top',CKEDITOR.tools.cssLength(E));C.setStyle('margin-bottom',CKEDITOR.tools.cssLength(E));}else if(!E&&this.isChanged()){C.removeStyle('margin-top');C.removeStyle('margin-bottom');}if(!D&&B==d)C.removeAttribute('vspace');}else if(B==g){C.removeAttribute('vspace');C.removeStyle('margin-top');C.removeStyle('margin-bottom');}}},{id:'cmbAlign',type:'select',widths:['35%','65%'],style:'width:90px',label:b.lang.common.align,'default':'',items:[[b.lang.common.notSet,''],[b.lang.common.alignLeft,'left'],[b.lang.common.alignRight,'right']],onChange:function(){l(this.getDialog());o.call(this,'advanced:txtdlgGenStyle');},setup:function(B,C){if(B==d){var D=C.getStyle('float');switch(D){case 'inherit':case 'none':D='';}!D&&(D=(C.getAttribute('align')||'').toLowerCase());this.setValue(D);}},commit:function(B,C,D){var E=this.getValue();if(B==d||B==f){if(E)C.setStyle('float',E);else C.removeStyle('float');if(!D&&B==d){E=(C.getAttribute('align')||'').toLowerCase();switch(E){case 'left':case 'right':C.removeAttribute('align');}}}else if(B==g)C.removeStyle('float');}}]}]},{type:'vbox',height:'250px',children:[{type:'html',id:'htmlPreview',style:'width:95%;',html:'<div>'+CKEDITOR.tools.htmlEncode(b.lang.common.preview)+'<br>'+'<div id="'+y+'" class="ImagePreviewLoader" style="display:none"><div class="loading"> </div></div>'+'<div class="ImagePreviewBox"><table><tr><td>'+'<a href="javascript:void(0)" target="_blank" onclick="return false;" id="'+z+'">'+'<img id="'+A+'" alt="" /></a>'+(b.config.image_previewText||'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.')+'</td></tr></table></div></div>'}]}]}]},{id:'Link',label:b.lang.link.title,padding:0,elements:[{id:'txtUrl',type:'text',label:b.lang.common.url,style:'width: 100%','default':'',setup:function(B,C){if(B==e){var D=C.data('cke-saved-href'); if(!D)D=C.getAttribute('href');this.setValue(D);}},commit:function(B,C){var E=this;if(B==e)if(E.getValue()||E.isChanged()){var D=decodeURI(E.getValue());C.data('cke-saved-href',D);C.setAttribute('href',D);if(E.getValue()||!b.config.image_removeLinkByEmptyURL)E.getDialog().addLink=true;}}},{type:'button',id:'browse',filebrowser:{action:'Browse',target:'Link:txtUrl',url:b.config.filebrowserImageBrowseLinkUrl},style:'float:right',hidden:true,label:b.lang.common.browseServer},{id:'cmbTarget',type:'select',label:b.lang.common.target,'default':'',items:[[b.lang.common.notSet,''],[b.lang.common.targetNew,'_blank'],[b.lang.common.targetTop,'_top'],[b.lang.common.targetSelf,'_self'],[b.lang.common.targetParent,'_parent']],setup:function(B,C){if(B==e)this.setValue(C.getAttribute('target')||'');},commit:function(B,C){if(B==e)if(this.getValue()||this.isChanged())C.setAttribute('target',this.getValue());}}]},{id:'Upload',hidden:true,filebrowser:'uploadButton',label:b.lang.image.upload,elements:[{type:'file',id:'upload',label:b.lang.image.btnUpload,style:'height:40px',size:38},{type:'fileButton',id:'uploadButton',filebrowser:'info:txtUrl',label:b.lang.image.btnUpload,'for':['Upload','upload']}]},{id:'advanced',label:b.lang.common.advancedTab,elements:[{type:'hbox',widths:['50%','25%','25%'],children:[{type:'text',id:'linkId',label:b.lang.common.id,setup:function(B,C){if(B==d)this.setValue(C.getAttribute('id'));},commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('id',this.getValue());}},{id:'cmbLangDir',type:'select',style:'width : 100px;',label:b.lang.common.langDir,'default':'',items:[[b.lang.common.notSet,''],[b.lang.common.langDirLtr,'ltr'],[b.lang.common.langDirRtl,'rtl']],setup:function(B,C){if(B==d)this.setValue(C.getAttribute('dir'));},commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('dir',this.getValue());}},{type:'text',id:'txtLangCode',label:b.lang.common.langCode,'default':'',setup:function(B,C){if(B==d)this.setValue(C.getAttribute('lang'));},commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('lang',this.getValue());}}]},{type:'text',id:'txtGenLongDescr',label:b.lang.common.longDescr,setup:function(B,C){if(B==d)this.setValue(C.getAttribute('longDesc'));},commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('longDesc',this.getValue());}},{type:'hbox',widths:['50%','50%'],children:[{type:'text',id:'txtGenClass',label:b.lang.common.cssClass,'default':'',setup:function(B,C){if(B==d)this.setValue(C.getAttribute('class')); },commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('class',this.getValue());}},{type:'text',id:'txtGenTitle',label:b.lang.common.advisoryTitle,'default':'',onChange:function(){l(this.getDialog());},setup:function(B,C){if(B==d)this.setValue(C.getAttribute('title'));},commit:function(B,C){var D=this;if(B==d){if(D.getValue()||D.isChanged())C.setAttribute('title',D.getValue());}else if(B==f)C.setAttribute('title',D.getValue());else if(B==g)C.removeAttribute('title');}}]},{type:'text',id:'txtdlgGenStyle',label:b.lang.common.cssStyle,validate:CKEDITOR.dialog.validate.inlineStyle(b.lang.common.invalidInlineStyle),'default':'',setup:function(B,C){if(B==d){var D=C.getAttribute('style');if(!D&&C.$.style.cssText)D=C.$.style.cssText;this.setValue(D);var E=C.$.style.height,F=C.$.style.width,G=(E?E:'').match(h),H=(F?F:'').match(h);this.attributesInStyle={height:!!G,width:!!H};}},onChange:function(){o.call(this,['info:cmbFloat','info:cmbAlign','info:txtVSpace','info:txtHSpace','info:txtBorder','info:txtWidth','info:txtHeight']);l(this);},commit:function(B,C){if(B==d&&(this.getValue()||this.isChanged()))C.setAttribute('style',this.getValue());}}]}]};};CKEDITOR.dialog.add('image',function(b){return a(b,'image');});CKEDITOR.dialog.add('imagebutton',function(b){return a(b,'imagebutton');});})(); ���������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/pastefromword/��������������������������������0000775�0001750�0001750�00000000000�12262650742�024431� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/pastefromword/filter/�������������������������0000775�0001750�0001750�00000000000�12262650742�025716� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/pastefromword/filter/default.js���������������0000664�0001750�0001750�00000033423�12262650742�027705� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){var a=CKEDITOR.htmlParser.fragment.prototype,b=CKEDITOR.htmlParser.element.prototype;a.onlyChild=b.onlyChild=function(){var u=this.children,v=u.length,w=v==1&&u[0];return w||null;};b.removeAnyChildWithName=function(u){var v=this.children,w=[],x;for(var y=0;y<v.length;y++){x=v[y];if(!x.name)continue;if(x.name==u){w.push(x);v.splice(y--,1);}w=w.concat(x.removeAnyChildWithName(u));}return w;};b.getAncestor=function(u){var v=this.parent;while(v&&!(v.name&&v.name.match(u)))v=v.parent;return v;};a.firstChild=b.firstChild=function(u){var v;for(var w=0;w<this.children.length;w++){v=this.children[w];if(u(v))return v;else if(v.name){v=v.firstChild(u);if(v)return v;}}return null;};b.addStyle=function(u,v,w){var A=this;var x,y='';if(typeof v=='string')y+=u+':'+v+';';else{if(typeof u=='object')for(var z in u){if(u.hasOwnProperty(z))y+=z+':'+u[z]+';';}else y+=u;w=v;}if(!A.attributes)A.attributes={};x=A.attributes.style||'';x=(w?[y,x]:[x,y]).join(';');A.attributes.style=x.replace(/^;|;(?=;)/,'');};CKEDITOR.dtd.parentOf=function(u){var v={};for(var w in this){if(w.indexOf('$')==-1&&this[w][u])v[w]=1;}return v;};function c(u){var v=u.children,w,x,y=u.children.length,z,A,B=/list-style-type:(.*?)(?:;|$)/,C=CKEDITOR.plugins.pastefromword.filters.stylesFilter;x=u.attributes;if(B.exec(x.style))return;for(var D=0;D<y;D++){w=v[D];if(w.attributes.value&&Number(w.attributes.value)==D+1)delete w.attributes.value;z=B.exec(w.attributes.style);if(z)if(z[1]==A||!A)A=z[1];else{A=null;break;}}if(A){for(D=0;D<y;D++){x=v[D].attributes;x.style&&(x.style=C([['list-style-type']])(x.style)||'');}u.addStyle('list-style-type',A);}};var d=/^([.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg|rad|ms|s|hz|khz){1}?/i,e=/^(?:\b0[^\s]*\s*){1,4}$/,f='^m{0,4}(cm|cd|d?c{0,3})(xc|xl|l?x{0,3})(ix|iv|v?i{0,3})$',g=new RegExp(f),h=new RegExp(f.toUpperCase()),i={decimal:/\d+/,'lower-roman':g,'upper-roman':h,'lower-alpha':/^[a-z]+$/,'upper-alpha':/^[A-Z]+$/},j={disc:/[l\u00B7\u2002]/,circle:/[\u006F\u00D8]/,square:/[\u006E\u25C6]/},k={ol:i,ul:j},l=[[1000,'M'],[900,'CM'],[500,'D'],[400,'CD'],[100,'C'],[90,'XC'],[50,'L'],[40,'XL'],[10,'X'],[9,'IX'],[5,'V'],[4,'IV'],[1,'I']],m='ABCDEFGHIJKLMNOPQRSTUVWXYZ';function n(u){u=u.toUpperCase();var v=l.length,w=0;for(var x=0;x<v;++x)for(var y=l[x],z=y[1].length;u.substr(0,z)==y[1];u=u.substr(z))w+=y[0];return w;};function o(u){u=u.toUpperCase();var v=m.length,w=1;for(var x=1;u.length>0;x*=v){w+=m.indexOf(u.charAt(u.length-1))*x;u=u.substr(0,u.length-1);}return w; };var p=0,q=null,r,s=CKEDITOR.plugins.pastefromword={utils:{createListBulletMarker:function(u,v){var w=new CKEDITOR.htmlParser.element('cke:listbullet');w.attributes={'cke:listsymbol':u[0]};w.add(new CKEDITOR.htmlParser.text(v));return w;},isListBulletIndicator:function(u){var v=u.attributes&&u.attributes.style;if(/mso-list\s*:\s*Ignore/i.test(v))return true;},isContainingOnlySpaces:function(u){var v;return(v=u.onlyChild())&&/^(:?\s| )+$/.test(v.value);},resolveList:function(u){var v=u.attributes,w;if((w=u.removeAnyChildWithName('cke:listbullet'))&&w.length&&(w=w[0])){u.name='cke:li';if(v.style)v.style=s.filters.stylesFilter([['text-indent'],['line-height'],[/^margin(:?-left)?$/,null,function(x){var y=x.split(' ');x=CKEDITOR.tools.convertToPx(y[3]||y[1]||y[0]);if(!p&&q!==null&&x>q)p=x-q;q=x;v['cke:indent']=p&&Math.ceil(x/p)+1||1;}],[/^mso-list$/,null,function(x){x=x.split(' ');var y=Number(x[0].match(/\d+/)),z=Number(x[1].match(/\d+/));if(z==1){y!==r&&(v['cke:reset']=1);r=y;}v['cke:indent']=z;}]])(v.style,u)||'';if(!v['cke:indent']){q=0;v['cke:indent']=1;}CKEDITOR.tools.extend(v,w.attributes);return true;}else r=q=p=null;return false;},getStyleComponents:(function(){var u=CKEDITOR.dom.element.createFromHtml('<div style="position:absolute;left:-9999px;top:-9999px;"></div>',CKEDITOR.document);CKEDITOR.document.getBody().append(u);return function(v,w,x){u.setStyle(v,w);var y={},z=x.length;for(var A=0;A<z;A++)y[x[A]]=u.getStyle(x[A]);return y;};})(),listDtdParents:CKEDITOR.dtd.parentOf('ol')},filters:{flattenList:function(u,v){v=typeof v=='number'?v:1;var w=u.attributes,x;switch(w.type){case 'a':x='lower-alpha';break;case '1':x='decimal';break;}var y=u.children,z;for(var A=0;A<y.length;A++){z=y[A];if(z.name in CKEDITOR.dtd.$listItem){var B=z.attributes,C=z.children,D=C.length,E=C[D-1];if(E.name in CKEDITOR.dtd.$list){u.add(E,A+1);if(!--C.length)y.splice(A--,1);}z.name='cke:li';w.start&&!A&&(B.value=w.start);s.filters.stylesFilter([['tab-stops',null,function(H){var I=H.split(' ')[1].match(d);I&&(q=CKEDITOR.tools.convertToPx(I[0]));}],v==1?['mso-list',null,function(H){H=H.split(' ');var I=Number(H[0].match(/\d+/));I!==r&&(B['cke:reset']=1);r=I;}]:null])(B.style);B['cke:indent']=v;B['cke:listtype']=u.name;B['cke:list-style-type']=x;}else if(z.name in CKEDITOR.dtd.$list){arguments.callee.apply(this,[z,v+1]);y=y.slice(0,A).concat(z.children).concat(y.slice(A+1));u.children=[];for(var F=0,G=y.length;F<G;F++)u.add(y[F]);}}delete u.name;w['cke:list']=1;},assembleList:function(u){var v=u.children,w,x,y,z,A,B,C,D=[],E,F,G,H,I,J; for(var K=0;K<v.length;K++){w=v[K];if('cke:li'==w.name){w.name='li';x=w;y=x.attributes;G=y['cke:listsymbol'];G=G&&G.match(/^(?:[(]?)([^\s]+?)([.)]?)$/);H=I=J=null;if(y['cke:ignored']){v.splice(K--,1);continue;}y['cke:reset']&&(C=A=B=null);z=Number(y['cke:indent']);if(z!=A)F=E=null;if(!G){H=y['cke:listtype']||'ol';I=y['cke:list-style-type'];}else{if(F&&k[F][E].test(G[1])){H=F;I=E;}else for(var L in k)for(var M in k[L]){if(k[L][M].test(G[1]))if(L=='ol'&&/alpha|roman/.test(M)){var N=/roman/.test(M)?n(G[1]):o(G[1]);if(!J||N<J){J=N;H=L;I=M;}}else{H=L;I=M;break;}}!H&&(H=G[2]?'ol':'ul');}F=H;E=I||(H=='ol'?'decimal':'disc');if(I&&I!=(H=='ol'?'decimal':'disc'))x.addStyle('list-style-type',I);if(H=='ol'&&G){switch(I){case 'decimal':J=Number(G[1]);break;case 'lower-roman':case 'upper-roman':J=n(G[1]);break;case 'lower-alpha':case 'upper-alpha':J=o(G[1]);break;}x.attributes.value=J;}if(!C){D.push(C=new CKEDITOR.htmlParser.element(H));C.add(x);v[K]=C;}else{if(z>A){D.push(C=new CKEDITOR.htmlParser.element(H));C.add(x);B.add(C);}else if(z<A){var O=A-z,P;while(O--&&(P=C.parent))C=P.parent;C.add(x);}else C.add(x);v.splice(K--,1);}B=x;A=z;}else if(C)C=A=B=null;}for(K=0;K<D.length;K++)c(D[K]);C=A=B=r=q=p=null;},falsyFilter:function(u){return false;},stylesFilter:function(u,v){return function(w,x){var y=[];(w||'').replace(/"/g,'"').replace(/\s*([^ :;]+)\s*:\s*([^;]+)\s*(?=;|$)/g,function(A,B,C){B=B.toLowerCase();B=='font-family'&&(C=C.replace(/["']/g,''));var D,E,F,G;for(var H=0;H<u.length;H++){if(u[H]){D=u[H][0];E=u[H][1];F=u[H][2];G=u[H][3];if(B.match(D)&&(!E||C.match(E))){B=G||B;v&&(F=F||C);if(typeof F=='function')F=F(C,x,B);if(F&&F.push)B=F[0],F=F[1];if(typeof F=='string')y.push([B,F]);return;}}}!v&&y.push([B,C]);});for(var z=0;z<y.length;z++)y[z]=y[z].join(':');return y.length?y.join(';')+';':false;};},elementMigrateFilter:function(u,v){return function(w){var x=v?new CKEDITOR.style(u,v)._.definition:u;w.name=x.element;CKEDITOR.tools.extend(w.attributes,CKEDITOR.tools.clone(x.attributes));w.addStyle(CKEDITOR.style.getStyleText(x));};},styleMigrateFilter:function(u,v){var w=this.elementMigrateFilter;return function(x,y){var z=new CKEDITOR.htmlParser.element(null),A={};A[v]=x;w(u,A)(z);z.children=y.children;y.children=[z];};},bogusAttrFilter:function(u,v){if(v.name.indexOf('cke:')==-1)return false;},applyStyleFilter:null},getRules:function(u){var v=CKEDITOR.dtd,w=CKEDITOR.tools.extend({},v.$block,v.$listItem,v.$tableContent),x=u.config,y=this.filters,z=y.falsyFilter,A=y.stylesFilter,B=y.elementMigrateFilter,C=CKEDITOR.tools.bind(this.filters.styleMigrateFilter,this.filters),D=this.utils.createListBulletMarker,E=y.flattenList,F=y.assembleList,G=this.utils.isListBulletIndicator,H=this.utils.isContainingOnlySpaces,I=this.utils.resolveList,J=function(O){O=CKEDITOR.tools.convertToPx(O); return isNaN(O)?O:O+'px';},K=this.utils.getStyleComponents,L=this.utils.listDtdParents,M=x.pasteFromWordRemoveFontStyles!==false,N=x.pasteFromWordRemoveStyles!==false;return{elementNames:[[/meta|link|script/,'']],root:function(O){O.filterChildren();F(O);},elements:{'^':function(O){var P;if(CKEDITOR.env.gecko&&(P=y.applyStyleFilter))P(O);},$:function(O){var P=O.name||'',Q=O.attributes;if(P in w&&Q.style)Q.style=A([[/^(:?width|height)$/,null,J]])(Q.style)||'';if(P.match(/h\d/)){O.filterChildren();if(I(O))return;B(x['format_'+P])(O);}else if(P in v.$inline){O.filterChildren();if(H(O))delete O.name;}else if(P.indexOf(':')!=-1&&P.indexOf('cke')==-1){O.filterChildren();if(P=='v:imagedata'){var R=O.attributes['o:href'];if(R)O.attributes.src=R;O.name='img';return;}delete O.name;}if(P in L){O.filterChildren();F(O);}},style:function(O){if(CKEDITOR.env.gecko){var P=O.onlyChild().value.match(/\/\* Style Definitions \*\/([\s\S]*?)\/\*/),Q=P&&P[1],R={};if(Q){Q.replace(/[\n\r]/g,'').replace(/(.+?)\{(.+?)\}/g,function(S,T,U){T=T.split(',');var V=T.length,W;for(var X=0;X<V;X++)CKEDITOR.tools.trim(T[X]).replace(/^(\w+)(\.[\w-]+)?$/g,function(Y,Z,aa){Z=Z||'*';aa=aa.substring(1,aa.length);if(aa.match(/MsoNormal/))return;if(!R[Z])R[Z]={};if(aa)R[Z][aa]=U;else R[Z]=U;});});y.applyStyleFilter=function(S){var T=R['*']?'*':S.name,U=S.attributes&&S.attributes['class'],V;if(T in R){V=R[T];if(typeof V=='object')V=V[U];V&&S.addStyle(V,true);}};}}return false;},p:function(O){if(/MsoListParagraph/.exec(O.attributes['class'])){var P=O.firstChild(function(S){return S.type==CKEDITOR.NODE_TEXT&&!H(S.parent);}),Q=P&&P.parent,R=Q&&Q.attributes;R&&!R.style&&(R.style='mso-list: Ignore;');}O.filterChildren();if(I(O))return;if(x.enterMode==CKEDITOR.ENTER_BR){delete O.name;O.add(new CKEDITOR.htmlParser.element('br'));}else B(x['format_'+(x.enterMode==CKEDITOR.ENTER_P?'p':'div')])(O);},div:function(O){var P=O.onlyChild();if(P&&P.name=='table'){var Q=O.attributes;P.attributes=CKEDITOR.tools.extend(P.attributes,Q);Q.style&&P.addStyle(Q.style);var R=new CKEDITOR.htmlParser.element('div');R.addStyle('clear','both');O.add(R);delete O.name;}},td:function(O){if(O.getAncestor('thead'))O.name='th';},ol:E,ul:E,dl:E,font:function(O){if(G(O.parent)){delete O.name;return;}O.filterChildren();var P=O.attributes,Q=P.style,R=O.parent;if('font'==R.name){CKEDITOR.tools.extend(R.attributes,O.attributes);Q&&R.addStyle(Q);delete O.name;}else{Q=Q||'';if(P.color){P.color!='#000000'&&(Q+='color:'+P.color+';');delete P.color; }if(P.face){Q+='font-family:'+P.face+';';delete P.face;}if(P.size){Q+='font-size:'+(P.size>3?'large':P.size<3?'small':'medium')+';';delete P.size;}O.name='span';O.addStyle(Q);}},span:function(O){if(G(O.parent))return false;O.filterChildren();if(H(O)){delete O.name;return null;}if(G(O)){var P=O.firstChild(function(Y){return Y.value||Y.name=='img';}),Q=P&&(P.value||'l.'),R=Q&&Q.match(/^(?:[(]?)([^\s]+?)([.)]?)$/);if(R){var S=D(R,Q),T=O.getAncestor('span');if(T&&/ mso-hide:\s*all|display:\s*none /.test(T.attributes.style))S.attributes['cke:ignored']=1;return S;}}var U=O.children,V=O.attributes,W=V&&V.style,X=U&&U[0];if(W)V.style=A([['line-height'],[/^font-family$/,null,!M?C(x.font_style,'family'):null],[/^font-size$/,null,!M?C(x.fontSize_style,'size'):null],[/^color$/,null,!M?C(x.colorButton_foreStyle,'color'):null],[/^background-color$/,null,!M?C(x.colorButton_backStyle,'color'):null]])(W,O)||'';return null;},b:B(x.coreStyles_bold),i:B(x.coreStyles_italic),u:B(x.coreStyles_underline),s:B(x.coreStyles_strike),sup:B(x.coreStyles_superscript),sub:B(x.coreStyles_subscript),a:function(O){var P=O.attributes;if(P&&!P.href&&P.name)delete O.name;else if(CKEDITOR.env.webkit&&P.href&&P.href.match(/file:\/\/\/[\S]+#/i))P.href=P.href.replace(/file:\/\/\/[^#]+/i,'');},'cke:listbullet':function(O){if(O.getAncestor(/h\d/)&&!x.pasteFromWordNumberedHeadingToList)delete O.name;}},attributeNames:[[/^onmouse(:?out|over)/,''],[/^onload$/,''],[/(?:v|o):\w+/,''],[/^lang/,'']],attributes:{style:A(N?[[/^list-style-type$/,null],[/^margin$|^margin-(?!bottom|top)/,null,function(O,P,Q){if(P.name in {p:1,div:1}){var R=x.contentsLangDirection=='ltr'?'margin-left':'margin-right';if(Q=='margin')O=K(Q,O,[R])[R];else if(Q!=R)return null;if(O&&!e.test(O))return[R,O];}return null;}],[/^clear$/],[/^border.*|margin.*|vertical-align|float$/,null,function(O,P){if(P.name=='img')return O;}],[/^width|height$/,null,function(O,P){if(P.name in {table:1,td:1,th:1,img:1})return O;}]]:[[/^mso-/],[/-color$/,null,function(O){if(O=='transparent')return false;if(CKEDITOR.env.gecko)return O.replace(/-moz-use-text-color/g,'transparent');}],[/^margin$/,e],['text-indent','0cm'],['page-break-before'],['tab-stops'],['display','none'],M?[/font-?/]:null],N),width:function(O,P){if(P.name in v.$tableContent)return false;},border:function(O,P){if(P.name in v.$tableContent)return false;},'class':z,bgcolor:z,valign:N?z:function(O,P){P.addStyle('vertical-align',O);return false;}},comment:!CKEDITOR.env.ie?function(O,P){var Q=O.match(/<img.*?>/),R=O.match(/^\[if !supportLists\]([\s\S]*?)\[endif\]$/); if(R){var S=R[1]||Q&&'l.',T=S&&S.match(/>(?:[(]?)([^\s]+?)([.)]?)</);return D(T,S);}if(CKEDITOR.env.gecko&&Q){var U=CKEDITOR.htmlParser.fragment.fromHtml(Q[0]).children[0],V=P.previous,W=V&&V.value.match(/<v:imagedata[^>]*o:href=['"](.*?)['"]/),X=W&&W[1];X&&(U.attributes.src=X);return U;}return false;}:z};}},t=function(){this.dataFilter=new CKEDITOR.htmlParser.filter();};t.prototype={toHtml:function(u){var v=CKEDITOR.htmlParser.fragment.fromHtml(u,false),w=new CKEDITOR.htmlParser.basicWriter();v.writeHtml(w,this.dataFilter);return w.getHtml(true);}};CKEDITOR.cleanWord=function(u,v){if(CKEDITOR.env.gecko)u=u.replace(/(<!--\[if[^<]*?\])-->([\S\s]*?)<!--(\[endif\]-->)/gi,'$1$2$3');var w=new t(),x=w.dataFilter;x.addRules(CKEDITOR.plugins.pastefromword.getRules(v));v.fire('beforeCleanWord',{filter:x});try{u=w.toHtml(u,false);}catch(y){alert(v.lang.pastefromword.error);}u=u.replace(/cke:.*?".*?"/g,'');u=u.replace(/style=""/g,'');u=u.replace(/<span>/g,'');return u;};})(); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/iframedialog/���������������������������������0000775�0001750�0001750�00000000000�12262650742�024160� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/iframedialog/plugin.js������������������������0000664�0001750�0001750�00000003671�12262650742�026023� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.add('iframedialog',{requires:['dialog'],onLoad:function(){CKEDITOR.dialog.addIframe=function(a,b,c,d,e,f,g){var h={type:'iframe',src:c,width:'100%',height:'100%'};if(typeof f=='function')h.onContentLoad=f;else h.onContentLoad=function(){var k=this.getElement(),l=k.$.contentWindow;if(l.onDialogEvent){var m=this.getDialog(),n=function(o){return l.onDialogEvent(o);};m.on('ok',n);m.on('cancel',n);m.on('resize',n);m.on('hide',function(o){m.removeListener('ok',n);m.removeListener('cancel',n);m.removeListener('resize',n);o.removeListener();});l.onDialogEvent({name:'load',sender:this,editor:m._.editor});}};var i={title:b,minWidth:d,minHeight:e,contents:[{id:'iframe',label:b,expand:true,elements:[h]}]};for(var j in g)i[j]=g[j];this.add(a,function(){return i;});};(function(){var a=function(b,c,d){if(arguments.length<3)return;var e=this._||(this._={}),f=c.onContentLoad&&CKEDITOR.tools.bind(c.onContentLoad,this),g=CKEDITOR.tools.cssLength(c.width),h=CKEDITOR.tools.cssLength(c.height);e.frameId=CKEDITOR.tools.getNextId()+'_iframe';b.on('load',function(){var k=CKEDITOR.document.getById(e.frameId),l=k.getParent();l.setStyles({width:g,height:h});});var i={src:'%2',id:e.frameId,frameborder:0,allowtransparency:true},j=[];if(typeof c.onContentLoad=='function')i.onload='CKEDITOR.tools.callFunction(%1);';CKEDITOR.ui.dialog.uiElement.call(this,b,c,j,'iframe',{width:g,height:h},i,'');d.push('<div style="width:'+g+';height:'+h+';" id="'+this.domId+'"></div>');j=j.join('');b.on('show',function(){var k=CKEDITOR.document.getById(e.frameId),l=k.getParent(),m=CKEDITOR.tools.addFunction(f),n=j.replace('%1',m).replace('%2',CKEDITOR.tools.htmlEncode(c.src));l.setHtml(n);});};a.prototype=new CKEDITOR.ui.dialog.uiElement();CKEDITOR.dialog.addUIElement('iframe',{build:function(b,c,d){return new a(b,c,d);}});})();}}); �����������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/link/�����������������������������������������0000775�0001750�0001750�00000000000�12262650742�022472� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/link/images/����������������������������������0000775�0001750�0001750�00000000000�12262650742�023737� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/link/images/anchor.gif������������������������0000664�0001750�0001750�00000000270�12262650742�025677� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a�� ����33��������������������!�� �,�������e0IiA3#( ől1rd F}ΐـ:JƋ@FĒ8/̬PUKzU-O6sk]rB���;����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/link/dialogs/���������������������������������0000775�0001750�0001750�00000000000�12262650742�024114� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/link/dialogs/link.js��������������������������0000664�0001750�0001750�00000041001�12262650742�025403� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('link',function(a){var b=CKEDITOR.plugins.link,c=function(){var F=this.getDialog(),G=F.getContentElement('target','popupFeatures'),H=F.getContentElement('target','linkTargetName'),I=this.getValue();if(!G||!H)return;G=G.getElement();G.hide();H.setValue('');switch(I){case 'frame':H.setLabel(a.lang.link.targetFrameName);H.getElement().show();break;case 'popup':G.show();H.setLabel(a.lang.link.targetPopupName);H.getElement().show();break;default:H.setValue(I);H.getElement().hide();break;}},d=function(){var F=this.getDialog(),G=['urlOptions','anchorOptions','emailOptions'],H=this.getValue(),I=F.definition.getContents('upload'),J=I&&I.hidden;if(H=='url'){if(a.config.linkShowTargetTab)F.showPage('target');if(!J)F.showPage('upload');}else{F.hidePage('target');if(!J)F.hidePage('upload');}for(var K=0;K<G.length;K++){var L=F.getContentElement('info',G[K]);if(!L)continue;L=L.getElement().getParent().getParent();if(G[K]==H+'Options')L.show();else L.hide();}F.layout();},e=/^javascript:/,f=/^mailto:([^?]+)(?:\?(.+))?$/,g=/subject=([^;?:@&=$,\/]*)/,h=/body=([^;?:@&=$,\/]*)/,i=/^#(.*)$/,j=/^((?:http|https|ftp|news):\/\/)?(.*)$/,k=/^(_(?:self|top|parent|blank))$/,l=/^javascript:void\(location\.href='mailto:'\+String\.fromCharCode\(([^)]+)\)(?:\+'(.*)')?\)$/,m=/^javascript:([^(]+)\(([^)]+)\)$/,n=/\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;*\s*/,o=/(?:^|,)([^=]+)=(\d+|yes|no)/gi,p=function(F,G){var H=G&&(G.data('cke-saved-href')||G.getAttribute('href'))||'',I,J,K,L,M={};if(I=H.match(e))if(y=='encode')H=H.replace(l,function(ae,af,ag){return 'mailto:'+String.fromCharCode.apply(String,af.split(','))+(ag&&w(ag));});else if(y)H.replace(m,function(ae,af,ag){if(af==z.name){M.type='email';var ah=M.email={},ai=/[^,\s]+/g,aj=/(^')|('$)/g,ak=ag.match(ai),al=ak.length,am,an;for(var ao=0;ao<al;ao++){an=decodeURIComponent(w(ak[ao].replace(aj,'')));am=z.params[ao].toLowerCase();ah[am]=an;}ah.address=[ah.name,ah.domain].join('@');}});if(!M.type)if(K=H.match(i)){M.type='anchor';M.anchor={};M.anchor.name=M.anchor.id=K[1];}else if(J=H.match(f)){var N=H.match(g),O=H.match(h);M.type='email';var P=M.email={};P.address=J[1];N&&(P.subject=decodeURIComponent(N[1]));O&&(P.body=decodeURIComponent(O[1]));}else if(H&&(L=H.match(j))){M.type='url';M.url={};M.url.protocol=L[1];M.url.url=L[2];}else M.type='url';if(G){var Q=G.getAttribute('target');M.target={};M.adv={};if(!Q){var R=G.data('cke-pa-onclick')||G.getAttribute('onclick'),S=R&&R.match(n); if(S){M.target.type='popup';M.target.name=S[1];var T;while(T=o.exec(S[2])){if((T[2]=='yes'||T[2]=='1')&&!(T[1] in {height:1,width:1,top:1,left:1}))M.target[T[1]]=true;else if(isFinite(T[2]))M.target[T[1]]=T[2];}}}else{var U=Q.match(k);if(U)M.target.type=M.target.name=Q;else{M.target.type='frame';M.target.name=Q;}}var V=this,W=function(ae,af){var ag=G.getAttribute(af);if(ag!==null)M.adv[ae]=ag||'';};W('advId','id');W('advLangDir','dir');W('advAccessKey','accessKey');M.adv.advName=G.data('cke-saved-name')||G.getAttribute('name')||'';W('advLangCode','lang');W('advTabIndex','tabindex');W('advTitle','title');W('advContentType','type');CKEDITOR.plugins.link.synAnchorSelector?M.adv.advCSSClasses=C(G):W('advCSSClasses','class');W('advCharset','charset');W('advStyles','style');W('advRel','rel');}var X=M.anchors=[],Y,Z,aa;if(CKEDITOR.plugins.link.emptyAnchorFix){var ab=F.document.getElementsByTag('a');for(Y=0,Z=ab.count();Y<Z;Y++){aa=ab.getItem(Y);if(aa.data('cke-saved-name')||aa.hasAttribute('name'))X.push({name:aa.data('cke-saved-name')||aa.getAttribute('name'),id:aa.getAttribute('id')});}}else{var ac=new CKEDITOR.dom.nodeList(F.document.$.anchors);for(Y=0,Z=ac.count();Y<Z;Y++){aa=ac.getItem(Y);X[Y]={name:aa.getAttribute('name'),id:aa.getAttribute('id')};}}if(CKEDITOR.plugins.link.fakeAnchor){var ad=F.document.getElementsByTag('img');for(Y=0,Z=ad.count();Y<Z;Y++){if(aa=CKEDITOR.plugins.link.tryRestoreFakeAnchor(F,ad.getItem(Y)))X.push({name:aa.getAttribute('name'),id:aa.getAttribute('id')});}}this._.selectedElement=G;return M;},q=function(F,G){if(G[F])this.setValue(G[F][this.id]||'');},r=function(F){return q.call(this,'target',F);},s=function(F){return q.call(this,'adv',F);},t=function(F,G){if(!G[F])G[F]={};G[F][this.id]=this.getValue()||'';},u=function(F){return t.call(this,'target',F);},v=function(F){return t.call(this,'adv',F);};function w(F){return F.replace(/\\'/g,"'");};function x(F){return F.replace(/'/g,'\\$&');};var y=a.config.emailProtection||'';if(y&&y!='encode'){var z={};y.replace(/^([^(]+)\(([^)]+)\)$/,function(F,G,H){z.name=G;z.params=[];H.replace(/[^,\s]+/g,function(I){z.params.push(I);});});}function A(F){var G,H=z.name,I=z.params,J,K;G=[H,'('];for(var L=0;L<I.length;L++){J=I[L].toLowerCase();K=F[J];L>0&&G.push(',');G.push("'",K?x(encodeURIComponent(F[J])):'',"'");}G.push(')');return G.join('');};function B(F){var G,H=F.length,I=[];for(var J=0;J<H;J++){G=F.charCodeAt(J);I.push(G);}return 'String.fromCharCode('+I.join(',')+')';};function C(F){var G=F.getAttribute('class'); return G?G.replace(/\s*(?:cke_anchor_empty|cke_anchor)(?:\s*$)?/g,''):'';};var D=a.lang.common,E=a.lang.link;return{title:E.title,minWidth:350,minHeight:230,contents:[{id:'info',label:E.info,title:E.info,elements:[{id:'linkType',type:'select',label:E.type,'default':'url',items:[[E.toUrl,'url'],[E.toAnchor,'anchor'],[E.toEmail,'email']],onChange:d,setup:function(F){if(F.type)this.setValue(F.type);},commit:function(F){F.type=this.getValue();}},{type:'vbox',id:'urlOptions',children:[{type:'hbox',widths:['25%','75%'],children:[{id:'protocol',type:'select',label:D.protocol,'default':'http://',items:[['http://‎','http://'],['https://‎','https://'],['ftp://‎','ftp://'],['news://‎','news://'],[E.other,'']],setup:function(F){if(F.url)this.setValue(F.url.protocol||'');},commit:function(F){if(!F.url)F.url={};F.url.protocol=this.getValue();}},{type:'text',id:'url',label:D.url,required:true,onLoad:function(){this.allowOnChange=true;},onKeyUp:function(){var K=this;K.allowOnChange=false;var F=K.getDialog().getContentElement('info','protocol'),G=K.getValue(),H=/^(http|https|ftp|news):\/\/(?=.)/i,I=/^((javascript:)|[#\/\.\?])/i,J=H.exec(G);if(J){K.setValue(G.substr(J[0].length));F.setValue(J[0].toLowerCase());}else if(I.test(G))F.setValue('');K.allowOnChange=true;},onChange:function(){if(this.allowOnChange)this.onKeyUp();},validate:function(){var H=this;var F=H.getDialog();if(F.getContentElement('info','linkType')&&F.getValueOf('info','linkType')!='url')return true;if(/javascript\:/.test(H.getValue())){alert(D.invalidValue);return false;}if(H.getDialog().fakeObj)return true;var G=CKEDITOR.dialog.validate.notEmpty(E.noUrl);return G.apply(H);},setup:function(F){this.allowOnChange=false;if(F.url)this.setValue(F.url.url);this.allowOnChange=true;},commit:function(F){this.onChange();if(!F.url)F.url={};F.url.url=this.getValue();this.allowOnChange=false;}}],setup:function(F){if(!this.getDialog().getContentElement('info','linkType'))this.getElement().show();}},{type:'button',id:'browse',hidden:'true',filebrowser:'info:url',label:D.browseServer}]},{type:'vbox',id:'anchorOptions',width:260,align:'center',padding:0,children:[{type:'fieldset',id:'selectAnchorText',label:E.selectAnchor,setup:function(F){if(F.anchors.length>0)this.getElement().show();else this.getElement().hide();},children:[{type:'hbox',id:'selectAnchor',children:[{type:'select',id:'anchorName','default':'',label:E.anchorName,style:'width: 100%;',items:[['']],setup:function(F){var I=this;I.clear();I.add('');for(var G=0;G<F.anchors.length; G++){if(F.anchors[G].name)I.add(F.anchors[G].name);}if(F.anchor)I.setValue(F.anchor.name);var H=I.getDialog().getContentElement('info','linkType');if(H&&H.getValue()=='email')I.focus();},commit:function(F){if(!F.anchor)F.anchor={};F.anchor.name=this.getValue();}},{type:'select',id:'anchorId','default':'',label:E.anchorId,style:'width: 100%;',items:[['']],setup:function(F){var H=this;H.clear();H.add('');for(var G=0;G<F.anchors.length;G++){if(F.anchors[G].id)H.add(F.anchors[G].id);}if(F.anchor)H.setValue(F.anchor.id);},commit:function(F){if(!F.anchor)F.anchor={};F.anchor.id=this.getValue();}}],setup:function(F){if(F.anchors.length>0)this.getElement().show();else this.getElement().hide();}}]},{type:'html',id:'noAnchors',style:'text-align: center;',html:'<div role="note" tabIndex="-1">'+CKEDITOR.tools.htmlEncode(E.noAnchors)+'</div>',focus:true,setup:function(F){if(F.anchors.length<1)this.getElement().show();else this.getElement().hide();}}],setup:function(F){if(!this.getDialog().getContentElement('info','linkType'))this.getElement().hide();}},{type:'vbox',id:'emailOptions',padding:1,children:[{type:'text',id:'emailAddress',label:E.emailAddress,required:true,validate:function(){var F=this.getDialog();if(!F.getContentElement('info','linkType')||F.getValueOf('info','linkType')!='email')return true;var G=CKEDITOR.dialog.validate.notEmpty(E.noEmail);return G.apply(this);},setup:function(F){if(F.email)this.setValue(F.email.address);var G=this.getDialog().getContentElement('info','linkType');if(G&&G.getValue()=='email')this.select();},commit:function(F){if(!F.email)F.email={};F.email.address=this.getValue();}},{type:'text',id:'emailSubject',label:E.emailSubject,setup:function(F){if(F.email)this.setValue(F.email.subject);},commit:function(F){if(!F.email)F.email={};F.email.subject=this.getValue();}},{type:'textarea',id:'emailBody',label:E.emailBody,rows:3,'default':'',setup:function(F){if(F.email)this.setValue(F.email.body);},commit:function(F){if(!F.email)F.email={};F.email.body=this.getValue();}}],setup:function(F){if(!this.getDialog().getContentElement('info','linkType'))this.getElement().hide();}}]},{id:'target',label:E.target,title:E.target,elements:[{type:'hbox',widths:['50%','50%'],children:[{type:'select',id:'linkTargetType',label:D.target,'default':'notSet',style:'width : 100%;',items:[[D.notSet,'notSet'],[E.targetFrame,'frame'],[E.targetPopup,'popup'],[D.targetNew,'_blank'],[D.targetTop,'_top'],[D.targetSelf,'_self'],[D.targetParent,'_parent']],onChange:c,setup:function(F){if(F.target)this.setValue(F.target.type||'notSet'); c.call(this);},commit:function(F){if(!F.target)F.target={};F.target.type=this.getValue();}},{type:'text',id:'linkTargetName',label:E.targetFrameName,'default':'',setup:function(F){if(F.target)this.setValue(F.target.name);},commit:function(F){if(!F.target)F.target={};F.target.name=this.getValue().replace(/\W/gi,'');}}]},{type:'vbox',width:'100%',align:'center',padding:2,id:'popupFeatures',children:[{type:'fieldset',label:E.popupFeatures,children:[{type:'hbox',children:[{type:'checkbox',id:'resizable',label:E.popupResizable,setup:r,commit:u},{type:'checkbox',id:'status',label:E.popupStatusBar,setup:r,commit:u}]},{type:'hbox',children:[{type:'checkbox',id:'location',label:E.popupLocationBar,setup:r,commit:u},{type:'checkbox',id:'toolbar',label:E.popupToolbar,setup:r,commit:u}]},{type:'hbox',children:[{type:'checkbox',id:'menubar',label:E.popupMenuBar,setup:r,commit:u},{type:'checkbox',id:'fullscreen',label:E.popupFullScreen,setup:r,commit:u}]},{type:'hbox',children:[{type:'checkbox',id:'scrollbars',label:E.popupScrollBars,setup:r,commit:u},{type:'checkbox',id:'dependent',label:E.popupDependent,setup:r,commit:u}]},{type:'hbox',children:[{type:'text',widths:['50%','50%'],labelLayout:'horizontal',label:D.width,id:'width',setup:r,commit:u},{type:'text',labelLayout:'horizontal',widths:['50%','50%'],label:E.popupLeft,id:'left',setup:r,commit:u}]},{type:'hbox',children:[{type:'text',labelLayout:'horizontal',widths:['50%','50%'],label:D.height,id:'height',setup:r,commit:u},{type:'text',labelLayout:'horizontal',label:E.popupTop,widths:['50%','50%'],id:'top',setup:r,commit:u}]}]}]}]},{id:'upload',label:E.upload,title:E.upload,hidden:true,filebrowser:'uploadButton',elements:[{type:'file',id:'upload',label:D.upload,style:'height:40px',size:29},{type:'fileButton',id:'uploadButton',label:D.uploadSubmit,filebrowser:'info:url','for':['upload','upload']}]},{id:'advanced',label:E.advanced,title:E.advanced,elements:[{type:'vbox',padding:1,children:[{type:'hbox',widths:['45%','35%','20%'],children:[{type:'text',id:'advId',label:E.id,setup:s,commit:v},{type:'select',id:'advLangDir',label:E.langDir,'default':'',style:'width:110px',items:[[D.notSet,''],[E.langDirLTR,'ltr'],[E.langDirRTL,'rtl']],setup:s,commit:v},{type:'text',id:'advAccessKey',width:'80px',label:E.acccessKey,maxLength:1,setup:s,commit:v}]},{type:'hbox',widths:['45%','35%','20%'],children:[{type:'text',label:E.name,id:'advName',setup:s,commit:v},{type:'text',label:E.langCode,id:'advLangCode',width:'110px','default':'',setup:s,commit:v},{type:'text',label:E.tabIndex,id:'advTabIndex',width:'80px',maxLength:5,setup:s,commit:v}]}]},{type:'vbox',padding:1,children:[{type:'hbox',widths:['45%','55%'],children:[{type:'text',label:E.advisoryTitle,'default':'',id:'advTitle',setup:s,commit:v},{type:'text',label:E.advisoryContentType,'default':'',id:'advContentType',setup:s,commit:v}]},{type:'hbox',widths:['45%','55%'],children:[{type:'text',label:E.cssClasses,'default':'',id:'advCSSClasses',setup:s,commit:v},{type:'text',label:E.charset,'default':'',id:'advCharset',setup:s,commit:v}]},{type:'hbox',widths:['45%','55%'],children:[{type:'text',label:E.rel,'default':'',id:'advRel',setup:s,commit:v},{type:'text',label:E.styles,'default':'',id:'advStyles',validate:CKEDITOR.dialog.validate.inlineStyle(a.lang.common.invalidInlineStyle),setup:s,commit:v}]}]}]}],onShow:function(){var F=this.getParentEditor(),G=F.getSelection(),H=null; if((H=b.getSelectedLink(F))&&H.hasAttribute('href'))G.selectElement(H);else H=null;this.setupContent(p.apply(this,[F,H]));},onOk:function(){var F={},G=[],H={},I=this,J=this.getParentEditor();this.commitContent(H);switch(H.type||'url'){case 'url':var K=H.url&&H.url.protocol!=undefined?H.url.protocol:'http://',L=H.url&&CKEDITOR.tools.trim(H.url.url)||'';F['data-cke-saved-href']=L.indexOf('/')===0?L:K+L;break;case 'anchor':var M=H.anchor&&H.anchor.name,N=H.anchor&&H.anchor.id;F['data-cke-saved-href']='#'+(M||N||'');break;case 'email':var O,P=H.email,Q=P.address;switch(y){case '':case 'encode':var R=encodeURIComponent(P.subject||''),S=encodeURIComponent(P.body||''),T=[];R&&T.push('subject='+R);S&&T.push('body='+S);T=T.length?'?'+T.join('&'):'';if(y=='encode'){O=["javascript:void(location.href='mailto:'+",B(Q)];T&&O.push("+'",x(T),"'");O.push(')');}else O=['mailto:',Q,T];break;default:var U=Q.split('@',2);P.name=U[0];P.domain=U[1];O=['javascript:',A(P)];}F['data-cke-saved-href']=O.join('');break;}if(H.target)if(H.target.type=='popup'){var V=["window.open(this.href, '",H.target.name||'',"', '"],W=['resizable','status','location','toolbar','menubar','fullscreen','scrollbars','dependent'],X=W.length,Y=function(ai){if(H.target[ai])W.push(ai+'='+H.target[ai]);};for(var Z=0;Z<X;Z++)W[Z]=W[Z]+(H.target[W[Z]]?'=yes':'=no');Y('width');Y('left');Y('height');Y('top');V.push(W.join(','),"'); return false;");F['data-cke-pa-onclick']=V.join('');G.push('target');}else{if(H.target.type!='notSet'&&H.target.name)F.target=H.target.name;else G.push('target');G.push('data-cke-pa-onclick','onclick');}if(H.adv){var aa=function(ai,aj){var ak=H.adv[ai];if(ak)F[aj]=ak;else G.push(aj);};aa('advId','id');aa('advLangDir','dir');aa('advAccessKey','accessKey');if(H.adv.advName)F.name=F['data-cke-saved-name']=H.adv.advName;else G=G.concat(['data-cke-saved-name','name']);aa('advLangCode','lang');aa('advTabIndex','tabindex');aa('advTitle','title');aa('advContentType','type');aa('advCSSClasses','class');aa('advCharset','charset');aa('advStyles','style');aa('advRel','rel');}var ab=J.getSelection();F.href=F['data-cke-saved-href'];if(!this._.selectedElement){var ac=ab.getRanges(true);if(ac.length==1&&ac[0].collapsed){var ad=new CKEDITOR.dom.text(H.type=='email'?H.email.address:F['data-cke-saved-href'],J.document);ac[0].insertNode(ad);ac[0].selectNodeContents(ad);ab.selectRanges(ac);}var ae=new CKEDITOR.style({element:'a',attributes:F});ae.type=CKEDITOR.STYLE_INLINE;ae.apply(J.document);}else{var af=this._.selectedElement,ag=af.data('cke-saved-href'),ah=af.getHtml(); af.setAttributes(F);af.removeAttributes(G);if(H.adv&&H.adv.advName&&CKEDITOR.plugins.link.synAnchorSelector)af.addClass(af.getChildCount()?'cke_anchor':'cke_anchor_empty');if(ag==ah||H.type=='email'&&ah.indexOf('@')!=-1)af.setHtml(H.type=='email'?H.email.address:F['data-cke-saved-href']);ab.selectElement(af);delete this._.selectedElement;}},onLoad:function(){if(!a.config.linkShowAdvancedTab)this.hidePage('advanced');if(!a.config.linkShowTargetTab)this.hidePage('target');},onFocus:function(){var F=this.getContentElement('info','linkType'),G;if(F&&F.getValue()=='url'){G=this.getContentElement('info','url');G.select();}}};}); �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/link/dialogs/anchor.js������������������������0000664�0001750�0001750�00000003676�12262650742�025740� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('anchor',function(a){var b=function(d){this._.selectedElement=d;var e=d.data('cke-saved-name');this.setValueOf('info','txtName',e||'');};function c(d,e){return d.createFakeElement(e,'cke_anchor','anchor');};return{title:a.lang.anchor.title,minWidth:300,minHeight:60,onOk:function(){var k=this;var d=CKEDITOR.tools.trim(k.getValueOf('info','txtName')),e={id:d,name:d,'data-cke-saved-name':d};if(k._.selectedElement){if(k._.selectedElement.data('cke-realelement')){var f=c(a,a.document.createElement('a',{attributes:e}));f.replace(k._.selectedElement);}else k._.selectedElement.setAttributes(e);}else{var g=a.getSelection(),h=g&&g.getRanges()[0];if(h.collapsed){if(CKEDITOR.plugins.link.synAnchorSelector)e['class']='cke_anchor_empty';if(CKEDITOR.plugins.link.emptyAnchorFix){e.contenteditable='false';e['data-cke-editable']=1;}var i=a.document.createElement('a',{attributes:e});if(CKEDITOR.plugins.link.fakeAnchor)i=c(a,i);h.insertNode(i);}else{if(CKEDITOR.env.ie&&CKEDITOR.env.version<9)e['class']='cke_anchor';var j=new CKEDITOR.style({element:'a',attributes:e});j.type=CKEDITOR.STYLE_INLINE;j.apply(a.document);}}},onHide:function(){delete this._.selectedElement;},onShow:function(){var h=this;var d=a.getSelection(),e=d.getSelectedElement(),f;if(e){if(CKEDITOR.plugins.link.fakeAnchor){var g=CKEDITOR.plugins.link.tryRestoreFakeAnchor(a,e);g&&b.call(h,g);h._.selectedElement=e;}else if(e.is('a')&&e.hasAttribute('name'))b.call(h,e);}else{f=CKEDITOR.plugins.link.getSelectedLink(a);if(f){b.call(h,f);d.selectElement(f);}}h.getContentElement('info','txtName').focus();},contents:[{id:'info',label:a.lang.anchor.title,accessKey:'I',elements:[{type:'text',id:'txtName',label:a.lang.anchor.name,required:true,validate:function(){if(!this.getValue()){alert(a.lang.anchor.errorName);return false;}return true;}}]}]};}); ������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/styles/���������������������������������������0000775�0001750�0001750�00000000000�12262650742�023060� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/styles/styles/��������������������������������0000775�0001750�0001750�00000000000�12262650742�024403� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/styles/styles/default.js����������������������0000664�0001750�0001750�00000002514�12262650742�026367� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.stylesSet.add('default',[{name:'Blue Title',element:'h3',styles:{color:'Blue'}},{name:'Red Title',element:'h3',styles:{color:'Red'}},{name:'Marker: Yellow',element:'span',styles:{'background-color':'Yellow'}},{name:'Marker: Green',element:'span',styles:{'background-color':'Lime'}},{name:'Big',element:'big'},{name:'Small',element:'small'},{name:'Typewriter',element:'tt'},{name:'Computer Code',element:'code'},{name:'Keyboard Phrase',element:'kbd'},{name:'Sample Text',element:'samp'},{name:'Variable',element:'var'},{name:'Deleted Text',element:'del'},{name:'Inserted Text',element:'ins'},{name:'Cited Work',element:'cite'},{name:'Inline Quotation',element:'q'},{name:'Language: RTL',element:'span',attributes:{dir:'rtl'}},{name:'Language: LTR',element:'span',attributes:{dir:'ltr'}},{name:'Image on Left',element:'img',attributes:{style:'padding: 5px; margin-right: 5px',border:'2',align:'left'}},{name:'Image on Right',element:'img',attributes:{style:'padding: 5px; margin-left: 5px',border:'2',align:'right'}},{name:'Borderless Table',element:'table',styles:{'border-style':'hidden','background-color':'#E6E6FA'}},{name:'Square Bulleted List',element:'ul',styles:{'list-style-type':'square'}}]); ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/tableresize/����������������������������������0000775�0001750�0001750�00000000000�12262650742�024046� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/tableresize/plugin.js�������������������������0000664�0001750�0001750�00000010620�12262650742�025701� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){var a=CKEDITOR.tools.cssLength,b=CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks||CKEDITOR.env.version<7);function c(k){return CKEDITOR.env.ie?k.$.clientWidth:parseInt(k.getComputedStyle('width'),10);};function d(k,l){var m=k.getComputedStyle('border-'+l+'-width'),n={thin:'0px',medium:'1px',thick:'2px'};if(m.indexOf('px')<0)if(m in n&&k.getComputedStyle('border-style')!='none')m=n[m];else m=0;return parseInt(m,10);};function e(k){var l=k.$.rows,m=0,n,o,p;for(var q=0,r=l.length;q<r;q++){p=l[q];n=p.cells.length;if(n>m){m=n;o=p;}}return o;};function f(k){var l=[],m=-1,n=k.getComputedStyle('direction')=='rtl',o=e(k),p=new CKEDITOR.dom.element(k.$.tBodies[0]),q=p.getDocumentPosition();for(var r=0,s=o.cells.length;r<s;r++){var t=new CKEDITOR.dom.element(o.cells[r]),u=o.cells[r+1]&&new CKEDITOR.dom.element(o.cells[r+1]);m+=t.$.colSpan||1;var v,w,x,y=t.getDocumentPosition().x;n?w=y+d(t,'left'):v=y+t.$.offsetWidth-d(t,'right');if(u){y=u.getDocumentPosition().x;n?v=y+u.$.offsetWidth-d(u,'right'):w=y+d(u,'left');}else{y=k.getDocumentPosition().x;n?v=y:w=y+k.$.offsetWidth;}x=Math.max(w-v,3);l.push({table:k,index:m,x:v,y:q.y,width:x,height:p.$.offsetHeight,rtl:n});}return l;};function g(k,l){for(var m=0,n=k.length;m<n;m++){var o=k[m];if(l>=o.x&&l<=o.x+o.width)return o;}return null;};function h(k){(k.data||k).preventDefault();};function i(k){var l,m,n,o,p,q,r,s,t,u;function v(){l=null;q=0;o=0;m.removeListener('mouseup',A);n.removeListener('mousedown',z);n.removeListener('mousemove',B);m.getBody().setStyle('cursor','auto');b?n.remove():n.hide();};function w(){var D=l.index,E=CKEDITOR.tools.buildTableMap(l.table),F=[],G=[],H=Number.MAX_VALUE,I=H,J=l.rtl;for(var K=0,L=E.length;K<L;K++){var M=E[K],N=M[D+(J?1:0)],O=M[D+(J?0:1)];N=N&&new CKEDITOR.dom.element(N);O=O&&new CKEDITOR.dom.element(O);if(!N||!O||!N.equals(O)){N&&(H=Math.min(H,c(N)));O&&(I=Math.min(I,c(O)));F.push(N);G.push(O);}}r=F;s=G;t=l.x-H;u=l.x+I;n.setOpacity(0.5);p=parseInt(n.getStyle('left'),10);q=0;o=1;n.on('mousemove',B);m.on('dragstart',h);};function x(){o=0;n.setOpacity(0);q&&y();var D=l.table;setTimeout(function(){D.removeCustomData('_cke_table_pillars');},0);m.removeListener('dragstart',h);};function y(){var D=l.rtl,E=D?s.length:r.length;for(var F=0;F<E;F++){var G=r[F],H=s[F],I=l.table;CKEDITOR.tools.setTimeout(function(J,K,L,M,N,O){J&&J.setStyle('width',a(Math.max(K+O,0)));L&&L.setStyle('width',a(Math.max(M-O,0)));if(N)I.setStyle('width',a(N+O*(D?-1:1)));},0,this,[G,G&&c(G),H,H&&c(H),(!G||!H)&&c(I)+d(I,'left')+d(I,'right'),q]); }};function z(D){h(D);w();m.on('mouseup',A,this);};function A(D){D.removeListener();x();};function B(D){C(D.data.getPageOffset().x);};m=k.document;n=CKEDITOR.dom.element.createFromHtml('<div data-cke-temp=1 contenteditable=false unselectable=on style="position:absolute;cursor:col-resize;filter:alpha(opacity=0);opacity:0;padding:0;background-color:#004;background-image:none;border:0px none;z-index:10"></div>',m);if(!b)m.getDocumentElement().append(n);this.attachTo=function(D){if(o)return;if(b){m.getBody().append(n);q=0;}l=D;n.setStyles({width:a(D.width),height:a(D.height),left:a(D.x),top:a(D.y)});b&&n.setOpacity(0.25);n.on('mousedown',z,this);m.getBody().setStyle('cursor','col-resize');n.show();};var C=this.move=function(D){if(!l)return 0;if(!o&&(D<l.x||D>l.x+l.width)){v();return 0;}var E=D-Math.round(n.$.offsetWidth/2);if(o){if(E==t||E==u)return 1;E=Math.max(E,t);E=Math.min(E,u);q=E-p;}n.setStyle('left',a(E));return 1;};};function j(k){var l=k.data.getTarget();if(k.name=='mouseout'){if(!l.is('table'))return;var m=new CKEDITOR.dom.element(k.data.$.relatedTarget||k.data.$.toElement);while(m&&m.$&&!m.equals(l)&&!m.is('body'))m=m.getParent();if(!m||m.equals(l))return;}l.getAscendant('table',1).removeCustomData('_cke_table_pillars');k.removeListener();};CKEDITOR.plugins.add('tableresize',{requires:['tabletools'],init:function(k){k.on('contentDom',function(){var l;k.document.getBody().on('mousemove',function(m){m=m.data;var n=m.getPageOffset().x;if(l&&l.move(n)){h(m);return;}var o=m.getTarget(),p,q;if(!o.is('table')&&!o.getAscendant('tbody',1))return;p=o.getAscendant('table',1);if(!(q=p.getCustomData('_cke_table_pillars'))){p.setCustomData('_cke_table_pillars',q=f(p));p.on('mouseout',j);p.on('mousedown',j);}var r=g(q,n);if(r){!l&&(l=new i(k));l.attachTo(r);}});});}});})(); ����������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/stylesheetparser/�����������������������������0000775�0001750�0001750�00000000000�12262650742�025143� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/stylesheetparser/plugin.js��������������������0000664�0001750�0001750�00000002522�12262650742�027000� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){function a(c,d,e){var f=c.join(' ');f=f.replace(/(,|>|\+|~)/g,' ');f=f.replace(/\[[^\]]*/g,'');f=f.replace(/#[^\s]*/g,'');f=f.replace(/\:{1,2}[^\s]*/g,'');f=f.replace(/\s+/g,' ');var g=f.split(' '),h=[];for(var i=0;i<g.length;i++){var j=g[i];if(e.test(j)&&!d.test(j))if(CKEDITOR.tools.indexOf(h,j)==-1)h.push(j);}return h;};function b(c,d,e){var f=[],g=[],h;for(h=0;h<c.styleSheets.length;h++){var i=c.styleSheets[h],j=i.ownerNode||i.owningElement;if(j.getAttribute('data-cke-temp'))continue;if(i.href&&i.href.substr(0,9)=='chrome://')continue;var k=i.cssRules||i.rules;for(var l=0;l<k.length;l++)g.push(k[l].selectorText);}var m=a(g,d,e);for(h=0;h<m.length;h++){var n=m[h].split('.'),o=n[0].toLowerCase(),p=n[1];f.push({name:o+'.'+p,element:o,attributes:{'class':p}});}return f;};CKEDITOR.plugins.add('stylesheetparser',{requires:['styles'],onLoad:function(){var c=CKEDITOR.editor.prototype;c.getStylesSet=CKEDITOR.tools.override(c.getStylesSet,function(d){return function(e){var f=this;d.call(this,function(g){var h=f.config.stylesheetParser_skipSelectors||/(^body\.|^\.)/i,i=f.config.stylesheetParser_validSelectors||/\w+\.\w+/;e(f._.stylesDefinitions=g.concat(b(f.document.$,h,i)));});};});}});})(); ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/docprops/�������������������������������������0000775�0001750�0001750�00000000000�12262650742�023366� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/docprops/dialogs/�����������������������������0000775�0001750�0001750�00000000000�12262650742�025010� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/docprops/dialogs/docprops.js������������������0000664�0001750�0001750�00000025763�12262650742�027214� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add('docProps',function(a){var b=a.lang.docprops,c=a.lang.common,d={};function e(n,o){var p=function(){q(this);o(this,this._.parentDialog);},q=function(s){s.removeListener('ok',p);s.removeListener('cancel',q);},r=function(s){s.on('ok',p);s.on('cancel',q);};a.execCommand(n);if(a._.storedDialogs.colordialog)r(a._.storedDialogs.colordialog);else CKEDITOR.on('dialogDefinition',function(s){if(s.data.name!=n)return;var t=s.data.definition;s.removeListener();t.onLoad=CKEDITOR.tools.override(t.onLoad,function(u){return function(){r(this);t.onLoad=u;if(typeof u=='function')u.call(this);};});});};function f(){var n=this.getDialog(),o=n.getContentElement('general',this.id+'Other');if(!o)return;if(this.getValue()=='other'){o.getInputElement().removeAttribute('readOnly');o.focus();o.getElement().removeClass('cke_disabled');}else{o.getInputElement().setAttribute('readOnly',true);o.getElement().addClass('cke_disabled');}};function g(n,o,p){return function(q,r,s){var t=d,u=typeof p!='undefined'?p:this.getValue();if(!u&&n in t)t[n].remove();else if(u&&n in t)t[n].setAttribute('content',u);else if(u){var v=new CKEDITOR.dom.element('meta',a.document);v.setAttribute(o?'http-equiv':'name',n);v.setAttribute('content',u);s.append(v);}};};function h(n,o){return function(){var p=d,q=n in p?p[n].getAttribute('content')||'':'';if(o)return q;this.setValue(q);return null;};};function i(n){return function(o,p,q,r){r.removeAttribute('margin'+n);var s=this.getValue();if(s!=='')r.setStyle('margin-'+n,CKEDITOR.tools.cssLength(s));else r.removeStyle('margin-'+n);};};function j(n){var o={},p=n.getElementsByTag('meta'),q=p.count();for(var r=0;r<q;r++){var s=p.getItem(r);o[s.getAttribute(s.hasAttribute('http-equiv')?'http-equiv':'name').toLowerCase()]=s;}return o;};function k(n,o,p){n.removeStyle(o);if(n.getComputedStyle(o)!=p)n.setStyle(o,p);};var l=function(n,o,p){return{type:'hbox',padding:0,widths:['60%','40%'],children:[CKEDITOR.tools.extend({type:'text',id:n,label:b[o]},p||{},1),{type:'button',id:n+'Choose',label:b.chooseColor,className:'colorChooser',onClick:function(){var q=this;e('colordialog',function(r){var s=q.getDialog();s.getContentElement(s._.currentTabId,n).setValue(r.getContentElement('picker','selectedColor').getValue());});}}]};},m='javascript:void((function(){'+encodeURIComponent('document.open();'+(CKEDITOR.env.isCustomDomain()?"document.domain='"+document.domain+"';":'')+'document.write( \'<html style="background-color: #ffffff; height: 100%"><head></head><body style="width: 100%; height: 100%; margin: 0px">'+b.previewHtml+"</body></html>' );"+'document.close();')+'})())'; return{title:b.title,minHeight:330,minWidth:500,onShow:function(){var n=a.document,o=n.getElementsByTag('html').getItem(0),p=n.getHead(),q=n.getBody();d=j(n);this.setupContent(n,o,p,q);},onHide:function(){d={};},onOk:function(){var n=a.document,o=n.getElementsByTag('html').getItem(0),p=n.getHead(),q=n.getBody();this.commitContent(n,o,p,q);},contents:[{id:'general',label:c.generalTab,elements:[{type:'text',id:'title',label:b.docTitle,setup:function(n){this.setValue(n.getElementsByTag('title').getItem(0).data('cke-title'));},commit:function(n,o,p,q,r){if(r)return;n.getElementsByTag('title').getItem(0).data('cke-title',this.getValue());}},{type:'hbox',children:[{type:'select',id:'dir',label:c.langDir,style:'width: 100%',items:[[c.notSet,''],[c.langDirLtr,'ltr'],[c.langDirRtl,'rtl']],setup:function(n,o,p,q){this.setValue(q.getDirection()||'');},commit:function(n,o,p,q){var r=this.getValue();if(r)q.setAttribute('dir',r);else q.removeAttribute('dir');q.removeStyle('direction');}},{type:'text',id:'langCode',label:c.langCode,setup:function(n,o){this.setValue(o.getAttribute('xml:lang')||o.getAttribute('lang')||'');},commit:function(n,o,p,q,r){if(r)return;var s=this.getValue();if(s)o.setAttributes({'xml:lang':s,lang:s});else o.removeAttributes({'xml:lang':1,lang:1});}}]},{type:'hbox',children:[{type:'select',id:'charset',label:b.charset,style:'width: 100%',items:[[c.notSet,''],[b.charsetASCII,'us-ascii'],[b.charsetCE,'iso-8859-2'],[b.charsetCT,'big5'],[b.charsetCR,'iso-8859-5'],[b.charsetGR,'iso-8859-7'],[b.charsetJP,'iso-2022-jp'],[b.charsetKR,'iso-2022-kr'],[b.charsetTR,'iso-8859-9'],[b.charsetUN,'utf-8'],[b.charsetWE,'iso-8859-1'],[b.other,'other']],'default':'',onChange:function(){var n=this;n.getDialog().selectedCharset=n.getValue()!='other'?n.getValue():'';f.call(n);},setup:function(){var q=this;q.metaCharset='charset' in d;var n=h(q.metaCharset?'charset':'content-type',1,1),o=n.call(q);!q.metaCharset&&o.match(/charset=[^=]+$/)&&(o=o.substring(o.indexOf('=')+1));if(o){q.setValue(o.toLowerCase());if(!q.getValue()){q.setValue('other');var p=q.getDialog().getContentElement('general','charsetOther');p&&p.setValue(o);}q.getDialog().selectedCharset=o;}f.call(q);},commit:function(n,o,p,q,r){var v=this;if(r)return;var s=v.getValue(),t=v.getDialog().getContentElement('general','charsetOther');s=='other'&&(s=t?t.getValue():'');s&&!v.metaCharset&&(s=(d['content-type']?d['content-type'].getAttribute('content').split(';')[0]:'text/html')+'; charset='+s);var u=g(v.metaCharset?'charset':'content-type',1,s); u.call(v,n,o,p);}},{type:'text',id:'charsetOther',label:b.charsetOther,onChange:function(){this.getDialog().selectedCharset=this.getValue();}}]},{type:'hbox',children:[{type:'select',id:'docType',label:b.docType,style:'width: 100%',items:[[c.notSet,''],['XHTML 1.1','<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'],['XHTML 1.0 Transitional','<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'],['XHTML 1.0 Strict','<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'],['XHTML 1.0 Frameset','<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">'],['HTML 5','<!DOCTYPE html>'],['HTML 4.01 Transitional','<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">'],['HTML 4.01 Strict','<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">'],['HTML 4.01 Frameset','<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">'],['HTML 3.2','<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">'],['HTML 2.0','<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">'],[b.other,'other']],onChange:f,setup:function(){var o=this;if(a.docType){o.setValue(a.docType);if(!o.getValue()){o.setValue('other');var n=o.getDialog().getContentElement('general','docTypeOther');n&&n.setValue(a.docType);}}f.call(o);},commit:function(n,o,p,q,r){if(r)return;var s=this.getValue(),t=this.getDialog().getContentElement('general','docTypeOther');a.docType=s=='other'?t?t.getValue():'':s;}},{type:'text',id:'docTypeOther',label:b.docTypeOther}]},{type:'checkbox',id:'xhtmlDec',label:b.xhtmlDec,setup:function(){this.setValue(!!a.xmlDeclaration);},commit:function(n,o,p,q,r){if(r)return;if(this.getValue()){a.xmlDeclaration='<?xml version="1.0" encoding="'+(this.getDialog().selectedCharset||'utf-8')+'"?>';o.setAttribute('xmlns','http://www.w3.org/1999/xhtml');}else{a.xmlDeclaration='';o.removeAttribute('xmlns');}}}]},{id:'design',label:b.design,elements:[{type:'hbox',widths:['60%','40%'],children:[{type:'vbox',children:[l('txtColor','txtColor',{setup:function(n,o,p,q){this.setValue(q.getComputedStyle('color'));},commit:function(n,o,p,q,r){if(this.isChanged()||r){q.removeAttribute('text');var s=this.getValue();if(s)q.setStyle('color',s);else q.removeStyle('color');}}}),l('bgColor','bgColor',{setup:function(n,o,p,q){var r=q.getComputedStyle('background-color')||''; this.setValue(r=='transparent'?'':r);},commit:function(n,o,p,q,r){if(this.isChanged()||r){q.removeAttribute('bgcolor');var s=this.getValue();if(s)q.setStyle('background-color',s);else k(q,'background-color','transparent');}}}),{type:'hbox',widths:['60%','40%'],padding:1,children:[{type:'text',id:'bgImage',label:b.bgImage,setup:function(n,o,p,q){var r=q.getComputedStyle('background-image')||'';if(r=='none')r='';else r=r.replace(/url\(\s*(["']?)\s*([^\)]*)\s*\1\s*\)/i,function(s,t,u){return u;});this.setValue(r);},commit:function(n,o,p,q){q.removeAttribute('background');var r=this.getValue();if(r)q.setStyle('background-image','url('+r+')');else k(q,'background-image','none');}},{type:'button',id:'bgImageChoose',label:c.browseServer,style:'display:inline-block;margin-top:10px;',hidden:true,filebrowser:'design:bgImage'}]},{type:'checkbox',id:'bgFixed',label:b.bgFixed,setup:function(n,o,p,q){this.setValue(q.getComputedStyle('background-attachment')=='fixed');},commit:function(n,o,p,q){if(this.getValue())q.setStyle('background-attachment','fixed');else k(q,'background-attachment','scroll');}}]},{type:'vbox',children:[{type:'html',id:'marginTitle',html:'<div style="text-align: center; margin: 0px auto; font-weight: bold">'+b.margin+'</div>'},{type:'text',id:'marginTop',label:b.marginTop,style:'width: 80px; text-align: center',align:'center',inputStyle:'text-align: center',setup:function(n,o,p,q){this.setValue(q.getStyle('margin-top')||q.getAttribute('margintop')||'');},commit:i('top')},{type:'hbox',children:[{type:'text',id:'marginLeft',label:b.marginLeft,style:'width: 80px; text-align: center',align:'center',inputStyle:'text-align: center',setup:function(n,o,p,q){this.setValue(q.getStyle('margin-left')||q.getAttribute('marginleft')||'');},commit:i('left')},{type:'text',id:'marginRight',label:b.marginRight,style:'width: 80px; text-align: center',align:'center',inputStyle:'text-align: center',setup:function(n,o,p,q){this.setValue(q.getStyle('margin-right')||q.getAttribute('marginright')||'');},commit:i('right')}]},{type:'text',id:'marginBottom',label:b.marginBottom,style:'width: 80px; text-align: center',align:'center',inputStyle:'text-align: center',setup:function(n,o,p,q){this.setValue(q.getStyle('margin-bottom')||q.getAttribute('marginbottom')||'');},commit:i('bottom')}]}]}]},{id:'meta',label:b.meta,elements:[{type:'textarea',id:'metaKeywords',label:b.metaKeywords,setup:h('keywords'),commit:g('keywords')},{type:'textarea',id:'metaDescription',label:b.metaDescription,setup:h('description'),commit:g('description')},{type:'text',id:'metaAuthor',label:b.metaAuthor,setup:h('author'),commit:g('author')},{type:'text',id:'metaCopyright',label:b.metaCopyright,setup:h('copyright'),commit:g('copyright')}]},{id:'preview',label:c.preview,elements:[{type:'html',id:'previewHtml',html:'<iframe src="'+m+'" style="width: 100%; height: 310px" hidefocus="true" frameborder="0" '+'id="cke_docProps_preview_iframe"></iframe>',onLoad:function(){this.getDialog().on('selectPage',function(n){if(n.data.page=='preview'){var o=this; setTimeout(function(){var p=CKEDITOR.document.getById('cke_docProps_preview_iframe').getFrameDocument(),q=p.getElementsByTag('html').getItem(0),r=p.getHead(),s=p.getBody();o.commitContent(p,q,r,s,1);},50);}});CKEDITOR.document.getById('cke_docProps_preview_iframe').getAscendant('table').setStyle('height','100%');}}]}]};}); �������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/docprops/plugin.js����������������������������0000664�0001750�0001750�00000000701�12262650742�025220� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.add('docprops',{init:function(a){var b=new CKEDITOR.dialogCommand('docProps');b.modes={wysiwyg:a.config.fullPage};a.addCommand('docProps',b);CKEDITOR.dialog.add('docProps',this.path+'dialogs/docprops.js');a.ui.addButton('DocProps',{label:a.lang.docprops.label,command:'docProps'});}}); ���������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/�������������������������������������0000775�0001750�0001750�00000000000�12262650742�023374� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/��������������������������������0000775�0001750�0001750�00000000000�12262650742�024315� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/fi.js���������������������������0000664�0001750�0001750�00000000530�12262650742�025247� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','fi',{devTools:{title:'Elementin tiedot',dialogName:'Dialogi-ikkunan nimi',tabName:'Välilehden nimi',elementId:'Elementin ID',elementType:'Elementin tyyppi'}}); ������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/no.js���������������������������0000664�0001750�0001750�00000000520�12262650742�025264� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','no',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementType:'Elementtype'}}); ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/bg.js���������������������������0000664�0001750�0001750�00000000651�12262650742�025245� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','bg',{devTools:{title:'Информация за елемента',dialogName:'Име на диалоговия прозорец',tabName:'Име на таб',elementId:'ID на елемента',elementType:'Тип на елемента'}}); ���������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/sk.js���������������������������0000664�0001750�0001750�00000000520�12262650742�025265� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','sk',{devTools:{title:'Informácie o prvku',dialogName:'Názov okna dialógu',tabName:'Názov záložky',elementId:'ID prvku',elementType:'Typ prvku'}}); ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/he.js���������������������������0000664�0001750�0001750�00000000551�12262650742�025250� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','he',{devTools:{title:'מידע על האלמנט',dialogName:'שם הדיאלוג',tabName:'שם הטאב',elementId:'ID של האלמנט',elementType:'סוג האלמנט'}}); �������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/cy.js���������������������������0000664�0001750�0001750�00000000525�12262650742�025270� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','cy',{devTools:{title:'Gwybodaeth am yr Elfen',dialogName:'Enw ffenestr y deialog',tabName:"Enw'r tab",elementId:'ID yr Elfen',elementType:'Math yr elfen'}}); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/it.js���������������������������0000664�0001750�0001750�00000000525�12262650742�025271� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','it',{devTools:{title:'Informazioni elemento',dialogName:'Nome finestra di dialogo',tabName:'Nome Tab',elementId:'ID Elemento',elementType:'Tipo elemento'}}); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/nl.js���������������������������0000664�0001750�0001750�00000000510�12262650742�025260� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','nl',{devTools:{title:'Elementinformatie',dialogName:'Naam dialoogvenster',tabName:'Tabnaam',elementId:'Element ID',elementType:'Elementtype'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/pt-br.js������������������������0000664�0001750�0001750�00000000546�12262650742�025704� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','pt-br',{devTools:{title:'Informação do Elemento',dialogName:'Nome da janela de diálogo',tabName:'Nome da aba',elementId:'ID do elemento',elementType:'Tipo do elemento'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/ug.js���������������������������0000664�0001750�0001750�00000000617�12262650742�025272� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','ug',{devTools:{title:'ئېلېمېنت ئۇچۇرى',dialogName:'سۆزلەشكۈ كۆزنەك ئاتى',tabName:'Tab ئاتى',elementId:'ئېلېمېنت كىملىكى',elementType:'ئېلېمېنت تىپى'}}); �����������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/tr.js���������������������������0000664�0001750�0001750�00000000515�12262650742�025301� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','tr',{devTools:{title:'Eleman Bilgisi',dialogName:'İletişim pencere ismi',tabName:'Sekme adı',elementId:'Eleman ID',elementType:'Eleman türü'}}); �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/_translationstatus.txt����������0000664�0001750�0001750�00000001760�12262650742�031023� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license bg.js Found: 5 Missing: 0 cs.js Found: 5 Missing: 0 cy.js Found: 5 Missing: 0 da.js Found: 5 Missing: 0 de.js Found: 5 Missing: 0 el.js Found: 5 Missing: 0 eo.js Found: 5 Missing: 0 et.js Found: 5 Missing: 0 fa.js Found: 5 Missing: 0 fi.js Found: 5 Missing: 0 fr.js Found: 5 Missing: 0 gu.js Found: 5 Missing: 0 he.js Found: 5 Missing: 0 hr.js Found: 5 Missing: 0 it.js Found: 5 Missing: 0 ku.js Found: 5 Missing: 0 lv.js Found: 5 Missing: 0 nb.js Found: 5 Missing: 0 nl.js Found: 5 Missing: 0 no.js Found: 5 Missing: 0 pl.js Found: 5 Missing: 0 pt-br.js Found: 5 Missing: 0 sk.js Found: 5 Missing: 0 tr.js Found: 5 Missing: 0 ug.js Found: 5 Missing: 0 uk.js Found: 5 Missing: 0 vi.js Found: 5 Missing: 0 zh-cn.js Found: 5 Missing: 0 ����������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/lv.js���������������������������0000664�0001750�0001750�00000000533�12262650742�025275� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','lv',{devTools:{title:'Elementa informācija',dialogName:'Dialoga loga nosaukums',tabName:'Cilnes nosaukums',elementId:'Elementa ID',elementType:'Elementa tips'}}); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/fr.js���������������������������0000664�0001750�0001750�00000000564�12262650742�025267� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','fr',{devTools:{title:"Information sur l'élément",dialogName:'Nom de la fenêtre de dialogue',tabName:"Nom de l'onglet",elementId:"ID de l'élément",elementType:"Type de l'élément"}}); ��������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/zh-cn.js������������������������0000664�0001750�0001750�00000000513�12262650742�025671� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','zh-cn',{devTools:{title:'元素信息',dialogName:'对话框窗口名称',tabName:'Tab 名称',elementId:'元素 ID',elementType:'元素类型'}}); �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/de.js���������������������������0000664�0001750�0001750�00000000511�12262650742�025240� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','de',{devTools:{title:'Elementinformation',dialogName:'Dialogfenstername',tabName:'Reitername',elementId:'Element ID',elementType:'Elementtyp'}}); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/fa.js���������������������������0000664�0001750�0001750�00000001045�12262650742�025241� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'devtools', 'fa', { devTools : { title : 'اطلاعات عنصر', dialogName : 'نام پنجره محاوره‌ای', tabName : 'نام برگه', elementId : 'ID عنصر', elementType : 'نوع عنصر' } }); �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/da.js���������������������������0000664�0001750�0001750�00000000527�12262650742�025243� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','da',{devTools:{title:'Information på elementet',dialogName:'Dialogboks',tabName:'Tab beskrivelse',elementId:'ID på element',elementType:'Type af element'}}); �������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/vi.js���������������������������0000664�0001750�0001750�00000000516�12262650742�025273� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','vi',{devTools:{title:'Thông tin thành ph',dialogName:'Tên hộp tho',tabName:'Tên th',elementId:'Mã thành ph',elementType:'Loại thành ph'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/pl.js���������������������������0000664�0001750�0001750�00000000532�12262650742�025266� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','pl',{devTools:{title:'Informacja o elemencie',dialogName:'Nazwa okna dialogowego',tabName:'Nazwa zakładki',elementId:'ID elementu',elementType:'Typ elementu'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/nb.js���������������������������0000664�0001750�0001750�00000000520�12262650742�025247� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','nb',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementType:'Elementtype'}}); ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/hr.js���������������������������0000664�0001750�0001750�00000000533�12262650742�025265� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','hr',{devTools:{title:'Informacije elementa',dialogName:'Naziv prozora za dijalog',tabName:'Naziva jahača',elementId:'ID elementa',elementType:'Vrsta elementa'}}); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/uk.js���������������������������0000664�0001750�0001750�00000000677�12262650742�025304� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','uk',{devTools:{title:'Відомості про Елемент',dialogName:'Заголовок діалогового вікна',tabName:'Назва вкладки',elementId:'Ідентифікатор Елемента',elementType:'Тип Елемента'}}); �����������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/el.js���������������������������0000664�0001750�0001750�00000000654�12262650742�025260� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','el',{devTools:{title:'Πληροφορίες Στοιχείου',dialogName:'Όνομα παραθύρου διαλόγου',tabName:'Όνομα καρτέλας',elementId:'ID Στοιχείου',elementType:'Τύπος στοιχείου'}}); ������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/et.js���������������������������0000664�0001750�0001750�00000000511�12262650742�025260� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','et',{devTools:{title:'Elemendi andmed',dialogName:'Dialoogiakna nimi',tabName:'Saki nimi',elementId:'Elemendi ID',elementType:'Elemendi liik'}}); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/gu.js���������������������������0000664�0001750�0001750�00000000704�12262650742�025267� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','gu',{devTools:{title:'પ્રાથમિક માહિતી',dialogName:'વિન્ડોનું નામ',tabName:'ટેબનું નામ',elementId:'પ્રાથમિક આઈડી',elementType:'પ્રાથમિક પ્રકાર'}}); ������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/ku.js���������������������������0000664�0001750�0001750�00000001122�12262650742�025266� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'devtools', 'ku', { devTools : { title : 'زانیاری توخم', dialogName : 'ناوی په‌نجه‌ره‌ی دیالۆگ', tabName : 'ناوی بازده‌ر تاب', elementId : 'ناسنامه‌ی توخم', elementType : 'جۆری توخم' } }); ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/eo.js���������������������������0000664�0001750�0001750�00000000546�12262650742�025263� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','eo',{devTools:{title:'Informo pri la elemento',dialogName:'Nomo de la dialogfenestro',tabName:'Langetnomo',elementId:'ID de la elemento',elementType:'Tipo de la elemento'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/en.js���������������������������0000664�0001750�0001750�00000000513�12262650742�025254� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','en',{devTools:{title:'Element Information',dialogName:'Dialog window name',tabName:'Tab name',elementId:'Element ID',elementType:'Element type'}}); �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/cs.js���������������������������0000664�0001750�0001750�00000000516�12262650742�025262� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang('devtools','cs',{devTools:{title:'Informace o prvku',dialogName:'Název dialogového okna',tabName:'Název karty',elementId:'ID prvku',elementType:'Typ prvku'}}); ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/devtools/plugin.js����������������������������0000664�0001750�0001750�00000004677�12262650742�025246� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.add('devtools',{lang:['en','bg','cs','cy','da','de','el','eo','et','fa','fi','fr','gu','he','hr','it','ku','nb','nl','no','pl','pt-br','sk','tr','ug','uk','vi','zh-cn'],init:function(a){a._.showDialogDefinitionTooltips=1;},onLoad:function(){CKEDITOR.document.appendStyleText(CKEDITOR.config.devtools_styles||'#cke_tooltip { padding: 5px; border: 2px solid #333; background: #ffffff }#cke_tooltip h2 { font-size: 1.1em; border-bottom: 1px solid; margin: 0; padding: 1px; }#cke_tooltip ul { padding: 0pt; list-style-type: none; }');}});(function(){function a(d,e,f,g){var h=d.lang.devTools,i='<a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.definition.'+(f?f.type=='text'?'textInput':f.type:'content')+'.html" target="_blank">'+(f?f.type:'content')+'</a>',j='<h2>'+h.title+'</h2>'+'<ul>'+'<li><strong>'+h.dialogName+'</strong> : '+e.getName()+'</li>'+'<li><strong>'+h.tabName+'</strong> : '+g+'</li>';if(f)j+='<li><strong>'+h.elementId+'</strong> : '+f.id+'</li>';j+='<li><strong>'+h.elementType+'</strong> : '+i+'</li>';return j+'</ul>';};function b(d,e,f,g,h,i){var j=e.getDocumentPosition(),k={'z-index':CKEDITOR.dialog._.currentZIndex+10,top:j.y+e.getSize('height')+'px'};c.setHtml(d(f,g,h,i));c.show();if(f.lang.dir=='rtl'){var l=CKEDITOR.document.getWindow().getViewPaneSize();k.right=l.width-j.x-e.getSize('width')+'px';}else k.left=j.x+'px';c.setStyles(k);};var c;CKEDITOR.on('reset',function(){c&&c.remove();c=null;});CKEDITOR.on('dialogDefinition',function(d){var e=d.editor;if(e._.showDialogDefinitionTooltips){if(!c){c=CKEDITOR.dom.element.createFromHtml('<div id="cke_tooltip" tabindex="-1" style="position: absolute"></div>',CKEDITOR.document);c.hide();c.on('mouseover',function(){this.show();});c.on('mouseout',function(){this.hide();});c.appendTo(CKEDITOR.document.getBody());}var f=d.data.definition.dialog,g=e.config.devtools_textCallback||a;f.on('load',function(){var h=f.parts.tabs.getChildren(),i;for(var j=0,k=h.count();j<k;j++){i=h.getItem(j);i.on('mouseover',function(){var l=this.$.id;b(g,this,e,f,null,l.substring(4,l.lastIndexOf('_')));});i.on('mouseout',function(){c.hide();});}f.foreach(function(l){if(l.type in {hbox:1,vbox:1})return;var m=l.getElement();if(m){m.on('mouseover',function(){b(g,this,e,f,l,f._.currentTabId);});m.on('mouseout',function(){c.hide();});}});});}});})(); �����������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/�����������������������������������0000775�0001750�0001750�00000000000�12262650742�023713� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/����������������������������0000775�0001750�0001750�00000000000�12262650742�025160� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h6.png����������������0000664�0001750�0001750�00000000201�12262650742�027346� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������5o#���PLTE֍���tRNS�0J���(IDATc`D Ċ0@AR ] x"D�u�PZM����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_blockquote.png��������0000664�0001750�0001750�00000000265�12262650742�031213� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���:������,���PLTE֍���tRNS�0J���\IDAT(͒K�!C_YQ!lFK =*0grȸ=RG䅳ƢQMB%*T{P<mn>ZX&ϕ.b/M i5����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h1.png����������������0000664�0001750�0001750�00000000177�12262650742�027355� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������5o#���PLTE֍���tRNS�0J���&IDATc`D Ċ0@htj"Fx,�x:�R����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h2.png����������������0000664�0001750�0001750�00000000206�12262650742�027347� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������5o#���PLTE֍���tRNS�0J���-IDATWc`D Ċ0@Èg@E2Y+ �w �=e����IENDB`������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h4.png����������������0000664�0001750�0001750�00000000205�12262650742�027350� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Xo ���PLTE֍���tRNS�0J���,IDATWc`� 1@ht!FB@�Ӎ,f<Y(BB��=Y\����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h5.png����������������0000664�0001750�0001750�00000000205�12262650742�027351� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������5o#���PLTE֍���tRNS�0J���,IDATWc`D Ċ0`S$1 18s %�t�L@����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_address.png�����������0000664�0001750�0001750�00000000253�12262650742�030465� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���,������bݫ���PLTE֍���tRNS�0J���RIDAT(Ր; 0 Ť_CL'2th/_QBJLҞ1$2^C9 Hm˹~�1#����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h3.png����������������0000664�0001750�0001750�00000000203�12262650742�027345� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������5o#���PLTE֍���tRNS�0J���*IDATWc`D Ċ0@Ègj.@-�v�O?kS����IENDB`���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_p.png�����������������0000664�0001750�0001750�00000000167�12262650742�027303� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ������E���PLTE֍���tRNS�0J���IDAT[c`D x @Cf0Tǃry�I"�?����IENDB`���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_pre.png���������������0000664�0001750�0001750�00000000210�12262650742�027617� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������׳Z���PLTE֍���tRNS�0J���/IDATWc` Hf``@ a AQ Wja K0-cC����IENDB`����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_div.png���������������0000664�0001750�0001750�00000000210�12262650742�027613� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������<tY���PLTE֍���tRNS�0J���/IDATWc`He``�3P(X (T(hn;d_P$ �8Qe2����IENDB`����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/themes/�����������������������������������������������0000775�0001750�0001750�00000000000�12262650742�021341� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/themes/default/���������������������������������������0000775�0001750�0001750�00000000000�12262650742�022765� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/themes/default/theme.js�������������������������������0000664�0001750�0001750�00000014247�12262650742�024435� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.themes.add('default',(function(){var a={};function b(c,d){var e,f;f=c.config.sharedSpaces;f=f&&f[d];f=f&&CKEDITOR.document.getById(f);if(f){var g='<span class="cke_shared " dir="'+c.lang.dir+'"'+'>'+'<span class="'+c.skinClass+' '+c.id+' cke_editor_'+c.name+'">'+'<span class="'+CKEDITOR.env.cssClass+'">'+'<span class="cke_wrapper cke_'+c.lang.dir+'">'+'<span class="cke_editor">'+'<div class="cke_'+d+'">'+'</div></span></span></span></span></span>',h=f.append(CKEDITOR.dom.element.createFromHtml(g,f.getDocument()));if(f.getCustomData('cke_hasshared'))h.hide();else f.setCustomData('cke_hasshared',1);e=h.getChild([0,0,0,0]);!c.sharedSpaces&&(c.sharedSpaces={});c.sharedSpaces[d]=e;c.on('focus',function(){for(var i=0,j,k=f.getChildren();j=k.getItem(i);i++){if(j.type==CKEDITOR.NODE_ELEMENT&&!j.equals(h)&&j.hasClass('cke_shared'))j.hide();}h.show();});c.on('destroy',function(){h.remove();});}return e;};return{build:function(c,d){var e=c.name,f=c.element,g=c.elementMode;if(!f||g==CKEDITOR.ELEMENT_MODE_NONE)return;if(g==CKEDITOR.ELEMENT_MODE_REPLACE)f.hide();var h=c.fire('themeSpace',{space:'top',html:''}).html,i=c.fire('themeSpace',{space:'contents',html:''}).html,j=c.fireOnce('themeSpace',{space:'bottom',html:''}).html,k=i&&c.config.height,l=c.config.tabIndex||c.element.getAttribute('tabindex')||0;if(!i)k='auto';else if(!isNaN(k))k+='px';var m='',n=c.config.width;if(n){if(!isNaN(n))n+='px';m+='width: '+n+';';}var o=h&&b(c,'top'),p=b(c,'bottom');o&&(o.setHtml(h),h='');p&&(p.setHtml(j),j='');var q='<style>.'+c.skinClass+'{visibility:hidden;}</style>';if(a[c.skinClass])q='';else a[c.skinClass]=1;var r=CKEDITOR.dom.element.createFromHtml(['<span id="cke_',e,'" class="',c.skinClass,' ',c.id,' cke_editor_',e,'" dir="',c.lang.dir,'" title="',CKEDITOR.env.gecko?' ':'','" lang="',c.langCode,'"'+(CKEDITOR.env.webkit?' tabindex="'+l+'"':'')+' role="application"'+' aria-labelledby="cke_',e,'_arialbl"'+(m?' style="'+m+'"':'')+'>'+'<span id="cke_',e,'_arialbl" class="cke_voice_label">'+c.lang.editor+'</span>'+'<span class="',CKEDITOR.env.cssClass,'" role="presentation"><span class="cke_wrapper cke_',c.lang.dir,'" role="presentation"><table class="cke_editor" border="0" cellspacing="0" cellpadding="0" role="presentation"><tbody><tr',h?'':' style="display:none"',' role="presentation"><td id="cke_top_',e,'" class="cke_top" role="presentation">',h,'</td></tr><tr',i?'':' style="display:none"',' role="presentation"><td id="cke_contents_',e,'" class="cke_contents" style="height:',k,'" role="presentation">',i,'</td></tr><tr',j?'':' style="display:none"',' role="presentation"><td id="cke_bottom_',e,'" class="cke_bottom" role="presentation">',j,'</td></tr></tbody></table>'+q+'</span>'+'</span>'+'</span>'].join('')); r.getChild([1,0,0,0,0]).unselectable();r.getChild([1,0,0,0,2]).unselectable();if(g==CKEDITOR.ELEMENT_MODE_REPLACE)r.insertAfter(f);else f.append(r);c.container=r;r.disableContextMenu();c.on('contentDirChanged',function(s){var t=(c.lang.dir!=s.data?'add':'remove')+'Class';r.getChild(1)[t]('cke_mixed_dir_content');var u=this.sharedSpaces&&this.sharedSpaces[this.config.toolbarLocation];u&&u.getParent().getParent()[t]('cke_mixed_dir_content');});c.fireOnce('themeLoaded');c.fireOnce('uiReady');},buildDialog:function(c){var d=CKEDITOR.tools.getNextNumber(),e=CKEDITOR.dom.element.createFromHtml(['<div class="',c.id,'_dialog cke_editor_',c.name.replace('.','\\.'),'_dialog cke_skin_',c.skinName,'" dir="',c.lang.dir,'" lang="',c.langCode,'" role="dialog" aria-labelledby="%title#"><table class="cke_dialog',' '+CKEDITOR.env.cssClass,' cke_',c.lang.dir,'" style="position:absolute" role="presentation"><tr><td role="presentation"><div class="%body" role="presentation"><div id="%title#" class="%title" role="presentation"></div><a id="%close_button#" class="%close_button" href="javascript:void(0)" title="'+c.lang.common.close+'" role="button"><span class="cke_label">X</span></a>'+'<div id="%tabs#" class="%tabs" role="tablist"></div>'+'<table class="%contents" role="presentation">'+'<tr>'+'<td id="%contents#" class="%contents" role="presentation"></td>'+'</tr>'+'<tr>'+'<td id="%footer#" class="%footer" role="presentation"></td>'+'</tr>'+'</table>'+'</div>'+'<div id="%tl#" class="%tl"></div>'+'<div id="%tc#" class="%tc"></div>'+'<div id="%tr#" class="%tr"></div>'+'<div id="%ml#" class="%ml"></div>'+'<div id="%mr#" class="%mr"></div>'+'<div id="%bl#" class="%bl"></div>'+'<div id="%bc#" class="%bc"></div>'+'<div id="%br#" class="%br"></div>'+'</td></tr>'+'</table>',CKEDITOR.env.ie?'':'<style>.cke_dialog{visibility:hidden;}</style>','</div>'].join('').replace(/#/g,'_'+d).replace(/%/g,'cke_dialog_')),f=e.getChild([0,0,0,0,0]),g=f.getChild(0),h=f.getChild(1);if(CKEDITOR.env.ie&&!CKEDITOR.env.ie6Compat){var i=CKEDITOR.env.isCustomDomain(),j='javascript:void(function(){'+encodeURIComponent('document.open();'+(i?'document.domain="'+document.domain+'";':'')+'document.close();')+'}())',k=CKEDITOR.dom.element.createFromHtml('<iframe frameBorder="0" class="cke_iframe_shim" src="'+j+'"'+' tabIndex="-1"'+'></iframe>');k.appendTo(f.getParent());}g.unselectable();h.unselectable();return{element:e,parts:{dialog:e.getChild(0),title:g,close:h,tabs:f.getChild(2),contents:f.getChild([3,0,0,0]),footer:f.getChild([3,0,1,0])}}; },destroy:function(c){var d=c.container,e=c.element;if(d){d.clearCustomData();d.remove();}if(e){e.clearCustomData();c.elementMode==CKEDITOR.ELEMENT_MODE_REPLACE&&e.show();delete c.element;}}};})());CKEDITOR.editor.prototype.getThemeSpace=function(a){var b='cke_'+a,c=this._[b]||(this._[b]=CKEDITOR.document.getById(b+'_'+this.name));return c;};CKEDITOR.editor.prototype.resize=function(a,b,c,d){var j=this;var e=j.container,f=CKEDITOR.document.getById('cke_contents_'+j.name),g=CKEDITOR.env.webkit&&j.document&&j.document.getWindow().$.frameElement,h=d?e.getChild(1):e;h.setSize('width',a,true);g&&(g.style.width='1%');var i=c?0:(h.$.offsetHeight||0)-(f.$.clientHeight||0);f.setStyle('height',Math.max(b-i,0)+'px');g&&(g.style.width='100%');j.fire('resize');};CKEDITOR.editor.prototype.getResizable=function(a){return a?CKEDITOR.document.getById('cke_contents_'+this.name):this.container;}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/images/�����������������������������������������������0000775�0001750�0001750�00000000000�12262650742�021321� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/images/spacer.gif�������������������������������������0000664�0001750�0001750�00000000053�12262650742�023263� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a����������!����,�������D�;�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/������������������������������������������������0000775�0001750�0001750�00000000000�12262650742�021203� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/�������������������������������������0000775�0001750�0001750�00000000000�12262650742�022743� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/icons_rtl.png������������������������0000664�0001750�0001750�00000012740�12262650742�025451� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR����������� pHYs�� �� ���� cHRM��z%��������u0��`��:��o_F���PLTE���CC�M>>+00Sb333 88 �7,�"(+TW'3S%FFg[$:BBUȹ�XQ}&iܯkn?Bwq酈5{g^4q 'E;;��ҹ?@Oqph ^+$�Oe>>ixN.JJT`vWORCxeܺWD E٧H8�38ǺQ^225ML3LL!]DS xxw˛1JO)HE6AG1LH!DDrrrzg>NjRwxq� <J@,%O>PP�993*`"BD7== C<@9$EE@QQ q#t1 m�"_1KK#DI'GG 77ptylVXX]mwlAAF[�NEshhhښ7غUxxx럟<?ʠX1h;OOdr>O[/;C~~}�33[B#Gir|֤X$EGL.KF Lѐ<<6x6S~=ѧ���tRNS�@f��MIDATx{SיǿBd!X&` KbHmtvVLi; ˹9d8M'@KD1ifƞ:p]e |>{W.:\#Y"Htso&ͣd2L ͫh&qB6ƛ|}eYI+ӄB27 L%r$I#*D>$FIHr JR)ڒh*F*qBZZZZx-8hlQ c~hTIBoF"@0 hp$.b1g>ݭn't]ABuJnН 麨cM5i iss,%fx%]�b ݎM,>(ȲLi~hUh(81lwN8/zɓg>�w8v]Ó6ÿ>|넣<Хs,o9tC:!IWO$y0 , GqI{ b1RO0<[Xb]TQJL qjq*(btRbX,t]AwL#[w} z]aMo. I?C55 zKG-fJ QcQbg7~uSa�tSa|�Hؿ�$,9\]>8k|]tvuv;;;;;8νG|t#z޽_f>s{3x}׬]|0"D|)Ii;m_ To$AG)I䃤N5'T w_2J"&STJ2GJd^{p4M4'R )BGjS37bA7QI"$έ&Q, Lvqe)a ,hUV*d1�TUU98-j@Uڪ�ZUYV[Úb Kddϡ^v=˲Z=GݠV*eUUU;|ʲ�*lhVL:Hʲ,[yow*,<f脬Ƭ׳m95JW�`D�0KŽ#�A�T1ڄ&=BcƁ1U:a`L{T�01U00ƬDS] 4Js�… 6l那Yp¤M�i:-J {/_8F Ң#'H}I;87ZFJOOO<gD�Ӟx<gDTQ>OqF728!fc2{DMMf>��2 2Lw�W #xdFu:ULq(XՂט>=1Ãis-A&L |gHY2H&Id2inOBqĖ$pi$7%\TT"Ug;"㶨(2(*BQB(5V9It;G9qZ UY.D47A2ę[6+޸Hc;ͩSf'XsV<N, G�`8uapj*\`q}ax[n>‘?fnSq/GR1z+?Ib'WP̡�~qq1b?~�X\� ~-$t:p8)p8Li[8`0wtt:H)wi鴞`0}w0X, X0 ߯M>Ş|\-7po'$~Ri A ��3!V'� )G1I~sd&� G"D}OFyHH|YE"M"L"Hׯ'Cr`LOlz{{{{{UUUUtegg_UUUUU+;ww竪/N@/]ŋ/@Л*////~ 8vm+G֮�\+K.]{Lwر;\t @f͚5k7oٲ4�y,ܼeVq˖,l8f厎KJJJJ\yͳQɼymVVbmʖX߼㱲%�Pd޼yeQVd�%K,)'o{l>pa�e۾ؓO.YX))6dYFɶ/-\ 2nv%eeee޸`v̸v+K8mR |NhY}*.VI"|a2D"!6k.wKgyWvVpǫɲ:7m΍@StCN|AUJJJi*@z@` /C8 sQ,2 ,Xp ^ =3..NΞz.8ʡP(3C[](%9&X/8 T!$  dj~6PӽkuBZYCb0Ie�t9*Y {W~{B99q3+QJ�2E---e�湥я~RY:wRʍs++2(;wܹ+\U VAi)ofx.̅qc lt3+c0V�h�ފ5k֜yvų܋�a;uɭXfM%J홍�*=c�r -ZdxmF/>̋NP93-_J>,gkoyϲ<ӛ͚V!V|6d?_[]]]Q6iӀiO?cyӞf븢>yڴiӾnlx :R*/ڀ3B5?R)Z2',3 R=GY4PT Ul!*EURTRVbQJ,1-Q ;82o*13Bqq5X~Q0J@e j(SpYb2gzת$ZM)Ք1:ȩ,Zzu5)w5K%( exCy@c(`RܾXEj@at9 1ʢZRFrz1";0mbUz0 (U-#PtJ .g-KU3*Q^4 FYfʿ$9��)%t9c1tJ*Rj2J))VQ/c>vsAqF JQ0 ݓSGzV(2VX4Q0Jto+yQ)//_v�u5ujkkkȣ P[[[[SCpܣ^ �+<=3�`n#1=�1=ƁczcGhƌ3Bk"m.{O?o?6{ l�ҿѨn�$ۧZ�jVۻ"�_u>~cfNZ޿O?:cg;FD*f3FcoWo}zP*:;<ү�X5ΊP V]`lC@|O(<({: tX둆) |Oc}VEQL5vMB/Ӥx"qEQa{W8 e�d";e{(4MӼ1wɉt2+?47+*\|1c=|p-@u?>AH \iqc$kI7NGÊ�NI6˱̫pY#WF =@zL'=$NDm| qM,i9s;7b b޽W,8wPlล-N|;oK4i@=12c^}ޫWtй3L$ݘu1*ob #W$9g~>BX{{{k̵_] LZ`xxx8ɤ�Úɤ SJ;$a$h4MkhnN&v+&^Iuyk}>Js+O{O�%,^MIF"dY`A6M�gȎבSnn=eY<lE#N #dnO:3AYer!ϥ){!y+:I?8橓=8'׍ti1; eXSoFj#9[1dטq uo|8zaU}VqmCë|v=p| ]ѮCeO54 �/_.3�ؽTCCÁhW�0ஆ]OD�ݻ]װkk'ww՝2#ݰA+<Q|e9{侈yɔ;w�̀O����IENDB`��������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/images/������������������������������0000775�0001750�0001750�00000000000�12262650742�024210� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/images/dialog_sides_rtl.png����������0000664�0001750�0001750�00000000265�12262650742�030230� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ������g���gAMA��7���tEXtSoftware�Adobe ImageReadyqe<���GIDATxb(bf```bv b �bA bq ҢPq|j H@Ji {2� �W #?����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/images/sprites_ie6.png���������������0000664�0001750�0001750�00000005233�12262650742�027155� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���>�����MX���sRGB���mPLTE������. 9BK-+ffffIU+S+]9cBnRujt𥳐0���tRNS�@f���bKGD�H��� pHYs�� �� ����tIME .gHp��IDATx휍[[o+ PLj!f),ۘV@۹ G ji8p0-T!T\ d!}isvϳ'\[pɽj�}Ƿ�ܵs �qj:������w~ꆞ P���x�������u���|�VttttttttttZ;Zttttt^��_����m))f9Y0 Ifo߾}S½"M?{bSK9bE~7b:p8lfVvI)kc|II覈~cusԖ=꽋YOJ6u;YߍsS`2%G߹XMt;V?ӏv瞻rO!dOz/VqeuuED/r]eTu>WU]*LI9T}MKKKzFO,]L+WB ' OBP`rPC+W2URKܥf0;?3;3?3Irsi5+L`nNO/^OMNM^OL&Vb58XMxjjbR.LMMƥQ0t>PٱH׳cUWؘF}##}##yIJx^#OFGGF<xЙT0<xf١AyoY #sgu600pZ-:#_D(oɈOG{E*}}oJFoOTܯ{e~zd/zzet{_|x=y]R:=NK:H#:;;<^wǩ&թ6w[t;d}qROOjwmmZziDJZ=5x덩㚫啗]Z\\.WsK _ninQ森^11K{E /Ʀ^ho|oW/65hy$CZ]G;_ԩ̑ZU9DgCHUCOG~ZsNge[>XYSSt8+:k*dyY-jJ񲲊Ҋr(/B*(U(DYiyT\Q^^|D:)N48PR{@ߓ〞WEVۊlo9iw6nݾhf٥kˡOl6cf)ZYJj"գdheֽ2gϾ2@ٕ+]yٕJޮlڙ#qLؙHϐvggfJ#=CjPgd|Crʔ*Zzfy$͒jIXN>ZE_MТJ<*T=NS)K4W :Otckx6ŇÜ;ιY c�]Gb.֯ aΝs٬nw$�pUc;ƠFO=1O{̐ǺVƵC m=fr�x^Ԉn6zi.ro3!e��HnjMZ!6!xc6[|c-�۱]궰]@<uS]B�=ŖԸ ىl'N4f'ƛ �6m.1}|b���������������������������������������������_,����IENDB`���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/images/dialog_sides.gif��������������0000664�0001750�0001750�00000000060�12262650742�027321� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a ���+f!���,���� ��� W��;��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/images/sprites.png�������������������0000664�0001750�0001750�00000013747�12262650742�026423� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���>�����zu=j���sRGB����bKGD������ pHYs�� �� ����tIME  V��gIDATx=GvߛmRK%Ysv@6pEN Pr>G=.Pa!4q  ;KՑZqfwAWYr3;]}꽪Q眔@ qGqGqGU:'vv""w޿%E\KZ*^dW#0$= U۠䈓D:SV"ޗl%#8#8#8#8#8#(ǖ"8#8#8#ǖȕ[n|sF̙-':qz"\g<şvKMb`DGz}0GɦIuQsoSWt"/y3bmM_6汭ݴ/◌tōr`R@P^ =6~gvU"݋?= S{1D:D{`TWKnW{G]{-S{ua#Xj XȪ>vN8#8#8#8#8#8?9[8#8#8#8KXkCGK8{`GqGqGqGqGqGqGqGqGqGqGqGqGqG-]<׮&WlȅTߢqDqGqGqGqGqGqGqGT+N{F\%sD9$"/+򒈼 "ϋȳ")"`Έ[k62Qr}nZRN'}C XD:3VoFw/(~"= r]=efHh[鍌tU"F{tA\&ve mc6rm~*tQ"}ok]L5ڈ]x__j/t9鹭-Y WFx4T[*:K<*LY 8y×fSٹ /;g-W'ۋ>w](GqGqGq?szGwu""Wvn},"E䁈{"r_("DdW}G7o7#8#8#8#8#8#8'eWwD_ٹu7ki4 fs&˕Gϝa$ưVA|xۇJ}YL#̒wS9Dz_&F_)z86|7޾GF~e##cO&hȏ2 N)*{3!~!"cӨ\B|l0pv!;z|:f{gs\$˜>ZD[FUOORdeΎ㩼3b#Ss"3G\ѯ=alOe!w]dŪ)kY| ؽũGqGqGqGqGqGqGqGqGqGqGq~kCG skOD6ǁwJ&$~Xk%x廸xRp4-Kdrs) +i(,7*u_Ka/s4:9t[4.Z"[]+iɽVҜHRKNƳ&.sGqGqGq?s׮]?o/=U ܥf݈'ҩ`ވkfm-}ЧK"f\u^< YIKq+}NK󉋍zD<gf>/"^WUv  "rQDa| x{AR7#"߻O~ȇ?ۗՙrͲ47I1 Ыxnj'2M6d~.i΋w]}]e);GqGqGqGqGqG±#8#8#8#~<GNDέ7+&ZjW.W +-Rj;3QxgXҐ%vur3WgJ ީ#8#8#8#8#8#pl)#8#8#8∟=RG+D䲈$"߾aiW8#8#8#8#8#8#8#V5sJW .si:lWvnlyi>Xp \]Kk*9lG3}՜}64ci鮞J[ڿD|l<7ȹvTxޛ!_GsNm72ҡW}xYҡq횸;&ڕقmuSشЅG9uY\2ܞ69A#^?6fHaQ peryTtx9U/jʚNhIc}5#.ExQ9>k8^tYv#jJ@qGqGqG3g_}ڻJDqGqGqGqGqGqGqG|Q"_ٹȯ9(DHD{"r_noEeytD<w:LF Ǡ:Bgć2Wzpdab4Hr_']=e##?4##�(� vy7Uyd{4ꝍ=#>6}mr~V;5Ms3 `Cw> t;THtGi1}7Ϫ>u2#wlpq<wFld 8eLd!(Yѯal3vLޗ.Ѫ><foLN'ViJ@qGqGqGqGq¾ sw'oN}Gvga']^~Ck{|2y3~xO|-wWڙYܥ'/ExI{[]3F9~\}{|J]yG(:<z}qꍟ柾5""?4o/EDÙຽ'wA>Tɝy㺽?NWo\Dt^ۻmqwOq[1{Jۨ?ױ?2n9\mK [3ݾG9Oꏛؼ|mWwΌy?u?N;Voׯ -?n/KDd->~g/c=myKO4NCx/+.l.n{/~? 򗿼_uZէۇ#b0 WQQq:)j.۪_8NDUN8Q5w v4Jœ8=J'ΧIl~wkױjM.NLk8[$PgHZ'psM;5^dl^s磥6E yLUT8yËoMYs/8} Nj"^7pwQ5TNED+a}Oq͋ҶN[6j#D[C@BcpnryCCJ'"R$FZTMLumLs798mcyfI > '"ոOIR&驦۶]LD{^\tR'ҢN<L.k*gLj4D6<p󸱅Fckl3~T.qsqj\']5t;%PhP&w&4 /jFq~MCugz.ScθiΙn}4'k جiŌϥ,۷LrOIبƳ4?͓;+lUө6#c&t4b.u͘jl5DҌfDB7vpqf8pDm7m" 6Q$&g!EP:NMgԌM W`b0^;5qT|C]PQ'REZ2s)=]sNF-T[h^kݶ:T6b CwIg-qiιt dJ95$ -E }8 Fcii3E,tkM\6Ws IWۇMO`\:jTO.cn:W<%=M'6>U]<K<^'e'{bh1x4]fIn2D LӸqKfR y'*N do2~njoڹE4rx}.;jT۽geǢɬJYKfvVuigsuHה.dz3(r4ϓKvLBNWNM!]oH<CݧfFؓa'9fՙ&8uL%VNIZ[5OfD| ibn+;䢭bv  ,Z׾͌1ZV8w6=mOvz+ ?eD<8^3kv)*`w#8svwmAU^8쵌vX/T>uUW2sZkp;r"u(O.3]{;uMq/ھT(}tJY*\BC6^-*v_Z[ɣfv@R7~U;_Z-׾N=dFp{I:!#8#8#8#8#8#8#8#8#8#8#8#8't"xTA91",饊/S8/wou޸Jʟ"N`,=SZfn'qr'qr'qr#~/SGqGqGqGqGq?g}hFK9\c"%w~M|~c b2JW0J+ȗs77u%9N89N89Ne w_*sGIJXǶ쳎PGă7Տ.HCW\9#8#8#8#8gǟmq-Ke.Ay]EzTp2ŗROkv4b8Cqw^ ; /83!#xuY|(nT;o.o]ʇxGqGqGqGq{'>>ぼv oQ_=ZRėie&^[Dqx]*O,,nc"8L`8#1e}Zy%">7-N7keGqGqGqGqGqGqqoƼM8#8wl{PqGmHqCq{X܆Gez6)]qGqGq_+R)����X{9|)$E �1[[[q(}H't)9$_^N"{qKY9HNHb!K/sZjwD%e]JwV@DtkkKTZT+n^%Nj=m-^����`)?xgUr�������`%PT8G�����t,h%J(ʼn#]Jׯk19tő.%gtsI";"������V`=^d'_(Njz(颺}qS?6{E[I�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������P5ʺ*����IENDB`�������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/images/noimage.png�������������������0000664�0001750�0001750�00000004103�12262650742�026333� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���(���(��� H_���PLTEVV\\TT⟟XX⠠▖bbIIff``CCFFMMZZ㮮㳳SSᆆ቉⚚wwWWxx~~⑑ጌ㭭㣣DD㻻nn⨨ᐐⓓ^^XXᗗNNooKKAAllttUU└JJᎎ㵵㱱㽽uvee㲲⥥㼼PPፍ㪪[[㺺㶶mm㾾qq}}yyPPQQ㰰㷷⛛☘ss❝rrss㯯✜ᄄኊ㫫ዋ⭭ለ]]||㝝GG♙㘘ddiikk潽ppzzHH➞NN䟞㴴⣣^^??;;aa⦦ᕕSS>>||ᇇᅅ⸸ⱱ⪪㢢⬬ႂ人QQ㸸䱱㿿hh㧧RR⎎jj㜜ab毮䥥⽽⮮⫫洴⢢㬬汱䵵䷷⧧㦦庹绺䨨ᄃRRᓓ㹹䠟UU99@@JJ77䪪SSPPff躹似䲲᜜Ⲳ❞ᘘ⋋纹⍍㚚ⷷrszzYp ��IDATx^=H6m۶mo۶m۶͵WS[IʯPPرc?BQQ`4 M<b%:m V ă^jWlKLrtq9F=ayyjSypFQУZ yxŘ19�|#9fǎиLBp�4f JM}m݊]S7ZřpΙ(;\Y Ѐ^  ###CR(VS3Ե%0F)\0 ]/ }MR\xۧ[?[S~yp]qzCȂ* oj!*jnkA]YW|ecc)###E"P`k1%j]AOMuh:AmQ(F lxmrƖWNP6>GˆSPZ;vv$�EkXಹҥfSY%B9k@-:fA;4rD9)z@U^Ni̲\˻j+Iʲr$MWh|i]o i ^ HI:s]R@/͵k"LJ["ew3VJ뛒0JB1$mHV׵`>c{]j*iI筮+|}�x)/b uec 1 Qe=޻1Uw]4ƻxgpzݜ_j]uYJgvh0`Zx'T/Z;JyׯM͛/*1G*+2ݽ^Xnv:>/0*AuqK`C^\ߢgz+KQ 6.\:~l;zĨq{Y=̣K||gg3Chf = C(kAgOv|I&#`r4hӷE&X%!!a v-}|ꕋ{qN)d2Q;͍g-@LTmt6>-,wy3:;;<(9,oTWbZZr8K.w|!"Bt6 }r9iX=9W`Ȇ݆;& j,sp ? 騷-EwfzSb,Y2=s&ûy<{<O[Q'TFWgZ����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/images/mini.gif����������������������0000664�0001750�0001750�00000000267�12262650742�025640� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a�0����www�ff��!���,�����0��|x01,,%#^d$A^Lxa[R+'RSZ3UКvP( 4[}$t fz b�C fdegun]7 �;�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/images/dialog_sides.png��������������0000664�0001750�0001750�00000000262�12262650742�027344� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ������g���gAMA��7���tEXtSoftware�Adobe ImageReadyqe<���DIDATxb?1 2H1;s_ ,i- k ~ ϡk8H @ �8-'L~"����IENDB`����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/editor.css���������������������������0000664�0001750�0001750�00000105723�12262650742�024753� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ .cke_skin_office2003 *,.cke_skin_office2003 a:hover,.cke_skin_office2003 a:link,.cke_skin_office2003 a:visited,.cke_skin_office2003 a:active{margin:0;padding:0;border:0;background:transparent;text-decoration:none;font:normal normal normal 100% Sans-Serif;width:auto;height:auto;border-collapse:collapse;text-align:left;vertical-align:baseline;white-space:nowrap;cursor:auto;color:#000;float:none;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif;}.cke_skin_office2003 .cke_rtl *,.cke_skin_office2003 .cke_rtl a:hover,.cke_skin_office2003 .cke_rtl a:link,.cke_skin_office2003 .cke_rtl a:visited,.cke_skin_office2003 .cke_rtl a:active,.cke_rtl .cke_skin_office2003 *,.cke_rtl .cke_skin_office2003 a:hover,.cke_rtl .cke_skin_office2003 a:link,.cke_rtl .cke_skin_office2003 a:visited,.cke_rtl .cke_skin_office2003 a:active{text-align:right;}.cke_skin_office2003 iframe{vertical-align:inherit;}.cke_skin_office2003 textarea{white-space:pre;}.cke_skin_office2003 .cke_browser_gecko textarea{cursor:text;}.cke_skin_office2003 .cke_browser_gecko textarea[disabled]{cursor:default;}.cke_skin_office2003 input[type="text"],.cke_skin_office2003 input[type="password"]{cursor:text;}.cke_skin_office2003 input[type="text"][disabled],.cke_skin_office2003 input[type="password"][disabled]{cursor:default;}.cke_skin_office2003 fieldset{padding:10px;border:2px groove #E0DFE3;}.cke_skin_office2003 .cke_editor{display:inline-table;width:100%;}.cke_skin_office2003 .cke_browser_webkit .cke_editor{display:table;}.cke_skin_office2003 span.cke_browser_webkit,.cke_skin_office2003 span.cke_browser_gecko18{display:block;}.cke_skin_office2003,.cke_skin_office2003 .cke_wrapper{display:block;}.cke_skin_office2003 .cke_top,.cke_skin_office2003 .cke_bottom,.cke_shared .cke_skin_office2003{background-color:#f7f8fd;}.cke_skin_office2003 .cke_top{border-top:solid 1px #fafaf5;border-left:solid 1px #fafaf5;border-right:solid 1px #696969;border-bottom:solid 2px #696969;}.cke_skin_office2003 .cke_rtl .cke_top{border-left:solid 1px #696969;border-right:solid 1px #fafaf5;}.cke_skin_office2003 .cke_bottom{border-left:solid 1px #696969;border-right:solid 1px #696969;border-bottom:solid 1px #696969;}.cke_skin_office2003 .cke_contents{border:solid 1px #696969;background-color:white;}.cke_skin_office2003 .cke_focus{outline:auto 5px -webkit-focus-ring-color;}.cke_skin_office2003 textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;white-space:pre;background-color:#fff;}.cke_skin_office2003 .cke_browser_iequirks textarea.cke_source{_white-space:normal;}.cke_skin_office2003 .cke_resizer{width:12px;height:12px;margin-top:16px;display:block;float:right;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -1088px;background-repeat:no-repeat;cursor:se-resize;}.cke_skin_office2003 .cke_browser_air .cke_resizer,.cke_skin_office2003 .cke_browser_air .cke_rtl .cke_resizer{cursor:move;}.cke_skin_office2003 .cke_resizer_rtl{cursor:sw-resize;background-position:0 -1115px;float:left;}.cke_skin_office2003 .cke_resizer_horizontal,.cke_skin_office2003 .cke_rtl .cke_resizer_horizontal{cursor:e-resize;}.cke_skin_office2003 .cke_resizer_vertical,.cke_skin_office2003 .cke_rtl .cke_resizer_vertical{cursor:n-resize;}.cke_skin_office2003 .cke_maximized .cke_resizer{display:none;}.cke_skin_office2003 .cke_browser_ie6 .cke_contents textarea,.cke_skin_office2003 .cke_browser_ie7 .cke_contents textarea{position:absolute;}.cke_skin_office2003 .cke_voice_label{display:none;}.cke_skin_office2003 legend.cke_voice_label{display:none;}.cke_skin_office2003 .cke_browser_ie legend.cke_voice_label{position:absolute;display:block;width:0;height:0;overflow:hidden;}.cke_skin_office2003 .cke_panel{border:1px solid #8f8f73;background-color:#fff;width:120px;height:100px;overflow:hidden;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.cke_skin_office2003 .cke_panel iframe{width:100%;height:100%;}cke_skin_office2003 .cke_panel_frame .cke_label{display:none;}html.cke_skin_office2003_container{overflow:auto;overflow-x:hidden;} body.cke_panel_frame{overflow:auto;}ul.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap;}li.cke_panel_listItem{margin:0;}.cke_panel_listItem a{padding:2px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;}* html .cke_panel_listItem a{width:100%;color:#000;}*:first-child+html .cke_panel_listItem a{color:#000;}.cke_panel_listItem.cke_selected a{border:1px solid #ccc;background-color:#e9f5ff;}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#316ac5;background-color:#dff1ff;}.cke_hc .cke_panel_listItem.cke_selected a,.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border-width:3px;padding:0;}.cke_panel_grouptitle{font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif;font-weight:bold;white-space:nowrap;background-color:#dcdcdc;color:#000;margin:0;padding:3px;}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:3px;margin-bottom:3px;}.cke_skin_office2003 .cke_button_textcolor_panel,.cke_skin_office2003 .cke_button_bgcolor_panel{width:150px;height:135px;}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif;}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000;}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left;}.cke_rtl span.cke_colorbox{float:right;}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;}.cke_rtl a.cke_colorbox{float:right;}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#316ac5 1px solid;background-color:#dff1ff;}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer;}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#316ac5 1px solid;background-color:#dff1ff;}@media print{.cke_skin_office2003 .cke_toolbox{display:none;}}.cke_skin_office2003 .cke_browser_webkit .cke_toolbox,.cke_skin_office2003 .cke_browser_webkit .cke_toolbox>span{white-space:normal;}.cke_skin_office2003 .cke_toolbox{clear:both;padding-bottom:1px;}.cke_skin_office2003 a.cke_toolbox_collapser,.cke_skin_office2003 a:hover.cke_toolbox_collapser{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:3px -1026px;background-repeat:no-repeat;width:11px;height:11px;float:right;border:outset 1px;margin:11px 2px 2px;cursor:pointer;}.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser,.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser{float:left;}.cke_skin_office2003 a.cke_toolbox_collapser span{display:none;}.cke_skin_office2003 .cke_hc a.cke_toolbox_collapser span{font-size:10px;font-weight:bold;font-family:Arial;display:inline;}.cke_skin_office2003 a.cke_toolbox_collapser_min,.cke_skin_office2003 a:hover.cke_toolbox_collapser_min{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:4px -1047px;background-repeat:no-repeat;margin:2px;}.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser_min,.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser_min{background-position:4px -1068px;}.cke_skin_office2003 .cke_toolbar{background-color:#d6dff7;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -962px;background-repeat:repeat-x;display:inline-block;float:left;!height:28px;!line-height:28px;}.cke_skin_office2003 .cke_rtl .cke_toolbar{float:right;}.cke_skin_office2003 .cke_toolgroup{display:inline-block;float:left;height:28px;}.cke_skin_office2003 .cke_browser_ie .cke_toolgroup{#float:none;#display:inline;}.cke_skin_office2003 .cke_rtl .cke_toolgroup{float:right;}.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup{#float:none;}.cke_skin_office2003 .cke_separator{display:inline-block;float:left;border-left:solid 1px #B2CBFF;margin:6px 2px;height:16px;} .cke_skin_office2003 .cke_browser_ie .cke_separator{#float:none;#display:inline;}.cke_skin_office2003 .cke_rtl .cke_separator{float:right;}.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator{#float:none;}.cke_skin_office2003 .cke_break{clear:left;}.cke_skin_office2003 .cke_rtl .cke_break{clear:right;}.cke_skin_office2003 .cke_toolbar_start{display:inline-block;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-repeat:no-repeat;background-position:-27px -765px;width:10px;height:28px;float:left;}.cke_skin_office2003 .cke_browser_ie .cke_toolbar_start{#float:none;#display:inline;}.cke_skin_office2003 .cke_rtl .cke_toolbar_start{background-position:-27px -816px;float:right;}.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start{#float:none;}.cke_skin_office2003 .cke_toolbar_end{display:inline-block;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-repeat:no-repeat;background-position:-29px -861px;width:4px;height:28px;float:left;}.cke_skin_office2003 .cke_browser_ie .cke_toolbar_end{#float:none;#display:inline;}.cke_skin_office2003 .cke_rtl .cke_toolbar_end{background-position:-29px -907px;float:right;}.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end{#float:none;}.cke_skin_office2003 .cke_browser_ie9plus .cke_rtl .cke_separator,.cke_skin_office2003 .cke_browser_ie9plus .cke_rtl .cke_toolbar_start,.cke_skin_office2003 .cke_browser_ie9plus .cke_rtl .cke_toolbar_end{vertical-align:middle;}.cke_skin_office2003 .cke_button a,.cke_skin_office2003 .cke_button a:hover,.cke_skin_office2003 .cke_button a:focus,.cke_skin_office2003 .cke_button a:active,.cke_skin_office2003 .cke_button a.cke_off{border:solid 1px transparent;border-radius:3px;outline:none;padding-top:2px;padding-left:4px;padding-right:4px;padding-bottom:2px;margin-top:2px;height:18px;vertical-align:top;_border:none;_margin:3px 1px 1px 1px;cursor:default;display:inline-block;}.cke_skin_office2003 .cke_button a,.cke_skin_office2003 .cke_button a.cke_off{filter:alpha(opacity=70);opacity:.70;-moz-border-radius:3px;-webkit-border-radius:3px;}.cke_skin_office2003 .cke_hc .cke_button a,.cke_skin_office2003 .cke_hc .cke_button a.cke_off{opacity:1.0;filter:alpha(opacity=100);_border:1px solid transparent;}.cke_skin_office2003 .cke_button a.cke_on{border:solid 1px #316ac5;background-color:#c1d2ee;filter:alpha(opacity=100);opacity:1;_margin:2px 0 0 0;}.cke_skin_office2003 .cke_hc .cke_button a:hover,.cke_skin_office2003 .cke_hc .cke_button a:focus,.cke_skin_office2003 .cke_hc .cke_button a:active{padding:0 2px!important;border-width:3px;}.cke_skin_office2003 .cke_button a.cke_disabled *{filter:alpha(opacity=30);opacity:.3;}.cke_skin_office2003 .cke_browser_ie .cke_button a.cke_disabled *,.cke_skin_office2003 .cke_browser_ie a:hover.cke_button .cke_disabled *{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);}.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button a.cke_disabled *,.cke_skin_office2003 .cke_browser_ie .cke_rtl a:hover.cke_button .cke_disabled *{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);}.cke_skin_office2003 .cke_browser_ie6 .cke_button a.cke_disabled *,.cke_skin_office2003 .cke_browser_ie6 a:hover.cke_button .cke_disabled *,.cke_skin_office2003 .cke_browser_ie .cke_button.cke_noalphafix a.cke_disabled *{filter:alpha(opacity=30);}.cke_skin_office2003 .cke_hc .cke_button a.cke_disabled *,.cke_skin_office2003 .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled *{filter:alpha(opacity=60);opacity:.6;}.cke_skin_office2003 .cke_button a:hover,.cke_skin_office2003 .cke_button a:focus,.cke_skin_office2003 .cke_button a:active{border:solid 1px #316ac5;background-color:#dff1ff;filter:alpha(opacity=100);opacity:1;vertical-align:top;_margin:2px 0 0 0;padding:2px 4px;}.cke_skin_office2003 .cke_button .cke_icon{background-image:url(icons.png);background-position:100px;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;display:inline-block;cursor:default;} .cke_skin_office2003 .cke_rtl .cke_button .cke_icon{background-image:url(icons_rtl.png);}.cke_skin_office2003 .cke_browser_ie .cke_button .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_skin_office2003 .cke_browser_ie6 .cke_button .cke_icon,.cke_skin_office2003 .cke_browser_ie6 .cke_rtl .cke_button .cke_icon,.cke_skin_office2003 .cke_browser_ie .cke_button.cke_noalphafix .cke_icon,.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button.cke_noalphafix .cke_icon{filter:;}.cke_skin_office2003 .cke_button .cke_label{display:none;padding-left:3px;cursor:default;vertical-align:middle;_background-image:url(images/sprites_ie6.png);_background-position:0 -970px;_background-repeat:repeat-x;}.cke_skin_office2003 .cke_button a:hover .cke_label{_background-color:#dff1ff;_background-image:none;}.cke_skin_office2003 .cke_button a.cke_on .cke_label{_background-color:#c1d2ee;_background-image:none;}.cke_skin_office2003 .cke_hc .cke_button .cke_label{padding:0;display:inline-block;}.cke_skin_office2003 .cke_hc .cke_button .cke_icon{display:none;}.cke_skin_office2003 .cke_accessibility{position:absolute;display:block;width:0;height:0;overflow:hidden;}.cke_skin_office2003 .cke_button .cke_buttonarrow{display:inline-block;height:18px;width:8px;background-position:2px -1004px;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-repeat:no-repeat;cursor:default;}.cke_skin_office2003 .cke_browser_ie .cke_button .cke_buttonarrow{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_skin_office2003 .cke_browser_ie6 .cke_button .cke_buttonarrow{filter:;}.cke_skin_office2003 .cke_rtl .cke_button .cke_buttonarrow{background-position:0 -1004px;}.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar,.cke_skin_office2003 .cke_browser_gecko18 .cke_button a,.cke_skin_office2003 .cke_browser_gecko18 .cke_button a.cke_off,.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_icon,.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_buttonarrow,.cke_skin_office2003 .cke_browser_gecko18 .cke_separator,.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_start,.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_end{display:block;float:left;}.cke_skin_office2003 .cke_browser_gecko18 .cke_hc .cke_button .cke_icon{display:none;}.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a.cke_off,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_icon,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_buttonarrow,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_separator,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_start,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_end{float:right;}.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label,.cke_skin_office2003 .cke_browser_gecko18 .cke_break{float:left;}.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl span.cke_inline_label{float:right;}.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_label,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_break,.cke_skin_office2003 .cke_browser_ie8 .cke_rtl .cke_break,.cke_skin_office2003 .cke_browser_ie9plus .cke_rtl .cke_break{float:right;}.cke_skin_office2003 .cke_browser_gecko18 .cke_separator{margin-top:4px;}.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label{padding-top:3px;}.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup,.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator,.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start,.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end{float:none;}.cke_skin_office2003 .cke_browser_ie8 .cke_toolbar,.cke_skin_office2003 .cke_browser_ie8 .cke_toolgroup{vertical-align:top;} .cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolbar,.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolgroup{vertical-align:baseline;}.cke_skin_office2003 .cke_browser_iequirks .cke_separator{vertical-align:text-bottom;}.cke_skin_office2003 .cke_browser_ie .cke_rcombo,.cke_skin_office2003 .cke_browser_ie .cke_rcombo *{cursor:default;}.cke_skin_office2003 .cke_contextmenu{padding:2px;}.cke_skin_office2003 .cke_menuitem a{display:block;}.cke_skin_office2003 .cke_menuitem span{cursor:default;}.cke_skin_office2003 .cke_menuitem a:hover,.cke_skin_office2003 .cke_menuitem a:focus,.cke_skin_office2003 .cke_menuitem a:active{background-color:#8db1ff;display:block;}.cke_hc .cke_menuitem a:hover,.cke_hc .cke_menuitem a:focus,.cke_hc .cke_menuitem a:active{border:2px solid;}.cke_skin_office2003 .cke_menuitem .cke_icon{background-image:url(icons.png);background-position:100px;background-repeat:no-repeat;background-color:transparent;width:16px;height:16px;float:left;}.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_icon{background-image:url(icons_rtl.png);}.cke_browser_ie .cke_skin_office2003 .cke_menuitem .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie6 .cke_skin_office2003 .cke_menuitem .cke_icon,.cke_browser_ie .cke_skin_office2003 .cke_menuitem.cke_noalphafix .cke_icon{filter:;}.cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon{filter:alpha(opacity=70);opacity:.70;}.cke_browser_ie .cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie6 .cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon,.cke_browser_ie .cke_skin_office2003 .cke_menuitem.cke_noalphafix .cke_disabled .cke_icon{filter:;}.cke_skin_office2003 .cke_menuitem .cke_icon_wrapper{background-color:#f7f8fd;border:solid 4px #f7f8fd;width:16px;height:16px;float:left;filter:alpha(opacity=70);opacity:.70;clear:both;}.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_icon_wrapper{float:right;}.cke_skin_office2003 .cke_menuitem a:hover .cke_icon_wrapper,.cke_skin_office2003 .cke_menuitem a:focus .cke_icon_wrapper,.cke_skin_office2003 .cke_menuitem a:active .cke_icon_wrapper{background-color:#9d9d9d;border:solid 4px #9d9d9d;filter:alpha(opacity=70);opacity:.70;}.cke_skin_office2003 .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,.cke_skin_office2003 .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,.cke_skin_office2003 .cke_menuitem a:active.cke_disabled .cke_icon_wrapper{background-color:#f7f8fd;border:solid 4px #f7f8fd;}.cke_skin_office2003 .cke_menuitem .cke_label{display:block;padding-right:3px;padding-top:5px;padding-left:4px;height:19px;margin-left:24px;background-color:#fff;}.cke_skin_office2003 .cke_frameLoaded .cke_menuitem .cke_label{filter:alpha(opacity=70);opacity:.70;}.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_label{padding-right:0;margin-left:0;padding-left:3px;margin-right:28px;}.cke_skin_office2003 .cke_menuitem a.cke_disabled .cke_label{filter:alpha(opacity=30);opacity:.30;}.cke_skin_office2003 .cke_menuitem a:hover .cke_label,.cke_skin_office2003 .cke_menuitem a:focus .cke_label,.cke_skin_office2003 .cke_menuitem a:active .cke_label{background-color:#8db1ff;}.cke_skin_office2003 .cke_menuitem a.cke_disabled:hover .cke_label,.cke_skin_office2003 .cke_menuitem a.cke_disabled:focus .cke_label,.cke_skin_office2003 .cke_menuitem a.cke_disabled:active .cke_label{background-color:transparent;}.cke_skin_office2003 .cke_menuseparator{background-color:#f7f8fd;height:2px;filter:alpha(opacity=70);opacity:.70;_font-size:0;}.cke_skin_office2003 .cke_menuarrow{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -1071px;background-repeat:no-repeat;height:5px;width:3px;float:right;margin-right:2px;margin-top:3px;} .cke_rtl .cke_skin_office2003 .cke_menuarrow{float:left;margin-right:0;margin-left:2px;background-position:0 -1050px;}.cke_skin_office2003 .cke_menuarrow span{display:none;}.cke_hc .cke_skin_office2003 .cke_menuarrow{width:auto;margin-top:0;}.cke_hc .cke_skin_office2003 .cke_menuarrow span{display:inline;}.cke_browser_ie.cke_ltr .cke_skin_office2003 .cke_menuarrow{position:absolute;right:2px;}.cke_browser_ie.cke_rtl .cke_skin_office2003 .cke_menuarrow{position:absolute;left:2px;}.cke_skin_office2003 .cke_rcombo{display:inline-block;margin-left:2px;margin-right:2px;margin-top:2px;vertical-align:top;}.cke_skin_office2003 .cke_browser_ie .cke_rcombo{#display:inline;}.cke_skin_office2003 .cke_rcombopanel{border:1px solid #316ac5;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;}.cke_skin_office2003 .cke_rcombo a{display:inline-block;float:left;filter:alpha(opacity=70);opacity:.70;}.cke_skin_office2003 .cke_rtl .cke_rcombo a{float:right;}.cke_skin_office2003 .cke_hc .cke_rcombo a{filter:alpha(opacity=100);opacity:1.0;}.cke_skin_office2003 .cke_rcombo .cke_label{display:inline-block;float:left;cursor:default;line-height:24px;height:24px;vertical-align:top;padding-left:4px;padding-right:5px;filter:alpha(opacity=70);opacity:.70;_background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);_background-position:0 -962px;_background-repeat:repeat-x;}.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_label{float:right;padding-right:4px;padding-left:5px;}.cke_skin_office2003 .cke_hc .cke_rcombo .cke_label{filter:alpha(opacity=100);opacity:1.0;}.cke_skin_office2003 .cke_rcombo .cke_inline_label{color:#fff;}.cke_skin_office2003 .cke_rcombo .cke_text{border:1px solid #8f8f73;background-color:#fff;height:14px;width:60px;padding-top:4px;padding-bottom:4px;padding-left:5px;padding-right:5px;text-overflow:ellipsis;overflow:hidden;display:inline-block;vertical-align:top;cursor:default;}.cke_skin_office2003 .cke_ltr .cke_rcombo .cke_text{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;}.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_text{-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;}.cke_skin_office2003 .cke_browser_iequirks .cke_rcombo .cke_text{height:22px;}.cke_skin_office2003 .cke_rcombo .cke_openbutton{display:inline-block;border-top:1px solid #8f8f73;border-bottom:1px solid #8f8f73;}.cke_skin_office2003 .cke_rcombo .cke_openbutton .cke_icon{display:inline-block;background-position:5px -1002px;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-repeat:no-repeat;width:14px;height:22px;}.cke_skin_office2003 .cke_browser_iequirks .cke_rcombo .cke_openbutton .cke_icon{height:20px;}.cke_skin_office2003 .cke_browser_ie .cke_rcombo .cke_openbutton .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_skin_office2003 .cke_browser_ie6 .cke_rcombo .cke_openbutton .cke_icon{filter:;}.cke_skin_office2003 .cke_hc .cke_rcombo .cke_openbutton .cke_icon{background:none;filter:;}.cke_skin_office2003 .cke_ltr .cke_rcombo .cke_openbutton{border-right:1px solid #8f8f73;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;}.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_openbutton{border-left:1px solid #8f8f73;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;}.cke_skin_office2003 .cke_rcombo .cke_off a:hover,.cke_skin_office2003 .cke_rcombo .cke_off a:focus,.cke_skin_office2003 .cke_rcombo .cke_off a:active,.cke_skin_office2003 .cke_rcombo .cke_on a{filter:alpha(opacity=100);opacity:1;} .cke_skin_office2003 .cke_rcombo .cke_off a:hover .cke_text,.cke_skin_office2003 .cke_rcombo .cke_off a:focus .cke_text,.cke_skin_office2003 .cke_rcombo .cke_off a:active .cke_text,.cke_skin_office2003 .cke_rcombo .cke_on .cke_text{border-color:#316ac5;}.cke_skin_office2003 .cke_rcombo .cke_off a:hover .cke_openbutton,.cke_skin_office2003 .cke_rcombo .cke_off a:focus .cke_openbutton,.cke_skin_office2003 .cke_rcombo .cke_off a:active .cke_openbutton,.cke_skin_office2003 .cke_rcombo .cke_on .cke_openbutton{border-color:#316ac5;background-color:#dff1ff;}.cke_skin_office2003 .cke_rcombo .cke_on .cke_text{-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;}.cke_skin_office2003 .cke_rcombo .cke_on .cke_openbutton{-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;}.cke_skin_office2003 .cke_rcombo .cke_disabled .cke_label{filter:alpha(opacity=30);opacity:.3;}.cke_skin_office2003 .cke_hc .cke_rcombo .cke_disabled .cke_label{filter:alpha(opacity=70);opacity:.7;}.cke_skin_office2003 .cke_rcombo .cke_disabled .cke_text,.cke_skin_office2003 .cke_rcombo .cke_disabled .cke_openbutton{filter:alpha(opacity=50);opacity:.5;}.cke_skin_office2003 .cke_browser_ie .cke_rcombo .cke_disabled .cke_openbutton{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=50);}.cke_skin_office2003 .cke_browser_ie6 .cke_rcombo .cke_disabled .cke_openbutton{filter:alpha(opacity=50);}.cke_skin_office2003 .cke_hc .cke_rcombo .cke_disabled .cke_text,.cke_skin_office2003 .cke_hc .cke_rcombo .cke_disabled .cke_openbutton{filter:alpha(opacity=80);opacity:.8;}.cke_skin_office2003 .cke_rcombo .cke_disabled .cke_text{color:#fff;}.cke_skin_office2003 .cke_browser_gecko18 .cke_rcombo,.cke_skin_office2003 .cke_browser_gecko18 .cke_rcombo .cke_label,.cke_skin_office2003 .cke_browser_gecko18 .cke_rcombo .cke_text,.cke_skin_office2003 .cke_browser_gecko18 .cke_rcombo .cke_openbutton,.cke_skin_office2003 .cke_browser_webkit .cke_rcombo .cke_label,.cke_skin_office2003 .cke_browser_webkit .cke_rcombo .cke_text,.cke_skin_office2003 .cke_browser_webkit .cke_rcombo .cke_openbutton{display:block;float:left;}.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_rcombo,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_label,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_text,.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_openbutton,.cke_skin_office2003 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_label,.cke_skin_office2003 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_text,.cke_skin_office2003 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_openbutton{float:right;}.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_rcombo,.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_rcombo a,.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_rcombo .cke_label{float:none;}.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_font .cke_text,.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_fontSize .cke_text{direction:ltr;}@media print{.cke_path{display:none;}}.cke_skin_office2003 .cke_path{padding:3px 3px 0 3px;display:inline-block;float:left;}.cke_skin_office2003 .cke_rtl .cke_path{float:right;}.cke_skin_office2003 .cke_path a,.cke_skin_office2003 .cke_path .cke_empty{display:inline-block;float:left;border:solid 1px #f7f8fd;background-color:#f7f8fd;padding-top:1px;padding-bottom:1px;padding-left:4px;padding-right:4px;margin-bottom:3px;cursor:default;}.cke_skin_office2003 .cke_path .cke_empty{visibility:hidden;}.cke_skin_office2003 .cke_rtl .cke_path a,.cke_skin_office2003 .cke_rtl .cke_path cke_empty{float:right;}.cke_skin_office2003 .cke_path a:hover,.cke_skin_office2003 .cke_path a:focus,.cke_skin_office2003 .cke_path a:active{border:solid 1px #316ac5;background-color:#dff1ff;padding-top:1px;padding-bottom:1px;padding-left:4px;padding-right:4px;outline:none;}.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_path a,.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_path .cke_empty{float:none;}.cke_skin_office2003 .cke_path .cke_label{display:none;} .cke_skin_office2003 .cke_button_source .cke_icon{background-position:0 0;}.cke_skin_office2003 .cke_button_docProps .cke_icon{background-position:0 -16px;}.cke_skin_office2003 .cke_button_newpage .cke_icon{background-position:0 -48px;}.cke_skin_office2003 .cke_button_preview .cke_icon{background-position:0 -64px;}.cke_skin_office2003 .cke_button_cut .cke_icon{background-position:0 -96px;}.cke_skin_office2003 .cke_button_copy .cke_icon{background-position:0 -112px;}.cke_skin_office2003 .cke_button_paste .cke_icon{background-position:0 -128px;}.cke_skin_office2003 .cke_button_pastetext .cke_icon{background-position:0 -144px;}.cke_skin_office2003 .cke_button_find .cke_icon{background-position:0 -240px;}.cke_skin_office2003 .cke_button_replace .cke_icon{background-position:0 -256px;}.cke_skin_office2003 .cke_button_selectAll .cke_icon{background-position:0 -272px;}.cke_skin_office2003 .cke_button_removeFormat .cke_icon{background-position:0 -288px;}.cke_skin_office2003 .cke_button_bold .cke_icon{background-position:0 -304px;}.cke_skin_office2003 .cke_button_italic .cke_icon{background-position:0 -320px;}.cke_skin_office2003 .cke_button_underline .cke_icon{background-position:0 -336px;}.cke_skin_office2003 .cke_button_strike .cke_icon{background-position:0 -352px;}.cke_skin_office2003 .cke_button_subscript .cke_icon{background-position:0 -368px;}.cke_skin_office2003 .cke_button_superscript .cke_icon{background-position:0 -384px;}.cke_skin_office2003 .cke_button_table .cke_icon{background-position:0 -608px;}.cke_skin_office2003 .cke_button_horizontalrule .cke_icon{background-position:0 -624px;}.cke_skin_office2003 .cke_button_smiley .cke_icon{background-position:0 -640px;}.cke_skin_office2003 .cke_button_link .cke_icon{background-position:0 -528px;}.cke_skin_office2003 .cke_button_unlink .cke_icon{background-position:0 -544px;}.cke_skin_office2003 .cke_button_anchor .cke_icon{background-position:0 -560px;}.cke_skin_office2003 .cke_button_image .cke_icon{background-position:0 -576px;}.cke_skin_office2003 .cke_button_flash .cke_icon{background-position:0 -592px;}.cke_skin_office2003 .cke_button_specialchar .cke_icon{background-position:0 -656px;}.cke_skin_office2003 .cke_button_pagebreak .cke_icon{background-position:0 -672px;}.cke_skin_office2003 .cke_button_print .cke_icon{background-position:0 -176px;}.cke_skin_office2003 .cke_button_checkspell .cke_icon,.cke_skin_office2003 .cke_button_scayt .cke_icon{background-position:0 -192px;}.cke_skin_office2003 .cke_button_pagebreak .cke_icon{background-position:0 -672px;}.cke_skin_office2003 .cke_button_textcolor .cke_icon{background-position:0 -704px;}.cke_skin_office2003 .cke_button_bgcolor .cke_icon{background-position:0 -720px;}.cke_skin_office2003 .cke_button_form .cke_icon{background-position:0 -752px;}.cke_skin_office2003 .cke_button_checkbox .cke_icon{background-position:0 -768px;}.cke_skin_office2003 .cke_button_radio .cke_icon{background-position:0 -784px;}.cke_skin_office2003 .cke_button_textfield .cke_icon{background-position:0 -800px;}.cke_skin_office2003 .cke_button_textarea .cke_icon{background-position:0 -816px;}.cke_skin_office2003 .cke_button_showblocks .cke_icon{background-position:0 -1136px;}.cke_skin_office2003 .cke_button_select .cke_icon{background-position:0 -832px;}.cke_skin_office2003 .cke_button_button .cke_icon{background-position:0 -848px;}.cke_skin_office2003 .cke_button_imagebutton .cke_icon{background-position:0 -864px;}.cke_skin_office2003 .cke_button_hiddenfield .cke_icon{background-position:0 -880px;}.cke_skin_office2003 .cke_button_undo .cke_icon{background-position:0 -208px;}.cke_skin_office2003 .cke_rtl .cke_button_undo .cke_icon{background-position:0 -224px;}.cke_skin_office2003 .cke_button_redo .cke_icon{background-position:0 -224px;}.cke_skin_office2003 .cke_rtl .cke_button_redo .cke_icon{background-position:0 -208px;}.cke_skin_office2003 .cke_button_templates .cke_icon{background-position:0 -80px;}.cke_skin_office2003 .cke_button_numberedlist .cke_icon{background-position:0 -400px;}.cke_skin_office2003 .cke_button_bulletedlist .cke_icon{background-position:0 -416px;} .cke_skin_office2003 .cke_mixed_dir_content .cke_button_numberedlist .cke_icon{background-position:0 -1217px;}.cke_skin_office2003 .cke_mixed_dir_content .cke_button_bulletedlist .cke_icon{background-position:0 -1233px;}.cke_skin_office2003 .cke_button_outdent .cke_icon{background-position:0 -432px;}.cke_skin_office2003 .cke_button_indent .cke_icon{background-position:0 -448px;}.cke_skin_office2003 .cke_mixed_dir_content .cke_button_indent .cke_icon{background-position:0 -1265px;}.cke_skin_office2003 .cke_mixed_dir_content .cke_button_outdent .cke_icon{background-position:0 -1249px;}.cke_skin_office2003 .cke_button_justifyleft .cke_icon{background-position:0 -464px;}.cke_skin_office2003 .cke_button_justifycenter .cke_icon{background-position:0 -480px;}.cke_skin_office2003 .cke_button_justifyright .cke_icon{background-position:0 -496px;}.cke_skin_office2003 .cke_button_justifyblock .cke_icon{background-position:0 -512px;}.cke_skin_office2003 .cke_button_blockquote .cke_icon{background-position:0 -1152px;}.cke_skin_office2003 .cke_button_flash .cke_icon{background-position:0 -592px;}.cke_skin_office2003 .cke_button_pastefromword .cke_icon{background-position:0 -160px;}.cke_skin_office2003 .cke_button_save .cke_icon{background-position:0 -32px;}.cke_skin_office2003 .cke_button_about .cke_icon{background-position:0 -736px;}.cke_skin_office2003 .cke_button_maximize .cke_icon{background-position:0 -1040px;}.cke_skin_office2003 .cke_button_creatediv .cke_icon{background-position:0 -1168px;}.cke_skin_office2003 .cke_button_editdiv .cke_icon{background-position:0 -1184px;}.cke_skin_office2003 .cke_button_removediv .cke_icon{background-position:0 -1200px;}.cke_skin_office2003 .cke_button_bidirtl .cke_icon{background-position:0 -1072px;}.cke_skin_office2003 .cke_button_bidiltr .cke_icon{background-position:0 -1056px;}.cke_skin_office2003 .cke_button_iframe .cke_icon{background-position:0 -1279px;}.cke_skin_office2003 .cke_button_source .cke_label{display:inline;}.cke_skin_office2003 .cke_styles_panel{width:150px;height:170px;}.cke_skin_office2003 .cke_format_panel{width:150px;height:170px;}.cke_skin_office2003 .cke_font_panel{width:150px;height:170px;}.cke_skin_office2003 .cke_fontSize_panel{height:170px;}.cke_skin_office2003 .cke_fontSize .cke_text{width:20px;}.cke_skin_office2003 .cke_browser_iequirks .cke_fontSize .cke_text{width:32px;}html .cke_skin_office2003{visibility:inherit;}html.cke_skin_office2003_container{visibility:visible;} ���������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/templates.css������������������������0000664�0001750�0001750�00000003062�12262650742�025454� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ .cke_skin_office2003 .cke_tpl_list{border:#dcdcdc 2px solid;background-color:#fff;overflow:auto;width:100%;height:220px;}.cke_skin_office2003 .cke_tpl_item{margin:5px;padding:7px;border:#eee 1px solid;*width:88%;}.cke_skin_office2003 .cke_tpl_preview{border-collapse:separate;text-indent:0;width:100%;}.cke_skin_office2003 .cke_tpl_preview td{padding:2px;vertical-align:middle;}.cke_skin_office2003 .cke_tpl_preview .cke_tpl_preview_img{width:100px;}.cke_skin_office2003 .cke_tpl_preview span{white-space:normal;}.cke_skin_office2003 .cke_tpl_title{font-weight:bold;}.cke_skin_office2003 .cke_tpl_list a:active .cke_tpl_item,.cke_skin_office2003 .cke_tpl_list a:hover .cke_tpl_item,.cke_skin_office2003 .cke_tpl_list a:focus .cke_tpl_item{border:#f93 1px solid!important;background-color:#fffacd!important;}.cke_skin_office2003 .cke_tpl_list a:active *,.cke_skin_office2003 .cke_tpl_list a:hover *,.cke_skin_office2003 .cke_tpl_list a:focus *{cursor:pointer;}.cke_skin_office2003 .cke_browser_ie6 .cke_tpl_list a:active,.cke_skin_office2003 .cke_browser_ie6 .cke_tpl_list a:hover,.cke_skin_office2003 .cke_browser_ie6 .cke_tpl_list a:focus{background-position:0 0;}.cke_skin_office2003 .cke_tpl_list a:active .cke_tpl_item,.cke_skin_office2003 .cke_tpl_list a:hover .cke_tpl_item,.cke_skin_office2003 .cke_tpl_list a:focus .cke_tpl_item{border-width:3px;}.cke_skin_office2003 .cke_tpl_empty,.cke_tpl_loading{text-align:center;padding:5px;} ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/dialog.css���������������������������0000664�0001750�0001750�00000040666�12262650742�024730� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ body .cke_dialog{visibility:visible;}.cke_skin_office2003 table.cke_dialog.cke_browser_gecko{display:block;}.cke_skin_office2003 .cke_dialog_body{margin-left:16px;margin-right:16px;margin-top:2px;margin-bottom:20px;z-index:1;_position:static;}.cke_skin_office2003 .cke_dialog_tl,.cke_skin_office2003 .cke_dialog_tr,.cke_skin_office2003 .cke_dialog_tc,.cke_skin_office2003 .cke_dialog_bl,.cke_skin_office2003 .cke_dialog_br,.cke_skin_office2003 .cke_dialog_bc{background-image:url(images/sprites.png);background-repeat:no-repeat;position:absolute;_background-image:url(images/sprites_ie6.png);z-index:-1;}.cke_skin_office2003 .cke_dialog_tl{background-position:-16px -16px;height:16px;width:16px;top:0;left:0;}.cke_skin_office2003 .cke_rtl .cke_dialog_tl{background-position:-16px -397px;}.cke_skin_office2003 .cke_dialog_tr{background-position:-16px -76px;height:16px;width:16px;top:0;right:0;}.cke_skin_office2003 .cke_rtl .cke_dialog_tr{background-position:-16px -457px;}.cke_skin_office2003 .cke_dialog_tc{background-position:0 -136px;background-repeat:repeat-x;height:16px;top:0;left:16px;right:16px;}.cke_skin_office2003 .cke_dialog_bl{background-position:-16px -196px;height:51px;width:30px;bottom:0;left:0;}.cke_skin_office2003 .cke_rtl .cke_dialog_bl{background-position:-16px -517px;}.cke_skin_office2003 .cke_dialog_br{background-position:-16px -263px;height:51px;width:30px;bottom:0;right:0;}.cke_skin_office2003 .cke_rtl .cke_dialog_br{background-position:-16px -584px;}.cke_skin_office2003 .cke_dialog_bc{background-position:0 -330px;background-repeat:repeat-x;height:51px;bottom:0;left:30px;right:30px;}.cke_skin_office2003 .cke_dialog_ml,.cke_skin_office2003 .cke_dialog_mr{background-image:url(images/dialog_sides.png);background-repeat:repeat-y;position:absolute;width:16px;top:16px;bottom:51px;_background-image:url(images/dialog_sides.gif);_top:auto;}.cke_skin_office2003 .cke_rtl .cke_dialog_ml,.cke_skin_office2003 .cke_rtl .cke_dialog_mr{background-image:url(images/dialog_sides_rtl.png);_background-image:url(images/dialog_sides.gif);}.cke_skin_office2003 .cke_dialog_ml{background-position:0 0;left:0;}.cke_skin_office2003 .cke_dialog_mr{background-position:-16px 0;right:0;}.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_ml,.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_mr{margin-top:3px;}.cke_skin_office2003 .cke_dialog_title{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -678px;background-repeat:repeat-x;font-weight:bold;font-size:14pt;color:#0E3460;background-color:#8db1ff;padding:3px 10px 26px 10px;cursor:move;position:relative;}.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_title{position:static;}.cke_skin_office2003 .cke_dialog_contents{background-color:#f7f8fd;border:#2b66c9 1px solid;overflow:auto;padding:5px 10px;}.cke_skin_office2003 .cke_dialog_footer{background-color:#8db1ff;text-align:right;}.cke_skin_office2003 .cke_rtl .cke_dialog_footer{text-align:left;}.cke_skin_office2003 .cke_dialog_footer .cke_resizer{margin-top:21px;}.cke_skin_office2003 .cke_dialog_tabs{height:23px;background-color:#8db1ff;display:inline-block;margin-left:10px;margin-right:10px;margin-top:-23px;position:absolute;z-index:2;}.cke_skin_office2003 .cke_rtl .cke_dialog_tabs{right:10px;}.cke_skin_office2003 a.cke_dialog_tab,.cke_skin_office2003 a:link.cke_dialog_tab,.cke_skin_office2003 a:active.cke_dialog_tab,.cke_skin_office2003 a:hover.cke_dialog_tab,.cke_skin_office2003 a:visited.cke_dialog_tab{color:#0E3460;border-left:1px solid #2b66c9;border-right:1px solid #2b66c9;border-top:1px solid #2b66c9;height:14px;padding:4px 5px;display:inline-block;cursor:pointer;}.cke_skin_office2003 .cke_browser_gecko18 a.cke_dialog_tab,.cke_skin_office2003 .cke_browser_gecko18 a:link.cke_dialog_tab,.cke_skin_office2003 .cke_browser_gecko18 a:active.cke_dialog_tab,.cke_skin_office2003 .cke_browser_gecko18 a:hover.cke_dialog_tab,.cke_skin_office2003 .cke_browser_gecko18 a:visited.cke_dialog_tab{display:inline;position:relative;top:6px;}.cke_skin_office2003 a:hover.cke_dialog_tab{background-color:#f7f8fd;} .cke_skin_office2003 .cke_hc a:hover.cke_dialog_tab{padding:2px 3px!important;border-width:3px;}.cke_skin_office2003 a.cke_dialog_tab_selected,.cke_skin_office2003 a:link.cke_dialog_tab_selected,.cke_skin_office2003 a:active.cke_dialog_tab_selected,.cke_skin_office2003 a:hover.cke_dialog_tab_selected,.cke_skin_office2003 a:visited.cke_dialog_tab_selected{border-bottom:1px solid #f7f8fd;background-color:#f7f8fd;font-weight:bold;cursor:default;}.cke_skin_office2003 .cke_hc a.cke_dialog_tab_selected,.cke_skin_office2003 .cke_hc a:link.cke_dialog_tab_selected,.cke_skin_office2003 .cke_hc a:active.cke_dialog_tab_selected,.cke_skin_office2003 .cke_hc a:hover.cke_dialog_tab_selected,.cke_skin_office2003 .cke_hc a:visited.cke_dialog_tab_selected{padding:2px 3px!important;border-width:3px;}.cke_skin_office2003 .cke_single_page .cke_dialog_tabs{display:none;}.cke_skin_office2003 .cke_hc .cke_dialog_tabs a,.cke_skin_office2003 .cke_hc .cke_dialog_footer a{opacity:1.0;filter:alpha(opacity=100);border:1px solid white;}.cke_skin_office2003 .cke_single_page .cke_dialog_title{padding-bottom:3px;}.cke_skin_office2003 .cke_dialog_ui_vbox table,.cke_skin_office2003 .cke_dialog_ui_hbox table{margin:auto;}.cke_skin_office2003 .cke_dialog_ui_vbox_child{padding:5px 0;}.cke_skin_office2003 input.cke_dialog_ui_input_text,.cke_skin_office2003 input.cke_dialog_ui_input_password{background-color:white;border:none;padding:0;width:100%;height:14px;}.cke_skin_office2003 div.cke_dialog_ui_input_text,.cke_skin_office2003 div.cke_dialog_ui_input_password{background-color:white;border:1px solid #a0a0a0;padding:1px 0;_width:99.9%;}.cke_skin_office2003 .cke_browser_ie7 input.cke_dialog_ui_input_text,.cke_skin_office2003 .cke_browser_ie7 input.cke_dialog_ui_input_password{position:absolute;}.cke_skin_office2003 .cke_browser_ie7 div.cke_dialog_ui_input_text,.cke_skin_office2003 .cke_browser_ie7 div.cke_dialog_ui_input_password{height:14px;position:relative;}.cke_skin_office2003 .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_text,.cke_skin_office2003 .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_text,.cke_skin_office2003 .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_password,.cke_skin_office2003 .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px;}.cke_skin_office2003 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text,.cke_skin_office2003 .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_text,.cke_skin_office2003 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_password,.cke_skin_office2003 .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px;}.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_vbox_child,.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_child,.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_first,.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important;}.cke_skin_office2003 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px;}.cke_skin_office2003 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_text,.cke_skin_office2003 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_password{border-width:0;}.cke_skin_office2003 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_text,.cke_skin_office2003 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_password{border-width:1px;}.cke_skin_office2003 textarea.cke_dialog_ui_input_textarea{background-color:white;border:none;padding:0;width:100%;_width:99%;overflow:auto;resize:none;}.cke_skin_office2003 div.cke_dialog_ui_input_textarea{background-color:white;border:1px solid #a0a0a0;padding:1px 0;}.cke_skin_office2003 .cke_rtl .cke_dialog_ui_labeled_content{_width:95%;}.cke_skin_office2003 div.cke_disabled .cke_dialog_ui_labeled_content *{background-color:#a0a0a0;cursor:default;}.cke_skin_office2003 .cke_dialog_ui_hbox{width:100%;}.cke_skin_office2003 .cke_dialog_ui_hbox_first,.cke_skin_office2003 .cke_dialog_ui_hbox_child,.cke_skin_office2003 .cke_dialog_ui_hbox_last{vertical-align:top;}.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_first,.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px;} .cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_first,.cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px;}.cke_skin_office2003 a.cke_dialog_ui_button{border-collapse:separate;cursor:default;}.cke_skin_office2003 a.cke_dialog_ui_button_ok span,.cke_skin_office2003 a.cke_dialog_ui_button_cancel span{width:60px;}.cke_skin_office2003 span.cke_dialog_ui_button{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -678px;background-repeat:repeat-x;border:#0E3460 1px solid;padding:2px 10px;text-align:center;color:#0E3460;background-color:#8db1ff;display:inline-block;cursor:default;}.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button{display:block;}.cke_skin_office2003 a.cke_dialog_ui_button span.cke_disabled{border:#898980 1px solid;color:#5e5e55;background-color:#c5c5b3;}.cke_skin_office2003 a:focus span.cke_dialog_ui_button,.cke_skin_office2003 a:active span.cke_dialog_ui_button{background-color:#8db1ff;}.cke_skin_office2003 .cke_hc a:focus span.cke_dialog_ui_button,.cke_skin_office2003 .cke_hc a:active span.cke_dialog_ui_button{border-width:2px;}.cke_skin_office2003 .cke_dialog_footer_buttons{display:inline-table;margin-right:12px;margin-left:12px;width:auto;position:relative;}.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons{display:inline;}.cke_skin_office2003 .cke_dialog_footer_buttons span.cke_dialog_ui_button{margin:7px 0;}.cke_skin_office2003 .cke_browser_ie7 .cke_dialog_footer_buttons{position:static;}.cke_skin_office2003 strong{font-weight:bold;}.cke_skin_office2003 a.cke_dialog_close_button,.cke_skin_office2003 a:hover.cke_dialog_close_button,.cke_skin_office2003 .cke_browser_ie6 a.cke_dialog_close_button,.cke_skin_office2003 .cke_browser_ie6 a:hover.cke_dialog_close_button{background-image:url(images/sprites.png);background-repeat:no-repeat;background-position:-20px -655px;position:absolute;cursor:pointer;text-align:center;height:21px;width:21px;top:4px;_background-image:url(images/sprites_ie6.png);}.cke_skin_office2003 a.cke_dialog_close_button span{display:none;}.cke_skin_office2003 .cke_ltr a.cke_dialog_close_button{right:22px;}.cke_skin_office2003 .cke_rtl a.cke_dialog_close_button,.cke_skin_office2003 .cke_rtl a:hover.cke_dialog_close_button{left:16px;_top:6px;}.cke_skin_office2003 .cke_browser_ie6.cke_rtl a.cke_dialog_close_button,.cke_skin_office2003 .cke_browser_ie6.cke_rtl a:hover.cke_dialog_close_button{position:relative;float:left;margin-top:-55px;margin-left:-7px;}.cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page a.cke_dialog_close_button,.cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page a:hover.cke_dialog_close_button{margin-top:-32px;}.cke_skin_office2003 .cke_browser_iequirks.cke_ltr a.cke_dialog_close_button,.cke_skin_office2003 .cke_browser_iequirks.cke_ltr a:hover.cke_dialog_close_button{margin-top:0;}.cke_skin_office2003 .cke_dialog_ui_input_select{border:1px solid #a0a0a0;background-color:white;}.cke_skin_office2003 .cke_dialog_ui_input_file{width:100%;height:25px;}.cke_skin_office2003 .cke_dialog .cke_dark_background{background-color:#eaead1;}.cke_skin_office2003 .cke_dialog .cke_hand{cursor:pointer;}.cke_skin_office2003 .cke_dialog .cke_centered{text-align:center;}.cke_skin_office2003 .cke_dialog a.cke_btn_reset{float:right;background-position:0 -32px;background-image:url(images/mini.gif);width:16px;height:16px;background-repeat:no-repeat;border:1px none;font-size:1px;}.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_reset{float:left;}.cke_skin_office2003 .cke_dialog a.cke_btn_locked,.cke_skin_office2003 .cke_dialog a.cke_btn_unlocked{float:left;background-position:0 0;background-image:url(images/mini.gif);width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px;}.cke_skin_office2003 .cke_dialog a.cke_btn_locked .cke_icon{display:none;}.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_locked,.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_unlocked{float:right;}.cke_skin_office2003 .cke_dialog a.cke_btn_unlocked{background-position:0 -16px;background-image:url(images/mini.gif);} .cke_skin_office2003 .cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer;}.cke_skin_office2003 .cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:210px;width:230px;padding:2px;background-color:white;}.cke_skin_office2003 .cke_dialog .ImagePreviewBox table td{white-space:normal;}.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_page_contents{_position:absolute;}.cke_skin_office2003 .cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity=90);background-color:#e4e4e4;}.cke_skin_office2003 .cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white;}.cke_skin_office2003 .cke_dialog .cke_pastetext{width:346px;height:170px;}.cke_skin_office2003 .cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none;}.cke_skin_office2003 .cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid black;}.cke_skin_office2003 .cke_dialog .cke_dark_background{text-align:center;background-color:#eaead1;font-size:14px;}.cke_skin_office2003 .cke_dialog .cke_light_background{text-align:center;background-color:#ffffbe;}.cke_skin_office2003 .cke_dialog .cke_hand{cursor:pointer;}.cke_skin_office2003 .cke_disabled{color:#a0a0a0;}.cke_skin_office2003 .cke_hc .cke_dialog_title,.cke_skin_office2003 .cke_hc .cke_dialog_tabs,.cke_skin_office2003 .cke_hc .cke_dialog_contents,.cke_skin_office2003 .cke_hc .cke_dialog_footer{border-left:1px solid;border-right:1px solid;}.cke_skin_office2003 .cke_hc .cke_dialog_title{border-top:1px solid;}.cke_skin_office2003 .cke_hc .cke_dialog_footer{border-bottom:1px solid;}.cke_skin_office2003 .cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px;}.cke_skin_office2003 .cke_dialog_body .cke_label{display:none;}.cke_skin_office2003 .cke_dialog_body label.cke_required{font-weight:bold;}.cke_skin_office2003 .cke_hc .cke_dialog_body .cke_label{display:inline;cursor:inherit;}.cke_skin_office2003 .cke_hc a.cke_btn_locked,.cke_skin_office2003 .cke_hc a.cke_btn_unlocked,.cke_skin_office2003 .cke_hc a.cke_btn_reset{border-style:solid;float:left;width:auto;height:auto;padding:0 2px;}.cke_skin_office2003 .cke_hc a.cke_btn_locked .cke_icon{display:inline;}.cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_locked,.cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_unlocked,.cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_reset{float:right;}.cke_skin_office2003 .cke_dialog_contents a.colorChooser{display:block;margin-top:12px;margin-left:10px;width:40px;}.cke_skin_office2003 .cke_dialog_contents a.colorChooser .cke_dialog_ui_button{width:100%;}.cke_skin_office2003 .cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px;}.cke_skin_office2003 .cke_browser_gecko .cke_dialog_ui_checkbox_input:focus,.cke_skin_office2003 .cke_browser_gecko .cke_dialog_ui_radio_input:focus,.cke_skin_office2003 .cke_browser_opera .cke_dialog_ui_checkbox_input:focus,.cke_skin_office2003 .cke_browser_opera .cke_dialog_ui_radio_input:focus,.cke_skin_office2003 .cke_browser_gecko .cke_dialog_ui_input_select:focus,.cke_skin_office2003 .cke_browser_gecko .cke_btn_over,.cke_skin_office2003 .cke_browser_opera .cke_btn_over,.cke_skin_office2003 .cke_browser_ie .cke_btn_over{outline:1px dotted #696969;}.cke_skin_office2003 .cke_browser_ie .cke_dialog_ui_checkbox_input,.cke_skin_office2003 .cke_browser_ie .cke_dialog_ui_ratio_input,.cke_skin_office2003 .cke_browser_ie .cke_btn_reset,.cke_skin_office2003 .cke_browser_ie .cke_btn_locked,.cke_skin_office2003 .cke_browser_ie .cke_btn_unlocked{*border:1px solid transparent!important;-border:1px solid red!important;-filter:chroma(color=red);}.cke_skin_office2003 .cke_browser_ie .cke_dialog_ui_focused,.cke_skin_office2003 .cke_browser_ie .cke_btn_over{*border:1px dotted #696969!important;}.cke_skin_office2003 .cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity=0);width:100%;height:100%;} .cke_dialog label{display:inline;margin-bottom:auto;cursor:default;} ��������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/skin.js������������������������������0000664�0001750�0001750�00000001767�12262650742�024260� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.skins.add('office2003',(function(){return{editor:{css:['editor.css']},dialog:{css:['dialog.css']},separator:{canGroup:false},templates:{css:['templates.css']},margins:[0,14,18,14]};})());(function(){CKEDITOR.dialog?a():CKEDITOR.on('dialogPluginReady',a);function a(){CKEDITOR.dialog.on('resize',function(b){var c=b.data,d=c.width,e=c.height,f=c.dialog,g=f.parts.contents;if(c.skin!='office2003')return;g.setStyles({width:d+'px',height:e+'px'});if(!CKEDITOR.env.ie||CKEDITOR.env.ie9Compat)return;var h=function(){var i=f.parts.dialog.getChild([0,0,0]),j=i.getChild(0),k=j.getSize('width');e+=j.getChild(0).getSize('height')+1;var l=i.getChild(2);l.setSize('width',k);l=i.getChild(7);l.setSize('width',k-28);l=i.getChild(4);l.setSize('height',e);l=i.getChild(5);l.setSize('height',e);};setTimeout(h,100);if(b.editor.lang.dir=='rtl')setTimeout(h,1000);});};})(); ���������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/office2003/icons.png����������������������������0000664�0001750�0001750�00000012736�12262650742�024575� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR����������� pHYs�� �� ���� cHRM��z%��������u0��`��:��o_F���PLTE���CC�M>>+00Sb333 88 �7,�"(+TW'3S%FFg[$:BBUȹ�XQ}&iܯkn?Bwq酈5{g^4q 'E;;��ҹ?@Oqph ^+$�Oe>>ixN.JJT`vWORCxeܺWD E٧H8�38ǺQ^225ML3LL!]DS xxw˛1JO)HE6AG1LH!DDrrrzg>NjRwxq� <J@,%O>PP�993*`"BD7== C<@9$EE@QQ q#t1 m�"_1KK#DI'GG 77ptylVXX]mwlAAF[�NEshhhښ7غUxxx럟<?ʠX1h;OOdr>O[/;C~~}�33[B#Gir|֤X$EGL.KF Lѐ<<6x6S~=ѧ���tRNS�@f��KIDATx{י_!Um, ;l ƀ8rr1IIH&mvn۽zw{c39-[F2` N1&.nns3#Y0Ͼg=:h.ȴjX,�&omT*JBA* ƺA2$mmmCQEQ>[):0nkk9p8LA,+� ,,[:eT"BA"H$#CTL E:lGh!AFQoooooK�B٢0�t zMVie˖qc>[D"`Ř `0 }ƆZƀ�aznpLu=&D"6 h�=m�zMC6IA ֆE@bWO;X; CvI;I[�AQno>9:C'?h9/'rCz[opDk@8'D 8>a_a8a_*2׎1[19$ֆ1%("cC*8 R Ɔ>`0t)@$D"L Ĥb6EN>?ޙ3gZ[[i LV4MS>ǎϝ9}i" Ι&„Bp̱s?7ۥ"3vIislo # �|ڊX>@,appk>Z[[%p3U;c____wxs>79~??22r|~w=Nw_C=vaİ|:n>-wZ[||ĩxK\0[Dp뺮�c Ðc JF r E!D*|cIw6kÎd"S4�MS4�MQ�S:A@-�hQp�MMSN ��:5E:5 4M"&M!⫝boG"v%`+́u:RѬNM~3M鴶+iV2:YES��hY-³ioG'x_E4g4tj([~4FE9-">zZNۙs�W& �a@O��t �tPa}+ܵB-La} ``)B ge` aL9!�!8!b Bv@:!�"źxEtm5]/^S"lg8d^2{% =nx `h/1q]5P4?TP(A E(A'|bC!TE!DDlJDۜ/YK͗��R)R ̗6E)gԔARSR0pf5%O9cuZ ;|p \cHe<Y<qxoؖ8-<R7<1�x56Qa=}>x<1xc>�9cMgT QF;xKEX %iidd"'(Ng�H3 C1ˠ&h:}KAQt&|Q{N (̲ Lm64M2QR0Qvg|ʇ(Q(M\U7KLqĘ̬7K<bZ~{hn݂+_(e_BA7�2*:�XH7˖]fMA2 @ � �]d |@ yϗL�8ad�ɤ|>/yL&#E">�|>ɇ3"[�7-@�cpn!L|n7K$|n7K��OCoظ8@7>'��NcpP׿O?թbA] 94u= F(t bmܸ`Ѡ �6> 2 7,`6<<<<<,++++񚾾 *++++K-y��~d{S�`xW˗/Z�p{.�qw[~� 5k}uʕwڵ^r� ./////m۶�[mݶ- �@ N+(Yܪ* VUUUQ\hKw++ (7z�pEUUUkw)+VS;w<Q#^çkj('~zEM1xCᎭ<QLjjaqqq76N0Kg\Tb)hK1cccS28066f+b1g h)2$S� )ͨ̀] ̯nX vL "KaPӳunzWFGd-+,{D"޲J cz1^K <W"N׻h"֊^׻>ҥK�^o�o}}-|�Xdw͞y,W$ _gXlBpZ]q ?~ɇ uݴ࣒ڧ�yNG:oϟwTq~t>Ԑf|F9ny�yv1+V1LbeEeEE"F��6/.*+**b~ū6/.+bh͋O"Zky"i71ϭ$�VrW?nݺup?7MS�\�e֭W`{ �6svٲepmg)= {]F <[rJ<6�?JozTzxgvkܔ^wpMC?'I3ogy6ӍT2o޼yMf}=׀Hm"՗,!~bD7RO'2b!/Z 1ttV lm$_ 0[Hcl C�C;2' ݏxWAxYBg8k�"! -@0&K�LT/z4&�߭`.ׇJKW~گUK$T1Hҵ6(R^تE?7=3#b3n*qIAB9@)!"w֓)M4L"~Ic0&—8  nD5qi$=@10 UkVLalJC`Ҁ/q`/%/H\MPicLa H=ƘT)@T�kuwYKٜʙ&#`d&+Lsj8d!g-P:ZB!@(y ��D uu! jO2PWWWW[R_�]CO> ��`l7Y!#��%1 cH�;1_`:=�wTTX׿nUp�7Z;9�S�~tц S{z**�0jthpS=�P[^}*ڭct=A/׎nF�&JpEhUpT�0A1v^w�Kd՟nJ@tKd}OWU2:} >t n OI#grq,m%.TUUU9p9rUv]qNkq\jG> �y(Y _aCUUu TL%rǜCwCYDw둏q:-cyk]?pTyu}DHli:`\bme%.g'!`F&nk>/k&U5> ptTbe]앟"�}܃ Whx4(TZ(*)�\\8jg\e~^9{ ;`Ħ�v! x˕ bą'F+Q\]cs9}xqrG<knN\`6Z{epcJ�5}Z0æOJMd&[ߺjwwwm<`lX @<qiNa('t�ƓbAr,u]׻%x^$8I~Q=~/Zi X,S+[bEQfdb}�g(k6έ-_R1q1dnoKOqWο;יaf~t8|97OXzA3(}KkgxLTy٠fӟQ% ?9e{r̄,][;W>L|j̙a磹.on~pC=ǚ455upe}s!*?r~<ͯ�_r?T��{jnn>o:|�`=͍{��`|_46_+Z{Omh/_%s_iO<4pk_ݽ{n��;B ����IENDB`����������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/�������������������������������������������0000775�0001750�0001750�00000000000�12262650742�022114� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/icons_rtl.png������������������������������0000664�0001750�0001750�00000012740�12262650742�024622� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR����������� pHYs�� �� ���� cHRM��z%��������u0��`��:��o_F���PLTE���CC�M>>+00Sb333 88 �7,�"(+TW'3S%FFg[$:BBUȹ�XQ}&iܯkn?Bwq酈5{g^4q 'E;;��ҹ?@Oqph ^+$�Oe>>ixN.JJT`vWORCxeܺWD E٧H8�38ǺQ^225ML3LL!]DS xxw˛1JO)HE6AG1LH!DDrrrzg>NjRwxq� <J@,%O>PP�993*`"BD7== C<@9$EE@QQ q#t1 m�"_1KK#DI'GG 77ptylVXX]mwlAAF[�NEshhhښ7غUxxx럟<?ʠX1h;OOdr>O[/;C~~}�33[B#Gir|֤X$EGL.KF Lѐ<<6x6S~=ѧ���tRNS�@f��MIDATx{SיǿBd!X&` KbHmtvVLi; ˹9d8M'@KD1ifƞ:p]e |>{W.:\#Y"Htso&ͣd2L ͫh&qB6ƛ|}eYI+ӄB27 L%r$I#*D>$FIHr JR)ڒh*F*qBZZZZx-8hlQ c~hTIBoF"@0 hp$.b1g>ݭn't]ABuJnН 麨cM5i iss,%fx%]�b ݎM,>(ȲLi~hUh(81lwN8/zɓg>�w8v]Ó6ÿ>|넣<Хs,o9tC:!IWO$y0 , GqI{ b1RO0<[Xb]TQJL qjq*(btRbX,t]AwL#[w} z]aMo. I?C55 zKG-fJ QcQbg7~uSa�tSa|�Hؿ�$,9\]>8k|]tvuv;;;;;8νG|t#z޽_f>s{3x}׬]|0"D|)Ii;m_ To$AG)I䃤N5'T w_2J"&STJ2GJd^{p4M4'R )BGjS37bA7QI"$έ&Q, Lvqe)a ,hUV*d1�TUU98-j@Uڪ�ZUYV[Úb Kddϡ^v=˲Z=GݠV*eUUU;|ʲ�*lhVL:Hʲ,[yow*,<f脬Ƭ׳m95JW�`D�0KŽ#�A�T1ڄ&=BcƁ1U:a`L{T�01U00ƬDS] 4Js�… 6l那Yp¤M�i:-J {/_8F Ң#'H}I;87ZFJOOO<gD�Ӟx<gDTQ>OqF728!fc2{DMMf>��2 2Lw�W #xdFu:ULq(XՂט>=1Ãis-A&L |gHY2H&Id2inOBqĖ$pi$7%\TT"Ug;"㶨(2(*BQB(5V9It;G9qZ UY.D47A2ę[6+޸Hc;ͩSf'XsV<N, G�`8uapj*\`q}ax[n>‘?fnSq/GR1z+?Ib'WP̡�~qq1b?~�X\� ~-$t:p8)p8Li[8`0wtt:H)wi鴞`0}w0X, X0 ߯M>Ş|\-7po'$~Ri A ��3!V'� )G1I~sd&� G"D}OFyHH|YE"M"L"Hׯ'Cr`LOlz{{{{{UUUUtegg_UUUUU+;ww竪/N@/]ŋ/@Л*////~ 8vm+G֮�\+K.]{Lwر;\t @f͚5k7oٲ4�y,ܼeVq˖,l8f厎KJJJJ\yͳQɼymVVbmʖX߼㱲%�Pd޼yeQVd�%K,)'o{l>pa�e۾ؓO.YX))6dYFɶ/-\ 2nv%eeee޸`v̸v+K8mR |NhY}*.VI"|a2D"!6k.wKgyWvVpǫɲ:7m΍@StCN|AUJJJi*@z@` /C8 sQ,2 ,Xp ^ =3..NΞz.8ʡP(3C[](%9&X/8 T!$  dj~6PӽkuBZYCb0Ie�t9*Y {W~{B99q3+QJ�2E---e�湥я~RY:wRʍs++2(;wܹ+\U VAi)ofx.̅qc lt3+c0V�h�ފ5k֜yvų܋�a;uɭXfM%J홍�*=c�r -ZdxmF/>̋NP93-_J>,gkoyϲ<ӛ͚V!V|6d?_[]]]Q6iӀiO?cyӞf븢>yڴiӾnlx :R*/ڀ3B5?R)Z2',3 R=GY4PT Ul!*EURTRVbQJ,1-Q ;82o*13Bqq5X~Q0J@e j(SpYb2gzת$ZM)Ք1:ȩ,Zzu5)w5K%( exCy@c(`RܾXEj@at9 1ʢZRFrz1";0mbUz0 (U-#PtJ .g-KU3*Q^4 FYfʿ$9��)%t9c1tJ*Rj2J))VQ/c>vsAqF JQ0 ݓSGzV(2VX4Q0Jto+yQ)//_v�u5ujkkkȣ P[[[[SCpܣ^ �+<=3�`n#1=�1=ƁczcGhƌ3Bk"m.{O?o?6{ l�ҿѨn�$ۧZ�jVۻ"�_u>~cfNZ޿O?:cg;FD*f3FcoWo}zP*:;<ү�X5ΊP V]`lC@|O(<({: tX둆) |Oc}VEQL5vMB/Ӥx"qEQa{W8 e�d";e{(4MӼ1wɉt2+?47+*\|1c=|p-@u?>AH \iqc$kI7NGÊ�NI6˱̫pY#WF =@zL'=$NDm| qM,i9s;7b b޽W,8wPlล-N|;oK4i@=12c^}ޫWtй3L$ݘu1*ob #W$9g~>BX{{{k̵_] LZ`xxx8ɤ�Úɤ SJ;$a$h4MkhnN&v+&^Iuyk}>Js+O{O�%,^MIF"dY`A6M�gȎבSnn=eY<lE#N #dnO:3AYer!ϥ){!y+:I?8橓=8'׍ti1; eXSoFj#9[1dטq uo|8zaU}VqmCë|v=p| ]ѮCeO54 �/_.3�ؽTCCÁhW�0ஆ]OD�ݻ]װkk'ww՝2#ݰA+<Q|e9{侈yɔ;w�̀O����IENDB`��������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/images/������������������������������������0000775�0001750�0001750�00000000000�12262650742�023361� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/images/dialog_sides_rtl.png����������������0000664�0001750�0001750�00000000265�12262650742�027401� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ������g���gAMA��7���tEXtSoftware�Adobe ImageReadyqe<���GIDATxb,.gf```bv b �bA bq ҢPq$75$0o.i ��� 5����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/images/sprites_ie6.png���������������������0000664�0001750�0001750�00000005244�12262650742�026330� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR�����������sRGB���PLTE�����,+-�"1jI+7oM)VQP18�6-5�03�< 7�B ?�=@> ?�DBFefdD HIJOLQ RTTWqZ\[v�]]z�b(bf+hi'k,n/n6p)p8u9v,ˊ��w;y6xC|CӐ�~7ۑ��9ۖ�B:�B��ߜ��� �����(���/ ��4��9���=񷹶�N𹻸ŸùM  þ^ĥ�!¾$b��'e3oȬ!t5q,"@}̶'0Ձ6־74:@EFPR[����tRNS�@f���bKGD�H��� pHYs�� �� ����tIME ,"@h��=IDATx݉_uڄEс咥f'kMa[XYPvtZmfeحEameNb8ß'Tdw^f~"J*Z]jsy6ל<u{|.\XZxćE?(/bOM\M|c7ݲ/\+qUK vlUu?pS֬Ӆ7Q|-0|c nذ`7<Kܐ\κٺu[[WM/[tK_NNu ^M4jؘ��{��qT)�� >p@_V8] 6@+nQF5jԨQF5jԨQF5jԸWn �^c�>pp'@t#@7?_ J= PџgHRJ)RJx1@@mC<f[nY 3AIn~0Fx;G*l%cޏU*f+qێiJ3&/NQc{{ "+?&&oo|.#ѾoQlhctsT.7X79bmDHo$uqӦ|lKލ={zXwkSocҺ={MO]=-uuu[oݡ. u$M<$3jgPg{{gPg'SgO 갞|෠F y2#s�qb;x$v蟶/@#TJ)Rn3N9TT\<dʌX+(,,~tIɌӜ<WPPq'6ô<OrA!G}^YQKdiNn/khaM"1;G/k؈2}Jp1;b舱|߅&3wͰ̱hٹyy|f"3rs|rdUQrn2%fgx|k1眜\aʰ{FN#jzV477ǥ;-ijj^sjj644.Yns̩'}Ɋ&ӪgMM+UU(~yVVVUU'Zϗ S'EgYKSO廮 VgOӥ6HॳK-/7YR?]+5X1_%WU֗YQaKfV+܇ɳ*ъ9VVn5^p|a)! .L6�_=ș\dt@337RRεų=.b2Edg6L0g4,,N+Dv;ў@'�4dM8M4ydhҤIdcQ�>Q/ :H#f^F/: `B}�-@{ʿL&ܘȍ27~{C.{�ﰷ;6u 2E d2&:ef G0e2q~љӝL.i9_�7^ɜql)ħm0gN�IFjnSx.J\c\e2mTc `q k,.^eL&y%?y]̜b'&@L=q$\9|dtT;Ý&'`s- w!ώ1Dh%+HW{yQ_D_PP ~Ű!`;sWk$%RZ~z-Z>j7n+[xpO§=?:8K*RJ)RJ)RJ)RJ))/ J%gbwet����IENDB`������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/images/dialog_sides.gif��������������������0000664�0001750�0001750�00000000060�12262650742�026472� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a ���՝!���,���� ��� W��;��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/images/sprites.png�������������������������0000664�0001750�0001750�00000015656�12262650742�025575� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��������W!��uIDATx xTյWOQ V% (X[Qk^W}a~ܶjBB  CB$ b &L2$Xw9${IFvxY_Ι}$?p8p8>0*5:SiǤ]߄eka:od~ʺ6`κ t~|:^s70#%#J8RRoWViiM8~jjOS~G7df 7u-\іik&tegc.ነm-rX3aaNBb-WS9'>E|,wX貶q$sѷ",-,DAsLF5LXVRYD^L.ץ%ERߺuKK%%M*gMXQV)U_az.,-e"TDڤ}:'ES%gԺF#$]bO8f9SR4am{1>$Lic(\{_:l2l63;FKHJQ~x6Orp8mK82ya(n!a!12D.aI%5>DD\A~e1&3$bU&36zL".k!3֛D& Ih� dhBwe%<$4C7*j +$¼ MfMb^XJ_L?6@IQļM$$,D@a>ļ0??MBB\.dIE_L.2%,d! YB,d! YB,d! YB,d! YB,d! YB,d! YB,d! YB,d! YB,d! YB,d! YB,d! YB,d! YB ̡aNnsr$&M3DfddI $ys:$慛6mBp#6n܈&$~z4 ͐v r2>zb5L.o!]~C$kM"L"M.$Bg!1X,n3&DpI ?54.3.1&D7k!|$BIM�p8pbMFz:<ߢB,d! 9p8p8p8p8p8p8p1OggfIM%%%h()*BX'\Цm~ t)1 I&o;Qߎ0&tp\1c OI2 P(:ƅǃya @~1.<Zzo QҸvIXBxG0Ӆ'PpY\Mw^ֽ8bg5!T^kt+sA-}44!P46 DPdlR;{"%!t{>|0$t~GBo$:YR۱ofIEG*?(EnD)_~V׹[w6jhHӭPW{^[[ 扜q՞[ oV4яKPU- Mw[js{cUUBFNDdnK xRUUilR<-Hٺ BU$cDHǕcWVVIMh(/+C@iI)b6u3\'_zhfffL(8^i$Ƅ7o�Ύ) 7mڄ&1/4_Mb~p8p8p8p8H͘_SO^ػ|]CL#34)J'C/L =k'̪Kr4(Zτ_ }ԅg (\8]Y~nWe8y3v>a)7, |Z]a ; 8;a~" 8Hhſ8k3Y tC;z"|OGqF_Ļ_�ó#Eύg/S֬e5#t͡0|uWkN1tCĩ=,So퍁bQH8W,øC 5dGvL.Iz]7ʮ{\ ^Ky,t ]G=1ZWԇ⥚W~'"0*c;ah X=$K/uS᮱q%`"oIk|y~ph= o=0,Wag!I D.񈎘>3.cD72J{i%`|ެ"BGt$Fb$l7iΑ )FÏ'&&v�B KI\@]J3L92Sqb$xc}w^8͒28.G3phGA3k7* k.,KJ>s@ "|w޼ a |C?<#1D3;#0H3vt8kѥt*;?"A�$E@@qK: (77.YG$6Lk"y }ٵag`^�azP̶vw,E޴= DU`Rd&H\O3 Ӭ{=[[@K#�uy,o( Г$%i1GpxX^b9A?a敎n-~T ^/=afKr?=|H\d)hIU{X{YgMB|Rtϐ8͸_ݾq^g\*oԚjE蟜HmH$etB*TFRMh2m&Sͦ2Keʨʨ*RFid2*PM2Aet;\*yT?\TF]TF]TFs.RFwZ޽$W]x->7SM2hC1Ke4n*-Ѥq)}9><?uTF's U4Sqʢ22Z@et',}f0q1}D-e buK)}Fi~$2fa\6 ߆z>ӧ4qX ygKߣA7fMeEet=vBЉ!~DK-.y0%q 9oЕn5Jet'\*2op!p}J/|Btƽ/. 0kj  W2|FBoZTF+2{ C?՚._ٚ2:\zxTF/fY%$\x0Ek ,{XLM. e7Fkys^-~p,\k;at*R u֓4Xx,Z�W[N%a)-ͣK_EeSLetQz7>OtG8".2Det>TFSKsf2g-Ň4HRGkTZ?*Q*TFP]�eTF%*gk#Kt|,o^FLet>P>|K곩7^_#@ނ`0o*/BڿQ<=k)huAA[p{^bke>Iro>Y7^tZ+uL ^j&etJ_9<.gyP;C?j<wNH,4KI20DǫXxR <VRF PUj[A[ ]Ԩh/kPţp/Upwa *(l ,X`zM\nyQi؀wW :y:Gnc20%4* Y T&h\k?\5ʌ١_CCkK+0aX5D.<2 _c j; (Ja *Z ۾R[P!2tLFo~iPB-ߢo.E**@^tʁ.KPkJ@܊]h =39 ֙R~>2Ɯy |?}5*<31:zbʄJ!;'t!x ?>NAo kB^CPH|h nߪߎj2[TPٗ`LHppoXtoyPBCUf EC_ X*A X )r;8rWtlLoYJ;x:�rF>xP;gж 7xn[A_{+�ͽP4^Q&j$G=1:=4iNA5nꦡz H@]�k;L;FÎkcSPFkz8:$P=$px"L7wη heUVGbQz(k; U*iGg(T݂2iU*l\9 UnVآ &T5hCctӈ+Auhhb*ZEoZ$X*4 + |8&kGa �k/\T`W$ƪ2:*CQf޾Ę(UY~P�UQ9T%B,h2h?Sabq|Teo34vH*2VH*([NGKTON ,,Ry_O E*vAgyG?]0oj4kߥèdk7w"I1u5*dNR>9$ _hdNv>WbT2ƫ|ۚ�6ш[�L [/NF8~i#[FB:B%MpEiC#^*RL2ᔁQM竤MP9 sURU!,ƳBV!?FeCtBkQ\%^%zcTjNmTTXSEooֿm(ӰFw` ]QaU7]ÿ+K@Njm%"k젢_O& DKe|ڏYPPƽXv$P-F0Y|[yGC J3/˘B3<qep7_ac1Ku,/qԘ̸%˛p8η5kdeBDbn %' 9¹' c [yc>c@xc?1Z!|x^<iv4?CtLWCģt )iJgJ$~A̢又e '"@ D@'Ö#g_l1=R9<� Wt"C!'3n3*뇑2b 1O!%!Wt=MT1 x<~^w-L!Ep .sE\\}㡢>Gmr=F zb$B^^^nݏ9C PYYyѣGOѶ/ xFaO`�q�-Z/(!v(..*9t)b@:z gA r]3؊#q:$+mGb8=m<mSj\:ɲ<m-9Be-gK[F6 4q^8vvu�i}Fq:ki[ )tX{iPN88"~I"_ڝBf%۔v{yPtGgY iIa a-HBy hbYfKwkG^m\w}й!MD:^<#v˳S[gB-3͔f,ﰗf;e}o5BJ/RTT:!f˲;bk˔�jvVJLǷm=`2`' e*{kVW,'Vkp*o? I}{v6 m`?&Do_c<_>`?~~K^'F< ~b3]w^;3\<y/Xq hJĹ⹘9<Hzfl?7G^x$uqXw[j[GTx4u3y|u6Z�TNvcoZzQWд MI8sՔ@ e 9N'ST͐pyf͚FeƄq[}cwW-6 O\E;xhtbKv))-]v{)p8p8p8p8p8p8p8p8p8p8p8p8p8p8p8p8p8p8i5PhIE$B$B$Bd!\h!|$B/k&—M"7$BIpI@0Ial&»M"3M"M@`I@CCXH@}}?$PWWwIe=$PSS$PUU$P^^$P\\$$$% mjcj����IENDB`����������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/images/toolbar_start.gif�������������������0000664�0001750�0001750�00000000151�12262650742�026724� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a����xX|ZbhbGusrkNvxWe������!�� �,��������j86Ŗ^~ &$�;�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/images/noimage.png�������������������������0000664�0001750�0001750�00000004103�12262650742�025504� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���(���(��� H_���PLTEVV\\TT⟟XX⠠▖bbIIff``CCFFMMZZ㮮㳳SSᆆ቉⚚wwWWxx~~⑑ጌ㭭㣣DD㻻nn⨨ᐐⓓ^^XXᗗNNooKKAAllttUU└JJᎎ㵵㱱㽽uvee㲲⥥㼼PPፍ㪪[[㺺㶶mm㾾qq}}yyPPQQ㰰㷷⛛☘ss❝rrss㯯✜ᄄኊ㫫ዋ⭭ለ]]||㝝GG♙㘘ddiikk潽ppzzHH➞NN䟞㴴⣣^^??;;aa⦦ᕕSS>>||ᇇᅅ⸸ⱱ⪪㢢⬬ႂ人QQ㸸䱱㿿hh㧧RR⎎jj㜜ab毮䥥⽽⮮⫫洴⢢㬬汱䵵䷷⧧㦦庹绺䨨ᄃRRᓓ㹹䠟UU99@@JJ77䪪SSPPff躹似䲲᜜Ⲳ❞ᘘ⋋纹⍍㚚ⷷrszzYp ��IDATx^=H6m۶mo۶m۶͵WS[IʯPPرc?BQQ`4 M<b%:m V ă^jWlKLrtq9F=ayyjSypFQУZ yxŘ19�|#9fǎиLBp�4f JM}m݊]S7ZřpΙ(;\Y Ѐ^  ###CR(VS3Ե%0F)\0 ]/ }MR\xۧ[?[S~yp]qzCȂ* oj!*jnkA]YW|ecc)###E"P`k1%j]AOMuh:AmQ(F lxmrƖWNP6>GˆSPZ;vv$�EkXಹҥfSY%B9k@-:fA;4rD9)z@U^Ni̲\˻j+Iʲr$MWh|i]o i ^ HI:s]R@/͵k"LJ["ew3VJ뛒0JB1$mHV׵`>c{]j*iI筮+|}�x)/b uec 1 Qe=޻1Uw]4ƻxgpzݜ_j]uYJgvh0`Zx'T/Z;JyׯM͛/*1G*+2ݽ^Xnv:>/0*AuqK`C^\ߢgz+KQ 6.\:~l;zĨq{Y=̣K||gg3Chf = C(kAgOv|I&#`r4hӷE&X%!!a v-}|ꕋ{qN)d2Q;͍g-@LTmt6>-,wy3:;;<(9,oTWbZZr8K.w|!"Bt6 }r9iX=9W`Ȇ݆;& j,sp ? 騷-EwfzSb,Y2=s&ûy<{<O[Q'TFWgZ����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/images/mini.gif����������������������������0000664�0001750�0001750�00000000267�12262650742�025011� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a�0����www�ff��!���,�����0��|x01,,%#^d$A^Lxa[R+'RSZ3UКvP( 4[}$t fz b�C fdegun]7 �;�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/images/dialog_sides.png��������������������0000664�0001750�0001750�00000000262�12262650742�026515� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ������g���gAMA��7���tEXtSoftware�Adobe ImageReadyqe<���DIDATxb?1$H1;s'%=E7o- k ~ ϡk8H @ �>B{����IENDB`����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/editor.css���������������������������������0000664�0001750�0001750�00000074065�12262650742�024130� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ .cke_skin_kama *,.cke_skin_kama a:hover,.cke_skin_kama a:link,.cke_skin_kama a:visited,.cke_skin_kama a:active{margin:0;padding:0;border:0;background:transparent;text-decoration:none;font:normal normal normal 100% Sans-Serif;width:auto;height:auto;border-collapse:collapse;text-align:left;vertical-align:baseline;white-space:nowrap;cursor:auto;color:#000;float:none;font-size:12px;font-family:Arial,Helvetica,Tahoma,Verdana,Sans-Serif;}.cke_skin_kama .cke_rtl *,.cke_skin_kama .cke_rtl a:hover,.cke_skin_kama .cke_rtl a:link,.cke_skin_kama .cke_rtl a:visited,.cke_skin_kama .cke_rtl a:active,.cke_rtl .cke_skin_kama *,.cke_rtl .cke_skin_kama a:hover,.cke_rtl .cke_skin_kama a:link,.cke_rtl .cke_skin_kama a:visited,.cke_rtl .cke_skin_kama a:active{text-align:right;}.cke_skin_kama iframe{vertical-align:inherit;}.cke_skin_kama textarea{white-space:pre;}.cke_skin_kama .cke_browser_gecko textarea{cursor:text;}.cke_skin_kama .cke_browser_gecko textarea[disabled]{cursor:default;}.cke_skin_kama input[type="text"],.cke_skin_kama input[type="password"]{cursor:text;}.cke_skin_kama input[type="text"][disabled],.cke_skin_kama input[type="password"][disabled]{cursor:default;}.cke_skin_kama fieldset{padding:10px;border:2px groove #E0DFE3;}.cke_skin_kama{display:block;}span.cke_skin_kama{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid #D3D3D3;padding:5px;}.cke_skin_kama span.cke_browser_webkit,.cke_skin_kama span.cke_browser_gecko18{display:block;}.cke_skin_kama .cke_wrapper{-moz-border-radius:5px;-webkit-border-radius:5px;-webkit-touch-callout:none;border-radius:5px;background-color:#d3d3d3;background-image:url(images/sprites.png);background-repeat:repeat-x;background-position:0 -1950px;display:block;_display:inline-block;padding:5px;}.cke_shared .cke_skin_kama .cke_wrapper{padding-bottom:0;}.cke_skin_kama .cke_browser_ie6 .cke_wrapper,.cke_skin_kama .cke_browser_iequirks .cke_wrapper{background-image:none;}.cke_skin_kama .cke_editor{display:inline-table;width:100%;}.cke_skin_kama .cke_browser_ie .cke_editor,.cke_skin_kama .cke_browser_webkit .cke_editor{display:table;}.cke_skin_kama .ltr .cke_browser_ie iframe{margin-right:-10px;}.cke_skin_kama .rtl .cke_browser_ie iframe{margin-left:-10px;}.cke_skin_kama .cke_browser_opera .cke_editor.cke_skin_kama .cke_resizer{display:table;}.cke_skin_kama .cke_contents{margin:5px;}.cke_skin_kama .cke_hc .cke_contents{border:1px solid black;}.cke_skin_kama .cke_contents iframe{background-color:#fff;}.cke_skin_kama .cke_focus{outline:auto 5px -webkit-focus-ring-color;}.cke_skin_kama textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre;}.cke_skin_kama .cke_browser_iequirks textarea.cke_source{_white-space:normal;}.cke_skin_kama .cke_resizer{width:12px;height:12px;margin-top:9px;display:block;float:right;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -1428px;background-repeat:no-repeat;cursor:se-resize;}.cke_skin_kama .cke_browser_air .cke_resizer,.cke_skin_kama .cke_browser_air .cke_rtl .cke_resizer{cursor:move;}.cke_skin_kama .cke_resizer_rtl{cursor:sw-resize;background-position:0 -1455px;float:left;}.cke_skin_kama .cke_resizer_horizontal,.cke_skin_kama .cke_rtl .cke_resizer_horizontal{cursor:e-resize;}.cke_skin_kama .cke_resizer_vertical,.cke_skin_kama .cke_rtl .cke_resizer_vertical{cursor:n-resize;}.cke_skin_kama .cke_maximized .cke_resizer{display:none;}.cke_skin_kama .cke_browser_ie6 .cke_contents textarea,.cke_skin_kama .cke_browser_ie7 .cke_contents textarea{position:absolute;}.cke_skin_kama .cke_browser_ie.cke_browser_quirks .cke_contents iframe{position:absolute;top:0;}.cke_skin_kama .cke_browser_ie6 .cke_editor,.cke_skin_kama .cke_browser_ie7 .cke_editor{display:inline-block;}.cke_skin_kama .cke_browser_ie6 .cke_editor,.cke_shared .cke_skin_kama .cke_browser_ie7 .cke_wrapper{padding-bottom:5px;}.cke_skin_kama .cke_voice_label{display:none;}.cke_skin_kama legend.cke_voice_label{display:none;}.cke_skin_kama .cke_browser_ie legend.cke_voice_label{position:absolute;display:block;width:0;height:0;overflow:hidden;} .cke_skin_kama .cke_panel{border:1px solid #8f8f73;background-color:#fff;width:120px;height:100px;overflow:hidden;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.cke_skin_kama .cke_contextmenu{margin:0;}.cke_skin_kama .cke_panel iframe{width:100%;height:100%;}html.cke_skin_kama_container{overflow:auto;overflow-x:hidden;}body.cke_panel_frame{overflow:auto;}.cke_panel_frame .cke_label{display:none;}ul.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap;}li.cke_panel_listItem{margin:0;}.cke_panel_listItem a{padding:2px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;}* html .cke_panel_listItem a{width:100%;color:#000;}*:first-child+html .cke_panel_listItem a{color:#000;}.cke_panel_listItem.cke_selected a{border:1px solid #ccc;background-color:#e9f5ff;}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#316ac5;background-color:#dff1ff;}.cke_hc .cke_panel_listItem.cke_selected a,.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border-width:3px;padding:0;}.cke_panel_grouptitle{font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif;font-weight:bold;white-space:nowrap;background-color:#dcdcdc;color:#000;margin:0;padding:3px;}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:3px;margin-bottom:3px;}.cke_skin_kama .cke_button_textcolor_panel,.cke_skin_kama .cke_button_bgcolor_panel{width:150px;height:135px;}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif;}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000;}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left;}.cke_rtl span.cke_colorbox{float:right;}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;}.cke_rtl a.cke_colorbox{float:right;}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#316ac5 1px solid;background-color:#dff1ff;}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer;}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#316ac5 1px solid;background-color:#dff1ff;}@media print{.cke_skin_kama .cke_toolbox{display:none;}}.cke_skin_kama .cke_browser_webkit .cke_toolbox,.cke_skin_kama .cke_browser_webkit .cke_toolbox>span{white-space:normal;}.cke_skin_kama .cke_toolbox{clear:both;padding-bottom:1px;}.cke_skin_kama a.cke_toolbox_collapser,.cke_skin_kama a:hover.cke_toolbox_collapser{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:3px -1366px;background-repeat:no-repeat;width:11px;height:11px;float:right;border:1px outset #D3D3D3;margin:11px 0 2px;cursor:pointer;}.cke_skin_kama .cke_rtl a.cke_toolbox_collapser,.cke_skin_kama .cke_rtl a:hover.cke_toolbox_collapser{float:left;}.cke_skin_kama a.cke_toolbox_collapser span{display:none;}.cke_skin_kama .cke_hc a.cke_toolbox_collapser span{font-size:10px;font-weight:bold;font-family:Arial;display:inline;}.cke_skin_kama a.cke_toolbox_collapser_min,.cke_skin_kama a:hover.cke_toolbox_collapser_min{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:4px -1387px;background-repeat:no-repeat;margin:2px 4px;}.cke_skin_kama .cke_rtl a.cke_toolbox_collapser_min,.cke_skin_kama .cke_rtl a:hover.cke_toolbox_collapser_min{background-position:4px -1408px;}.cke_skin_kama .cke_separator{display:inline-block;border-left:solid 1px #D3D3D3;margin:3px 2px 0;height:16px;vertical-align:top;}.cke_skin_kama .cke_break{font-size:0;clear:left;}.cke_skin_kama .cke_rtl .cke_break{clear:right;}.cke_skin_kama .cke_toolbar_start{display:none;}.cke_skin_kama .cke_toolgroup{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-repeat:repeat-x;background-position:0 -500px;float:left;margin-right:6px;margin-bottom:5px;padding:2px;display:inline;} .cke_skin_kama .cke_rtl .cke_toolgroup{float:right;margin-right:0;margin-left:6px;}.cke_skin_kama .cke_button a,.cke_skin_kama .cke_button a:hover,.cke_skin_kama .cke_button a:focus,.cke_skin_kama .cke_button a:active,.cke_skin_kama .cke_button a.cke_off{border-radius:3px;outline:none;padding:2px 4px;height:18px;display:inline-block;cursor:default;}.cke_skin_kama .cke_button a,.cke_skin_kama .cke_button a.cke_off{filter:alpha(opacity=70);opacity:.70;-moz-border-radius:3px;-webkit-border-radius:3px;}.cke_skin_kama .cke_hc .cke_button a,.cke_skin_kama .cke_hc .cke_button a.cke_off{opacity:1.0;filter:alpha(opacity=100);border:1px solid white;}.cke_skin_kama .cke_button a.cke_on{background-color:#a3d7ff;filter:alpha(opacity=100);opacity:1;padding:2px 4px;}.cke_skin_kama .cke_hc .cke_button a.cke_on{padding:0 2px!important;border-width:3px;}.cke_skin_kama .cke_button a.cke_disabled *{filter:alpha(opacity=30);opacity:.3;}.cke_skin_kama .cke_browser_ie .cke_button a.cke_disabled *,.cke_skin_kama .cke_browser_ie a:hover.cke_button .cke_disabled *{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);}.cke_skin_kama .cke_browser_ie .cke_rtl .cke_button a.cke_disabled *,.cke_skin_kama .cke_browser_ie .cke_rtl a:hover.cke_button .cke_disabled *{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);}.cke_skin_kama .cke_browser_ie6 .cke_button a.cke_disabled *,.cke_skin_kama .cke_browser_ie6 a:hover.cke_button .cke_disabled *,.cke_skin_kama .cke_browser_ie .cke_button.cke_noalphafix a.cke_disabled *{filter:alpha(opacity=30);}.cke_skin_kama .cke_hc .cke_button a.cke_disabled *,.cke_skin_kama .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled *{filter:alpha(opacity=60);opacity:.6;}.cke_skin_kama .cke_button a:hover.cke_on,.cke_skin_kama .cke_button a:focus.cke_on,.cke_skin_kama .cke_button a:active.cke_on,.cke_skin_kama .cke_button a:hover.cke_off,.cke_skin_kama .cke_button a:focus.cke_off,.cke_skin_kama .cke_button a:active.cke_off{filter:alpha(opacity=100);opacity:1;padding:2px 4px;}.cke_skin_kama .cke_button a:hover,.cke_skin_kama .cke_button a:focus,.cke_skin_kama .cke_button a:active{background-color:#dff1ff;}.cke_skin_kama .cke_button a:hover.cke_on,.cke_skin_kama .cke_button a:focus.cke_on,.cke_skin_kama .cke_button a:active.cke_on{background-color:#86caff;}.cke_skin_kama .cke_hc .cke_button a:hover,.cke_skin_kama .cke_hc .cke_button a:focus,.cke_skin_kama .cke_hc .cke_button a:active{padding:0 2px!important;border-width:3px;}.cke_skin_kama .cke_button .cke_icon{background-image:url(icons.png);background-position:100px;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;display:inline-block;cursor:default;}.cke_skin_kama .cke_rtl .cke_button .cke_icon{background-image:url(icons_rtl.png);}.cke_skin_kama .cke_browser_ie .cke_button .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_skin_kama .cke_browser_ie .cke_rtl .cke_button .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_skin_kama .cke_browser_ie6 .cke_button .cke_icon,.cke_skin_kama .cke_browser_ie6 .cke_rtl .cke_button .cke_icon,.cke_skin_kama .cke_browser_ie .cke_button.cke_noalphafix .cke_icon,.cke_skin_kama .cke_browser_ie .cke_rtl .cke_button.cke_noalphafix .cke_icon{filter:;}.cke_skin_kama .cke_button .cke_label{cursor:default;display:none;padding-left:3px;line-height:18px;vertical-align:middle;}.cke_skin_kama .cke_hc .cke_button .cke_label{padding:0;display:inline-block;}.cke_skin_kama .cke_hc .cke_button .cke_icon{display:none;}.cke_skin_kama .cke_accessibility{position:absolute;display:block;width:0;height:0;overflow:hidden;}.cke_skin_kama .cke_button .cke_buttonarrow{display:inline-block;height:17px;width:8px;background-position:2px -1469px;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-repeat:no-repeat;cursor:default;}.cke_skin_kama .cke_browser_ie .cke_button .cke_buttonarrow{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');} .cke_skin_kama .cke_browser_ie6 .cke_button .cke_buttonarrow{filter:;}.cke_skin_kama .cke_browser_gecko .cke_toolbar,.cke_skin_kama .cke_browser_gecko .cke_button a,.cke_skin_kama .cke_browser_gecko .cke_button a.cke_off,.cke_skin_kama .cke_browser_gecko .cke_button .cke_icon,.cke_skin_kama .cke_browser_gecko .cke_button .cke_buttonarrow,.cke_skin_kama .cke_browser_gecko .cke_separator,.cke_skin_kama .cke_browser_gecko .cke_toolbar_start{display:block;float:left;}.cke_skin_kama .cke_browser_gecko.cke_hc .cke_button .cke_icon{display:none;}.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_toolbar,.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_button a,.cke_skin_kama .cke_browser_gecko .cke_rtl.cke_button a.cke_off,.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_button .cke_icon,.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_button .cke_buttonarrow,.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_separator,.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_toolbar_start{float:right;}.cke_skin_kama .cke_browser_gecko .cke_button .cke_label,.cke_skin_kama .cke_browser_gecko .cke_break{float:left;}.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_button .cke_label,.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_break,.cke_skin_kama .cke_browser_ie8 .cke_rtl .cke_break,.cke_skin_kama .cke_browser_ie9plus .cke_rtl .cke_break{float:right;}.cke_skin_kama .cke_browser_webkit .cke_toolbar{float:left;}.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_toolbar{float:right;}.cke_skin_kama .cke_browser_ie .cke_button .cke_label{line-height:16px;}.cke_skin_kama .cke_browser_ie .cke_rcombo,.cke_skin_kama .cke_browser_ie .cke_rcombo *{cursor:default;}.cke_skin_kama .cke_browser_ie .cke_toolbox{padding-bottom:5px;_padding-bottom:6px;}.cke_shared .cke_skin_kama .cke_browser_ie .cke_toolbox{padding-bottom:0;}.cke_skin_kama .cke_contextmenu{padding:2px;}.cke_skin_kama .cke_menuitem a{display:block;}.cke_skin_kama .cke_menuitem span{cursor:default;}.cke_skin_kama .cke_menuitem a:hover,.cke_skin_kama .cke_menuitem a:focus,.cke_skin_kama .cke_menuitem a:active{background-color:#D3D3D3;display:block;}.cke_hc .cke_menuitem a:hover,.cke_hc .cke_menuitem a:focus,.cke_hc .cke_menuitem a:active{border:2px solid;}.cke_skin_kama .cke_menuitem .cke_icon{background-image:url(icons.png);background-position:100px;background-repeat:no-repeat;background-color:transparent;width:16px;height:16px;float:left;}.cke_rtl .cke_skin_kama .cke_menuitem .cke_icon{background-image:url(icons_rtl.png);}.cke_browser_ie .cke_skin_kama .cke_menuitem .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie.cke_rtl .cke_skin_kama .cke_menuitem .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie6 .cke_skin_kama .cke_menuitem .cke_icon,.cke_browser_ie .cke_skin_kama .cke_menuitem.cke_noalphafix .cke_icon{filter:;}.cke_skin_kama .cke_menuitem .cke_disabled .cke_icon{filter:alpha(opacity=70);opacity:.70;}.cke_browser_ie .cke_skin_kama .cke_menuitem .cke_disabled .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie.cke_rtl .cke_skin_kama .cke_menuitem .cke_disabled .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie6 .cke_skin_kama .cke_menuitem .cke_disabled .cke_icon,.cke_browser_ie .cke_skin_kama .cke_menuitem.cke_noalphafix .cke_disabled .cke_icon{filter:;}.cke_skin_kama .cke_menuitem .cke_icon_wrapper{background-color:#D3D3D3;border:solid 4px #D3D3D3;width:16px;height:16px;float:left;filter:alpha(opacity=70);opacity:.70;clear:both;}.cke_rtl .cke_skin_kama .cke_menuitem .cke_icon_wrapper{float:right;}.cke_skin_kama .cke_menuitem a:hover .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a:focus .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a:active .cke_icon_wrapper{background-color:#9d9d9d;border:solid 4px #9d9d9d;filter:alpha(opacity=70);opacity:.70;}.cke_skin_kama .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a:active.cke_disabled .cke_icon_wrapper{background-color:#D3D3D3;border:solid 4px #D3D3D3;} .cke_skin_kama .cke_menuitem .cke_label{display:block;padding-right:3px;padding-top:5px;padding-left:4px;height:19px;margin-left:24px;background-color:#fff;}.cke_skin_kama .cke_frameLoaded .cke_menuitem .cke_label{filter:alpha(opacity=70);opacity:.70;}.cke_rtl .cke_skin_kama .cke_menuitem .cke_label{padding-right:0;margin-left:0;padding-left:3px;margin-right:28px;}.cke_skin_kama .cke_menuitem a.cke_disabled .cke_label{filter:alpha(opacity=30);opacity:.30;}.cke_skin_kama .cke_menuitem a:hover .cke_label,.cke_skin_kama .cke_menuitem a:focus .cke_label,.cke_skin_kama .cke_menuitem a:active .cke_label{background-color:#D3D3D3;}.cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_label,.cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_label,.cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_label{background-color:transparent;}.cke_skin_kama .cke_menuseparator{background-color:#D3D3D3;height:2px;filter:alpha(opacity=70);opacity:.70;_font-size:0;}.cke_skin_kama .cke_menuarrow{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -1411px;background-repeat:no-repeat;height:5px;width:3px;float:right;margin-right:2px;margin-top:3px;}.cke_rtl .cke_skin_kama .cke_menuarrow{float:left;margin-right:0;margin-left:2px;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -1390px;background-repeat:no-repeat;}.cke_skin_kama .cke_menuarrow span{display:none;}.cke_hc .cke_skin_kama .cke_menuarrow{width:auto;margin-top:0;}.cke_hc .cke_skin_kama .cke_menuarrow span{display:inline;}.cke_browser_ie.cke_ltr .cke_skin_kama .cke_menuarrow{position:absolute;right:2px;}.cke_browser_ie.cke_rtl .cke_skin_kama .cke_menuarrow{position:absolute;left:2px;}.cke_skin_kama .cke_rcombo{display:inline;}.cke_skin_kama .cke_rcombopanel{border:1px solid #8F8F73;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;height:auto;_height:100px;}.cke_skin_kama .cke_rcombo a,.cke_skin_kama .cke_rcombo a:active,.cke_skin_kama .cke_rcombo a:hover{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-repeat:repeat-x;background-position:0 -100px;border-bottom:1px solid #DAD9D9;border-right:1px solid #DAD9D9;float:left;padding:2px;height:21px;margin-right:6px;margin-bottom:5px;}.cke_skin_kama .cke_rtl .cke_rcombo a,.cke_skin_kama .cke_rtl .cke_rcombo a:active,.cke_skin_kama .cke_rtl .cke_rcombo a:hover{float:right;margin-right:0;margin-left:6px;}.cke_skin_kama .cke_hc .cke_rcombo a{filter:alpha(opacity=100);opacity:1.0;}.cke_skin_kama .cke_rcombo .cke_label{display:none;line-height:26px;vertical-align:top;margin-right:5px;filter:alpha(opacity=70);opacity:.70;}.cke_skin_kama .cke_rtl .cke_rcombo .cke_label{margin-right:0;margin-left:5px;}.cke_skin_kama .cke_rcombo .cke_inline_label{line-height:21px;font-style:italic;color:#666;}.cke_skin_kama .cke_hc .cke_rcombo .cke_openbutton{vertical-align:top;}.cke_skin_kama .cke_hc .cke_rcombo .cke_label{filter:alpha(opacity=100);opacity:1.0;}.cke_skin_kama .cke_rcombo .cke_text{filter:alpha(opacity=70);opacity:.70;height:21px;line-height:21px;width:60px;text-overflow:ellipsis;overflow:hidden;display:inline-block;margin:0 2px 0 4px;cursor:default;}.cke_skin_kama .cke_rtl .cke_rcombo .cke_text{margin:0 4px 0 2px;}.cke_skin_kama .cke_rcombo .cke_openbutton{display:inline-block;}.cke_skin_kama .cke_rcombo .cke_openbutton .cke_icon{display:inline-block;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -68px;background-repeat:no-repeat;width:17px;height:19px;margin:1px 2px;}.cke_skin_kama .cke_hc .cke_rcombo .cke_openbutton .cke_icon{background:none;}.cke_skin_kama .cke_browser_iequirks .cke_rcombo .cke_openbutton{margin-bottom:0;}.cke_skin_kama .cke_rcombo .cke_off a:hover .cke_text,.cke_skin_kama .cke_rcombo .cke_off a:focus .cke_text,.cke_skin_kama .cke_rcombo .cke_off a:active .cke_text,.cke_skin_kama .cke_rcombo .cke_on .cke_text{border-color:#316ac5;filter:alpha(opacity=100);opacity:1;} .cke_skin_kama .cke_rcombo .cke_off a:hover .cke_openbutton,.cke_skin_kama .cke_rcombo .cke_off a:focus .cke_openbutton,.cke_skin_kama .cke_rcombo .cke_off a:active .cke_openbutton,.cke_skin_kama .cke_rcombo .cke_on .cke_openbutton{border-color:#316ac5;background-color:#dff1ff;}.cke_skin_kama .cke_rcombo .cke_on .cke_text{-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;}.cke_skin_kama .cke_rcombo .cke_on .cke_openbutton{-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;}.cke_skin_kama .cke_rcombo .cke_disabled .cke_label{filter:alpha(opacity=30);opacity:.3;}.cke_skin_kama .cke_hc .cke_rcombo .cke_disabled .cke_label{filter:alpha(opacity=70);opacity:.7;}.cke_skin_kama .cke_rcombo .cke_disabled .cke_text,.cke_skin_kama .cke_rcombo .cke_disabled .cke_openbutton{filter:alpha(opacity=50);opacity:.5;}.cke_skin_kama .cke_browser_ie .cke_rcombo .cke_disabled .cke_openbutton{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=50);}.cke_skin_kama .cke_browser_ie6 .cke_rcombo .cke_disabled .cke_openbutton{filter:alpha(opacity=50);}.cke_skin_kama .cke_hc .cke_rcombo .cke_disabled .cke_text,.cke_skin_kama .cke_hc .cke_rcombo .cke_disabled .cke_openbutton{filter:alpha(opacity=80);opacity:.8;}.cke_skin_kama .cke_rcombo .cke_disabled .cke_text{color:#fff;}.cke_skin_kama .cke_browser_gecko .cke_rcombo .cke_text,.cke_skin_kama .cke_browser_gecko .cke_rcombo .cke_openbutton,.cke_skin_kama .cke_browser_webkit .cke_rcombo .cke_text,.cke_skin_kama .cke_browser_webkit .cke_rcombo .cke_openbutton{display:block;float:left;}.cke_skin_kama .cke_browser_gecko .cke_rcombo .cke_label,.cke_skin_kama .cke_browser_webkit .cke_rcombo .cke_label{float:left;}.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_label,.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_text,.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_openbutton,.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_label,.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_text,.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_openbutton{float:right;}.cke_skin_kama .cke_browser_ie7 .cke_rcombo .cke_text{line-height:18px;}.cke_skin_kama .cke_browser_ie6 .cke_rcombo .cke_text,.cke_skin_kama .cke_browser_iequirks .cke_rcombo .cke_text{height:auto;line-height:17px;}.cke_skin_kama .cke_rtl .cke_rcombo .cke_font .cke_text,.cke_skin_kama .cke_rtl .cke_rcombo .cke_fontSize .cke_text{direction:ltr;}@media print{.cke_path{display:none;}}.cke_skin_kama .cke_path{display:inline-block;float:left;margin-top:5px;}.cke_skin_kama .cke_rtl .cke_path{float:right;}.cke_shared .cke_skin_kama .cke_path{_width:100%;margin:0 0 5px;}.cke_skin_kama .cke_path a,.cke_skin_kama .cke_path .cke_empty{display:inline-block;float:left;padding:1px 4px 0;color:#60676a;cursor:default;}.cke_skin_kama .cke_path .cke_empty{visibility:hidden;}.cke_skin_kama .cke_rtl .cke_path a,.cke_skin_kama .cke_rtl .cke_path cke_empty{float:right;}.cke_skin_kama .cke_path a:hover,.cke_skin_kama .cke_path a:focus,.cke_skin_kama .cke_path a:active{background-color:#dff1ff;padding:1px 4px 0;outline:none;color:#000;}.cke_skin_kama .cke_browser_ie .cke_rtl .cke_path a,.cke_skin_kama .cke_browser_ie .cke_rtl .cke_path .cke_empty{float:none;}.cke_skin_kama .cke_path .cke_label{display:none;}.cke_skin_kama .cke_button_source .cke_icon{background-position:0 0;}.cke_skin_kama .cke_button_docProps .cke_icon{background-position:0 -16px;}.cke_skin_kama .cke_button_newpage .cke_icon{background-position:0 -48px;}.cke_skin_kama .cke_button_preview .cke_icon{background-position:0 -64px;}.cke_skin_kama .cke_button_cut .cke_icon{background-position:0 -96px;}.cke_skin_kama .cke_button_copy .cke_icon{background-position:0 -112px;}.cke_skin_kama .cke_button_paste .cke_icon{background-position:0 -128px;}.cke_skin_kama .cke_button_pastetext .cke_icon{background-position:0 -144px;}.cke_skin_kama .cke_button_find .cke_icon{background-position:0 -240px;}.cke_skin_kama .cke_button_replace .cke_icon{background-position:0 -256px;} .cke_skin_kama .cke_button_selectAll .cke_icon{background-position:0 -272px;}.cke_skin_kama .cke_button_removeFormat .cke_icon{background-position:0 -288px;}.cke_skin_kama .cke_button_bold .cke_icon{background-position:0 -304px;}.cke_skin_kama .cke_button_italic .cke_icon{background-position:0 -320px;}.cke_skin_kama .cke_button_underline .cke_icon{background-position:0 -336px;}.cke_skin_kama .cke_button_strike .cke_icon{background-position:0 -352px;}.cke_skin_kama .cke_button_subscript .cke_icon{background-position:0 -368px;}.cke_skin_kama .cke_button_superscript .cke_icon{background-position:0 -384px;}.cke_skin_kama .cke_button_table .cke_icon{background-position:0 -608px;}.cke_skin_kama .cke_button_horizontalrule .cke_icon{background-position:0 -624px;}.cke_skin_kama .cke_button_smiley .cke_icon{background-position:0 -640px;}.cke_skin_kama .cke_button_link .cke_icon{background-position:0 -528px;}.cke_skin_kama .cke_button_unlink .cke_icon{background-position:0 -544px;}.cke_skin_kama .cke_button_anchor .cke_icon{background-position:0 -560px;}.cke_skin_kama .cke_button_image .cke_icon{background-position:0 -576px;}.cke_skin_kama .cke_button_flash .cke_icon{background-position:0 -592px;}.cke_skin_kama .cke_button_specialchar .cke_icon{background-position:0 -656px;}.cke_skin_kama .cke_button_pagebreak .cke_icon{background-position:0 -672px;}.cke_skin_kama .cke_button_print .cke_icon{background-position:0 -176px;}.cke_skin_kama .cke_button_checkspell .cke_icon,.cke_skin_kama .cke_button_scayt .cke_icon{background-position:0 -192px;}.cke_skin_kama .cke_button_pagebreak .cke_icon{background-position:0 -672px;}.cke_skin_kama .cke_button_textcolor .cke_icon{background-position:0 -704px;}.cke_skin_kama .cke_button_bgcolor .cke_icon{background-position:0 -720px;}.cke_skin_kama .cke_button_form .cke_icon{background-position:0 -752px;}.cke_skin_kama .cke_button_checkbox .cke_icon{background-position:0 -768px;}.cke_skin_kama .cke_button_radio .cke_icon{background-position:0 -784px;}.cke_skin_kama .cke_button_textfield .cke_icon{background-position:0 -800px;}.cke_skin_kama .cke_button_textarea .cke_icon{background-position:0 -816px;}.cke_skin_kama .cke_button_showblocks .cke_icon{background-position:0 -1136px;}.cke_skin_kama .cke_button_select .cke_icon{background-position:0 -832px;}.cke_skin_kama .cke_button_button .cke_icon{background-position:0 -848px;}.cke_skin_kama .cke_button_imagebutton .cke_icon{background-position:0 -864px;}.cke_skin_kama .cke_button_hiddenfield .cke_icon{background-position:0 -880px;}.cke_skin_kama .cke_button_undo .cke_icon{background-position:0 -208px;}.cke_skin_kama .cke_rtl .cke_button_undo .cke_icon{background-position:0 -224px;}.cke_skin_kama .cke_button_redo .cke_icon{background-position:0 -224px;}.cke_skin_kama .cke_rtl .cke_button_redo .cke_icon{background-position:0 -208px;}.cke_skin_kama .cke_button_templates .cke_icon{background-position:0 -80px;}.cke_skin_kama .cke_button_numberedlist .cke_icon{background-position:0 -400px;}.cke_skin_kama .cke_button_bulletedlist .cke_icon{background-position:0 -416px;}.cke_skin_kama .cke_mixed_dir_content .cke_button_numberedlist .cke_icon{background-position:0 -1217px;}.cke_skin_kama .cke_mixed_dir_content .cke_button_bulletedlist .cke_icon{background-position:0 -1233px;}.cke_skin_kama .cke_button_outdent .cke_icon{background-position:0 -432px;}.cke_skin_kama .cke_button_indent .cke_icon{background-position:0 -448px;}.cke_skin_kama .cke_mixed_dir_content .cke_button_indent .cke_icon{background-position:0 -1265px;}.cke_skin_kama .cke_mixed_dir_content .cke_button_outdent .cke_icon{background-position:0 -1249px;}.cke_skin_kama .cke_button_justifyleft .cke_icon{background-position:0 -464px;}.cke_skin_kama .cke_button_justifycenter .cke_icon{background-position:0 -480px;}.cke_skin_kama .cke_button_justifyright .cke_icon{background-position:0 -496px;}.cke_skin_kama .cke_button_justifyblock .cke_icon{background-position:0 -512px;}.cke_skin_kama .cke_button_blockquote .cke_icon{background-position:0 -1152px;}.cke_skin_kama .cke_button_creatediv .cke_icon{background-position:0 -1168px;} .cke_skin_kama .cke_button_editdiv .cke_icon{background-position:0 -1184px;}.cke_skin_kama .cke_button_removediv .cke_icon{background-position:0 -1200px;}.cke_skin_kama .cke_button_flash .cke_icon{background-position:0 -592px;}.cke_skin_kama .cke_button_pastefromword .cke_icon{background-position:0 -160px;}.cke_skin_kama .cke_button_save .cke_icon{background-position:0 -32px;}.cke_skin_kama .cke_button_about .cke_icon{background-position:0 -736px;}.cke_skin_kama .cke_button_maximize .cke_icon{background-position:0 -1040px;}.cke_skin_kama .cke_button_editdiv .cke_icon{background-position:0 -1184px;}.cke_skin_kama .cke_button_bidirtl .cke_icon{background-position:0 -1072px;}.cke_skin_kama .cke_button_bidiltr .cke_icon{background-position:0 -1056px;}.cke_skin_kama .cke_button_iframe .cke_icon{background-position:0 -1279px;}.cke_skin_kama .cke_button_source .cke_label{display:inline;}.cke_skin_kama .cke_styles_panel{width:150px;height:170px;}.cke_skin_kama .cke_format_panel{width:150px;height:170px;}.cke_skin_kama .cke_font_panel{width:150px;height:170px;}.cke_skin_kama .cke_fontSize_panel{height:170px;}.cke_skin_kama .cke_fontSize .cke_text{width:25px;}.cke_skin_kama .cke_browser_iequirks .cke_fontSize .cke_text{width:32px;}html .cke_skin_kama{visibility:inherit;}html.cke_skin_kama_container{visibility:visible;} ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/templates.css������������������������������0000664�0001750�0001750�00000002722�12262650742�024627� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ .cke_skin_kama .cke_tpl_list{border:#dcdcdc 2px solid;background-color:#fff;overflow-y:auto;overflow-x:hidden;width:100%;height:220px;}.cke_skin_kama .cke_tpl_item{margin:5px;padding:7px;border:#eee 1px solid;*width:88%;}.cke_skin_kama .cke_tpl_preview{border-collapse:separate;text-indent:0;width:100%;}.cke_skin_kama .cke_tpl_preview td{padding:2px;vertical-align:middle;}.cke_skin_kama .cke_tpl_preview .cke_tpl_preview_img{width:100px;}.cke_skin_kama .cke_tpl_preview span{white-space:normal;}.cke_skin_kama .cke_tpl_title{font-weight:bold;}.cke_skin_kama .cke_tpl_list a:active .cke_tpl_item,.cke_skin_kama .cke_tpl_list a:hover .cke_tpl_item,.cke_skin_kama .cke_tpl_list a:focus .cke_tpl_item{border:#f93 1px solid;background-color:#fffacd;}.cke_skin_kama .cke_tpl_list a:active *,.cke_skin_kama .cke_tpl_list a:hover *,.cke_skin_kama .cke_tpl_list a:focus *{cursor:pointer;}.cke_skin_kama .cke_browser_ie6 .cke_tpl_list a:active,.cke_skin_kama .cke_browser_ie6 .cke_tpl_list a:hover,.cke_skin_kama .cke_browser_ie6 .cke_tpl_list a:focus{background-position:0 0;}.cke_skin_kama .cke_hc .cke_tpl_list a:active .cke_tpl_item,.cke_skin_kama .cke_hc .cke_tpl_list a:hover .cke_tpl_item,.cke_skin_kama .cke_hc .cke_tpl_list a:focus .cke_tpl_item{border-width:3px;}.cke_skin_kama .cke_tpl_empty,.cke_tpl_loading{text-align:center;padding:5px;} ����������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/dialog.css���������������������������������0000664�0001750�0001750�00000043517�12262650742�024077� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ body .cke_dialog{visibility:visible;}.cke_skin_kama table.cke_dialog.cke_browser_gecko{display:block;}.cke_skin_kama .cke_dialog_body{z-index:1;border:solid 1px #ddd;padding:5px;background-color:#fff;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;_position:static;}.cke_skin_kama .cke_dialog_tl,.cke_skin_kama .cke_dialog_tr,.cke_skin_kama .cke_dialog_tc,.cke_skin_kama .cke_dialog_bl,.cke_skin_kama .cke_dialog_br,.cke_skin_kama .cke_dialog_bc,.cke_skin_kama .cke_dialog_ml,.cke_skin_kama .cke_dialog_mr{display:none;}.cke_skin_kama .cke_dialog_title{font-weight:bold;font-size:14px;padding:3px 3px 8px;cursor:move;position:relative;border-bottom:1px solid #eee;}.cke_skin_kama .cke_browser_iequirks .cke_dialog_title,.cke_skin_kama .cke_browser_ie6 .cke_dialog_title,.cke_skin_kama .cke_browser_ie7 .cke_dialog_title{margin-bottom:22px;}.cke_skin_kama .cke_browser_iequirks.cke_single_page .cke_dialog_title,.cke_skin_kama .cke_browser_ie6.cke_single_page .cke_dialog_title,.cke_skin_kama .cke_browser_ie7.cke_single_page .cke_dialog_title{margin-bottom:10px;}.cke_skin_kama .cke_dialog_contents{background-color:#ebebeb;border:solid 1px #fff;border-bottom:none;overflow:auto;padding:17px 10px 5px 10px;-moz-border-radius-topleft:5px;-moz-border-radius-topright:5px;-webkit-border-top-left-radius:5px;-webkit-border-top-right-radius:5px;border-top-left-radius:5px;border-top-right-radius:5px;margin-top:22px;}.cke_skin_kama .cke_dialog_footer{text-align:right;background-color:#ebebeb;border:solid 1px #fff;border-bottom:none;-moz-border-radius-bottomleft:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-left-radius:5px;-webkit-border-bottom-right-radius:5px;border-bottom-left-radius:5px;border-bottom-right-radius:5px;}.cke_skin_kama .cke_rtl .cke_dialog_footer{text-align:left;}.cke_skin_kama .cke_dialog_footer .cke_resizer{margin-top:20px;}.cke_skin_kama .cke_browser_iequirks .cke_dialog_footer .cke_resizer,.cke_skin_kama .cke_browser_ie6 .cke_dialog_footer .cke_resizer{margin-top:27px;}.cke_skin_kama .cke_dialog_tabs{height:23px;display:inline-block;_display:block;margin-left:10px;margin-right:10px;margin-top:11px;position:absolute;z-index:2;}.cke_skin_kama .cke_browser_iequirks .cke_dialog_tabs,.cke_skin_kama .cke_browser_ie6 .cke_dialog_tabs,.cke_skin_kama .cke_browser_ie7 .cke_dialog_tabs{top:33px;}.cke_skin_kama .cke_rtl .cke_dialog_tabs{right:10px;}.cke_skin_kama a.cke_dialog_tab,.cke_skin_kama a:link.cke_dialog_tab,.cke_skin_kama a:active.cke_dialog_tab,.cke_skin_kama a:hover.cke_dialog_tab,.cke_skin_kama a:visited.cke_dialog_tab{background-image:url(images/sprites.png);background-repeat:repeat-x;background-position:0 -1323px;background-color:#ebebeb;height:14px;padding:4px 8px;display:inline-block;cursor:pointer;}.cke_skin_kama .cke_browser_gecko18 a.cke_dialog_tab,.cke_skin_kama .cke_browser_gecko18 a:link.cke_dialog_tab,.cke_skin_kama .cke_browser_gecko18 a:active.cke_dialog_tab,.cke_skin_kama .cke_browser_gecko18 a:hover.cke_dialog_tab,.cke_skin_kama .cke_browser_gecko18 a:visited.cke_dialog_tab{display:inline;position:relative;top:6px;}.cke_skin_kama a:hover.cke_dialog_tab{background-color:#f1f1e3;}.cke_skin_kama .cke_hc a:hover.cke_dialog_tab{padding:2px 6px!important;border-width:3px;}.cke_skin_kama a.cke_dialog_tab_selected,.cke_skin_kama a:link.cke_dialog_tab_selected,.cke_skin_kama a:active.cke_dialog_tab_selected,.cke_skin_kama a:hover.cke_dialog_tab_selected,.cke_skin_kama a:visited.cke_dialog_tab_selected{background-position:0 -1279px;cursor:default;}.cke_skin_kama .cke_hc a.cke_dialog_tab_selected,.cke_skin_kama .cke_hc a:link.cke_dialog_tab_selected,.cke_skin_kama .cke_hc a:active.cke_dialog_tab_selected,.cke_skin_kama .cke_hc a:hover.cke_dialog_tab_selected,.cke_skin_kama .cke_hc a:visited.cke_dialog_tab_selected{padding:2px 6px!important;border-width:3px;}.cke_skin_kama .cke_single_page .cke_dialog_tabs{display:none;}.cke_skin_kama .cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:10px;}.cke_skin_kama .cke_dialog_ui_vbox table,.cke_skin_kama .cke_dialog_ui_hbox table{margin:auto;} .cke_skin_kama .cke_dialog_ui_vbox_child{padding:5px 0;}.cke_skin_kama input.cke_dialog_ui_input_text,.cke_skin_kama input.cke_dialog_ui_input_password{background-color:white;border:none;padding:0;width:100%;height:14px;}.cke_skin_kama div.cke_dialog_ui_input_text,.cke_skin_kama div.cke_dialog_ui_input_password{background-color:white;border:1px solid #a0a0a0;padding:1px 0;_width:99.9%;}.cke_skin_kama .cke_browser_ie7 input.cke_dialog_ui_input_text,.cke_skin_kama .cke_browser_ie7 input.cke_dialog_ui_input_password{position:absolute;}.cke_skin_kama .cke_browser_ie7 div.cke_dialog_ui_input_text,.cke_skin_kama .cke_browser_ie7 div.cke_dialog_ui_input_password{height:14px;position:relative;}.cke_skin_kama .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_text,.cke_skin_kama .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_text,.cke_skin_kama .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_password,.cke_skin_kama .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px;}.cke_skin_kama .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text,.cke_skin_kama .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_text,.cke_skin_kama .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_password,.cke_skin_kama .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px;}.cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_ui_vbox_child,.cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_child,.cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_first,.cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important;}.cke_skin_kama .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px;}.cke_skin_kama .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_text,.cke_skin_kama .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_password{border-width:0;}.cke_skin_kama .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_text,.cke_skin_kama .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_password{border-width:1px;}.cke_skin_kama textarea.cke_dialog_ui_input_textarea{background-color:white;border:none;padding:0;width:100%;_width:99%;overflow:auto;resize:none;}.cke_skin_kama div.cke_dialog_ui_input_textarea{background-color:white;border:1px solid #a0a0a0;padding:1px 0;}.cke_skin_kama div.cke_disabled .cke_dialog_ui_labeled_content *{background-color:#a0a0a0;cursor:default;}.cke_skin_kama .cke_rtl .cke_dialog_ui_labeled_content{_width:95%;}.cke_skin_kama .cke_dialog_ui_hbox{width:100%;}.cke_skin_kama .cke_dialog_ui_hbox_first,.cke_skin_kama .cke_dialog_ui_hbox_child,.cke_skin_kama .cke_dialog_ui_hbox_last{vertical-align:top;}.cke_skin_kama .cke_ltr .cke_dialog_ui_hbox_first,.cke_skin_kama .cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px;}.cke_skin_kama .cke_rtl .cke_dialog_ui_hbox_first,.cke_skin_kama .cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px;}.cke_skin_kama a.cke_dialog_ui_button{border-collapse:separate;cursor:default;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;background:transparent url(images/sprites.png) repeat-x scroll 0 -1069px;_background:none;padding:5px 0;text-align:center;}.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button{padding:0;}.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button span{width:70px;}.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button span,.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button span{width:100px;}.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button span,.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button span,.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button span{padding:5px 15px;text-align:center;color:#3b3b1f;background:#53D9F0 none;display:inline-block;cursor:default;}.cke_skin_kama .cke_browser_webkit a.cke_dialog_ui_button span.cke_dialog_ui_button{margin:0;}.cke_skin_kama .cke_browser_webkit a.cke_dialog_ui_button{display:inline-block;padding-top:3px;padding-bottom:2px;margin:2px 0;}.cke_skin_kama a.cke_dialog_ui_button_ok span,.cke_skin_kama a.cke_dialog_ui_button_cancel span{width:60px;padding-right:20px;padding-left:20px;}.cke_skin_kama a.cke_dialog_ui_button_ok{background-position:0 -1143px;} .cke_skin_kama a.cke_dialog_ui_button_ok span{background:transparent url(images/sprites.png) no-repeat scroll right -1219px;}.cke_skin_kama .cke_rtl a.cke_dialog_ui_button_ok span{background-position:left -1219px;}.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_ok span,.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_ok span{background-color:#B8E834;margin-right:0;}.cke_skin_kama a.cke_dialog_ui_button_cancel{background-position:0 -1104px;}.cke_skin_kama a.cke_dialog_ui_button_cancel span{background:transparent url(images/sprites.png) no-repeat scroll right -1245px;}.cke_skin_kama .cke_rtl a.cke_dialog_ui_button_cancel span{background-position:left -1245px;}.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_cancel span,.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_cancel span{background-color:#F65D20;}.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_cancel span,.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_cancel span,.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_ok span,.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_ok span{background-image:none;}.cke_skin_kama span.cke_dialog_ui_button{padding:2px 10px;text-align:center;color:#222;display:inline-block;cursor:default;min-width:60px;+margin:2px 0;}.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button{display:block;}.cke_skin_kama a.cke_dialog_ui_button span.cke_disabled{border:#898980 1px solid;color:#5e5e55;background-color:#c5c5b3;}.cke_skin_kama a:hover.cke_dialog_ui_button,.cke_skin_kama a:focus.cke_dialog_ui_button,.cke_skin_kama a:active.cke_dialog_ui_button{background-position:0 -1180px;}.cke_skin_kama .cke_hc a:hover.cke_dialog_ui_button,.cke_skin_kama .cke_hc a:focus.cke_dialog_ui_button,.cke_skin_kama .cke_hc a:active.cke_dialog_ui_button{border-width:2px;}.cke_skin_kama .cke_browser_iequirks a:hover.cke_dialog_ui_button span,.cke_skin_kama .cke_browser_iequirks a:focus.cke_dialog_ui_button span,.cke_skin_kama .cke_browser_iequirks a:active.cke_dialog_ui_button span,.cke_skin_kama .cke_browser_ie6 a:hover.cke_dialog_ui_button span,.cke_skin_kama .cke_browser_ie6 a:focus.cke_dialog_ui_button span,.cke_skin_kama .cke_browser_ie6 a:active.cke_dialog_ui_button span{background-image:none;background:#F7A922;}.cke_skin_kama .cke_dialog_footer_buttons{display:inline-table;margin-right:12px;margin-left:12px;width:auto;position:relative;}.cke_skin_kama .cke_browser_ie7 .cke_dialog_footer_buttons{position:static;}.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons{display:inline;}.cke_skin_kama .cke_dialog_footer_buttons span.cke_dialog_ui_button{margin:7px 0;text-align:center;}.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons a.cke_dialog_ui_button{display:block;padding:0;}.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button{padding-bottom:5px;padding-top:6px;margin-bottom:0;}.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons .cke_dialog_ui_button_ok .cke_dialog_ui_button{background-position:right -1214px;}.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons .cke_dialog_ui_button_cancel .cke_dialog_ui_button{background-position:right -1242px;}.cke_skin_kama .cke_browser_ie9.cke_rtl .cke_dialog_footer_buttons td{padding-left:2px;}.cke_skin_kama strong{font-weight:bold;}.cke_skin_kama .cke_dialog .cke_dialog_body .cke_dialog_close_button{background-image:url(images/sprites.png);background-repeat:no-repeat;background-position:0 -1022px;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;_background-image:url(images/sprites_ie6.png);}.cke_skin_kama .cke_dialog_close_button span{display:none;}.cke_skin_kama .cke_dialog_close_button:hover{background-position:0 -1045px;}.cke_skin_kama .cke_ltr .cke_dialog_close_button{right:10px;}.cke_skin_kama .cke_browser_ie8.cke_rtl .cke_dialog_close_button{left:8px;}.cke_skin_kama .cke_rtl .cke_dialog_close_button{left:10px;}.cke_skin_kama .cke_browser_ie7.cke_rtl .cke_dialog_close_button{left:16px;top:0;}.cke_skin_kama .cke_browser_ie7.cke_rtl .cke_dialog_close_button{position:absolute;left:10px;top:5px;} .cke_skin_kama .cke_browser_ie7.cke_single_page .cke_dialog_footer{margin-top:22px;}.cke_skin_kama .cke_browser_ie6 .cke_dialog_close_button,.cke_skin_kama .cke_browser_iequirks .cke_dialog_close_button{top:7px;}.cke_skin_kama .cke_browser_ie7.cke_ltr .cke_dialog_close_button{margin-top:0;}.cke_skin_kama .cke_dialog_ui_input_select{border:1px solid #a0a0a0;background-color:white;}.cke_skin_kama .cke_dialog_ui_input_file{width:100%;height:25px;}.cke_skin_kama .cke_dialog .cke_dark_background{background-color:#eaead1;}.cke_skin_kama .cke_dialog .cke_hand{cursor:pointer;}.cke_skin_kama .cke_dialog .cke_centered{text-align:center;}.cke_skin_kama .cke_dialog a.cke_btn_reset{float:right;background-position:0 -32px;background-image:url(images/mini.gif);width:16px;height:16px;background-repeat:no-repeat;border:1px none;font-size:1px;}.cke_skin_kama .cke_rtl .cke_dialog a.cke_btn_reset{float:left;}.cke_skin_kama .cke_dialog a.cke_btn_locked,.cke_skin_kama .cke_dialog a.cke_btn_unlocked{float:left;background-position:0 0;background-image:url(images/mini.gif);width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px;}.cke_skin_kama .cke_dialog a.cke_btn_locked .cke_icon{display:none;}.cke_skin_kama .cke_rtl .cke_dialog a.cke_btn_locked,.cke_skin_kama .cke_rtl .cke_dialog a.cke_btn_unlocked{float:right;}.cke_skin_kama .cke_dialog a.cke_btn_unlocked{background-position:0 -16px;background-image:url(images/mini.gif);}.cke_skin_kama .cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer;}.cke_skin_kama .cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white;}.cke_skin_kama .cke_dialog .ImagePreviewBox table td{white-space:normal;}.cke_skin_kama .cke_browser_iequirks .cke_dialog_page_contents{_position:absolute;}.cke_skin_kama .cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity=90);background-color:#e4e4e4;}.cke_skin_kama .cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white;}.cke_skin_kama .cke_dialog .cke_pastetext{width:346px;height:170px;}.cke_skin_kama .cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none;}.cke_skin_kama .cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid black;}.cke_skin_kama .cke_dialog .cke_dark_background{text-align:center;background-color:#eaead1;font-size:14px;}.cke_skin_kama .cke_dialog .cke_light_background{text-align:center;background-color:#ffffbe;}.cke_skin_kama .cke_dialog .cke_hand{cursor:pointer;}.cke_skin_kama .cke_disabled{color:#a0a0a0;}.cke_skin_kama .cke_hc .cke_dialog_title,.cke_skin_kama .cke_hc .cke_dialog_tabs,.cke_skin_kama .cke_hc .cke_dialog_contents,.cke_skin_kama .cke_hc .cke_dialog_footer{border-left:1px solid;border-right:1px solid;}.cke_skin_kama .cke_hc .cke_dialog_title{border-top:1px solid;}.cke_skin_kama .cke_hc .cke_dialog_footer{border-bottom:1px solid;}.cke_skin_kama .cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px;}.cke_skin_kama .cke_dialog_body .cke_label{display:none;}.cke_skin_kama .cke_dialog_body label.cke_required{font-weight:bold;}.cke_skin_kama .cke_hc .cke_dialog_body .cke_label{display:inline;cursor:inherit;}.cke_skin_kama .cke_hc a.cke_btn_locked,.cke_skin_kama .cke_hc a.cke_btn_unlocked,.cke_skin_kama .cke_hc a.cke_btn_reset{border-style:solid;float:left;width:auto;height:auto;padding:0 2px;}.cke_skin_kama .cke_rtl.cke_hc a.cke_btn_locked,.cke_skin_kama .cke_rtl.cke_hc a.cke_btn_unlocked,.cke_skin_kama .cke_rtl.cke_hc a.cke_btn_reset{float:right;}.cke_skin_kama .cke_hc a.cke_btn_locked .cke_icon{display:inline;}.cke_skin_kama a.cke_smile img{border:2px solid #eaead1;}.cke_skin_kama a.cke_smile:focus img,.cke_skin_kama a.cke_smile:active img,.cke_skin_kama a.cke_smile:hover img{border-color:#C7C78F;}.cke_skin_kama .cke_hc .cke_dialog_tabs a,.cke_skin_kama .cke_hc .cke_dialog_footer a{opacity:1.0;filter:alpha(opacity=100);border:1px solid white;} .cke_skin_kama .cke_hc .ImagePreviewBox{width:260px;}.cke_skin_kama .cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px;}.cke_skin_kama .cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px;}.cke_skin_kama .cke_browser_gecko .cke_dialog_ui_checkbox_input:focus,.cke_skin_kama .cke_browser_gecko .cke_dialog_ui_radio_input:focus,.cke_skin_kama .cke_browser_opera .cke_dialog_ui_checkbox_input:focus,.cke_skin_kama .cke_browser_opera .cke_dialog_ui_radio_input:focus,.cke_skin_kama .cke_browser_gecko .cke_dialog_ui_input_select:focus,.cke_skin_kama .cke_browser_gecko .cke_btn_over,.cke_skin_kama .cke_browser_opera .cke_btn_over,.cke_skin_kama .cke_browser_ie .cke_btn_over{outline:1px dotted #696969;}.cke_skin_kama .cke_browser_ie .cke_dialog_ui_checkbox_input,.cke_skin_kama .cke_browser_ie .cke_dialog_ui_ratio_input,.cke_skin_kama .cke_browser_ie .cke_btn_reset,.cke_skin_kama .cke_browser_ie .cke_btn_locked,.cke_skin_kama .cke_browser_ie .cke_btn_unlocked{*border:1px solid transparent!important;-border:1px solid red!important;-filter:chroma(color=red);}.cke_skin_kama .cke_browser_ie .cke_dialog_ui_focused,.cke_skin_kama .cke_browser_ie .cke_btn_over{*border:1px dotted #696969!important;}.cke_skin_kama .cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity=0);width:100%;height:100%;}.cke_dialog label{display:inline;margin-bottom:auto;cursor:default;} ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/skin.js������������������������������������0000664�0001750�0001750�00000006607�12262650742�023427� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.skins.add('kama',(function(){var a='cke_ui_color';return{editor:{css:['editor.css']},dialog:{css:['dialog.css']},richcombo:{canGroup:false},templates:{css:['templates.css']},margins:[0,0,0,0],init:function(b){if(b.config.width&&!isNaN(b.config.width))b.config.width-=12;var c=[],d=/\$color/g,e='/* UI Color Support */.cke_skin_kama .cke_menuitem .cke_icon_wrapper{\tbackground-color: $color !important;\tborder-color: $color !important;}.cke_skin_kama .cke_menuitem a:hover .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a:focus .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a:active .cke_icon_wrapper{\tbackground-color: $color !important;\tborder-color: $color !important;}.cke_skin_kama .cke_menuitem a:hover .cke_label,.cke_skin_kama .cke_menuitem a:focus .cke_label,.cke_skin_kama .cke_menuitem a:active .cke_label{\tbackground-color: $color !important;}.cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_label,.cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_label,.cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_label{\tbackground-color: transparent !important;}.cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_icon_wrapper{\tbackground-color: $color !important;\tborder-color: $color !important;}.cke_skin_kama .cke_menuitem a.cke_disabled .cke_icon_wrapper{\tbackground-color: $color !important;\tborder-color: $color !important;}.cke_skin_kama .cke_menuseparator{\tbackground-color: $color !important;}.cke_skin_kama .cke_menuitem a:hover,.cke_skin_kama .cke_menuitem a:focus,.cke_skin_kama .cke_menuitem a:active{\tbackground-color: $color !important;}';if(CKEDITOR.env.webkit){e=e.split('}').slice(0,-1);for(var f=0;f<e.length;f++)e[f]=e[f].split('{');}function g(j){var k=j.getById(a);if(!k){k=j.getHead().append('style');k.setAttribute('id',a);k.setAttribute('type','text/css');}return k;};function h(j,k,l){var m,n,o;for(var p=0;p<j.length;p++){if(CKEDITOR.env.webkit)for(n=0;n<k.length;n++){o=k[n][1];for(m=0;m<l.length;m++)o=o.replace(l[m][0],l[m][1]);j[p].$.sheet.addRule(k[n][0],o);}else{o=k;for(m=0;m<l.length;m++)o=o.replace(l[m][0],l[m][1]);if(CKEDITOR.env.ie)j[p].$.styleSheet.cssText+=o;else j[p].$.innerHTML+=o;}}};var i=/\$color/g;CKEDITOR.tools.extend(b,{uiColor:null,getUiColor:function(){return this.uiColor;},setUiColor:function(j){var k,l=g(CKEDITOR.document),m='.'+b.id,n=[m+' .cke_wrapper',m+'_dialog .cke_dialog_contents',m+'_dialog a.cke_dialog_tab',m+'_dialog .cke_dialog_footer'].join(','),o='background-color: $color !important;'; if(CKEDITOR.env.webkit)k=[[n,o]];else k=n+'{'+o+'}';return(this.setUiColor=function(p){var q=[[i,p]];b.uiColor=p;h([l],k,q);h(c,e,q);})(j);}});b.on('menuShow',function(j){var k=j.data[0],l=k.element.getElementsByTag('iframe').getItem(0).getFrameDocument();if(!l.getById('cke_ui_color')){var m=g(l);c.push(m);var n=b.getUiColor();if(n)h([m],e,[[i,n]]);}});if(b.config.uiColor)b.setUiColor(b.config.uiColor);}};})());(function(){CKEDITOR.dialog?a():CKEDITOR.on('dialogPluginReady',a);function a(){CKEDITOR.dialog.on('resize',function(b){var c=b.data,d=c.width,e=c.height,f=c.dialog,g=f.parts.contents;if(c.skin!='kama')return;g.setStyles({width:d+'px',height:e+'px'});});};})(); �������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/kama/icons.png����������������������������������0000664�0001750�0001750�00000012736�12262650742�023746� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR����������� pHYs�� �� ���� cHRM��z%��������u0��`��:��o_F���PLTE���CC�M>>+00Sb333 88 �7,�"(+TW'3S%FFg[$:BBUȹ�XQ}&iܯkn?Bwq酈5{g^4q 'E;;��ҹ?@Oqph ^+$�Oe>>ixN.JJT`vWORCxeܺWD E٧H8�38ǺQ^225ML3LL!]DS xxw˛1JO)HE6AG1LH!DDrrrzg>NjRwxq� <J@,%O>PP�993*`"BD7== C<@9$EE@QQ q#t1 m�"_1KK#DI'GG 77ptylVXX]mwlAAF[�NEshhhښ7غUxxx럟<?ʠX1h;OOdr>O[/;C~~}�33[B#Gir|֤X$EGL.KF Lѐ<<6x6S~=ѧ���tRNS�@f��KIDATx{י_!Um, ;l ƀ8rr1IIH&mvn۽zw{c39-[F2` N1&.nns3#Y0Ͼg=:h.ȴjX,�&omT*JBA* ƺA2$mmmCQEQ>[):0nkk9p8LA,+� ,,[:eT"BA"H$#CTL E:lGh!AFQoooooK�B٢0�t zMVie˖qc>[D"`Ř `0 }ƆZƀ�aznpLu=&D"6 h�=m�zMC6IA ֆE@bWO;X; CvI;I[�AQno>9:C'?h9/'rCz[opDk@8'D 8>a_a8a_*2׎1[19$ֆ1%("cC*8 R Ɔ>`0t)@$D"L Ĥb6EN>?ޙ3gZ[[i LV4MS>ǎϝ9}i" Ι&„Bp̱s?7ۥ"3vIislo # �|ڊX>@,appk>Z[[%p3U;c____wxs>79~??22r|~w=Nw_C=vaİ|:n>-wZ[||ĩxK\0[Dp뺮�c Ðc JF r E!D*|cIw6kÎd"S4�MS4�MQ�S:A@-�hQp�MMSN ��:5E:5 4M"&M!⫝boG"v%`+́u:RѬNM~3M鴶+iV2:YES��hY-³ioG'x_E4g4tj([~4FE9-">zZNۙs�W& �a@O��t �tPa}+ܵB-La} ``)B ge` aL9!�!8!b Bv@:!�"źxEtm5]/^S"lg8d^2{% =nx `h/1q]5P4?TP(A E(A'|bC!TE!DDlJDۜ/YK͗��R)R ̗6E)gԔARSR0pf5%O9cuZ ;|p \cHe<Y<qxoؖ8-<R7<1�x56Qa=}>x<1xc>�9cMgT QF;xKEX %iidd"'(Ng�H3 C1ˠ&h:}KAQt&|Q{N (̲ Lm64M2QR0Qvg|ʇ(Q(M\U7KLqĘ̬7K<bZ~{hn݂+_(e_BA7�2*:�XH7˖]fMA2 @ � �]d |@ yϗL�8ad�ɤ|>/yL&#E">�|>ɇ3"[�7-@�cpn!L|n7K$|n7K��OCoظ8@7>'��NcpP׿O?թbA] 94u= F(t bmܸ`Ѡ �6> 2 7,`6<<<<<,++++񚾾 *++++K-y��~d{S�`xW˗/Z�p{.�qw[~� 5k}uʕwڵ^r� ./////m۶�[mݶ- �@ N+(Yܪ* VUUUQ\hKw++ (7z�pEUUUkw)+VS;w<Q#^çkj('~zEM1xCᎭ<QLjjaqqq76N0Kg\Tb)hK1cccS28066f+b1g h)2$S� )ͨ̀] ̯nX vL "KaPӳunzWFGd-+,{D"޲J cz1^K <W"N׻h"֊^׻>ҥK�^o�o}}-|�Xdw͞y,W$ _gXlBpZ]q ?~ɇ uݴ࣒ڧ�yNG:oϟwTq~t>Ԑf|F9ny�yv1+V1LbeEeEE"F��6/.*+**b~ū6/.+bh͋O"Zky"i71ϭ$�VrW?nݺup?7MS�\�e֭W`{ �6svٲepmg)= {]F <[rJ<6�?JozTzxgvkܔ^wpMC?'I3ogy6ӍT2o޼yMf}=׀Hm"՗,!~bD7RO'2b!/Z 1ttV lm$_ 0[Hcl C�C;2' ݏxWAxYBg8k�"! -@0&K�LT/z4&�߭`.ׇJKW~گUK$T1Hҵ6(R^تE?7=3#b3n*qIAB9@)!"w֓)M4L"~Ic0&—8  nD5qi$=@10 UkVLalJC`Ҁ/q`/%/H\MPicLa H=ƘT)@T�kuwYKٜʙ&#`d&+Lsj8d!g-P:ZB!@(y ��D uu! jO2PWWWW[R_�]CO> ��`l7Y!#��%1 cH�;1_`:=�wTTX׿nUp�7Z;9�S�~tц S{z**�0jthpS=�P[^}*ڭct=A/׎nF�&JpEhUpT�0A1v^w�Kd՟nJ@tKd}OWU2:} >t n OI#grq,m%.TUUU9p9rUv]qNkq\jG> �y(Y _aCUUu TL%rǜCwCYDw둏q:-cyk]?pTyu}DHli:`\bme%.g'!`F&nk>/k&U5> ptTbe]앟"�}܃ Whx4(TZ(*)�\\8jg\e~^9{ ;`Ħ�v! x˕ bą'F+Q\]cs9}xqrG<knN\`6Z{epcJ�5}Z0æOJMd&[ߺjwwwm<`lX @<qiNa('t�ƓbAr,u]׻%x^$8I~Q=~/Zi X,S+[bEQfdb}�g(k6έ-_R1q1dnoKOqWο;יaf~t8|97OXzA3(}KkgxLTy٠fӟQ% ?9e{r̄,][;W>L|j̙a磹.on~pC=ǚ455upe}s!*?r~<ͯ�_r?T��{jnn>o:|�`=͍{��`|_46_+Z{Omh/_%s_iO<4pk_ݽ{n��;B ����IENDB`����������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/���������������������������������������������0000775�0001750�0001750�00000000000�12262650742�021532� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/icons_rtl.png��������������������������������0000664�0001750�0001750�00000012740�12262650742�024240� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR����������� pHYs�� �� ���� cHRM��z%��������u0��`��:��o_F���PLTE���CC�M>>+00Sb333 88 �7,�"(+TW'3S%FFg[$:BBUȹ�XQ}&iܯkn?Bwq酈5{g^4q 'E;;��ҹ?@Oqph ^+$�Oe>>ixN.JJT`vWORCxeܺWD E٧H8�38ǺQ^225ML3LL!]DS xxw˛1JO)HE6AG1LH!DDrrrzg>NjRwxq� <J@,%O>PP�993*`"BD7== C<@9$EE@QQ q#t1 m�"_1KK#DI'GG 77ptylVXX]mwlAAF[�NEshhhښ7غUxxx럟<?ʠX1h;OOdr>O[/;C~~}�33[B#Gir|֤X$EGL.KF Lѐ<<6x6S~=ѧ���tRNS�@f��MIDATx{SיǿBd!X&` KbHmtvVLi; ˹9d8M'@KD1ifƞ:p]e |>{W.:\#Y"Htso&ͣd2L ͫh&qB6ƛ|}eYI+ӄB27 L%r$I#*D>$FIHr JR)ڒh*F*qBZZZZx-8hlQ c~hTIBoF"@0 hp$.b1g>ݭn't]ABuJnН 麨cM5i iss,%fx%]�b ݎM,>(ȲLi~hUh(81lwN8/zɓg>�w8v]Ó6ÿ>|넣<Хs,o9tC:!IWO$y0 , GqI{ b1RO0<[Xb]TQJL qjq*(btRbX,t]AwL#[w} z]aMo. I?C55 zKG-fJ QcQbg7~uSa�tSa|�Hؿ�$,9\]>8k|]tvuv;;;;;8νG|t#z޽_f>s{3x}׬]|0"D|)Ii;m_ To$AG)I䃤N5'T w_2J"&STJ2GJd^{p4M4'R )BGjS37bA7QI"$έ&Q, Lvqe)a ,hUV*d1�TUU98-j@Uڪ�ZUYV[Úb Kddϡ^v=˲Z=GݠV*eUUU;|ʲ�*lhVL:Hʲ,[yow*,<f脬Ƭ׳m95JW�`D�0KŽ#�A�T1ڄ&=BcƁ1U:a`L{T�01U00ƬDS] 4Js�… 6l那Yp¤M�i:-J {/_8F Ң#'H}I;87ZFJOOO<gD�Ӟx<gDTQ>OqF728!fc2{DMMf>��2 2Lw�W #xdFu:ULq(XՂט>=1Ãis-A&L |gHY2H&Id2inOBqĖ$pi$7%\TT"Ug;"㶨(2(*BQB(5V9It;G9qZ UY.D47A2ę[6+޸Hc;ͩSf'XsV<N, G�`8uapj*\`q}ax[n>‘?fnSq/GR1z+?Ib'WP̡�~qq1b?~�X\� ~-$t:p8)p8Li[8`0wtt:H)wi鴞`0}w0X, X0 ߯M>Ş|\-7po'$~Ri A ��3!V'� )G1I~sd&� G"D}OFyHH|YE"M"L"Hׯ'Cr`LOlz{{{{{UUUUtegg_UUUUU+;ww竪/N@/]ŋ/@Л*////~ 8vm+G֮�\+K.]{Lwر;\t @f͚5k7oٲ4�y,ܼeVq˖,l8f厎KJJJJ\yͳQɼymVVbmʖX߼㱲%�Pd޼yeQVd�%K,)'o{l>pa�e۾ؓO.YX))6dYFɶ/-\ 2nv%eeee޸`v̸v+K8mR |NhY}*.VI"|a2D"!6k.wKgyWvVpǫɲ:7m΍@StCN|AUJJJi*@z@` /C8 sQ,2 ,Xp ^ =3..NΞz.8ʡP(3C[](%9&X/8 T!$  dj~6PӽkuBZYCb0Ie�t9*Y {W~{B99q3+QJ�2E---e�湥я~RY:wRʍs++2(;wܹ+\U VAi)ofx.̅qc lt3+c0V�h�ފ5k֜yvų܋�a;uɭXfM%J홍�*=c�r -ZdxmF/>̋NP93-_J>,gkoyϲ<ӛ͚V!V|6d?_[]]]Q6iӀiO?cyӞf븢>yڴiӾnlx :R*/ڀ3B5?R)Z2',3 R=GY4PT Ul!*EURTRVbQJ,1-Q ;82o*13Bqq5X~Q0J@e j(SpYb2gzת$ZM)Ք1:ȩ,Zzu5)w5K%( exCy@c(`RܾXEj@at9 1ʢZRFrz1";0mbUz0 (U-#PtJ .g-KU3*Q^4 FYfʿ$9��)%t9c1tJ*Rj2J))VQ/c>vsAqF JQ0 ݓSGzV(2VX4Q0Jto+yQ)//_v�u5ujkkkȣ P[[[[SCpܣ^ �+<=3�`n#1=�1=ƁczcGhƌ3Bk"m.{O?o?6{ l�ҿѨn�$ۧZ�jVۻ"�_u>~cfNZ޿O?:cg;FD*f3FcoWo}zP*:;<ү�X5ΊP V]`lC@|O(<({: tX둆) |Oc}VEQL5vMB/Ӥx"qEQa{W8 e�d";e{(4MӼ1wɉt2+?47+*\|1c=|p-@u?>AH \iqc$kI7NGÊ�NI6˱̫pY#WF =@zL'=$NDm| qM,i9s;7b b޽W,8wPlล-N|;oK4i@=12c^}ޫWtй3L$ݘu1*ob #W$9g~>BX{{{k̵_] LZ`xxx8ɤ�Úɤ SJ;$a$h4MkhnN&v+&^Iuyk}>Js+O{O�%,^MIF"dY`A6M�gȎבSnn=eY<lE#N #dnO:3AYer!ϥ){!y+:I?8橓=8'׍ti1; eXSoFj#9[1dטq uo|8zaU}VqmCë|v=p| ]ѮCeO54 �/_.3�ؽTCCÁhW�0ஆ]OD�ݻ]װkk'ww՝2#ݰA+<Q|e9{侈yɔ;w�̀O����IENDB`��������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/images/��������������������������������������0000775�0001750�0001750�00000000000�12262650742�022777� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/images/dialog_sides_rtl.png������������������0000664�0001750�0001750�00000000265�12262650742�027017� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ������g���gAMA��7���tEXtSoftware�Adobe ImageReadyqe<���GIDATxb,.gf```bv b �bA bq ҢPq$75$0o.i ��� 5����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/images/sprites_ie6.png�����������������������0000664�0001750�0001750�00000000754�12262650742�025747� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���>�����t`P���sRGB����PLTE�����XX7fffssW¤՝㖲���tRNS�@f���bKGD�H��� pHYs�� �� ����tIME +"?��=IDATxAj1�Q\BaPgf /Urn2?E :$u]oq꺮^}�zn/t]w��.t]t뺃ǰ/t]Tw�Q~}WTR0aZv^4|瓞/<ףo}UP\v?~^桴4|瓞/ܟ_WK&X{>J_}xGZG:~t|?.M>6M>6M>=7mas5NG]����!Y����IENDB`��������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/images/dialog_sides.gif����������������������0000664�0001750�0001750�00000000060�12262650742�026110� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a ���՝!���,���� ��� W��;��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/images/sprites.png���������������������������0000664�0001750�0001750�00000012415�12262650742�025201� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���>�����NM��IDATx_UՇό~?ZL0腈~ŶC&94@D̜?çwB>r!? o:" b \4&kms29Ǐ̳=gR������?]Eټ{(c[6T:IeVe{rr۷K'lOO(mL+ ?N52Ueբ699T6,/'ߵ?\*q-lC;p`V=RJq?,dFctMiĵy=SSC?BqGqGqGqGqGqG�������=P]=D]_ ՟DѲE.Fq|UBu'Qt^",�WՁJ.Tob/=Ok> !OM%$MO񧧓>@v4J^n6Mzk}TСd5W L{ժoE 0N52y Bd=oFclHv7FM+/+xmkUw5'%kkgY/xY;bu^Y֟2a9OY\^ϙ+z.ЯԜׂVy?m'l*yeއ}dnukkBܲ2a9k׭NyI-O3?9OnuZV \Azm &{2~.KېߢyR-pEjYd,Ni}jnlį)&z}|y9[>3S}BIe}i[[Z3eYߵE^m-f%n';#8#8#8#8#8#x������s e���������������������������QC+?/]qGqGqGqGqGqGqGvwE5: ^߮Vjjsf\i_no7-fEF{L|fDY}^O6LnBLEx -nI܉[z&.Vkl)z}풉^x⽐V.GLH07j5 5y7u�1?PN|bb{`j*y^nn6Ǟ2!0#vNǯiyy q޻n NN><3<6=l2-pNX2~>+܉OcrNOm]m6wphqXsOkǜ^@+m߶ll4ynNeG4}KWs:(R'o^ΆVGu&.3W}׎Ăp,:xĵ~xև5#uOw {&b|ґ܉k}C#i^ʼd_t>MN\<pϲ]Vx+ZV=i{Eĕu-r뙼2a9 ^A:_vxo!kkkЭNy}jo_lȥ.ye^^s>�>)q[5aGy|&ʷ_�e_m\~X2= /@(Ѕ.F{d'R=D?q|7�������tD/%zvzzΦGNz#8#8#8#8#8#8#8M<k]A|mnF=J/G침'mkƷK\8]%.Xj�p#Zv%$uUNf*URRo<:!^tp/NNE)U0 n{=ZZ5t1w |E8%GUHQiاnøj 3@Z$?&TPRYPwQ5W:!|) YuPQNC5*T塊TY낥GziODqhPU)vt.U5Y낥wQۃt!;;mpXm1evz5h_߯KU"vKƏw~Vۃt>a_Kإ\Vi2̊W$~ⳝ;H۞L=� cA`x6^nwpj V{IPZɵMUQR(KdoNOm/d%dxn-v .޺`4dd-BOsZ[Τ<-^5 ,է!F4YmVe]m.Xjd-$mvdҺO떕 G˔ttXU [,5چjGBWFgYۄGZ/Xj,lFh"#-,5*Be ����������������������3j^fD?l6kVm,g_+h_PośS$&%h6"[,Z%_ɯ*޶@m %lEm A|+H*^m1kY"IEm e VԶABio'Z1[Yض,O% �������(]ƒ{o(p*5T褛vԣ"A8ڌBxpzzE]XٕFUzn꺫ϲ gG9Y}Gתϲ-A^LZϯ1[G~<u֮n.IkH_hIXꡮ^^XGUʴwN#K]5_ǀ$Cϲ9\turW{R& !a]Wi!Ӝ[]:= c_w$)x5ݧulk!'It2WqnYʶ2i?#=p~sBF\;2~BI2?tKBka6T;2~ H2,NS%3 #MAh~ec>_3sfǀl0:ƏI=:إ}]-btR}Ro[)/i^\"~|s:,z^(qmS%G~wƩW㬳┻wGqGqGqGqGqGqċ/�������_?}&SVRgzV*L\%Xd=WB4:,+xԋ(+Um?y^*qՕt+U}i-Jpd*ԛJ+{ylb! 8#8#8#8#8#8#�������,tBqGqGqGqGqGqGqG/w=I^.FclLtΤy>lq>^oZ;D7^ugfO4'doQ{d33yk7,>%yw]#^nflmXϧ,) K&zBf\%GWI5V[Lɟ[C߈aA'5רSSzus99abG4"_En>2a] ^'̩93<6=lne}@ +g%ǰJ'5ɪެӣkma`` >k/Z\w1/j($B\wՅWxik۪SY7}|d~Nst?|' =귬{wLVZ>ku7]v2þv$<cq?It61Z4|Fcd.?6aDS~OZ[rtz+<Vx+>~վ69q1$B\\=˺vqZ%kkkj[hm5ʺ9L^װל/٠[/|h v|~${Yא55yѵV{{bit.ye^^s>�>)q[5aM$R +uËvjP׃Σ,� NX ]N[H,, IT�������� M.GqGqGqGqGqGqGqs)U+ϛx[OͨWi(=-yvU'Y낐�nD]W xB٩LWjS*^g n{ ýT:9TV (]hiER1w |E8%GUHQiاg C- E ԪTe8T]ԡN<k_p9/EC8*=?ʩwT喪<Tr%ytVۃ >L.RjU{Z]1wY죶Bv҇w$c7˨jѾ(_嗪D[ƏG/9o{GB=#v +*V6UY܈ Ad*VPtmXGؼi |Ro'ݧ%jv #kze[Ql//0Hd;vBV]B|aֲl0P@CYMH"mQ45Leoo_-^}htoK6a`U&!luA@چjG!nYpLYLGWe_ kmvd!dpetZeM8Ң}Yk."?i}A￈'����������,NPKBw{dS8L]~ ;EbCq:360lY���������@?G>߾}{RBWߣͭ>gܹ?}ѥGߛ[qeO"$=܊k*YꟐ=ˆ7O3v_+B.Da3Yܸa/)Z ��������e]$J)_�������|-K�������BR3�������͔ j$q�����.evvn)K'tYKq.8Hx/EpHu������|VyK6K%_ꇋȗIKS����������������������������������������������������������������������������Z[,]����IENDB`���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/images/toolbar_start.gif���������������������0000664�0001750�0001750�00000000151�12262650742�026342� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a����xX|ZbhbGusrkNvxWe������!�� �,��������j86Ŗ^~ &$�;�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/images/noimage.png���������������������������0000664�0001750�0001750�00000004103�12262650742�025122� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���(���(��� H_���PLTEVV\\TT⟟XX⠠▖bbIIff``CCFFMMZZ㮮㳳SSᆆ቉⚚wwWWxx~~⑑ጌ㭭㣣DD㻻nn⨨ᐐⓓ^^XXᗗNNooKKAAllttUU└JJᎎ㵵㱱㽽uvee㲲⥥㼼PPፍ㪪[[㺺㶶mm㾾qq}}yyPPQQ㰰㷷⛛☘ss❝rrss㯯✜ᄄኊ㫫ዋ⭭ለ]]||㝝GG♙㘘ddiikk潽ppzzHH➞NN䟞㴴⣣^^??;;aa⦦ᕕSS>>||ᇇᅅ⸸ⱱ⪪㢢⬬ႂ人QQ㸸䱱㿿hh㧧RR⎎jj㜜ab毮䥥⽽⮮⫫洴⢢㬬汱䵵䷷⧧㦦庹绺䨨ᄃRRᓓ㹹䠟UU99@@JJ77䪪SSPPff躹似䲲᜜Ⲳ❞ᘘ⋋纹⍍㚚ⷷrszzYp ��IDATx^=H6m۶mo۶m۶͵WS[IʯPPرc?BQQ`4 M<b%:m V ă^jWlKLrtq9F=ayyjSypFQУZ yxŘ19�|#9fǎиLBp�4f JM}m݊]S7ZřpΙ(;\Y Ѐ^  ###CR(VS3Ե%0F)\0 ]/ }MR\xۧ[?[S~yp]qzCȂ* oj!*jnkA]YW|ecc)###E"P`k1%j]AOMuh:AmQ(F lxmrƖWNP6>GˆSPZ;vv$�EkXಹҥfSY%B9k@-:fA;4rD9)z@U^Ni̲\˻j+Iʲr$MWh|i]o i ^ HI:s]R@/͵k"LJ["ew3VJ뛒0JB1$mHV׵`>c{]j*iI筮+|}�x)/b uec 1 Qe=޻1Uw]4ƻxgpzݜ_j]uYJgvh0`Zx'T/Z;JyׯM͛/*1G*+2ݽ^Xnv:>/0*AuqK`C^\ߢgz+KQ 6.\:~l;zĨq{Y=̣K||gg3Chf = C(kAgOv|I&#`r4hӷE&X%!!a v-}|ꕋ{qN)d2Q;͍g-@LTmt6>-,wy3:;;<(9,oTWbZZr8K.w|!"Bt6 }r9iX=9W`Ȇ݆;& j,sp ? 騷-EwfzSb,Y2=s&ûy<{<O[Q'TFWgZ����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/images/mini.gif������������������������������0000664�0001750�0001750�00000000267�12262650742�024427� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF89a�0����www�ff��!���,�����0��|x01,,%#^d$A^Lxa[R+'RSZ3UКvP( 4[}$t fz b�C fdegun]7 �;�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/images/dialog_sides.png����������������������0000664�0001750�0001750�00000000262�12262650742�026133� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ������g���gAMA��7���tEXtSoftware�Adobe ImageReadyqe<���DIDATxb?1$H1;s'%=E7o- k ~ ϡk8H @ �>B{����IENDB`����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/editor.css�����������������������������������0000664�0001750�0001750�00000075357�12262650742�023553� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ .cke_skin_v2 *,.cke_skin_v2 a:hover,.cke_skin_v2 a:link,.cke_skin_v2 a:visited,.cke_skin_v2 a:active{margin:0;padding:0;border:0;background:transparent;text-decoration:none;font:normal normal normal 100% Sans-Serif;width:auto;height:auto;border-collapse:collapse;text-align:left;vertical-align:baseline;white-space:nowrap;cursor:auto;color:#000;float:none;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif;}.cke_skin_v2 .cke_rtl *,.cke_skin_v2 .cke_rtl a:hover,.cke_skin_v2 .cke_rtl a:link,.cke_skin_v2 .cke_rtl a:visited,.cke_skin_v2 .cke_rtl a:active,.cke_rtl .cke_skin_v2 *,.cke_rtl .cke_skin_v2 a:hover,.cke_rtl .cke_skin_v2 a:link,.cke_rtl .cke_skin_v2 a:visited,.cke_rtl .cke_skin_v2 a:active{text-align:right;}.cke_skin_v2 iframe{vertical-align:inherit;}.cke_skin_v2 textarea{white-space:pre;}.cke_skin_v2 .cke_browser_gecko textarea{cursor:text;}.cke_skin_v2 .cke_browser_gecko textarea[disabled]{cursor:default;}.cke_skin_v2 input[type="text"],.cke_skin_v2 input[type="password"]{cursor:text;}.cke_skin_v2 input[type="text"][disabled],.cke_skin_v2 input[type="password"][disabled]{cursor:default;}.cke_skin_v2 fieldset{padding:10px;border:2px groove #E0DFE3;}.cke_skin_v2 .cke_editor{display:inline-table;width:100%;}.cke_skin_v2 .cke_browser_webkit .cke_editor{display:table;}.cke_skin_v2{display:block;}.cke_skin_v2 span.cke_browser_webkit,.cke_skin_v2 span.cke_browser_gecko18{display:block;}.cke_skin_v2 .cke_wrapper{display:block;}.cke_skin_v2 .cke_browser_opera .cke_editor{display:table;}.cke_skin_v2 .cke_top,.cke_skin_v2 .cke_bottom,.cke_shared .cke_skin_v2{background-color:#efefde;}.cke_skin_v2 .cke_top{border-top:solid 1px #fafaf5;border-left:solid 1px #fafaf5;border-right:solid 1px #696969;border-bottom:solid 2px #696969;}.cke_skin_v2 .cke_rtl .cke_top{border-left:solid 1px #696969;border-right:solid 1px #fafaf5;}.cke_skin_v2 .cke_bottom{border-left:solid 1px #696969;border-right:solid 1px #696969;border-bottom:solid 1px #696969;}.cke_skin_v2 .cke_contents{border:solid 1px #696969;background-color:white;}.cke_skin_v2 .cke_focus{outline:auto 5px -webkit-focus-ring-color;}.cke_skin_v2 textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre;}.cke_skin_v2 .cke_browser_iequirks textarea.cke_source{_white-space:normal;}.cke_skin_v2 .cke_resizer{width:12px;height:12px;margin-top:16px;display:block;float:right;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -801px;background-repeat:no-repeat;cursor:se-resize;}.cke_skin_v2 .cke_browser_air .cke_resizer,.cke_skin_v2 .cke_browser_air .cke_rtl .cke_resizer{cursor:move;}.cke_skin_v2 .cke_resizer_rtl{cursor:sw-resize;background-position:0 -828px;float:left;}.cke_skin_v2 .cke_resizer_horizontal,.cke_skin_v2 .cke_rtl .cke_resizer_horizontal{cursor:e-resize;}.cke_skin_v2 .cke_resizer_vertical,.cke_skin_v2 .cke_rtl .cke_resizer_vertical{cursor:n-resize;}.cke_skin_v2 .cke_maximized .cke_resizer{display:none;}.cke_skin_v2 .cke_browser_ie6 .cke_contents textarea,.cke_skin_v2 .cke_browser_ie7 .cke_contents textarea{position:absolute;}.cke_skin_v2 .cke_voice_label{display:none;}.cke_skin_v2 legend.cke_voice_label{display:none;}.cke_skin_v2 .cke_browser_ie legend.cke_voice_label{position:absolute;display:block;width:0;height:0;overflow:hidden;}.cke_skin_v2 .cke_panel{border:1px solid #8f8f73;background-color:#fff;width:120px;height:100px;overflow:hidden;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.cke_skin_v2 .cke_panel iframe{width:100%;height:100%;}.cke_skin_v2 .cke_panel_frame .cke_label{display:none;}html.cke_skin_v2_container{overflow:auto;overflow-x:hidden;}body.cke_panel_frame{overflow:auto;}ul.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap;}li.cke_panel_listItem{margin:0;}.cke_panel_listItem a{padding:2px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;}* html .cke_panel_listItem a{width:100%;color:#000;}*:first-child+html .cke_panel_listItem a{color:#000;} .cke_panel_listItem.cke_selected a{border:1px solid #ccc;background-color:#e9f5ff;}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#316ac5;background-color:#dff1ff;}.cke_hc .cke_panel_listItem.cke_selected a,.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border-width:3px;padding:0;}.cke_panel_grouptitle{font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif;font-weight:bold;white-space:nowrap;background-color:#dcdcdc;color:#000;margin:0;padding:3px;}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:3px;margin-bottom:3px;}.cke_skin_v2 .cke_button_textcolor_panel,.cke_skin_v2 .cke_button_bgcolor_panel{width:150px;height:135px;}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif;}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000;}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left;}.cke_rtl span.cke_colorbox{float:right;}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;}.cke_rtl a.cke_colorbox{float:right;}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#316ac5 1px solid;background-color:#dff1ff;}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer;}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#316ac5 1px solid;background-color:#dff1ff;}@media print{.cke_skin_v2 .cke_toolbox{display:none;}}.cke_skin_v2 .cke_browser_webkit .cke_toolbox,.cke_skin_v2 .cke_browser_webkit .cke_toolbox>span{white-space:normal;}.cke_skin_v2 .cke_toolbox{clear:both;padding-bottom:1px;}.cke_skin_v2 a.cke_toolbox_collapser,.cke_skin_v2 a:hover.cke_toolbox_collapser{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:3px -739px;background-repeat:no-repeat;width:11px;height:11px;float:right;border:outset 1px;margin:11px 2px 2px;cursor:pointer;}.cke_skin_v2 a.cke_toolbox_collapser span{display:none;}.cke_skin_v2 .cke_hc a.cke_toolbox_collapser span{font-size:10px;font-weight:bold;font-family:Arial;display:inline;}.cke_skin_v2 .cke_rtl a.cke_toolbox_collapser,.cke_skin_v2 .cke_rtl a:hover.cke_toolbox_collapser{float:left;}.cke_skin_v2 a.cke_toolbox_collapser_min,.cke_skin_v2 a:hover.cke_toolbox_collapser_min{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:4px -760px;background-repeat:no-repeat;margin:2px;}.cke_skin_v2 .cke_rtl a.cke_toolbox_collapser_min,.cke_skin_v2 .cke_rtl a:hover.cke_toolbox_collapser_min{background-position:4px -781px;}.cke_skin_v2 .cke_toolbar{padding-top:1px;padding-bottom:1px;display:inline-block;float:left;}.cke_skin_v2 .cke_rtl .cke_toolbar{float:right;}.cke_skin_v2 .cke_toolgroup{display:inline-block;float:left;}.cke_skin_v2 .cke_browser_ie .cke_toolgroup{#float:none;#display:inline;}.cke_skin_v2 .cke_rtl .cke_toolgroup{float:right;}.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_toolgroup{#float:none;}.cke_skin_v2 .cke_separator{display:inline-block;float:left;border-left:solid 1px #999;margin:4px 2px;height:16px;}.cke_skin_v2 .cke_browser_ie .cke_separator{#float:none;#display:inline;}.cke_skin_v2 .cke_rtl .cke_separator{float:right;}.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_separator{#float:none;}.cke_skin_v2 .cke_break{clear:left;}.cke_skin_v2 .cke_rtl .cke_break{clear:right;}.cke_skin_v2 .cke_toolbar_start{display:inline-block;background-image:url(images/toolbar_start.gif);background-repeat:no-repeat;margin:4px 2px 0 2px;width:3px;height:20px;float:left;}.cke_skin_v2 .cke_browser_ie .cke_toolbar_start{#float:none;#display:inline;}.cke_skin_v2 .cke_rtl .cke_toolbar_start{float:right;}.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_toolbar_start{#float:none;}.cke_skin_v2 .cke_toolbar_end{display:inline-block;float:left;} .cke_skin_v2 .cke_browser_ie .cke_toolbar_end{#float:none;#display:inline;}.cke_skin_v2 .cke_rtl .cke_toolbar_end{float:right;}.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_toolbar_end{#float:none;}.cke_skin_v2 .cke_browser_ie9plus .cke_rtl .cke_separator,.cke_skin_v2 .cke_browser_ie9plus .cke_rtl .cke_toolbar_start,.cke_skin_v2 .cke_browser_ie9plus .cke_rtl .cke_toolbar_end{vertical-align:middle;}.cke_skin_v2 .cke_button a,.cke_skin_v2 .cke_button a:hover,.cke_skin_v2 .cke_button a:focus,.cke_skin_v2 .cke_button a:active,.cke_skin_v2 .cke_button a.cke_off{border:solid 1px #efefde;display:inline-block;border-radius:3px;outline:none;padding-top:2px;padding-left:4px;padding-right:4px;padding-bottom:2px;height:18px;cursor:default;}.cke_skin_v2 .cke_button a,.cke_skin_v2 .cke_button a.cke_off{background-color:#efefde;filter:alpha(opacity=70);opacity:.70;-moz-border-radius:3px;-webkit-border-radius:3px;}.cke_skin_v2 .cke_hc .cke_button a,.cke_skin_v2 .cke_hc .cke_button a.cke_off{opacity:1.0;filter:alpha(opacity=100);}.cke_skin_v2 .cke_button a.cke_on{border:solid 1px #316ac5;background-color:#a3d7ff;filter:alpha(opacity=100);opacity:1;}.cke_skin_v2 .cke_button a.cke_disabled *{filter:alpha(opacity=30);opacity:.3;}.cke_skin_v2 .cke_browser_ie .cke_button a.cke_disabled *,.cke_skin_v2 .cke_browser_ie a:hover.cke_button .cke_disabled *{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);}.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_button a.cke_disabled *,.cke_skin_v2 .cke_browser_ie .cke_rtl a:hover.cke_button .cke_disabled *{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);}.cke_skin_v2 .cke_browser_ie6 .cke_button a.cke_disabled *,.cke_skin_v2 .cke_browser_ie6 a:hover.cke_button .cke_disabled *,.cke_skin_v2 .cke_browser_ie .cke_button.cke_noalphafix a.cke_disabled *{filter:alpha(opacity=30);}.cke_skin_v2 .cke_hc .cke_button a.cke_disabled *,.cke_skin_v2 .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled *{filter:alpha(opacity=60);opacity:.6;}.cke_skin_v2 .cke_button a:hover,.cke_skin_v2 .cke_button a:focus,.cke_skin_v2 .cke_button a:active{border:solid 1px #316ac5;background-color:#dff1ff;padding:2px 4px;}.cke_skin_v2 .cke_hc .cke_button a:hover,.cke_skin_v2 .cke_hc .cke_button a:focus,.cke_skin_v2 .cke_hc .cke_button a:active{padding:0 2px!important;border-width:3px;}.cke_skin_v2 .cke_button .cke_icon{background-image:url(icons.png);background-position:100px;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;display:inline-block;cursor:default;}.cke_skin_v2 .cke_rtl .cke_button .cke_icon{background-image:url(icons_rtl.png);}.cke_skin_v2 .cke_browser_ie .cke_button .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_button .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_skin_v2 .cke_browser_ie6 .cke_button .cke_icon,.cke_skin_v2 .cke_browser_ie6 .cke_rtl .cke_button .cke_icon,.cke_skin_v2 .cke_browser_ie .cke_button.cke_noalphafix .cke_icon,.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_button.cke_noalphafix .cke_icon{filter:;}.cke_skin_v2 .cke_button .cke_label{cursor:default;display:none;padding-left:3px;vertical-align:middle;}.cke_skin_v2 .cke_hc .cke_button .cke_label{padding:0;display:inline-block;}.cke_skin_v2 .cke_hc .cke_button .cke_icon{display:none;}.cke_skin_v2 .cke_accessibility{position:absolute;display:block;width:0;height:0;overflow:hidden;}.cke_skin_v2 .cke_button .cke_buttonarrow{display:inline-block;height:17px;width:8px;background-position:2px -717px;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-repeat:no-repeat;cursor:default;}.cke_skin_v2 .cke_rtl .cke_button .cke_buttonarrow{background-position:0 -717px;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);}.cke_skin_v2 .cke_browser_gecko18 .cke_toolbar,.cke_skin_v2 .cke_browser_gecko18 .cke_button a,.cke_skin_v2 .cke_browser_gecko18 .cke_button a.cke_off,.cke_skin_v2 .cke_browser_gecko18 .cke_button .cke_icon,.cke_skin_v2 .cke_browser_gecko18 .cke_button .cke_buttonarrow,.cke_skin_v2 .cke_browser_gecko18 .cke_separator,.cke_skin_v2 .cke_browser_gecko18 .cke_toolbar_start{display:block;float:left;} .cke_skin_v2 .cke_browser_gecko18 .cke_hc .cke_button .cke_icon{display:none;}.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_toolbar,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button a,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button a.cke_off,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button .cke_icon,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button .cke_buttonarrow,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_separator,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_toolbar_start{float:right;}.cke_skin_v2 .cke_browser_gecko18 .cke_button .cke_label,.cke_skin_v2 .cke_browser_gecko18 .cke_break{float:left;}.cke_skin_v2 .cke_browser_gecko18 .cke_rtl span.cke_inline_label{float:right;}.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button .cke_label,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_break,.cke_skin_v2 .cke_browser_ie8 .cke_rtl .cke_break,.cke_skin_v2 .cke_browser_ie9plus .cke_rtl .cke_break{float:right;}.cke_skin_v2 .cke_browser_gecko18 .cke_separator{margin-top:4px;}.cke_skin_v2 .cke_browser_gecko18 .cke_button .cke_label{padding-top:3px;}.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_toolgroup,.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_separator,.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_toolbar_start,.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_toolbar_end{float:none;}.cke_skin_v2 .cke_browser_ie8 .cke_toolbar,.cke_skin_v2 .cke_browser_ie8 .cke_toolgroup{vertical-align:top;}.cke_skin_v2 .cke_browser_iequirks.cke_browser_ie8 .cke_toolbar,.cke_skin_v2 .cke_browser_iequirks.cke_browser_ie8 .cke_toolgroup{vertical-align:baseline;}.cke_skin_v2 .cke_browser_ie .cke_rcombo,.cke_skin_v2 .cke_browser_ie .cke_rcombo *{cursor:default;}.cke_skin_v2 .cke_contextmenu{padding:2px;}.cke_skin_v2 .cke_menuitem a{display:block;}.cke_skin_v2 .cke_menuitem span{cursor:default;}.cke_skin_v2 .cke_menuitem a:hover,.cke_skin_v2 .cke_menuitem a:focus,.cke_skin_v2 .cke_menuitem a:active{background-color:#8f8f73;display:block;}.cke_hc .cke_menuitem a:hover,.cke_hc .cke_menuitem a:focus,.cke_hc .cke_menuitem a:active{border:2px solid;}.cke_skin_v2 .cke_menuitem .cke_icon{background-image:url(icons.png);background-position:100px;background-repeat:no-repeat;background-color:transparent;width:16px;height:16px;float:left;}.cke_rtl .cke_skin_v2 .cke_menuitem .cke_icon{background-image:url(icons_rtl.png);}.cke_browser_ie .cke_skin_v2 .cke_menuitem .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie.cke_rtl .cke_skin_v2 .cke_menuitem .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie6 .cke_skin_v2 .cke_menuitem .cke_icon,.cke_browser_ie .cke_skin_v2 .cke_menuitem.cke_noalphafix .cke_icon{filter:;}.cke_skin_v2 .cke_menuitem .cke_disabled .cke_icon{filter:alpha(opacity=70);opacity:.70;}.cke_browser_ie .cke_skin_v2 .cke_menuitem .cke_disabled .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie.cke_rtl .cke_skin_v2 .cke_menuitem .cke_disabled .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_browser_ie6 .cke_skin_v2 .cke_menuitem .cke_disabled .cke_icon,.cke_browser_ie .cke_skin_v2 .cke_menuitem.cke_noalphafix .cke_disabled .cke_icon{filter:;}.cke_skin_v2 .cke_menuitem .cke_icon_wrapper{background-color:#e3e3c7;border:solid 4px #e3e3c7;width:16px;height:16px;float:left;filter:alpha(opacity=70);opacity:.70;clear:both;}.cke_rtl .cke_skin_v2 .cke_menuitem .cke_icon_wrapper{float:right;}.cke_skin_v2 .cke_menuitem a:hover .cke_icon_wrapper,.cke_skin_v2 .cke_menuitem a:focus .cke_icon_wrapper,.cke_skin_v2 .cke_menuitem a:active .cke_icon_wrapper{background-color:#9d9d9d;border:solid 4px #9d9d9d;filter:alpha(opacity=70);opacity:.70;}.cke_skin_v2 .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,.cke_skin_v2 .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,.cke_skin_v2 .cke_menuitem a:active.cke_disabled .cke_icon_wrapper{background-color:#e3e3c7;border:solid 4px #e3e3c7;}.cke_skin_v2 .cke_menuitem .cke_label{display:block;padding-right:3px;padding-top:5px;padding-left:4px;height:19px;margin-left:24px;background-color:#fff;} .cke_skin_v2 .cke_frameLoaded .cke_menuitem .cke_label{filter:alpha(opacity=70);opacity:.70;}.cke_rtl .cke_skin_v2 .cke_menuitem .cke_label{padding-right:0;margin-left:0;padding-left:3px;margin-right:28px;}.cke_skin_v2 .cke_menuitem a.cke_disabled .cke_label{filter:alpha(opacity=30);opacity:.30;}.cke_skin_v2 .cke_menuitem a:hover .cke_label,.cke_skin_v2 .cke_menuitem a:focus .cke_label,.cke_skin_v2 .cke_menuitem a:active .cke_label{background-color:#8f8f73;color:white;}.cke_skin_v2 .cke_menuitem a.cke_disabled:hover .cke_label,.cke_skin_v2 .cke_menuitem a.cke_disabled:focus .cke_label,.cke_skin_v2 .cke_menuitem a.cke_disabled:active .cke_label{background-color:transparent;color:black;}.cke_skin_v2 .cke_menuseparator{background-color:#e3e3c7;height:2px;filter:alpha(opacity=70);opacity:.70;_font-size:0;}.cke_skin_v2 .cke_menuarrow{background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-position:0 -784px;background-repeat:no-repeat;height:5px;width:3px;float:right;margin-right:2px;margin-top:3px;}.cke_rtl .cke_skin_v2 .cke_menuarrow{float:left;margin-right:0;margin-left:2px;background-position:0 -763px;}.cke_skin_v2 .cke_menuarrow span{display:none;}.cke_hc .cke_skin_v2 .cke_menuarrow{width:auto;margin-top:0;}.cke_hc .cke_skin_v2 .cke_menuarrow span{display:inline;}.cke_browser_ie.cke_ltr .cke_skin_v2 .cke_menuarrow{position:absolute;right:2px;}.cke_browser_ie.cke_rtl .cke_skin_v2 .cke_menuarrow{position:absolute;left:2px;}.cke_skin_v2 .cke_rcombo{display:inline-block;margin-left:2px;margin-right:2px;margin-top:2px;vertical-align:top;}.cke_skin_v2 .cke_browser_ie .cke_rcombo{#display:inline;}.cke_skin_v2 .cke_rcombopanel{border:1px solid #316ac5;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;}.cke_skin_v2 .cke_rcombo a{display:inline-block;float:left;filter:alpha(opacity=70);opacity:.70;}.cke_skin_v2 .cke_rtl .cke_rcombo a{float:right;}.cke_skin_v2 .cke_hc .cke_rcombo a{filter:alpha(opacity=100);opacity:1.0;}.cke_skin_v2 .cke_rcombo .cke_label{float:left;line-height:20px;line-height:22px\9;height:22px;padding-left:4px;padding-right:5px;filter:alpha(opacity=70);opacity:.70;background-color:#f1f1e3;cursor:default;}.cke_skin_v2 .cke_rtl .cke_rcombo .cke_label{float:right;padding-right:4px;padding-left:5px;}.cke_skin_v2 .cke_hc .cke_rcombo .cke_label{filter:alpha(opacity=100);opacity:1.0;}.cke_skin_v2 .cke_rcombo .cke_inline_label{color:#fff;}.cke_skin_v2 .cke_rcombo .cke_text{border:1px solid #8f8f73;background-color:#fff;height:12px;width:60px;padding-top:4px;padding-bottom:4px;padding-left:5px;padding-right:5px;text-overflow:ellipsis;overflow:hidden;display:inline-block;vertical-align:top;cursor:default;}.cke_skin_v2 .cke_ltr .cke_rcombo .cke_text{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;}.cke_skin_v2 .cke_rtl .cke_rcombo .cke_text{-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;}.cke_skin_v2 .cke_browser_iequirks .cke_rcombo .cke_text{height:22px;}.cke_skin_v2 .cke_rcombo .cke_openbutton{display:inline-block;border-top:1px solid #8f8f73;border-bottom:1px solid #8f8f73;}.cke_skin_v2 .cke_rcombo .cke_openbutton .cke_icon{display:inline-block;background-position:5px -715px;background-image:url(images/sprites.png);_background-image:url(images/sprites_ie6.png);background-repeat:no-repeat;width:14px;height:20px;}.cke_skin_v2 .cke_browser_ie .cke_rcombo .cke_openbutton .cke_icon{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');}.cke_skin_v2 .cke_browser_ie6 .cke_rcombo .cke_openbutton .cke_icon{filter:;}.cke_skin_v2 .cke_hc .cke_rcombo .cke_openbutton .cke_icon{background:none;filter:;}.cke_skin_v2 .cke_ltr .cke_rcombo .cke_openbutton{border-right:1px solid #8f8f73;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;} .cke_skin_v2 .cke_rtl .cke_rcombo .cke_openbutton{border-left:1px solid #8f8f73;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;}.cke_skin_v2 .cke_rcombo .cke_off a:hover,.cke_skin_v2 .cke_rcombo .cke_off a:focus,.cke_skin_v2 .cke_rcombo .cke_off a:active,.cke_skin_v2 .cke_rcombo .cke_on a{filter:alpha(opacity=100);opacity:1;}.cke_skin_v2 .cke_rcombo .cke_off a:hover .cke_text,.cke_skin_v2 .cke_rcombo .cke_off a:focus .cke_text,.cke_skin_v2 .cke_rcombo .cke_off a:active .cke_text,.cke_skin_v2 .cke_rcombo .cke_on .cke_text{border-color:#316ac5;}.cke_skin_v2 .cke_rcombo .cke_off a:hover .cke_openbutton,.cke_skin_v2 .cke_rcombo .cke_off a:focus .cke_openbutton,.cke_skin_v2 .cke_rcombo .cke_off a:active .cke_openbutton,.cke_skin_v2 .cke_rcombo .cke_on .cke_openbutton{border-color:#316ac5;background-color:#dff1ff;}.cke_skin_v2 .cke_rcombo .cke_on .cke_text{-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;}.cke_skin_v2 .cke_rcombo .cke_on .cke_openbutton{-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;}.cke_skin_v2 .cke_rcombo .cke_disabled .cke_label{filter:alpha(opacity=30);opacity:.3;}.cke_skin_v2 .cke_hc .cke_rcombo .cke_disabled .cke_label{filter:alpha(opacity=70);opacity:.7;}.cke_skin_v2 .cke_rcombo .cke_disabled .cke_text,.cke_skin_v2 .cke_rcombo .cke_disabled .cke_openbutton{filter:alpha(opacity=50);opacity:.5;}.cke_skin_v2 .cke_browser_ie .cke_rcombo .cke_disabled .cke_openbutton{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=50);}.cke_skin_v2 .cke_browser_ie6 .cke_rcombo .cke_disabled .cke_openbutton{filter:alpha(opacity=50);}.cke_skin_v2 .cke_hc .cke_rcombo .cke_disabled .cke_text,.cke_skin_v2 .cke_hc .cke_rcombo .cke_disabled .cke_openbutton{filter:alpha(opacity=80);opacity:.8;}.cke_skin_v2 .cke_rcombo .cke_disabled .cke_text{color:#fff;}.cke_skin_v2 .cke_browser_gecko18 .cke_rcombo,.cke_skin_v2 .cke_browser_gecko18 .cke_rcombo .cke_label,.cke_skin_v2 .cke_browser_gecko18 .cke_rcombo .cke_text,.cke_skin_v2 .cke_browser_gecko18 .cke_rcombo .cke_openbutton,.cke_skin_v2 .cke_browser_webkit .cke_rcombo .cke_label,.cke_skin_v2 .cke_browser_webkit .cke_rcombo .cke_text,.cke_skin_v2 .cke_browser_webkit .cke_rcombo .cke_openbutton{display:block;float:left;}.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_rcombo,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_label,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_text,.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_openbutton,.cke_skin_v2 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_label,.cke_skin_v2 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_text,.cke_skin_v2 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_openbutton{float:right;}.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_rcombo,.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_rcombo a,.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_rcombo .cke_label{float:none;}.cke_skin_v2 .cke_browser_iequirks .cke_rcombo .cke_openbutton{height:22px;}.cke_skin_v2 .cke_rtl .cke_rcombo .cke_font .cke_text,.cke_skin_v2 .cke_rtl .cke_rcombo .cke_fontSize .cke_text{direction:ltr;}@media print{.cke_path{display:none;}}.cke_skin_v2 .cke_path{padding:3px 3px 0 3px;display:inline-block;float:left;}.cke_skin_v2 .cke_rtl .cke_path{float:right;}.cke_skin_v2 .cke_path a,.cke_skin_v2 .cke_path .cke_empty{display:inline-block;float:left;border:solid 1px #efefde;background-color:#efefde;padding-top:1px;padding-bottom:1px;padding-left:4px;padding-right:4px;margin-bottom:3px;cursor:default;}.cke_skin_v2 .cke_path .cke_empty{visibility:hidden;}.cke_skin_v2 .cke_rtl .cke_path a,.cke_skin_v2 .cke_rtl .cke_path cke_empty{float:right;}.cke_skin_v2 .cke_path a:hover,.cke_skin_v2 .cke_path a:focus,.cke_skin_v2 .cke_path a:active{border:solid 1px #316ac5;background-color:#dff1ff;padding-top:1px;padding-bottom:1px;padding-left:4px;padding-right:4px;outline:none;} .cke_skin_v2 .cke_browser_ie .cke_rtl .cke_path a,.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_path .cke_empty{float:none;}.cke_skin_v2 .cke_path .cke_label{display:none;}.cke_skin_v2 .cke_button_source .cke_icon{background-position:0 0;}.cke_skin_v2 .cke_button_docProps .cke_icon{background-position:0 -16px;}.cke_skin_v2 .cke_button_newpage .cke_icon{background-position:0 -48px;}.cke_skin_v2 .cke_button_preview .cke_icon{background-position:0 -64px;}.cke_skin_v2 .cke_button_cut .cke_icon{background-position:0 -96px;}.cke_skin_v2 .cke_button_copy .cke_icon{background-position:0 -112px;}.cke_skin_v2 .cke_button_paste .cke_icon{background-position:0 -128px;}.cke_skin_v2 .cke_button_pastetext .cke_icon{background-position:0 -144px;}.cke_skin_v2 .cke_button_find .cke_icon{background-position:0 -240px;}.cke_skin_v2 .cke_button_replace .cke_icon{background-position:0 -256px;}.cke_skin_v2 .cke_button_selectAll .cke_icon{background-position:0 -272px;}.cke_skin_v2 .cke_button_removeFormat .cke_icon{background-position:0 -288px;}.cke_skin_v2 .cke_button_bold .cke_icon{background-position:0 -304px;}.cke_skin_v2 .cke_button_italic .cke_icon{background-position:0 -320px;}.cke_skin_v2 .cke_button_underline .cke_icon{background-position:0 -336px;}.cke_skin_v2 .cke_button_strike .cke_icon{background-position:0 -352px;}.cke_skin_v2 .cke_button_subscript .cke_icon{background-position:0 -368px;}.cke_skin_v2 .cke_button_superscript .cke_icon{background-position:0 -384px;}.cke_skin_v2 .cke_button_table .cke_icon{background-position:0 -608px;}.cke_skin_v2 .cke_button_horizontalrule .cke_icon{background-position:0 -624px;}.cke_skin_v2 .cke_button_smiley .cke_icon{background-position:0 -640px;}.cke_skin_v2 .cke_button_link .cke_icon{background-position:0 -528px;}.cke_skin_v2 .cke_button_unlink .cke_icon{background-position:0 -544px;}.cke_skin_v2 .cke_button_anchor .cke_icon{background-position:0 -560px;}.cke_skin_v2 .cke_button_image .cke_icon{background-position:0 -576px;}.cke_skin_v2 .cke_button_flash .cke_icon{background-position:0 -592px;}.cke_skin_v2 .cke_button_specialchar .cke_icon{background-position:0 -656px;}.cke_skin_v2 .cke_button_pagebreak .cke_icon{background-position:0 -672px;}.cke_skin_v2 .cke_button_print .cke_icon{background-position:0 -176px;}.cke_skin_v2 .cke_button_checkspell .cke_icon,.cke_skin_v2 .cke_button_scayt .cke_icon{background-position:0 -192px;}.cke_skin_v2 .cke_button_pagebreak .cke_icon{background-position:0 -672px;}.cke_skin_v2 .cke_button_textcolor .cke_icon{background-position:0 -704px;}.cke_skin_v2 .cke_button_bgcolor .cke_icon{background-position:0 -720px;}.cke_skin_v2 .cke_button_form .cke_icon{background-position:0 -752px;}.cke_skin_v2 .cke_button_checkbox .cke_icon{background-position:0 -768px;}.cke_skin_v2 .cke_button_radio .cke_icon{background-position:0 -784px;}.cke_skin_v2 .cke_button_textfield .cke_icon{background-position:0 -800px;}.cke_skin_v2 .cke_button_textarea .cke_icon{background-position:0 -816px;}.cke_skin_v2 .cke_button_showblocks .cke_icon{background-position:0 -1136px;}.cke_skin_v2 .cke_button_select .cke_icon{background-position:0 -832px;}.cke_skin_v2 .cke_button_button .cke_icon{background-position:0 -848px;}.cke_skin_v2 .cke_button_imagebutton .cke_icon{background-position:0 -864px;}.cke_skin_v2 .cke_button_hiddenfield .cke_icon{background-position:0 -880px;}.cke_skin_v2 .cke_button_undo .cke_icon{background-position:0 -208px;}.cke_skin_v2 .cke_rtl .cke_button_undo .cke_icon{background-position:0 -224px;}.cke_skin_v2 .cke_button_redo .cke_icon{background-position:0 -224px;}.cke_skin_v2 .cke_rtl .cke_button_redo .cke_icon{background-position:0 -208px;}.cke_skin_v2 .cke_button_templates .cke_icon{background-position:0 -80px;}.cke_skin_v2 .cke_button_numberedlist .cke_icon{background-position:0 -400px;}.cke_skin_v2 .cke_button_bulletedlist .cke_icon{background-position:0 -416px;}.cke_skin_v2 .cke_mixed_dir_content .cke_button_numberedlist .cke_icon{background-position:0 -1217px;}.cke_skin_v2 .cke_mixed_dir_content .cke_button_bulletedlist .cke_icon{background-position:0 -1233px;}.cke_skin_v2 .cke_button_outdent .cke_icon{background-position:0 -432px;} .cke_skin_v2 .cke_button_indent .cke_icon{background-position:0 -448px;}.cke_skin_v2 .cke_mixed_dir_content .cke_button_indent .cke_icon{background-position:0 -1265px;}.cke_skin_v2 .cke_mixed_dir_content .cke_button_outdent .cke_icon{background-position:0 -1249px;}.cke_skin_v2 .cke_button_justifyleft .cke_icon{background-position:0 -464px;}.cke_skin_v2 .cke_button_justifycenter .cke_icon{background-position:0 -480px;}.cke_skin_v2 .cke_button_justifyright .cke_icon{background-position:0 -496px;}.cke_skin_v2 .cke_button_justifyblock .cke_icon{background-position:0 -512px;}.cke_skin_v2 .cke_button_blockquote .cke_icon{background-position:0 -1152px;}.cke_skin_v2 .cke_button_flash .cke_icon{background-position:0 -592px;}.cke_skin_v2 .cke_button_pastefromword .cke_icon{background-position:0 -160px;}.cke_skin_v2 .cke_button_save .cke_icon{background-position:0 -32px;}.cke_skin_v2 .cke_button_about .cke_icon{background-position:0 -736px;}.cke_skin_v2 .cke_button_maximize .cke_icon{background-position:0 -1040px;}.cke_skin_v2 .cke_button_creatediv .cke_icon{background-position:0 -1168px;}.cke_skin_v2 .cke_button_editdiv .cke_icon{background-position:0 -1184px;}.cke_skin_v2 .cke_button_removediv .cke_icon{background-position:0 -1200px;}.cke_skin_v2 .cke_button_bidirtl .cke_icon{background-position:0 -1072px;}.cke_skin_v2 .cke_button_bidiltr .cke_icon{background-position:0 -1056px;}.cke_skin_v2 .cke_button_iframe .cke_icon{background-position:0 -1279px;}.cke_skin_v2 .cke_button_source .cke_label{display:inline;display:inline-block;}.cke_skin_v2 .cke_styles_panel{width:150px;height:170px;}.cke_skin_v2 .cke_format_panel{width:150px;height:170px;}.cke_skin_v2 .cke_font_panel{width:150px;height:170px;}.cke_skin_v2 .cke_fontSize_panel{height:170px;}.cke_skin_v2 .cke_fontSize .cke_text{width:20px;}.cke_skin_v2 .cke_browser_iequirks .cke_fontSize .cke_text{width:32px;}html .cke_skin_v2{visibility:inherit;}html.cke_skin_v2_container{visibility:visible;} ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/templates.css��������������������������������0000664�0001750�0001750�00000002622�12262650742�024244� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ .cke_skin_v2 .cke_tpl_list{border:#dcdcdc 2px solid;background-color:#fff;overflow:auto;width:100%;height:220px;}.cke_skin_v2 .cke_tpl_item{margin:5px;padding:7px;border:#eee 1px solid;*width:88%;}.cke_skin_v2 .cke_tpl_preview{border-collapse:separate;text-indent:0;width:100%;}.cke_skin_v2 .cke_tpl_preview td{padding:2px;vertical-align:middle;}.cke_skin_v2 .cke_tpl_preview .cke_tpl_preview_img{width:100px;}.cke_skin_v2 .cke_tpl_preview span{white-space:normal;}.cke_skin_v2 .cke_tpl_title{font-weight:bold;}.cke_skin_v2 .cke_tpl_list a:active .cke_tpl_item,.cke_skin_v2 .cke_tpl_list a:hover .cke_tpl_item,.cke_skin_v2 .cke_tpl_list a:focus .cke_tpl_item{border:#f93 1px solid!important;background-color:#fffacd!important;}.cke_skin_v2 .cke_tpl_list a:active *,.cke_skin_v2 .cke_tpl_list a:hover *,.cke_skin_v2 .cke_tpl_list a:focus *{cursor:pointer;}.cke_skin_v2 .cke_browser_ie6 .cke_tpl_list a:active,.cke_skin_v2 .cke_browser_ie6 .cke_tpl_list a:hover,.cke_skin_v2 .cke_browser_ie6 .cke_tpl_list a:focus{background-position:0 0;}.cke_skin_v2 .cke_tpl_list a:active .cke_tpl_item,.cke_skin_v2 .cke_tpl_list a:hover .cke_tpl_item,.cke_skin_v2 .cke_tpl_list a:focus .cke_tpl_item{border-width:3px;}.cke_skin_v2 .cke_tpl_empty,.cke_tpl_loading{text-align:center;padding:5px;} ��������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/dialog.css�����������������������������������0000664�0001750�0001750�00000035733�12262650742�023516� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ body .cke_dialog{visibility:visible;}.cke_skin_v2 table.cke_dialog.cke_browser_gecko{display:block;}.cke_skin_v2 .cke_dialog_body{margin-left:16px;margin-right:16px;margin-top:2px;margin-bottom:20px;z-index:1;_position:static;}.cke_skin_v2 .cke_dialog_tl,.cke_skin_v2 .cke_dialog_tr,.cke_skin_v2 .cke_dialog_tc,.cke_skin_v2 .cke_dialog_bl,.cke_skin_v2 .cke_dialog_br,.cke_skin_v2 .cke_dialog_bc{background-image:url(images/sprites.png);background-repeat:no-repeat;position:absolute;_background-image:url(images/sprites_ie6.png);z-index:-1;}.cke_skin_v2 .cke_dialog_tl{background-position:-16px -16px;height:16px;width:16px;top:0;left:0;}.cke_skin_v2 .cke_rtl .cke_dialog_tl{background-position:-16px -397px;}.cke_skin_v2 .cke_dialog_tr{background-position:-16px -76px;height:16px;width:16px;top:0;right:0;}.cke_skin_v2 .cke_rtl .cke_dialog_tr{background-position:-16px -457px;}.cke_skin_v2 .cke_dialog_tc{background-position:0 -136px;background-repeat:repeat-x;height:16px;top:0;left:16px;right:16px;}.cke_skin_v2 .cke_dialog_bl{background-position:-16px -196px;height:51px;width:30px;bottom:0;left:0;}.cke_skin_v2 .cke_rtl .cke_dialog_bl{background-position:-16px -517px;}.cke_skin_v2 .cke_dialog_br{background-position:-16px -263px;height:51px;width:30px;bottom:0;right:0;}.cke_skin_v2 .cke_rtl .cke_dialog_br{background-position:-16px -584px;}.cke_skin_v2 .cke_dialog_bc{background-position:0 -330px;background-repeat:repeat-x;height:51px;bottom:0;left:30px;right:30px;}.cke_skin_v2 .cke_dialog_ml,.cke_skin_v2 .cke_dialog_mr{background-image:url(images/dialog_sides.png);background-repeat:repeat-y;position:absolute;width:16px;top:16px;bottom:51px;_background-image:url(images/dialog_sides.gif);_top:auto;}.cke_skin_v2 .cke_rtl .cke_dialog_ml,.cke_skin_v2 .cke_rtl .cke_dialog_mr{background-image:url(images/dialog_sides_rtl.png);_background-image:url(images/dialog_sides.gif);}.cke_skin_v2 .cke_dialog_ml{background-position:0 0;left:0;}.cke_skin_v2 .cke_dialog_mr{background-position:-16px 0;right:0;}.cke_skin_v2 .cke_browser_iequirks .cke_dialog_ml,.cke_skin_v2 .cke_browser_iequirks .cke_dialog_mr{margin-top:3px;}.cke_skin_v2 .cke_dialog_title{font-weight:bold;font-size:14pt;color:#737357;background-color:#e3e3c7;padding:3px 10px 26px 10px;cursor:move;position:relative;}.cke_skin_v2 .cke_browser_ie.cke_rtl .cke_dialog_title{position:static;}.cke_skin_v2 .cke_dialog_contents{background-color:#f1f1e3;border:#d5d59d 1px solid;overflow:auto;padding:5px 10px;}.cke_skin_v2 .cke_dialog_footer{background-color:#e3e3c7;text-align:right;}.cke_skin_v2 .cke_rtl .cke_dialog_footer{text-align:left;}.cke_skin_v2 .cke_dialog_footer .cke_resizer{margin-top:21px;}.cke_skin_v2 .cke_dialog_tabs{height:23px;background-color:#e3e3c7;display:inline-block;margin-left:10px;margin-right:10px;margin-top:-23px;position:absolute;z-index:2;}.cke_skin_v2 .cke_rtl .cke_dialog_tabs{right:10px;}.cke_skin_v2 a.cke_dialog_tab,.cke_skin_v2 a:link.cke_dialog_tab,.cke_skin_v2 a:active.cke_dialog_tab,.cke_skin_v2 a:hover.cke_dialog_tab,.cke_skin_v2 a:visited.cke_dialog_tab{color:#737357;border-left:1px solid #d5d59d;border-right:1px solid #d5d59d;border-top:1px solid #d5d59d;height:14px;padding:4px 5px;display:inline-block;cursor:pointer;}.cke_skin_v2 .cke_browser_gecko18 a.cke_dialog_tab,.cke_skin_v2 .cke_browser_gecko18 a:link.cke_dialog_tab,.cke_skin_v2 .cke_browser_gecko18 a:active.cke_dialog_tab,.cke_skin_v2 .cke_browser_gecko18 a:hover.cke_dialog_tab,.cke_skin_v2 .cke_browser_gecko18 a:visited.cke_dialog_tab{display:inline;position:relative;top:6px;}.cke_skin_v2 a:hover.cke_dialog_tab{background-color:#f1f1e3;}.cke_skin_v2 .cke_hc a:hover.cke_dialog_tab{padding:2px 3px!important;border-width:3px;}.cke_skin_v2 a.cke_dialog_tab_selected,.cke_skin_v2 a:link.cke_dialog_tab_selected,.cke_skin_v2 a:active.cke_dialog_tab_selected,.cke_skin_v2 a:hover.cke_dialog_tab_selected,.cke_skin_v2 a:visited.cke_dialog_tab_selected{border-bottom:1px solid #f1f1e3;background-color:#f1f1e3;font-weight:bold;cursor:default;}.cke_skin_v2 .cke_hc a.cke_dialog_tab_selected,.cke_skin_v2 .cke_hc a:link.cke_dialog_tab_selected,.cke_skin_v2 .cke_hc a:active.cke_dialog_tab_selected,.cke_skin_v2 .cke_hc a:hover.cke_dialog_tab_selected,.cke_skin_v2 .cke_hc a:visited.cke_dialog_tab_selected{padding:2px 3px!important;border-width:3px;} .cke_skin_v2 .cke_hc .cke_dialog_tabs a,.cke_skin_v2 .cke_hc .cke_dialog_footer a{opacity:1.0;filter:alpha(opacity=100);border:1px solid white;}.cke_skin_v2 .cke_single_page .cke_dialog_tabs{display:none;}.cke_skin_v2 .cke_single_page .cke_dialog_title{padding-bottom:3px;}.cke_skin_v2 .cke_dialog_ui_vbox table,.cke_skin_v2 .cke_dialog_ui_hbox table{margin:auto;}.cke_skin_v2 .cke_dialog_ui_vbox_child{padding:5px 0;}.cke_skin_v2 input.cke_dialog_ui_input_text,.cke_skin_v2 input.cke_dialog_ui_input_password{background-color:white;border:none;padding:0;width:100%;height:14px;}.cke_skin_v2 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_text,.cke_skin_v2 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_password{border-width:0;}.cke_skin_v2 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_text,.cke_skin_v2 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_password{border-width:1px;}.cke_skin_v2 .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_text,.cke_skin_v2 .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_text,.cke_skin_v2 .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_password,.cke_skin_v2 .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px;}.cke_skin_v2 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text,.cke_skin_v2 .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_text,.cke_skin_v2 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_password,.cke_skin_v2 .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px;}.cke_skin_v2 .cke_browser_ie.cke_rtl .cke_dialog_ui_vbox_child,.cke_skin_v2 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_child,.cke_skin_v2 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_first,.cke_skin_v2 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important;}.cke_skin_v2 div.cke_dialog_ui_input_text,.cke_skin_v2 div.cke_dialog_ui_input_password{background-color:white;border:1px solid #a0a0a0;padding:1px 0;_width:99.9%;}.cke_skin_v2 .cke_browser_ie7 input.cke_dialog_ui_input_text,.cke_skin_v2 .cke_browser_ie7 input.cke_dialog_ui_input_password{position:absolute;}.cke_skin_v2 .cke_browser_ie7 div.cke_dialog_ui_input_text,.cke_skin_v2 .cke_browser_ie7 div.cke_dialog_ui_input_password{height:14px;position:relative;}.cke_skin_v2 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px;}.cke_skin_v2 textarea.cke_dialog_ui_input_textarea{background-color:white;border:none;padding:0;width:100%;_width:99%;overflow:auto;resize:none;}.cke_skin_v2 div.cke_dialog_ui_input_textarea{background-color:white;border:1px solid #a0a0a0;padding:1px 0;}.cke_skin_v2 .cke_rtl .cke_dialog_ui_labeled_content{_width:95%;}.cke_skin_v2 div.cke_disabled .cke_dialog_ui_labeled_content *{background-color:#a0a0a0;cursor:default;}.cke_skin_v2 .cke_dialog_ui_hbox{width:100%;}.cke_skin_v2 .cke_dialog_ui_hbox_first,.cke_skin_v2 .cke_dialog_ui_hbox_child,.cke_skin_v2 .cke_dialog_ui_hbox_last{vertical-align:top;}.cke_skin_v2 .cke_ltr .cke_dialog_ui_hbox_first,.cke_skin_v2 .cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px;}.cke_skin_v2 .cke_rtl .cke_dialog_ui_hbox_first,.cke_skin_v2 .cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px;}.cke_skin_v2 a.cke_dialog_ui_button{border-collapse:separate;cursor:default;}.cke_skin_v2 a.cke_dialog_ui_button_ok span,.cke_skin_v2 a.cke_dialog_ui_button_cancel span{width:60px;}.cke_skin_v2 span.cke_dialog_ui_button{border:#737357 1px solid;padding:2px 10px;text-align:center;color:#3b3b1f;background-color:#c7c78f;display:inline-block;cursor:default;}.cke_skin_v2 .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button{display:block;}.cke_skin_v2 a.cke_dialog_ui_button span.cke_disabled{border:#898980 1px solid;color:#5e5e55;background-color:#c5c5b3;}.cke_skin_v2 a:focus span.cke_dialog_ui_button,.cke_skin_v2 a:active span.cke_dialog_ui_button{background-color:#e3e3c7;}.cke_skin_v2 .cke_hc a:focus span.cke_dialog_ui_button,.cke_skin_v2 .cke_hc a:active span.cke_dialog_ui_button{border-width:2px;}.cke_skin_v2 .cke_dialog_footer_buttons{display:inline-table;margin-right:12px;margin-left:12px;width:auto;position:relative;} .cke_skin_v2 .cke_browser_gecko18 .cke_dialog_footer_buttons{display:inline;}.cke_skin_v2 .cke_dialog_footer_buttons span.cke_dialog_ui_button{margin:7px 0;}.cke_skin_v2 .cke_browser_ie7 .cke_dialog_footer_buttons{position:static;}.cke_skin_v2 strong{font-weight:bold;}.cke_skin_v2 a.cke_dialog_close_button,.cke_skin_v2 a:hover.cke_dialog_close_button,.cke_skin_v2 .cke_browser_ie6 a.cke_dialog_close_button,.cke_skin_v2 .cke_browser_ie6 a:hover.cke_dialog_close_button{background-image:url(images/sprites.png);background-repeat:no-repeat;background-position:-16px -651px;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;_background-image:url(images/sprites_ie6.png);}.cke_skin_v2 a.cke_dialog_close_button span{display:none;}.cke_skin_v2 a:hover.cke_dialog_close_button{background-position:-16px -687px;}.cke_skin_v2 .cke_ltr a.cke_dialog_close_button,.cke_skin_v2 .cke_ltr a:hover.cke_dialog_close_button{right:22px;}.cke_skin_v2 .cke_rtl a.cke_dialog_close_button,.cke_skin_v2 .cke_rtl a:hover.cke_dialog_close_button{left:16px;_top:7px;}.cke_skin_v2 .cke_browser_ie6.cke_rtl a.cke_dialog_close_button,.cke_skin_v2 .cke_browser_ie6.cke_rtl a:hover.cke_dialog_close_button{position:relative;float:left;margin-top:-55px;margin-left:-7px;}.cke_skin_v2 .cke_browser_iequirks.cke_rtl.cke_single_page a.cke_dialog_close_button,.cke_skin_v2 .cke_browser_iequirks.cke_rtl.cke_single_page a:hover.cke_dialog_close_button{margin-top:-32px;}.cke_skin_v2 .cke_browser_iequirks.cke_ltr a.cke_dialog_close_button,.cke_skin_v2 .cke_browser_iequirks.cke_ltr a:hover.cke_dialog_close_button{margin-top:0;}.cke_skin_v2 .cke_dialog_ui_input_select{border:1px solid #a0a0a0;background-color:white;}.cke_skin_v2 .cke_dialog_ui_input_file{width:100%;height:25px;}.cke_skin_v2 .cke_dialog .cke_dark_background{background-color:#eaead1;}.cke_skin_v2 .cke_dialog .cke_hand{cursor:pointer;}.cke_skin_v2 .cke_dialog .cke_centered{text-align:center;}.cke_skin_v2 .cke_dialog a.cke_btn_reset{float:right;background-position:0 -32px;background-image:url(images/mini.gif);width:16px;height:16px;background-repeat:no-repeat;border:1px none;font-size:1px;}.cke_skin_v2 .cke_rtl .cke_dialog a.cke_btn_reset{float:left;}.cke_skin_v2 .cke_dialog a.cke_btn_locked,.cke_skin_v2 .cke_dialog a.cke_btn_unlocked{float:left;background-position:0 0;background-image:url(images/mini.gif);width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px;}.cke_skin_v2 .cke_dialog a.cke_btn_locked .cke_icon{display:none;}.cke_skin_v2 .cke_rtl .cke_dialog a.cke_btn_locked,.cke_skin_v2 .cke_rtl .cke_dialog a.cke_btn_unlocked{float:right;}.cke_skin_v2 .cke_dialog a.cke_btn_unlocked{background-position:0 -16px;background-image:url(images/mini.gif);}.cke_skin_v2 .cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer;}.cke_skin_v2 .cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:210px;width:230px;padding:2px;background-color:white;}.cke_skin_v2 .cke_dialog .ImagePreviewBox table td{white-space:normal;}.cke_skin_v2 .cke_browser_iequirks .cke_dialog_page_contents{_position:absolute;}.cke_skin_v2 .cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity=90);background-color:#e4e4e4;}.cke_skin_v2 .cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white;}.cke_skin_v2 .cke_dialog .cke_pastetext{width:346px;height:170px;}.cke_skin_v2 .cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none;}.cke_skin_v2 .cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid black;}.cke_skin_v2 .cke_dialog .cke_dark_background{text-align:center;background-color:#eaead1;font-size:14px;}.cke_skin_v2 .cke_dialog .cke_light_background{text-align:center;background-color:#ffffbe;}.cke_skin_v2 .cke_dialog .cke_hand{cursor:pointer;}.cke_skin_v2 .cke_disabled{color:#a0a0a0;}.cke_skin_v2 .cke_hc .cke_dialog_title,.cke_skin_v2 .cke_hc .cke_dialog_tabs,.cke_skin_v2 .cke_hc .cke_dialog_contents,.cke_skin_v2 .cke_hc .cke_dialog_footer{border-left:1px solid;border-right:1px solid;} .cke_skin_v2 .cke_hc .cke_dialog_title{border-top:1px solid;}.cke_skin_v2 .cke_hc .cke_dialog_footer{border-bottom:1px solid;}.cke_skin_v2 .cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px;}.cke_skin_v2 .cke_dialog_body .cke_label{display:none;}.cke_skin_v2 .cke_dialog_body label.cke_required{font-weight:bold;}.cke_skin_v2 .cke_hc .cke_dialog_body .cke_label{display:inline;cursor:inherit;}.cke_skin_v2 .cke_hc a.cke_btn_locked,.cke_skin_v2 .cke_hc a.cke_btn_unlocked,.cke_skin_v2 .cke_hc a.cke_btn_reset{border-style:solid;float:left;width:auto;height:auto;padding:0 2px;}.cke_skin_v2 .cke_hc a.cke_btn_locked .cke_icon{display:inline;}.cke_skin_v2 .cke_rtl.cke_hc a.cke_btn_locked,.cke_skin_v2 .cke_rtl.cke_hc a.cke_btn_unlocked,.cke_skin_v2 .cke_rtl.cke_hc a.cke_btn_reset{float:right;}.cke_skin_v2 a.cke_smile img{border:2px solid #eaead1;}.cke_skin_v2 a.cke_smile:focus img,.cke_skin_v2 a.cke_smile:active img,.cke_skin_v2 a.cke_smile:hover img{border-color:#C7C78F;}.cke_skin_v2 .cke_dialog_contents a.colorChooser{display:block;margin-top:12px;margin-left:10px;width:40px;}.cke_skin_v2 .cke_dialog_contents a.colorChooser .cke_dialog_ui_button{width:100%;}.cke_skin_v2 .cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px;}.cke_skin_v2 .cke_browser_gecko .cke_dialog_ui_checkbox_input:focus,.cke_skin_v2 .cke_browser_gecko .cke_dialog_ui_radio_input:focus,.cke_skin_v2 .cke_browser_opera .cke_dialog_ui_checkbox_input:focus,.cke_skin_v2 .cke_browser_opera .cke_dialog_ui_radio_input:focus,.cke_skin_v2 .cke_browser_gecko .cke_dialog_ui_input_select:focus,.cke_skin_v2 .cke_browser_gecko .cke_btn_over,.cke_skin_v2 .cke_browser_opera .cke_btn_over,.cke_skin_v2 .cke_browser_ie .cke_btn_over{outline:1px dotted #696969;}.cke_skin_v2 .cke_browser_ie .cke_dialog_ui_checkbox_input,.cke_skin_v2 .cke_browser_ie .cke_dialog_ui_ratio_input,.cke_skin_v2 .cke_browser_ie .cke_btn_reset,.cke_skin_v2 .cke_browser_ie .cke_btn_locked,.cke_skin_v2 .cke_browser_ie .cke_btn_unlocked{*border:1px solid transparent!important;-border:1px solid red!important;-filter:chroma(color=red);}.cke_skin_v2 .cke_browser_ie .cke_dialog_ui_focused,.cke_skin_v2 .cke_browser_ie .cke_btn_over{*border:1px dotted #696969!important;}.cke_skin_v2 .cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity=0);width:100%;height:100%;}.cke_dialog label{display:inline;margin-bottom:auto;cursor:default;} �������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/skin.js��������������������������������������0000664�0001750�0001750�00000001660�12262650742�023037� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.skins.add('v2',(function(){return{editor:{css:['editor.css']},dialog:{css:['dialog.css']},separator:{canGroup:false},templates:{css:['templates.css']},margins:[0,14,18,14]};})());(function(){CKEDITOR.dialog?a():CKEDITOR.on('dialogPluginReady',a);function a(){CKEDITOR.dialog.on('resize',function(b){var c=b.data,d=c.width,e=c.height,f=c.dialog,g=f.parts.contents;if(c.skin!='v2')return;g.setStyles({width:d+'px',height:e+'px'});if(!CKEDITOR.env.ie||CKEDITOR.env.ie9Compat)return;setTimeout(function(){var h=f.parts.dialog.getChild([0,0,0]),i=h.getChild(0),j=i.getSize('width');e+=i.getChild(0).getSize('height')+1;var k=h.getChild(2);k.setSize('width',j);k=h.getChild(7);k.setSize('width',j-28);k=h.getChild(4);k.setSize('height',e);k=h.getChild(5);k.setSize('height',e);},100);});};})(); ��������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/skins/v2/icons.png������������������������������������0000664�0001750�0001750�00000012736�12262650742�023364� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR����������� pHYs�� �� ���� cHRM��z%��������u0��`��:��o_F���PLTE���CC�M>>+00Sb333 88 �7,�"(+TW'3S%FFg[$:BBUȹ�XQ}&iܯkn?Bwq酈5{g^4q 'E;;��ҹ?@Oqph ^+$�Oe>>ixN.JJT`vWORCxeܺWD E٧H8�38ǺQ^225ML3LL!]DS xxw˛1JO)HE6AG1LH!DDrrrzg>NjRwxq� <J@,%O>PP�993*`"BD7== C<@9$EE@QQ q#t1 m�"_1KK#DI'GG 77ptylVXX]mwlAAF[�NEshhhښ7غUxxx럟<?ʠX1h;OOdr>O[/;C~~}�33[B#Gir|֤X$EGL.KF Lѐ<<6x6S~=ѧ���tRNS�@f��KIDATx{י_!Um, ;l ƀ8rr1IIH&mvn۽zw{c39-[F2` N1&.nns3#Y0Ͼg=:h.ȴjX,�&omT*JBA* ƺA2$mmmCQEQ>[):0nkk9p8LA,+� ,,[:eT"BA"H$#CTL E:lGh!AFQoooooK�B٢0�t zMVie˖qc>[D"`Ř `0 }ƆZƀ�aznpLu=&D"6 h�=m�zMC6IA ֆE@bWO;X; CvI;I[�AQno>9:C'?h9/'rCz[opDk@8'D 8>a_a8a_*2׎1[19$ֆ1%("cC*8 R Ɔ>`0t)@$D"L Ĥb6EN>?ޙ3gZ[[i LV4MS>ǎϝ9}i" Ι&„Bp̱s?7ۥ"3vIislo # �|ڊX>@,appk>Z[[%p3U;c____wxs>79~??22r|~w=Nw_C=vaİ|:n>-wZ[||ĩxK\0[Dp뺮�c Ðc JF r E!D*|cIw6kÎd"S4�MS4�MQ�S:A@-�hQp�MMSN ��:5E:5 4M"&M!⫝boG"v%`+́u:RѬNM~3M鴶+iV2:YES��hY-³ioG'x_E4g4tj([~4FE9-">zZNۙs�W& �a@O��t �tPa}+ܵB-La} ``)B ge` aL9!�!8!b Bv@:!�"źxEtm5]/^S"lg8d^2{% =nx `h/1q]5P4?TP(A E(A'|bC!TE!DDlJDۜ/YK͗��R)R ̗6E)gԔARSR0pf5%O9cuZ ;|p \cHe<Y<qxoؖ8-<R7<1�x56Qa=}>x<1xc>�9cMgT QF;xKEX %iidd"'(Ng�H3 C1ˠ&h:}KAQt&|Q{N (̲ Lm64M2QR0Qvg|ʇ(Q(M\U7KLqĘ̬7K<bZ~{hn݂+_(e_BA7�2*:�XH7˖]fMA2 @ � �]d |@ yϗL�8ad�ɤ|>/yL&#E">�|>ɇ3"[�7-@�cpn!L|n7K$|n7K��OCoظ8@7>'��NcpP׿O?թbA] 94u= F(t bmܸ`Ѡ �6> 2 7,`6<<<<<,++++񚾾 *++++K-y��~d{S�`xW˗/Z�p{.�qw[~� 5k}uʕwڵ^r� ./////m۶�[mݶ- �@ N+(Yܪ* VUUUQ\hKw++ (7z�pEUUUkw)+VS;w<Q#^çkj('~zEM1xCᎭ<QLjjaqqq76N0Kg\Tb)hK1cccS28066f+b1g h)2$S� )ͨ̀] ̯nX vL "KaPӳunzWFGd-+,{D"޲J cz1^K <W"N׻h"֊^׻>ҥK�^o�o}}-|�Xdw͞y,W$ _gXlBpZ]q ?~ɇ uݴ࣒ڧ�yNG:oϟwTq~t>Ԑf|F9ny�yv1+V1LbeEeEE"F��6/.*+**b~ū6/.+bh͋O"Zky"i71ϭ$�VrW?nݺup?7MS�\�e֭W`{ �6svٲepmg)= {]F <[rJ<6�?JozTzxgvkܔ^wpMC?'I3ogy6ӍT2o޼yMf}=׀Hm"՗,!~bD7RO'2b!/Z 1ttV lm$_ 0[Hcl C�C;2' ݏxWAxYBg8k�"! -@0&K�LT/z4&�߭`.ׇJKW~گUK$T1Hҵ6(R^تE?7=3#b3n*qIAB9@)!"w֓)M4L"~Ic0&—8  nD5qi$=@10 UkVLalJC`Ҁ/q`/%/H\MPicLa H=ƘT)@T�kuwYKٜʙ&#`d&+Lsj8d!g-P:ZB!@(y ��D uu! jO2PWWWW[R_�]CO> ��`l7Y!#��%1 cH�;1_`:=�wTTX׿nUp�7Z;9�S�~tц S{z**�0jthpS=�P[^}*ڭct=A/׎nF�&JpEhUpT�0A1v^w�Kd՟nJ@tKd}OWU2:} >t n OI#grq,m%.TUUU9p9rUv]qNkq\jG> �y(Y _aCUUu TL%rǜCwCYDw둏q:-cyk]?pTyu}DHli:`\bme%.g'!`F&nk>/k&U5> ptTbe]앟"�}܃ Whx4(TZ(*)�\\8jg\e~^9{ ;`Ħ�v! x˕ bą'F+Q\]cs9}xqrG<knN\`6Z{epcJ�5}Z0æOJMd&[ߺjwwwm<`lX @<qiNa('t�ƓbAr,u]׻%x^$8I~Q=~/Zi X,S+[bEQfdb}�g(k6έ-_R1q1dnoKOqWο;יaf~t8|97OXzA3(}KkgxLTy٠fӟQ% ?9e{r̄,][;W>L|j̙a磹.on~pC=ǚ455upe}s!*?r~<ͯ�_r?T��{jnn>o:|�`=͍{��`|_46_+Z{Omh/_%s_iO<4pk_ݽ{n��;B ����IENDB`����������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/�������������������������������������������������0000775�0001750�0001750�00000000000�12262650742�020775� 5����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/fi.js��������������������������������������������0000664�0001750�0001750�00000044357�12262650742�021746� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.fi={dir:'ltr',editorTitle:'Rikastekstieditori, %1',editorHelp:'Paina ALT 0 nähdäksesi ohjeen',toolbars:'Editorin työkalupalkit',editor:'Rikastekstieditori',source:'Koodi',newPage:'Tyhjennä',save:'Tallenna',preview:'Esikatsele',cut:'Leikkaa',copy:'Kopioi',paste:'Liitä',print:'Tulosta',underline:'Alleviivattu',bold:'Lihavoitu',italic:'Kursivoitu',selectAll:'Valitse kaikki',removeFormat:'Poista muotoilu',strike:'Yliviivattu',subscript:'Alaindeksi',superscript:'Yläindeksi',horizontalrule:'Lisää murtoviiva',pagebreak:'Lisää sivunvaihto',pagebreakAlt:'Sivunvaihto',unlink:'Poista linkki',undo:'Kumoa',redo:'Toista',common:{browseServer:'Selaa palvelinta',url:'Osoite',protocol:'Protokolla',upload:'Lisää tiedosto',uploadSubmit:'Lähetä palvelimelle',image:'Kuva',flash:'Flash-animaatio',form:'Lomake',checkbox:'Valintaruutu',radio:'Radiopainike',textField:'Tekstikenttä',textarea:'Tekstilaatikko',hiddenField:'Piilokenttä',button:'Painike',select:'Valintakenttä',imageButton:'Kuvapainike',notSet:'<ei asetettu>',id:'Tunniste',name:'Nimi',langDir:'Kielen suunta',langDirLtr:'Vasemmalta oikealle (LTR)',langDirRtl:'Oikealta vasemmalle (RTL)',langCode:'Kielikoodi',longDescr:'Pitkän kuvauksen URL',cssClass:'Tyyliluokat',advisoryTitle:'Avustava otsikko',cssStyle:'Tyyli',ok:'OK',cancel:'Peruuta',close:'Sulje',preview:'Esikatselu',generalTab:'Yleinen',advancedTab:'Lisäominaisuudet',validateNumberFailed:'Arvon pitää olla numero.',confirmNewPage:'Kaikki tallentamattomat muutokset tähän sisältöön menetetään. Oletko varma, että haluat ladata uuden sivun?',confirmCancel:'Jotkut asetuksista on muuttuneet. Oletko varma, että haluat sulkea valintaikkunan?',options:'Asetukset',target:'Kohde',targetNew:'Uusi ikkuna (_blank)',targetTop:'Päällimmäinen ikkuna (_top)',targetSelf:'Sama ikkuna (_self)',targetParent:'Ylemmän tason ikkuna (_parent)',langDirLTR:'Vasemmalta oikealle (LTR)',langDirRTL:'Oikealta vasemmalle (RTL)',styles:'Tyyli',cssClasses:'Tyylitiedoston luokat',width:'Leveys',height:'Korkeus',align:'Kohdistus',alignLeft:'Vasemmalle',alignRight:'Oikealle',alignCenter:'Keskelle',alignTop:'Ylös',alignMiddle:'Keskelle',alignBottom:'Alas',invalidValue:'Virheellinen arvo.',invalidHeight:'Korkeuden täytyy olla numero.',invalidWidth:'Leveyden täytyy olla numero.',invalidCssLength:'Kentän "%1" arvon täytyy olla positiivinen luku CSS mittayksikön (px, %, in, cm, mm, em, ex, pt tai pc) kanssa tai ilman.',invalidHtmlLength:'Kentän "%1" arvon täytyy olla positiivinen luku HTML mittayksikön (px tai %) kanssa tai ilman.',invalidInlineStyle:'Tyylille annetun arvon täytyy koostua yhdestä tai useammasta "nimi : arvo" parista, jotka ovat eroteltuna toisistaan puolipisteillä.',cssLengthTooltip:'Anna numeroarvo pikseleinä tai numeroarvo CSS mittayksikön kanssa (px, %, in, cm, mm, em, ex, pt, tai pc).',unavailable:'%1<span class="cke_accessibility">, ei saatavissa</span>'},contextmenu:{options:'Pikavalikon ominaisuudet'},specialChar:{toolbar:'Lisää erikoismerkki',title:'Valitse erikoismerkki',options:'Erikoismerkin ominaisuudet'},link:{toolbar:'Lisää linkki/muokkaa linkkiä',other:'<muu>',menu:'Muokkaa linkkiä',title:'Linkki',info:'Linkin tiedot',target:'Kohde',upload:'Lisää tiedosto',advanced:'Lisäominaisuudet',type:'Linkkityyppi',toUrl:'Osoite',toAnchor:'Ankkuri tässä sivussa',toEmail:'Sähköposti',targetFrame:'<kehys>',targetPopup:'<popup ikkuna>',targetFrameName:'Kohdekehyksen nimi',targetPopupName:'Popup ikkunan nimi',popupFeatures:'Popup ikkunan ominaisuudet',popupResizable:'Venytettävä',popupStatusBar:'Tilarivi',popupLocationBar:'Osoiterivi',popupToolbar:'Vakiopainikkeet',popupMenuBar:'Valikkorivi',popupFullScreen:'Täysi ikkuna (IE)',popupScrollBars:'Vierityspalkit',popupDependent:'Riippuva (Netscape)',popupLeft:'Vasemmalta (px)',popupTop:'Ylhäältä (px)',id:'Tunniste',langDir:'Kielen suunta',langDirLTR:'Vasemmalta oikealle (LTR)',langDirRTL:'Oikealta vasemmalle (RTL)',acccessKey:'Pikanäppäin',name:'Nimi',langCode:'Kielen suunta',tabIndex:'Tabulaattori indeksi',advisoryTitle:'Avustava otsikko',advisoryContentType:'Avustava sisällön tyyppi',cssClasses:'Tyyliluokat',charset:'Linkitetty kirjaimisto',styles:'Tyyli',rel:'Suhde',selectAnchor:'Valitse ankkuri',anchorName:'Ankkurin nimen mukaan',anchorId:'Ankkurin ID:n mukaan',emailAddress:'Sähköpostiosoite',emailSubject:'Aihe',emailBody:'Viesti',noAnchors:'(Ei ankkureita tässä dokumentissa)',noUrl:'Linkille on kirjoitettava URL',noEmail:'Kirjoita sähköpostiosoite'},anchor:{toolbar:'Lisää ankkuri/muokkaa ankkuria',menu:'Ankkurin ominaisuudet',title:'Ankkurin ominaisuudet',name:'Nimi',errorName:'Ankkurille on kirjoitettava nimi',remove:'Poista ankkuri'},list:{numberedTitle:'Numeroidun listan ominaisuudet',bulletedTitle:'Numeroimattoman listan ominaisuudet',type:'Tyyppi',start:'Alku',validateStartNumber:'Listan ensimmäisen numeron tulee olla kokonaisluku.',circle:'Ympyrä',disc:'Levy',square:'Neliö',none:'Ei mikään',notset:'<ei asetettu>',armenian:'Armeenialainen numerointi',georgian:'Georgialainen numerointi (an, ban, gan, etc.)',lowerRoman:'Pienet roomalaiset (i, ii, iii, iv, v, jne.)',upperRoman:'Isot roomalaiset (I, II, III, IV, V, jne.)',lowerAlpha:'Pienet aakkoset (a, b, c, d, e, jne.)',upperAlpha:'Isot aakkoset (A, B, C, D, E, jne.)',lowerGreek:'Pienet kreikkalaiset (alpha, beta, gamma, jne.)',decimal:'Desimaalit (1, 2, 3, jne.)',decimalLeadingZero:'Desimaalit, alussa nolla (01, 02, 03, jne.)'},findAndReplace:{title:'Etsi ja korvaa',find:'Etsi',replace:'Korvaa',findWhat:'Etsi mitä:',replaceWith:'Korvaa tällä:',notFoundMsg:'Etsittyä tekstiä ei löytynyt.',findOptions:'Hakuasetukset',matchCase:'Sama kirjainkoko',matchWord:'Koko sana',matchCyclic:'Kierrä ympäri',replaceAll:'Korvaa kaikki',replaceSuccessMsg:'%1 esiintymä(ä) korvattu.'},table:{toolbar:'Taulu',title:'Taulun ominaisuudet',menu:'Taulun ominaisuudet',deleteTable:'Poista taulu',rows:'Rivit',columns:'Sarakkeet',border:'Rajan paksuus',widthPx:'pikseliä',widthPc:'prosenttia',widthUnit:'leveysyksikkö',cellSpace:'Solujen väli',cellPad:'Solujen sisennys',caption:'Otsikko',summary:'Yhteenveto',headers:'Ylätunnisteet',headersNone:'Ei',headersColumn:'Ensimmäinen sarake',headersRow:'Ensimmäinen rivi',headersBoth:'Molemmat',invalidRows:'Rivien määrän täytyy olla suurempi kuin 0.',invalidCols:'Sarakkeiden määrän täytyy olla suurempi kuin 0.',invalidBorder:'Reunan koon täytyy olla numero.',invalidWidth:'Taulun leveyden täytyy olla numero.',invalidHeight:'Taulun korkeuden täytyy olla numero.',invalidCellSpacing:'Solujen välin täytyy olla numero.',invalidCellPadding:'Solujen sisennyksen täytyy olla numero.',cell:{menu:'Solu',insertBefore:'Lisää solu eteen',insertAfter:'Lisää solu perään',deleteCell:'Poista solut',merge:'Yhdistä solut',mergeRight:'Yhdistä oikealla olevan kanssa',mergeDown:'Yhdistä alla olevan kanssa',splitHorizontal:'Jaa solu vaakasuunnassa',splitVertical:'Jaa solu pystysuunnassa',title:'Solun ominaisuudet',cellType:'Solun tyyppi',rowSpan:'Rivin jatkuvuus',colSpan:'Solun jatkuvuus',wordWrap:'Rivitys',hAlign:'Horisontaali kohdistus',vAlign:'Vertikaali kohdistus',alignBaseline:'Alas (teksti)',bgColor:'Taustan väri',borderColor:'Reunan väri',data:'Data',header:'Ylätunniste',yes:'Kyllä',no:'Ei',invalidWidth:'Solun leveyden täytyy olla numero.',invalidHeight:'Solun korkeuden täytyy olla numero.',invalidRowSpan:'Rivin jatkuvuuden täytyy olla kokonaisluku.',invalidColSpan:'Solun jatkuvuuden täytyy olla kokonaisluku.',chooseColor:'Valitse'},row:{menu:'Rivi',insertBefore:'Lisää rivi yläpuolelle',insertAfter:'Lisää rivi alapuolelle',deleteRow:'Poista rivit'},column:{menu:'Sarake',insertBefore:'Lisää sarake vasemmalle',insertAfter:'Lisää sarake oikealle',deleteColumn:'Poista sarakkeet'}},button:{title:'Painikkeen ominaisuudet',text:'Teksti (arvo)',type:'Tyyppi',typeBtn:'Painike',typeSbm:'Lähetä',typeRst:'Tyhjennä'},checkboxAndRadio:{checkboxTitle:'Valintaruudun ominaisuudet',radioTitle:'Radiopainikkeen ominaisuudet',value:'Arvo',selected:'Valittu'},form:{title:'Lomakkeen ominaisuudet',menu:'Lomakkeen ominaisuudet',action:'Toiminto',method:'Tapa',encoding:'Enkoodaus'},select:{title:'Valintakentän ominaisuudet',selectInfo:'Info',opAvail:'Ominaisuudet',value:'Arvo',size:'Koko',lines:'Rivit',chkMulti:'Salli usea valinta',opText:'Teksti',opValue:'Arvo',btnAdd:'Lisää',btnModify:'Muuta',btnUp:'Ylös',btnDown:'Alas',btnSetValue:'Aseta valituksi',btnDelete:'Poista'},textarea:{title:'Tekstilaatikon ominaisuudet',cols:'Sarakkeita',rows:'Rivejä'},textfield:{title:'Tekstikentän ominaisuudet',name:'Nimi',value:'Arvo',charWidth:'Leveys',maxChars:'Maksimi merkkimäärä',type:'Tyyppi',typeText:'Teksti',typePass:'Salasana'},hidden:{title:'Piilokentän ominaisuudet',name:'Nimi',value:'Arvo'},image:{title:'Kuvan ominaisuudet',titleButton:'Kuvapainikkeen ominaisuudet',menu:'Kuvan ominaisuudet',infoTab:'Kuvan tiedot',btnUpload:'Lähetä palvelimelle',upload:'Lisää kuva',alt:'Vaihtoehtoinen teksti',lockRatio:'Lukitse suhteet',resetSize:'Alkuperäinen koko',border:'Kehys',hSpace:'Vaakatila',vSpace:'Pystytila',alertUrl:'Kirjoita kuvan osoite (URL)',linkTab:'Linkki',button2Img:'Haluatko muuntaa valitun kuvanäppäimen kuvaksi?',img2Button:'Haluatko muuntaa valitun kuvan kuvanäppäimeksi?',urlMissing:'Kuvan lähdeosoite puuttuu.',validateBorder:'Kehyksen täytyy olla kokonaisluku.',validateHSpace:'HSpace-määrityksen täytyy olla kokonaisluku.',validateVSpace:'VSpace-määrityksen täytyy olla kokonaisluku.'},flash:{properties:'Flash-ominaisuudet',propertiesTab:'Ominaisuudet',title:'Flash ominaisuudet',chkPlay:'Automaattinen käynnistys',chkLoop:'Toisto',chkMenu:'Näytä Flash-valikko',chkFull:'Salli kokoruututila',scale:'Levitä',scaleAll:'Näytä kaikki',scaleNoBorder:'Ei rajaa',scaleFit:'Tarkka koko',access:'Skriptien pääsy',accessAlways:'Aina',accessSameDomain:'Sama verkkotunnus',accessNever:'Ei koskaan',alignAbsBottom:'Aivan alas',alignAbsMiddle:'Aivan keskelle',alignBaseline:'Alas (teksti)',alignTextTop:'Ylös (teksti)',quality:'Laatu',qualityBest:'Paras',qualityHigh:'Korkea',qualityAutoHigh:'Automaattinen korkea',qualityMedium:'Keskitaso',qualityAutoLow:'Automaattinen matala',qualityLow:'Matala',windowModeWindow:'Ikkuna',windowModeOpaque:'Läpinäkyvyys',windowModeTransparent:'Läpinäkyvä',windowMode:'Ikkuna tila',flashvars:'Muuttujat Flash:lle',bgcolor:'Taustaväri',hSpace:'Vaakatila',vSpace:'Pystytila',validateSrc:'Linkille on kirjoitettava URL',validateHSpace:'Vaakatilan täytyy olla numero.',validateVSpace:'Pystytilan täytyy olla numero.'},spellCheck:{toolbar:'Tarkista oikeinkirjoitus',title:'Oikoluku',notAvailable:'Valitettavasti oikoluku ei ole käytössä tällä hetkellä.',errorLoading:'Virhe ladattaessa oikolukupalvelua isännältä: %s.',notInDic:'Ei sanakirjassa',changeTo:'Vaihda',btnIgnore:'Jätä huomioimatta',btnIgnoreAll:'Jätä kaikki huomioimatta',btnReplace:'Korvaa',btnReplaceAll:'Korvaa kaikki',btnUndo:'Kumoa',noSuggestions:'Ei ehdotuksia',progress:'Tarkistus käynnissä...',noMispell:'Tarkistus valmis: Ei virheitä',noChanges:'Tarkistus valmis: Yhtään sanaa ei muutettu',oneChange:'Tarkistus valmis: Yksi sana muutettiin',manyChanges:'Tarkistus valmis: %1 sanaa muutettiin',ieSpellDownload:'Oikeinkirjoituksen tarkistusta ei ole asennettu. Haluatko ladata sen nyt?'},smiley:{toolbar:'Hymiö',title:'Lisää hymiö',options:'Hymiön ominaisuudet'},elementsPath:{eleLabel:'Elementin polku',eleTitle:'%1 elementti'},numberedlist:'Numerointi',bulletedlist:'Luottelomerkit',indent:'Suurenna sisennystä',outdent:'Pienennä sisennystä',justify:{left:'Tasaa vasemmat reunat',center:'Keskitä',right:'Tasaa oikeat reunat',block:'Tasaa molemmat reunat'},blockquote:'Lainaus',clipboard:{title:'Liitä',cutError:'Selaimesi turva-asetukset eivät salli editorin toteuttaa leikkaamista. Käytä näppäimistöä leikkaamiseen (Ctrl+X).',copyError:'Selaimesi turva-asetukset eivät salli editorin toteuttaa kopioimista. Käytä näppäimistöä kopioimiseen (Ctrl+C).',pasteMsg:'Liitä painamalla (<STRONG>Ctrl+V</STRONG>) ja painamalla <STRONG>OK</STRONG>.',securityMsg:'Selaimesi turva-asetukset eivät salli editorin käyttää leikepöytää suoraan. Sinun pitää suorittaa liittäminen tässä ikkunassa.',pasteArea:'Leikealue'},pastefromword:{confirmCleanup:'Liittämäsi teksti näyttäisi olevan Word-dokumentista. Haluatko siivota sen ennen liittämistä? (Suositus: Kyllä)',toolbar:'Liitä Word-dokumentista',title:'Liitä Word-dokumentista',error:'Liitetyn tiedon siivoaminen ei onnistunut sisäisen virheen takia'},pasteText:{button:'Liitä tekstinä',title:'Liitä tekstinä'},templates:{button:'Pohjat',title:'Sisältöpohjat',options:'Sisältöpohjan ominaisuudet',insertOption:'Korvaa editorin koko sisältö',selectPromptMsg:'Valitse pohja editoriin<br>(aiempi sisältö menetetään):',emptyListMsg:'(Ei määriteltyjä pohjia)'},showBlocks:'Näytä elementit',stylesCombo:{label:'Tyyli',panelTitle:'Muotoilujen tyylit',panelTitle1:'Lohkojen tyylit',panelTitle2:'Rivinsisäiset tyylit',panelTitle3:'Objektien tyylit'},format:{label:'Muotoilu',panelTitle:'Muotoilu',tag_p:'Normaali',tag_pre:'Muotoiltu',tag_address:'Osoite',tag_h1:'Otsikko 1',tag_h2:'Otsikko 2',tag_h3:'Otsikko 3',tag_h4:'Otsikko 4',tag_h5:'Otsikko 5',tag_h6:'Otsikko 6',tag_div:'Normaali (DIV)'},div:{title:'Luo div-kehikko',toolbar:'Luo div-kehikko',cssClassInputLabel:'Tyylitiedoston luokat',styleSelectLabel:'Tyyli',IdInputLabel:'Id',languageCodeInputLabel:' Kielen koodi',inlineStyleInputLabel:'Sisätyyli',advisoryTitleInputLabel:'Ohjeistava otsikko',langDirLabel:'Kielen suunta',langDirLTRLabel:'Vasemmalta oikealle (LTR)',langDirRTLLabel:'Oikealta vasemmalle (RTL)',edit:'Muokkaa Diviä',remove:'Poista Div'},iframe:{title:'IFrame-kehyksen ominaisuudet',toolbar:'IFrame-kehys',noUrl:'Anna IFrame-kehykselle lähdeosoite (src)',scrolling:'Näytä vierityspalkit',border:'Näytä kehyksen reunat'},font:{label:'Kirjaisinlaji',voiceLabel:'Kirjaisinlaji',panelTitle:'Kirjaisinlaji'},fontSize:{label:'Koko',voiceLabel:'Kirjaisimen koko',panelTitle:'Koko'},colorButton:{textColorTitle:'Tekstiväri',bgColorTitle:'Taustaväri',panelTitle:'Värit',auto:'Automaattinen',more:'Lisää värejä...'},colors:{'000':'Musta',800000:'Kastanjanruskea','8B4513':'Satulanruskea','2F4F4F':'Tumma liuskekivenharmaa','008080':'Sinivihreä','000080':'Laivastonsininen','4B0082':'Indigonsininen',696969:'Tummanharmaa',B22222:'Tiili',A52A2A:'Ruskea',DAA520:'Kultapiisku','006400':'Tummanvihreä','40E0D0':'Turkoosi','0000CD':'Keskisininen',800080:'Purppura',808080:'Harmaa',F00:'Punainen',FF8C00:'Tumma oranssi',FFD700:'Kulta','008000':'Vihreä','0FF':'Syaani','00F':'Sininen',EE82EE:'Violetti',A9A9A9:'Tummanharmaa',FFA07A:'Vaaleanlohenpunainen',FFA500:'Oranssi',FFFF00:'Keltainen','00FF00':'Limetin vihreä',AFEEEE:'Haalea turkoosi',ADD8E6:'Vaaleansininen',DDA0DD:'Luumu',D3D3D3:'Vaaleanharmaa',FFF0F5:'Laventelinpunainen',FAEBD7:'Antiikinvalkoinen',FFFFE0:'Vaaleankeltainen',F0FFF0:'Hunajameloni',F0FFFF:'Asurinsininen',F0F8FF:'Alice Blue -sininen',E6E6FA:'Lavanteli',FFF:'Valkoinen'},scayt:{title:'Oikolue kirjoitettaessa',opera_title:'Opera ei tue tätä ominaisuutta',enable:'Ota käyttöön oikoluku kirjoitettaessa',disable:'Poista käytöstä oikoluku kirjoitetaessa',about:'Tietoja oikoluvusta kirjoitetaessa',toggle:'Vaihda oikoluku kirjoittaessa tilaa',options:'Asetukset',langs:'Kielet',moreSuggestions:'Lisää ehdotuksia',ignore:'Ohita',ignoreAll:'Ohita kaikki',addWord:'Lisää sana',emptyDic:'Sanakirjan nimi on annettava.',noSuggestions:'Ei ehdotuksia',optionsTab:'Asetukset',allCaps:'Ohita sanat, jotka on kirjoitettu kokonaan isoilla kirjaimilla',ignoreDomainNames:'Ohita verkkotunnukset',mixedCase:'Ohita sanat, joissa on sekoitettu isoja ja pieniä kirjaimia',mixedWithDigits:'Ohita sanat, joissa on numeroita',languagesTab:'Kielet',dictionariesTab:'Sanakirjat',dic_field_name:'Sanakirjan nimi',dic_create:'Luo',dic_restore:'Palauta',dic_delete:'Poista',dic_rename:'Nimeä uudelleen',dic_info:'Oletuksena sanakirjat tallennetaan evästeeseen, mutta evästeiden koko on kuitenkin rajallinen. Sanakirjan kasvaessa niin suureksi, ettei se enää mahdu evästeeseen, sanakirja täytyy tallentaa palvelimellemme. Tallentaaksesi sanakirjasi palvelimellemme tulee sinun antaa sille nimi. Jos olet jo tallentanut sanakirjan, anna sen nimi ja klikkaa Palauta-painiketta',aboutTab:'Tietoa'},about:{title:'Tietoa CKEditorista',dlgTitle:'Tietoa CKEditorista',help:'Katso ohjeet: $1.',userGuide:'CKEditorin käyttäjäopas',moreInfo:'Lisenssitiedot löytyvät kotisivuiltamme:',copy:'Copyright © $1. Kaikki oikeuden pidätetään.'},maximize:'Suurenna',minimize:'Pienennä',fakeobjects:{anchor:'Ankkuri',flash:'Flash animaatio',iframe:'IFrame-kehys',hiddenfield:'Piilokenttä',unknown:'Tuntematon objekti'},resize:'Raahaa muuttaaksesi kokoa',colordialog:{title:'Valitse väri',options:'Värin ominaisuudet',highlight:'Korostus',selected:'Valittu',clear:'Poista'},toolbarCollapse:'Kutista työkalupalkki',toolbarExpand:'Laajenna työkalupalkki',toolbarGroups:{document:'Dokumentti',clipboard:'Leikepöytä/Kumoa',editing:'Muokkaus',forms:'Lomakkeet',basicstyles:'Perustyylit',paragraph:'Kappale',links:'Linkit',insert:'Lisää',styles:'Tyylit',colors:'Värit',tools:'Työkalut'},bidi:{ltr:'Tekstin suunta vasemmalta oikealle',rtl:'Tekstin suunta oikealta vasemmalle'},docprops:{label:'Dokumentin ominaisuudet',title:'Dokumentin ominaisuudet',design:'Sommittelu',meta:'Metatieto',chooseColor:'Valitse',other:'<muu>',docTitle:'Sivun nimi',charset:'Merkistökoodaus',charsetOther:'Muu merkistökoodaus',charsetASCII:'ASCII',charsetCE:'Keskieurooppalainen',charsetCT:'Kiina, perinteinen (Big5)',charsetCR:'Kyrillinen',charsetGR:'Kreikka',charsetJP:'Japani',charsetKR:'Korealainen',charsetTR:'Turkkilainen',charsetUN:'Unicode (UTF-8)',charsetWE:'Länsieurooppalainen',docType:'Dokumentin tyyppi',docTypeOther:'Muu dokumentin tyyppi',xhtmlDec:'Lisää XHTML julistukset',bgColor:'Taustaväri',bgImage:'Taustakuva',bgFixed:'Paikallaanpysyvä tausta',txtColor:'Tekstiväri',margin:'Sivun marginaalit',marginTop:'Ylä',marginLeft:'Vasen',marginRight:'Oikea',marginBottom:'Ala',metaKeywords:'Hakusanat (pilkulla erotettuna)',metaDescription:'Kuvaus',metaAuthor:'Tekijä',metaCopyright:'Tekijänoikeudet',previewHtml:'<p>Tämä on <strong>esimerkkitekstiä</strong>. Käytät juuri <a href="javascript:void(0)">CKEditoria</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/no.js��������������������������������������������0000664�0001750�0001750�00000042600�12262650742�021751� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.no={dir:'ltr',editorTitle:'Rikteksteditor, %1',editorHelp:'Trykk ALT 0 for hjelp',toolbars:'Verktøylinjer for editor',editor:'Rikteksteditor',source:'Kilde',newPage:'Ny side',save:'Lagre',preview:'Forhåndsvis',cut:'Klipp ut',copy:'Kopier',paste:'Lim inn',print:'Skriv ut',underline:'Understreking',bold:'Fet',italic:'Kursiv',selectAll:'Merk alt',removeFormat:'Fjern formatering',strike:'Gjennomstreking',subscript:'Senket skrift',superscript:'Hevet skrift',horizontalrule:'Sett inn horisontal linje',pagebreak:'Sett inn sideskift for utskrift',pagebreakAlt:'Sideskift',unlink:'Fjern lenke',undo:'Angre',redo:'Gjør om',common:{browseServer:'Bla igjennom server',url:'URL',protocol:'Protokoll',upload:'Last opp',uploadSubmit:'Send det til serveren',image:'Bilde',flash:'Flash',form:'Skjema',checkbox:'Avmerkingsboks',radio:'Alternativknapp',textField:'Tekstboks',textarea:'Tekstområde',hiddenField:'Skjult felt',button:'Knapp',select:'Rullegardinliste',imageButton:'Bildeknapp',notSet:'<ikke satt>',id:'Id',name:'Navn',langDir:'Språkretning',langDirLtr:'Venstre til høyre (VTH)',langDirRtl:'Høyre til venstre (HTV)',langCode:'Språkkode',longDescr:'Utvidet beskrivelse',cssClass:'Stilarkklasser',advisoryTitle:'Tittel',cssStyle:'Stil',ok:'OK',cancel:'Avbryt',close:'Lukk',preview:'Forhåndsvis',generalTab:'Generelt',advancedTab:'Avansert',validateNumberFailed:'Denne verdien er ikke et tall.',confirmNewPage:'Alle ulagrede endringer som er gjort i dette innholdet vil bli tapt. Er du sikker på at du vil laste en ny side?',confirmCancel:'Noen av valgene har blitt endret. Er du sikker på at du vil lukke dialogen?',options:'Valg',target:'Mål',targetNew:'Nytt vindu (_blank)',targetTop:'Hele vindu (_top)',targetSelf:'Samme vindu (_self)',targetParent:'Foreldrevindu (_parent)',langDirLTR:'Venstre til høyre (VTH)',langDirRTL:'Høyre til venstre (HTV)',styles:'Stil',cssClasses:'Stilarkklasser',width:'Bredde',height:'Høyde',align:'Juster',alignLeft:'Venstre',alignRight:'Høyre',alignCenter:'Midtjuster',alignTop:'Topp',alignMiddle:'Midten',alignBottom:'Bunn',invalidValue:'Ugyldig verdi.',invalidHeight:'Høyde må være et tall.',invalidWidth:'Bredde må være et tall.',invalidCssLength:'Den angitte verdien for feltet "%1" må være et positivt tall med eller uten en gyldig CSS-målingsenhet (px, %, in, cm, mm, em, ex, pt, eller pc).',invalidHtmlLength:'Den angitte verdien for feltet "%1" må være et positivt tall med eller uten en gyldig HTML-målingsenhet (px eller %).',invalidInlineStyle:'Verdi angitt for inline stil må bestå av en eller flere sett med formatet "navn : verdi", separert med semikolon',cssLengthTooltip:'Skriv inn et tall for en piksel-verdi eller et tall med en gyldig CSS-enhet (px, %, in, cm, mm, em, ex, pt, eller pc).',unavailable:'%1<span class="cke_accessibility">, utilgjenglig</span>'},contextmenu:{options:'Alternativer for høyreklikkmeny'},specialChar:{toolbar:'Sett inn spesialtegn',title:'Velg spesialtegn',options:'Alternativer for spesialtegn'},link:{toolbar:'Sett inn/Rediger lenke',other:'<annen>',menu:'Rediger lenke',title:'Lenke',info:'Lenkeinfo',target:'Mål',upload:'Last opp',advanced:'Avansert',type:'Lenketype',toUrl:'URL',toAnchor:'Lenke til anker i teksten',toEmail:'E-post',targetFrame:'<ramme>',targetPopup:'<popup-vindu>',targetFrameName:'Målramme',targetPopupName:'Navn på popup-vindu',popupFeatures:'Egenskaper for popup-vindu',popupResizable:'Skalerbar',popupStatusBar:'Statuslinje',popupLocationBar:'Adresselinje',popupToolbar:'Verktøylinje',popupMenuBar:'Menylinje',popupFullScreen:'Fullskjerm (IE)',popupScrollBars:'Scrollbar',popupDependent:'Avhenging (Netscape)',popupLeft:'Venstre posisjon',popupTop:'Topp-posisjon',id:'Id',langDir:'Språkretning',langDirLTR:'Venstre til høyre (VTH)',langDirRTL:'Høyre til venstre (HTV)',acccessKey:'Aksessknapp',name:'Navn',langCode:'Språkkode',tabIndex:'Tabindeks',advisoryTitle:'Tittel',advisoryContentType:'Type',cssClasses:'Stilarkklasser',charset:'Lenket tegnsett',styles:'Stil',rel:'Relasjon (rel)',selectAnchor:'Velg et anker',anchorName:'Anker etter navn',anchorId:'Element etter ID',emailAddress:'E-postadresse',emailSubject:'Meldingsemne',emailBody:'Melding',noAnchors:'(Ingen anker i dokumentet)',noUrl:'Vennligst skriv inn lenkens URL',noEmail:'Vennligst skriv inn e-postadressen'},anchor:{toolbar:'Sett inn/Rediger anker',menu:'Egenskaper for anker',title:'Egenskaper for anker',name:'Ankernavn',errorName:'Vennligst skriv inn ankernavnet',remove:'Fjern anker'},list:{numberedTitle:'Egenskaper for nummerert liste',bulletedTitle:'Egenskaper for punktmerket liste',type:'Type',start:'Start',validateStartNumber:'Starten på listen må være et heltall.',circle:'Sirkel',disc:'Disk',square:'Firkant',none:'Ingen',notset:'<ikke satt>',armenian:'Armensk nummerering',georgian:'Georgisk nummerering (an, ban, gan, osv.)',lowerRoman:'Romertall, små (i, ii, iii, iv, v, osv.)',upperRoman:'Romertall, store (I, II, III, IV, V, osv.)',lowerAlpha:'Alfabetisk, små (a, b, c, d, e, osv.)',upperAlpha:'Alfabetisk, store (A, B, C, D, E, osv.)',lowerGreek:'Gresk, små (alpha, beta, gamma, osv.)',decimal:'Tall (1, 2, 3, osv.)',decimalLeadingZero:'Tall, med førstesiffer null (01, 02, 03, osv.)'},findAndReplace:{title:'Søk og erstatt',find:'Søk',replace:'Erstatt',findWhat:'Søk etter:',replaceWith:'Erstatt med:',notFoundMsg:'Fant ikke søketeksten.',findOptions:'Søkealternativer',matchCase:'Skill mellom store og små bokstaver',matchWord:'Bare hele ord',matchCyclic:'Søk i hele dokumentet',replaceAll:'Erstatt alle',replaceSuccessMsg:'%1 tilfelle(r) erstattet.'},table:{toolbar:'Tabell',title:'Egenskaper for tabell',menu:'Egenskaper for tabell',deleteTable:'Slett tabell',rows:'Rader',columns:'Kolonner',border:'Rammestørrelse',widthPx:'piksler',widthPc:'prosent',widthUnit:'Bredde-enhet',cellSpace:'Cellemarg',cellPad:'Cellepolstring',caption:'Tittel',summary:'Sammendrag',headers:'Overskrifter',headersNone:'Ingen',headersColumn:'Første kolonne',headersRow:'Første rad',headersBoth:'Begge',invalidRows:'Antall rader må være et tall større enn 0.',invalidCols:'Antall kolonner må være et tall større enn 0.',invalidBorder:'Rammestørrelse må være et tall.',invalidWidth:'Tabellbredde må være et tall.',invalidHeight:'Tabellhøyde må være et tall.',invalidCellSpacing:'Cellemarg må være et positivt tall.',invalidCellPadding:'Cellepolstring må være et positivt tall.',cell:{menu:'Celle',insertBefore:'Sett inn celle før',insertAfter:'Sett inn celle etter',deleteCell:'Slett celler',merge:'Slå sammen celler',mergeRight:'Slå sammen høyre',mergeDown:'Slå sammen ned',splitHorizontal:'Del celle horisontalt',splitVertical:'Del celle vertikalt',title:'Celleegenskaper',cellType:'Celletype',rowSpan:'Radspenn',colSpan:'Kolonnespenn',wordWrap:'Tekstbrytning',hAlign:'Horisontal justering',vAlign:'Vertikal justering',alignBaseline:'Grunnlinje',bgColor:'Bakgrunnsfarge',borderColor:'Rammefarge',data:'Data',header:'Overskrift',yes:'Ja',no:'Nei',invalidWidth:'Cellebredde må være et tall.',invalidHeight:'Cellehøyde må være et tall.',invalidRowSpan:'Radspenn må være et heltall.',invalidColSpan:'Kolonnespenn må være et heltall.',chooseColor:'Velg'},row:{menu:'Rader',insertBefore:'Sett inn rad før',insertAfter:'Sett inn rad etter',deleteRow:'Slett rader'},column:{menu:'Kolonne',insertBefore:'Sett inn kolonne før',insertAfter:'Sett inn kolonne etter',deleteColumn:'Slett kolonner'}},button:{title:'Egenskaper for knapp',text:'Tekst (verdi)',type:'Type',typeBtn:'Knapp',typeSbm:'Send',typeRst:'Nullstill'},checkboxAndRadio:{checkboxTitle:'Egenskaper for avmerkingsboks',radioTitle:'Egenskaper for alternativknapp',value:'Verdi',selected:'Valgt'},form:{title:'Egenskaper for skjema',menu:'Egenskaper for skjema',action:'Handling',method:'Metode',encoding:'Encoding'},select:{title:'Egenskaper for rullegardinliste',selectInfo:'Info',opAvail:'Tilgjenglige alternativer',value:'Verdi',size:'Størrelse',lines:'Linjer',chkMulti:'Tillat flervalg',opText:'Tekst',opValue:'Verdi',btnAdd:'Legg til',btnModify:'Endre',btnUp:'Opp',btnDown:'Ned',btnSetValue:'Sett som valgt',btnDelete:'Slett'},textarea:{title:'Egenskaper for tekstområde',cols:'Kolonner',rows:'Rader'},textfield:{title:'Egenskaper for tekstfelt',name:'Navn',value:'Verdi',charWidth:'Tegnbredde',maxChars:'Maks antall tegn',type:'Type',typeText:'Tekst',typePass:'Passord'},hidden:{title:'Egenskaper for skjult felt',name:'Navn',value:'Verdi'},image:{title:'Bildeegenskaper',titleButton:'Egenskaper for bildeknapp',menu:'Bildeegenskaper',infoTab:'Bildeinformasjon',btnUpload:'Send det til serveren',upload:'Last opp',alt:'Alternativ tekst',lockRatio:'Lås forhold',resetSize:'Tilbakestill størrelse',border:'Ramme',hSpace:'HMarg',vSpace:'VMarg',alertUrl:'Vennligst skriv bilde-urlen',linkTab:'Lenke',button2Img:'Vil du endre den valgte bildeknappen til et vanlig bilde?',img2Button:'Vil du endre det valgte bildet til en bildeknapp?',urlMissing:'Bildets adresse mangler.',validateBorder:'Ramme må være et heltall.',validateHSpace:'HMarg må være et heltall.',validateVSpace:'VMarg må være et heltall.'},flash:{properties:'Egenskaper for Flash-objekt',propertiesTab:'Egenskaper',title:'Flash-egenskaper',chkPlay:'Autospill',chkLoop:'Loop',chkMenu:'Slå på Flash-meny',chkFull:'Tillat fullskjerm',scale:'Skaler',scaleAll:'Vis alt',scaleNoBorder:'Ingen ramme',scaleFit:'Skaler til å passe',access:'Scripttilgang',accessAlways:'Alltid',accessSameDomain:'Samme domene',accessNever:'Aldri',alignAbsBottom:'Abs bunn',alignAbsMiddle:'Abs midten',alignBaseline:'Bunnlinje',alignTextTop:'Tekst topp',quality:'Kvalitet',qualityBest:'Best',qualityHigh:'Høy',qualityAutoHigh:'Auto høy',qualityMedium:'Medium',qualityAutoLow:'Auto lav',qualityLow:'Lav',windowModeWindow:'Vindu',windowModeOpaque:'Opaque',windowModeTransparent:'Gjennomsiktig',windowMode:'Vindumodus',flashvars:'Variabler for flash',bgcolor:'Bakgrunnsfarge',hSpace:'HMarg',vSpace:'VMarg',validateSrc:'Vennligst skriv inn lenkens url.',validateHSpace:'HMarg må være et tall.',validateVSpace:'VMarg må være et tall.'},spellCheck:{toolbar:'Stavekontroll',title:'Stavekontroll',notAvailable:'Beklager, tjenesten er utilgjenglig nå.',errorLoading:'Feil under lasting av applikasjonstjenestetjener: %s.',notInDic:'Ikke i ordboken',changeTo:'Endre til',btnIgnore:'Ignorer',btnIgnoreAll:'Ignorer alle',btnReplace:'Erstatt',btnReplaceAll:'Erstatt alle',btnUndo:'Angre',noSuggestions:'- Ingen forslag -',progress:'Stavekontroll pågår...',noMispell:'Stavekontroll fullført: ingen feilstavinger funnet',noChanges:'Stavekontroll fullført: ingen ord endret',oneChange:'Stavekontroll fullført: Ett ord endret',manyChanges:'Stavekontroll fullført: %1 ord endret',ieSpellDownload:'Stavekontroll er ikke installert. Vil du laste den ned nå?'},smiley:{toolbar:'Smil',title:'Sett inn smil',options:'Alternativer for smil'},elementsPath:{eleLabel:'Element-sti',eleTitle:'%1 element'},numberedlist:'Legg til/Fjern nummerert liste',bulletedlist:'Legg til/Fjern punktmerket liste',indent:'Øk innrykk',outdent:'Reduser innrykk',justify:{left:'Venstrejuster',center:'Midtstill',right:'Høyrejuster',block:'Blokkjuster'},blockquote:'Sitatblokk',clipboard:{title:'Lim inn',cutError:'Din nettlesers sikkerhetsinstillinger tillater ikke automatisk utklipping av tekst. Vennligst bruk snarveien (Ctrl/Cmd+X).',copyError:'Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst bruk snarveien (Ctrl/Cmd+C).',pasteMsg:'Vennligst lim inn i følgende boks med tastaturet (<STRONG>Ctrl/Cmd+V</STRONG>) og trykk <STRONG>OK</STRONG>.',securityMsg:'Din nettlesers sikkerhetsinstillinger gir ikke redigeringsverktøyet direkte tilgang til utklippstavlen. Du må derfor lime det inn på nytt i dette vinduet.',pasteArea:'Innlimingsområde'},pastefromword:{confirmCleanup:'Teksten du limer inn ser ut til å være kopiert fra Word. Vil du renske den før du limer den inn?',toolbar:'Lim inn fra Word',title:'Lim inn fra Word',error:'Det var ikke mulig å renske den innlimte teksten på grunn av en intern feil'},pasteText:{button:'Lim inn som ren tekst',title:'Lim inn som ren tekst'},templates:{button:'Maler',title:'Innholdsmaler',options:'Alternativer for mal',insertOption:'Erstatt gjeldende innhold',selectPromptMsg:'Velg malen du vil åpne i redigeringsverktøyet:',emptyListMsg:'(Ingen maler definert)'},showBlocks:'Vis blokker',stylesCombo:{label:'Stil',panelTitle:'Stilformater',panelTitle1:'Blokkstiler',panelTitle2:'Inlinestiler',panelTitle3:'Objektstiler'},format:{label:'Format',panelTitle:'Avsnittsformat',tag_p:'Normal',tag_pre:'Formatert',tag_address:'Adresse',tag_h1:'Overskrift 1',tag_h2:'Overskrift 2',tag_h3:'Overskrift 3',tag_h4:'Overskrift 4',tag_h5:'Overskrift 5',tag_h6:'Overskrift 6',tag_div:'Normal (DIV)'},div:{title:'Sett inn Div Container',toolbar:'Sett inn Div Container',cssClassInputLabel:'Stilark-klasser',styleSelectLabel:'Stil',IdInputLabel:'Id',languageCodeInputLabel:' Språkkode',inlineStyleInputLabel:'Inlinestiler',advisoryTitleInputLabel:'Tittel',langDirLabel:'Språkretning',langDirLTRLabel:'Venstre til høyre (VTH)',langDirRTLLabel:'Høyre til venstre (HTV)',edit:'Rediger Div',remove:'Fjern Div'},iframe:{title:'Egenskaper for IFrame',toolbar:'IFrame',noUrl:'Vennligst skriv inn URL for iframe',scrolling:'Aktiver scrollefelt',border:'Viss ramme rundt iframe'},font:{label:'Skrift',voiceLabel:'Font',panelTitle:'Skrift'},fontSize:{label:'Størrelse',voiceLabel:'Font Størrelse',panelTitle:'Størrelse'},colorButton:{textColorTitle:'Tekstfarge',bgColorTitle:'Bakgrunnsfarge',panelTitle:'Farger',auto:'Automatisk',more:'Flere farger...'},colors:{'000':'Svart',800000:'Rødbrun','8B4513':'Salbrun','2F4F4F':'Grønnsvart','008080':'Blågrønn','000080':'Marineblått','4B0082':'Indigo',696969:'Mørk grå',B22222:'Mørkerød',A52A2A:'Brun',DAA520:'Lys brun','006400':'Mørk grønn','40E0D0':'Turkis','0000CD':'Medium blå',800080:'Purpur',808080:'Grå',F00:'Rød',FF8C00:'Mørk oransje',FFD700:'Gull','008000':'Grønn','0FF':'Cyan','00F':'Blå',EE82EE:'Fiolett',A9A9A9:'Svak grå',FFA07A:'Rosa-oransje',FFA500:'Oransje',FFFF00:'Gul','00FF00':'Lime',AFEEEE:'Svak turkis',ADD8E6:'Lys Blå',DDA0DD:'Plomme',D3D3D3:'Lys grå',FFF0F5:'Svak lavendelrosa',FAEBD7:'Antikk-hvit',FFFFE0:'Lys gul',F0FFF0:'Honningmelon',F0FFFF:'Svakt asurblått',F0F8FF:'Svak cyan',E6E6FA:'Lavendel',FFF:'Hvit'},scayt:{title:'Stavekontroll mens du skriver',opera_title:'Ikke støttet av Opera',enable:'Slå på SCAYT',disable:'Slå av SCAYT',about:'Om SCAYT',toggle:'Veksle SCAYT',options:'Valg',langs:'Språk',moreSuggestions:'Flere forslag',ignore:'Ignorer',ignoreAll:'Ignorer Alle',addWord:'Legg til ord',emptyDic:'Ordboknavn bør ikke være tom.',noSuggestions:'Ingen forslag',optionsTab:'Valg',allCaps:'Ikke kontroller ord med kun store bokstaver',ignoreDomainNames:'Ikke kontroller domenenavn',mixedCase:'Ikke kontroller ord med blandet små og store bokstaver',mixedWithDigits:'Ikke kontroller ord som inneholder tall',languagesTab:'Språk',dictionariesTab:'Ordbøker',dic_field_name:'Ordboknavn',dic_create:'Opprett',dic_restore:'Gjenopprett',dic_delete:'Slett',dic_rename:'Gi nytt navn',dic_info:'Brukerordboken lagres først i en informasjonskapsel på din maskin, men det er en begrensning på hvor mye som kan lagres her. Når ordboken blir for stor til å lagres i en informasjonskapsel, vil vi i stedet lagre ordboken på vår server. For å lagre din personlige ordbok på vår server, burde du velge et navn for ordboken din. Hvis du allerede har lagret en ordbok, vennligst skriv inn ordbokens navn og klikk på Gjenopprett-knappen.',aboutTab:'Om'},about:{title:'Om CKEditor',dlgTitle:'Om CKEditor',help:'Se $1 for hjelp.',userGuide:'CKEditors brukerveiledning',moreInfo:'For lisensieringsinformasjon, vennligst besøk vårt nettsted:',copy:'Copyright © $1. Alle rettigheter reservert.'},maximize:'Maksimer',minimize:'Minimer',fakeobjects:{anchor:'Anker',flash:'Flash-animasjon',iframe:'IFrame',hiddenfield:'Skjult felt',unknown:'Ukjent objekt'},resize:'Dra for å skalere',colordialog:{title:'Velg farge',options:'Alternativer for farge',highlight:'Merk',selected:'Valgt',clear:'Tøm'},toolbarCollapse:'Skjul verktøylinje',toolbarExpand:'Vis verktøylinje',toolbarGroups:{document:'Dokument',clipboard:'Utklippstavle/Angre',editing:'Redigering',forms:'Skjema',basicstyles:'Basisstiler',paragraph:'Avsnitt',links:'Lenker',insert:'Innsetting',styles:'Stiler',colors:'Farger',tools:'Verktøy'},bidi:{ltr:'Tekstretning fra venstre til høyre',rtl:'Tekstretning fra høyre til venstre'},docprops:{label:'Dokumentegenskaper',title:'Dokumentegenskaper',design:'Design',meta:'Meta-data',chooseColor:'Velg',other:'<annen>',docTitle:'Sidetittel',charset:'Tegnsett',charsetOther:'Annet tegnsett',charsetASCII:'ASCII',charsetCE:'Sentraleuropeisk',charsetCT:'Tradisonell kinesisk(Big5)',charsetCR:'Kyrillisk',charsetGR:'Gresk',charsetJP:'Japansk',charsetKR:'Koreansk',charsetTR:'Tyrkisk',charsetUN:'Unicode (UTF-8)',charsetWE:'Vesteuropeisk',docType:'Dokumenttype header',docTypeOther:'Annet dokumenttype header',xhtmlDec:'Inkluder XHTML-deklarasjon',bgColor:'Bakgrunnsfarge',bgImage:'URL for bakgrunnsbilde',bgFixed:'Lås bakgrunnsbilde',txtColor:'Tekstfarge',margin:'Sidemargin',marginTop:'Topp',marginLeft:'Venstre',marginRight:'Høyre',marginBottom:'Bunn',metaKeywords:'Dokument nøkkelord (kommaseparert)',metaDescription:'Dokumentbeskrivelse',metaAuthor:'Forfatter',metaCopyright:'Kopirett',previewHtml:'<p>Dette er en <strong>eksempeltekst</strong>. Du bruker <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/bg.js��������������������������������������������0000664�0001750�0001750�00000054563�12262650742�021740� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.bg={dir:'ltr',editorTitle:'Текстов редактор за форматиран текст, %1',editorHelp:'натиснете ALT 0 за помощ',toolbars:'Ленти с инструменти',editor:'Текстов редактор за форматиран текст',source:'Източник',newPage:'Нова страница',save:'Запис',preview:'Преглед',cut:'Отрежи',copy:'Копирай',paste:'Вмъкни',print:'Печат',underline:'Подчертан',bold:'Удебелен',italic:'Наклонен',selectAll:'Избери всичко',removeFormat:'Премахване на форматирането',strike:'Зачертан текст',subscript:'Индексиран текст',superscript:'Суперскрипт',horizontalrule:'Вмъкване на хоризонтална линия',pagebreak:'Вмъкване на нова страница при печат',pagebreakAlt:'Разделяне на страници',unlink:'Премахни връзката',undo:'Възтанови',redo:'Връщане на предишен статус',common:{browseServer:'Избор от сървъра',url:'URL',protocol:'Протокол',upload:'Качване',uploadSubmit:'Изпращане към сървъра',image:'Снимка',flash:'Флаш',form:'Форма',checkbox:'Поле за избор',radio:'Радио бутон',textField:'Текстово поле',textarea:'Текстова зона',hiddenField:'Скрито поле',button:'Бутон',select:'Поле за избор',imageButton:'Бутон за снимка',notSet:'<не е избрано>',id:'ID',name:'Име',langDir:'Посока на езика',langDirLtr:'Ляво на дясно (ЛнД)',langDirRtl:'Дясно на ляво (ДнЛ)',langCode:'Код на езика',longDescr:'Уеб адрес за дълго описание',cssClass:'Класове за CSS',advisoryTitle:'Advisory Title',cssStyle:'Стил',ok:'ОК',cancel:'Отказ',close:'Затвори',preview:'Преглед',generalTab:'Общо',advancedTab:'Разширено',validateNumberFailed:'Тази стойност не е число',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Опции',target:'Цел',targetNew:'Нов прозорец (_blank)',targetTop:'Горна позиция (_top)',targetSelf:'Текущия прозорец (_self)',targetParent:'Основен прозорец (_parent)',langDirLTR:'Ляво на дясно (ЛнД)',langDirRTL:'Дясно на ляво (ДнЛ)',styles:'Стил',cssClasses:'Класове за CSS',width:'Ширина',height:'Височина',align:'Подравняване',alignLeft:'Ляво',alignRight:'Дясно',alignCenter:'Център',alignTop:'Горе',alignMiddle:'По средата',alignBottom:'Долу',invalidValue:'Invalid value.',invalidHeight:'Височината трябва да е число.',invalidWidth:'Ширина требе да е число.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Опции на контекстното меню'},specialChar:{toolbar:'Вмъкване на специален знак',title:'Избор на специален знак',options:'Опции за специален знак'},link:{toolbar:'Връзка',other:'<друго>',menu:'Промяна на връзка',title:'Връзка',info:'Инфо за връзката',target:'Цел',upload:'Качване',advanced:'Разширено',type:'Тип на връзката',toUrl:'Уеб адрес',toAnchor:'Връзка към котва в текста',toEmail:'E-mail',targetFrame:'<frame>',targetPopup:'<изкачащ прозорец>',targetFrameName:'Име на целевият прозорец',targetPopupName:'Име на изкачащ прозорец',popupFeatures:'Функции на изкачащ прозорец',popupResizable:'Оразмеряем',popupStatusBar:'Статусна лента',popupLocationBar:'Лента с локацията',popupToolbar:'Лента с инструменти',popupMenuBar:'Лента за меню',popupFullScreen:'Цял екран (IE)',popupScrollBars:'Скролери',popupDependent:'Зависимост (Netscape)',popupLeft:'Лява позиция',popupTop:'Горна позиция',id:'ID',langDir:'Посока на езика',langDirLTR:'Ляво на Дясно (ЛнД)',langDirRTL:'Дясно на Ляво (ДнЛ)',acccessKey:'Ключ за достъп',name:'Име',langCode:'Код за езика',tabIndex:'Tab Index',advisoryTitle:'Advisory Title',advisoryContentType:'Advisory Content Type',cssClasses:'Класове за CSS',charset:'Linked Resource Charset',styles:'Стил',rel:'Връзка',selectAnchor:'Изберете котва',anchorName:'По име на котва',anchorId:'По ID на елемент',emailAddress:'E-mail aдрес',emailSubject:'Тема',emailBody:'Съдържание',noAnchors:'(No anchors available in the document)',noUrl:'Моля въведете URL адреса',noEmail:'Моля въведете e-mail aдрес'},anchor:{toolbar:'Котва',menu:'Промяна на котва',title:'Настройки на котва',name:'Име на котва',errorName:'Моля въведете име на котвата',remove:'Премахване на котва'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Тип',start:'Старт',validateStartNumber:'List start number must be a whole number.',circle:'Кръг',disc:'Диск',square:'Квадрат',none:'Няма',notset:'<не е указано>',armenian:'Арменско номериране',georgian:'Грузинско номериране (an, ban, gan, и т.н.)',lowerRoman:'Малки римски числа (i, ii, iii, iv, v и т.н.)',upperRoman:'Големи римски числа (I, II, III, IV, V и т.н.)',lowerAlpha:'Малки букви (а, б, в, г, д и т.н.)',upperAlpha:'Големи букви (А, Б, В, Г, Д и т.н.)',lowerGreek:'Малки гръцки букви (алфа, бета, гама и т.н.)',decimal:'Числа (1, 2, 3 и др.)',decimalLeadingZero:'Числа с водеща нула (01, 02, 03 и т.н.)'},findAndReplace:{title:'Търсене и препокриване',find:'Търсене',replace:'Препокриване',findWhat:'Търси за:',replaceWith:'Препокрива с:',notFoundMsg:'Указаният текст не е намерен.',findOptions:'Find Options',matchCase:'Съвпадение',matchWord:'Съвпадение с дума',matchCyclic:'Циклично съвпадение',replaceAll:'Препокрий всички',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Таблица',title:'Настройки на таблицата',menu:'Настройки на таблицата',deleteTable:'Изтриване на таблица',rows:'Редове',columns:'Колони',border:'Размер на рамката',widthPx:'пиксела',widthPc:'процент',widthUnit:'единица за ширина',cellSpace:'Разтояние между клетките',cellPad:'Отделяне на клетките',caption:'Заглавие',summary:'Обща информация',headers:'Хедъри',headersNone:'Няма',headersColumn:'Първа колона',headersRow:'Първи ред',headersBoth:'Заедно',invalidRows:'Броят редове трябва да е по-голям от 0.',invalidCols:'Броят колони трябва да е по-голям от 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Клетка',insertBefore:'Вмъкване на клетка преди',insertAfter:'Вмъкване на клетка след',deleteCell:'Изтриване на клетки',merge:'Сливане на клетки',mergeRight:'Сливане в дясно',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Настройки на клетката',cellType:'Тип на клетката',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Авто. пренос',hAlign:'Хоризонтално подравняване',vAlign:'Вертикално подравняване',alignBaseline:'Базова линия',bgColor:'Фон',borderColor:'Цвят на рамката',data:'Данни',header:'Хедър',yes:'Да',no:'Не',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Изберете'},row:{menu:'Ред',insertBefore:'Insert Row Before',insertAfter:'Вмъкване на ред след',deleteRow:'Изтриване на редове'},column:{menu:'Колона',insertBefore:'Вмъкване на колона преди',insertAfter:'Вмъкване на колона след',deleteColumn:'Изтриване на колони'}},button:{title:'Настройки на бутона',text:'Текст (стойност)',type:'Тип',typeBtn:'Бутон',typeSbm:'Добави',typeRst:'Нулиране'},checkboxAndRadio:{checkboxTitle:'Checkbox Properties',radioTitle:'Настройки на радиобутон',value:'Стойност',selected:'Избрано'},form:{title:'Настройки на формата',menu:'Настройки на формата',action:'Действие',method:'Метод',encoding:'Кодиране'},select:{title:'Selection Field Properties',selectInfo:'Select Info',opAvail:'Налични опции',value:'Стойност',size:'Размер',lines:'линии',chkMulti:'Allow multiple selections',opText:'Текст',opValue:'Стойност',btnAdd:'Добави',btnModify:'Промени',btnUp:'На горе',btnDown:'На долу',btnSetValue:'Set as selected value',btnDelete:'Изтриване'},textarea:{title:'Опции за текстовата зона',cols:'Колони',rows:'Редове'},textfield:{title:'Настройки за текстово поле',name:'Име',value:'Стойност',charWidth:'Ширина на знаците',maxChars:'Макс. знаци',type:'Тип',typeText:'Текст',typePass:'Парола'},hidden:{title:'Настройки за скрито поле',name:'Име',value:'Стойност'},image:{title:'Настройки за снимка',titleButton:'Настойки за бутон за снимка',menu:'Настройки за снимка',infoTab:'Инфо за снимка',btnUpload:'Изпрати я на сървъра',upload:'Качване',alt:'Алтернативен текст',lockRatio:'Заключване на съотношението',resetSize:'Нулиране на размер',border:'Рамка',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Please type the image URL',linkTab:'Връзка',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Настройки за флаш',propertiesTab:'Настройки',title:'Настройки за флаш',chkPlay:'Авто. пускане',chkLoop:'Цикъл',chkMenu:'Enable Flash Menu',chkFull:'Allow Fullscreen',scale:'Scale',scaleAll:'Показва всичко',scaleNoBorder:'Без рамка',scaleFit:'Exact Fit',access:'Script Access',accessAlways:'Винаги',accessSameDomain:'Същият домейн',accessNever:'Никога',alignAbsBottom:'Abs Bottom',alignAbsMiddle:'Abs Middle',alignBaseline:'Baseline',alignTextTop:'Text Top',quality:'Качество',qualityBest:'Отлично',qualityHigh:'Високо',qualityAutoHigh:'Авто. високо',qualityMedium:'Средно',qualityAutoLow:'Авто. ниско',qualityLow:'Ниско',windowModeWindow:'Прозорец',windowModeOpaque:'Плътност',windowModeTransparent:'Прозрачност',windowMode:'Режим на прозореца',flashvars:'Променливи за Флаш',bgcolor:'Background color',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'Уеб адреса не трябва да е празен.',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Проверка на правопис',title:'Проверка на правопис',notAvailable:'Съжаляваме, но услугата не е достъпна за момента',errorLoading:'Error loading application service host: %s.',notInDic:'Не е в речника',changeTo:'Промени на',btnIgnore:'Игнорирай',btnIgnoreAll:'Игнорирай всичко',btnReplace:'Препокриване',btnReplaceAll:'Препокрий всичко',btnUndo:'Възтанови',noSuggestions:'- Няма препоръчани -',progress:'Проверява се правописа...',noMispell:'Spell check complete: No misspellings found',noChanges:'Spell check complete: No words changed',oneChange:'Spell check complete: One word changed',manyChanges:'Spell check complete: %1 words changed',ieSpellDownload:'Spell checker not installed. Do you want to download it now?'},smiley:{toolbar:'Усмивка',title:'Вмъкване на усмивка',options:'Опции за усмивката'},elementsPath:{eleLabel:'Път за елементите',eleTitle:'%1 елемент'},numberedlist:'Вмъкване/Премахване на номериран списък',bulletedlist:'Вмъкване/Премахване на точков списък',indent:'Увеличаване на отстъпа',outdent:'Намаляване на отстъпа',justify:{left:'Подравни в ляво',center:'Център',right:'Подравни в дясно',block:'Justify'},blockquote:'Блок за цитат',clipboard:{title:'Paste',cutError:'Настройките за сигурност на Вашия браузър не позволяват на редактора автоматично да изъплни действията за отрязване. Моля ползвайте клавиатурните команди за целта (ctrl+x).',copyError:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).",pasteMsg:'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Paste from Word',title:'Paste from Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Paste as plain text',title:'Paste as Plain Text'},templates:{button:'Templates',title:'Content Templates',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Please select the template to open in the editor',emptyListMsg:'(No templates defined)'},showBlocks:'Показва блокове',stylesCombo:{label:'Styles',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Paragraph Format',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Стил',IdInputLabel:'ID',languageCodeInputLabel:' Код на езика',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Промяна на Div',remove:'Премахване на Div'},iframe:{title:'IFrame настройки',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Шрифт',voiceLabel:'Шрифт',panelTitle:'Име на шрифт'},fontSize:{label:'Размер',voiceLabel:'Размер на шрифт',panelTitle:'Размер на шрифт'},colorButton:{textColorTitle:'Цвят на шрифт',bgColorTitle:'Фонов цвят',panelTitle:'Цветове',auto:'Автоматично',more:'Още цветове'},colors:{'000':'Черно',800000:'Кестеняво','8B4513':'Светлокафяво','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Индиго',696969:'Тъмно сиво',B22222:'Огнено червено',A52A2A:'Кафяво',DAA520:'Златисто','006400':'Тъмно зелено','40E0D0':'Тюркуазено','0000CD':'Средно синьо',800080:'Пурпурно',808080:'Сиво',F00:'Червено',FF8C00:'Тъмно оранжево',FFD700:'Златно','008000':'Зелено','0FF':'Светло синьо','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'Няма предложения',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Игнорирани думи и цифри',languagesTab:'Езици',dictionariesTab:'Речници',dic_field_name:'Име на речнк',dic_create:'Нов',dic_restore:'Възтановяване',dic_delete:'Изтриване',dic_rename:'Преименуване',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'Относно'},about:{title:'Относно CKEditor',dlgTitle:'Относно CKEditor',help:'Проверете $1 за помощ.',userGuide:"CKEditor User's Guide",moreInfo:'За лицензионна информация моля посетете сайта ни:',copy:'Copyright © $1. All rights reserved.'},maximize:'Максимизиране',minimize:'Минимизиране',fakeobjects:{anchor:'Кука',flash:'Флаш анимация',iframe:'IFrame',hiddenfield:'Скрито поле',unknown:'Неизвестен обект'},resize:'Влачете за да оразмерите',colordialog:{title:'Изберете цвят',options:'Цветови опции',highlight:'Осветяване',selected:'Изберете цвят',clear:'Изчистване'},toolbarCollapse:'Свиване на лентата с инструменти',toolbarExpand:'Разширяване на лентата с инструменти',toolbarGroups:{document:'Документ',clipboard:'Clipboard/Undo',editing:'Промяна',forms:'Форми',basicstyles:'Базови стилове',paragraph:'Параграф',links:'Връзки',insert:'Вмъкване',styles:'Стилове',colors:'Цветове',tools:'Инструменти'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Настройки на документа',title:'Настройки на документа',design:'Дизайн',meta:'Мета етикети',chooseColor:'Изберете',other:'Други...',docTitle:'Заглавие на страницата',charset:'Кодова таблица',charsetOther:'Друга кодова таблица',charsetASCII:'ASCII',charsetCE:'Централна европейска',charsetCT:'Китайски традиционен',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Document Type Heading',docTypeOther:'Other Document Type Heading',xhtmlDec:'Include XHTML Declarations',bgColor:'Background Color',bgImage:'Background Image URL',bgFixed:'Non-scrolling (Fixed) Background',txtColor:'Text Color',margin:'Page Margins',marginTop:'Top',marginLeft:'Left',marginRight:'Right',marginBottom:'Bottom',metaKeywords:'Document Indexing Keywords (comma separated)',metaDescription:'Document Description',metaAuthor:'Author',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/sk.js��������������������������������������������0000664�0001750�0001750�00000046357�12262650742�021767� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.sk={dir:'ltr',editorTitle:'Editor formátovaného textu, %1',editorHelp:'Stlačte ALT 0 pre nápovedu',toolbars:'Lišty nástrojov editora',editor:'Editor formátovaného textu',source:'Zdroj',newPage:'Nová stránka',save:'Uložiť',preview:'Náhľad',cut:'Vystrihnúť',copy:'Kopírovať',paste:'Vložiť',print:'Tlač',underline:'Podčiarknuté',bold:'Tučné',italic:'Kurzíva',selectAll:'Vybrať všetko',removeFormat:'Odstrániť formátovanie',strike:'Prečiarknuté',subscript:'Dolný index',superscript:'Horný index',horizontalrule:'Vložiť vodorovnú čiaru',pagebreak:'Vložiť oddeľovač stránky pre tlač',pagebreakAlt:'Zalomenie strany',unlink:'Odstrániť odkaz',undo:'Späť',redo:'Znovu',common:{browseServer:'Prechádzať server',url:'URL',protocol:'Protokol',upload:'Nahrať',uploadSubmit:'Odoslať to na server',image:'Obrázok',flash:'Flash',form:'Formulár',checkbox:'Zaškrtávacie políčko',radio:'Prepínač',textField:'Textové pole',textarea:'Textová oblasť',hiddenField:'Skryté pole',button:'Tlačidlo',select:'Rozbaľovací zoznam',imageButton:'Obrázkové tlačidlo',notSet:'<nenastavené>',id:'Id',name:'Meno',langDir:'Orientácia jazyka',langDirLtr:'Zľava doprava (LTR)',langDirRtl:'Sprava doľava (RTL)',langCode:'Kód jazyka',longDescr:'Dlhý popis URL',cssClass:'Triedy štýlu',advisoryTitle:'Pomocný titulok',cssStyle:'Štýl',ok:'OK',cancel:'Zrušiť',close:'Zatvorit',preview:'Náhľad',generalTab:'Hlavné',advancedTab:'Rozšírené',validateNumberFailed:'Hodnota nieje číslo.',confirmNewPage:'Všetky neuložené zmeny v tomto obsahu budú stratené. Ste si istý, že chcete načítať novú stránku?',confirmCancel:'Niektore možnosti boli zmenené. Naozaj chcete zavrieť okno?',options:'Možnosti',target:'Cieľ',targetNew:'Nové okno (_blank)',targetTop:'Najvrchnejšie okno (_top)',targetSelf:'To isté okno (_self)',targetParent:'Rodičovské okno (_parent)',langDirLTR:'Zľava doprava (LTR)',langDirRTL:'Sprava doľava (RTL)',styles:'Štýl',cssClasses:'Triedy štýlu',width:'Šírka',height:'Výška',align:'Zarovnanie',alignLeft:'Vľavo',alignRight:'Vpravo',alignCenter:'Na stred',alignTop:'Nahor',alignMiddle:'Na stred',alignBottom:'Dole',invalidValue:'Neplatná hodnota.',invalidHeight:'Výška musí byť číslo.',invalidWidth:'Šírka musí byť číslo.',invalidCssLength:'Špecifikovaná hodnota pre pole "%1" musí byť kladné číslo s alebo bez platnej CSS mernej jednotky (px, %, in, cm, mm, em, ex, pt alebo pc).',invalidHtmlLength:'Špecifikovaná hodnota pre pole "%1" musí byť kladné číslo s alebo bez platnej HTML mernej jednotky (px alebo %).',invalidInlineStyle:'Zadaná hodnota pre inline štýl musí pozostávať s jedného, alebo viac dvojíc formátu "názov: hodnota", oddelených bodkočiarkou.',cssLengthTooltip:'Vložte číslo pre hodnotu v pixeloch alebo číslo so správnou CSS jednotou (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, nedostupný</span>'},contextmenu:{options:'Možnosti kontextového menu'},specialChar:{toolbar:'Vložiť špeciálny znak',title:'Výber špeciálneho znaku',options:'Možnosti špeciálneho znaku'},link:{toolbar:'Odkaz',other:'<iný>',menu:'Upraviť odkaz',title:'Odkaz',info:'Informácie o odkaze',target:'Cieľ',upload:'Nahrať',advanced:'Rozšírené',type:'Typ odkazu',toUrl:'URL',toAnchor:'Odkaz na kotvu v texte',toEmail:'E-mail',targetFrame:'<rámec>',targetPopup:'<vyskakovacie okno>',targetFrameName:'Názov rámu cieľa',targetPopupName:'Názov vyskakovacieho okna',popupFeatures:'Vlastnosti vyskakovacieho okna',popupResizable:'Meniteľná veľkosť (resizable)',popupStatusBar:'Stavový riadok (status bar)',popupLocationBar:'Panel umiestnenia (location bar)',popupToolbar:'Panel nástrojov (toolbar)',popupMenuBar:'Panel ponuky (menu bar)',popupFullScreen:'Celá obrazovka (IE)',popupScrollBars:'Posuvníky (scroll bars)',popupDependent:'Závislosť (Netscape)',popupLeft:'Ľavý okraj',popupTop:'Horný okraj',id:'Id',langDir:'Orientácia jazyka',langDirLTR:'Zľava doprava (LTR)',langDirRTL:'Sprava doľava (RTL)',acccessKey:'Prístupový kľúč',name:'Názov',langCode:'Orientácia jazyka',tabIndex:'Poradie prvku (tab index)',advisoryTitle:'Pomocný titulok',advisoryContentType:'Pomocný typ obsahu',cssClasses:'Triedy štýlu',charset:'Priradená znaková sada',styles:'Štýl',rel:'Vzťah (rel)',selectAnchor:'Vybrať kotvu',anchorName:'Podľa mena kotvy',anchorId:'Podľa Id objektu',emailAddress:'E-Mailová adresa',emailSubject:'Predmet správy',emailBody:'Telo správy',noAnchors:'(V dokumente nie sú dostupné žiadne kotvy)',noUrl:'Zadajte prosím URL odkazu',noEmail:'Zadajte prosím e-mailovú adresu'},anchor:{toolbar:'Kotva',menu:'Upraviť kotvu',title:'Vlastnosti kotvy',name:'Názov kotvy',errorName:'Zadajte prosím názov kotvy',remove:'Odstrániť kotvu'},list:{numberedTitle:'Vlastnosti číselného zoznamu',bulletedTitle:'Vlastnosti odrážkového zoznamu',type:'Typ',start:'Začiatok',validateStartNumber:'Začiatočné číslo číselného zoznamu musí byť celé číslo.',circle:'Kruh',disc:'Disk',square:'Štvorec',none:'Nič',notset:'<nenastavené>',armenian:'Arménske číslovanie',georgian:'Gregoriánske číslovanie (an, ban, gan, atď.)',lowerRoman:'Malé rímske (i, ii, iii, iv, v, atď.)',upperRoman:'Veľké rímske (I, II, III, IV, V, atď.)',lowerAlpha:'Malé latinské (a, b, c, d, e, atď.)',upperAlpha:'Veľké latinské (A, B, C, D, E, atď.)',lowerGreek:'Malé grécke (alfa, beta, gama, atď.)',decimal:'Číselné (1, 2, 3, atď.)',decimalLeadingZero:'Číselné s nulou (01, 02, 03, atď.)'},findAndReplace:{title:'Nájsť a nahradiť',find:'Hľadať',replace:'Nahradiť',findWhat:'Čo hľadať:',replaceWith:'Čím nahradiť:',notFoundMsg:'Hľadaný text nebol nájdený.',findOptions:'Nájsť možnosti',matchCase:'Rozlišovať malé a veľké písmená',matchWord:'Len celé slová',matchCyclic:'Cykliť zhodu',replaceAll:'Nahradiť všetko',replaceSuccessMsg:'%1 výskyt(ov) nahradených.'},table:{toolbar:'Tabuľka',title:'Vlastnosti tabuľky',menu:'Vlastnosti tabuľky',deleteTable:'Vymazať tabuľku',rows:'Riadky',columns:'Stĺpce',border:'Šírka rámu (border)',widthPx:'pixelov',widthPc:'percent',widthUnit:'jednotka šírky',cellSpace:'Vzdialenosť buniek (cell spacing)',cellPad:'Odsadenie obsahu (cell padding)',caption:'Popis',summary:'Prehľad',headers:'Hlavička',headersNone:'Žiadne',headersColumn:'Prvý stĺpec',headersRow:'Prvý riadok',headersBoth:'Obe',invalidRows:'Počet riadkov musí byť číslo väčšie ako 0.',invalidCols:'Počet stĺpcov musí byť číslo väčšie ako 0.',invalidBorder:'Širka rámu musí byť číslo.',invalidWidth:'Širka tabuľky musí byť číslo.',invalidHeight:'Výška tabuľky musí byť číslo.',invalidCellSpacing:'Medzera mädzi bunkami (cell spacing) musí byť kladné číslo.',invalidCellPadding:'Odsadenie v bunkách (cell padding) musí byť kladné číslo.',cell:{menu:'Bunka',insertBefore:'Vložiť bunku pred',insertAfter:'Vložiť bunku za',deleteCell:'Vymazať bunky',merge:'Zlúčiť bunky',mergeRight:'Zlúčiť doprava',mergeDown:'Zlúčiť dole',splitHorizontal:'Rozdeliť bunky horizontálne',splitVertical:'Rozdeliť bunky vertikálne',title:'Vlastnosti bunky',cellType:'Typ bunky',rowSpan:'Rozsah riadkov',colSpan:'Rozsah stĺpcov',wordWrap:'Zalomovanie riadkov',hAlign:'Horizontálne zarovnanie',vAlign:'Vertikálne zarovnanie',alignBaseline:'Základná čiara (baseline)',bgColor:'Farba pozadia',borderColor:'Farba rámu',data:'Dáta',header:'Hlavička',yes:'Áno',no:'Nie',invalidWidth:'Šírka bunky musí byť číslo.',invalidHeight:'Výška bunky musí byť číslo.',invalidRowSpan:'Rozsah riadkov musí byť celé číslo.',invalidColSpan:'Rozsah stĺpcov musí byť celé číslo.',chooseColor:'Vybrať'},row:{menu:'Riadok',insertBefore:'Vložiť riadok pred',insertAfter:'Vložiť riadok po',deleteRow:'Vymazať riadky'},column:{menu:'Stĺpec',insertBefore:'Vložiť stĺpec pred',insertAfter:'Vložiť stĺpec po',deleteColumn:'Zmazať stĺpce'}},button:{title:'Vlastnosti tlačidla',text:'Text (Hodnota)',type:'Typ',typeBtn:'Tlačidlo',typeSbm:'Odoslať',typeRst:'Resetovať'},checkboxAndRadio:{checkboxTitle:'Vlastnosti zaškrtávacieho políčka',radioTitle:'Vlastnosti prepínača (radio button)',value:'Hodnota',selected:'Vybrané (selected)'},form:{title:'Vlastnosti formulára',menu:'Vlastnosti formulára',action:'Akcia (action)',method:'Metóda (method)',encoding:'Kódovanie (encoding)'},select:{title:'Vlastnosti rozbaľovacieho zoznamu',selectInfo:'Informácie o výbere',opAvail:'Dostupné možnosti',value:'Hodnota',size:'Veľkosť',lines:'riadkov',chkMulti:'Povoliť viacnásobný výber',opText:'Text',opValue:'Hodnota',btnAdd:'Pridať',btnModify:'Upraviť',btnUp:'Hore',btnDown:'Dole',btnSetValue:'Nastaviť ako vybranú hodnotu',btnDelete:'Vymazať'},textarea:{title:'Vlastnosti textovej oblasti (textarea)',cols:'Stĺpcov',rows:'Riadkov'},textfield:{title:'Vlastnosti textového poľa',name:'Názov (name)',value:'Hodnota',charWidth:'Šírka poľa (podľa znakov)',maxChars:'Maximálny počet znakov',type:'Typ',typeText:'Text',typePass:'Heslo'},hidden:{title:'Vlastnosti skrytého poľa',name:'Názov (name)',value:'Hodnota'},image:{title:'Vlastnosti obrázka',titleButton:'Vlastnosti obrázkového tlačidla',menu:'Vlastnosti obrázka',infoTab:'Informácie o obrázku',btnUpload:'Odoslať to na server',upload:'Nahrať',alt:'Alternatívny text',lockRatio:'Pomer zámky',resetSize:'Pôvodná veľkosť',border:'Rám (border)',hSpace:'H-medzera',vSpace:'V-medzera',alertUrl:'Zadajte prosím URL obrázka',linkTab:'Odkaz',button2Img:'Chcete zmeniť vybrané obrázkové tlačidlo na jednoduchý obrázok?',img2Button:'Chcete zmeniť vybraný obrázok na obrázkové tlačidlo?',urlMissing:'Chýba URL zdroja obrázka.',validateBorder:'Rám (border) musí byť celé číslo.',validateHSpace:'H-medzera musí byť celé číslo.',validateVSpace:'V-medzera musí byť celé číslo.'},flash:{properties:'Vlastnosti Flashu',propertiesTab:'Vlastnosti',title:'Vlastnosti Flashu',chkPlay:'Automatické prehrávanie',chkLoop:'Opakovanie',chkMenu:'Povoliť Flash Menu',chkFull:'Povoliť zobrazenie na celú obrazovku (fullscreen)',scale:'Mierka',scaleAll:'Zobraziť všetko',scaleNoBorder:'Bez okrajov',scaleFit:'Roztiahnuť, aby sedelo presne',access:'Prístup skriptu',accessAlways:'Vždy',accessSameDomain:'Rovnaká doména',accessNever:'Nikdy',alignAbsBottom:'Úplne dole',alignAbsMiddle:'Do stredu',alignBaseline:'Na základnú čiaru',alignTextTop:'Na horný okraj textu',quality:'Kvalita',qualityBest:'Najlepšia',qualityHigh:'Vysoká',qualityAutoHigh:'Automaticky vysoká',qualityMedium:'Stredná',qualityAutoLow:'Automaticky nízka',qualityLow:'Nízka',windowModeWindow:'Okno',windowModeOpaque:'Nepriehľadný',windowModeTransparent:'Priehľadný',windowMode:'Mód okna',flashvars:'Premenné pre Flash',bgcolor:'Farba pozadia',hSpace:'H-medzera',vSpace:'V-medzera',validateSrc:'URL nesmie byť prázdne.',validateHSpace:'H-medzera musí byť číslo.',validateVSpace:'V-medzera musí byť číslo'},spellCheck:{toolbar:'Kontrola pravopisu',title:'Skontrolovať pravopis',notAvailable:'Prepáčte, ale služba je momentálne nedostupná.',errorLoading:'Chyba pri načítaní slovníka z adresy: %s.',notInDic:'Nie je v slovníku',changeTo:'Zmeniť na',btnIgnore:'Ignorovať',btnIgnoreAll:'Ignorovať všetko',btnReplace:'Prepísat',btnReplaceAll:'Prepísat všetko',btnUndo:'Späť',noSuggestions:'- Žiadny návrh -',progress:'Prebieha kontrola pravopisu...',noMispell:'Kontrola pravopisu dokončená: Neboli nájdené žiadne chyby pravopisu',noChanges:'Kontrola pravopisu dokončená: Neboli zmenené žiadne slová',oneChange:'Kontrola pravopisu dokončená: Bolo zmenené jedno slovo',manyChanges:'Kontrola pravopisu dokončená: Bolo zmenených %1 slov',ieSpellDownload:'Kontrola pravopisu nie je naištalovaná. Chcete ju teraz stiahnuť?'},smiley:{toolbar:'Smajlíky',title:'Vložiť smajlíka',options:'Možnosti smajlíkov'},elementsPath:{eleLabel:'Cesta prvkov',eleTitle:'%1 prvok'},numberedlist:'Vložiť/Odstrániť číslovaný zoznam',bulletedlist:'Vložiť/Odstrániť zoznam s odrážkami',indent:'Zväčšiť odsadenie',outdent:'Zmenšiť odsadenie',justify:{left:'Zarovnať vľavo',center:'Zarovnať na stred',right:'Zarovnať vpravo',block:'Zarovnať do bloku'},blockquote:'Citácia',clipboard:{title:'Vložiť',cutError:'Bezpečnostné nastavenia Vášho prehliadača nedovoľujú editoru automaticky spustiť operáciu vystrihnutia. Prosím, použite na to klávesnicu (Ctrl/Cmd+X).',copyError:'Bezpečnostné nastavenia Vášho prehliadača nedovoľujú editoru automaticky spustiť operáciu kopírovania. Prosím, použite na to klávesnicu (Ctrl/Cmd+C).',pasteMsg:'Prosím, vložte nasledovný rámček použitím klávesnice (<STRONG>Ctrl/Cmd+V</STRONG>) a stlačte OK.',securityMsg:'Kvôli vašim bezpečnostným nastaveniam prehliadača editor nie je schopný pristupovať k vašej schránke na kopírovanie priamo. Vložte to preto do tohto okna.',pasteArea:'Miesto pre vloženie'},pastefromword:{confirmCleanup:'Vkladaný text vyzerá byť skopírovaný z Wordu. Chcete ho automaticky vyčistiť pred vkladaním?',toolbar:'Vložiť z Wordu',title:'Vložiť z Wordu',error:'Nebolo možné vyčistiť vložené dáta kvôli internej chybe'},pasteText:{button:'Vložiť ako čistý text',title:'Vložiť ako čistý text'},templates:{button:'Šablóny',title:'Šablóny obsahu',options:'Možnosti šablóny',insertOption:'Nahradiť aktuálny obsah',selectPromptMsg:'Prosím vyberte šablónu na otvorenie v editore',emptyListMsg:'(Žiadne šablóny nedefinované)'},showBlocks:'Ukázať bloky',stylesCombo:{label:'Štýly',panelTitle:'Formátovanie štýlov',panelTitle1:'Štýly bloku',panelTitle2:'Vnútroriadkové (inline) štýly',panelTitle3:'Štýly objeku'},format:{label:'Formát',panelTitle:'Formát',tag_p:'Normálny',tag_pre:'Formátovaný',tag_address:'Adresa',tag_h1:'Nadpis 1',tag_h2:'Nadpis 2',tag_h3:'Nadpis 3',tag_h4:'Nadpis 4',tag_h5:'Nadpis 5',tag_h6:'Nadpis 6',tag_div:'Normálny (DIV)'},div:{title:'Vytvoriť Div kontajner',toolbar:'Vytvoriť Div kontajner',cssClassInputLabel:'Triedy štýlu',styleSelectLabel:'Štýl',IdInputLabel:'Id',languageCodeInputLabel:'Kód jazyka',inlineStyleInputLabel:'Inline štýl',advisoryTitleInputLabel:'Pomocný titulok',langDirLabel:'Smer jazyka',langDirLTRLabel:'Zľava doprava (LTR)',langDirRTLLabel:'Zprava doľava (RTL)',edit:'Upraviť Div',remove:'Odstrániť Div'},iframe:{title:'Vlastnosti IFrame',toolbar:'IFrame',noUrl:'Prosím, vložte URL iframe',scrolling:'Povoliť skrolovanie',border:'Zobraziť rám frame-u'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Názov fontu'},fontSize:{label:'Veľkosť',voiceLabel:'Veľkosť písma',panelTitle:'Veľkosť písma'},colorButton:{textColorTitle:'Farba textu',bgColorTitle:'Farba pozadia',panelTitle:'Farby',auto:'Automaticky',more:'Viac farieb...'},colors:{'000':'Čierna',800000:'Maroon','8B4513':'Sedlová hnedá','2F4F4F':'Tmavo bridlicovo sivá','008080':'Modrozelená','000080':'Tmavomodrá','4B0082':'Indigo',696969:'Tmavá sivá',B22222:'Ohňová tehlová',A52A2A:'Hnedá',DAA520:'Zlatobyľ','006400':'Tmavá zelená','40E0D0':'Tyrkysová','0000CD':'Stredná modrá',800080:'Purpurová',808080:'Sivá',F00:'Červená',FF8C00:'Tmavá oranžová',FFD700:'Zlatá','008000':'Zelená','0FF':'Azúrová','00F':'Modrá',EE82EE:'Fialová',A9A9A9:'Tmavá sivá',FFA07A:'Svetlo lososová',FFA500:'Oranžová',FFFF00:'Žltá','00FF00':'Vápenná',AFEEEE:'Svetlo tyrkysová',ADD8E6:'Svetlo modrá',DDA0DD:'Slivková',D3D3D3:'Svetlo sivá',FFF0F5:'Levanduľovo červená',FAEBD7:'Antická biela',FFFFE0:'Svetlo žltá',F0FFF0:'Medová',F0FFFF:'Azúrová',F0F8FF:'Alicovo modrá',E6E6FA:'Levanduľová',FFF:'Biela'},scayt:{title:'Kontrola pravopisu počas písania',opera_title:'Nepodporované Operou',enable:'Povoliť KPPP (Kontrola pravopisu počas písania)',disable:'Zakázať KPPP (Kontrola pravopisu počas písania)',about:'O KPPP (Kontrola pravopisu počas písania)',toggle:'Prepnúť KPPP (Kontrola pravopisu počas písania)',options:'Možnosti',langs:'Jazyky',moreSuggestions:'Viac návrhov',ignore:'Ignorovať',ignoreAll:'Ignorovať všetko',addWord:'Pridať slovo',emptyDic:'Názov slovníka by nemal byť prázdny.',noSuggestions:'No suggestions',optionsTab:'Možnosti',allCaps:'Ignorovať slová písané veľkými písmenami',ignoreDomainNames:'Iznorovať názvy domén',mixedCase:'Ignorovať slová so smiešanými veľkými a malými písmenami',mixedWithDigits:'Ignorovať slová s číslami',languagesTab:'Jazyky',dictionariesTab:'Slovníky',dic_field_name:'Názov slovníka',dic_create:'Vytvoriť',dic_restore:'Obnoviť',dic_delete:'Vymazať',dic_rename:'Premenovať',dic_info:'Spočiatku je užívateľský slovník uložený v cookie. Cookie však majú obmedzenú veľkosť. Keď užívateľský slovník narastie do bodu, kedy nemôže byť uložený v cookie, potom musí byť slovník uložený na našom serveri. Pre uloženie vášho osobného slovníka na náš server by ste mali zadať názov pre váš slovník. Ak už máte uložený slovník, prosíme, napíšte jeho názov a kliknite tlačidlo Obnoviť.',aboutTab:'O'},about:{title:'O CKEditor-e',dlgTitle:'O CKEditor-e',help:'Zaškrtnite $1 pre pomoc.',userGuide:'Používateľská príručka KCEditor-a',moreInfo:'Pre informácie o licenciách, prosíme, navštívte našu web stránku:',copy:'Copyright © $1. Všetky práva vyhradené.'},maximize:'Maximalizovať',minimize:'Minimalizovať',fakeobjects:{anchor:'Kotva',flash:'Flash animácia',iframe:'IFrame',hiddenfield:'Skryté pole',unknown:'Neznámy objekt'},resize:'Potiahnite pre zmenu veľkosti',colordialog:{title:'Vyberte farbu',options:'Možnosti farby',highlight:'Zvýrazniť',selected:'Vybraná farba',clear:'Vyčistiť'},toolbarCollapse:'Zbaliť lištu nástrojov',toolbarExpand:'Rozbaliť lištu nástrojov',toolbarGroups:{document:'Dokument',clipboard:'Schránka pre kopírovanie/Späť',editing:'Upravovanie',forms:'Formuláre',basicstyles:'Základné štýly',paragraph:'Odstavec',links:'Odkazy',insert:'Vložiť',styles:'Štýly',colors:'Farby',tools:'Nástroje'},bidi:{ltr:'Smer textu zľava doprava',rtl:'Smer textu sprava doľava'},docprops:{label:'Vlastnosti dokumentu',title:'Vlastnosti dokumentu',design:'Design',meta:'Meta značky',chooseColor:'Vybrať',other:'Iný...',docTitle:'Titulok stránky',charset:'Znaková sada',charsetOther:'Iná znaková sada',charsetASCII:'ASCII',charsetCE:'Stredoeurópska',charsetCT:'Čínština tradičná (Big5)',charsetCR:'Cyrillika',charsetGR:'Gréčtina',charsetJP:'Japončina',charsetKR:'Korejčina',charsetTR:'Turečtina',charsetUN:'Unicode (UTF-8)',charsetWE:'Západná európa',docType:'Typ záhlavia dokumentu',docTypeOther:'Iný typ záhlavia dokumentu',xhtmlDec:'Vložiť deklarácie XHTML',bgColor:'Farba pozadia',bgImage:'URL obrázka na pozadí',bgFixed:'Fixné pozadie',txtColor:'Farba textu',margin:'Okraje stránky (margins)',marginTop:'Horný',marginLeft:'Ľavý',marginRight:'Pravý',marginBottom:'Dolný',metaKeywords:'Indexované kľúčové slová dokumentu (oddelené čiarkou)',metaDescription:'Popis dokumentu',metaAuthor:'Autor',metaCopyright:'Autorské práva (copyright)',previewHtml:'<p>Toto je nejaký <strong>ukážkový text</strong>. Používate <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/is.js��������������������������������������������0000664�0001750�0001750�00000042746�12262650742�021763� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.is={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Kóði',newPage:'Ný síða',save:'Vista',preview:'Forskoða',cut:'Klippa',copy:'Afrita',paste:'Líma',print:'Prenta',underline:'Undirstrikað',bold:'Feitletrað',italic:'Skáletrað',selectAll:'Velja allt',removeFormat:'Fjarlægja snið',strike:'Yfirstrikað',subscript:'Niðurskrifað',superscript:'Uppskrifað',horizontalrule:'Lóðrétt lína',pagebreak:'Setja inn síðuskil',pagebreakAlt:'Page Break',unlink:'Fjarlægja stiklu',undo:'Afturkalla',redo:'Hætta við afturköllun',common:{browseServer:'Fletta í skjalasafni',url:'Vefslóð',protocol:'Samskiptastaðall',upload:'Senda upp',uploadSubmit:'Hlaða upp',image:'Setja inn mynd',flash:'Flash',form:'Setja inn innsláttarform',checkbox:'Setja inn hökunarreit',radio:'Setja inn valhnapp',textField:'Setja inn textareit',textarea:'Setja inn textasvæði',hiddenField:'Setja inn falið svæði',button:'Setja inn hnapp',select:'Setja inn lista',imageButton:'Setja inn myndahnapp',notSet:'<ekkert valið>',id:'Auðkenni',name:'Nafn',langDir:'Lesstefna',langDirLtr:'Frá vinstri til hægri (LTR)',langDirRtl:'Frá hægri til vinstri (RTL)',langCode:'Tungumálakóði',longDescr:'Nánari lýsing',cssClass:'Stílsniðsflokkur',advisoryTitle:'Titill',cssStyle:'Stíll',ok:'Í lagi',cancel:'Hætta við',close:'Close',preview:'Preview',generalTab:'Almennt',advancedTab:'Tæknilegt',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Breidd',height:'Hæð',align:'Jöfnun',alignLeft:'Vinstri',alignRight:'Hægri',alignCenter:'Miðjað',alignTop:'Efst',alignMiddle:'Miðjuð',alignBottom:'Neðst',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Setja inn merki',title:'Velja tákn',options:'Special Character Options'},link:{toolbar:'Stofna/breyta stiklu',other:'<annar>',menu:'Breyta stiklu',title:'Stikla',info:'Almennt',target:'Mark',upload:'Senda upp',advanced:'Tæknilegt',type:'Stikluflokkur',toUrl:'URL',toAnchor:'Bókamerki á þessari síðu',toEmail:'Netfang',targetFrame:'<rammi>',targetPopup:'<sprettigluggi>',targetFrameName:'Nafn markglugga',targetPopupName:'Nafn sprettiglugga',popupFeatures:'Eigindi sprettiglugga',popupResizable:'Resizable',popupStatusBar:'Stöðustika',popupLocationBar:'Fanglína',popupToolbar:'Verkfærastika',popupMenuBar:'Vallína',popupFullScreen:'Heilskjár (IE)',popupScrollBars:'Skrunstikur',popupDependent:'Háð venslum (Netscape)',popupLeft:'Fjarlægð frá vinstri',popupTop:'Fjarlægð frá efri brún',id:'Id',langDir:'Lesstefna',langDirLTR:'Frá vinstri til hægri (LTR)',langDirRTL:'Frá hægri til vinstri (RTL)',acccessKey:'Skammvalshnappur',name:'Nafn',langCode:'Lesstefna',tabIndex:'Raðnúmer innsláttarreits',advisoryTitle:'Titill',advisoryContentType:'Tegund innihalds',cssClasses:'Stílsniðsflokkur',charset:'Táknróf',styles:'Stíll',rel:'Relationship',selectAnchor:'Veldu akkeri',anchorName:'Eftir akkerisnafni',anchorId:'Eftir auðkenni einingar',emailAddress:'Netfang',emailSubject:'Efni',emailBody:'Meginmál',noAnchors:'<Engin bókamerki á skrá>',noUrl:'Sláðu inn veffang stiklunnar!',noEmail:'Sláðu inn netfang!'},anchor:{toolbar:'Stofna/breyta kaflamerki',menu:'Eigindi kaflamerkis',title:'Eigindi kaflamerkis',name:'Nafn bókamerkis',errorName:'Sláðu inn nafn bókamerkis!',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Finna og skipta',find:'Leita',replace:'Skipta út',findWhat:'Leita að:',replaceWith:'Skipta út fyrir:',notFoundMsg:'Leitartexti fannst ekki!',findOptions:'Find Options',matchCase:'Gera greinarmun á¡ há¡- og lágstöfum',matchWord:'Aðeins heil orð',matchCyclic:'Match cyclic',replaceAll:'Skipta út allsstaðar',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Tafla',title:'Eigindi töflu',menu:'Eigindi töflu',deleteTable:'Fella töflu',rows:'Raðir',columns:'Dálkar',border:'Breidd ramma',widthPx:'myndeindir',widthPc:'prósent',widthUnit:'width unit',cellSpace:'Bil milli reita',cellPad:'Reitaspássía',caption:'Titill',summary:'Áfram',headers:'Fyrirsagnir',headersNone:'Engar',headersColumn:'Fyrsti dálkur',headersRow:'Fyrsta röð',headersBoth:'Hvort tveggja',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Reitur',insertBefore:'Skjóta inn reiti fyrir aftan',insertAfter:'Skjóta inn reiti fyrir framan',deleteCell:'Fella reit',merge:'Sameina reiti',mergeRight:'Sameina til hægri',mergeDown:'Sameina niður á við',splitHorizontal:'Kljúfa reit lárétt',splitVertical:'Kljúfa reit lóðrétt',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Röð',insertBefore:'Skjóta inn röð fyrir ofan',insertAfter:'Skjóta inn röð fyrir neðan',deleteRow:'Eyða röð'},column:{menu:'Dálkur',insertBefore:'Skjóta inn dálki vinstra megin',insertAfter:'Skjóta inn dálki hægra megin',deleteColumn:'Fella dálk'}},button:{title:'Eigindi hnapps',text:'Texti',type:'Gerð',typeBtn:'Hnappur',typeSbm:'Staðfesta',typeRst:'Hreinsa'},checkboxAndRadio:{checkboxTitle:'Eigindi markreits',radioTitle:'Eigindi valhnapps',value:'Gildi',selected:'Valið'},form:{title:'Eigindi innsláttarforms',menu:'Eigindi innsláttarforms',action:'Aðgerð',method:'Aðferð',encoding:'Encoding'},select:{title:'Eigindi lista',selectInfo:'Upplýsingar',opAvail:'Kostir',value:'Gildi',size:'Stærð',lines:'línur',chkMulti:'Leyfa fleiri kosti',opText:'Texti',opValue:'Gildi',btnAdd:'Bæta við',btnModify:'Breyta',btnUp:'Upp',btnDown:'Niður',btnSetValue:'Merkja sem valið',btnDelete:'Eyða'},textarea:{title:'Eigindi textasvæðis',cols:'Dálkar',rows:'Línur'},textfield:{title:'Eigindi textareits',name:'Nafn',value:'Gildi',charWidth:'Breidd (leturtákn)',maxChars:'Hámarksfjöldi leturtákna',type:'Gerð',typeText:'Texti',typePass:'Lykilorð'},hidden:{title:'Eigindi falins svæðis',name:'Nafn',value:'Gildi'},image:{title:'Eigindi myndar',titleButton:'Eigindi myndahnapps',menu:'Eigindi myndar',infoTab:'Almennt',btnUpload:'Hlaða upp',upload:'Hlaða upp',alt:'Baklægur texti',lockRatio:'Festa stærðarhlutfall',resetSize:'Reikna stærð',border:'Rammi',hSpace:'Vinstri bil',vSpace:'Hægri bil',alertUrl:'Sláðu inn slóðina að myndinni',linkTab:'Stikla',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Eigindi Flash',propertiesTab:'Properties',title:'Eigindi Flash',chkPlay:'Sjálfvirk spilun',chkLoop:'Endurtekning',chkMenu:'Sýna Flash-valmynd',chkFull:'Allow Fullscreen',scale:'Skali',scaleAll:'Sýna allt',scaleNoBorder:'Án ramma',scaleFit:'Fella skala að stærð',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs neðst',alignAbsMiddle:'Abs miðjuð',alignBaseline:'Grunnlína',alignTextTop:'Efri brún texta',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Bakgrunnslitur',hSpace:'Vinstri bil',vSpace:'Hægri bil',validateSrc:'Sláðu inn veffang stiklunnar!',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Villuleit',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Ekki í orðabókinni',changeTo:'Tillaga',btnIgnore:'Hunsa',btnIgnoreAll:'Hunsa allt',btnReplace:'Skipta',btnReplaceAll:'Skipta öllu',btnUndo:'Til baka',noSuggestions:'- engar tillögur -',progress:'Villuleit í gangi...',noMispell:'Villuleit lokið: Engin villa fannst',noChanges:'Villuleit lokið: Engu orði breytt',oneChange:'Villuleit lokið: Einu orði breytt',manyChanges:'Villuleit lokið: %1 orðum breytt',ieSpellDownload:'Villuleit ekki sett upp.<br>Viltu setja hana upp?'},smiley:{toolbar:'Svipur',title:'Velja svip',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Númeraður listi',bulletedlist:'Punktalisti',indent:'Minnka inndrátt',outdent:'Auka inndrátt',justify:{left:'Vinstrijöfnun',center:'Miðja texta',right:'Hægrijöfnun',block:'Jafna báðum megin'},blockquote:'Inndráttur',clipboard:{title:'Líma',cutError:'Öryggisstillingar vafrans þíns leyfa ekki klippingu texta með músaraðgerð. Notaðu lyklaborðið í klippa (Ctrl/Cmd+X).',copyError:'Öryggisstillingar vafrans þíns leyfa ekki afritun texta með músaraðgerð. Notaðu lyklaborðið í afrita (Ctrl/Cmd+C).',pasteMsg:'Límdu í svæðið hér að neðan og (<STRONG>Ctrl/Cmd+V</STRONG>) og smelltu á <STRONG>OK</STRONG>.',securityMsg:'Vegna öryggisstillinga í vafranum þínum fær ritillinn ekki beinan aðgang að klippuborðinu. Þú verður að líma innihaldið aftur inn í þennan glugga.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Líma úr Word',title:'Líma úr Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Líma sem ósniðinn texta',title:'Líma sem ósniðinn texta'},templates:{button:'Sniðmát',title:'Innihaldssniðmát',options:'Template Options',insertOption:'Skipta út raunverulegu innihaldi',selectPromptMsg:'Veldu sniðmát til að opna í ritlinum.<br>(Núverandi innihald víkur fyrir því!):',emptyListMsg:'(Ekkert sniðmát er skilgreint!)'},showBlocks:'Sýna blokkir',stylesCombo:{label:'Stílflokkur',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Stílsnið',panelTitle:'Stílsnið',tag_p:'Venjulegt letur',tag_pre:'Forsniðið',tag_address:'Vistfang',tag_h1:'Fyrirsögn 1',tag_h2:'Fyrirsögn 2',tag_h3:'Fyrirsögn 3',tag_h4:'Fyrirsögn 4',tag_h5:'Fyrirsögn 5',tag_h6:'Fyrirsögn 6',tag_div:'Venjulegt (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Leturgerð ',voiceLabel:'Font',panelTitle:'Leturgerð '},fontSize:{label:'Leturstærð ',voiceLabel:'Font Size',panelTitle:'Leturstærð '},colorButton:{textColorTitle:'Litur texta',bgColorTitle:'Bakgrunnslitur',panelTitle:'Colors',auto:'Sjálfval',more:'Fleiri liti...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'engar tillögur',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Eigindi skjals',title:'Eigindi skjals',design:'Design',meta:'Lýsigögn',chooseColor:'Choose',other:'<annar>',docTitle:'Titill síðu',charset:'Letursett',charsetOther:'Annað letursett',charsetASCII:'ASCII',charsetCE:'Mið-evrópskt',charsetCT:'Kínverskt, hefðbundið (Big5)',charsetCR:'Kýrilskt',charsetGR:'Grískt',charsetJP:'Japanskt',charsetKR:'Kóreskt',charsetTR:'Tyrkneskt',charsetUN:'Unicode (UTF-8)',charsetWE:'Vestur-evrópst',docType:'Flokkur skjalategunda',docTypeOther:'Annar flokkur skjalategunda',xhtmlDec:'Fella inn XHTML lýsingu',bgColor:'Bakgrunnslitur',bgImage:'Slóð bakgrunnsmyndar',bgFixed:'Læstur bakgrunnur',txtColor:'Litur texta',margin:'Hliðarspássía',marginTop:'Efst',marginLeft:'Vinstri',marginRight:'Hægri',marginBottom:'Neðst',metaKeywords:'Lykilorð efnisorðaskrár (aðgreind með kommum)',metaDescription:'Lýsing skjals',metaAuthor:'Höfundur',metaCopyright:'Höfundarréttur',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/he.js��������������������������������������������0000664�0001750�0001750�00000053702�12262650742�021736� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.he={dir:'rtl',editorTitle:'עורך טקסט עשיר, %1',editorHelp:'לחץ אלט ALT + 0 לעזרה',toolbars:'סרגלי כלים של העורך',editor:'עורך טקסט עשיר',source:'מקור',newPage:'דף חדש',save:'שמירה',preview:'תצוגה מקדימה',cut:'גזירה',copy:'העתקה',paste:'הדבקה',print:'הדפסה',underline:'קו תחתון',bold:'מודגש',italic:'נטוי',selectAll:'בחירת הכל',removeFormat:'הסרת העיצוב',strike:'כתיב מחוק',subscript:'כתיב תחתון',superscript:'כתיב עליון',horizontalrule:'הוספת קו אופקי',pagebreak:'הוספת שבירת דף',pagebreakAlt:'שבירת דף',unlink:'הסרת הקישור',undo:'ביטול צעד אחרון',redo:'חזרה על צעד אחרון',common:{browseServer:'סייר השרת',url:'כתובת (URL)',protocol:'פרוטוקול',upload:'העלאה',uploadSubmit:'שליחה לשרת',image:'תמונה',flash:'פלאש',form:'טופס',checkbox:'תיבת סימון',radio:'לחצן אפשרויות',textField:'שדה טקסט',textarea:'איזור טקסט',hiddenField:'שדה חבוי',button:'כפתור',select:'שדה בחירה',imageButton:'כפתור תמונה',notSet:'<לא נקבע>',id:'זיהוי (ID)',name:'שם',langDir:'כיוון שפה',langDirLtr:'שמאל לימין (LTR)',langDirRtl:'ימין לשמאל (RTL)',langCode:'קוד שפה',longDescr:'קישור לתיאור מפורט',cssClass:'מחלקת עיצוב (CSS Class)',advisoryTitle:'כותרת מוצעת',cssStyle:'סגנון',ok:'אישור',cancel:'ביטול',close:'סגירה',preview:'תצוגה מקדימה',generalTab:'כללי',advancedTab:'אפשרויות מתקדמות',validateNumberFailed:'הערך חייב להיות מספרי.',confirmNewPage:'כל השינויים שלא נשמרו יאבדו. האם להעלות דף חדש?',confirmCancel:'חלק מהאפשרויות שונו, האם לסגור את הדיאלוג?',options:'אפשרויות',target:'מטרה',targetNew:'חלון חדש (_blank)',targetTop:'החלון העליון ביותר (_top)',targetSelf:'אותו חלון (_self)',targetParent:'חלון האב (_parent)',langDirLTR:'שמאל לימין (LTR)',langDirRTL:'ימין לשמאל (RTL)',styles:'סגנון',cssClasses:'מחלקות גליונות סגנון',width:'רוחב',height:'גובה',align:'יישור',alignLeft:'לשמאל',alignRight:'לימין',alignCenter:'מרכז',alignTop:'למעלה',alignMiddle:'לאמצע',alignBottom:'לתחתית',invalidValue:'Invalid value.',invalidHeight:'הגובה חייב להיות מספר.',invalidWidth:'הרוחב חייב להיות מספר.',invalidCssLength:'הערך שצוין לשדה "%1" חייב להיות מספר חיובי עם או ללא יחידת מידה חוקית של CSS (px, %, in, cm, mm, em, ex, pt, או pc).',invalidHtmlLength:'הערך שצוין לשדה "%1" חייב להיות מספר חיובי עם או ללא יחידת מידה חוקית של HTML (px או %).',invalidInlineStyle:'הערך שצויין לשדה הסגנון חייב להכיל זוג ערכים אחד או יותר בפורמט "שם : ערך", מופרדים על ידי נקודה-פסיק.',cssLengthTooltip:'יש להכניס מספר המייצג פיקסלים או מספר עם יחידת גליונות סגנון תקינה (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, לא זמין</span>'},contextmenu:{options:'אפשרויות תפריט ההקשר'},specialChar:{toolbar:'הוספת תו מיוחד',title:'בחירת תו מיוחד',options:'אפשרויות תווים מיוחדים'},link:{toolbar:'הוספת/עריכת קישור',other:'<אחר>',menu:'מאפייני קישור',title:'קישור',info:'מידע על הקישור',target:'מטרה',upload:'העלאה',advanced:'אפשרויות מתקדמות',type:'סוג קישור',toUrl:'כתובת (URL)',toAnchor:'עוגן בעמוד זה',toEmail:'דוא"ל',targetFrame:'<מסגרת>',targetPopup:'<חלון קופץ>',targetFrameName:'שם מסגרת היעד',targetPopupName:'שם החלון הקופץ',popupFeatures:'תכונות החלון הקופץ',popupResizable:'שינוי גודל',popupStatusBar:'סרגל חיווי',popupLocationBar:'סרגל כתובת',popupToolbar:'סרגל הכלים',popupMenuBar:'סרגל תפריט',popupFullScreen:'מסך מלא (IE)',popupScrollBars:'ניתן לגלילה',popupDependent:'תלוי (Netscape)',popupLeft:'מיקום צד שמאל',popupTop:'מיקום צד עליון',id:'זיהוי (ID)',langDir:'כיוון שפה',langDirLTR:'שמאל לימין (LTR)',langDirRTL:'ימין לשמאל (RTL)',acccessKey:'מקש גישה',name:'שם',langCode:'קוד שפה',tabIndex:'מספר טאב',advisoryTitle:'כותרת מוצעת',advisoryContentType:'Content Type מוצע',cssClasses:'גיליונות עיצוב קבוצות',charset:'קידוד המשאב המקושר',styles:'סגנון',rel:'קשר גומלין',selectAnchor:'בחירת עוגן',anchorName:'עפ"י שם העוגן',anchorId:'עפ"י זיהוי (ID) האלמנט',emailAddress:'כתובת הדוא"ל',emailSubject:'נושא ההודעה',emailBody:'גוף ההודעה',noAnchors:'(אין עוגנים זמינים בדף)',noUrl:'יש להקליד את כתובת הקישור (URL)',noEmail:'יש להקליד את כתובת הדוא"ל'},anchor:{toolbar:'הוספת/עריכת נקודת עיגון',menu:'מאפייני נקודת עיגון',title:'מאפייני נקודת עיגון',name:'שם לנקודת עיגון',errorName:'יש להקליד שם לנקודת עיגון',remove:'מחיקת נקודת עיגון'},list:{numberedTitle:'תכונות רשימה ממוספרת',bulletedTitle:'תכונות רשימת תבליטים',type:'סוג',start:'תחילת מספור',validateStartNumber:'שדה תחילת המספור חייב להכיל מספר שלם.',circle:'עיגול ריק',disc:'עיגול מלא',square:'ריבוע',none:'ללא',notset:'<לא נקבע>',armenian:'ספרות ארמניות',georgian:"ספרות גיאורגיות (an, ban, gan וכו')",lowerRoman:"ספירה רומית באותיות קטנות (i, ii, iii, iv, v וכו')",upperRoman:"ספירה רומיות באותיות גדולות (I, II, III, IV, V וכו')",lowerAlpha:"אותיות אנגליות קטנות (a, b, c, d, e וכו')",upperAlpha:"אותיות אנגליות גדולות (A, B, C, D, E וכו')",lowerGreek:"אותיות יווניות קטנות (alpha, beta, gamma וכו')",decimal:"ספרות (1, 2, 3 וכו')",decimalLeadingZero:"ספרות עם 0 בהתחלה (01, 02, 03 וכו')"},findAndReplace:{title:'חיפוש והחלפה',find:'חיפוש',replace:'החלפה',findWhat:'חיפוש מחרוזת:',replaceWith:'החלפה במחרוזת:',notFoundMsg:'הטקסט המבוקש לא נמצא.',findOptions:'אפשרויות חיפוש',matchCase:'הבחנה בין אותיות רשיות לקטנות (Case)',matchWord:'התאמה למילה המלאה',matchCyclic:'התאמה מחזורית',replaceAll:'החלפה בכל העמוד',replaceSuccessMsg:'%1 טקסטים הוחלפו.'},table:{toolbar:'טבלה',title:'מאפייני טבלה',menu:'מאפייני טבלה',deleteTable:'מחק טבלה',rows:'שורות',columns:'עמודות',border:'גודל מסגרת',widthPx:'פיקסלים',widthPc:'אחוז',widthUnit:'יחידת רוחב',cellSpace:'מרווח תא',cellPad:'ריפוד תא',caption:'כיתוב',summary:'תקציר',headers:'כותרות',headersNone:'אין',headersColumn:'עמודה ראשונה',headersRow:'שורה ראשונה',headersBoth:'שניהם',invalidRows:'שדה מספר השורות חייב להיות מספר גדול מ 0.',invalidCols:'שדה מספר העמודות חייב להיות מספר גדול מ 0.',invalidBorder:'שדה גודל המסגרת חייב להיות מספר.',invalidWidth:'שדה רוחב הטבלה חייב להיות מספר.',invalidHeight:'שדה גובה הטבלה חייב להיות מספר.',invalidCellSpacing:'שדה ריווח התאים חייב להיות מספר חיובי.',invalidCellPadding:'שדה ריפוד התאים חייב להיות מספר חיובי.',cell:{menu:'מאפייני תא',insertBefore:'הוספת תא לפני',insertAfter:'הוספת תא אחרי',deleteCell:'מחיקת תאים',merge:'מיזוג תאים',mergeRight:'מזג ימינה',mergeDown:'מזג למטה',splitHorizontal:'פיצול תא אופקית',splitVertical:'פיצול תא אנכית',title:'תכונות התא',cellType:'סוג התא',rowSpan:'מתיחת השורות',colSpan:'מתיחת התאים',wordWrap:'מניעת גלישת שורות',hAlign:'יישור אופקי',vAlign:'יישור אנכי',alignBaseline:'שורת בסיס',bgColor:'צבע רקע',borderColor:'צבע מסגרת',data:'מידע',header:'כותרת',yes:'כן',no:'לא',invalidWidth:'שדה רוחב התא חייב להיות מספר.',invalidHeight:'שדה גובה התא חייב להיות מספר.',invalidRowSpan:'שדה מתיחת השורות חייב להיות מספר שלם.',invalidColSpan:'שדה מתיחת העמודות חייב להיות מספר שלם.',chooseColor:'בחר'},row:{menu:'שורה',insertBefore:'הוספת שורה לפני',insertAfter:'הוספת שורה אחרי',deleteRow:'מחיקת שורות'},column:{menu:'עמודה',insertBefore:'הוספת עמודה לפני',insertAfter:'הוספת עמודה אחרי',deleteColumn:'מחיקת עמודות'}},button:{title:'מאפייני כפתור',text:'טקסט (ערך)',type:'סוג',typeBtn:'כפתור',typeSbm:'שליחה',typeRst:'איפוס'},checkboxAndRadio:{checkboxTitle:'מאפייני תיבת סימון',radioTitle:'מאפייני לחצן אפשרויות',value:'ערך',selected:'מסומן'},form:{title:'מאפיני טופס',menu:'מאפיני טופס',action:'שלח אל',method:'סוג שליחה',encoding:'קידוד'},select:{title:'מאפייני שדה בחירה',selectInfo:'מידע',opAvail:'אפשרויות זמינות',value:'ערך',size:'גודל',lines:'שורות',chkMulti:'איפשור בחירות מרובות',opText:'טקסט',opValue:'ערך',btnAdd:'הוספה',btnModify:'שינוי',btnUp:'למעלה',btnDown:'למטה',btnSetValue:'קביעה כברירת מחדל',btnDelete:'מחיקה'},textarea:{title:'מאפייני איזור טקסט',cols:'עמודות',rows:'שורות'},textfield:{title:'מאפייני שדה טקסט',name:'שם',value:'ערך',charWidth:'רוחב לפי תווים',maxChars:'מקסימום תווים',type:'סוג',typeText:'טקסט',typePass:'סיסמה'},hidden:{title:'מאפיני שדה חבוי',name:'שם',value:'ערך'},image:{title:'מאפייני התמונה',titleButton:'מאפיני כפתור תמונה',menu:'תכונות התמונה',infoTab:'מידע על התמונה',btnUpload:'שליחה לשרת',upload:'העלאה',alt:'טקסט חלופי',lockRatio:'נעילת היחס',resetSize:'איפוס הגודל',border:'מסגרת',hSpace:'מרווח אופקי',vSpace:'מרווח אנכי',alertUrl:'יש להקליד את כתובת התמונה',linkTab:'קישור',button2Img:'האם להפוך את תמונת הכפתור לתמונה פשוטה?',img2Button:'האם להפוך את התמונה לכפתור תמונה?',urlMissing:'כתובת התמונה חסרה.',validateBorder:'שדה המסגרת חייב להיות מספר שלם.',validateHSpace:'שדה המרווח האופקי חייב להיות מספר שלם.',validateVSpace:'שדה המרווח האנכי חייב להיות מספר שלם.'},flash:{properties:'מאפייני פלאש',propertiesTab:'מאפיינים',title:'מאפיני פלאש',chkPlay:'ניגון אוטומטי',chkLoop:'לולאה',chkMenu:'אפשר תפריט פלאש',chkFull:'אפשר חלון מלא',scale:'גודל',scaleAll:'הצג הכל',scaleNoBorder:'ללא גבולות',scaleFit:'התאמה מושלמת',access:'גישת סקריפט',accessAlways:'תמיד',accessSameDomain:'דומיין זהה',accessNever:'אף פעם',alignAbsBottom:'לתחתית האבסולוטית',alignAbsMiddle:'מרכוז אבסולוטי',alignBaseline:'לקו התחתית',alignTextTop:'לראש הטקסט',quality:'איכות',qualityBest:'מעולה',qualityHigh:'גבוהה',qualityAutoHigh:'גבוהה אוטומטית',qualityMedium:'ממוצעת',qualityAutoLow:'נמוכה אוטומטית',qualityLow:'נמוכה',windowModeWindow:'חלון',windowModeOpaque:'אטום',windowModeTransparent:'שקוף',windowMode:'מצב חלון',flashvars:'משתנים לפלאש',bgcolor:'צבע רקע',hSpace:'מרווח אופקי',vSpace:'מרווח אנכי',validateSrc:'יש להקליד את כתובת סרטון הפלאש (URL)',validateHSpace:'המרווח האופקי חייב להיות מספר.',validateVSpace:'המרווח האנכי חייב להיות מספר.'},spellCheck:{toolbar:'בדיקת איות',title:'בדיקת איות',notAvailable:'לא נמצא שירות זמין.',errorLoading:'שגיאה בהעלאת השירות: %s.',notInDic:'לא נמצא במילון',changeTo:'שינוי ל',btnIgnore:'התעלמות',btnIgnoreAll:'התעלמות מהכל',btnReplace:'החלפה',btnReplaceAll:'החלפת הכל',btnUndo:'החזרה',noSuggestions:'- אין הצעות -',progress:'בודק האיות בתהליך בדיקה....',noMispell:'בדיקות איות הסתיימה: לא נמצאו שגיאות כתיב',noChanges:'בדיקות איות הסתיימה: לא שונתה אף מילה',oneChange:'בדיקות איות הסתיימה: שונתה מילה אחת',manyChanges:'בדיקות איות הסתיימה: %1 מילים שונו',ieSpellDownload:'בודק האיות לא מותקן, האם להורידו?'},smiley:{toolbar:'סמיילי',title:'הוספת סמיילי',options:'אפשרויות סמיילים'},elementsPath:{eleLabel:'עץ האלמנטים',eleTitle:'%1 אלמנט'},numberedlist:'רשימה ממוספרת',bulletedlist:'רשימת נקודות',indent:'הגדלת הזחה',outdent:'הקטנת הזחה',justify:{left:'יישור לשמאל',center:'מרכוז',right:'יישור לימין',block:'יישור לשוליים'},blockquote:'בלוק ציטוט',clipboard:{title:'הדבקה',cutError:'הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות גזירה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl/Cmd+X).',copyError:'הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות העתקה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl/Cmd+C).',pasteMsg:'נא להדביק בתוך הקופסה באמצעות (<b>Ctrl/Cmd+V</b>) וללחוץ על <b>אישור</b>.',securityMsg:'עקב הגדרות אבטחה בדפדפן, לא ניתן לגשת אל לוח הגזירים (Clipboard) בצורה ישירה. נא להדביק שוב בחלון זה.',pasteArea:'איזור הדבקה'},pastefromword:{confirmCleanup:'נראה הטקסט שבכוונתך להדביק מקורו בקובץ וורד. האם ברצונך לנקות אותו טרם ההדבקה?',toolbar:'הדבקה מ-Word',title:'הדבקה מ-Word',error:'לא ניתן היה לנקות את המידע בשל תקלה פנימית.'},pasteText:{button:'הדבקה כטקסט פשוט',title:'הדבקה כטקסט פשוט'},templates:{button:'תבניות',title:'תביות תוכן',options:'אפשרויות התבניות',insertOption:'החלפת תוכן ממשי',selectPromptMsg:'יש לבחור תבנית לפתיחה בעורך.<br />התוכן המקורי ימחק:',emptyListMsg:'(לא הוגדרו תבניות)'},showBlocks:'הצגת בלוקים',stylesCombo:{label:'סגנון',panelTitle:'סגנונות פורמט',panelTitle1:'סגנונות בלוק',panelTitle2:'סגנונות רצף',panelTitle3:'סגנונות אובייקט'},format:{label:'עיצוב',panelTitle:'עיצוב',tag_p:'נורמלי',tag_pre:'קוד',tag_address:'כתובת',tag_h1:'כותרת',tag_h2:'כותרת 2',tag_h3:'כותרת 3',tag_h4:'כותרת 4',tag_h5:'כותרת 5',tag_h6:'כותרת 6',tag_div:'נורמלי (DIV)'},div:{title:'יצירת מיכל (Div)',toolbar:'יצירת מיכל (Div)',cssClassInputLabel:'מחלקת עיצוב',styleSelectLabel:'סגנון',IdInputLabel:'מזהה (ID)',languageCodeInputLabel:'קוד שפה',inlineStyleInputLabel:'סגנון פנימי',advisoryTitleInputLabel:'כותרת מוצעת',langDirLabel:'כיוון שפה',langDirLTRLabel:'שמאל לימין (LTR)',langDirRTLLabel:'ימין לשמאל (RTL)',edit:'עריכת מיכל (Div)',remove:'הסרת מיכל (Div)'},iframe:{title:'מאפייני חלון פנימי (iframe)',toolbar:'חלון פנימי (iframe)',noUrl:'יש להכניס כתובת לחלון.',scrolling:'אפשר פסי גלילה',border:'הראה מסגרת לחלון'},font:{label:'גופן',voiceLabel:'גופן',panelTitle:'גופן'},fontSize:{label:'גודל',voiceLabel:'גודל',panelTitle:'גודל'},colorButton:{textColorTitle:'צבע טקסט',bgColorTitle:'צבע רקע',panelTitle:'צבעים',auto:'אוטומטי',more:'צבעים נוספים...'},colors:{'000':'שחור',800000:'סגול כהה','8B4513':'חום בהיר','2F4F4F':'אפור צפחה','008080':'כחול-ירוק','000080':'כחול-סגול','4B0082':'אינדיגו',696969:'אפור מעומעם',B22222:'אדום-חום',A52A2A:'חום',DAA520:'כתום זהב','006400':'ירוק כהה','40E0D0':'טורקיז','0000CD':'כחול בינוני',800080:'סגול',808080:'אפור',F00:'אדום',FF8C00:'כתום כהה',FFD700:'זהב','008000':'ירוק','0FF':'ציאן','00F':'כחול',EE82EE:'סגלגל',A9A9A9:'אפור כהה',FFA07A:'כתום-וורוד',FFA500:'כתום',FFFF00:'צהוב','00FF00':'ליים',AFEEEE:'טורקיז בהיר',ADD8E6:'כחול בהיר',DDA0DD:'שזיף',D3D3D3:'אפור בהיר',FFF0F5:'לבנדר מסמיק',FAEBD7:'לבן עתיק',FFFFE0:'צהוב בהיר',F0FFF0:'טל דבש',F0FFFF:'תכלת',F0F8FF:'כחול טיפת מים',E6E6FA:'לבנדר',FFF:'לבן'},scayt:{title:'בדיקת איות בזמן כתיבה (SCAYT)',opera_title:'לא זמין בדפדפן אופרה',enable:'אפשר SCAYT',disable:'בטל SCAYT',about:'אודות SCAYT',toggle:'שינוי SCAYT',options:'אפשרויות',langs:'שפות',moreSuggestions:'הצעות נוספות',ignore:'התעלמות',ignoreAll:'התעלמות מהכל',addWord:'הוספת מילה',emptyDic:'יש לבחור מילון.',noSuggestions:'אין הצעות',optionsTab:'אפשרויות',allCaps:'התעלם ממילים שכל אותיותיהן גדולות',ignoreDomainNames:'התעלם משמות מתחם',mixedCase:'התעלם ממילים עם אותיות גדולות וקטנות ביחד',mixedWithDigits:'התעלם ממילים עם מספרים',languagesTab:'שפות',dictionariesTab:'מילון',dic_field_name:'שם המילון',dic_create:'יצירה',dic_restore:'שחזור',dic_delete:'מחיקה',dic_rename:'שינוי שם',dic_info:'בהתחלה מילון המשתמש מאוחסן בעוגיה, אך עוגיות מוגבלות במקום. כאשר המילון מגיע לגודל בו הוא אינו יכול להתאכסן בעוגיה, המילון צריך להתאכסן בשרתנו. לשם כך עליך לתת שם למילון. אם כבר יש לך מילון מאוחסן, יש להכניס את שמו וללחוץ על כפתור השחזור.',aboutTab:'אודות'},about:{title:'אודות CKEditor',dlgTitle:'אודות CKEditor',help:'היכנסו ל$1 לעזרה.',userGuide:'מדריך המשתמש של CKEditor',moreInfo:'למידע נוסף בקרו באתרנו:',copy:'Copyright © $1. כל הזכויות שמורות.'},maximize:'הגדלה למקסימום',minimize:'הקטנה למינימום',fakeobjects:{anchor:'עוגן',flash:'סרטון פלאש',iframe:'חלון פנימי (iframe)',hiddenfield:'שדה חבוי',unknown:'אובייקט לא ידוע'},resize:'יש לגרור בכדי לשנות את הגודל',colordialog:{title:'בחירת צבע',options:'אפשרויות צבע',highlight:'סימון',selected:'בחירה',clear:'ניקוי'},toolbarCollapse:'מזעור סרגל כלים',toolbarExpand:'הרחבת סרגל כלים',toolbarGroups:{document:'מסמך',clipboard:'לוח הגזירים (Clipboard)/צעד אחרון',editing:'עריכה',forms:'טפסים',basicstyles:'עיצוב בסיסי',paragraph:'פסקה',links:'קישורים',insert:'הכנסה',styles:'עיצוב',colors:'צבעים',tools:'כלים'},bidi:{ltr:'כיוון טקסט משמאל לימין (LTR)',rtl:'כיוון טקסט מימין לשמאל (RTL)'},docprops:{label:'מאפייני מסמך',title:'מאפייני מסמך',design:'עיצוב',meta:'תגי Meta',chooseColor:'בחירה',other:'אחר...',docTitle:'כותרת עמוד',charset:'קידוד תווים',charsetOther:'קידוד תווים אחר',charsetASCII:'ASCII',charsetCE:'מרכז אירופאי',charsetCT:'סיני מסורתי (Big5)',charsetCR:'קירילי',charsetGR:'יווני',charsetJP:'יפני',charsetKR:'קוריאני',charsetTR:'טורקי',charsetUN:'יוניקוד (UTF-8)',charsetWE:'מערב אירופאי',docType:'כותר סוג מסמך',docTypeOther:'כותר סוג מסמך אחר',xhtmlDec:'כלול הכרזות XHTML',bgColor:'צבע רקע',bgImage:'כתובת של תמונת רקע',bgFixed:'רקע לא נגלל (צמוד)',txtColor:'צבע טקסט',margin:'מרווחי עמוד',marginTop:'עליון',marginLeft:'שמאלי',marginRight:'ימני',marginBottom:'תחתון',metaKeywords:'מילות מפתח של המסמך (מופרדות בפסיק)',metaDescription:'תיאור המסמך',metaAuthor:'מחבר/ת',metaCopyright:'זכויות יוצרים',previewHtml:'<p>זהו <strong>טקסט הדגמה</strong>. את/ה משתמש/ת ב<a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/hu.js��������������������������������������������0000664�0001750�0001750�00000046366�12262650742�021766� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.hu={dir:'ltr',editorTitle:'HTML szerkesztő, %1',editorHelp:'Press ALT 0 for help',toolbars:'Szerkesztő Eszköztár',editor:'HTML szerkesztő',source:'Forráskód',newPage:'Új oldal',save:'Mentés',preview:'Előnézet',cut:'Kivágás',copy:'Másolás',paste:'Beillesztés',print:'Nyomtatás',underline:'Aláhúzott',bold:'Félkövér',italic:'Dőlt',selectAll:'Mindent kijelöl',removeFormat:'Formázás eltávolítása',strike:'Áthúzott',subscript:'Alsó index',superscript:'Felső index',horizontalrule:'Elválasztóvonal beillesztése',pagebreak:'Oldaltörés beillesztése',pagebreakAlt:'Oldaltörés',unlink:'Hivatkozás törlése',undo:'Visszavonás',redo:'Ismétlés',common:{browseServer:'Böngészés a szerveren',url:'Hivatkozás',protocol:'Protokoll',upload:'Feltöltés',uploadSubmit:'Küldés a szerverre',image:'Kép',flash:'Flash',form:'Űrlap',checkbox:'Jelölőnégyzet',radio:'Választógomb',textField:'Szövegmező',textarea:'Szövegterület',hiddenField:'Rejtettmező',button:'Gomb',select:'Legördülő lista',imageButton:'Képgomb',notSet:'<nincs beállítva>',id:'Azonosító',name:'Név',langDir:'Írás iránya',langDirLtr:'Balról jobbra',langDirRtl:'Jobbról balra',langCode:'Nyelv kódja',longDescr:'Részletes leírás webcíme',cssClass:'Stíluskészlet',advisoryTitle:'Súgócimke',cssStyle:'Stílus',ok:'Rendben',cancel:'Mégsem',close:'Bezárás',preview:'Előnézet',generalTab:'Általános',advancedTab:'További opciók',validateNumberFailed:'A mezőbe csak számokat írhat.',confirmNewPage:'Minden nem mentett változás el fog veszni! Biztosan be szeretné tölteni az oldalt?',confirmCancel:'Az űrlap tartalma megváltozott, ám a változásokat nem rögzítette. Biztosan be szeretné zárni az űrlapot?',options:'Beállítások',target:'Cél',targetNew:'Új ablak (_blank)',targetTop:'Legfelső ablak (_top)',targetSelf:'Aktuális ablakban (_self)',targetParent:'Szülő ablak (_parent)',langDirLTR:'Balról jobbra (LTR)',langDirRTL:'Jobbról balra (RTL)',styles:'Stílus',cssClasses:'Stíluslap osztály',width:'Szélesség',height:'Magasság',align:'Igazítás',alignLeft:'Bal',alignRight:'Jobbra',alignCenter:'Középre',alignTop:'Tetejére',alignMiddle:'Középre',alignBottom:'Aljára',invalidValue:'Invalid value.',invalidHeight:'A magasság mezőbe csak számokat írhat.',invalidWidth:'A szélesség mezőbe csak számokat írhat.',invalidCssLength:'"%1"-hez megadott érték csakis egy pozitív szám lehet, esetleg egy érvényes CSS egységgel megjelölve(px, %, in, cm, mm, em, ex, pt vagy pc).',invalidHtmlLength:'"%1"-hez megadott érték csakis egy pozitív szám lehet, esetleg egy érvényes HTML egységgel megjelölve(px vagy %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, nem elérhető</span>'},contextmenu:{options:'Helyi menü opciók'},specialChar:{toolbar:'Speciális karakter beillesztése',title:'Speciális karakter választása',options:'Speciális karakter opciók'},link:{toolbar:'Hivatkozás beillesztése/módosítása',other:'<más>',menu:'Hivatkozás módosítása',title:'Hivatkozás tulajdonságai',info:'Alaptulajdonságok',target:'Tartalom megjelenítése',upload:'Feltöltés',advanced:'További opciók',type:'Hivatkozás típusa',toUrl:'URL',toAnchor:'Horgony az oldalon',toEmail:'E-Mail',targetFrame:'<keretben>',targetPopup:'<felugró ablakban>',targetFrameName:'Keret neve',targetPopupName:'Felugró ablak neve',popupFeatures:'Felugró ablak jellemzői',popupResizable:'Átméretezés',popupStatusBar:'Állapotsor',popupLocationBar:'Címsor',popupToolbar:'Eszköztár',popupMenuBar:'Menü sor',popupFullScreen:'Teljes képernyő (csak IE)',popupScrollBars:'Gördítősáv',popupDependent:'Szülőhöz kapcsolt (csak Netscape)',popupLeft:'Bal pozíció',popupTop:'Felső pozíció',id:'Id',langDir:'Írás iránya',langDirLTR:'Balról jobbra',langDirRTL:'Jobbról balra',acccessKey:'Billentyűkombináció',name:'Név',langCode:'Írás iránya',tabIndex:'Tabulátor index',advisoryTitle:'Súgócimke',advisoryContentType:'Súgó tartalomtípusa',cssClasses:'Stíluskészlet',charset:'Hivatkozott tartalom kódlapja',styles:'Stílus',rel:'Kapcsolat típusa',selectAnchor:'Horgony választása',anchorName:'Horgony név szerint',anchorId:'Azonosító szerint',emailAddress:'E-Mail cím',emailSubject:'Üzenet tárgya',emailBody:'Üzenet',noAnchors:'(Nincs horgony a dokumentumban)',noUrl:'Adja meg a hivatkozás webcímét',noEmail:'Adja meg az E-Mail címet'},anchor:{toolbar:'Horgony beillesztése/szerkesztése',menu:'Horgony tulajdonságai',title:'Horgony tulajdonságai',name:'Horgony neve',errorName:'Kérem adja meg a horgony nevét',remove:'Horgony eltávolítása'},list:{numberedTitle:'Sorszámozott lista tulajdonságai',bulletedTitle:'Pontozott lista tulajdonságai',type:'Típus',start:'Kezdőszám',validateStartNumber:'A kezdőszám nem lehet tört érték.',circle:'Kör',disc:'Korong',square:'Négyzet',none:'Nincs',notset:'<Nincs beállítva>',armenian:'Örmény számozás',georgian:'Grúz számozás (an, ban, gan, stb.)',lowerRoman:'Római kisbetűs (i, ii, iii, iv, v, stb.)',upperRoman:'Római nagybetűs (I, II, III, IV, V, stb.)',lowerAlpha:'Kisbetűs (a, b, c, d, e, stb.)',upperAlpha:'Nagybetűs (A, B, C, D, E, stb.)',lowerGreek:'Görög (alpha, beta, gamma, stb.)',decimal:'Arab számozás (1, 2, 3, stb.)',decimalLeadingZero:'Számozás bevezető nullákkal (01, 02, 03, stb.)'},findAndReplace:{title:'Keresés és csere',find:'Keresés',replace:'Csere',findWhat:'Keresett szöveg:',replaceWith:'Csere erre:',notFoundMsg:'A keresett szöveg nem található.',findOptions:'Find Options',matchCase:'kis- és nagybetű megkülönböztetése',matchWord:'csak ha ez a teljes szó',matchCyclic:'Ciklikus keresés',replaceAll:'Az összes cseréje',replaceSuccessMsg:'%1 egyezőség cserélve.'},table:{toolbar:'Táblázat',title:'Táblázat tulajdonságai',menu:'Táblázat tulajdonságai',deleteTable:'Táblázat törlése',rows:'Sorok',columns:'Oszlopok',border:'Szegélyméret',widthPx:'képpont',widthPc:'százalék',widthUnit:'Szélesség egység',cellSpace:'Cella térköz',cellPad:'Cella belső margó',caption:'Felirat',summary:'Leírás',headers:'Fejlécek',headersNone:'Nincsenek',headersColumn:'Első oszlop',headersRow:'Első sor',headersBoth:'Mindkettő',invalidRows:'A sorok számának nagyobbnak kell lenni mint 0.',invalidCols:'Az oszlopok számának nagyobbnak kell lenni mint 0.',invalidBorder:'A szegélyméret mezőbe csak számokat írhat.',invalidWidth:'A szélesség mezőbe csak számokat írhat.',invalidHeight:'A magasság mezőbe csak számokat írhat.',invalidCellSpacing:'A cella térköz mezőbe csak számokat írhat.',invalidCellPadding:'A cella belső margó mezőbe csak számokat írhat.',cell:{menu:'Cella',insertBefore:'Beszúrás balra',insertAfter:'Beszúrás jobbra',deleteCell:'Cellák törlése',merge:'Cellák egyesítése',mergeRight:'Cellák egyesítése jobbra',mergeDown:'Cellák egyesítése lefelé',splitHorizontal:'Cellák szétválasztása vízszintesen',splitVertical:'Cellák szétválasztása függőlegesen',title:'Cella tulajdonságai',cellType:'Cella típusa',rowSpan:'Függőleges egyesítés',colSpan:'Vízszintes egyesítés',wordWrap:'Hosszú sorok törése',hAlign:'Vízszintes igazítás',vAlign:'Függőleges igazítás',alignBaseline:'Alapvonalra',bgColor:'Háttér színe',borderColor:'Keret színe',data:'Adat',header:'Fejléc',yes:'Igen',no:'Nem',invalidWidth:'A szélesség mezőbe csak számokat írhat.',invalidHeight:'A magasság mezőbe csak számokat írhat.',invalidRowSpan:'A függőleges egyesítés mezőbe csak számokat írhat.',invalidColSpan:'A vízszintes egyesítés mezőbe csak számokat írhat.',chooseColor:'Válasszon'},row:{menu:'Sor',insertBefore:'Beszúrás fölé',insertAfter:'Beszúrás alá',deleteRow:'Sorok törlése'},column:{menu:'Oszlop',insertBefore:'Beszúrás balra',insertAfter:'Beszúrás jobbra',deleteColumn:'Oszlopok törlése'}},button:{title:'Gomb tulajdonságai',text:'Szöveg (Érték)',type:'Típus',typeBtn:'Gomb',typeSbm:'Küldés',typeRst:'Alaphelyzet'},checkboxAndRadio:{checkboxTitle:'Jelölőnégyzet tulajdonságai',radioTitle:'Választógomb tulajdonságai',value:'Érték',selected:'Kiválasztott'},form:{title:'Űrlap tulajdonságai',menu:'Űrlap tulajdonságai',action:'Adatfeldolgozást végző hivatkozás',method:'Adatküldés módja',encoding:'Kódolás'},select:{title:'Legördülő lista tulajdonságai',selectInfo:'Alaptulajdonságok',opAvail:'Elérhető opciók',value:'Érték',size:'Méret',lines:'sor',chkMulti:'több sor is kiválasztható',opText:'Szöveg',opValue:'Érték',btnAdd:'Hozzáad',btnModify:'Módosít',btnUp:'Fel',btnDown:'Le',btnSetValue:'Legyen az alapértelmezett érték',btnDelete:'Töröl'},textarea:{title:'Szövegterület tulajdonságai',cols:'Karakterek száma egy sorban',rows:'Sorok száma'},textfield:{title:'Szövegmező tulajdonságai',name:'Név',value:'Érték',charWidth:'Megjelenített karakterek száma',maxChars:'Maximális karakterszám',type:'Típus',typeText:'Szöveg',typePass:'Jelszó'},hidden:{title:'Rejtett mező tulajdonságai',name:'Név',value:'Érték'},image:{title:'Kép tulajdonságai',titleButton:'Képgomb tulajdonságai',menu:'Kép tulajdonságai',infoTab:'Alaptulajdonságok',btnUpload:'Küldés a szerverre',upload:'Feltöltés',alt:'Buborék szöveg',lockRatio:'Arány megtartása',resetSize:'Eredeti méret',border:'Keret',hSpace:'Vízsz. táv',vSpace:'Függ. táv',alertUrl:'Töltse ki a kép webcímét',linkTab:'Hivatkozás',button2Img:'A kiválasztott képgombból sima képet szeretne csinálni?',img2Button:'A kiválasztott képből képgombot szeretne csinálni?',urlMissing:'Hiányzik a kép URL-je',validateBorder:'A keret méretének egész számot kell beírni!',validateHSpace:'Vízszintes távolságnak egész számot kell beírni!',validateVSpace:'Függőleges távolságnak egész számot kell beírni!'},flash:{properties:'Flash tulajdonságai',propertiesTab:'Tulajdonságok',title:'Flash tulajdonságai',chkPlay:'Automata lejátszás',chkLoop:'Folyamatosan',chkMenu:'Flash menü engedélyezése',chkFull:'Teljes képernyő engedélyezése',scale:'Méretezés',scaleAll:'Mindent mutat',scaleNoBorder:'Keret nélkül',scaleFit:'Teljes kitöltés',access:'Szkript hozzáférés',accessAlways:'Mindig',accessSameDomain:'Azonos domainről',accessNever:'Soha',alignAbsBottom:'Legaljára',alignAbsMiddle:'Közepére',alignBaseline:'Alapvonalhoz',alignTextTop:'Szöveg tetejére',quality:'Minőség',qualityBest:'Legjobb',qualityHigh:'Jó',qualityAutoHigh:'Automata jó',qualityMedium:'Közepes',qualityAutoLow:'Automata gyenge',qualityLow:'Gyenge',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Ablak mód',flashvars:'Flash változók',bgcolor:'Háttérszín',hSpace:'Vízsz. táv',vSpace:'Függ. táv',validateSrc:'Adja meg a hivatkozás webcímét',validateHSpace:'A vízszintes távolsűág mezőbe csak számokat írhat.',validateVSpace:'A függőleges távolsűág mezőbe csak számokat írhat.'},spellCheck:{toolbar:'Helyesírás-ellenőrzés',title:'Helyesírás ellenörző',notAvailable:'Sajnálom, de a szolgáltatás jelenleg nem elérhető.',errorLoading:'Hiba a szolgáltatás host betöltése közben: %s.',notInDic:'Nincs a szótárban',changeTo:'Módosítás',btnIgnore:'Kihagyja',btnIgnoreAll:'Mindet kihagyja',btnReplace:'Csere',btnReplaceAll:'Összes cseréje',btnUndo:'Visszavonás',noSuggestions:'Nincs javaslat',progress:'Helyesírás-ellenőrzés folyamatban...',noMispell:'Helyesírás-ellenőrzés kész: Nem találtam hibát',noChanges:'Helyesírás-ellenőrzés kész: Nincs változtatott szó',oneChange:'Helyesírás-ellenőrzés kész: Egy szó cserélve',manyChanges:'Helyesírás-ellenőrzés kész: %1 szó cserélve',ieSpellDownload:'A helyesírás-ellenőrző nincs telepítve. Szeretné letölteni most?'},smiley:{toolbar:'Hangulatjelek',title:'Hangulatjel beszúrása',options:'Hangulatjel opciók'},elementsPath:{eleLabel:'Elem utak',eleTitle:'%1 elem'},numberedlist:'Számozás',bulletedlist:'Felsorolás',indent:'Behúzás növelése',outdent:'Behúzás csökkentése',justify:{left:'Balra',center:'Középre',right:'Jobbra',block:'Sorkizárt'},blockquote:'Idézet blokk',clipboard:{title:'Beillesztés',cutError:'A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a kivágás műveletet. Használja az alábbi billentyűkombinációt (Ctrl/Cmd+X).',copyError:'A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a másolás műveletet. Használja az alábbi billentyűkombinációt (Ctrl/Cmd+X).',pasteMsg:'Másolja be az alábbi mezőbe a <STRONG>Ctrl/Cmd+V</STRONG> billentyűk lenyomásával, majd nyomjon <STRONG>Rendben</STRONG>-t.',securityMsg:'A böngésző biztonsági beállításai miatt a szerkesztő nem képes hozzáférni a vágólap adataihoz. Illeszd be újra ebben az ablakban.',pasteArea:'Beszúrás mező'},pastefromword:{confirmCleanup:'Úgy tűnik a beillesztett szöveget Word-ből másolt át. Meg szeretné tisztítani a szöveget? (ajánlott)',toolbar:'Beillesztés Word-ből',title:'Beillesztés Word-ből',error:'Egy belső hiba miatt nem sikerült megtisztítani a szöveget'},pasteText:{button:'Beillesztés formázatlan szövegként',title:'Beillesztés formázatlan szövegként'},templates:{button:'Sablonok',title:'Elérhető sablonok',options:'Sablon opciók',insertOption:'Kicseréli a jelenlegi tartalmat',selectPromptMsg:'Válassza ki melyik sablon nyíljon meg a szerkesztőben<br>(a jelenlegi tartalom elveszik):',emptyListMsg:'(Nincs sablon megadva)'},showBlocks:'Blokkok megjelenítése',stylesCombo:{label:'Stílus',panelTitle:'Formázási stílusok',panelTitle1:'Blokk stílusok',panelTitle2:'Inline stílusok',panelTitle3:'Objektum stílusok'},format:{label:'Formátum',panelTitle:'Formátum',tag_p:'Normál',tag_pre:'Formázott',tag_address:'Címsor',tag_h1:'Fejléc 1',tag_h2:'Fejléc 2',tag_h3:'Fejléc 3',tag_h4:'Fejléc 4',tag_h5:'Fejléc 5',tag_h6:'Fejléc 6',tag_div:'Bekezdés (DIV)'},div:{title:'DIV tároló létrehozása',toolbar:'DIV tároló létrehozása',cssClassInputLabel:'Stíluslap osztály',styleSelectLabel:'Stílus',IdInputLabel:'Azonosító',languageCodeInputLabel:' Nyelv kódja',inlineStyleInputLabel:'Inline stílus',advisoryTitleInputLabel:'Tipp szöveg',langDirLabel:'Nyelvi irány',langDirLTRLabel:'Balról jobbra (LTR)',langDirRTLLabel:'Jobbról balra (RTL)',edit:'DIV szerkesztése',remove:'DIV eltávolítása'},iframe:{title:'IFrame Tulajdonságok',toolbar:'IFrame',noUrl:'Kérem írja be a iframe URL-t',scrolling:'Gördítősáv bekapcsolása',border:'Legyen keret'},font:{label:'Betűtípus',voiceLabel:'Betűtípus',panelTitle:'Betűtípus'},fontSize:{label:'Méret',voiceLabel:'Betűméret',panelTitle:'Méret'},colorButton:{textColorTitle:'Betűszín',bgColorTitle:'Háttérszín',panelTitle:'Színek',auto:'Automatikus',more:'További színek...'},colors:{'000':'Fekete',800000:'Bordó','8B4513':'Barna','2F4F4F':'Sötét türkiz','008080':'Türkiz','000080':'Király kék','4B0082':'Indigó kék',696969:'Szürke',B22222:'Tégla vörös',A52A2A:'Vörös',DAA520:'Arany sárga','006400':'Sötét zöld','40E0D0':'Türkiz','0000CD':'Kék',800080:'Lila',808080:'Szürke',F00:'Piros',FF8C00:'Sötét narancs',FFD700:'Arany','008000':'Zöld','0FF':'Türkiz','00F':'Kék',EE82EE:'Rózsaszín',A9A9A9:'Sötét szürke',FFA07A:'Lazac',FFA500:'Narancs',FFFF00:'Citromsárga','00FF00':'Neon zöld',AFEEEE:'Világos türkiz',ADD8E6:'Világos kék',DDA0DD:'Világos lila',D3D3D3:'Világos szürke',FFF0F5:'Lavender Blush',FAEBD7:'Törtfehér',FFFFE0:'Világos sárga',F0FFF0:'Menta',F0FFFF:'Azúr kék',F0F8FF:'Halvány kék',E6E6FA:'Lavender',FFF:'Fehér'},scayt:{title:'Helyesírás ellenőrzés gépelés közben',opera_title:'Az Opera nem támogatja',enable:'SCAYT engedélyezése',disable:'SCAYT letiltása',about:'SCAYT névjegy',toggle:'SCAYT kapcsolása',options:'Beállítások',langs:'Nyelvek',moreSuggestions:'További javaslatok',ignore:'Kihagy',ignoreAll:'Összes kihagyása',addWord:'Szó hozzáadása',emptyDic:'A szótár nevét meg kell adni.',noSuggestions:'Nincs javaslat',optionsTab:'Beállítások',allCaps:'Nagybetűs szavak kihagyása',ignoreDomainNames:'Domain nevek kihagyása',mixedCase:'Kis és nagybetűt is tartalmazó szavak kihagyása',mixedWithDigits:'Számokat tartalmazó szavak kihagyása',languagesTab:'Nyelvek',dictionariesTab:'Szótár',dic_field_name:'Szótár neve',dic_create:'Létrehozás',dic_restore:'Visszaállítás',dic_delete:'Törlés',dic_rename:'Átnevezés',dic_info:'Kezdetben a felhasználói szótár böngésző sütiben tárolódik. Azonban a sütik maximális mérete korlátozott. Amikora a szótár akkora lesz, hogy már sütiben nem lehet tárolni, akkor a szótárat tárolhatja a szerveren is. Ehhez egy nevet kell megadni a szótárhoz. Amennyiben már van szerveren tárolt szótára, adja meg a nevét és kattintson a visszaállítás gombra.',aboutTab:'Névjegy'},about:{title:'CKEditor névjegy',dlgTitle:'CKEditor névjegy',help:'Itt találsz segítséget: $1',userGuide:'CKEditor Felhasználói útmutató',moreInfo:'Licenszelési információkért kérjük látogassa meg weboldalunkat:',copy:'Copyright © $1. Minden jog fenntartva.'},maximize:'Teljes méret',minimize:'Kis méret',fakeobjects:{anchor:'Horgony',flash:'Flash animáció',iframe:'IFrame',hiddenfield:'Rejtett mezõ',unknown:'Ismeretlen objektum'},resize:'Húzza az átméretezéshez',colordialog:{title:'Válasszon színt',options:'Szín opciók',highlight:'Nagyítás',selected:'Kiválasztott',clear:'Ürítés'},toolbarCollapse:'Eszköztár összecsukása',toolbarExpand:'Eszköztár szétnyitása',toolbarGroups:{document:'Dokumentum',clipboard:'Vágólap/Visszavonás',editing:'Szerkesztés',forms:'Űrlapok',basicstyles:'Alapstílusok',paragraph:'Bekezdés',links:'Hivatkozások',insert:'Beszúrás',styles:'Stílusok',colors:'Színek',tools:'Eszközök'},bidi:{ltr:'Szöveg iránya balról jobbra',rtl:'Szöveg iránya jobbról balra'},docprops:{label:'Dokumentum tulajdonságai',title:'Dokumentum tulajdonságai',design:'Design',meta:'Meta adatok',chooseColor:'Válasszon',other:'<más>',docTitle:'Oldalcím',charset:'Karakterkódolás',charsetOther:'Más karakterkódolás',charsetASCII:'ASCII',charsetCE:'Közép-Európai',charsetCT:'Kínai Tradicionális (Big5)',charsetCR:'Cyrill',charsetGR:'Görög',charsetJP:'Japán',charsetKR:'Koreai',charsetTR:'Török',charsetUN:'Unicode (UTF-8)',charsetWE:'Nyugat-Európai',docType:'Dokumentum típus fejléc',docTypeOther:'Más dokumentum típus fejléc',xhtmlDec:'XHTML deklarációk beillesztése',bgColor:'Háttérszín',bgImage:'Háttérkép cím',bgFixed:'Nem gördíthető háttér',txtColor:'Betűszín',margin:'Oldal margók',marginTop:'Felső',marginLeft:'Bal',marginRight:'Jobb',marginBottom:'Alsó',metaKeywords:'Dokumentum keresőszavak (vesszővel elválasztva)',metaDescription:'Dokumentum leírás',metaAuthor:'Szerző',metaCopyright:'Szerzői jog',previewHtml:'<p>Ez itt egy <strong>példa</strong>. A <a href="javascript:void(0)">CKEditor</a>-t használod.</p>'}}; ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/cy.js��������������������������������������������0000664�0001750�0001750�00000043254�12262650742�021756� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.cy={dir:'ltr',editorTitle:'Golygydd testun cyfoethog, %1',editorHelp:'Gwasgwch ALT 0 am gymorth',toolbars:'Bariau offer golygydd',editor:'Golygydd Testun Cyfoethog',source:'HTML',newPage:'Tudalen newydd',save:'Cadw',preview:'Rhagolwg',cut:'Torri',copy:'Copïo',paste:'Gludo',print:'Argraffu',underline:'Tanlinellu',bold:'Bras',italic:'Italig',selectAll:'Dewis Popeth',removeFormat:'Tynnu Fformat',strike:'Llinell Trwyddo',subscript:'Is-sgript',superscript:'Uwchsgript',horizontalrule:'Mewnosod Llinell Lorweddol',pagebreak:'Mewnosod Toriad Tudalen i Argraffu',pagebreakAlt:'Toriad Tudalen',unlink:'Datgysylltu',undo:'Dadwneud',redo:'Ailadrodd',common:{browseServer:"Pori'r Gweinydd",url:'URL',protocol:'Protocol',upload:'Lanlwytho',uploadSubmit:"Anfon i'r Gweinydd",image:'Delwedd',flash:'Flash',form:'Ffurflen',checkbox:'Blwch ticio',radio:'Botwm Radio',textField:'Maes Testun',textarea:'Ardal Testun',hiddenField:'Maes Cudd',button:'Botwm',select:'Maes Dewis',imageButton:'Botwm Delwedd',notSet:'<heb osod>',id:'Id',name:'Name',langDir:'Cyfeiriad Iaith',langDirLtr:"Chwith i'r Dde (LTR)",langDirRtl:"Dde i'r Chwith (RTL)",langCode:'Cod Iaith',longDescr:'URL Disgrifiad Hir',cssClass:'Dosbarth Dalen Arddull',advisoryTitle:'Teitl Cynghorol',cssStyle:'Arddull',ok:'Iawn',cancel:'Diddymu',close:'Cau',preview:'Rhagolwg',generalTab:'Cyffredinol',advancedTab:'Uwch',validateNumberFailed:"Nid yw'r gwerth hwn yn rhif.",confirmNewPage:"Byddwch yn colli unrhyw newidiadau i'r cynnwys sydd heb eu cadw. A ydych am barhau i lwytho tudalen newydd?",confirmCancel:"Mae rhai o'r opsiynau wedi'u newid. A ydych wir am gau'r deialog?",options:'Opsiynau',target:'Targed',targetNew:'Ffenest Newydd (_blank)',targetTop:'Ffenest ar y Brig (_top)',targetSelf:'Yr un Ffenest (_self)',targetParent:'Ffenest y Rhiant (_parent)',langDirLTR:"Chwith i'r Dde (LTR)",langDirRTL:"Dde i'r Chwith (RTL)",styles:'Arddull',cssClasses:'Dosbarthiadau Ffeil Ddiwyg',width:'Lled',height:'Uchder',align:'Alinio',alignLeft:'Chwith',alignRight:'Dde',alignCenter:'Canol',alignTop:'Brig',alignMiddle:'Canol',alignBottom:'Gwaelod',invalidValue:'Gwerth annilys.',invalidHeight:"Rhaid i'r Uchder fod yn rhif.",invalidWidth:"Rhaid i'r Lled fod yn rhif.",invalidCssLength:"Mae'n rhaid i'r gwerth ar gyfer maes \"%1\" fod yn rhif positif gyda neu heb uned fesuriad CSS dilys (px, %, in, cm, mm, em, ex, pt, neu pc).",invalidHtmlLength:"Mae'n rhaid i'r gwerth ar gyfer maes \"%1\" fod yn rhif positif gyda neu heb uned fesuriad HTML dilys (px neu %).",invalidInlineStyle:"Mae'n rhaid i'r gwerth ar gyfer arddull mewn-llinell gynnwys un set neu fwy ar y fformat \"enw:gwerth\", wedi'u gwahanu gyda hanner colon.",cssLengthTooltip:'Rhowch rif ar gyfer gwerth mewn picsel neu rhif gydag uned CSS dilys (px, %, in, cm, mm, em, pt neu pc).',unavailable:'%1<span class="cke_accessibility">, ddim ar gael</span>'},contextmenu:{options:'Opsiynau Dewislen Cyd-destun'},specialChar:{toolbar:'Mewnosod Nodau Arbennig',title:'Dewis Nod Arbennig',options:'Opsiynau Nodau Arbennig'},link:{toolbar:'Dolen',other:'<eraill>',menu:'Golygu Dolen',title:'Dolen',info:'Gwyb ar y Ddolen',target:'Targed',upload:'Lanlwytho',advanced:'Uwch',type:'Math y Ddolen',toUrl:'URL',toAnchor:'Dolen at angor yn y testun',toEmail:'E-bost',targetFrame:'<ffrâm>',targetPopup:'<ffenestr bop>',targetFrameName:'Enw Ffrâm y Targed',targetPopupName:'Enw Ffenestr Bop',popupFeatures:'Nodweddion Ffenestr Bop',popupResizable:'Ailfeintiol',popupStatusBar:'Bar Statws',popupLocationBar:'Bar Safle',popupToolbar:'Bar Offer',popupMenuBar:'Dewislen',popupFullScreen:'Sgrin Llawn (IE)',popupScrollBars:'Barrau Sgrolio',popupDependent:'Dibynnol (Netscape)',popupLeft:'Safle Chwith',popupTop:'Safle Top',id:'Id',langDir:'Cyfeiriad Iaith',langDirLTR:"Chwith i'r Dde (LTR)",langDirRTL:"Dde i'r Chwith (RTL)",acccessKey:'Allwedd Mynediad',name:'Enw',langCode:'Cod Iaith',tabIndex:'Indecs Tab',advisoryTitle:'Teitl Cynghorol',advisoryContentType:'Math y Cynnwys Cynghorol',cssClasses:'Dosbarthiadau Dalen Arddull',charset:"Set nodau'r Adnodd Cysylltiedig",styles:'Arddull',rel:'Perthynas',selectAnchor:'Dewiswch Angor',anchorName:"Gan Enw'r Angor",anchorId:'Gan Id yr Elfen',emailAddress:'Cyfeiriad E-Bost',emailSubject:'Testun y Message Subject',emailBody:'Pwnc y Neges',noAnchors:'(Dim angorau ar gael yn y ddogfen)',noUrl:'Teipiwch URL y ddolen',noEmail:'Teipiwch gyfeiriad yr e-bost'},anchor:{toolbar:'Angor',menu:'Golygwch yr Angor',title:"Priodweddau'r Angor",name:"Enw'r Angor",errorName:"Teipiwch enw'r angor",remove:'Tynnwch yr Angor'},list:{numberedTitle:'Priodweddau Rhestr Rifol',bulletedTitle:'Priodweddau Rhestr Fwled',type:'Math',start:'Dechrau',validateStartNumber:'Rhaid bod y rhif cychwynnol yn gyfanrif.',circle:'Cylch',disc:'Disg',square:'Sgwâr',none:'Dim',notset:'<heb osod>',armenian:'Rhifau Armeneg',georgian:'Rhifau Sioraidd (an, ban, gan, ayyb.)',lowerRoman:'Rhufeinig Is (i, ii, iii, iv, v, ayyb.)',upperRoman:'Rhufeinig Uwch (I, II, III, IV, V, ayyb.)',lowerAlpha:'Alffa Is (a, b, c, d, e, ayyb.)',upperAlpha:'Alffa Uwch (A, B, C, D, E, ayyb.)',lowerGreek:'Groeg Is (alpha, beta, gamma, ayyb.)',decimal:'Degol (1, 2, 3, ayyb.)',decimalLeadingZero:'Degol â sero arweiniol (01, 02, 03, ayyb.)'},findAndReplace:{title:'Chwilio ac Amnewid',find:'Chwilio',replace:'Amnewid',findWhat:"Chwilio'r term:",replaceWith:'Amnewid gyda:',notFoundMsg:"Nid oedd y testun wedi'i ddarganfod.",findOptions:'Chwilio Opsiynau',matchCase:"Cyfateb i'r cas",matchWord:'Cyfateb gair cyfan',matchCyclic:'Cyfateb cylchol',replaceAll:'Amnewid pob un',replaceSuccessMsg:'Amnewidiwyd %1 achlysur.'},table:{toolbar:'Tabl',title:'Nodweddion Tabl',menu:'Nodweddion Tabl',deleteTable:'Dileu Tabl',rows:'Rhesi',columns:'Colofnau',border:'Maint yr Ymyl',widthPx:'picsel',widthPc:'y cant',widthUnit:'uned lled',cellSpace:"Bylchu'r gell",cellPad:"Padio'r gell",caption:'Pennawd',summary:'Crynodeb',headers:'Penynnau',headersNone:'Dim',headersColumn:'Colofn gyntaf',headersRow:'Rhes gyntaf',headersBoth:'Y Ddau',invalidRows:"Mae'n rhaid cael o leiaf un rhes.",invalidCols:"Mae'n rhaid cael o leiaf un golofn.",invalidBorder:"Mae'n rhaid i faint yr ymyl fod yn rhif.",invalidWidth:"Mae'n rhaid i led y tabl fod yn rhif.",invalidHeight:"Mae'n rhaid i uchder y tabl fod yn rhif.",invalidCellSpacing:"Mae'n rhaid i fylchiad y gell fod yn rhif positif.",invalidCellPadding:"Mae'n rhaid i badiad y gell fod yn rhif positif.",cell:{menu:'Cell',insertBefore:'Mewnosod Cell Cyn',insertAfter:'Mewnosod Cell Ar Ôl',deleteCell:'Dileu Celloedd',merge:'Cyfuno Celloedd',mergeRight:"Cyfuno i'r Dde",mergeDown:'Cyfuno i Lawr',splitHorizontal:"Hollti'r Gell yn Lorweddol",splitVertical:"Hollti'r Gell yn Fertigol",title:"Priodweddau'r Gell",cellType:'Math y Gell',rowSpan:'Rhychwant Rhesi',colSpan:'Rhychwant Colofnau',wordWrap:'Lapio Geiriau',hAlign:'Aliniad Llorweddol',vAlign:'Aliniad Fertigol',alignBaseline:'Baslinell',bgColor:'Lliw Cefndir',borderColor:'Lliw Ymyl',data:'Data',header:'Pennyn',yes:'Ie',no:'Na',invalidWidth:"Mae'n rhaid i led y gell fod yn rhif.",invalidHeight:"Mae'n rhaid i uchder y gell fod yn rhif.",invalidRowSpan:"Mae'n rhaid i rychwant y rhesi fod yn gyfanrif.",invalidColSpan:"Mae'n rhaid i rychwant y colofnau fod yn gyfanrif.",chooseColor:'Choose'},row:{menu:'Rhes',insertBefore:'Mewnosod Rhes Cyn',insertAfter:'Mewnosod Rhes Ar Ôl',deleteRow:'Dileu Rhesi'},column:{menu:'Colofn',insertBefore:'Mewnosod Colofn Cyn',insertAfter:'Mewnosod Colofn Ar Ôl',deleteColumn:'Dileu Colofnau'}},button:{title:'Priodweddau Botymau',text:'Testun (Gwerth)',type:'Math',typeBtn:'Botwm',typeSbm:'Gyrru',typeRst:'Ailosod'},checkboxAndRadio:{checkboxTitle:'Priodweddau Blwch Ticio',radioTitle:'Priodweddau Botwm Radio',value:'Gwerth',selected:'Dewiswyd'},form:{title:'Priodweddau Ffurflen',menu:'Priodweddau Ffurflen',action:'Gweithred',method:'Dull',encoding:'Amgodio'},select:{title:'Priodweddau Maes Dewis',selectInfo:'Gwyb Dewis',opAvail:'Opsiynau ar Gael',value:'Gwerth',size:'Maint',lines:'llinellau',chkMulti:'Caniatàu aml-ddewisiadau',opText:'Testun',opValue:'Gwerth',btnAdd:'Ychwanegu',btnModify:'Newid',btnUp:'Lan',btnDown:'Lawr',btnSetValue:'Gosod fel gwerth a ddewiswyd',btnDelete:'Dileu'},textarea:{title:'Priodweddau Ardal Testun',cols:'Colofnau',rows:'Rhesi'},textfield:{title:'Priodweddau Maes Testun',name:'Enw',value:'Gwerth',charWidth:'Lled Nod',maxChars:'Uchafswm y Nodau',type:'Math',typeText:'Testun',typePass:'Cyfrinair'},hidden:{title:'Priodweddau Maes Cudd',name:'Enw',value:'Gwerth'},image:{title:'Priodweddau Delwedd',titleButton:'Priodweddau Botwm Delwedd',menu:'Priodweddau Delwedd',infoTab:'Gwyb Delwedd',btnUpload:"Anfon i'r Gweinydd",upload:'lanlwytho',alt:'Testun Amgen',lockRatio:'Cloi Cymhareb',resetSize:'Ailosod Maint',border:'Ymyl',hSpace:'BwlchLl',vSpace:'BwlchF',alertUrl:'Rhowch URL y ddelwedd',linkTab:'Dolen',button2Img:"Ydych am drawsffurfio'r botwm ddelwedd hwn ar ddelwedd syml?",img2Button:"Ydych am drawsffurfio'r ddelwedd hon ar fotwm delwedd?",urlMissing:'URL gwreiddiol y ddelwedd ar goll.',validateBorder:"Rhaid i'r ymyl fod yn gyfanrif.",validateHSpace:"Rhaid i'r HSpace fod yn gyfanrif.",validateVSpace:"Rhaid i'r VSpace fod yn gyfanrif."},flash:{properties:'Priodweddau Flash',propertiesTab:'Priodweddau',title:'Priodweddau Flash',chkPlay:'AwtoChwarae',chkLoop:'Lwpio',chkMenu:'Galluogi Dewislen Flash',chkFull:'Caniatàu Sgrin Llawn',scale:'Graddfa',scaleAll:'Dangos pob',scaleNoBorder:'Dim Ymyl',scaleFit:'Ffit Union',access:'Mynediad Sgript',accessAlways:'Pob amser',accessSameDomain:"R'un parth",accessNever:'Byth',alignAbsBottom:'Gwaelod Abs',alignAbsMiddle:'Canol Abs',alignBaseline:'Baslinell',alignTextTop:'Testun Top',quality:'Ansawdd',qualityBest:'Gorau',qualityHigh:'Uchel',qualityAutoHigh:'Uchel Awto',qualityMedium:'Canolig',qualityAutoLow:'Isel Awto',qualityLow:'Isel',windowModeWindow:'Ffenestr',windowModeOpaque:'Afloyw',windowModeTransparent:'Tryloyw',windowMode:'Modd ffenestr',flashvars:'Newidynnau ar gyfer Flash',bgcolor:'Lliw cefndir',hSpace:'BwlchLl',vSpace:'BwlchF',validateSrc:'Ni all yr URL fod yn wag.',validateHSpace:"Rhaid i'r BwlchLl fod yn rhif.",validateVSpace:"Rhaid i'r BwlchF fod yn rhif."},spellCheck:{toolbar:'Gwirio Sillafu',title:'Gwirio Sillafu',notAvailable:"Nid yw'r gwasanaeth hwn ar gael yn bresennol.",errorLoading:'Error loading application service host: %s.',notInDic:"Nid i'w gael yn y geiriadur",changeTo:'Newid i',btnIgnore:'Anwybyddu Un',btnIgnoreAll:'Anwybyddu Pob',btnReplace:'Amnewid Un',btnReplaceAll:'Amnewid Pob',btnUndo:'Dadwneud',noSuggestions:'- Dim awgrymiadau -',progress:'Gwirio sillafu yn ar y gweill...',noMispell:'Gwirio sillafu wedi gorffen: Dim camsillaf.',noChanges:'Gwirio sillafu wedi gorffen: Dim newidiadau',oneChange:'Gwirio sillafu wedi gorffen: Newidiwyd 1 gair',manyChanges:'Gwirio sillafu wedi gorffen: Newidiwyd %1 gair',ieSpellDownload:'Gwirydd sillafu heb ei arsefydlu. A ydych am ei lawrlwytho nawr?'},smiley:{toolbar:'Gwenoglun',title:'Mewnosod Gwenoglun',options:'Opsiynau Gwenogluniau'},elementsPath:{eleLabel:'Llwybr elfennau',eleTitle:'Elfen %1'},numberedlist:'Mewnosod/Tynnu Rhestr Rhifol',bulletedlist:'Mewnosod/Tynnu Rhestr Bwled',indent:"Cynyddu'r Mewnoliad",outdent:"Lleihau'r Mewnoliad",justify:{left:"Alinio i'r Chwith",center:"Alinio i'r Canol",right:"Alinio i'r Dde",block:'Aliniad Bloc'},blockquote:'Dyfyniad bloc',clipboard:{title:'Gludo',cutError:"Nid yw gosodiadau diogelwch eich porwr yn caniatàu'r golygydd i gynnal 'gweithredoedd torri' yn awtomatig. Defnyddiwch y bysellfwrdd (Ctrl/Cmd+X).",copyError:"Nid yw gosodiadau diogelwch eich porwr yn caniatàu'r golygydd i gynnal 'gweithredoedd copïo' yn awtomatig. Defnyddiwch y bysellfwrdd (Ctrl/Cmd+C).",pasteMsg:"Gludwch i mewn i'r blwch canlynol gan ddefnyddio'r bysellfwrdd (<strong>Ctrl/Cmd+V</strong>) a phwyso <strong>Iawn</strong>.",securityMsg:"Oherwydd gosodiadau diogelwch eich porwr, nid yw'r porwr yn gallu ennill mynediad i'r data ar y clipfwrdd yn uniongyrchol. Mae angen i chi ei ludo eto i'r ffenestr hon.",pasteArea:'Ardal Gludo'},pastefromword:{confirmCleanup:"Mae'r testun rydych chi am ludo wedi'i gopïo o Word. Ydych chi am ei lanhau cyn ei ludo?",toolbar:'Gludo o Word',title:'Gludo o Word',error:'Doedd dim modd glanhau y data a ludwyd oherwydd gwall mewnol'},pasteText:{button:'Gludo fel testun plaen',title:'Gludo fel Testun Plaen'},templates:{button:'Templedi',title:'Templedi Cynnwys',options:'Opsiynau Templedi',insertOption:'Amnewid y cynnwys go iawn',selectPromptMsg:"Dewiswch dempled i'w agor yn y golygydd",emptyListMsg:"(Dim templedi wedi'u diffinio)"},showBlocks:'Dangos Blociau',stylesCombo:{label:'Arddulliau',panelTitle:'Arddulliau Fformatio',panelTitle1:'Arddulliau Bloc',panelTitle2:'Arddulliau Mewnol',panelTitle3:'Arddulliau Gwrthrych'},format:{label:'Fformat',panelTitle:'Fformat Paragraff',tag_p:'Normal',tag_pre:"Wedi'i Fformatio",tag_address:'Cyfeiriad',tag_h1:'Pennawd 1',tag_h2:'Pennawd 2',tag_h3:'Pennawd 3',tag_h4:'Pennawd 4',tag_h5:'Pennawd 5',tag_h6:'Pennawd 6',tag_div:'Normal (DIV)'},div:{title:'Creu Cynhwysydd Div',toolbar:'Creu Cynhwysydd Div',cssClassInputLabel:'Dosbarthiadau Ffeil Ddiwyg',styleSelectLabel:'Arddull',IdInputLabel:'Id',languageCodeInputLabel:' Cod Iaith',inlineStyleInputLabel:'Arddull Mewn Llinell',advisoryTitleInputLabel:'Teitl Cynghorol',langDirLabel:'Cyfeiriad yr Iaith',langDirLTRLabel:"Chwith i'r Dde (LTR)",langDirRTLLabel:"Dde i'r Chwith (RTL)",edit:'Golygu Div',remove:'Tynnu Div'},iframe:{title:'Priodweddau IFrame',toolbar:'IFrame',noUrl:'Rhowch fath URL yr iframe',scrolling:'Galluogi bariau sgrolio',border:'Dangos ymyl y ffrâm'},font:{label:'Ffont',voiceLabel:'Ffont',panelTitle:"Enw'r Ffont"},fontSize:{label:'Maint',voiceLabel:'Maint y Ffont',panelTitle:'Maint y Ffont'},colorButton:{textColorTitle:'Lliw Testun',bgColorTitle:'Lliw Cefndir',panelTitle:'Lliwiau',auto:'Awtomatig',more:'Mwy o Liwiau...'},colors:{'000':'Du',800000:'Marwn','8B4513':'Brown Cyfrwy','2F4F4F':'Llechen Tywyll','008080':'Corhwyad','000080':'Nefi','4B0082':'Indigo',696969:'Llwyd Pwl',B22222:'Bric Tân',A52A2A:'Brown',DAA520:'Rhoden Aur','006400':'Gwyrdd Tywyll','40E0D0':'Gwyrddlas','0000CD':'Glas Canolig',800080:'Porffor',808080:'Llwyd',F00:'Coch',FF8C00:'Oren Tywyll',FFD700:'Aur','008000':'Gwyrdd','0FF':'Cyan','00F':'Glas',EE82EE:'Fioled',A9A9A9:'Llwyd Tywyll',FFA07A:'Samwn Golau',FFA500:'Oren',FFFF00:'Melyn','00FF00':'Leim',AFEEEE:'Gwyrddlas Golau',ADD8E6:'Glas Golau',DDA0DD:'Eirinen',D3D3D3:'Llwyd Golau',FFF0F5:'Gwrid Lafant',FAEBD7:'Gwyn Hynafol',FFFFE0:'Melyn Golau',F0FFF0:'Melwn Gwyrdd Golau',F0FFFF:'Aswr',F0F8FF:'Glas Alys',E6E6FA:'Lafant',FFF:'Gwyn'},scayt:{title:"Gwirio'r Sillafu Wrth Deipio",opera_title:'Heb ei gynnal gan Opera',enable:'Galluogi SCAYT',disable:'Analluogi SCAYT',about:'Ynghylch SCAYT',toggle:'Togl SCAYT',options:'Opsiynau',langs:'Ieithoedd',moreSuggestions:'Awgrymiadau pellach',ignore:'Anwybyddu',ignoreAll:'Anwybyddu pob',addWord:'Ychwanegu Gair',emptyDic:"Ni ddylai enw'r geiriadur fod yn wag.",noSuggestions:'Dim awgrymiadau',optionsTab:'Opsiynau',allCaps:'Anwybyddu Geiriau Nodau Uwch i Gyd',ignoreDomainNames:'Anwybyddu Enwau Parth',mixedCase:'Anwybyddu Geiriau â Chymysgedd Nodau Uwch ac Is',mixedWithDigits:'Anwybyddu Geiriau â Rhifau',languagesTab:'Ieithoedd',dictionariesTab:'Geiriaduron',dic_field_name:"Enw'r geiriadur",dic_create:'Creu',dic_restore:'Adfer',dic_delete:'Dileu',dic_rename:'Ailenwi',dic_info:"Ar y cychwyn, caiff y Geiriadur ei storio mewn Cwci. Er, mae terfyn ar faint cwcis. Pan fydd Gweiriadur Defnyddiwr yn tyfu tu hwnt i gyfyngiadau maint Cwci, caiff y geiriadur ei storio ar ein gweinydd ni. er mwyn storio eich geiriadur poersonol chi ar ein gweinydd, bydd angen i chi osod enw ar gyfer y geiriadur. Os oes geiriadur 'da chi ar ein gweinydd yn barod, teipiwch ei enw a chliciwch y botwm Adfer.",aboutTab:'Ynghylch'},about:{title:'Ynghylch CKEditor',dlgTitle:'Ynghylch CKEditor',help:'Gwirio $1 am gymorth.',userGuide:'Canllawiau Defnyddiwr CKEditor',moreInfo:"Am wybodaeth ynghylch trwyddedau, ewch i'n gwefan:",copy:'Hawlfraint © $1. Cedwir pob hawl.'},maximize:'Mwyhau',minimize:'Lleihau',fakeobjects:{anchor:'Angor',flash:'Animeiddiant Flash',iframe:'IFrame',hiddenfield:'Maes Cudd',unknown:'Gwrthrych Anhysbys'},resize:'Llusgo i ailfeintio',colordialog:{title:'Dewis lliw',options:'Opsiynau Lliw',highlight:'Uwcholeuo',selected:'Dewiswyd',clear:'Clirio'},toolbarCollapse:"Cyfangu'r Bar Offer",toolbarExpand:"Ehangu'r Bar Offer",toolbarGroups:{document:'Dogfen',clipboard:'Clipfwrdd/Dadwneud',editing:'Golygu',forms:'Ffurflenni',basicstyles:'Arddulliau Sylfaenol',paragraph:'Paragraff',links:'Dolenni',insert:'Mewnosod',styles:'Arddulliau',colors:'Lliwiau',tools:'Offer'},bidi:{ltr:"Cyfeiriad testun o'r chwith i'r dde",rtl:"Cyfeiriad testun o'r dde i'r chwith"},docprops:{label:'Priodweddau Dogfen',title:'Priodweddau Dogfen',design:'Cynllunio',meta:'Tagiau Meta',chooseColor:'Dewis',other:'Arall...',docTitle:'Teitl y Dudalen',charset:'Amgodio Set Nodau',charsetOther:'Amgodio Set Nodau Arall',charsetASCII:'ASCII',charsetCE:'Ewropeaidd Canol',charsetCT:'Tsieinëeg Traddodiadol (Big5)',charsetCR:'Syrilig',charsetGR:'Groeg',charsetJP:'Siapanëeg',charsetKR:'Corëeg',charsetTR:'Tyrceg',charsetUN:'Unicode (UTF-8)',charsetWE:'Ewropeaidd Gorllewinol',docType:'Pennawd Math y Ddogfen',docTypeOther:'Pennawd Math y Ddogfen Arall',xhtmlDec:'Cynnwys Datganiadau XHTML',bgColor:'Lliw Cefndir',bgImage:'URL Delwedd Cefndir',bgFixed:'Cefndir Sefydlog (Ddim yn Sgrolio)',txtColor:'Lliw y Testun',margin:'Ffin y Dudalen',marginTop:'Brig',marginLeft:'Chwith',marginRight:'Dde',marginBottom:'Gwaelod',metaKeywords:'Allweddeiriau Indecsio Dogfen (gwahanu gyda choma)',metaDescription:'Disgrifiad y Ddogfen',metaAuthor:'Awdur',metaCopyright:'Hawlfraint',previewHtml:'<p>Dyma ychydig o <strong>destun sampl</strong>. Rydych chi\'n defnyddio <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ar.js��������������������������������������������0000664�0001750�0001750�00000053167�12262650742�021751� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.ar={dir:'rtl',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'المصدر',newPage:'صفحة جديدة',save:'حفظ',preview:'معاينة الصفحة',cut:'قص',copy:'نسخ',paste:'لصق',print:'طباعة',underline:'تسطير',bold:'غامق',italic:'مائل',selectAll:'تحديد الكل',removeFormat:'إزالة التنسيقات',strike:'يتوسطه خط',subscript:'منخفض',superscript:'مرتفع',horizontalrule:'خط فاصل',pagebreak:'إدخال صفحة جديدة',pagebreakAlt:'Page Break',unlink:'إزالة رابط',undo:'تراجع',redo:'إعادة',common:{browseServer:'تصفح',url:'الرابط',protocol:'البروتوكول',upload:'رفع',uploadSubmit:'أرسل',image:'صورة',flash:'فلاش',form:'نموذج',checkbox:'خانة إختيار',radio:'زر اختيار',textField:'مربع نص',textarea:'مساحة نصية',hiddenField:'إدراج حقل خفي',button:'زر ضغط',select:'اختار',imageButton:'زر صورة',notSet:'<بدون تحديد>',id:'الرقم',name:'الاسم',langDir:'إتجاه النص',langDirLtr:'اليسار لليمين (LTR)',langDirRtl:'اليمين لليسار (RTL)',langCode:'رمز اللغة',longDescr:'الوصف التفصيلى',cssClass:'فئات التنسيق',advisoryTitle:'عنوان التقرير',cssStyle:'نمط',ok:'موافق',cancel:'إلغاء الأمر',close:'أغلق',preview:'استعراض',generalTab:'عام',advancedTab:'متقدم',validateNumberFailed:'لايوجد نتيجة',confirmNewPage:'ستفقد أي متغييرات اذا لم تقم بحفظها اولا. هل أنت متأكد أنك تريد صفحة جديدة؟',confirmCancel:'بعض الخيارات قد تغيرت. هل أنت متأكد من إغلاق مربع النص؟',options:'خيارات',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'العرض',height:'الإرتفاع',align:'محاذاة',alignLeft:'يسار',alignRight:'يمين',alignCenter:'وسط',alignTop:'أعلى',alignMiddle:'وسط',alignBottom:'أسفل',invalidValue:'Invalid value.',invalidHeight:'الارتفاع يجب أن يكون عدداً.',invalidWidth:'العرض يجب أن يكون عدداً.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, غير متاح</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'إدراج خاص.ِ',title:'اختر الخواص',options:'Special Character Options'},link:{toolbar:'رابط',other:'<أخرى>',menu:'تحرير رابط',title:'إرتباط تشعبي',info:'معلومات الرابط',target:'هدف الرابط',upload:'رفع',advanced:'متقدم',type:'نوع الربط',toUrl:'URL',toAnchor:'مكان في هذا المستند',toEmail:'بريد إلكتروني',targetFrame:'<إطار>',targetPopup:'<نافذة منبثقة>',targetFrameName:'اسم الإطار المستهدف',targetPopupName:'اسم النافذة المنبثقة',popupFeatures:'خصائص النافذة المنبثقة',popupResizable:'قابلة التشكيل',popupStatusBar:'شريط الحالة',popupLocationBar:'شريط العنوان',popupToolbar:'شريط الأدوات',popupMenuBar:'القوائم الرئيسية',popupFullScreen:'ملئ الشاشة (IE)',popupScrollBars:'أشرطة التمرير',popupDependent:'تابع (Netscape)',popupLeft:'التمركز لليسار',popupTop:'التمركز للأعلى',id:'هوية',langDir:'إتجاه النص',langDirLTR:'اليسار لليمين (LTR)',langDirRTL:'اليمين لليسار (RTL)',acccessKey:'مفاتيح الإختصار',name:'الاسم',langCode:'كود النص',tabIndex:'الترتيب',advisoryTitle:'عنوان التقرير',advisoryContentType:'نوع التقرير',cssClasses:'فئات التنسيق',charset:'ترميز المادة المطلوبة',styles:'نمط',rel:'Relationship',selectAnchor:'اختر علامة مرجعية',anchorName:'حسب الاسم',anchorId:'حسب رقم العنصر',emailAddress:'عنوان البريد إلكتروني',emailSubject:'موضوع الرسالة',emailBody:'محتوى الرسالة',noAnchors:'(لا توجد علامات مرجعية في هذا المستند)',noUrl:'من فضلك أدخل عنوان الموقع الذي يشير إليه الرابط',noEmail:'من فضلك أدخل عنوان البريد الإلكتروني'},anchor:{toolbar:'إشارة مرجعية',menu:'تحرير الإشارة المرجعية',title:'خصائص الإشارة المرجعية',name:'اسم الإشارة المرجعية',errorName:'الرجاء كتابة اسم الإشارة المرجعية',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'بحث واستبدال',find:'بحث',replace:'إستبدال',findWhat:'البحث بـ:',replaceWith:'إستبدال بـ:',notFoundMsg:'لم يتم العثور على النص المحدد.',findOptions:'Find Options',matchCase:'مطابقة حالة الأحرف',matchWord:'مطابقة بالكامل',matchCyclic:'مطابقة دورية',replaceAll:'إستبدال الكل',replaceSuccessMsg:'تم استبدال 1% من الحالات '},table:{toolbar:'جدول',title:'خصائص الجدول',menu:'خصائص الجدول',deleteTable:'حذف الجدول',rows:'صفوف',columns:'أعمدة',border:'الحدود',widthPx:'بكسل',widthPc:'بالمئة',widthUnit:'width unit',cellSpace:'تباعد الخلايا',cellPad:'المسافة البادئة',caption:'الوصف',summary:'الخلاصة',headers:'العناوين',headersNone:'بدون',headersColumn:'العمود الأول',headersRow:'الصف الأول',headersBoth:'كلاهما',invalidRows:'عدد الصفوف يجب أن يكون عدداً أكبر من صفر.',invalidCols:'عدد الأعمدة يجب أن يكون عدداً أكبر من صفر.',invalidBorder:'حجم الحد يجب أن يكون عدداً.',invalidWidth:'عرض الجدول يجب أن يكون عدداً.',invalidHeight:'ارتفاع الجدول يجب أن يكون عدداً.',invalidCellSpacing:'المسافة بين الخلايا يجب أن تكون عدداً.',invalidCellPadding:'المسافة البادئة يجب أن تكون عدداً',cell:{menu:'خلية',insertBefore:'إدراج خلية قبل',insertAfter:'إدراج خلية بعد',deleteCell:'حذف خلية',merge:'دمج خلايا',mergeRight:'دمج لليمين',mergeDown:'دمج للأسفل',splitHorizontal:'تقسيم الخلية أفقياً',splitVertical:'تقسيم الخلية عمودياً',title:'خصائص الخلية',cellType:'نوع الخلية',rowSpan:'امتداد الصفوف',colSpan:'امتداد الأعمدة',wordWrap:'التفاف النص',hAlign:'محاذاة أفقية',vAlign:'محاذاة رأسية',alignBaseline:'خط القاعدة',bgColor:'لون الخلفية',borderColor:'لون الحدود',data:'بيانات',header:'عنوان',yes:'نعم',no:'لا',invalidWidth:'عرض الخلية يجب أن يكون عدداً.',invalidHeight:'ارتفاع الخلية يجب أن يكون عدداً.',invalidRowSpan:'امتداد الصفوف يجب أن يكون عدداً صحيحاً.',invalidColSpan:'امتداد الأعمدة يجب أن يكون عدداً صحيحاً.',chooseColor:'اختر'},row:{menu:'صف',insertBefore:'إدراج صف قبل',insertAfter:'إدراج صف بعد',deleteRow:'حذف صفوف'},column:{menu:'عمود',insertBefore:'إدراج عمود قبل',insertAfter:'إدراج عمود بعد',deleteColumn:'حذف أعمدة'}},button:{title:'خصائص زر الضغط',text:'القيمة/التسمية',type:'نوع الزر',typeBtn:'زر',typeSbm:'إرسال',typeRst:'إعادة تعيين'},checkboxAndRadio:{checkboxTitle:'خصائص خانة الإختيار',radioTitle:'خصائص زر الخيار',value:'القيمة',selected:'محدد'},form:{title:'خصائص النموذج',menu:'خصائص النموذج',action:'اسم الملف',method:'الأسلوب',encoding:'تشفير'},select:{title:'خصائص اختيار الحقل',selectInfo:'اختار معلومات',opAvail:'الخيارات المتاحة',value:'القيمة',size:'الحجم',lines:'الأسطر',chkMulti:'السماح بتحديدات متعددة',opText:'النص',opValue:'القيمة',btnAdd:'إضافة',btnModify:'تعديل',btnUp:'أعلى',btnDown:'أسفل',btnSetValue:'إجعلها محددة',btnDelete:'إزالة'},textarea:{title:'خصائص مساحة النص',cols:'الأعمدة',rows:'الصفوف'},textfield:{title:'خصائص مربع النص',name:'الاسم',value:'القيمة',charWidth:'عرض السمات',maxChars:'اقصى عدد للسمات',type:'نوع المحتوى',typeText:'نص',typePass:'كلمة مرور'},hidden:{title:'خصائص الحقل المخفي',name:'الاسم',value:'القيمة'},image:{title:'خصائص الصورة',titleButton:'خصائص زر الصورة',menu:'خصائص الصورة',infoTab:'معلومات الصورة',btnUpload:'أرسلها للخادم',upload:'رفع',alt:'عنوان الصورة',lockRatio:'تناسق الحجم',resetSize:'إستعادة الحجم الأصلي',border:'سمك الحدود',hSpace:'تباعد أفقي',vSpace:'تباعد عمودي',alertUrl:'فضلاً أكتب الموقع الذي توجد عليه هذه الصورة.',linkTab:'الرابط',button2Img:'هل تريد تحويل زر الصورة المختار إلى صورة بسيطة؟',img2Button:'هل تريد تحويل الصورة المختارة إلى زر صورة؟',urlMissing:'عنوان مصدر الصورة مفقود',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'خصائص الفلاش',propertiesTab:'الخصائص',title:'خصائص فيلم الفلاش',chkPlay:'تشغيل تلقائي',chkLoop:'تكرار',chkMenu:'تمكين قائمة فيلم الفلاش',chkFull:'ملء الشاشة',scale:'الحجم',scaleAll:'إظهار الكل',scaleNoBorder:'بلا حدود',scaleFit:'ضبط تام',access:'دخول النص البرمجي',accessAlways:'دائماً',accessSameDomain:'نفس النطاق',accessNever:'مطلقاً',alignAbsBottom:'أسفل النص',alignAbsMiddle:'وسط السطر',alignBaseline:'على السطر',alignTextTop:'أعلى النص',quality:'جودة',qualityBest:'أفضل',qualityHigh:'عالية',qualityAutoHigh:'عالية تلقائياً',qualityMedium:'متوسطة',qualityAutoLow:'منخفضة تلقائياً',qualityLow:'منخفضة',windowModeWindow:'نافذة',windowModeOpaque:'غير شفاف',windowModeTransparent:'شفاف',windowMode:'وضع النافذة',flashvars:'متغيرات الفلاش',bgcolor:'لون الخلفية',hSpace:'تباعد أفقي',vSpace:'تباعد عمودي',validateSrc:'فضلاً أدخل عنوان الموقع الذي يشير إليه الرابط',validateHSpace:'HSpace يجب أن يكون عدداً.',validateVSpace:'VSpace يجب أن يكون عدداً.'},spellCheck:{toolbar:'تدقيق إملائي',title:'التدقيق الإملائي',notAvailable:'عفواً، ولكن هذه الخدمة غير متاحة الان',errorLoading:'خطأ في تحميل تطبيق خدمة الاستضافة: %s.',notInDic:'ليست في القاموس',changeTo:'التغيير إلى',btnIgnore:'تجاهل',btnIgnoreAll:'تجاهل الكل',btnReplace:'تغيير',btnReplaceAll:'تغيير الكل',btnUndo:'تراجع',noSuggestions:'- لا توجد إقتراحات -',progress:'جاري التدقيق الاملائى',noMispell:'تم التدقيق الإملائي: لم يتم العثور على أي أخطاء إملائية',noChanges:'تم التدقيق الإملائي: لم يتم تغيير أي كلمة',oneChange:'تم التدقيق الإملائي: تم تغيير كلمة واحدة فقط',manyChanges:'تم إكمال التدقيق الإملائي: تم تغيير %1 من كلمات',ieSpellDownload:'المدقق الإملائي (الإنجليزي) غير مثبّت. هل تود تحميله الآن؟'},smiley:{toolbar:'ابتسامات',title:'إدراج ابتسامات',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'عنصر 1%'},numberedlist:'ادخال/حذف تعداد رقمي',bulletedlist:'ادخال/حذف تعداد نقطي',indent:'زيادة المسافة البادئة',outdent:'إنقاص المسافة البادئة',justify:{left:'محاذاة إلى اليسار',center:'توسيط',right:'محاذاة إلى اليمين',block:'ضبط'},blockquote:'اقتباس',clipboard:{title:'لصق',cutError:'الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع القص التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl/Cmd+X).',copyError:'الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع النسخ التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl/Cmd+C).',pasteMsg:'الصق داخل الصندوق بإستخدام زرائر (<STRONG>Ctrl/Cmd+V</STRONG>) في لوحة المفاتيح، ثم اضغط زر <STRONG>موافق</STRONG>.',securityMsg:'نظراً لإعدادات الأمان الخاصة بمتصفحك، لن يتمكن هذا المحرر من الوصول لمحتوى حافظتك، لذلك يجب عليك لصق المحتوى مرة أخرى في هذه النافذة.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'يبدو أن النص المراد لصقه منسوخ من برنامج وورد. هل تود تنظيفه قبل الشروع في عملية اللصق؟',toolbar:'لصق من وورد',title:'لصق من وورد',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'لصق كنص بسيط',title:'لصق كنص بسيط'},templates:{button:'القوالب',title:'قوالب المحتوى',options:'Template Options',insertOption:'استبدال المحتوى',selectPromptMsg:'اختر القالب الذي تود وضعه في المحرر',emptyListMsg:'(لم يتم تعريف أي قالب)'},showBlocks:'مخطط تفصيلي',stylesCombo:{label:'أنماط',panelTitle:'Formatting Styles',panelTitle1:'أنماط الفقرة',panelTitle2:'أنماط مضمنة',panelTitle3:'أنماط الكائن'},format:{label:'تنسيق',panelTitle:'تنسيق الفقرة',tag_p:'عادي',tag_pre:'منسّق',tag_address:'عنوان',tag_h1:'العنوان 1',tag_h2:'العنوان 2',tag_h3:'العنوان 3',tag_h4:'العنوان 4',tag_h5:'العنوان 5',tag_h6:'العنوان 6',tag_div:'عادي (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'خط',voiceLabel:'حجم الخط',panelTitle:'حجم الخط'},fontSize:{label:'حجم الخط',voiceLabel:'حجم الخط',panelTitle:'حجم الخط'},colorButton:{textColorTitle:'لون النص',bgColorTitle:'لون الخلفية',panelTitle:'Colors',auto:'تلقائي',more:'ألوان إضافية...'},colors:{'000':'أسود',800000:'كستنائي','8B4513':'بني فاتح','2F4F4F':'رمادي أردوازي غامق','008080':'أزرق مخضر','000080':'أزرق داكن','4B0082':'كحلي',696969:'رمادي داكن',B22222:'طوبي',A52A2A:'بني',DAA520:'ذهبي داكن','006400':'أخضر داكن','40E0D0':'فيروزي','0000CD':'أزرق متوسط',800080:'بنفسجي غامق',808080:'رمادي',F00:'أحمر',FF8C00:'برتقالي داكن',FFD700:'ذهبي','008000':'أخضر','0FF':'تركواز','00F':'أزرق',EE82EE:'بنفسجي',A9A9A9:'رمادي شاحب',FFA07A:'برتقالي وردي',FFA500:'برتقالي',FFFF00:'أصفر','00FF00':'ليموني',AFEEEE:'فيروزي شاحب',ADD8E6:'أزرق فاتح',DDA0DD:'بنفسجي فاتح',D3D3D3:'رمادي فاتح',FFF0F5:'وردي فاتح',FAEBD7:'أبيض عتيق',FFFFE0:'أصفر فاتح',F0FFF0:'أبيض مائل للأخضر',F0FFFF:'سماوي',F0F8FF:'لبني',E6E6FA:'أرجواني',FFF:'أبيض'},scayt:{title:'تدقيق إملائي أثناء الكتابة',opera_title:'Not supported by Opera',enable:'تفعيل SCAYT',disable:'تعطيل SCAYT',about:'عن SCAYT',toggle:'تثبيت SCAYT',options:'خيارات',langs:'لغات',moreSuggestions:'المزيد من المقترحات',ignore:'تجاهل',ignoreAll:'تجاهل الكل',addWord:'إضافة كلمة',emptyDic:'اسم القاموس يجب ألا يكون فارغاً.',noSuggestions:'لا توجد إقتراحات',optionsTab:'خيارات',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'لغات',dictionariesTab:'قواميس',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'عن'},about:{title:'عن CKEditor',dlgTitle:'عن CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'للحصول على معلومات الترخيص ، يرجى زيارة موقعنا على شبكة الانترنت:',copy:'حقوق النشر © $1. جميع الحقوق محفوظة.'},maximize:'تكبير',minimize:'تصغير',fakeobjects:{anchor:'إرساء',flash:'رسم متحرك بالفلاش',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'كائن غير معروف'},resize:'اسحب لتغيير الحجم',colordialog:{title:'اختر لون',options:'Color Options',highlight:'إلقاء الضوء',selected:'مُختار',clear:'مسح'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'خصائص الصفحة',title:'خصائص الصفحة',design:'Design',meta:'المعرّفات الرأسية',chooseColor:'اختر',other:'<أخرى>',docTitle:'عنوان الصفحة',charset:'ترميز الحروف',charsetOther:'ترميز آخر',charsetASCII:'ASCII',charsetCE:'أوروبا الوسطى',charsetCT:'الصينية التقليدية (Big5)',charsetCR:'السيريلية',charsetGR:'اليونانية',charsetJP:'اليابانية',charsetKR:'الكورية',charsetTR:'التركية',charsetUN:'Unicode (UTF-8)',charsetWE:'أوروبا الغربية',docType:'ترويسة نوع الصفحة',docTypeOther:'ترويسة نوع صفحة أخرى',xhtmlDec:'تضمين إعلانات لغة XHTMLَ',bgColor:'لون الخلفية',bgImage:'رابط الصورة الخلفية',bgFixed:'جعلها علامة مائية',txtColor:'لون النص',margin:'هوامش الصفحة',marginTop:'علوي',marginLeft:'أيسر',marginRight:'أيمن',marginBottom:'سفلي',metaKeywords:'الكلمات الأساسية (مفصولة بفواصل)َ',metaDescription:'وصف الصفحة',metaAuthor:'الكاتب',metaCopyright:'المالك',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/es.js��������������������������������������������0000664�0001750�0001750�00000046167�12262650742�021760� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.es={dir:'ltr',editorTitle:'Editor de texto, %1',editorHelp:'Pulse ALT 0 para ayuda',toolbars:'Barras de herramientas del editor',editor:'Editor de texto enriquecido',source:'Fuente HTML',newPage:'Nueva Página',save:'Guardar',preview:'Vista Previa',cut:'Cortar',copy:'Copiar',paste:'Pegar',print:'Imprimir',underline:'Subrayado',bold:'Negrita',italic:'Cursiva',selectAll:'Seleccionar Todo',removeFormat:'Eliminar Formato',strike:'Tachado',subscript:'Subíndice',superscript:'Superíndice',horizontalrule:'Insertar Línea Horizontal',pagebreak:'Insertar Salto de Página',pagebreakAlt:'Salto de página',unlink:'Eliminar Vínculo',undo:'Deshacer',redo:'Rehacer',common:{browseServer:'Ver Servidor',url:'URL',protocol:'Protocolo',upload:'Cargar',uploadSubmit:'Enviar al Servidor',image:'Imagen',flash:'Flash',form:'Formulario',checkbox:'Casilla de Verificación',radio:'Botones de Radio',textField:'Campo de Texto',textarea:'Area de Texto',hiddenField:'Campo Oculto',button:'Botón',select:'Campo de Selección',imageButton:'Botón Imagen',notSet:'<No definido>',id:'Id',name:'Nombre',langDir:'Orientación',langDirLtr:'Izquierda a Derecha (LTR)',langDirRtl:'Derecha a Izquierda (RTL)',langCode:'Cód. de idioma',longDescr:'Descripción larga URL',cssClass:'Clases de hojas de estilo',advisoryTitle:'Título',cssStyle:'Estilo',ok:'Aceptar',cancel:'Cancelar',close:'Cerrar',preview:'Previsualización',generalTab:'General',advancedTab:'Avanzado',validateNumberFailed:'El valor no es un número.',confirmNewPage:'Cualquier cambio que no se haya guardado se perderá.\r\n¿Está seguro de querer crear una nueva página?',confirmCancel:'Algunas de las opciones se han cambiado.\r\n¿Está seguro de querer cerrar el diálogo?',options:'Opciones',target:'Destino',targetNew:'Nueva ventana (_blank)',targetTop:'Ventana principal (_top)',targetSelf:'Misma ventana (_self)',targetParent:'Ventana padre (_parent)',langDirLTR:'Izquierda a derecha (LTR)',langDirRTL:'Derecha a izquierda (RTL)',styles:'Estilos',cssClasses:'Clase de la hoja de estilos',width:'Anchura',height:'Altura',align:'Alineación',alignLeft:'Izquierda',alignRight:'Derecha',alignCenter:'Centrado',alignTop:'Tope',alignMiddle:'Centro',alignBottom:'Pie',invalidValue:'Invalid value.',invalidHeight:'Altura debe ser un número.',invalidWidth:'Anchura debe ser un número.',invalidCssLength:'El valor especificado para el campo "%1" debe ser un número positivo, incluyendo optionalmente una unidad de medida CSS válida (px, %, in, cm, mm, em, ex, pt, o pc).',invalidHtmlLength:'El valor especificado para el campo "%1" debe ser un número positivo, incluyendo optionalmente una unidad de medida HTML válida (px o %).',invalidInlineStyle:'El valor especificado para el estilo debe consistir en uno o más pares con el formato "nombre: valor", separados por punto y coma.',cssLengthTooltip:'Introduca un número para el valor en pixels o un número con una unidad de medida CSS válida (px, %, in, cm, mm, em, ex, pt, o pc).',unavailable:'%1<span class="cke_accessibility">, no disponible</span>'},contextmenu:{options:'Opciones del menú contextual'},specialChar:{toolbar:'Insertar Caracter Especial',title:'Seleccione un caracter especial',options:'Opciones de caracteres especiales'},link:{toolbar:'Insertar/Editar Vínculo',other:'<otro>',menu:'Editar Vínculo',title:'Vínculo',info:'Información de Vínculo',target:'Destino',upload:'Cargar',advanced:'Avanzado',type:'Tipo de vínculo',toUrl:'URL',toAnchor:'Referencia en esta página',toEmail:'E-Mail',targetFrame:'<marco>',targetPopup:'<ventana emergente>',targetFrameName:'Nombre del Marco Destino',targetPopupName:'Nombre de Ventana Emergente',popupFeatures:'Características de Ventana Emergente',popupResizable:'Redimensionable',popupStatusBar:'Barra de Estado',popupLocationBar:'Barra de ubicación',popupToolbar:'Barra de Herramientas',popupMenuBar:'Barra de Menú',popupFullScreen:'Pantalla Completa (IE)',popupScrollBars:'Barras de desplazamiento',popupDependent:'Dependiente (Netscape)',popupLeft:'Posición Izquierda',popupTop:'Posición Derecha',id:'Id',langDir:'Orientación',langDirLTR:'Izquierda a Derecha (LTR)',langDirRTL:'Derecha a Izquierda (RTL)',acccessKey:'Tecla de Acceso',name:'Nombre',langCode:'Código idioma',tabIndex:'Indice de tabulación',advisoryTitle:'Título',advisoryContentType:'Tipo de Contenido',cssClasses:'Clases de hojas de estilo',charset:'Fuente de caracteres vinculado',styles:'Estilo',rel:'Relación',selectAnchor:'Seleccionar una referencia',anchorName:'Por Nombre de Referencia',anchorId:'Por ID de elemento',emailAddress:'Dirección de E-Mail',emailSubject:'Título del Mensaje',emailBody:'Cuerpo del Mensaje',noAnchors:'(No hay referencias disponibles en el documento)',noUrl:'Por favor escriba el vínculo URL',noEmail:'Por favor escriba la dirección de e-mail'},anchor:{toolbar:'Referencia',menu:'Propiedades de Referencia',title:'Propiedades de Referencia',name:'Nombre de la Referencia',errorName:'Por favor, complete el nombre de la Referencia',remove:'Quitar Referencia'},list:{numberedTitle:'Propiedades de lista numerada',bulletedTitle:'Propiedades de viñetas',type:'Tipo',start:'Inicio',validateStartNumber:'El Inicio debe ser un número entero.',circle:'Círculo',disc:'Disco',square:'Cuadrado',none:'Ninguno',notset:'<sin establecer>',armenian:'Numeración armenia',georgian:'Numeración georgiana (an, ban, gan, etc.)',lowerRoman:'Números romanos en minúsculas (i, ii, iii, iv, v, etc.)',upperRoman:'Números romanos en mayúsculas (I, II, III, IV, V, etc.)',lowerAlpha:'Alfabeto en minúsculas (a, b, c, d, e, etc.)',upperAlpha:'Alfabeto en mayúsculas (A, B, C, D, E, etc.)',lowerGreek:'Letras griegas (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal con cero inicial (01, 02, 03, etc.)'},findAndReplace:{title:'Buscar y Reemplazar',find:'Buscar',replace:'Reemplazar',findWhat:'Texto a buscar:',replaceWith:'Reemplazar con:',notFoundMsg:'El texto especificado no ha sido encontrado.',findOptions:'Opciones de búsqueda',matchCase:'Coincidir may/min',matchWord:'Coincidir toda la palabra',matchCyclic:'Buscar en todo el contenido',replaceAll:'Reemplazar Todo',replaceSuccessMsg:'La expresión buscada ha sido reemplazada %1 veces.'},table:{toolbar:'Tabla',title:'Propiedades de Tabla',menu:'Propiedades de Tabla',deleteTable:'Eliminar Tabla',rows:'Filas',columns:'Columnas',border:'Tamaño de Borde',widthPx:'pixeles',widthPc:'porcentaje',widthUnit:'unidad de la anchura',cellSpace:'Esp. e/celdas',cellPad:'Esp. interior',caption:'Título',summary:'Síntesis',headers:'Encabezados',headersNone:'Ninguno',headersColumn:'Primera columna',headersRow:'Primera fila',headersBoth:'Ambas',invalidRows:'El número de filas debe ser un número mayor que 0.',invalidCols:'El número de columnas debe ser un número mayor que 0.',invalidBorder:'El tamaño del borde debe ser un número.',invalidWidth:'La anchura de tabla debe ser un número.',invalidHeight:'La altura de tabla debe ser un número.',invalidCellSpacing:'El espaciado entre celdas debe ser un número.',invalidCellPadding:'El espaciado interior debe ser un número.',cell:{menu:'Celda',insertBefore:'Insertar celda a la izquierda',insertAfter:'Insertar celda a la derecha',deleteCell:'Eliminar Celdas',merge:'Combinar Celdas',mergeRight:'Combinar a la derecha',mergeDown:'Combinar hacia abajo',splitHorizontal:'Dividir la celda horizontalmente',splitVertical:'Dividir la celda verticalmente',title:'Propiedades de celda',cellType:'Tipo de Celda',rowSpan:'Expandir filas',colSpan:'Expandir columnas',wordWrap:'Ajustar al contenido',hAlign:'Alineación Horizontal',vAlign:'Alineación Vertical',alignBaseline:'Linea de base',bgColor:'Color de fondo',borderColor:'Color de borde',data:'Datos',header:'Encabezado',yes:'Sí',no:'No',invalidWidth:'La anchura de celda debe ser un número.',invalidHeight:'La altura de celda debe ser un número.',invalidRowSpan:'La expansión de filas debe ser un número entero.',invalidColSpan:'La expansión de columnas debe ser un número entero.',chooseColor:'Elegir'},row:{menu:'Fila',insertBefore:'Insertar fila en la parte superior',insertAfter:'Insertar fila en la parte inferior',deleteRow:'Eliminar Filas'},column:{menu:'Columna',insertBefore:'Insertar columna a la izquierda',insertAfter:'Insertar columna a la derecha',deleteColumn:'Eliminar Columnas'}},button:{title:'Propiedades de Botón',text:'Texto (Valor)',type:'Tipo',typeBtn:'Boton',typeSbm:'Enviar',typeRst:'Reestablecer'},checkboxAndRadio:{checkboxTitle:'Propiedades de Casilla',radioTitle:'Propiedades de Botón de Radio',value:'Valor',selected:'Seleccionado'},form:{title:'Propiedades de Formulario',menu:'Propiedades de Formulario',action:'Acción',method:'Método',encoding:'Codificación'},select:{title:'Propiedades de Campo de Selección',selectInfo:'Información',opAvail:'Opciones disponibles',value:'Valor',size:'Tamaño',lines:'Lineas',chkMulti:'Permitir múltiple selección',opText:'Texto',opValue:'Valor',btnAdd:'Agregar',btnModify:'Modificar',btnUp:'Subir',btnDown:'Bajar',btnSetValue:'Establecer como predeterminado',btnDelete:'Eliminar'},textarea:{title:'Propiedades de Area de Texto',cols:'Columnas',rows:'Filas'},textfield:{title:'Propiedades de Campo de Texto',name:'Nombre',value:'Valor',charWidth:'Caracteres de ancho',maxChars:'Máximo caracteres',type:'Tipo',typeText:'Texto',typePass:'Contraseña'},hidden:{title:'Propiedades de Campo Oculto',name:'Nombre',value:'Valor'},image:{title:'Propiedades de Imagen',titleButton:'Propiedades de Botón de Imagen',menu:'Propiedades de Imagen',infoTab:'Información de Imagen',btnUpload:'Enviar al Servidor',upload:'Cargar',alt:'Texto Alternativo',lockRatio:'Proporcional',resetSize:'Tamaño Original',border:'Borde',hSpace:'Esp.Horiz',vSpace:'Esp.Vert',alertUrl:'Por favor escriba la URL de la imagen',linkTab:'Vínculo',button2Img:'¿Desea convertir el botón de imagen en una simple imagen?',img2Button:'¿Desea convertir la imagen en un botón de imagen?',urlMissing:'Debe indicar la URL de la imagen.',validateBorder:'El borde debe ser un número.',validateHSpace:'El espaciado horizontal debe ser un número.',validateVSpace:'El espaciado vertical debe ser un número.'},flash:{properties:'Propiedades de Flash',propertiesTab:'Propiedades',title:'Propiedades de Flash',chkPlay:'Autoejecución',chkLoop:'Repetir',chkMenu:'Activar Menú Flash',chkFull:'Permitir pantalla completa',scale:'Escala',scaleAll:'Mostrar todo',scaleNoBorder:'Sin Borde',scaleFit:'Ajustado',access:'Acceso de scripts',accessAlways:'Siempre',accessSameDomain:'Mismo dominio',accessNever:'Nunca',alignAbsBottom:'Abs inferior',alignAbsMiddle:'Abs centro',alignBaseline:'Línea de base',alignTextTop:'Tope del texto',quality:'Calidad',qualityBest:'La mejor',qualityHigh:'Alta',qualityAutoHigh:'Auto Alta',qualityMedium:'Media',qualityAutoLow:'Auto Baja',qualityLow:'Baja',windowModeWindow:'Ventana',windowModeOpaque:'Opaco',windowModeTransparent:'Transparente',windowMode:'WindowMode',flashvars:'Opciones',bgcolor:'Color de Fondo',hSpace:'Esp.Horiz',vSpace:'Esp.Vert',validateSrc:'Por favor escriba el vínculo URL',validateHSpace:'Esp.Horiz debe ser un número.',validateVSpace:'Esp.Vert debe ser un número.'},spellCheck:{toolbar:'Ortografía',title:'Comprobar ortografía',notAvailable:'Lo sentimos pero el servicio no está disponible.',errorLoading:'Error cargando la aplicación del servidor: %s.',notInDic:'No se encuentra en el Diccionario',changeTo:'Cambiar a',btnIgnore:'Ignorar',btnIgnoreAll:'Ignorar Todo',btnReplace:'Reemplazar',btnReplaceAll:'Reemplazar Todo',btnUndo:'Deshacer',noSuggestions:'- No hay sugerencias -',progress:'Control de Ortografía en progreso...',noMispell:'Control finalizado: no se encontraron errores',noChanges:'Control finalizado: no se ha cambiado ninguna palabra',oneChange:'Control finalizado: se ha cambiado una palabra',manyChanges:'Control finalizado: se ha cambiado %1 palabras',ieSpellDownload:'Módulo de Control de Ortografía no instalado.\r\n¿Desea descargarlo ahora?'},smiley:{toolbar:'Emoticonos',title:'Insertar un Emoticon',options:'Opciones de emoticonos'},elementsPath:{eleLabel:'Ruta de los elementos',eleTitle:'%1 elemento'},numberedlist:'Numeración',bulletedlist:'Viñetas',indent:'Aumentar Sangría',outdent:'Disminuir Sangría',justify:{left:'Alinear a Izquierda',center:'Centrar',right:'Alinear a Derecha',block:'Justificado'},blockquote:'Cita',clipboard:{title:'Pegar',cutError:'La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de cortado.\r\nPor favor use el teclado (Ctrl/Cmd+X).',copyError:'La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de copiado.\r\nPor favor use el teclado (Ctrl/Cmd+C).',pasteMsg:'Por favor pegue dentro del cuadro utilizando el teclado (<STRONG>Ctrl/Cmd+V</STRONG>);\r\nluego presione <STRONG>Aceptar</STRONG>.',securityMsg:'Debido a la configuración de seguridad de su navegador, el editor no tiene acceso al portapapeles.\r\nEs necesario que lo pegue de nuevo en esta ventana.',pasteArea:'Zona de pegado'},pastefromword:{confirmCleanup:'El texto que desea parece provenir de Word.\r\n¿Desea depurarlo antes de pegarlo?',toolbar:'Pegar desde Word',title:'Pegar desde Word',error:'No ha sido posible limpiar los datos debido a un error interno'},pasteText:{button:'Pegar como Texto Plano',title:'Pegar como Texto Plano'},templates:{button:'Plantillas',title:'Contenido de Plantillas',options:'Opciones de plantillas',insertOption:'Reemplazar el contenido actual',selectPromptMsg:'Por favor selecciona la plantilla a abrir en el editor<br>(el contenido actual se perderá):',emptyListMsg:'(No hay plantillas definidas)'},showBlocks:'Mostrar bloques',stylesCombo:{label:'Estilo',panelTitle:'Estilos para formatear',panelTitle1:'Estilos de párrafo',panelTitle2:'Estilos de carácter',panelTitle3:'Estilos de objeto'},format:{label:'Formato',panelTitle:'Formato',tag_p:'Normal',tag_pre:'Con formato',tag_address:'Dirección',tag_h1:'Encabezado 1',tag_h2:'Encabezado 2',tag_h3:'Encabezado 3',tag_h4:'Encabezado 4',tag_h5:'Encabezado 5',tag_h6:'Encabezado 6',tag_div:'Normal (DIV)'},div:{title:'Crear contenedor DIV',toolbar:'Crear contenedor DIV',cssClassInputLabel:'Clase de hoja de estilos',styleSelectLabel:'Estilo',IdInputLabel:'Id',languageCodeInputLabel:' Codigo de idioma',inlineStyleInputLabel:'Estilo',advisoryTitleInputLabel:'Título',langDirLabel:'Orientación',langDirLTRLabel:'Izquierda a Derecha (LTR)',langDirRTLLabel:'Derecha a Izquierda (RTL)',edit:'Editar Div',remove:'Quitar Div'},iframe:{title:'Propiedades de iframe',toolbar:'IFrame',noUrl:'Por favor, escriba la dirección del iframe',scrolling:'Activar barras de desplazamiento',border:'Mostrar borde del marco'},font:{label:'Fuente',voiceLabel:'Fuente',panelTitle:'Fuente'},fontSize:{label:'Tamaño',voiceLabel:'Tamaño de fuente',panelTitle:'Tamaño'},colorButton:{textColorTitle:'Color de Texto',bgColorTitle:'Color de Fondo',panelTitle:'Colores',auto:'Automático',more:'Más Colores...'},colors:{'000':'Negro',800000:'Marrón oscuro','8B4513':'Marrón tierra','2F4F4F':'Pizarra Oscuro','008080':'Azul verdoso','000080':'Azul marino','4B0082':'Añil',696969:'Gris oscuro',B22222:'Ladrillo',A52A2A:'Marrón',DAA520:'Oro oscuro','006400':'Verde oscuro','40E0D0':'Turquesa','0000CD':'Azul medio-oscuro',800080:'Púrpura',808080:'Gris',F00:'Rojo',FF8C00:'Naranja oscuro',FFD700:'Oro','008000':'Verde','0FF':'Cian','00F':'Azul',EE82EE:'Violeta',A9A9A9:'Gris medio',FFA07A:'Salmón claro',FFA500:'Naranja',FFFF00:'Amarillo','00FF00':'Lima',AFEEEE:'Turquesa claro',ADD8E6:'Azul claro',DDA0DD:'Violeta claro',D3D3D3:'Gris claro',FFF0F5:'Lavanda rojizo',FAEBD7:'Blanco antiguo',FFFFE0:'Amarillo claro',F0FFF0:'Miel',F0FFFF:'Azul celeste',F0F8FF:'Azul pálido',E6E6FA:'Lavanda',FFF:'Blanco'},scayt:{title:'Comprobar Ortografía Mientras Escribe',opera_title:'No soportado en Opera',enable:'Activar Corrector',disable:'Desactivar Corrector',about:'Acerca de Corrector',toggle:'Cambiar Corrector',options:'Opciones',langs:'Idiomas',moreSuggestions:'Más sugerencias',ignore:'Ignorar',ignoreAll:'Ignorar Todas',addWord:'Añadir palabra',emptyDic:'El nombre del diccionario no puede estar en blanco.',noSuggestions:'No hay sugerencias',optionsTab:'Opciones',allCaps:'Omitir palabras en MAYÚSCULAS',ignoreDomainNames:'Omitir nombres de dominio',mixedCase:'Ignorar palabras con combinación de mayúsculas y minúsculas',mixedWithDigits:'Omitir palabras con números',languagesTab:'Idiomas',dictionariesTab:'Diccionarios',dic_field_name:'Nombre del diccionario',dic_create:'Crear',dic_restore:'Recuperar',dic_delete:'Borrar',dic_rename:'Renombrar',dic_info:'Inicialmente el Diccionario de usuario se guarda en una Cookie. Sin embargo, las cookies están limitadas en tamaño. Cuando el diccionario crece a un punto en el que no se puede guardar en una Cookie, el diccionario puede ser almacenado en nuestro servidor. Para almacenar su diccionario personalizado en nuestro servidor debe especificar un nombre para su diccionario. Si ya ha guardado un diccionaro, por favor, escriba su nombre y pulse el botón Recuperar',aboutTab:'Acerca de'},about:{title:'Acerca de CKEditor',dlgTitle:'Acerca de CKEditor',help:'Lea la $1 para resolver sus dudas.',userGuide:'Guía de usuario de CKEditor',moreInfo:'Para información de licencia, por favor visite nuestro sitio web:',copy:'Copyright © $1. Todos los derechos reservados.'},maximize:'Maximizar',minimize:'Minimizar',fakeobjects:{anchor:'Ancla',flash:'Animación flash',iframe:'IFrame',hiddenfield:'Campo oculto',unknown:'Objeto desconocido'},resize:'Arrastre para redimensionar',colordialog:{title:'Elegir color',options:'Opciones de colores',highlight:'Muestra',selected:'Elegido',clear:'Borrar'},toolbarCollapse:'Contraer barra de herramientas',toolbarExpand:'Expandir barra de herramientas',toolbarGroups:{document:'Documento',clipboard:'Portapapeles/Deshacer',editing:'Edición',forms:'Formularios',basicstyles:'Estilos básicos',paragraph:'Párrafo',links:'Enlaces',insert:'Insertar',styles:'Estilos',colors:'Colores',tools:'Herramientas'},bidi:{ltr:'Dirección del texto de izquierda a derecha',rtl:'Dirección del texto de derecha a izquierda'},docprops:{label:'Propiedades del documento',title:'Propiedades del documento',design:'Diseño',meta:'Meta Tags',chooseColor:'Elegir',other:'Otro...',docTitle:'Título de página',charset:'Codificación de caracteres',charsetOther:'Otra codificación de caracteres',charsetASCII:'ASCII',charsetCE:'Centro Europeo',charsetCT:'Chino Tradicional (Big5)',charsetCR:'Ruso',charsetGR:'Griego',charsetJP:'Japonés',charsetKR:'Koreano',charsetTR:'Turco',charsetUN:'Unicode (UTF-8)',charsetWE:'Europeo occidental',docType:'Tipo de documento',docTypeOther:'Otro tipo de documento',xhtmlDec:'Incluir declaración XHTML',bgColor:'Color de fondo',bgImage:'Imagen de fondo',bgFixed:'Fondo fijo (no se desplaza)',txtColor:'Color del texto',margin:'Márgenes',marginTop:'Superior',marginLeft:'Izquierdo',marginRight:'Derecho',marginBottom:'Inferior',metaKeywords:'Palabras claves del documento separadas por coma (meta keywords)',metaDescription:'Descripción del documento',metaAuthor:'Autor',metaCopyright:'Copyright',previewHtml:'<p>Este es un <strong>texto de ejemplo</strong>. Usted está usando <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/it.js��������������������������������������������0000664�0001750�0001750�00000045624�12262650742�021762� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.it={dir:'ltr',editorTitle:'Editor di testo Rich Text, %1',editorHelp:'Premi ALT 0 per aiuto',toolbars:'Editor toolbar',editor:'Rich Text Editor',source:'Codice Sorgente',newPage:'Nuova pagina vuota',save:'Salva',preview:'Anteprima',cut:'Taglia',copy:'Copia',paste:'Incolla',print:'Stampa',underline:'Sottolineato',bold:'Grassetto',italic:'Corsivo',selectAll:'Seleziona tutto',removeFormat:'Elimina formattazione',strike:'Barrato',subscript:'Pedice',superscript:'Apice',horizontalrule:'Inserisci riga orizzontale',pagebreak:'Inserisci interruzione di pagina',pagebreakAlt:'Interruzione di pagina',unlink:'Elimina collegamento',undo:'Annulla',redo:'Ripristina',common:{browseServer:'Cerca sul server',url:'URL',protocol:'Protocollo',upload:'Carica',uploadSubmit:'Invia al server',image:'Immagine',flash:'Oggetto Flash',form:'Modulo',checkbox:'Checkbox',radio:'Radio Button',textField:'Campo di testo',textarea:'Area di testo',hiddenField:'Campo nascosto',button:'Bottone',select:'Menu di selezione',imageButton:'Bottone immagine',notSet:'<non impostato>',id:'Id',name:'Nome',langDir:'Direzione scrittura',langDirLtr:'Da Sinistra a Destra (LTR)',langDirRtl:'Da Destra a Sinistra (RTL)',langCode:'Codice Lingua',longDescr:'URL descrizione estesa',cssClass:'Nome classe CSS',advisoryTitle:'Titolo',cssStyle:'Stile',ok:'OK',cancel:'Annulla',close:'Chiudi',preview:'Anteprima',generalTab:'Generale',advancedTab:'Avanzate',validateNumberFailed:'Il valore inserito non è un numero.',confirmNewPage:'Ogni modifica non salvata sarà persa. Sei sicuro di voler caricare una nuova pagina?',confirmCancel:'Alcune delle opzioni sono state cambiate. Sei sicuro di voler chiudere la finestra di dialogo?',options:'Opzioni',target:'Destinazione',targetNew:'Nuova finestra (_blank)',targetTop:'Finestra in primo piano (_top)',targetSelf:'Stessa finestra (_self)',targetParent:'Finestra Padre (_parent)',langDirLTR:'Da sinistra a destra (LTR)',langDirRTL:'Da destra a sinistra (RTL)',styles:'Stile',cssClasses:'Classi di stile',width:'Larghezza',height:'Altezza',align:'Allineamento',alignLeft:'Sinistra',alignRight:'Destra',alignCenter:'Centrato',alignTop:'In Alto',alignMiddle:'Centrato',alignBottom:'In Basso',invalidValue:'Valore non valido.',invalidHeight:"L'altezza dev'essere un numero",invalidWidth:"La Larghezza dev'essere un numero",invalidCssLength:'Il valore indicato per il campo "%1" deve essere un numero positivo con o senza indicazione di una valida unità di misura per le classi CSS (px, %, in, cm, mm, em, ex, pt, o pc).',invalidHtmlLength:'Il valore indicato per il campo "%1" deve essere un numero positivo con o senza indicazione di una valida unità di misura per le pagine HTML (px o %).',invalidInlineStyle:'Il valore specificato per lo stile inline deve consistere in una o più tuple con il formato di "name : value", separati da semicolonne.',cssLengthTooltip:'Inserisci un numero per il valore in pixel oppure un numero con una valida unità CSS (px, %, in, cm, mm, ex, pt, o pc).',unavailable:'%1<span class="cke_accessibility">, non disponibile</span>'},contextmenu:{options:'Opzioni del menù contestuale'},specialChar:{toolbar:'Inserisci carattere speciale',title:'Seleziona carattere speciale',options:'Opzioni carattere speciale'},link:{toolbar:'Inserisci/Modifica collegamento',other:'<altro>',menu:'Modifica collegamento',title:'Collegamento',info:'Informazioni collegamento',target:'Destinazione',upload:'Carica',advanced:'Avanzate',type:'Tipo di Collegamento',toUrl:'URL',toAnchor:'Ancora nella pagina',toEmail:'E-Mail',targetFrame:'<riquadro>',targetPopup:'<finestra popup>',targetFrameName:'Nome del riquadro di destinazione',targetPopupName:'Nome finestra popup',popupFeatures:'Caratteristiche finestra popup',popupResizable:'Ridimensionabile',popupStatusBar:'Barra di stato',popupLocationBar:'Barra degli indirizzi',popupToolbar:'Barra degli strumenti',popupMenuBar:'Barra del menu',popupFullScreen:'A tutto schermo (IE)',popupScrollBars:'Barre di scorrimento',popupDependent:'Dipendente (Netscape)',popupLeft:'Posizione da sinistra',popupTop:"Posizione dall'alto",id:'Id',langDir:'Direzione scrittura',langDirLTR:'Da Sinistra a Destra (LTR)',langDirRTL:'Da Destra a Sinistra (RTL)',acccessKey:'Scorciatoia<br />da tastiera',name:'Nome',langCode:'Direzione scrittura',tabIndex:'Ordine di tabulazione',advisoryTitle:'Titolo',advisoryContentType:'Tipo della risorsa collegata',cssClasses:'Nome classe CSS',charset:'Set di caretteri della risorsa collegata',styles:'Stile',rel:'Relazioni',selectAnchor:'Scegli Ancora',anchorName:'Per Nome',anchorId:'Per id elemento',emailAddress:'Indirizzo E-Mail',emailSubject:'Oggetto del messaggio',emailBody:'Corpo del messaggio',noAnchors:'(Nessuna ancora disponibile nel documento)',noUrl:"Devi inserire l'URL del collegamento",noEmail:"Devi inserire un'indirizzo e-mail"},anchor:{toolbar:'Inserisci/Modifica Ancora',menu:'Proprietà ancora',title:'Proprietà ancora',name:'Nome ancora',errorName:"Inserici il nome dell'ancora",remove:"Rimuovi l'ancora"},list:{numberedTitle:'Proprietà liste numerate',bulletedTitle:'Proprietà liste puntate',type:'Tipo',start:'Inizio',validateStartNumber:'Il numero di inizio di una lista numerata deve essere un numero intero.',circle:'Cerchio',disc:'Disco',square:'Quadrato',none:'Nessuno',notset:'<non impostato>',armenian:'Numerazione Armena',georgian:'Numerazione Georgiana (an, ban, gan, ecc.)',lowerRoman:'Numerazione Romana minuscola (i, ii, iii, iv, v, ecc.)',upperRoman:'Numerazione Romana maiuscola (I, II, III, IV, V, ecc.)',lowerAlpha:'Alfabetico minuscolo (a, b, c, d, e, ecc.)',upperAlpha:'Alfabetico maiuscolo (A, B, C, D, E, ecc.)',lowerGreek:'Greco minuscolo (alpha, beta, gamma, ecc.)',decimal:'Decimale (1, 2, 3, ecc.)',decimalLeadingZero:'Decimale preceduto da 0 (01, 02, 03, ecc.)'},findAndReplace:{title:'Cerca e Sostituisci',find:'Trova',replace:'Sostituisci',findWhat:'Trova:',replaceWith:'Sostituisci con:',notFoundMsg:"L'elemento cercato non è stato trovato.",findOptions:'Opzioni di ricerca',matchCase:'Maiuscole/minuscole',matchWord:'Solo parole intere',matchCyclic:'Ricerca ciclica',replaceAll:'Sostituisci tutto',replaceSuccessMsg:'%1 occorrenza(e) sostituite.'},table:{toolbar:'Tabella',title:'Proprietà tabella',menu:'Proprietà tabella',deleteTable:'Cancella Tabella',rows:'Righe',columns:'Colonne',border:'Dimensione bordo',widthPx:'pixel',widthPc:'percento',widthUnit:'unità larghezza',cellSpace:'Spaziatura celle',cellPad:'Padding celle',caption:'Intestazione',summary:'Indice',headers:'Intestazione',headersNone:'Nessuna',headersColumn:'Prima Colonna',headersRow:'Prima Riga',headersBoth:'Entrambe',invalidRows:"Il numero di righe dev'essere un numero maggiore di 0.",invalidCols:"Il numero di colonne dev'essere un numero maggiore di 0.",invalidBorder:"La dimensione del bordo dev'essere un numero.",invalidWidth:"La larghezza della tabella dev'essere un numero.",invalidHeight:"L'altezza della tabella dev'essere un numero.",invalidCellSpacing:"La spaziatura tra le celle dev'essere un numero.",invalidCellPadding:"Il paging delle celle dev'essere un numero",cell:{menu:'Cella',insertBefore:'Inserisci Cella Prima',insertAfter:'Inserisci Cella Dopo',deleteCell:'Elimina celle',merge:'Unisce celle',mergeRight:'Unisci a Destra',mergeDown:'Unisci in Basso',splitHorizontal:'Dividi Cella Orizzontalmente',splitVertical:'Dividi Cella Verticalmente',title:'Proprietà della cella',cellType:'Tipo di cella',rowSpan:'Su più righe',colSpan:'Su più colonne',wordWrap:'Ritorno a capo',hAlign:'Allineamento orizzontale',vAlign:'Allineamento verticale',alignBaseline:'Linea Base',bgColor:'Colore di Sfondo',borderColor:'Colore del Bordo',data:'Dati',header:'Intestazione',yes:'Si',no:'No',invalidWidth:"La larghezza della cella dev'essere un numero.",invalidHeight:"L'altezza della cella dev'essere un numero.",invalidRowSpan:"Il numero di righe dev'essere un numero intero.",invalidColSpan:"Il numero di colonne dev'essere un numero intero.",chooseColor:'Scegli'},row:{menu:'Riga',insertBefore:'Inserisci Riga Prima',insertAfter:'Inserisci Riga Dopo',deleteRow:'Elimina righe'},column:{menu:'Colonna',insertBefore:'Inserisci Colonna Prima',insertAfter:'Inserisci Colonna Dopo',deleteColumn:'Elimina colonne'}},button:{title:'Proprietà bottone',text:'Testo (Valore)',type:'Tipo',typeBtn:'Bottone',typeSbm:'Invio',typeRst:'Annulla'},checkboxAndRadio:{checkboxTitle:'Proprietà checkbox',radioTitle:'Proprietà radio button',value:'Valore',selected:'Selezionato'},form:{title:'Proprietà modulo',menu:'Proprietà modulo',action:'Azione',method:'Metodo',encoding:'Codifica'},select:{title:'Proprietà menu di selezione',selectInfo:'Info',opAvail:'Opzioni disponibili',value:'Valore',size:'Dimensione',lines:'righe',chkMulti:'Permetti selezione multipla',opText:'Testo',opValue:'Valore',btnAdd:'Aggiungi',btnModify:'Modifica',btnUp:'Su',btnDown:'Gi',btnSetValue:'Imposta come predefinito',btnDelete:'Rimuovi'},textarea:{title:'Proprietà area di testo',cols:'Colonne',rows:'Righe'},textfield:{title:'Proprietà campo di testo',name:'Nome',value:'Valore',charWidth:'Larghezza',maxChars:'Numero massimo di caratteri',type:'Tipo',typeText:'Testo',typePass:'Password'},hidden:{title:'Proprietà campo nascosto',name:'Nome',value:'Valore'},image:{title:'Proprietà immagine',titleButton:'Proprietà bottone immagine',menu:'Proprietà immagine',infoTab:'Informazioni immagine',btnUpload:'Invia al server',upload:'Carica',alt:'Testo alternativo',lockRatio:'Blocca rapporto',resetSize:'Reimposta dimensione',border:'Bordo',hSpace:'HSpace',vSpace:'VSpace',alertUrl:"Devi inserire l'URL per l'immagine",linkTab:'Collegamento',button2Img:"Vuoi trasformare il bottone immagine selezionato in un'immagine semplice?",img2Button:"Vuoi trasferomare l'immagine selezionata in un bottone immagine?",urlMissing:"Manca l'URL dell'immagine.",validateBorder:'Il campo Bordo deve essere un numero intero.',validateHSpace:'Il campo HSpace deve essere un numero intero.',validateVSpace:'Il campo VSpace deve essere un numero intero.'},flash:{properties:'Proprietà Oggetto Flash',propertiesTab:'Proprietà',title:'Proprietà Oggetto Flash',chkPlay:'Avvio Automatico',chkLoop:'Riavvio automatico',chkMenu:'Abilita Menu di Flash',chkFull:'Permetti la modalità tutto schermo',scale:'Ridimensiona',scaleAll:'Mostra Tutto',scaleNoBorder:'Senza Bordo',scaleFit:'Dimensione Esatta',access:'Accesso Script',accessAlways:'Sempre',accessSameDomain:'Solo stesso dominio',accessNever:'Mai',alignAbsBottom:'In basso assoluto',alignAbsMiddle:'Centrato assoluto',alignBaseline:'Linea base',alignTextTop:'In alto al testo',quality:'Qualità',qualityBest:'Massima',qualityHigh:'Alta',qualityAutoHigh:'Alta Automatica',qualityMedium:'Intermedia',qualityAutoLow:'Bassa Automatica',qualityLow:'Bassa',windowModeWindow:'Finestra',windowModeOpaque:'Opaca',windowModeTransparent:'Trasparente',windowMode:'Modalità finestra',flashvars:'Variabili per Flash',bgcolor:'Colore sfondo',hSpace:'HSpace',vSpace:'VSpace',validateSrc:"Devi inserire l'URL del collegamento",validateHSpace:"L'HSpace dev'essere un numero.",validateVSpace:"Il VSpace dev'essere un numero."},spellCheck:{toolbar:'Correttore ortografico',title:'Controllo ortografico',notAvailable:'Il servizio non è momentaneamente disponibile.',errorLoading:"Errore nel caricamento dell'host col servizio applicativo: %s.",notInDic:'Non nel dizionario',changeTo:'Cambia in',btnIgnore:'Ignora',btnIgnoreAll:'Ignora tutto',btnReplace:'Cambia',btnReplaceAll:'Cambia tutto',btnUndo:'Annulla',noSuggestions:'- Nessun suggerimento -',progress:'Controllo ortografico in corso',noMispell:'Controllo ortografico completato: nessun errore trovato',noChanges:'Controllo ortografico completato: nessuna parola cambiata',oneChange:'Controllo ortografico completato: 1 parola cambiata',manyChanges:'Controllo ortografico completato: %1 parole cambiate',ieSpellDownload:'Contollo ortografico non installato. Lo vuoi scaricare ora?'},smiley:{toolbar:'Emoticon',title:'Inserisci emoticon',options:'Opzioni Smiley'},elementsPath:{eleLabel:'Percorso degli elementi',eleTitle:'%1 elemento'},numberedlist:'Elenco numerato',bulletedlist:'Elenco puntato',indent:'Aumenta rientro',outdent:'Riduci rientro',justify:{left:'Allinea a sinistra',center:'Centra',right:'Allinea a destra',block:'Giustifica'},blockquote:'Citazione',clipboard:{title:'Incolla',cutError:'Le impostazioni di sicurezza del browser non permettono di tagliare automaticamente il testo. Usa la tastiera (Ctrl/Cmd+X).',copyError:'Le impostazioni di sicurezza del browser non permettono di copiare automaticamente il testo. Usa la tastiera (Ctrl/Cmd+C).',pasteMsg:"Incolla il testo all'interno dell'area sottostante usando la scorciatoia di tastiere (<STRONG>Ctrl/Cmd+V</STRONG>) e premi <STRONG>OK</STRONG>.",securityMsg:"A causa delle impostazioni di sicurezza del browser,l'editor non è in grado di accedere direttamente agli appunti. E' pertanto necessario incollarli di nuovo in questa finestra.",pasteArea:'Incolla'},pastefromword:{confirmCleanup:'Il testo da incollare sembra provenire da Word. Desideri pulirlo prima di incollare?',toolbar:'Incolla da Word',title:'Incolla da Word',error:'Non è stato possibile eliminarre il testo incollato a causa di un errore interno.'},pasteText:{button:'Incolla come testo semplice',title:'Incolla come testo semplice'},templates:{button:'Modelli',title:'Contenuto dei modelli',options:'Opzioni del Modello',insertOption:'Cancella il contenuto corrente',selectPromptMsg:"Seleziona il modello da aprire nell'editor<br />(il contenuto attuale verrà eliminato):",emptyListMsg:'(Nessun modello definito)'},showBlocks:'Visualizza Blocchi',stylesCombo:{label:'Stile',panelTitle:'Stili di formattazione',panelTitle1:'Stili per blocchi',panelTitle2:'Stili in linea',panelTitle3:'Stili per oggetti'},format:{label:'Formato',panelTitle:'Formato',tag_p:'Normale',tag_pre:'Formattato',tag_address:'Indirizzo',tag_h1:'Titolo 1',tag_h2:'Titolo 2',tag_h3:'Titolo 3',tag_h4:'Titolo 4',tag_h5:'Titolo 5',tag_h6:'Titolo 6',tag_div:'Paragrafo (DIV)'},div:{title:'Crea DIV contenitore',toolbar:'Crea DIV contenitore',cssClassInputLabel:'Classi di stile',styleSelectLabel:'Stile',IdInputLabel:'Id',languageCodeInputLabel:'Codice lingua',inlineStyleInputLabel:'Stile Inline',advisoryTitleInputLabel:'Titolo Avviso',langDirLabel:'Direzione di scrittura',langDirLTRLabel:'Da sinistra a destra (LTR)',langDirRTLLabel:'Da destra a sinistra (RTL)',edit:'Modifica DIV',remove:'Rimuovi DIV'},iframe:{title:'Proprietà IFrame',toolbar:'IFrame',noUrl:"Inserire l'URL del campo IFrame",scrolling:'Abilita scrollbar',border:'Mostra il bordo'},font:{label:'Carattere',voiceLabel:'Carattere',panelTitle:'Carattere'},fontSize:{label:'Dimensione',voiceLabel:'Dimensione Carattere',panelTitle:'Dimensione'},colorButton:{textColorTitle:'Colore testo',bgColorTitle:'Colore sfondo',panelTitle:'Colori',auto:'Automatico',more:'Altri colori...'},colors:{'000':'Nero',800000:'Marrone Castagna','8B4513':'Marrone Cuoio','2F4F4F':'Grigio Fumo di Londra','008080':'Acquamarina','000080':'Blu Oceano','4B0082':'Indigo',696969:'Grigio Scuro',B22222:'Giallo Fiamma',A52A2A:'Marrone',DAA520:'Giallo Mimosa','006400':'Verde Scuro','40E0D0':'Turchese','0000CD':'Blue Scuro',800080:'Viola',808080:'Grigio',F00:'Rosso',FF8C00:'Arancio Scuro',FFD700:'Oro','008000':'Verde','0FF':'Ciano','00F':'Blu',EE82EE:'Violetto',A9A9A9:'Grigio Scuro',FFA07A:'Salmone',FFA500:'Arancio',FFFF00:'Giallo','00FF00':'Lime',AFEEEE:'Turchese Chiaro',ADD8E6:'Blu Chiaro',DDA0DD:'Rosso Ciliegia',D3D3D3:'Grigio Chiaro',FFF0F5:'Lavanda Chiara',FAEBD7:'Bianco Antico',FFFFE0:'Giallo Chiaro',F0FFF0:'Verde Mela',F0FFFF:'Azzurro',F0F8FF:'Celeste',E6E6FA:'Lavanda',FFF:'Bianco'},scayt:{title:'Controllo Ortografico Mentre Scrivi',opera_title:'Non supportato da Opera',enable:'Abilita COMS',disable:'Disabilita COMS',about:'About COMS',toggle:'Inverti abilitazione SCOMS',options:'Opzioni',langs:'Lingue',moreSuggestions:'Altri suggerimenti',ignore:'Ignora',ignoreAll:'Ignora tutti',addWord:'Aggiungi Parola',emptyDic:'Il nome del dizionario non può essere vuoto.',noSuggestions:'Nessun suggerimento',optionsTab:'Opzioni',allCaps:'Ignora Parole in maiuscolo',ignoreDomainNames:'Ignora nomi di dominio',mixedCase:'Ignora parole con maiuscole e minuscole',mixedWithDigits:'Ignora parole con numeri',languagesTab:'Lingue',dictionariesTab:'Dizionari',dic_field_name:'Nome del dizionario',dic_create:'Crea',dic_restore:'Ripristina',dic_delete:'Cancella',dic_rename:'Rinomina',dic_info:'Inizialmente il dizionario utente è memorizzato in un Cookie. I Cookie però hanno una dimensioni massima limitata. Quando il dizionario utente creasce a tal punto da non poter più essere memorizzato in un Cookie, allora il dizionario può essere memorizzato sul nostro server. Per memorizzare il proprio dizionario personale sul nostro server, è necessario specificare un nome per il proprio dizionario. Se avete già memorizzato un dizionario, inserite il nome che gli avete dato e premete il pulsante Ripristina.',aboutTab:'Info'},about:{title:'Riguardo CKEditor',dlgTitle:'Riguardo CKEditor',help:"Vedi $1 per l'aiuto.",userGuide:'Guida Utente CKEditor',moreInfo:'Per le informazioni sulla licenza si prega di visitare il nostro sito:',copy:'Copyright © $1. Tutti i diritti riservati.'},maximize:'Massimizza',minimize:'Minimizza',fakeobjects:{anchor:'Ancora',flash:'Animazione Flash',iframe:'IFrame',hiddenfield:'Campo Nascosto',unknown:'Oggetto sconosciuto'},resize:'Trascina per ridimensionare',colordialog:{title:'Selezionare il colore',options:'Opzioni colore',highlight:'Evidenzia',selected:'Seleziona il colore',clear:'cancella'},toolbarCollapse:'Minimizza Toolbar',toolbarExpand:'Espandi Toolbar',toolbarGroups:{document:'Documento',clipboard:'Copia negli appunti/Indietro',editing:'Modifica',forms:'Form',basicstyles:'Stili di base',paragraph:'Paragrafo',links:'Link',insert:'Inserisci',styles:'Stili',colors:'Colori',tools:'Strumenti'},bidi:{ltr:'Direzione del testo da sinistra verso destra',rtl:'Direzione del testo da destra verso sinistra'},docprops:{label:'Proprietà del Documento',title:'Proprietà del Documento',design:'Disegna',meta:'Meta Data',chooseColor:'Scegli',other:'<altro>',docTitle:'Titolo pagina',charset:'Set di caretteri',charsetOther:'Altro set di caretteri',charsetASCII:'ASCII',charsetCE:'Europa Centrale',charsetCT:'Cinese Tradizionale (Big5)',charsetCR:'Cirillico',charsetGR:'Greco',charsetJP:'Giapponese',charsetKR:'Coreano',charsetTR:'Turco',charsetUN:'Unicode (UTF-8)',charsetWE:'Europa Occidentale',docType:'Intestazione DocType',docTypeOther:'Altra intestazione DocType',xhtmlDec:'Includi dichiarazione XHTML',bgColor:'Colore di sfondo',bgImage:'Immagine di sfondo',bgFixed:'Sfondo fissato',txtColor:'Colore testo',margin:'Margini',marginTop:'In Alto',marginLeft:'A Sinistra',marginRight:'A Destra',marginBottom:'In Basso',metaKeywords:'Chiavi di indicizzazione documento (separate da virgola)',metaDescription:'Descrizione documento',metaAuthor:'Autore',metaCopyright:'Copyright',previewHtml:'<p>Questo è un <strong>testo di esempio</strong>. State usando <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/sr-latn.js���������������������������������������0000664�0001750�0001750�00000042667�12262650742�022732� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang['sr-latn']={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Kôd',newPage:'Nova stranica',save:'Sačuvaj',preview:'Izgled stranice',cut:'Iseci',copy:'Kopiraj',paste:'Zalepi',print:'Štampa',underline:'Podvučeno',bold:'Podebljano',italic:'Kurziv',selectAll:'Označi sve',removeFormat:'Ukloni formatiranje',strike:'Precrtano',subscript:'Indeks',superscript:'Stepen',horizontalrule:'Unesi horizontalnu liniju',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Ukloni link',undo:'Poni�ti akciju',redo:'Ponovi akciju',common:{browseServer:'Pretraži server',url:'URL',protocol:'Protokol',upload:'Pošalji',uploadSubmit:'Pošalji na server',image:'Slika',flash:'Fleš',form:'Forma',checkbox:'Polje za potvrdu',radio:'Radio-dugme',textField:'Tekstualno polje',textarea:'Zona teksta',hiddenField:'Skriveno polje',button:'Dugme',select:'Izborno polje',imageButton:'Dugme sa slikom',notSet:'<nije postavljeno>',id:'Id',name:'Naziv',langDir:'Smer jezika',langDirLtr:'S leva na desno (LTR)',langDirRtl:'S desna na levo (RTL)',langCode:'Kôd jezika',longDescr:'Pun opis URL',cssClass:'Stylesheet klase',advisoryTitle:'Advisory naslov',cssStyle:'Stil',ok:'OK',cancel:'Otkaži',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Napredni tagovi',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Širina',height:'Visina',align:'Ravnanje',alignLeft:'Levo',alignRight:'Desno',alignCenter:'Sredina',alignTop:'Vrh',alignMiddle:'Sredina',alignBottom:'Dole',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Unesi specijalni karakter',title:'Odaberite specijalni karakter',options:'Special Character Options'},link:{toolbar:'Unesi/izmeni link',other:'<остало>',menu:'Izmeni link',title:'Link',info:'Link Info',target:'Meta',upload:'Pošalji',advanced:'Napredni tagovi',type:'Vrsta linka',toUrl:'URL',toAnchor:'Sidro na ovoj stranici',toEmail:'E-Mail',targetFrame:'<okvir>',targetPopup:'<popup prozor>',targetFrameName:'Naziv odredišnog frejma',targetPopupName:'Naziv popup prozora',popupFeatures:'Mogućnosti popup prozora',popupResizable:'Resizable',popupStatusBar:'Statusna linija',popupLocationBar:'Lokacija',popupToolbar:'Toolbar',popupMenuBar:'Kontekstni meni',popupFullScreen:'Prikaz preko celog ekrana (IE)',popupScrollBars:'Scroll bar',popupDependent:'Zavisno (Netscape)',popupLeft:'Od leve ivice ekrana (px)',popupTop:'Od vrha ekrana (px)',id:'Id',langDir:'Smer jezika',langDirLTR:'S leva na desno (LTR)',langDirRTL:'S desna na levo (RTL)',acccessKey:'Pristupni taster',name:'Naziv',langCode:'Smer jezika',tabIndex:'Tab indeks',advisoryTitle:'Advisory naslov',advisoryContentType:'Advisory vrsta sadržaja',cssClasses:'Stylesheet klase',charset:'Linked Resource Charset',styles:'Stil',rel:'Relationship',selectAnchor:'Odaberi sidro',anchorName:'Po nazivu sidra',anchorId:'Po Id-ju elementa',emailAddress:'E-Mail adresa',emailSubject:'Naslov',emailBody:'Sadržaj poruke',noAnchors:'(Nema dostupnih sidra)',noUrl:'Unesite URL linka',noEmail:'Otkucajte adresu elektronske pote'},anchor:{toolbar:'Unesi/izmeni sidro',menu:'Osobine sidra',title:'Osobine sidra',name:'Ime sidra',errorName:'Unesite ime sidra',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Pretraga',replace:'Zamena',findWhat:'Pronadi:',replaceWith:'Zameni sa:',notFoundMsg:'Traženi tekst nije pronađen.',findOptions:'Find Options',matchCase:'Razlikuj mala i velika slova',matchWord:'Uporedi cele reci',matchCyclic:'Match cyclic',replaceAll:'Zameni sve',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Tabela',title:'Osobine tabele',menu:'Osobine tabele',deleteTable:'Delete Table',rows:'Redova',columns:'Kolona',border:'Veličina okvira',widthPx:'piksela',widthPc:'procenata',widthUnit:'width unit',cellSpace:'Ćelijski prostor',cellPad:'Razmak ćelija',caption:'Naslov tabele',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Obriši ćelije',merge:'Spoj celije',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Obriši redove'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Obriši kolone'}},button:{title:'Osobine dugmeta',text:'Tekst (vrednost)',type:'Tip',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Osobine polja za potvrdu',radioTitle:'Osobine radio-dugmeta',value:'Vrednost',selected:'Označeno'},form:{title:'Osobine forme',menu:'Osobine forme',action:'Akcija',method:'Metoda',encoding:'Encoding'},select:{title:'Osobine izbornog polja',selectInfo:'Info',opAvail:'Dostupne opcije',value:'Vrednost',size:'Veličina',lines:'linija',chkMulti:'Dozvoli višestruku selekciju',opText:'Tekst',opValue:'Vrednost',btnAdd:'Dodaj',btnModify:'Izmeni',btnUp:'Gore',btnDown:'Dole',btnSetValue:'Podesi kao označenu vrednost',btnDelete:'Obriši'},textarea:{title:'Osobine zone teksta',cols:'Broj kolona',rows:'Broj redova'},textfield:{title:'Osobine tekstualnog polja',name:'Naziv',value:'Vrednost',charWidth:'Širina (karaktera)',maxChars:'Maksimalno karaktera',type:'Tip',typeText:'Tekst',typePass:'Lozinka'},hidden:{title:'Osobine skrivenog polja',name:'Naziv',value:'Vrednost'},image:{title:'Osobine slika',titleButton:'Osobine dugmeta sa slikom',menu:'Osobine slika',infoTab:'Info slike',btnUpload:'Pošalji na server',upload:'Pošalji',alt:'Alternativni tekst',lockRatio:'Zaključaj odnos',resetSize:'Resetuj veličinu',border:'Okvir',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Unesite URL slike',linkTab:'Link',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Osobine fleša',propertiesTab:'Properties',title:'Osobine fleša',chkPlay:'Automatski start',chkLoop:'Ponavljaj',chkMenu:'Uključi fleš meni',chkFull:'Allow Fullscreen',scale:'Skaliraj',scaleAll:'Prikaži sve',scaleNoBorder:'Bez ivice',scaleFit:'Popuni površinu',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs dole',alignAbsMiddle:'Abs sredina',alignBaseline:'Bazno',alignTextTop:'Vrh teksta',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Boja pozadine',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'Unesite URL linka',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Proveri spelovanje',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Nije u rečniku',changeTo:'Izmeni',btnIgnore:'Ignoriši',btnIgnoreAll:'Ignoriši sve',btnReplace:'Zameni',btnReplaceAll:'Zameni sve',btnUndo:'Vrati akciju',noSuggestions:'- Bez sugestija -',progress:'Provera spelovanja u toku...',noMispell:'Provera spelovanja završena: greške nisu pronadene',noChanges:'Provera spelovanja završena: Nije izmenjena nijedna rec',oneChange:'Provera spelovanja završena: Izmenjena je jedna reč',manyChanges:'Provera spelovanja završena: %1 reč(i) je izmenjeno',ieSpellDownload:'Provera spelovanja nije instalirana. Da li želite da je skinete sa Interneta?'},smiley:{toolbar:'Smajli',title:'Unesi smajlija',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Nabrojiva lista',bulletedlist:'Nenabrojiva lista',indent:'Uvećaj levu marginu',outdent:'Smanji levu marginu',justify:{left:'Levo ravnanje',center:'Centriran tekst',right:'Desno ravnanje',block:'Obostrano ravnanje'},blockquote:'Block Quote',clipboard:{title:'Zalepi',cutError:'Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog isecanja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl/Cmd+X).',copyError:'Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog kopiranja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl/Cmd+C).',pasteMsg:'Molimo Vas da zalepite unutar donje povrine koristeći tastaturnu prečicu (<STRONG>Ctrl/Cmd+V</STRONG>) i da pritisnete <STRONG>OK</STRONG>.',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Zalepi iz Worda',title:'Zalepi iz Worda',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Zalepi kao čist tekst',title:'Zalepi kao čist tekst'},templates:{button:'Obrasci',title:'Obrasci za sadržaj',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Molimo Vas da odaberete obrazac koji ce biti primenjen na stranicu (trenutni sadržaj ce biti obrisan):',emptyListMsg:'(Nema definisanih obrazaca)'},showBlocks:'Show Blocks',stylesCombo:{label:'Stil',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Format',tag_p:'Normal',tag_pre:'Formatirano',tag_address:'Adresa',tag_h1:'Naslov 1',tag_h2:'Naslov 2',tag_h3:'Naslov 3',tag_h4:'Naslov 4',tag_h5:'Naslov 5',tag_h6:'Naslov 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font'},fontSize:{label:'Veličina fonta',voiceLabel:'Font Size',panelTitle:'Veličina fonta'},colorButton:{textColorTitle:'Boja teksta',bgColorTitle:'Boja pozadine',panelTitle:'Colors',auto:'Automatski',more:'Više boja...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'Bez sugestija',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Osobine dokumenta',title:'Osobine dokumenta',design:'Design',meta:'Metapodaci',chooseColor:'Choose',other:'<остало>',docTitle:'Naslov stranice',charset:'Kodiranje skupa karaktera',charsetOther:'Ostala kodiranja skupa karaktera',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Zaglavlje tipa dokumenta',docTypeOther:'Ostala zaglavlja tipa dokumenta',xhtmlDec:'Ukljuci XHTML deklaracije',bgColor:'Boja pozadine',bgImage:'URL pozadinske slike',bgFixed:'Fiksirana pozadina',txtColor:'Boja teksta',margin:'Margine stranice',marginTop:'Gornja',marginLeft:'Leva',marginRight:'Desna',marginBottom:'Donja',metaKeywords:'Ključne reci za indeksiranje dokumenta (razdvojene zarezima)',metaDescription:'Opis dokumenta',metaAuthor:'Autor',metaCopyright:'Autorska prava',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/fr-ca.js�����������������������������������������0000664�0001750�0001750�00000044275�12262650742�022337� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang['fr-ca']={dir:'ltr',editorTitle:'Editor de text enriquit, %1',editorHelp:'Prem ALT 0 per obtenir ajuda',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Source',newPage:'Nouvelle page',save:'Sauvegarder',preview:'Previsualiser',cut:'Couper',copy:'Copier',paste:'Coller',print:'Imprimer',underline:'Souligné',bold:'Gras',italic:'Italique',selectAll:'Tout sélectionner',removeFormat:'Supprimer le formatage',strike:'Barrer',subscript:'Indice',superscript:'Exposant',horizontalrule:'Insérer un séparateur',pagebreak:'Insérer un saut de page',pagebreakAlt:'Page Break',unlink:'Supprimer le lien',undo:'Annuler',redo:'Refaire',common:{browseServer:'Parcourir le serveur',url:'URL',protocol:'Protocole',upload:'Télécharger',uploadSubmit:'Envoyer sur le serveur',image:'Image',flash:'Animation Flash',form:'Formulaire',checkbox:'Case à cocher',radio:'Bouton radio',textField:'Champ texte',textarea:'Zone de texte',hiddenField:'Champ caché',button:'Bouton',select:'Champ de sélection',imageButton:'Bouton image',notSet:'<Par défaut>',id:'Id',name:'Nom',langDir:"Sens d'écriture",langDirLtr:'De gauche à droite (LTR)',langDirRtl:'De droite à gauche (RTL)',langCode:'Code langue',longDescr:'URL de description longue',cssClass:'Classes de feuilles de style',advisoryTitle:'Titre',cssStyle:'Style',ok:'OK',cancel:'Annuler',close:'Close',preview:'Preview',generalTab:'Général',advancedTab:'Avancée',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Largeur',height:'Hauteur',align:'Alignement',alignLeft:'Gauche',alignRight:'Droite',alignCenter:'Centré',alignTop:'Haut',alignMiddle:'Milieu',alignBottom:'Bas',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Insérer un caractère spécial',title:'Insérer un caractère spécial',options:'Special Character Options'},link:{toolbar:'Insérer/modifier le lien',other:'<other>',menu:'Modifier le lien',title:'Propriétés du lien',info:'Informations sur le lien',target:'Destination',upload:'Télécharger',advanced:'Avancée',type:'Type de lien',toUrl:'URL',toAnchor:'Ancre dans cette page',toEmail:'E-Mail',targetFrame:'<Cadre>',targetPopup:'<fenêtre popup>',targetFrameName:'Nom du cadre de destination',targetPopupName:'Nom de la fenêtre popup',popupFeatures:'Caractéristiques de la fenêtre popup',popupResizable:'Resizable',popupStatusBar:"Barre d'état",popupLocationBar:"Barre d'adresses",popupToolbar:"Barre d'outils",popupMenuBar:'Barre de menu',popupFullScreen:'Plein écran (IE)',popupScrollBars:'Barres de défilement',popupDependent:'Dépendante (Netscape)',popupLeft:'Position à partir de la gauche',popupTop:'Position à partir du haut',id:'Id',langDir:"Sens d'écriture",langDirLTR:'De gauche à droite (LTR)',langDirRTL:'De droite à gauche (RTL)',acccessKey:'Équivalent clavier',name:'Nom',langCode:"Sens d'écriture",tabIndex:'Ordre de tabulation',advisoryTitle:'Titre',advisoryContentType:'Type de contenu',cssClasses:'Classes de feuilles de style',charset:'Encodage de caractère',styles:'Style',rel:'Relationship',selectAnchor:'Sélectionner une ancre',anchorName:'Par nom',anchorId:'Par id',emailAddress:'Adresse E-Mail',emailSubject:'Sujet du message',emailBody:'Corps du message',noAnchors:"(Pas d'ancre disponible dans le document)",noUrl:"Veuillez saisir l'URL",noEmail:"Veuillez saisir l'adresse e-mail"},anchor:{toolbar:"Insérer/modifier l'ancre",menu:"Propriétés de l'ancre",title:"Propriétés de l'ancre",name:"Nom de l'ancre",errorName:"Veuillez saisir le nom de l'ancre",remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Chercher et Remplacer',find:'Chercher',replace:'Remplacer',findWhat:'Rechercher:',replaceWith:'Remplacer par:',notFoundMsg:'Le texte indiqué est introuvable.',findOptions:'Find Options',matchCase:'Respecter la casse',matchWord:'Mot entier',matchCyclic:'Match cyclic',replaceAll:'Tout remplacer',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Tableau',title:'Propriétés du tableau',menu:'Propriétés du tableau',deleteTable:'Supprimer le tableau',rows:'Lignes',columns:'Colonnes',border:'Taille de la bordure',widthPx:'pixels',widthPc:'pourcentage',widthUnit:'width unit',cellSpace:'Espacement',cellPad:'Contour',caption:'Titre',summary:'Résumé',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cellule',insertBefore:'Insérer une cellule avant',insertAfter:'Insérer une cellule après',deleteCell:'Supprimer des cellules',merge:'Fusionner les cellules',mergeRight:'Fusionner à droite',mergeDown:'Fusionner en bas',splitHorizontal:'Scinder la cellule horizontalement',splitVertical:'Scinder la cellule verticalement',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Ligne',insertBefore:'Insérer une ligne avant',insertAfter:'Insérer une ligne après',deleteRow:'Supprimer des lignes'},column:{menu:'Colonne',insertBefore:'Insérer une colonne avant',insertAfter:'Insérer une colonne après',deleteColumn:'Supprimer des colonnes'}},button:{title:'Propriétés du bouton',text:'Texte (Valeur)',type:'Type',typeBtn:'Bouton',typeSbm:'Soumettre',typeRst:'Réinitialiser'},checkboxAndRadio:{checkboxTitle:'Propriétés de la case à cocher',radioTitle:'Propriétés du bouton radio',value:'Valeur',selected:'Sélectionné'},form:{title:'Propriétés du formulaire',menu:'Propriétés du formulaire',action:'Action',method:'Méthode',encoding:'Encoding'},select:{title:'Propriétés de la liste/du menu',selectInfo:'Info',opAvail:'Options disponibles',value:'Valeur',size:'Taille',lines:'lignes',chkMulti:'Sélection multiple',opText:'Texte',opValue:'Valeur',btnAdd:'Ajouter',btnModify:'Modifier',btnUp:'Monter',btnDown:'Descendre',btnSetValue:'Valeur sélectionnée',btnDelete:'Supprimer'},textarea:{title:'Propriétés de la zone de texte',cols:'Colonnes',rows:'Lignes'},textfield:{title:'Propriétés du champ texte',name:'Nom',value:'Valeur',charWidth:'Largeur en caractères',maxChars:'Nombre maximum de caractères',type:'Type',typeText:'Texte',typePass:'Mot de passe'},hidden:{title:'Propriétés du champ caché',name:'Nom',value:'Valeur'},image:{title:"Propriétés de l'image",titleButton:'Propriétés du bouton image',menu:"Propriétés de l'image",infoTab:"Informations sur l'image",btnUpload:'Envoyer sur le serveur',upload:'Télécharger',alt:'Texte de remplacement',lockRatio:'Garder les proportions',resetSize:'Taille originale',border:'Bordure',hSpace:'Espacement horizontal',vSpace:'Espacement vertical',alertUrl:"Veuillez saisir l'URL de l'image",linkTab:'Lien',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:"Propriétés de l'animation Flash",propertiesTab:'Properties',title:"Propriétés de l'animation Flash",chkPlay:'Lecture automatique',chkLoop:'Boucle',chkMenu:'Activer le menu Flash',chkFull:'Allow Fullscreen',scale:'Affichage',scaleAll:'Par défaut (tout montrer)',scaleNoBorder:'Sans bordure',scaleFit:'Ajuster aux dimensions',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs Bas',alignAbsMiddle:'Abs Milieu',alignBaseline:'Bas du texte',alignTextTop:'Haut du texte',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Couleur de fond',hSpace:'Espacement horizontal',vSpace:'Espacement vertical',validateSrc:"Veuillez saisir l'URL",validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Orthographe',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Pas dans le dictionnaire',changeTo:'Changer en',btnIgnore:'Ignorer',btnIgnoreAll:'Ignorer tout',btnReplace:'Remplacer',btnReplaceAll:'Remplacer tout',btnUndo:'Annuler',noSuggestions:'- Pas de suggestion -',progress:"Vérification d'orthographe en cours...",noMispell:"Vérification d'orthographe terminée: pas d'erreur trouvée",noChanges:"Vérification d'orthographe terminée: Pas de modifications",oneChange:"Vérification d'orthographe terminée: Un mot modifié",manyChanges:"Vérification d'orthographe terminée: %1 mots modifiés",ieSpellDownload:"Le Correcteur d'orthographe n'est pas installé. Souhaitez-vous le télécharger maintenant?"},smiley:{toolbar:'Emoticon',title:'Insérer un Emoticon',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Liste numérotée',bulletedlist:'Liste à puces',indent:'Augmenter le retrait',outdent:'Diminuer le retrait',justify:{left:'Aligner à gauche',center:'Centrer',right:'Aligner à Droite',block:'Texte justifié'},blockquote:'Citation',clipboard:{title:'Coller',cutError:"Les paramètres de sécurité de votre navigateur empêchent l'éditeur de couper automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl/Cmd+X).",copyError:"Les paramètres de sécurité de votre navigateur empêchent l'éditeur de copier automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl/Cmd+C).",pasteMsg:'Veuillez coller dans la zone ci-dessous en utilisant le clavier (<STRONG>Ctrl/Cmd+V</STRONG>) et appuyer sur <STRONG>OK</STRONG>.',securityMsg:"A cause des paramètres de sécurité de votre navigateur, l'éditeur ne peut accéder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre.",pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Coller en tant que Word (formaté)',title:'Coller en tant que Word (formaté)',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Coller comme texte',title:'Coller comme texte'},templates:{button:'Modèles',title:'Modèles de contenu',options:'Template Options',insertOption:'Remplacer tout le contenu actuel',selectPromptMsg:"Sélectionner le modèle à ouvrir dans l'éditeur<br>(le contenu actuel sera remplacé):",emptyListMsg:'(Aucun modèle disponible)'},showBlocks:'Afficher les blocs',stylesCombo:{label:'Style',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Format',tag_p:'Normal',tag_pre:'Formaté',tag_address:'Adresse',tag_h1:'En-tête 1',tag_h2:'En-tête 2',tag_h3:'En-tête 3',tag_h4:'En-tête 4',tag_h5:'En-tête 5',tag_h6:'En-tête 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Police',voiceLabel:'Font',panelTitle:'Police'},fontSize:{label:'Taille',voiceLabel:'Font Size',panelTitle:'Taille'},colorButton:{textColorTitle:'Couleur de caractère',bgColorTitle:'Couleur de fond',panelTitle:'Colors',auto:'Automatique',more:'Plus de couleurs...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'Pas de suggestion',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Propriétés du document',title:'Propriétés du document',design:'Design',meta:'Méta-Données',chooseColor:'Choose',other:'<other>',docTitle:'Titre de la page',charset:'Encodage de caractère',charsetOther:'Autre encodage de caractère',charsetASCII:'ASCII',charsetCE:'Europe Centrale',charsetCT:'Chinois Traditionnel (Big5)',charsetCR:'Cyrillique',charsetGR:'Grecque',charsetJP:'Japonais',charsetKR:'Coréen',charsetTR:'Turcque',charsetUN:'Unicode (UTF-8)',charsetWE:'Occidental',docType:'Type de document',docTypeOther:'Autre type de document',xhtmlDec:'Inclure les déclarations XHTML',bgColor:'Couleur de fond',bgImage:'Image de fond',bgFixed:'Image fixe sans défilement',txtColor:'Couleur de caractère',margin:'Marges',marginTop:'Haut',marginLeft:'Gauche',marginRight:'Droite',marginBottom:'Bas',metaKeywords:'Mots-clés (séparés par des virgules)',metaDescription:'Description',metaAuthor:'Auteur',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/nl.js��������������������������������������������0000664�0001750�0001750�00000044445�12262650742�021757� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.nl={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Werkbalken',editor:'Tekstverwerker',source:'Code',newPage:'Nieuwe pagina',save:'Opslaan',preview:'Voorbeeld',cut:'Knippen',copy:'Kopiëren',paste:'Plakken',print:'Printen',underline:'Onderstreept',bold:'Vet',italic:'Cursief',selectAll:'Alles selecteren',removeFormat:'Opmaak verwijderen',strike:'Doorhalen',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Horizontale lijn invoegen',pagebreak:'Pagina-einde invoegen',pagebreakAlt:'Pagina-einde',unlink:'Link verwijderen',undo:'Ongedaan maken',redo:'Opnieuw uitvoeren',common:{browseServer:'Bladeren op server',url:'URL',protocol:'Protocol',upload:'Upload',uploadSubmit:'Naar server verzenden',image:'Afbeelding',flash:'Flash',form:'Formulier',checkbox:'Aanvinkvakje',radio:'Selectievakje',textField:'Tekstveld',textarea:'Tekstvak',hiddenField:'Verborgen veld',button:'Knop',select:'Selectieveld',imageButton:'Afbeeldingsknop',notSet:'<niet ingevuld>',id:'Id',name:'Naam',langDir:'Schrijfrichting',langDirLtr:'Links naar rechts (LTR)',langDirRtl:'Rechts naar links (RTL)',langCode:'Taalcode',longDescr:'Lange URL-omschrijving',cssClass:'Stylesheet-klassen',advisoryTitle:'Adviserende titel',cssStyle:'Stijl',ok:'OK',cancel:'Annuleren',close:'Sluiten',preview:'Voorbeeld',generalTab:'Algemeen',advancedTab:'Geavanceerd',validateNumberFailed:'Deze waarde is geen geldig getal.',confirmNewPage:'Alle aangebrachte wijzigingen gaan verloren. Weet u zeker dat u een nieuwe pagina wilt openen?',confirmCancel:'Enkele opties zijn gewijzigd. Weet u zeker dat u dit dialoogvenster wilt sluiten?',options:'Opties',target:'Doelvenster',targetNew:'Nieuw venster (_blank)',targetTop:'Hele venster (_top)',targetSelf:'Zelfde venster (_self)',targetParent:'Origineel venster (_parent)',langDirLTR:'Links naar rechts (LTR)',langDirRTL:'Rechts naar links (RTL)',styles:'Stijl',cssClasses:'Stylesheet klassen',width:'Breedte',height:'Hoogte',align:'Uitlijning',alignLeft:'Links',alignRight:'Rechts',alignCenter:'Centreren',alignTop:'Boven',alignMiddle:'Midden',alignBottom:'Onder',invalidValue:'Invalid value.',invalidHeight:'De hoogte moet een getal zijn.',invalidWidth:'De breedte moet een getal zijn.',invalidCssLength:'Waarde in veld "%1" moet een positief nummer zijn, met of zonder een geldige CSS meeteenheid (px, %, in, cm, mm, em, ex, pt of pc).',invalidHtmlLength:'Waarde in veld "%1" moet een positief nummer zijn, met of zonder een geldige HTML meeteenheid (px of %).',invalidInlineStyle:'Waarde voor de online stijl moet bestaan uit een of meerdere tupels met het formaat "naam : waarde", gescheiden door puntkomma\'s.',cssLengthTooltip:'Geef een nummer in voor een waarde in pixels of geef een nummer in met een geldige CSS eenheid (px, %, in, cm, mm, em, ex, pt, of pc).',unavailable:'%1<span class="cke_accessibility">, niet beschikbaar</span>'},contextmenu:{options:'Contextmenu opties'},specialChar:{toolbar:'Speciaal teken invoegen',title:'Selecteer speciaal teken',options:'Speciale tekens opties'},link:{toolbar:'Link invoegen/wijzigen',other:'<ander>',menu:'Link wijzigen',title:'Link',info:'Linkomschrijving',target:'Doelvenster',upload:'Upload',advanced:'Geavanceerd',type:'Linktype',toUrl:'URL',toAnchor:'Interne link in pagina',toEmail:'E-mail',targetFrame:'<frame>',targetPopup:'<popupvenster>',targetFrameName:'Naam doelframe',targetPopupName:'Naam popupvenster',popupFeatures:'Instellingen popupvenster',popupResizable:'Herschaalbaar',popupStatusBar:'Statusbalk',popupLocationBar:'Locatiemenu',popupToolbar:'Werkbalk',popupMenuBar:'Menubalk',popupFullScreen:'Volledig scherm (IE)',popupScrollBars:'Schuifbalken',popupDependent:'Afhankelijk (Netscape)',popupLeft:'Positie links',popupTop:'Positie boven',id:'Id',langDir:'Schrijfrichting',langDirLTR:'Links naar rechts (LTR)',langDirRTL:'Rechts naar links (RTL)',acccessKey:'Toegangstoets',name:'Naam',langCode:'Taalcode',tabIndex:'Tabvolgorde',advisoryTitle:'Adviserende titel',advisoryContentType:'Aanbevolen content-type',cssClasses:'Stylesheet-klassen',charset:'Karakterset van gelinkte bron',styles:'Stijl',rel:'Relatie',selectAnchor:'Kies een interne link',anchorName:'Op naam interne link',anchorId:'Op kenmerk interne link',emailAddress:'E-mailadres',emailSubject:'Onderwerp bericht',emailBody:'Inhoud bericht',noAnchors:'(Geen interne links in document gevonden)',noUrl:'Geef de link van de URL',noEmail:'Geef een e-mailadres'},anchor:{toolbar:'Interne link',menu:'Eigenschappen interne link',title:'Eigenschappen interne link',name:'Naam interne link',errorName:'Geef de naam van de interne link op',remove:'Interne link verwijderen'},list:{numberedTitle:'Eigenschappen genummerde lijst',bulletedTitle:'Eigenschappen lijst met opsommingstekens',type:'Type',start:'Start',validateStartNumber:'Startnummer van de lijst moet een heel nummer zijn.',circle:'Cirkel',disc:'Schijf',square:'Vierkant',none:'Geen',notset:'<niet gezet>',armenian:'Armeense nummering',georgian:'Georgische nummering (an, ban, gan, etc.)',lowerRoman:'Romeins kleine letters (i, ii, iii, iv, v, etc.)',upperRoman:'Romeinse hoofdletters (I, II, III, IV, V, etc.)',lowerAlpha:'Kleine letters (a, b, c, d, e, etc.)',upperAlpha:'Hoofdletters (A, B, C, D, E, etc.)',lowerGreek:'Grieks kleine letters (alpha, beta, gamma, etc.)',decimal:'Cijfers (1, 2, 3, etc.)',decimalLeadingZero:'Cijfers beginnen met nul (01, 02, 03, etc.)'},findAndReplace:{title:'Zoeken en vervangen',find:'Zoeken',replace:'Vervangen',findWhat:'Zoeken naar:',replaceWith:'Vervangen met:',notFoundMsg:'De opgegeven tekst is niet gevonden.',findOptions:'Zoekopties',matchCase:'Hoofdlettergevoelig',matchWord:'Hele woord moet voorkomen',matchCyclic:'Doorlopend zoeken',replaceAll:'Alles vervangen',replaceSuccessMsg:'%1 resultaten vervangen.'},table:{toolbar:'Tabel',title:'Eigenschappen tabel',menu:'Eigenschappen tabel',deleteTable:'Tabel verwijderen',rows:'Rijen',columns:'Kolommen',border:'Breedte rand',widthPx:'pixels',widthPc:'procent',widthUnit:'eenheid breedte',cellSpace:'Afstand tussen cellen',cellPad:'Ruimte in de cel',caption:'Naam',summary:'Samenvatting',headers:'Koppen',headersNone:'Geen',headersColumn:'Eerste kolom',headersRow:'Eerste rij',headersBoth:'Beide',invalidRows:'Het aantal rijen moet een getal zijn groter dan 0.',invalidCols:'Het aantal kolommen moet een getal zijn groter dan 0.',invalidBorder:'De rand breedte moet een getal zijn.',invalidWidth:'De tabelbreedte moet een getal zijn.',invalidHeight:'De tabelhoogte moet een getal zijn.',invalidCellSpacing:'Afstand tussen cellen moet een getal zijn.',invalidCellPadding:'Ruimte in de cel moet een getal zijn.',cell:{menu:'Cel',insertBefore:'Voeg cel in voor',insertAfter:'Voeg cel in achter',deleteCell:'Cellen verwijderen',merge:'Cellen samenvoegen',mergeRight:'Voeg samen naar rechts',mergeDown:'Voeg samen naar beneden',splitHorizontal:'Splits cellen horizontaal',splitVertical:'Splits cellen verticaal',title:'Cel eigenschappen',cellType:'Cel type',rowSpan:'Rijen samenvoegen',colSpan:'Kolommen samenvoegen',wordWrap:'Automatische terugloop',hAlign:'Horizontale uitlijning',vAlign:'Verticale uitlijning',alignBaseline:'Basislijn',bgColor:'Achtergrondkleur',borderColor:'Kleur rand',data:'Inhoud',header:'Kop',yes:'Ja',no:'Nee',invalidWidth:'De celbreedte moet een getal zijn.',invalidHeight:'De celhoogte moet een getal zijn.',invalidRowSpan:'Rijen samenvoegen moet een heel getal zijn.',invalidColSpan:'Kolommen samenvoegen moet een heel getal zijn.',chooseColor:'Kies'},row:{menu:'Rij',insertBefore:'Voeg rij in voor',insertAfter:'Voeg rij in achter',deleteRow:'Rijen verwijderen'},column:{menu:'Kolom',insertBefore:'Voeg kolom in voor',insertAfter:'Voeg kolom in achter',deleteColumn:'Kolommen verwijderen'}},button:{title:'Eigenschappen knop',text:'Tekst (waarde)',type:'Soort',typeBtn:'Knop',typeSbm:'Versturen',typeRst:'Leegmaken'},checkboxAndRadio:{checkboxTitle:'Eigenschappen aanvinkvakje',radioTitle:'Eigenschappen selectievakje',value:'Waarde',selected:'Geselecteerd'},form:{title:'Eigenschappen formulier',menu:'Eigenschappen formulier',action:'Actie',method:'Methode',encoding:'Codering'},select:{title:'Eigenschappen selectieveld',selectInfo:'Informatie',opAvail:'Beschikbare opties',value:'Waarde',size:'Grootte',lines:'Regels',chkMulti:'Gecombineerde selecties toestaan',opText:'Tekst',opValue:'Waarde',btnAdd:'Toevoegen',btnModify:'Wijzigen',btnUp:'Omhoog',btnDown:'Omlaag',btnSetValue:'Als geselecteerde waarde instellen',btnDelete:'Verwijderen'},textarea:{title:'Eigenschappen tekstvak',cols:'Kolommen',rows:'Rijen'},textfield:{title:'Eigenschappen tekstveld',name:'Naam',value:'Waarde',charWidth:'Breedte (tekens)',maxChars:'Maximum aantal tekens',type:'Soort',typeText:'Tekst',typePass:'Wachtwoord'},hidden:{title:'Eigenschappen verborgen veld',name:'Naam',value:'Waarde'},image:{title:'Eigenschappen afbeelding',titleButton:'Eigenschappen afbeeldingsknop',menu:'Eigenschappen afbeelding',infoTab:'Informatie afbeelding',btnUpload:'Naar server verzenden',upload:'Upload',alt:'Alternatieve tekst',lockRatio:'Afmetingen vergrendelen',resetSize:'Afmetingen resetten',border:'Rand',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Geef de URL van de afbeelding',linkTab:'Link',button2Img:'Wilt u de geselecteerde afbeeldingsknop vervangen door een eenvoudige afbeelding?',img2Button:'Wilt u de geselecteerde afbeelding vervangen door een afbeeldingsknop?',urlMissing:'De URL naar de afbeelding ontbreekt.',validateBorder:'Rand moet een heel nummer zijn.',validateHSpace:'HSpace moet een heel nummer zijn.',validateVSpace:'VSpace moet een heel nummer zijn.'},flash:{properties:'Eigenschappen Flash',propertiesTab:'Eigenschappen',title:'Eigenschappen Flash',chkPlay:'Automatisch afspelen',chkLoop:'Herhalen',chkMenu:"Flashmenu's inschakelen",chkFull:'Schermvullend toestaan',scale:'Schaal',scaleAll:'Alles tonen',scaleNoBorder:'Geen rand',scaleFit:'Precies passend',access:'Script toegang',accessAlways:'Altijd',accessSameDomain:'Zelfde domeinnaam',accessNever:'Nooit',alignAbsBottom:'Absoluut-onder',alignAbsMiddle:'Absoluut-midden',alignBaseline:'Basislijn',alignTextTop:'Boven tekst',quality:'Kwaliteit',qualityBest:'Beste',qualityHigh:'Hoog',qualityAutoHigh:'Automatisch hoog',qualityMedium:'Gemiddeld',qualityAutoLow:'Automatisch laag',qualityLow:'Laag',windowModeWindow:'Venster',windowModeOpaque:'Ondoorzichtig',windowModeTransparent:'Doorzichtig',windowMode:'Venster modus',flashvars:'Variabelen voor Flash',bgcolor:'Achtergrondkleur',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'De URL mag niet leeg zijn.',validateHSpace:'De HSpace moet een getal zijn.',validateVSpace:'De VSpace moet een getal zijn.'},spellCheck:{toolbar:'Spellingscontrole',title:'Spellingscontrole',notAvailable:'Excuses, deze dienst is momenteel niet beschikbaar.',errorLoading:'Er is een fout opgetreden bij het laden van de dienst: %s.',notInDic:'Niet in het woordenboek',changeTo:'Wijzig in',btnIgnore:'Negeren',btnIgnoreAll:'Alles negeren',btnReplace:'Vervangen',btnReplaceAll:'Alles vervangen',btnUndo:'Ongedaan maken',noSuggestions:'- Geen suggesties -',progress:'Bezig met spellingscontrole...',noMispell:'Klaar met spellingscontrole: geen fouten gevonden',noChanges:'Klaar met spellingscontrole: geen woorden aangepast',oneChange:'Klaar met spellingscontrole: één woord aangepast',manyChanges:'Klaar met spellingscontrole: %1 woorden aangepast',ieSpellDownload:'De spellingscontrole is niet geïnstalleerd. Wilt u deze nu downloaden?'},smiley:{toolbar:'Smiley',title:'Smiley invoegen',options:'Smiley opties'},elementsPath:{eleLabel:'Elementenpad',eleTitle:'%1 element'},numberedlist:'Genummerde lijst',bulletedlist:'Opsomming',indent:'Inspringing vergroten',outdent:'Inspringing verkleinen',justify:{left:'Links uitlijnen',center:'Centreren',right:'Rechts uitlijnen',block:'Uitvullen'},blockquote:'Citaatblok',clipboard:{title:'Plakken',cutError:'De beveiligingsinstelling van de browser verhinderen het automatisch knippen. Gebruik de sneltoets Ctrl/Cmd+X van het toetsenbord.',copyError:'De beveiligingsinstelling van de browser verhinderen het automatisch kopiëren. Gebruik de sneltoets Ctrl/Cmd+C van het toetsenbord.',pasteMsg:'Plak de tekst in het volgende vak gebruikmakend van uw toetsenbord (<strong>Ctrl/Cmd+V</strong>) en klik op OK.',securityMsg:'Door de beveiligingsinstellingen van uw browser is het niet mogelijk om direct vanuit het klembord in de editor te plakken. Middels opnieuw plakken in dit venster kunt u de tekst alsnog plakken in de editor.',pasteArea:'Plakgebied'},pastefromword:{confirmCleanup:'De tekst die u plakte lijkt gekopieerd te zijn vanuit Word. Wilt u de tekst opschonen voordat deze geplakt wordt?',toolbar:'Plakken als Word-gegevens',title:'Plakken als Word-gegevens',error:'Het was niet mogelijk om de geplakte tekst op te schonen door een interne fout'},pasteText:{button:'Plakken als platte tekst',title:'Plakken als platte tekst'},templates:{button:'Sjablonen',title:'Inhoud sjablonen',options:'Template opties',insertOption:'Vervang de huidige inhoud',selectPromptMsg:'Selecteer het sjabloon dat in de editor geopend moet worden (de actuele inhoud gaat verloren):',emptyListMsg:'(Geen sjablonen gedefinieerd)'},showBlocks:'Toon blokken',stylesCombo:{label:'Stijl',panelTitle:'Opmaakstijlen',panelTitle1:'Blok stijlen',panelTitle2:'Inline stijlen',panelTitle3:'Object stijlen'},format:{label:'Opmaak',panelTitle:'Opmaak',tag_p:'Normaal',tag_pre:'Met opmaak',tag_address:'Adres',tag_h1:'Kop 1',tag_h2:'Kop 2',tag_h3:'Kop 3',tag_h4:'Kop 4',tag_h5:'Kop 5',tag_h6:'Kop 6',tag_div:'Normaal (DIV)'},div:{title:'Div aanmaken',toolbar:'Div aanmaken',cssClassInputLabel:'Stylesheet klassen',styleSelectLabel:'Stijl',IdInputLabel:'Id',languageCodeInputLabel:' Taalcode',inlineStyleInputLabel:'Inline stijl',advisoryTitleInputLabel:'Adviserende titel',langDirLabel:'Schrijfrichting',langDirLTRLabel:'Links naar rechts (LTR)',langDirRTLLabel:'Rechts naar links (RTL)',edit:'Div wijzigen',remove:'Div verwijderen'},iframe:{title:'IFrame eigenschappen',toolbar:'IFrame',noUrl:'Geef de IFrame URL in',scrolling:'Scrollbalken inschakelen',border:'Framerand tonen'},font:{label:'Lettertype',voiceLabel:'Lettertype',panelTitle:'Lettertype'},fontSize:{label:'Lettergrootte',voiceLabel:'Lettergrootte',panelTitle:'Lettergrootte'},colorButton:{textColorTitle:'Tekstkleur',bgColorTitle:'Achtergrondkleur',panelTitle:'Kleuren',auto:'Automatisch',more:'Meer kleuren...'},colors:{'000':'Zwart',800000:'Kastanjebruin','8B4513':'Chocoladebruin','2F4F4F':'Donkerleigrijs','008080':'Blauwgroen','000080':'Marine','4B0082':'Indigo',696969:'Donkergrijs',B22222:'Baksteen',A52A2A:'Bruin',DAA520:'Donkergeel','006400':'Donkergroen','40E0D0':'Turquoise','0000CD':'Middenblauw',800080:'Paars',808080:'Grijs',F00:'Rood',FF8C00:'Donkeroranje',FFD700:'Goud','008000':'Groen','0FF':'Cyaan','00F':'Blauw',EE82EE:'Violet',A9A9A9:'Donkergrijs',FFA07A:'Lichtzalm',FFA500:'Oranje',FFFF00:'Geel','00FF00':'Felgroen',AFEEEE:'Lichtturquoise',ADD8E6:'Lichtblauw',DDA0DD:'Pruim',D3D3D3:'Lichtgrijs',FFF0F5:'Linnen',FAEBD7:'Ivoor',FFFFE0:'Lichtgeel',F0FFF0:'Honingdauw',F0FFFF:'Azuur',F0F8FF:'Licht hemelsblauw',E6E6FA:'Lavendel',FFF:'Wit'},scayt:{title:'Controleer de spelling tijdens het typen',opera_title:'Niet ondersteund door Opera',enable:'SCAYT inschakelen',disable:'SCAYT uitschakelen',about:'Over SCAYT',toggle:'SCAYT in/uitschakelen',options:'Opties',langs:'Talen',moreSuggestions:'Meer suggesties',ignore:'Negeren',ignoreAll:'Alles negeren',addWord:'Woord toevoegen',emptyDic:'De naam van het woordenboek mag niet leeg zijn.',noSuggestions:'Geen suggesties',optionsTab:'Opties',allCaps:'Negeer woorden helemaal in hoofdletters',ignoreDomainNames:'Negeer domeinnamen',mixedCase:'Negeer woorden met hoofd- en kleine letters',mixedWithDigits:'Negeer woorden met cijfers',languagesTab:'Talen',dictionariesTab:'Woordenboeken',dic_field_name:'Naam woordenboek',dic_create:'Aanmaken',dic_restore:'Terugzetten',dic_delete:'Verwijderen',dic_rename:'Hernoemen',dic_info:'Initieel wordt het gebruikerswoordenboek opgeslagen in een cookie. Cookies zijn echter beperkt in grootte. Zodra het gebruikerswoordenboek het punt bereikt waarop het niet meer in een cookie opgeslagen kan worden, dan wordt het woordenboek op de server opgeslagen. Om je persoonlijke woordenboek op je eigen server op te slaan, moet je een mapnaam opgeven. Indien je al een woordenboek hebt opgeslagen, typ dan de naam en klik op de Terugzetten knop.',aboutTab:'Over'},about:{title:'Over CKEditor',dlgTitle:'Over CKEditor',help:'Bekijk de $1 voor hulp.',userGuide:'CKEditor gebruiksaanwijzing',moreInfo:'Voor licentie informatie, bezoek onze website:',copy:'Copyright © $1. Alle rechten voorbehouden.'},maximize:'Maximaliseren',minimize:'Minimaliseren',fakeobjects:{anchor:'Interne link',flash:'Flash animatie',iframe:'IFrame',hiddenfield:'Verborgen veld',unknown:'Onbekend object'},resize:'Sleep om te herschalen',colordialog:{title:'Selecteer kleur',options:'Kleuropties',highlight:'Actief',selected:'Geselecteerde kleur',clear:'Wissen'},toolbarCollapse:'Werkbalk inklappen',toolbarExpand:'Werkbalk uitklappen',toolbarGroups:{document:'Document',clipboard:'Klembord/Ongedaan maken',editing:'Bewerken',forms:'Formulieren',basicstyles:'Basisstijlen',paragraph:'Paragraaf',links:'Links',insert:'Invoegen',styles:'Stijlen',colors:'Kleuren',tools:'Toepassingen'},bidi:{ltr:'Schrijfrichting van links naar rechts',rtl:'Schrijfrichting van rechts naar links'},docprops:{label:'Documenteigenschappen',title:'Documenteigenschappen',design:'Ontwerp',meta:'Meta tags',chooseColor:'Kies',other:'Anders...',docTitle:'Paginatitel',charset:'Tekencodering',charsetOther:'Andere tekencodering',charsetASCII:'ASCII',charsetCE:'Centraal Europees',charsetCT:'Traditioneel Chinees (Big5)',charsetCR:'Cyrillisch',charsetGR:'Grieks',charsetJP:'Japans',charsetKR:'Koreaans',charsetTR:'Turks',charsetUN:'Unicode (UTF-8)',charsetWE:'West Europees',docType:'Documenttype-definitie',docTypeOther:'Andere documenttype-definitie',xhtmlDec:'XHTML declaratie invoegen',bgColor:'Achtergrondkleur',bgImage:'Achtergrondafbeelding URL',bgFixed:'Niet-scrollend (gefixeerde) achtergrond',txtColor:'Tekstkleur',margin:'Pagina marges',marginTop:'Boven',marginLeft:'Links',marginRight:'Rechts',marginBottom:'Onder',metaKeywords:'Trefwoorden voor indexering (komma-gescheiden)',metaDescription:'Documentbeschrijving',metaAuthor:'Auteur',metaCopyright:'Auteursrechten',previewHtml:'<p>Dit is <strong>voorbeeld tekst</strong>. Je gebruikt <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/en-au.js�����������������������������������������0000664�0001750�0001750�00000041661�12262650742�022350� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang['en-au']={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Source',newPage:'New Page',save:'Save',preview:'Preview',cut:'Cut',copy:'Copy',paste:'Paste',print:'Print',underline:'Underline',bold:'Bold',italic:'Italic',selectAll:'Select All',removeFormat:'Remove Format',strike:'Strike Through',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Insert Horizontal Line',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Unlink',undo:'Undo',redo:'Redo',common:{browseServer:'Browse Server',url:'URL',protocol:'Protocol',upload:'Upload',uploadSubmit:'Send it to the Server',image:'Image',flash:'Flash',form:'Form',checkbox:'Checkbox',radio:'Radio Button',textField:'Text Field',textarea:'Textarea',hiddenField:'Hidden Field',button:'Button',select:'Selection Field',imageButton:'Image Button',notSet:'<not set>',id:'Id',name:'Name',langDir:'Language Direction',langDirLtr:'Left to Right (LTR)',langDirRtl:'Right to Left (RTL)',langCode:'Language Code',longDescr:'Long Description URL',cssClass:'Stylesheet Classes',advisoryTitle:'Advisory Title',cssStyle:'Style',ok:'OK',cancel:'Cancel',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Advanced',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Width',height:'Height',align:'Align',alignLeft:'Left',alignRight:'Right',alignCenter:'Centre',alignTop:'Top',alignMiddle:'Middle',alignBottom:'Bottom',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Insert Special Character',title:'Select Special Character',options:'Special Character Options'},link:{toolbar:'Link',other:'<other>',menu:'Edit Link',title:'Link',info:'Link Info',target:'Target',upload:'Upload',advanced:'Advanced',type:'Link Type',toUrl:'URL',toAnchor:'Link to anchor in the text',toEmail:'E-mail',targetFrame:'<frame>',targetPopup:'<popup window>',targetFrameName:'Target Frame Name',targetPopupName:'Popup Window Name',popupFeatures:'Popup Window Features',popupResizable:'Resizable',popupStatusBar:'Status Bar',popupLocationBar:'Location Bar',popupToolbar:'Toolbar',popupMenuBar:'Menu Bar',popupFullScreen:'Full Screen (IE)',popupScrollBars:'Scroll Bars',popupDependent:'Dependent (Netscape)',popupLeft:'Left Position',popupTop:'Top Position',id:'Id',langDir:'Language Direction',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',acccessKey:'Access Key',name:'Name',langCode:'Language Code',tabIndex:'Tab Index',advisoryTitle:'Advisory Title',advisoryContentType:'Advisory Content Type',cssClasses:'Stylesheet Classes',charset:'Linked Resource Charset',styles:'Style',rel:'Relationship',selectAnchor:'Select an Anchor',anchorName:'By Anchor Name',anchorId:'By Element Id',emailAddress:'E-Mail Address',emailSubject:'Message Subject',emailBody:'Message Body',noAnchors:'(No anchors available in the document)',noUrl:'Please type the link URL',noEmail:'Please type the e-mail address'},anchor:{toolbar:'Anchor',menu:'Edit Anchor',title:'Anchor Properties',name:'Anchor Name',errorName:'Please type the anchor name',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Find',replace:'Replace',findWhat:'Find what:',replaceWith:'Replace with:',notFoundMsg:'The specified text was not found.',findOptions:'Find Options',matchCase:'Match case',matchWord:'Match whole word',matchCyclic:'Match cyclic',replaceAll:'Replace All',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Table',title:'Table Properties',menu:'Table Properties',deleteTable:'Delete Table',rows:'Rows',columns:'Columns',border:'Border size',widthPx:'pixels',widthPc:'percent',widthUnit:'width unit',cellSpace:'Cell spacing',cellPad:'Cell padding',caption:'Caption',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a number.',invalidCellPadding:'Cell padding must be a number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Delete Cells',merge:'Merge Cells',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Delete Rows'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Delete Columns'}},button:{title:'Button Properties',text:'Text (Value)',type:'Type',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Checkbox Properties',radioTitle:'Radio Button Properties',value:'Value',selected:'Selected'},form:{title:'Form Properties',menu:'Form Properties',action:'Action',method:'Method',encoding:'Encoding'},select:{title:'Selection Field Properties',selectInfo:'Select Info',opAvail:'Available Options',value:'Value',size:'Size',lines:'lines',chkMulti:'Allow multiple selections',opText:'Text',opValue:'Value',btnAdd:'Add',btnModify:'Modify',btnUp:'Up',btnDown:'Down',btnSetValue:'Set as selected value',btnDelete:'Delete'},textarea:{title:'Textarea Properties',cols:'Columns',rows:'Rows'},textfield:{title:'Text Field Properties',name:'Name',value:'Value',charWidth:'Character Width',maxChars:'Maximum Characters',type:'Type',typeText:'Text',typePass:'Password'},hidden:{title:'Hidden Field Properties',name:'Name',value:'Value'},image:{title:'Image Properties',titleButton:'Image Button Properties',menu:'Image Properties',infoTab:'Image Info',btnUpload:'Send it to the Server',upload:'Upload',alt:'Alternative Text',lockRatio:'Lock Ratio',resetSize:'Reset Size',border:'Border',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Please type the image URL',linkTab:'Link',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flash Properties',propertiesTab:'Properties',title:'Flash Properties',chkPlay:'Auto Play',chkLoop:'Loop',chkMenu:'Enable Flash Menu',chkFull:'Allow Fullscreen',scale:'Scale',scaleAll:'Show all',scaleNoBorder:'No Border',scaleFit:'Exact Fit',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs Bottom',alignAbsMiddle:'Abs Middle',alignBaseline:'Baseline',alignTextTop:'Text Top',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Background colour',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'URL must not be empty.',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Check Spelling',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Not in dictionary',changeTo:'Change to',btnIgnore:'Ignore',btnIgnoreAll:'Ignore All',btnReplace:'Replace',btnReplaceAll:'Replace All',btnUndo:'Undo',noSuggestions:'- No suggestions -',progress:'Spell check in progress...',noMispell:'Spell check complete: No misspellings found',noChanges:'Spell check complete: No words changed',oneChange:'Spell check complete: One word changed',manyChanges:'Spell check complete: %1 words changed',ieSpellDownload:'Spell checker not installed. Do you want to download it now?'},smiley:{toolbar:'Smiley',title:'Insert a Smiley',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Insert/Remove Numbered List',bulletedlist:'Insert/Remove Bulleted List',indent:'Increase Indent',outdent:'Decrease Indent',justify:{left:'Align Left',center:'Centre',right:'Align Right',block:'Justify'},blockquote:'Block Quote',clipboard:{title:'Paste',cutError:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).",copyError:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).",pasteMsg:'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Paste from Word',title:'Paste from Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Paste as plain text',title:'Paste as Plain Text'},templates:{button:'Templates',title:'Content Templates',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Please select the template to open in the editor',emptyListMsg:'(No templates defined)'},showBlocks:'Show Blocks',stylesCombo:{label:'Styles',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Paragraph Format',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font Name'},fontSize:{label:'Size',voiceLabel:'Font Size',panelTitle:'Font Size'},colorButton:{textColorTitle:'Text Colour',bgColorTitle:'Background Colour',panelTitle:'Colors',auto:'Automatic',more:'More Colours...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'No suggestions',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Document Properties',title:'Document Properties',design:'Design',meta:'Meta Tags',chooseColor:'Choose',other:'Other...',docTitle:'Page Title',charset:'Character Set Encoding',charsetOther:'Other Character Set Encoding',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Document Type Heading',docTypeOther:'Other Document Type Heading',xhtmlDec:'Include XHTML Declarations',bgColor:'Background Color',bgImage:'Background Image URL',bgFixed:'Non-scrolling (Fixed) Background',txtColor:'Text Color',margin:'Page Margins',marginTop:'Top',marginLeft:'Left',marginRight:'Right',marginBottom:'Bottom',metaKeywords:'Document Indexing Keywords (comma separated)',metaDescription:'Document Description',metaAuthor:'Author',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/pt-br.js�����������������������������������������0000664�0001750�0001750�00000046615�12262650742�022373� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang['pt-br']={dir:'ltr',editorTitle:'Editor de texto rico, %1',editorHelp:'Pressione ALT+0 para ajuda',toolbars:'Barra de Ferramentas do Editor',editor:'Editor de Texto',source:'Código-Fonte',newPage:'Novo',save:'Salvar',preview:'Visualizar',cut:'Recortar',copy:'Copiar',paste:'Colar',print:'Imprimir',underline:'Sublinhado',bold:'Negrito',italic:'Itálico',selectAll:'Selecionar Tudo',removeFormat:'Remover Formatação',strike:'Tachado',subscript:'Subscrito',superscript:'Sobrescrito',horizontalrule:'Inserir Linha Horizontal',pagebreak:'Inserir Quebra de Página',pagebreakAlt:'Quebra de Página',unlink:'Remover Link',undo:'Desfazer',redo:'Refazer',common:{browseServer:'Localizar no Servidor',url:'URL',protocol:'Protocolo',upload:'Enviar ao Servidor',uploadSubmit:'Enviar para o Servidor',image:'Imagem',flash:'Flash',form:'Formulário',checkbox:'Caixa de Seleção',radio:'Botão de Opção',textField:'Caixa de Texto',textarea:'Área de Texto',hiddenField:'Campo Oculto',button:'Botão',select:'Caixa de Listagem',imageButton:'Botão de Imagem',notSet:'<não ajustado>',id:'Id',name:'Nome',langDir:'Direção do idioma',langDirLtr:'Esquerda para Direita (LTR)',langDirRtl:'Direita para Esquerda (RTL)',langCode:'Idioma',longDescr:'Descrição da URL',cssClass:'Classe de CSS',advisoryTitle:'Título',cssStyle:'Estilos',ok:'OK',cancel:'Cancelar',close:'Fechar',preview:'Visualizar',generalTab:'Geral',advancedTab:'Avançado',validateNumberFailed:'Este valor não é um número.',confirmNewPage:'Todas as mudanças não salvas serão perdidas. Tem certeza de que quer abrir uma nova página?',confirmCancel:'Algumas opções foram alteradas. Tem certeza de que quer fechar a caixa de diálogo?',options:'Opções',target:'Destino',targetNew:'Nova Janela (_blank)',targetTop:'Janela de Cima (_top)',targetSelf:'Mesma Janela (_self)',targetParent:'Janela Pai (_parent)',langDirLTR:'Esquerda para Direita (LTR)',langDirRTL:'Direita para Esquerda (RTL)',styles:'Estilo',cssClasses:'Classes',width:'Largura',height:'Altura',align:'Alinhamento',alignLeft:'Esquerda',alignRight:'Direita',alignCenter:'Centralizado',alignTop:'Superior',alignMiddle:'Centralizado',alignBottom:'Inferior',invalidValue:'Valor inválido.',invalidHeight:'A altura tem que ser um número',invalidWidth:'A largura tem que ser um número.',invalidCssLength:'O valor do campo "%1" deve ser um número positivo opcionalmente seguido por uma válida unidade de medida de CSS (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'O valor do campo "%1" deve ser um número positivo opcionalmente seguido por uma válida unidade de medida de HTML (px or %).',invalidInlineStyle:'O valor válido para estilo deve conter uma ou mais tuplas no formato "nome : valor", separados por ponto e vírgula.',cssLengthTooltip:'Insira um número para valor em pixels ou um número seguido de uma válida unidade de medida de CSS (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, indisponível</span>'},contextmenu:{options:'Opções Menu de Contexto'},specialChar:{toolbar:'Inserir Caractere Especial',title:'Selecione um Caractere Especial',options:'Opções de Caractere Especial'},link:{toolbar:'Inserir/Editar Link',other:'<outro>',menu:'Editar Link',title:'Editar Link',info:'Informações',target:'Destino',upload:'Enviar ao Servidor',advanced:'Avançado',type:'Tipo de hiperlink',toUrl:'URL',toAnchor:'Âncora nesta página',toEmail:'E-Mail',targetFrame:'<frame>',targetPopup:'<janela popup>',targetFrameName:'Nome do Frame de Destino',targetPopupName:'Nome da Janela Pop-up',popupFeatures:'Propriedades da Janela Pop-up',popupResizable:'Redimensionável',popupStatusBar:'Barra de Status',popupLocationBar:'Barra de Endereços',popupToolbar:'Barra de Ferramentas',popupMenuBar:'Barra de Menus',popupFullScreen:'Modo Tela Cheia (IE)',popupScrollBars:'Barras de Rolagem',popupDependent:'Dependente (Netscape)',popupLeft:'Esquerda',popupTop:'Topo',id:'Id',langDir:'Direção do idioma',langDirLTR:'Esquerda para Direita (LTR)',langDirRTL:'Direita para Esquerda (RTL)',acccessKey:'Chave de Acesso',name:'Nome',langCode:'Direção do idioma',tabIndex:'Índice de Tabulação',advisoryTitle:'Título',advisoryContentType:'Tipo de Conteúdo',cssClasses:'Classe de CSS',charset:'Charset do Link',styles:'Estilos',rel:'Tipo de Relação',selectAnchor:'Selecione uma âncora',anchorName:'Nome da âncora',anchorId:'Id da âncora',emailAddress:'Endereço E-Mail',emailSubject:'Assunto da Mensagem',emailBody:'Corpo da Mensagem',noAnchors:'(Não há âncoras no documento)',noUrl:'Por favor, digite o endereço do Link',noEmail:'Por favor, digite o endereço de e-mail'},anchor:{toolbar:'Inserir/Editar Âncora',menu:'Formatar Âncora',title:'Formatar Âncora',name:'Nome da Âncora',errorName:'Por favor, digite o nome da âncora',remove:'Remover Âncora'},list:{numberedTitle:'Propriedades da Lista Numerada',bulletedTitle:'Propriedades da Lista sem Numeros',type:'Tipo',start:'Início',validateStartNumber:'O número inicial da lista deve ser um número inteiro.',circle:'Círculo',disc:'Disco',square:'Quadrado',none:'Nenhum',notset:'<não definido>',armenian:'Numeração Armêna',georgian:'Numeração da Geórgia (an, ban, gan, etc.)',lowerRoman:'Numeração Romana minúscula (i, ii, iii, iv, v, etc.)',upperRoman:'Numeração Romana maiúscula (I, II, III, IV, V, etc.)',lowerAlpha:'Numeração Alfabética minúscula (a, b, c, d, e, etc.)',upperAlpha:'Numeração Alfabética Maiúscula (A, B, C, D, E, etc.)',lowerGreek:'Numeração Grega minúscula (alpha, beta, gamma, etc.)',decimal:'Numeração Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Numeração Decimal com zeros (01, 02, 03, etc.)'},findAndReplace:{title:'Localizar e Substituir',find:'Localizar',replace:'Substituir',findWhat:'Procurar por:',replaceWith:'Substituir por:',notFoundMsg:'O texto especificado não foi encontrado.',findOptions:'Opções',matchCase:'Coincidir Maiúsculas/Minúsculas',matchWord:'Coincidir a palavra inteira',matchCyclic:'Coincidir cíclico',replaceAll:'Substituir Tudo',replaceSuccessMsg:'%1 ocorrência(s) substituída(s).'},table:{toolbar:'Tabela',title:'Formatar Tabela',menu:'Formatar Tabela',deleteTable:'Apagar Tabela',rows:'Linhas',columns:'Colunas',border:'Borda',widthPx:'pixels',widthPc:'%',widthUnit:'unidade largura',cellSpace:'Espaçamento',cellPad:'Margem interna',caption:'Legenda',summary:'Resumo',headers:'Cabeçalho',headersNone:'Nenhum',headersColumn:'Primeira coluna',headersRow:'Primeira linha',headersBoth:'Ambos',invalidRows:'O número de linhas tem que ser um número maior que 0.',invalidCols:'O número de colunas tem que ser um número maior que 0.',invalidBorder:'O tamanho da borda tem que ser um número.',invalidWidth:'A largura da tabela tem que ser um número.',invalidHeight:'A altura da tabela tem que ser um número.',invalidCellSpacing:'O espaçamento das células tem que ser um número.',invalidCellPadding:'A margem interna das células tem que ser um número.',cell:{menu:'Célula',insertBefore:'Inserir célula a esquerda',insertAfter:'Inserir célula a direita',deleteCell:'Remover Células',merge:'Mesclar Células',mergeRight:'Mesclar com célula a direita',mergeDown:'Mesclar com célula abaixo',splitHorizontal:'Dividir célula horizontalmente',splitVertical:'Dividir célula verticalmente',title:'Propriedades da célula',cellType:'Tipo de célula',rowSpan:'Linhas cobertas',colSpan:'Colunas cobertas',wordWrap:'Quebra de palavra',hAlign:'Alinhamento horizontal',vAlign:'Alinhamento vertical',alignBaseline:'Patamar de alinhamento',bgColor:'Cor de fundo',borderColor:'Cor das bordas',data:'Dados',header:'Cabeçalho',yes:'Sim',no:'Não',invalidWidth:'A largura da célula tem que ser um número.',invalidHeight:'A altura da célula tem que ser um número.',invalidRowSpan:'Linhas cobertas tem que ser um número inteiro.',invalidColSpan:'Colunas cobertas tem que ser um número inteiro.',chooseColor:'Escolher'},row:{menu:'Linha',insertBefore:'Inserir linha acima',insertAfter:'Inserir linha abaixo',deleteRow:'Remover Linhas'},column:{menu:'Coluna',insertBefore:'Inserir coluna a esquerda',insertAfter:'Inserir coluna a direita',deleteColumn:'Remover Colunas'}},button:{title:'Formatar Botão',text:'Texto (Valor)',type:'Tipo',typeBtn:'Botão',typeSbm:'Enviar',typeRst:'Limpar'},checkboxAndRadio:{checkboxTitle:'Formatar Caixa de Seleção',radioTitle:'Formatar Botão de Opção',value:'Valor',selected:'Selecionado'},form:{title:'Formatar Formulário',menu:'Formatar Formulário',action:'Ação',method:'Método',encoding:'Codificação'},select:{title:'Formatar Caixa de Listagem',selectInfo:'Informações',opAvail:'Opções disponíveis',value:'Valor',size:'Tamanho',lines:'linhas',chkMulti:'Permitir múltiplas seleções',opText:'Texto',opValue:'Valor',btnAdd:'Adicionar',btnModify:'Modificar',btnUp:'Para cima',btnDown:'Para baixo',btnSetValue:'Definir como selecionado',btnDelete:'Remover'},textarea:{title:'Formatar Área de Texto',cols:'Colunas',rows:'Linhas'},textfield:{title:'Formatar Caixa de Texto',name:'Nome',value:'Valor',charWidth:'Comprimento (em caracteres)',maxChars:'Número Máximo de Caracteres',type:'Tipo',typeText:'Texto',typePass:'Senha'},hidden:{title:'Formatar Campo Oculto',name:'Nome',value:'Valor'},image:{title:'Formatar Imagem',titleButton:'Formatar Botão de Imagem',menu:'Formatar Imagem',infoTab:'Informações da Imagem',btnUpload:'Enviar para o Servidor',upload:'Enviar',alt:'Texto Alternativo',lockRatio:'Travar Proporções',resetSize:'Redefinir para o Tamanho Original',border:'Borda',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Por favor, digite a URL da imagem.',linkTab:'Link',button2Img:'Deseja transformar o botão de imagem em uma imagem comum?',img2Button:'Deseja transformar a imagem em um botão de imagem?',urlMissing:'URL da imagem está faltando.',validateBorder:'A borda deve ser um número inteiro.',validateHSpace:'O HSpace deve ser um número inteiro.',validateVSpace:'O VSpace deve ser um número inteiro.'},flash:{properties:'Propriedades do Flash',propertiesTab:'Propriedades',title:'Propriedades do Flash',chkPlay:'Tocar Automaticamente',chkLoop:'Tocar Infinitamente',chkMenu:'Habilita Menu Flash',chkFull:'Permitir tela cheia',scale:'Escala',scaleAll:'Mostrar tudo',scaleNoBorder:'Sem Borda',scaleFit:'Escala Exata',access:'Acesso ao script',accessAlways:'Sempre',accessSameDomain:'Acessar Mesmo Domínio',accessNever:'Nunca',alignAbsBottom:'Inferior Absoluto',alignAbsMiddle:'Centralizado Absoluto',alignBaseline:'Baseline',alignTextTop:'Superior Absoluto',quality:'Qualidade',qualityBest:'Qualidade Melhor',qualityHigh:'Qualidade Alta',qualityAutoHigh:'Qualidade Alta Automática',qualityMedium:'Qualidade Média',qualityAutoLow:'Qualidade Baixa Automática',qualityLow:'Qualidade Baixa',windowModeWindow:'Janela',windowModeOpaque:'Opaca',windowModeTransparent:'Transparente',windowMode:'Modo da janela',flashvars:'Variáveis do Flash',bgcolor:'Cor do Plano de Fundo',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'Por favor, digite o endereço do link',validateHSpace:'O HSpace tem que ser um número',validateVSpace:'O VSpace tem que ser um número.'},spellCheck:{toolbar:'Verificar Ortografia',title:'Corretor Ortográfico',notAvailable:'Desculpe, o serviço não está disponível no momento.',errorLoading:'Erro carregando servidor de aplicação: %s.',notInDic:'Não encontrada',changeTo:'Alterar para',btnIgnore:'Ignorar uma vez',btnIgnoreAll:'Ignorar Todas',btnReplace:'Alterar',btnReplaceAll:'Alterar Todas',btnUndo:'Desfazer',noSuggestions:'-sem sugestões de ortografia-',progress:'Verificação ortográfica em andamento...',noMispell:'Verificação encerrada: Não foram encontrados erros de ortografia',noChanges:'Verificação ortográfica encerrada: Não houve alterações',oneChange:'Verificação ortográfica encerrada: Uma palavra foi alterada',manyChanges:'Verificação ortográfica encerrada: %1 palavras foram alteradas',ieSpellDownload:'A verificação ortográfica não foi instalada. Você gostaria de realizar o download agora?'},smiley:{toolbar:'Emoticon',title:'Inserir Emoticon',options:'Opções de Emoticons'},elementsPath:{eleLabel:'Caminho dos Elementos',eleTitle:'Elemento %1'},numberedlist:'Lista numerada',bulletedlist:'Lista sem números',indent:'Aumentar Recuo',outdent:'Diminuir Recuo',justify:{left:'Alinhar Esquerda',center:'Centralizar',right:'Alinhar Direita',block:'Justificado'},blockquote:'Citação',clipboard:{title:'Colar',cutError:'As configurações de segurança do seu navegador não permitem que o editor execute operações de recortar automaticamente. Por favor, utilize o teclado para recortar (Ctrl/Cmd+X).',copyError:'As configurações de segurança do seu navegador não permitem que o editor execute operações de copiar automaticamente. Por favor, utilize o teclado para copiar (Ctrl/Cmd+C).',pasteMsg:'Transfira o link usado na caixa usando o teclado com (<STRONG>Ctrl/Cmd+V</STRONG>) e <STRONG>OK</STRONG>.',securityMsg:'As configurações de segurança do seu navegador não permitem que o editor acesse os dados da área de transferência diretamente. Por favor cole o conteúdo manualmente nesta janela.',pasteArea:'Área para Colar'},pastefromword:{confirmCleanup:'O texto que você deseja colar parece ter sido copiado do Word. Você gostaria de remover a formatação antes de colar?',toolbar:'Colar do Word',title:'Colar do Word',error:'Não foi possível limpar os dados colados devido a um erro interno'},pasteText:{button:'Colar como Texto sem Formatação',title:'Colar como Texto sem Formatação'},templates:{button:'Modelos de layout',title:'Modelo de layout de conteúdo',options:'Opções de Template',insertOption:'Substituir o conteúdo atual',selectPromptMsg:'Selecione um modelo de layout para ser aberto no editor<br>(o conteúdo atual será perdido):',emptyListMsg:'(Não foram definidos modelos de layout)'},showBlocks:'Mostrar blocos de código',stylesCombo:{label:'Estilo',panelTitle:'Estilos de Formatação',panelTitle1:'Estilos de bloco',panelTitle2:'Estilos de texto corrido',panelTitle3:'Estilos de objeto'},format:{label:'Formatação',panelTitle:'Formatação',tag_p:'Normal',tag_pre:'Formatado',tag_address:'Endereço',tag_h1:'Título 1',tag_h2:'Título 2',tag_h3:'Título 3',tag_h4:'Título 4',tag_h5:'Título 5',tag_h6:'Título 6',tag_div:'Normal (DIV)'},div:{title:'Criar Container de DIV',toolbar:'Criar Container de DIV',cssClassInputLabel:'Classes de CSS',styleSelectLabel:'Estilo',IdInputLabel:'Id',languageCodeInputLabel:'Código de Idioma',inlineStyleInputLabel:'Estilo Inline',advisoryTitleInputLabel:'Título Consulta',langDirLabel:'Direção da Escrita',langDirLTRLabel:'Esquerda para Direita (LTR)',langDirRTLLabel:'Direita para Esquerda (RTL)',edit:'Editar Div',remove:'Remover Div'},iframe:{title:'Propriedade do IFrame',toolbar:'IFrame',noUrl:'Insira a URL do iframe',scrolling:'Abilita scrollbars',border:'Mostra borda do iframe'},font:{label:'Fonte',voiceLabel:'Fonte',panelTitle:'Fonte'},fontSize:{label:'Tamanho',voiceLabel:'Tamanho da fonte',panelTitle:'Tamanho'},colorButton:{textColorTitle:'Cor do Texto',bgColorTitle:'Cor do Plano de Fundo',panelTitle:'Cores',auto:'Automático',more:'Mais Cores...'},colors:{'000':'Preto',800000:'Foquete','8B4513':'Marrom 1','2F4F4F':'Cinza 1','008080':'Cerceta','000080':'Azul Marinho','4B0082':'Índigo',696969:'Cinza 2',B22222:'Tijolo de Fogo',A52A2A:'Marrom 2',DAA520:'Vara Dourada','006400':'Verde Escuro','40E0D0':'Turquesa','0000CD':'Azul Médio',800080:'Roxo',808080:'Cinza 3',F00:'Vermelho',FF8C00:'Laranja Escuro',FFD700:'Dourado','008000':'Verde','0FF':'Ciano','00F':'Azul',EE82EE:'Violeta',A9A9A9:'Cinza Escuro',FFA07A:'Salmão Claro',FFA500:'Laranja',FFFF00:'Amarelo','00FF00':'Lima',AFEEEE:'Turquesa Pálido',ADD8E6:'Azul Claro',DDA0DD:'Ameixa',D3D3D3:'Cinza Claro',FFF0F5:'Lavanda 1',FAEBD7:'Branco Antiguidade',FFFFE0:'Amarelo Claro',F0FFF0:'Orvalho',F0FFFF:'Azure',F0F8FF:'Azul Alice',E6E6FA:'Lavanda 2',FFF:'Branco'},scayt:{title:'Correção ortográfica durante a digitação',opera_title:'Não suportado no Opera',enable:'Habilitar correção ortográfica durante a digitação',disable:'Desabilitar correção ortográfica durante a digitação',about:'Sobre a correção ortográfica durante a digitação',toggle:'Ativar/desativar correção ortográfica durante a digitação',options:'Opções',langs:'Idiomas',moreSuggestions:'Mais sugestões',ignore:'Ignorar',ignoreAll:'Ignorar todas',addWord:'Adicionar palavra',emptyDic:'O nome do dicionário não deveria estar vazio.',noSuggestions:'sem sugestões de ortografia',optionsTab:'Opções',allCaps:'Ignorar palavras maiúsculas',ignoreDomainNames:'Ignorar nomes de domínio',mixedCase:'Ignorar palavras com maiúsculas e minúsculas misturadas',mixedWithDigits:'Ignorar palavras com números',languagesTab:'Idiomas',dictionariesTab:'Dicionários',dic_field_name:'Nome do Dicionário',dic_create:'Criar',dic_restore:'Restaurar',dic_delete:'Excluir',dic_rename:'Renomear',dic_info:'Inicialmente, o dicionário do usuário fica armazenado em um Cookie. Porém, Cookies tem tamanho limitado, portanto quand o dicionário do usuário atingir o tamanho limite poderá ser armazenado no nosso servidor. Para armazenar seu dicionário pessoal no nosso servidor deverá especificar um nome para ele. Se já tiver um dicionário armazenado por favor especifique o seu nome e clique em Restaurar.',aboutTab:'Sobre'},about:{title:'Sobre o CKEditor',dlgTitle:'Sobre o CKEditor',help:'Verifique o $1 para obter ajuda.',userGuide:'Guia do Usuário do CKEditor',moreInfo:'Para informações sobre a licença por favor visite o nosso site:',copy:'Copyright © $1. Todos os direitos reservados.'},maximize:'Maximizar',minimize:'Minimize',fakeobjects:{anchor:'Âncora',flash:'Animação em Flash',iframe:'IFrame',hiddenfield:'Campo Oculto',unknown:'Objeto desconhecido'},resize:'Arraste para redimensionar',colordialog:{title:'Selecione uma Cor',options:'Opções de Cor',highlight:'Grifar',selected:'Cor Selecionada',clear:'Limpar'},toolbarCollapse:'Diminuir Barra de Ferramentas',toolbarExpand:'Aumentar Barra de Ferramentas',toolbarGroups:{document:'Documento',clipboard:'Clipboard/Desfazer',editing:'Edição',forms:'Formulários',basicstyles:'Estilos Básicos',paragraph:'Paragrafo',links:'Links',insert:'Inserir',styles:'Estilos',colors:'Cores',tools:'Ferramentas'},bidi:{ltr:'Direção do texto da esquerda para a direita',rtl:'Direção do texto da direita para a esquerda'},docprops:{label:'Propriedades Documento',title:'Propriedades Documento',design:'Design',meta:'Meta Dados',chooseColor:'Escolher',other:'<outro>',docTitle:'Título da Página',charset:'Codificação de Caracteres',charsetOther:'Outra Codificação de Caracteres',charsetASCII:'ASCII',charsetCE:'Europa Central',charsetCT:'Chinês Tradicional (Big5)',charsetCR:'Cirílico',charsetGR:'Grego',charsetJP:'Japonês',charsetKR:'Coreano',charsetTR:'Turco',charsetUN:'Unicode (UTF-8)',charsetWE:'Europa Ocidental',docType:'Cabeçalho Tipo de Documento',docTypeOther:'Outro Tipo de Documento',xhtmlDec:'Incluir Declarações XHTML',bgColor:'Cor do Plano de Fundo',bgImage:'URL da Imagem de Plano de Fundo',bgFixed:'Plano de Fundo Fixo',txtColor:'Cor do Texto',margin:'Margens da Página',marginTop:'Superior',marginLeft:'Inferior',marginRight:'Direita',marginBottom:'Inferior',metaKeywords:'Palavras-chave de Indexação do Documento (separadas por vírgula)',metaDescription:'Descrição do Documento',metaAuthor:'Autor',metaCopyright:'Direitos Autorais',previewHtml:'<p>Este é um <strong>texto de exemplo</strong>. Você está usando <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/mn.js��������������������������������������������0000664�0001750�0001750�00000054530�12262650742�021754� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.mn={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Болосруулагчийн хэрэгслийн самбар',editor:'Хэлбэрт бичвэр боловсруулагч',source:'Код',newPage:'Шинэ хуудас',save:'Хадгалах',preview:'Уридчлан харах',cut:'Хайчлах',copy:'Хуулах',paste:'Буулгах',print:'Хэвлэх',underline:'Доогуур нь зураастай болгох',bold:'Тод бүдүүн',italic:'Налуу',selectAll:'Бүгдийг нь сонгох',removeFormat:'Параргафын загварыг авч хаях',strike:'Дундуур нь зураастай болгох',subscript:'Суурь болгох',superscript:'Зэрэг болгох',horizontalrule:'Хөндлөн зураас оруулах',pagebreak:'Хуудас тусгаарлагч оруулах',pagebreakAlt:'Page Break',unlink:'Холбоос авч хаях',undo:'Хүчингүй болгох',redo:'Өмнөх үйлдлээ сэргээх',common:{browseServer:'Сервер харуулах',url:'URL',protocol:'Протокол',upload:'Хуулах',uploadSubmit:'Үүнийг сервэррүү илгээ',image:'Зураг',flash:'Флаш',form:'Форм',checkbox:'Чекбокс',radio:'Радио товч',textField:'Техт талбар',textarea:'Техт орчин',hiddenField:'Нууц талбар',button:'Товч',select:'Сонгогч талбар',imageButton:'Зурагтай товч',notSet:'<Оноохгүй>',id:'Id',name:'Нэр',langDir:'Хэлний чиглэл',langDirLtr:'Зүүнээс баруун (LTR)',langDirRtl:'Баруунаас зүүн (RTL)',langCode:'Хэлний код',longDescr:'URL-ын тайлбар',cssClass:'Stylesheet классууд',advisoryTitle:'Зөвлөлдөх гарчиг',cssStyle:'Загвар',ok:'OK',cancel:'Болих',close:'Хаах',preview:'Preview',generalTab:'Ерөнхий',advancedTab:'Нэмэлт',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Сонголт',target:'Бай',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Зүүн талаас баруун тийшээ (LTR)',langDirRTL:'Баруун талаас зүүн тийшээ (RTL)',styles:'Загвар',cssClasses:'Stylesheet Classes',width:'Өргөн',height:'Өндөр',align:'Тулгах тал',alignLeft:'Зүүн',alignRight:'Баруун',alignCenter:'Төвд',alignTop:'Дээд талд',alignMiddle:'Дунд талд',alignBottom:'Доод талд',invalidValue:'Invalid value.',invalidHeight:'Өндөр нь тоо байх ёстой.',invalidWidth:'Өргөн нь тоо байх ёстой.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Онцгой тэмдэгт оруулах',title:'Онцгой тэмдэгт сонгох',options:'Special Character Options'},link:{toolbar:'Холбоос',other:'<other>',menu:'Холбоос засварлах',title:'Холбоос',info:'Холбоосын тухай мэдээлэл',target:'Байрлал',upload:'Хуулах',advanced:'Нэмэлт',type:'Линкийн төрөл',toUrl:'цахим хуудасны хаяг (URL)',toAnchor:'Энэ бичвэр дэх зангуу руу очих холбоос',toEmail:'Э-захиа',targetFrame:'<Агуулах хүрээ>',targetPopup:'<popup цонх>',targetFrameName:'Очих фремын нэр',targetPopupName:'Popup цонхны нэр',popupFeatures:'Popup цонхны онцлог',popupResizable:'Resizable',popupStatusBar:'Статус хэсэг',popupLocationBar:'Location хэсэг',popupToolbar:'Багажны самбар',popupMenuBar:'Цэсний самбар',popupFullScreen:'Цонх дүүргэх (Internet Explorer)',popupScrollBars:'Скрол хэсэгүүд',popupDependent:'Хамаатай (Netscape)',popupLeft:'Зүүн байрлал',popupTop:'Дээд байрлал',id:'Id',langDir:'Хэлний чиглэл',langDirLTR:'Зүүнээс баруун (LTR)',langDirRTL:'Баруунаас зүүн (RTL)',acccessKey:'Холбох түлхүүр',name:'Нэр',langCode:'Хэлний код',tabIndex:'Tab индекс',advisoryTitle:'Зөвлөлдөх гарчиг',advisoryContentType:'Зөвлөлдөх төрлийн агуулга',cssClasses:'Stylesheet классууд',charset:'Тэмдэгт оноох нөөцөд холбогдсон',styles:'Загвар',rel:'Relationship',selectAnchor:'Нэг зангууг сонгоно уу',anchorName:'Зангуугийн нэрээр',anchorId:'Элемэнтйн Id нэрээр',emailAddress:'Э-шуудангийн хаяг',emailSubject:'Зурвасны гарчиг',emailBody:'Зурвасны их бие',noAnchors:'(Баримт бичиг зангуугүй байна)',noUrl:'Холбоосны URL хаягийг шивнэ үү',noEmail:'Э-шуудангий хаягаа шивнэ үү'},anchor:{toolbar:'Зангуу',menu:'Зангууг болосруулах',title:'Зангуугийн шинж чанар',name:'Зангуугийн нэр',errorName:'Зангуугийн нэрийг оруулна уу',remove:'Зангууг устгах'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Төрөл',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Хайж орлуулах',find:'Хайх',replace:'Орлуулах',findWhat:'Хайх үг/үсэг:',replaceWith:'Солих үг:',notFoundMsg:'Хайсан бичвэрийг олсонгүй.',findOptions:'Хайх сонголтууд',matchCase:'Тэнцэх төлөв',matchWord:'Тэнцэх бүтэн үг',matchCyclic:'Match cyclic',replaceAll:'Бүгдийг нь солих',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Хүснэгт',title:'Хүснэгт',menu:'Хүснэгт',deleteTable:'Хүснэгт устгах',rows:'Мөр',columns:'Багана',border:'Хүрээний хэмжээ',widthPx:'цэг',widthPc:'хувь',widthUnit:'өргөний нэгж',cellSpace:'Нүх хоорондын зай (spacing)',cellPad:'Нүх доторлох(padding)',caption:'Тайлбар',summary:'Тайлбар',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Хүснэгтийн өргөн нь тоо байх ёстой.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Нүх/зай',insertBefore:'Нүх/зай өмнө нь оруулах',insertAfter:'Нүх/зай дараа нь оруулах',deleteCell:'Нүх устгах',merge:'Нүх нэгтэх',mergeRight:'Баруун тийш нэгтгэх',mergeDown:'Доош нэгтгэх',splitHorizontal:'Нүх/зайг босоогоор нь тусгаарлах',splitVertical:'Нүх/зайг хөндлөнгөөр нь тусгаарлах',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Хэвтээд тэгшлэх арга',vAlign:'Босоод тэгшлэх арга',alignBaseline:'Baseline',bgColor:'Дэвсгэр өнгө',borderColor:'Хүрээний өнгө',data:'Data',header:'Header',yes:'Тийм',no:'Үгүй',invalidWidth:'Нүдний өргөн нь тоо байх ёстой.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Сонгох'},row:{menu:'Мөр',insertBefore:'Мөр өмнө нь оруулах',insertAfter:'Мөр дараа нь оруулах',deleteRow:'Мөр устгах'},column:{menu:'Багана',insertBefore:'Багана өмнө нь оруулах',insertAfter:'Багана дараа нь оруулах',deleteColumn:'Багана устгах'}},button:{title:'Товчны шинж чанар',text:'Тэкст (Утга)',type:'Төрөл',typeBtn:'Товч',typeSbm:'Submit',typeRst:'Болих'},checkboxAndRadio:{checkboxTitle:'Чекбоксны шинж чанар',radioTitle:'Радио товчны шинж чанар',value:'Утга',selected:'Сонгогдсон'},form:{title:'Форм шинж чанар',menu:'Форм шинж чанар',action:'Үйлдэл',method:'Арга',encoding:'Encoding'},select:{title:'Согогч талбарын шинж чанар',selectInfo:'Мэдээлэл',opAvail:'Идвэхтэй сонголт',value:'Утга',size:'Хэмжээ',lines:'Мөр',chkMulti:'Олон зүйл зэрэг сонгохыг зөвшөөрөх',opText:'Тэкст',opValue:'Утга',btnAdd:'Нэмэх',btnModify:'Өөрчлөх',btnUp:'Дээш',btnDown:'Доош',btnSetValue:'Сонгогдсан утга оноох',btnDelete:'Устгах'},textarea:{title:'Текст орчны шинж чанар',cols:'Багана',rows:'Мөр'},textfield:{title:'Текст талбарын шинж чанар',name:'Нэр',value:'Утга',charWidth:'Тэмдэгтын өргөн',maxChars:'Хамгийн их тэмдэгт',type:'Төрөл',typeText:'Текст',typePass:'Нууц үг'},hidden:{title:'Нууц талбарын шинж чанар',name:'Нэр',value:'Утга'},image:{title:'Зураг',titleButton:'Зурган товчны шинж чанар',menu:'Зураг',infoTab:'Зурагны мэдээлэл',btnUpload:'Үүнийг сервэррүү илгээ',upload:'Хуулах',alt:'Зургийг орлох бичвэр',lockRatio:'Радио түгжих',resetSize:'хэмжээ дахин оноох',border:'Хүрээ',hSpace:'Хөндлөн зай',vSpace:'Босоо зай',alertUrl:'Зурагны URL-ын төрлийн сонгоно уу',linkTab:'Холбоос',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Зургийн эх сурвалжийн хаяг (URL) байхгүй байна.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Флаш шинж чанар',propertiesTab:'Properties',title:'Флаш шинж чанар',chkPlay:'Автоматаар тоглох',chkLoop:'Давтах',chkMenu:'Флаш цэс идвэхжүүлэх',chkFull:'Allow Fullscreen',scale:'Өргөгтгөх',scaleAll:'Бүгдийг харуулах',scaleNoBorder:'Хүрээгүй',scaleFit:'Яг тааруулах',access:'Script Access',accessAlways:'Онцлогууд',accessSameDomain:'Байнга',accessNever:'Хэзээ ч үгүй',alignAbsBottom:'Abs доод талд',alignAbsMiddle:'Abs Дунд талд',alignBaseline:'Baseline',alignTextTop:'Текст дээр',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Дэвсгэр өнгө',hSpace:'Хөндлөн зай',vSpace:'Босоо зай',validateSrc:'Линк URL-ээ төрөлжүүлнэ үү',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Үгийн дүрэх шалгах',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Толь бичиггүй',changeTo:'Өөрчлөх',btnIgnore:'Зөвшөөрөх',btnIgnoreAll:'Бүгдийг зөвшөөрөх',btnReplace:'Солих',btnReplaceAll:'Бүгдийг Дарж бичих',btnUndo:'Буцаах',noSuggestions:'- Тайлбаргүй -',progress:'Дүрэм шалгаж байгаа үйл явц...',noMispell:'Дүрэм шалгаад дууссан: Алдаа олдсонгүй',noChanges:'Дүрэм шалгаад дууссан: үг өөрчлөгдөөгүй',oneChange:'Дүрэм шалгаад дууссан: 1 үг өөрчлөгдсөн',manyChanges:'Дүрэм шалгаад дууссан: %1 үг өөрчлөгдсөн',ieSpellDownload:'Дүрэм шалгагч суугаагүй байна. Татаж авахыг хүсч байна уу?'},smiley:{toolbar:'Тодорхойлолт',title:'Тодорхойлолт оруулах',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Дугаарлагдсан жагсаалт',bulletedlist:'Цэгтэй жагсаалт',indent:'Догол мөр хасах',outdent:'Догол мөр нэмэх',justify:{left:'Зүүн талд тулгах',center:'Голлуулах',right:'Баруун талд тулгах',block:'Тэгшлэх'},blockquote:'Ишлэл хэсэг',clipboard:{title:'Буулгах',cutError:'Таны browser-ын хамгаалалтын тохиргоо editor-д автоматаар хайчлах үйлдэлийг зөвшөөрөхгүй байна. (Ctrl/Cmd+X) товчны хослолыг ашиглана уу.',copyError:'Таны browser-ын хамгаалалтын тохиргоо editor-д автоматаар хуулах үйлдэлийг зөвшөөрөхгүй байна. (Ctrl/Cmd+C) товчны хослолыг ашиглана уу.',pasteMsg:'(<strong>Ctrl/Cmd+V</strong>) товчийг ашиглан paste хийнэ үү. Мөн <strong>OK</strong> дар.',securityMsg:'Таны үзүүлэгч/browser/-н хамгаалалтын тохиргооноос болоод editor clipboard өгөгдөлрүү шууд хандах боломжгүй. Энэ цонход дахин paste хийхийг оролд.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Word-оос буулгах',title:'Word-оос буулгах',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Энгийн бичвэрээр буулгах',title:'Энгийн бичвэрээр буулгах'},templates:{button:'Загварууд',title:'Загварын агуулга',options:'Template Options',insertOption:'Одоогийн агууллагыг дарж бичих',selectPromptMsg:'Загварыг нээж editor-рүү сонгож оруулна уу<br />(Одоогийн агууллагыг устаж магадгүй):',emptyListMsg:'(Загвар тодорхойлогдоогүй байна)'},showBlocks:'Хавтангуудыг харуулах',stylesCombo:{label:'Загвар',panelTitle:'Загвар хэлбэржүүлэх',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Параргафын загвар',panelTitle:'Параргафын загвар',tag_p:'Хэвийн',tag_pre:'Formatted',tag_address:'Хаяг',tag_h1:'Гарчиг 1',tag_h2:'Гарчиг 2',tag_h3:'Гарчиг 3',tag_h4:'Гарчиг 4',tag_h5:'Гарчиг 5',tag_h6:'Гарчиг 6',tag_div:'Paragraph (DIV)'},div:{title:'Div гэдэг хэсэг бий болгох',toolbar:'Div гэдэг хэсэг бий болгох',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Зүүн талаас баруун тишээ (LTR)',langDirRTLLabel:'Баруун талаас зүүн тишээ (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Үсгийн хэлбэр',voiceLabel:'Үгсийн хэлбэр',panelTitle:'Үгсийн хэлбэрийн нэр'},fontSize:{label:'Хэмжээ',voiceLabel:'Үсгийн хэмжээ',panelTitle:'Үсгийн хэмжээ'},colorButton:{textColorTitle:'Бичвэрийн өнгө',bgColorTitle:'Дэвсгэр өнгө',panelTitle:'Өнгөнүүд',auto:'Автоматаар',more:'Нэмэлт өнгөнүүд...'},colors:{'000':'Хар',800000:'Хүрэн','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Саарал',F00:'Улаан',FF8C00:'Dark Orange',FFD700:'Алт','008000':'Ногоон','0FF':'Цэнхэр','00F':'Хөх',EE82EE:'Ягаан',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Улбар шар',FFFF00:'Шар','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Цайвар саарал',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'Цагаан'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Сонголт',langs:'Хэлүүд',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'No suggestions',optionsTab:'Сонголт',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Хэлүүд',dictionariesTab:'Толь бичгүүд',dic_field_name:'Dictionary name',dic_create:'Бий болгох',dic_restore:'Restore',dic_delete:'Устгах',dic_rename:'Нэрийг солих',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Дэлгэц дүүргэх',minimize:'Цонхыг багсгаж харуулах',fakeobjects:{anchor:'Зангуу',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Холбоосууд',insert:'Оруулах',styles:'Загварууд',colors:'Онгөнүүд',tools:'Хэрэгслүүд'},bidi:{ltr:'Зүүнээс баруун тийш бичлэг',rtl:'Баруунаас зүүн тийш бичлэг'},docprops:{label:'Баримт бичиг шинж чанар',title:'Баримт бичиг шинж чанар',design:'Design',meta:'Meta өгөгдөл',chooseColor:'Сонгох',other:'<other>',docTitle:'Хуудасны гарчиг',charset:'Encoding тэмдэгт',charsetOther:'Encoding-д өөр тэмдэгт оноох',charsetASCII:'ASCII',charsetCE:'Төв европ',charsetCT:'Хятадын уламжлалт (Big5)',charsetCR:'Крил',charsetGR:'Гред',charsetJP:'Япон',charsetKR:'Солонгос',charsetTR:'Tурк',charsetUN:'Юникод (UTF-8)',charsetWE:'Баруун европ',docType:'Баримт бичгийн төрөл Heading',docTypeOther:'Бусад баримт бичгийн төрөл Heading',xhtmlDec:'XHTML-ийн мэдээллийг агуулах',bgColor:'Фоно өнгө',bgImage:'Фоно зурагны URL',bgFixed:'Гүйдэггүй фоно',txtColor:'Фонтны өнгө',margin:'Хуудасны захын зай',marginTop:'Дээд тал',marginLeft:'Зүүн тал',marginRight:'Баруун тал',marginBottom:'Доод тал',metaKeywords:'Баримт бичгийн индекс түлхүүр үг (таслалаар тусгаарлагдана)',metaDescription:'Баримт бичгийн тайлбар',metaAuthor:'Зохиогч',metaCopyright:'Зохиогчийн эрх',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/eu.js��������������������������������������������0000664�0001750�0001750�00000044344�12262650742�021755� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.eu={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'HTML Iturburua',newPage:'Orrialde Berria',save:'Gorde',preview:'Aurrebista',cut:'Ebaki',copy:'Kopiatu',paste:'Itsatsi',print:'Inprimatu',underline:'Azpimarratu',bold:'Lodia',italic:'Etzana',selectAll:'Hautatu dena',removeFormat:'Kendu Formatua',strike:'Marratua',subscript:'Azpi-indize',superscript:'Goi-indize',horizontalrule:'Txertatu Marra Horizontala',pagebreak:'Txertatu Orrialde-jauzia',pagebreakAlt:'Page Break',unlink:'Kendu Esteka',undo:'Desegin',redo:'Berregin',common:{browseServer:'Zerbitzaria arakatu',url:'URL',protocol:'Protokoloa',upload:'Gora kargatu',uploadSubmit:'Zerbitzarira bidalia',image:'Irudia',flash:'Flasha',form:'Formularioa',checkbox:'Kontrol-laukia',radio:'Aukera-botoia',textField:'Testu Eremua',textarea:'Testu-area',hiddenField:'Ezkutuko Eremua',button:'Botoia',select:'Hautespen Eremua',imageButton:'Irudi Botoia',notSet:'<Ezarri gabe>',id:'Id',name:'Izena',langDir:'Hizkuntzaren Norabidea',langDirLtr:'Ezkerretik Eskumara(LTR)',langDirRtl:'Eskumatik Ezkerrera (RTL)',langCode:'Hizkuntza Kodea',longDescr:'URL Deskribapen Luzea',cssClass:'Estilo-orriko Klaseak',advisoryTitle:'Izenburua',cssStyle:'Estiloa',ok:'Ados',cancel:'Utzi',close:'Close',preview:'Preview',generalTab:'Orokorra',advancedTab:'Aurreratua',validateNumberFailed:'Balio hau ez da zenbaki bat.',confirmNewPage:'Eduki honetan gorde gabe dauden aldaketak galduko dira. Ziur zaude orri berri bat kargatu nahi duzula?',confirmCancel:'Aukera batzuk aldatu egin dira. Ziur zaude elkarrizketa-koadroa itxi nahi duzula?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Zabalera',height:'Altuera',align:'Lerrokatu',alignLeft:'Ezkerrera',alignRight:'Eskuman',alignCenter:'Erdian',alignTop:'Goian',alignMiddle:'Erdian',alignBottom:'Behean',invalidValue:'Invalid value.',invalidHeight:'Altuera zenbaki bat izan behar da.',invalidWidth:'Zabalera zenbaki bat izan behar da.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, erabilezina</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Txertatu Karaktere Berezia',title:'Karaktere Berezia Aukeratu',options:'Special Character Options'},link:{toolbar:'Txertatu/Editatu Esteka',other:'<other>',menu:'Aldatu Esteka',title:'Esteka',info:'Estekaren Informazioa',target:'Target (Helburua)',upload:'Gora kargatu',advanced:'Aurreratua',type:'Esteka Mota',toUrl:'URL',toAnchor:'Aingura orrialde honetan',toEmail:'ePosta',targetFrame:'<marko>',targetPopup:'<popup leihoa>',targetFrameName:'Marko Helburuaren Izena',targetPopupName:'Popup Leihoaren Izena',popupFeatures:'Popup Leihoaren Ezaugarriak',popupResizable:'Tamaina Aldakorra',popupStatusBar:'Egoera Barra',popupLocationBar:'Kokaleku Barra',popupToolbar:'Tresna Barra',popupMenuBar:'Menu Barra',popupFullScreen:'Pantaila Osoa (IE)',popupScrollBars:'Korritze Barrak',popupDependent:'Menpekoa (Netscape)',popupLeft:'Ezkerreko Posizioa',popupTop:'Goiko Posizioa',id:'Id',langDir:'Hizkuntzaren Norabidea',langDirLTR:'Ezkerretik Eskumara(LTR)',langDirRTL:'Eskumatik Ezkerrera (RTL)',acccessKey:'Sarbide-gakoa',name:'Izena',langCode:'Hizkuntzaren Norabidea',tabIndex:'Tabulazio Indizea',advisoryTitle:'Izenburua',advisoryContentType:'Eduki Mota (Content Type)',cssClasses:'Estilo-orriko Klaseak',charset:'Estekatutako Karaktere Multzoa',styles:'Estiloa',rel:'Relationship',selectAnchor:'Aingura bat hautatu',anchorName:'Aingura izenagatik',anchorId:'Elementuaren ID-gatik',emailAddress:'ePosta Helbidea',emailSubject:'Mezuaren Gaia',emailBody:'Mezuaren Gorputza',noAnchors:'(Ez daude aingurak eskuragarri dokumentuan)',noUrl:'Mesedez URL esteka idatzi',noEmail:'Mesedez ePosta helbidea idatzi'},anchor:{toolbar:'Aingura',menu:'Ainguraren Ezaugarriak',title:'Ainguraren Ezaugarriak',name:'Ainguraren Izena',errorName:'Idatzi ainguraren izena',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Bilatu eta Ordeztu',find:'Bilatu',replace:'Ordezkatu',findWhat:'Zer bilatu:',replaceWith:'Zerekin ordeztu:',notFoundMsg:'Idatzitako testua ez da topatu.',findOptions:'Find Options',matchCase:'Maiuskula/minuskula',matchWord:'Esaldi osoa bilatu',matchCyclic:'Bilaketa ziklikoa',replaceAll:'Ordeztu Guztiak',replaceSuccessMsg:'Zenbat aldiz ordeztua: %1'},table:{toolbar:'Taula',title:'Taularen Ezaugarriak',menu:'Taularen Ezaugarriak',deleteTable:'Ezabatu Taula',rows:'Lerroak',columns:'Zutabeak',border:'Ertzaren Zabalera',widthPx:'pixel',widthPc:'ehuneko',widthUnit:'width unit',cellSpace:'Gelaxka arteko tartea',cellPad:'Gelaxken betegarria',caption:'Epigrafea',summary:'Laburpena',headers:'Goiburuak',headersNone:'Bat ere ez',headersColumn:'Lehen zutabea',headersRow:'Lehen lerroa',headersBoth:'Biak',invalidRows:'Lerro kopurua 0 baino handiagoa den zenbakia izan behar da.',invalidCols:'Zutabe kopurua 0 baino handiagoa den zenbakia izan behar da.',invalidBorder:'Ertzaren tamaina zenbaki bat izan behar da.',invalidWidth:'Taularen zabalera zenbaki bat izan behar da.',invalidHeight:'Taularen altuera zenbaki bat izan behar da.',invalidCellSpacing:'Gelaxka arteko tartea zenbaki bat izan behar da.',invalidCellPadding:'Gelaxken betegarria zenbaki bat izan behar da.',cell:{menu:'Gelaxka',insertBefore:'Txertatu Gelaxka Aurretik',insertAfter:'Txertatu Gelaxka Ostean',deleteCell:'Kendu Gelaxkak',merge:'Batu Gelaxkak',mergeRight:'Elkartu Eskumara',mergeDown:'Elkartu Behera',splitHorizontal:'Banatu Gelaxkak Horizontalki',splitVertical:'Banatu Gelaxkak Bertikalki',title:'Gelaxken Ezaugarriak',cellType:'Gelaxka Mota',rowSpan:'Hedatutako Lerroak',colSpan:'Hedatutako Zutabeak',wordWrap:'Itzulbira',hAlign:'Lerrokatze Horizontala',vAlign:'Lerrokatze Bertikala',alignBaseline:'Oinarri-lerroan',bgColor:'Fondoaren Kolorea',borderColor:'Ertzaren Kolorea',data:'Data',header:'Goiburua',yes:'Bai',no:'Ez',invalidWidth:'Gelaxkaren zabalera zenbaki bat izan behar da.',invalidHeight:'Gelaxkaren altuera zenbaki bat izan behar da.',invalidRowSpan:'Lerroen hedapena zenbaki osoa izan behar da.',invalidColSpan:'Zutabeen hedapena zenbaki osoa izan behar da.',chooseColor:'Choose'},row:{menu:'Lerroa',insertBefore:'Txertatu Lerroa Aurretik',insertAfter:'Txertatu Lerroa Ostean',deleteRow:'Ezabatu Lerroak'},column:{menu:'Zutabea',insertBefore:'Txertatu Zutabea Aurretik',insertAfter:'Txertatu Zutabea Ostean',deleteColumn:'Ezabatu Zutabeak'}},button:{title:'Botoiaren Ezaugarriak',text:'Testua (Balorea)',type:'Mota',typeBtn:'Botoia',typeSbm:'Bidali',typeRst:'Garbitu'},checkboxAndRadio:{checkboxTitle:'Kontrol-laukiko Ezaugarriak',radioTitle:'Aukera-botoiaren Ezaugarriak',value:'Balorea',selected:'Hautatuta'},form:{title:'Formularioaren Ezaugarriak',menu:'Formularioaren Ezaugarriak',action:'Ekintza',method:'Metodoa',encoding:'Kodeketa'},select:{title:'Hautespen Eremuaren Ezaugarriak',selectInfo:'Informazioa',opAvail:'Aukera Eskuragarriak',value:'Balorea',size:'Tamaina',lines:'lerro kopurura',chkMulti:'Hautaketa anitzak baimendu',opText:'Testua',opValue:'Balorea',btnAdd:'Gehitu',btnModify:'Aldatu',btnUp:'Gora',btnDown:'Behera',btnSetValue:'Aukeratutako balorea ezarri',btnDelete:'Ezabatu'},textarea:{title:'Testu-arearen Ezaugarriak',cols:'Zutabeak',rows:'Lerroak'},textfield:{title:'Testu Eremuaren Ezaugarriak',name:'Izena',value:'Balorea',charWidth:'Zabalera',maxChars:'Zenbat karaktere gehienez',type:'Mota',typeText:'Testua',typePass:'Pasahitza'},hidden:{title:'Ezkutuko Eremuaren Ezaugarriak',name:'Izena',value:'Balorea'},image:{title:'Irudi Ezaugarriak',titleButton:'Irudi Botoiaren Ezaugarriak',menu:'Irudi Ezaugarriak',infoTab:'Irudi informazioa',btnUpload:'Zerbitzarira bidalia',upload:'Gora Kargatu',alt:'Ordezko Testua',lockRatio:'Erlazioa Blokeatu',resetSize:'Tamaina Berrezarri',border:'Ertza',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Mesedez Irudiaren URLa idatzi',linkTab:'Esteka',button2Img:'Aukeratutako irudi botoia, irudi normal batean eraldatu nahi duzu?',img2Button:'Aukeratutako irudia, irudi botoi batean eraldatu nahi duzu?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flasharen Ezaugarriak',propertiesTab:'Ezaugarriak',title:'Flasharen Ezaugarriak',chkPlay:'Automatikoki Erreproduzitu',chkLoop:'Begizta',chkMenu:'Flasharen Menua Gaitu',chkFull:'Onartu Pantaila osoa',scale:'Eskalatu',scaleAll:'Dena erakutsi',scaleNoBorder:'Ertzik gabe',scaleFit:'Doitu',access:'Scriptak baimendu',accessAlways:'Beti',accessSameDomain:'Domeinu berdinekoak',accessNever:'Inoiz ere ez',alignAbsBottom:'Abs Behean',alignAbsMiddle:'Abs Erdian',alignBaseline:'Oinan',alignTextTop:'Testua Goian',quality:'Kalitatea',qualityBest:'Hoberena',qualityHigh:'Altua',qualityAutoHigh:'Auto Altua',qualityMedium:'Ertaina',qualityAutoLow:'Auto Baxua',qualityLow:'Baxua',windowModeWindow:'Leihoa',windowModeOpaque:'Opakoa',windowModeTransparent:'Gardena',windowMode:'Leihoaren modua',flashvars:'Flash Aldagaiak',bgcolor:'Atzeko kolorea',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'Mesedez URL esteka idatzi',validateHSpace:'HSpace zenbaki bat izan behar da.',validateVSpace:'VSpace zenbaki bat izan behar da.'},spellCheck:{toolbar:'Ortografia',title:'Ortografia zuzenketa',notAvailable:'Barkatu baina momentu honetan zerbitzua ez dago erabilgarri.',errorLoading:'Errorea gertatu da aplikazioa zerbitzaritik kargatzean: %s.',notInDic:'Ez dago hiztegian',changeTo:'Honekin ordezkatu',btnIgnore:'Ezikusi',btnIgnoreAll:'Denak Ezikusi',btnReplace:'Ordezkatu',btnReplaceAll:'Denak Ordezkatu',btnUndo:'Desegin',noSuggestions:'- Iradokizunik ez -',progress:'Zuzenketa ortografikoa martxan...',noMispell:'Zuzenketa ortografikoa bukatuta: Akatsik ez',noChanges:'Zuzenketa ortografikoa bukatuta: Ez da ezer aldatu',oneChange:'Zuzenketa ortografikoa bukatuta: Hitz bat aldatu da',manyChanges:'Zuzenketa ortografikoa bukatuta: %1 hitz aldatu dira',ieSpellDownload:'Zuzentzaile ortografikoa ez dago instalatuta. Deskargatu nahi duzu?'},smiley:{toolbar:'Aurpegierak',title:'Aurpegiera Sartu',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 elementua'},numberedlist:'Zenbakidun Zerrenda',bulletedlist:'Buletdun Zerrenda',indent:'Handitu Koska',outdent:'Txikitu Koska',justify:{left:'Lerrokatu Ezkerrean',center:'Lerrokatu Erdian',right:'Lerrokatu Eskuman',block:'Justifikatu'},blockquote:'Aipamen blokea',clipboard:{title:'Itsatsi',cutError:'Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki moztea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl/Cmd+X).',copyError:'Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki kopiatzea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl/Cmd+C).',pasteMsg:'Mesedez teklatua erabilita (<STRONG>Ctrl/Cmd+V</STRONG>) ondorego eremuan testua itsatsi eta <STRONG>OK</STRONG> sakatu.',securityMsg:'Nabigatzailearen segurtasun ezarpenak direla eta, editoreak ezin du arbela zuzenean erabili. Leiho honetan berriro itsatsi behar duzu.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'Itsatsi nahi duzun testua Wordetik hartua dela dirudi. Itsatsi baino lehen garbitu nahi duzu?',toolbar:'Itsatsi Word-etik',title:'Itsatsi Word-etik',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Testu Arrunta bezala Itsatsi',title:'Testu Arrunta bezala Itsatsi'},templates:{button:'Txantiloiak',title:'Eduki Txantiloiak',options:'Template Options',insertOption:'Ordeztu oraingo edukiak',selectPromptMsg:'Mesedez txantiloia aukeratu editorean kargatzeko<br>(orain dauden edukiak galduko dira):',emptyListMsg:'(Ez dago definitutako txantiloirik)'},showBlocks:'Blokeak erakutsi',stylesCombo:{label:'Estiloa',panelTitle:'Formatting Styles',panelTitle1:'Bloke Estiloak',panelTitle2:'Inline Estiloak',panelTitle3:'Objektu Estiloak'},format:{label:'Formatua',panelTitle:'Formatua',tag_p:'Arrunta',tag_pre:'Formateatua',tag_address:'Helbidea',tag_h1:'Izenburua 1',tag_h2:'Izenburua 2',tag_h3:'Izenburua 3',tag_h4:'Izenburua 4',tag_h5:'Izenburua 5',tag_h6:'Izenburua 6',tag_div:'Paragrafoa (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Letra-tipoa',voiceLabel:'Letra-tipoa',panelTitle:'Letra-tipoa'},fontSize:{label:'Tamaina',voiceLabel:'Tamaina',panelTitle:'Tamaina'},colorButton:{textColorTitle:'Testu Kolorea',bgColorTitle:'Atzeko kolorea',panelTitle:'Colors',auto:'Automatikoa',more:'Kolore gehiago...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Ortografia Zuzenketa Idatzi Ahala (SCAYT)',opera_title:'Not supported by Opera',enable:'Gaitu SCAYT',disable:'Desgaitu SCAYT',about:'SCAYTi buruz',toggle:'SCAYT aldatu',options:'Aukerak',langs:'Hizkuntzak',moreSuggestions:'Iradokizun gehiago',ignore:'Baztertu',ignoreAll:'Denak baztertu',addWord:'Hitza Gehitu',emptyDic:'Hiztegiaren izena ezin da hutsik egon.',noSuggestions:'Iradokizunik ez',optionsTab:'Aukerak',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Hizkuntzak',dictionariesTab:'Hiztegiak',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'Honi buruz'},about:{title:'CKEditor(r)i buruz',dlgTitle:'CKEditor(r)i buruz',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'Lizentziari buruzko informazioa gure webgunean:',copy:'Copyright © $1. Eskubide guztiak erreserbaturik.'},maximize:'Maximizatu',minimize:'Minimize',fakeobjects:{anchor:'Aingura',flash:'Flash Animazioa',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Objektu ezezaguna'},resize:'Arrastatu tamaina aldatzeko',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Dokumentuaren Ezarpenak',title:'Dokumentuaren Ezarpenak',design:'Design',meta:'Meta Informazioa',chooseColor:'Choose',other:'<other>',docTitle:'Orriaren Izenburua',charset:'Karaktere Multzoaren Kodeketa',charsetOther:'Beste Karaktere Multzoko Kodeketa',charsetASCII:'ASCII',charsetCE:'Erdialdeko Europakoa',charsetCT:'Txinatar Tradizionala (Big5)',charsetCR:'Zirilikoa',charsetGR:'Grekoa',charsetJP:'Japoniarra',charsetKR:'Korearra',charsetTR:'Turkiarra',charsetUN:'Unicode (UTF-8)',charsetWE:'Mendebaldeko Europakoa',docType:'Document Type Goiburua',docTypeOther:'Beste Document Type Goiburua',xhtmlDec:'XHTML Ezarpenak',bgColor:'Atzeko Kolorea',bgImage:'Atzeko Irudiaren URL-a',bgFixed:'Korritze gabeko Atzealdea',txtColor:'Testu Kolorea',margin:'Orrialdearen marjinak',marginTop:'Goian',marginLeft:'Ezkerrean',marginRight:'Eskuman',marginBottom:'Behean',metaKeywords:'Dokumentuaren Gako-hitzak (komarekin bananduta)',metaDescription:'Dokumentuaren Deskribapena',metaAuthor:'Egilea',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ca.js��������������������������������������������0000664�0001750�0001750�00000045433�12262650742�021727� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.ca={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Editor de text enriquit',source:'Codi font',newPage:'Nova pàgina',save:'Desa',preview:'Visualització prèvia',cut:'Retalla',copy:'Copia',paste:'Enganxa',print:'Imprimeix',underline:'Subratllat',bold:'Negreta',italic:'Cursiva',selectAll:'Selecciona-ho tot',removeFormat:'Elimina Format',strike:'Barrat',subscript:'Subíndex',superscript:'Superíndex',horizontalrule:'Insereix línia horitzontal',pagebreak:'Insereix salt de pàgina',pagebreakAlt:'Salt de pàgina',unlink:"Elimina l'enllaç",undo:'Desfés',redo:'Refés',common:{browseServer:'Veure servidor',url:'URL',protocol:'Protocol',upload:'Puja',uploadSubmit:'Envia-la al servidor',image:'Imatge',flash:'Flash',form:'Formulari',checkbox:'Casella de verificació',radio:"Botó d'opció",textField:'Camp de text',textarea:'Àrea de text',hiddenField:'Camp ocult',button:'Botó',select:'Camp de selecció',imageButton:"Botó d'imatge",notSet:'<no definit>',id:'Id',name:'Nom',langDir:"Direcció de l'idioma",langDirLtr:"D'esquerra a dreta (LTR)",langDirRtl:'De dreta a esquerra (RTL)',langCode:"Codi d'idioma",longDescr:'Descripció llarga de la URL',cssClass:"Classes del full d'estil",advisoryTitle:'Títol consultiu',cssStyle:'Estil',ok:"D'acord",cancel:'Cancel·la',close:'Tanca',preview:'Previsualitza',generalTab:'General',advancedTab:'Avançat',validateNumberFailed:'Aquest valor no és un número.',confirmNewPage:'Els canvis en aquest contingut que no es desin es perdran. Esteu segur que voleu carregar una pàgina nova?',confirmCancel:"Algunes opcions s'han canviat. Esteu segur que voleu tancar la finestra de diàleg?",options:'Opcions',target:'Destí',targetNew:'Nova finestra (_blank)',targetTop:'Finestra major (_top)',targetSelf:'Mateixa finestra (_self)',targetParent:'Finestra pare (_parent)',langDirLTR:"D'esquerra a dreta (LTR)",langDirRTL:'De dreta a esquerra (RTL)',styles:'Estil',cssClasses:"Classes del full d'estil",width:'Amplada',height:'Alçada',align:'Alineació',alignLeft:"Ajusta a l'esquerra",alignRight:'Ajusta a la dreta',alignCenter:'Centre',alignTop:'Superior',alignMiddle:'Centre',alignBottom:'Inferior',invalidValue:'Invalid value.',invalidHeight:"L'alçada ha de ser un nombre.",invalidWidth:"L'amplada ha de ser un nombre.",invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, no disponible</span>'},contextmenu:{options:'Opcions del menú contextual'},specialChar:{toolbar:'Insereix caràcter especial',title:'Selecciona el caràcter especial',options:'Opcions de caràcters especials'},link:{toolbar:'Insereix/Edita enllaç',other:'<altre>',menu:"Edita l'enllaç",title:'Enllaç',info:"Informació de l'enllaç",target:'Destí',upload:'Puja',advanced:'Avançat',type:"Tipus d'enllaç",toUrl:'URL',toAnchor:'Àncora en aquesta pàgina',toEmail:'Correu electrònic',targetFrame:'<marc>',targetPopup:'<finestra emergent>',targetFrameName:'Nom del marc de destí',targetPopupName:'Nom finestra popup',popupFeatures:'Característiques finestra popup',popupResizable:'Redimensionable',popupStatusBar:"Barra d'estat",popupLocationBar:"Barra d'adreça",popupToolbar:"Barra d'eines",popupMenuBar:'Barra de menú',popupFullScreen:'Pantalla completa (IE)',popupScrollBars:"Barres d'scroll",popupDependent:'Depenent (Netscape)',popupLeft:'Posició esquerra',popupTop:'Posició dalt',id:'Id',langDir:"Direcció de l'idioma",langDirLTR:"D'esquerra a dreta (LTR)",langDirRTL:'De dreta a esquerra (RTL)',acccessKey:"Clau d'accés",name:'Nom',langCode:"Direcció de l'idioma",tabIndex:'Index de Tab',advisoryTitle:'Títol consultiu',advisoryContentType:'Tipus de contingut consultiu',cssClasses:"Classes del full d'estil",charset:'Conjunt de caràcters font enllaçat',styles:'Estil',rel:'Relationship',selectAnchor:'Selecciona una àncora',anchorName:"Per nom d'àncora",anchorId:"Per Id d'element",emailAddress:'Adreça de correu electrònic',emailSubject:'Assumpte del missatge',emailBody:'Cos del missatge',noAnchors:'(No hi ha àncores disponibles en aquest document)',noUrl:"Si us plau, escrigui l'enllaç URL",noEmail:"Si us plau, escrigui l'adreça correu electrònic"},anchor:{toolbar:'Insereix/Edita àncora',menu:"Propietats de l'àncora",title:"Propietats de l'àncora",name:"Nom de l'àncora",errorName:"Si us plau, escriviu el nom de l'ancora",remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Cerca i reemplaça',find:'Cerca',replace:'Reemplaça',findWhat:'Cerca:',replaceWith:'Remplaça amb:',notFoundMsg:"El text especificat no s'ha trobat.",findOptions:'Find Options',matchCase:'Distingeix majúscules/minúscules',matchWord:'Només paraules completes',matchCyclic:'Match cyclic',replaceAll:'Reemplaça-ho tot',replaceSuccessMsg:'%1 ocurrència/es reemplaçada/es.'},table:{toolbar:'Taula',title:'Propietats de la taula',menu:'Propietats de la taula',deleteTable:'Suprimeix la taula',rows:'Files',columns:'Columnes',border:'Mida vora',widthPx:'píxels',widthPc:'percentatge',widthUnit:"unitat d'amplada",cellSpace:'Espaiat de cel·les',cellPad:'Encoixinament de cel·les',caption:'Títol',summary:'Resum',headers:'Capçaleres',headersNone:'Cap',headersColumn:'Primera columna',headersRow:'Primera fila',headersBoth:'Ambdues',invalidRows:'El nombre de files ha de ser un nombre major que 0.',invalidCols:'El nombre de columnes ha de ser un nombre major que 0.',invalidBorder:'El gruix de la vora ha de ser un nombre.',invalidWidth:"L'amplada de la taula ha de ser un nombre.",invalidHeight:"L'alçada de la taula ha de ser un nombre.",invalidCellSpacing:"L'espaiat de cel·la ha de ser un nombre.",invalidCellPadding:"L'encoixinament de cel·la ha de ser un nombre.",cell:{menu:'Cel·la',insertBefore:'Insereix abans',insertAfter:'Insereix després',deleteCell:'Suprimeix',merge:'Fusiona',mergeRight:'Fusiona a la dreta',mergeDown:'Fusiona avall',splitHorizontal:'Divideix horitzontalment',splitVertical:'Divideix verticalment',title:'Propietats de la cel·la',cellType:'Tipus de cel·la',rowSpan:'Expansió de files',colSpan:'Expansió de columnes',wordWrap:'Ajustar al contingut',hAlign:'Alineació Horizontal',vAlign:'Alineació Vertical',alignBaseline:'A la línia base',bgColor:'Color de fons',borderColor:'Color de la vora',data:'Dades',header:'Capçalera',yes:'Sí',no:'No',invalidWidth:"L'amplada de cel·la ha de ser un nombre.",invalidHeight:"L'alçada de cel·la ha de ser un nombre.",invalidRowSpan:"L'expansió de files ha de ser un nombre enter.",invalidColSpan:"L'expansió de columnes ha de ser un nombre enter.",chooseColor:'Trieu'},row:{menu:'Fila',insertBefore:'Insereix fila abans de',insertAfter:'Insereix fila darrera',deleteRow:'Suprimeix una fila'},column:{menu:'Columna',insertBefore:'Insereix columna abans de',insertAfter:'Insereix columna darrera',deleteColumn:'Suprimeix una columna'}},button:{title:'Propietats del botó',text:'Text (Valor)',type:'Tipus',typeBtn:'Botó',typeSbm:'Transmet formulari',typeRst:'Reinicia formulari'},checkboxAndRadio:{checkboxTitle:'Propietats de la casella de verificació',radioTitle:"Propietats del botó d'opció",value:'Valor',selected:'Seleccionat'},form:{title:'Propietats del formulari',menu:'Propietats del formulari',action:'Acció',method:'Mètode',encoding:'Codificació'},select:{title:'Propietats del camp de selecció',selectInfo:'Info',opAvail:'Opcions disponibles',value:'Valor',size:'Mida',lines:'Línies',chkMulti:'Permet múltiples seleccions',opText:'Text',opValue:'Valor',btnAdd:'Afegeix',btnModify:'Modifica',btnUp:'Amunt',btnDown:'Avall',btnSetValue:'Selecciona per defecte',btnDelete:'Elimina'},textarea:{title:"Propietats de l'àrea de text",cols:'Columnes',rows:'Files'},textfield:{title:'Propietats del camp de text',name:'Nom',value:'Valor',charWidth:'Amplada',maxChars:'Nombre màxim de caràcters',type:'Tipus',typeText:'Text',typePass:'Contrasenya'},hidden:{title:'Propietats del camp ocult',name:'Nom',value:'Valor'},image:{title:'Propietats de la imatge',titleButton:"Propietats del botó d'imatge",menu:'Propietats de la imatge',infoTab:'Informació de la imatge',btnUpload:'Envia-la al servidor',upload:'Puja',alt:'Text alternatiu',lockRatio:'Bloqueja les proporcions',resetSize:'Restaura la mida',border:'Vora',hSpace:'Espaiat horit.',vSpace:'Espaiat vert.',alertUrl:'Si us plau, escriviu la URL de la imatge',linkTab:'Enllaç',button2Img:"Voleu transformar el botó d'imatge seleccionat en una simple imatge?",img2Button:"Voleu transformar la imatge seleccionada en un botó d'imatge?",urlMissing:'Falta la URL de la imatge.',validateBorder:'La vora ha de ser un nombre enter.',validateHSpace:'HSpace ha de ser un nombre enter.',validateVSpace:'VSpace ha de ser un nombre enter.'},flash:{properties:'Propietats del Flash',propertiesTab:'Propietats',title:'Propietats del Flash',chkPlay:'Reprodució automàtica',chkLoop:'Bucle',chkMenu:'Habilita menú Flash',chkFull:'Permetre la pantalla completa',scale:'Escala',scaleAll:'Mostra-ho tot',scaleNoBorder:'Sense vores',scaleFit:'Mida exacta',access:'Accés a scripts',accessAlways:'Sempre',accessSameDomain:'El mateix domini',accessNever:'Mai',alignAbsBottom:'Abs Bottom',alignAbsMiddle:'Abs Middle',alignBaseline:'Baseline',alignTextTop:'Text Top',quality:'Qualitat',qualityBest:'La millor',qualityHigh:'Alta',qualityAutoHigh:'Alta automàtica',qualityMedium:'Mitjana',qualityAutoLow:'Baixa automàtica',qualityLow:'Baixa',windowModeWindow:'Finestra',windowModeOpaque:'Opaca',windowModeTransparent:'Transparent',windowMode:'Mode de la finestra',flashvars:'Variables de Flash',bgcolor:'Color de Fons',hSpace:'Espaiat horit.',vSpace:'Espaiat vert.',validateSrc:"Si us plau, escrigui l'enllaç URL",validateHSpace:"L'espaiat horitzonatal ha de ser un nombre.",validateVSpace:"L'espaiat vertical ha de ser un nombre."},spellCheck:{toolbar:"Revisa l'ortografia",title:"Comprova l'ortografia",notAvailable:'El servei no es troba disponible ara.',errorLoading:'Error carregant el servidor: %s.',notInDic:'No és al diccionari',changeTo:'Reemplaça amb',btnIgnore:'Ignora',btnIgnoreAll:'Ignora-les totes',btnReplace:'Canvia',btnReplaceAll:'Canvia-les totes',btnUndo:'Desfés',noSuggestions:'Cap suggeriment',progress:'Verificació ortogràfica en curs...',noMispell:'Verificació ortogràfica acabada: no hi ha cap paraula mal escrita',noChanges:"Verificació ortogràfica: no s'ha canviat cap paraula",oneChange:"Verificació ortogràfica: s'ha canviat una paraula",manyChanges:"Verificació ortogràfica: s'han canviat %1 paraules",ieSpellDownload:'Verificació ortogràfica no instal·lada. Voleu descarregar-ho ara?'},smiley:{toolbar:'Icona',title:'Insereix una icona',options:"Opcions d'emoticones"},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Llista numerada',bulletedlist:'Llista de pics',indent:'Augmenta el sagnat',outdent:'Redueix el sagnat',justify:{left:"Alinea a l'esquerra",center:'Centrat',right:'Alinea a la dreta',block:'Justificat'},blockquote:'Bloc de cita',clipboard:{title:'Enganxa',cutError:'La seguretat del vostre navegador no permet executar automàticament les operacions de retallar. Si us plau, utilitzeu el teclat (Ctrl+X).',copyError:'La seguretat del vostre navegador no permet executar automàticament les operacions de copiar. Si us plau, utilitzeu el teclat (Ctrl+C).',pasteMsg:'Si us plau, enganxeu dins del següent camp utilitzant el teclat (<STRONG>Ctrl+V</STRONG>) i premeu <STRONG>OK</STRONG>.',securityMsg:"A causa de la configuració de seguretat del vostre navegador, l'editor no pot accedir al porta-retalls directament. Enganxeu-ho un altre cop en aquesta finestra.",pasteArea:"Àrea d'enganxat"},pastefromword:{confirmCleanup:'El text que voleu enganxar sembla provenir de Word. Voleu netejar aquest text abans que sigui enganxat?',toolbar:'Enganxa des del Word',title:'Enganxa des del Word',error:'No ha estat possible netejar les dades enganxades degut a un error intern'},pasteText:{button:'Enganxa com a text no formatat',title:'Enganxa com a text no formatat'},templates:{button:'Plantilles',title:'Plantilles de contingut',options:'Opcions de plantilla',insertOption:'Reemplaça el contingut actual',selectPromptMsg:"Seleccioneu una plantilla per usar a l'editor<br>(per defecte s'elimina el contingut actual):",emptyListMsg:'(No hi ha plantilles definides)'},showBlocks:'Mostra els blocs',stylesCombo:{label:'Estil',panelTitle:'Estils de format',panelTitle1:'Estils de bloc',panelTitle2:'Estils incrustats',panelTitle3:"Estils d'objecte"},format:{label:'Format',panelTitle:'Format',tag_p:'Normal',tag_pre:'Formatejat',tag_address:'Adreça',tag_h1:'Encapçalament 1',tag_h2:'Encapçalament 2',tag_h3:'Encapçalament 3',tag_h4:'Encapçalament 4',tag_h5:'Encapçalament 5',tag_h6:'Encapçalament 6',tag_div:'Normal (DIV)'},div:{title:'Crea un contenidor Div',toolbar:'Crea un contenidor Div',cssClassInputLabel:"Classes de la fulla d'estils",styleSelectLabel:'Estil',IdInputLabel:'Id',languageCodeInputLabel:" Codi d'idioma",inlineStyleInputLabel:'Estil en línia',advisoryTitleInputLabel:'Títol de guia',langDirLabel:"Direcció de l'idioma",langDirLTRLabel:"D'esquerra a dreta (LTR)",langDirRTLLabel:'De dreta a esquerra (RTL)',edit:'Edita Div',remove:'Elimina Div'},iframe:{title:'Propietats IFrame',toolbar:'IFrame',noUrl:"Si us plau, introduïu la URL de l'iframe URL",scrolling:'Activa les barrres de desplaçament',border:'Mostra la vora del marc'},font:{label:'Tipus de lletra',voiceLabel:'Tipus de lletra',panelTitle:'Tipus de lletra'},fontSize:{label:'Mida',voiceLabel:'Mida de la lletra',panelTitle:'Mida'},colorButton:{textColorTitle:'Color de Text',bgColorTitle:'Color de Fons',panelTitle:'Colors',auto:'Automàtic',more:'Més colors...'},colors:{'000':'Negre',800000:'Granat','8B4513':'Marró sella','2F4F4F':'Gris pissarra fosca','008080':'Blau xarxet','000080':'Blau marí','4B0082':'Indi',696969:'Gris intens',B22222:'Maó',A52A2A:'Marró (web)',DAA520:'Solidago','006400':'Verd fosc','40E0D0':'Turquesa','0000CD':'Atzur',800080:'Lila',808080:'Gris',F00:'Vermell',FF8C00:'Taronja fosc',FFD700:'Or','008000':'Verd','0FF':'Cian','00F':'Blau',EE82EE:'Lavanda rosat',A9A9A9:'Gris clar',FFA07A:'Salmó clar',FFA500:'Taronja',FFFF00:'Groc','00FF00':'Verd llima',AFEEEE:'Blau pàlid',ADD8E6:'Blau clar',DDA0DD:'Pruna',D3D3D3:'Gris clar',FFF0F5:'Lavanda rosat',FAEBD7:'Blanc antic',FFFFE0:'Groc clar',F0FFF0:'Verd pàlid',F0FFFF:'Blau cel pàlid',F0F8FF:'Cian pàlid',E6E6FA:'Lavanda',FFF:'Blanc'},scayt:{title:'Spell Check As You Type',opera_title:"No és compatible amb l'Opera",enable:"Habilitat l'SCAYT",disable:'Deshabilita SCAYT',about:"Quant a l'SCAYT",toggle:"Commuta l'SCAYT",options:'Opcions',langs:'Idiomes',moreSuggestions:'Més suggerències',ignore:'Ignora',ignoreAll:"Ignora'ls tots",addWord:'Afegeix una paraula',emptyDic:"El nom del diccionari no hauria d'estar buit.",noSuggestions:'Cap suggeriment',optionsTab:'Opcions',allCaps:'Ignora paraules en majúscules',ignoreDomainNames:'Ignora els noms de domini',mixedCase:'Ignora paraules amb majúscules i minúscules',mixedWithDigits:'Ignora paraules amb números ',languagesTab:'Idiomes',dictionariesTab:'Diccionaris',dic_field_name:'Nom del diccionari',dic_create:'Crea',dic_restore:'Restaura',dic_delete:'Elimina',dic_rename:'Canvia el nom',dic_info:"Inicialment el diccionari d'usuari s'emmagatzema en una galeta. De totes maneres, les galetes tenen la mida limitada. Quan el diccionari creix massa, llavors el diccionari es pot emmagatzemar al nostre servidor. Per desar el vostre diccionari personal al nostre servidor heu d.'especificar un nom pel diccionari. Si ja heu desat un diccionari, teclegeu si us plau el seu nom i cliqueu el botó de restauració.",aboutTab:'Quant a'},about:{title:'Quant al CKEditor',dlgTitle:'Quant al CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'Per informació sobre llicències visiteu el web:',copy:'Copyright © $1. Tots els drets reservats.'},maximize:'Maximitza',minimize:'Minimitza',fakeobjects:{anchor:'Àncora',flash:'Animació Flash',iframe:'IFrame',hiddenfield:'Camp ocult',unknown:'Objecte desconegut'},resize:'Arrossegueu per redimensionar',colordialog:{title:'Selecciona el color',options:'Opcions del color',highlight:'Destacat',selected:'Seleccionat',clear:'Neteja'},toolbarCollapse:"Redueix la barra d'eines",toolbarExpand:"Amplia la barra d'eines",toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:"Direcció del text d'esquerra a dreta",rtl:'Direcció del text de dreta a esquerra'},docprops:{label:'Propietats del document',title:'Propietats del document',design:'Design',meta:'Metadades',chooseColor:'Trieu',other:'<altre>',docTitle:'Títol de la pàgina',charset:'Codificació de conjunt de caràcters',charsetOther:'Una altra codificació de caràcters',charsetASCII:'ASCII',charsetCE:'Centreeuropeu',charsetCT:'Xinès tradicional (Big5)',charsetCR:'Ciríl·lic',charsetGR:'Grec',charsetJP:'Japonès',charsetKR:'Coreà',charsetTR:'Turc',charsetUN:'Unicode (UTF-8)',charsetWE:'Europeu occidental',docType:'Capçalera de tipus de document',docTypeOther:'Un altra capçalera de tipus de document',xhtmlDec:'Incloure declaracions XHTML',bgColor:'Color de fons',bgImage:'URL de la imatge de fons',bgFixed:'Fons fixe',txtColor:'Color de Text',margin:'Marges de pàgina',marginTop:'Cap',marginLeft:'Esquerra',marginRight:'Dreta',marginBottom:'Peu',metaKeywords:'Mots clau per a indexació (separats per coma)',metaDescription:'Descripció del document',metaAuthor:'Autor',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ug.js��������������������������������������������0000664�0001750�0001750�00000066051�12262650742�021756� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.ug={dir:'rtl',editorTitle:'كۆرۈنۈشچان تەھرىرلىگۈچ، %1',editorHelp:'ALT+0 نى بېسىپ ياردەمنى كۆرۈڭ',toolbars:'قورال بالداق',editor:'تەھرىرلىگۈچ',source:'مەنبە',newPage:'يېڭى بەت',save:'ساقلا',preview:'ئالدىن كۆزەت',cut:'كەس',copy:'نەشر ھوقۇقىغا ئىگە بەلگىسى',paste:'چاپلا',print:'باس ',underline:'ئاستى سىزىق',bold:'توم',italic:'يانتۇ',selectAll:'ھەممىنى تاللا',removeFormat:'پىچىمنى چىقىرىۋەت',strike:'ئۆچۈرۈش سىزىقى',subscript:'تۆۋەن ئىندېكس',superscript:'يۇقىرى ئىندېكس',horizontalrule:'توغرا سىزىق قىستۇر',pagebreak:'بەت ئايرىغۇچ قىستۇر',pagebreakAlt:'بەت ئايرىغۇچ',unlink:'ئۇلانما بىكار قىل',undo:'يېنىۋال',redo:'قايتىلا ',common:{browseServer:'كۆرسىتىش مۇلازىمېتىر',url:'ئەسلى ھۆججەت',protocol:'كېلىشىم',upload:'يۈكلە',uploadSubmit:'مۇلازىمېتىرغا يۈكلە',image:'سۈرەت',flash:'Flash',form:'جەدۋەل',checkbox:'كۆپ تاللاش رامكىسى',radio:'يەككە تاللاش توپچىسى',textField:'يەككە قۇر تېكىست',textarea:'كۆپ قۇر تېكىست',hiddenField:'يوشۇرۇن دائىرە',button:'توپچا',select:'تىزىم/تىزىملىك',imageButton:'سۈرەت دائىرە',notSet:'‹تەڭشەلمىگەن›',id:'ID',name:'ئات',langDir:'تىل يۆنىلىشى',langDirLtr:'سولدىن ئوڭغا (LTR)',langDirRtl:'ئوڭدىن سولغا (RTL)',langCode:'تىل كودى',longDescr:'تەپسىلىي چۈشەندۈرۈش ئادرېسى',cssClass:'ئۇسلۇب خىلىنىڭ ئاتى',advisoryTitle:'ماۋزۇ',cssStyle:'قۇر ئىچىدىكى ئۇسلۇبى',ok:'جەزملە',cancel:'ۋاز كەچ',close:'تاقا',preview:'ئالدىن كۆزەت',generalTab:'ئادەتتىكى',advancedTab:'ئالىي',validateNumberFailed:'سان پىچىمىدا كىرگۈزۈش زۆرۈر',confirmNewPage:'نۆۋەتتىكى پۈتۈك مەزمۇنى ساقلانمىدى، يېڭى پۈتۈك قۇرامسىز؟',confirmCancel:'قىسمەن ئۆزگەرتىش ساقلانمىدى، بۇ سۆزلەشكۈنى تاقامسىز؟',options:'تاللانما',target:'نىشان كۆزنەك',targetNew:'يېڭى كۆزنەك (_blank)',targetTop:'پۈتۈن بەت (_top)',targetSelf:'مەزكۇر كۆزنەك (_self)',targetParent:'ئاتا كۆزنەك (_parent)',langDirLTR:'سولدىن ئوڭغا (LTR)',langDirRTL:'ئوڭدىن سولغا (RTL)',styles:'ئۇسلۇبلار',cssClasses:'ئۇسلۇب خىللىرى',width:'كەڭلىك',height:'ئېگىزلىك',align:'توغرىلىنىشى',alignLeft:'سول',alignRight:'ئوڭ',alignCenter:'ئوتتۇرا',alignTop:'ئۈستى',alignMiddle:'ئوتتۇرا',alignBottom:'ئاستى',invalidValue:'Invalid value.',invalidHeight:'ئېگىزلىك چوقۇم رەقەم پىچىمىدا بولۇشى زۆرۈر',invalidWidth:'كەڭلىك چوقۇم رەقەم پىچىمىدا بولۇشى زۆرۈر',invalidCssLength:'بۇ سۆز بۆلىكى چوقۇم مۇۋاپىق بولغان CSS ئۇزۇنلۇق قىممىتى بولۇشى زۆرۈر، بىرلىكى (px, %, in, cm, mm, em, ex, pt ياكى pc)',invalidHtmlLength:'بۇ سۆز بۆلىكى چوقۇم بىرىكمە HTML ئۇزۇنلۇق قىممىتى بولۇشى كېرەك. ئۆز ئىچىگە ئالىدىغان بىرلىك (px ياكى %)',invalidInlineStyle:'ئىچكى باغلانما ئۇسلۇبى چوقۇم چېكىتلىك پەش بىلەن ئايرىلغان بىر ياكى كۆپ «خاسلىق ئاتى:خاسلىق قىممىتى» پىچىمىدا بولۇشى لازىم',cssLengthTooltip:'بۇ سۆز بۆلىكى بىرىكمە CSS ئۇزۇنلۇق قىممىتى بولۇشى كېرەك. ئۆز ئىچىگە ئالىدىغان بىرلىك (px, %, in, cm, mm, em, ex, pt ياكى pc)',unavailable:'%1<span class=\\\\"cke_accessibility\\\\">، ئىشلەتكىلى بولمايدۇ</span>'},contextmenu:{options:'قىسقا يول تىزىملىك تاللانمىسى'},specialChar:{toolbar:'ئالاھىدە ھەرپ قىستۇر',title:'ئالاھىدە ھەرپ تاللاڭ',options:'ئالاھىدە ھەرپ تاللانمىسى'},link:{toolbar:'ئۇلانما قىستۇر/تەھرىرلە',other:'‹باشقا›',menu:'ئۇلانما تەھرىر',title:'ئۇلانما',info:'ئۇلانما ئۇچۇرى',target:'نىشان',upload:'يۈكلە',advanced:'ئالىي',type:'ئۇلانما تىپى',toUrl:'ئادرېس',toAnchor:'بەت ئىچىدىكى لەڭگەرلىك نۇقتا ئۇلانمىسى',toEmail:'ئېلخەت',targetFrame:'‹كاندۇك›',targetPopup:'‹قاڭقىش كۆزنەك›',targetFrameName:'نىشان كاندۇك ئاتى',targetPopupName:'قاڭقىش كۆزنەك ئاتى',popupFeatures:'قاڭقىش كۆزنەك خاسلىقى',popupResizable:'چوڭلۇقى ئۆزگەرتىشچان',popupStatusBar:'ھالەت بالداق',popupLocationBar:'ئادرېس بالداق',popupToolbar:'قورال بالداق',popupMenuBar:'تىزىملىك بالداق',popupFullScreen:'پۈتۈن ئېكران (IE)',popupScrollBars:'دومىلىما سۈرگۈچ',popupDependent:'تەۋە (NS)',popupLeft:'سول',popupTop:'ئوڭ',id:'ID',langDir:'تىل يۆنىلىشى',langDirLTR:'سولدىن ئوڭغا (LTR)',langDirRTL:'ئوڭدىن سولغا (RTL)',acccessKey:'زىيارەت كۇنۇپكا',name:'ئات',langCode:'تىل كودى',tabIndex:'Tab تەرتىپى',advisoryTitle:'ماۋزۇ',advisoryContentType:'مەزمۇن تىپى',cssClasses:'ئۇسلۇب خىلى ئاتى',charset:'ھەرپ كودلىنىشى',styles:'قۇر ئىچىدىكى ئۇسلۇبى',rel:'باغلىنىش',selectAnchor:'بىر لەڭگەرلىك نۇقتا تاللاڭ',anchorName:'لەڭگەرلىك نۇقتا ئاتى بويىچە',anchorId:'لەڭگەرلىك نۇقتا ID سى بويىچە',emailAddress:'ئادرېس',emailSubject:'ماۋزۇ',emailBody:'مەزمۇن',noAnchors:'(بۇ پۈتۈكتە ئىشلەتكىلى بولىدىغان لەڭگەرلىك نۇقتا يوق)',noUrl:'ئۇلانما ئادرېسىنى كىرگۈزۈڭ',noEmail:'ئېلخەت ئادرېسىنى كىرگۈزۈڭ'},anchor:{toolbar:'لەڭگەرلىك نۇقتا ئۇلانمىسى قىستۇر/تەھرىرلە',menu:'لەڭگەرلىك نۇقتا ئۇلانما خاسلىقى',title:'لەڭگەرلىك نۇقتا ئۇلانما خاسلىقى',name:'لەڭگەرلىك نۇقتا ئاتى',errorName:'لەڭگەرلىك نۇقتا ئاتىنى كىرگۈزۈڭ',remove:'لەڭگەرلىك نۇقتا ئۆچۈر'},list:{numberedTitle:'تەرتىپ نومۇر تىزىم خاسلىقى',bulletedTitle:'تۈر بەلگە تىزىم خاسلىقى',type:'بەلگە تىپى',start:'باشلىنىش نومۇرى',validateStartNumber:'تىزىم باشلىنىش تەرتىپ نومۇرى چوقۇم پۈتۈن سان پىچىمىدا بولۇشى لازىم',circle:'بوش چەمبەر',disc:'تولدۇرۇلغان چەمبەر',square:'تولدۇرۇلغان تۆت چاسا',none:'بەلگە يوق',notset:'‹تەڭشەلمىگەن›',armenian:'قەدىمكى ئەرمىنىيە تەرتىپ نومۇرى شەكلى',georgian:'قەدىمكى جورجىيە تەرتىپ نومۇرى شەكلى (an, ban, gan قاتارلىق)',lowerRoman:'كىچىك ھەرپلىك رىم رەقىمى (i, ii, iii, iv, v قاتارلىق)',upperRoman:'چوڭ ھەرپلىك رىم رەقىمى (I, II, III, IV, V قاتارلىق)',lowerAlpha:'ئىنگلىزچە كىچىك ھەرپ (a, b, c, d, e قاتارلىق)',upperAlpha:'ئىنگلىزچە چوڭ ھەرپ (A, B, C, D, E قاتارلىق)',lowerGreek:'گرېكچە كىچىك ھەرپ (alpha, beta, gamma قاتارلىق)',decimal:'سان (1, 2, 3 قاتارلىق)',decimalLeadingZero:'نۆلدىن باشلانغان سان بەلگە (01, 02, 03 قاتارلىق)'},findAndReplace:{title:'ئىزدەپ ئالماشتۇر',find:'ئىزدە',replace:'ئالماشتۇر',findWhat:'ئىزدە:',replaceWith:'ئالماشتۇر:',notFoundMsg:'بەلگىلەنگەن تېكىستنى تاپالمىدى',findOptions:'ئىزدەش تاللانمىسى',matchCase:'چوڭ كىچىك ھەرپنى پەرقلەندۈر',matchWord:'پۈتۈن سۆز ماسلىشىش',matchCyclic:'ئايلانما ماسلىشىش',replaceAll:'ھەممىنى ئالماشتۇر',replaceSuccessMsg:'جەمئى %1 جايدىكى ئالماشتۇرۇش تاماملاندى'},table:{toolbar:'جەدۋەل',title:'جەدۋەل خاسلىقى',menu:'جەدۋەل خاسلىقى',deleteTable:'جەدۋەل ئۆچۈر',rows:'قۇر سانى',columns:'ئىستون سانى',border:'گىرۋەك',widthPx:'پىكسېل',widthPc:'پىرسەنت',widthUnit:'كەڭلىك بىرلىكى',cellSpace:'ئارىلىق',cellPad:'يان ئارىلىق',caption:'ماۋزۇ',summary:'ئۈزۈندە',headers:'ماۋزۇ كاتەكچە',headersNone:'يوق',headersColumn:'بىرىنچى ئىستون',headersRow:'بىرىنچى قۇر',headersBoth:'بىرىنچى ئىستون ۋە بىرىنچى قۇر',invalidRows:'بەلگىلەنگەن ئىستون سانى چوقۇم نۆلدىن چوڭ بولىدۇ',invalidCols:'بەلگىلەنگەن قۇر سانى چوقۇم نۆلدىن چوڭ بولىدۇ',invalidBorder:'گىرۋەك توملۇقى چوقۇم سان بولىدۇ',invalidWidth:'جەدۋەل كەڭلىكى چوقۇم سان بولىدۇ',invalidHeight:'جەدۋەل ئېگىزلىكى چوقۇم سان بولىدۇ',invalidCellSpacing:'كاتەكچە ئارىلىقى چوقۇم سان بولىدۇ',invalidCellPadding:'كاتەكچىگە چوقۇم سان تولدۇرۇلىدۇ',cell:{menu:'كاتەكچە',insertBefore:'سولغا كاتەكچە قىستۇر',insertAfter:'ئوڭغا كاتەكچە قىستۇر',deleteCell:'كەتەكچە ئۆچۈر',merge:'كاتەكچە بىرلەشتۈر',mergeRight:'كاتەكچىنى ئوڭغا بىرلەشتۈر',mergeDown:'كاتەكچىنى ئاستىغا بىرلەشتۈر',splitHorizontal:'كاتەكچىنى توغرىسىغا بىرلەشتۈر',splitVertical:'كاتەكچىنى بويىغا بىرلەشتۈر',title:'كاتەكچە خاسلىقى',cellType:'كاتەكچە تىپى',rowSpan:'بويىغا چات ئارىسى قۇر سانى',colSpan:'توغرىسىغا چات ئارىسى ئىستون سانى',wordWrap:'ئۆزلۈكىدىن قۇر قاتلا',hAlign:'توغرىسىغا توغرىلا',vAlign:'بويىغا توغرىلا',alignBaseline:'ئاساسىي سىزىق',bgColor:'تەگلىك رەڭگى',borderColor:'گىرۋەك رەڭگى',data:'سانلىق مەلۇمات',header:'جەدۋەل باشى',yes:'ھەئە',no:'ياق',invalidWidth:'كاتەكچە كەڭلىكى چوقۇم سان بولىدۇ',invalidHeight:'كاتەكچە ئېگىزلىكى چوقۇم سان بولىدۇ',invalidRowSpan:'قۇر چات ئارىسى چوقۇم پۈتۈن سان بولىدۇ ',invalidColSpan:'ئىستون چات ئارىسى چوقۇم پۈتۈن سان بولىدۇ',chooseColor:'تاللاڭ'},row:{menu:'قۇر',insertBefore:'ئۈستىگە قۇر قىستۇر',insertAfter:'ئاستىغا قۇر قىستۇر',deleteRow:'قۇر ئۆچۈر'},column:{menu:'ئىستون',insertBefore:'سولغا ئىستون قىستۇر',insertAfter:'ئوڭغا ئىستون قىستۇر',deleteColumn:'ئىستون ئۆچۈر'}},button:{title:'توپچا خاسلىقى',text:'بەلگە (قىممەت)',type:'تىپى',typeBtn:'توپچا',typeSbm:'تاپشۇر',typeRst:'ئەسلىگە قايتۇر'},checkboxAndRadio:{checkboxTitle:'كۆپ تاللاش خاسلىقى',radioTitle:'تاق تاللاش توپچا خاسلىقى',value:'تاللىغان قىممەت',selected:'تاللانغان'},form:{title:'جەدۋەل خاسلىقى',menu:'جەدۋەل خاسلىقى',action:'مەشغۇلات',method:'ئۇسۇل',encoding:'جەدۋەل كودلىنىشى'},select:{title:'جەدۋەل/تىزىم خاسلىقى',selectInfo:'ئۇچۇر تاللاڭ',opAvail:'تاللاش تۈرلىرى',value:'قىممەت',size:'ئېگىزلىكى',lines:'قۇر',chkMulti:'كۆپ تاللاشچان',opText:'تاللانما تېكىستى',opValue:'تاللانما قىممىتى',btnAdd:'قوش',btnModify:'ئۆزگەرت',btnUp:'ئۈستىگە',btnDown:'ئاستىغا',btnSetValue:'دەسلەپكى تاللانما قىممىتىگە تەڭشە',btnDelete:'ئۆچۈر'},textarea:{title:' كۆپ قۇرلۇق تېكىست خاسلىقى',cols:'ھەرپ كەڭلىكى',rows:'قۇر سانى'},textfield:{title:'تاق قۇرلۇق تېكىست خاسلىقى',name:'ئات',value:'دەسلەپكى قىممىتى',charWidth:'ھەرپ كەڭلىكى',maxChars:'ئەڭ كۆپ ھەرپ سانى',type:'تىپى',typeText:'تېكىست',typePass:'ئىم'},hidden:{title:'يوشۇرۇن دائىرە خاسلىقى',name:'ئات',value:'دەسلەپكى قىممىتى'},image:{title:'سۈرەت خاسلىقى',titleButton:'سۈرەت دائىرە خاسلىقى',menu:'سۈرەت خاسلىقى',infoTab:'سۈرەت',btnUpload:'مۇلازىمېتىرغا يۈكلە',upload:'يۈكلە',alt:'تېكىست ئالماشتۇر',lockRatio:'نىسبەتنى قۇلۇپلا',resetSize:'ئەسلى چوڭلۇق',border:'گىرۋەك چوڭلۇقى',hSpace:'توغرىسىغا ئارىلىقى',vSpace:'بويىغا ئارىلىقى',alertUrl:'سۈرەت ئادرېسىنى كىرگۈزۈڭ',linkTab:'ئۇلانما',button2Img:'نۆۋەتتىكى توپچىنى سۈرەتكە ئۆزگەرتەمسىز؟',img2Button:'نۆۋەتتىكى سۈرەتنى توپچىغا ئۆزگەرتەمسىز؟',urlMissing:'سۈرەتنىڭ ئەسلى ھۆججەت ئادرېسى كەم',validateBorder:'گىرۋەك چوڭلۇقى چوقۇم سان بولىدۇ',validateHSpace:'توغرىسىغا ئارىلىق چوقۇم پۈتۈن سان بولىدۇ',validateVSpace:'بويىغا ئارىلىق چوقۇم پۈتۈن سان بولىدۇ'},flash:{properties:'Flash خاسلىق',propertiesTab:'خاسلىق',title:'ماۋزۇ',chkPlay:'ئۆزلۈكىدىن چال',chkLoop:'دەۋرىي',chkMenu:'Flash تىزىملىكنى قوزغات',chkFull:'پۈتۈن ئېكراننى قوزغات',scale:'نىسبىتى',scaleAll:'ھەممىنى كۆرسەت',scaleNoBorder:'گىرۋەك يوق',scaleFit:'قەتئىي ماسلىشىش',access:'قوليازما زىيارەتكە يول قوي',accessAlways:'ھەمىشە',accessSameDomain:'ئوخشاش دائىرىدە',accessNever:'ھەرگىز',alignAbsBottom:'مۇتلەق ئاستى',alignAbsMiddle:'مۇتلەق ئوتتۇرا',alignBaseline:'ئاساسىي سىزىق',alignTextTop:'تېكىست ئۈستىدە',quality:'سۈپەت',qualityBest:'ئەڭ ياخشى',qualityHigh:'يۇقىرى',qualityAutoHigh:'يۇقىرى (ئاپتوماتىك)',qualityMedium:'ئوتتۇرا (ئاپتوماتىك)',qualityAutoLow:'تۆۋەن (ئاپتوماتىك)',qualityLow:'تۆۋەن',windowModeWindow:'كۆزنەك گەۋدىسى',windowModeOpaque:'خىرە',windowModeTransparent:'سۈزۈك',windowMode:'كۆزنەك ھالىتى',flashvars:'Flash ئۆزگەرگۈچى',bgcolor:'تەگلىك رەڭگى',hSpace:'توغرىسىغا ئارىلىق',vSpace:'بويىغا ئارىلىق',validateSrc:'ئەسلى ھۆججەت ئادرېسىنى كىرگۈزۈڭ',validateHSpace:'توغرىسىغا ئارىلىق چوقۇم سان بولىدۇ',validateVSpace:'بويىغا ئارىلىق چوقۇم سان بولىدۇ'},spellCheck:{toolbar:'ئىملا تەكشۈر',title:'ئىملا تەكشۈر',notAvailable:'كەچۈرۈڭ، مۇلازىمېتىرنى ۋاقتىنچە ئىشلەتكىلى بولمايدۇ',errorLoading:'لازىملىق مۇلازىمېتىرنى يۈكلىگەندە خاتالىق كۆرۈلدى: %s.',notInDic:'لۇغەتتە يوق',changeTo:'ئۆزگەرت',btnIgnore:'پەرۋا قىلما',btnIgnoreAll:'ھەممىگە پەرۋا قىلما',btnReplace:'ئالماشتۇر',btnReplaceAll:'ھەممىنى ئالماشتۇر',btnUndo:'يېنىۋال',noSuggestions:'-تەكلىپ يوق-',progress:'ئىملا تەكشۈرۈۋاتىدۇ…',noMispell:'ئىملا تەكشۈرۈش تامام: ئىملا خاتالىقى بايقالمىدى',noChanges:'ئىملا تەكشۈرۈش تامام: ھېچقانداق سۆزنى ئۆزگەرتمىدى',oneChange:'ئىملا تەكشۈرۈش تامام: بىر سۆزنى ئۆزگەرتتى',manyChanges:'ئىملا تەكشۈرۈش تامام: %1 سۆزنى ئۆزگەرتتى',ieSpellDownload:'ئىملا تەكشۈرۈش قىستۇرمىسى تېخى ئورنىتىلمىغان، ھازىرلا چۈشۈرەمسىز؟'},smiley:{toolbar:'چىراي ئىپادە',title:'چىراي ئىپادە سىنبەلگە قىستۇر',options:'چىراي ئىپادە سىنبەلگە تاللانمىسى'},elementsPath:{eleLabel:'ئېلېمېنت يولى',eleTitle:'%1 ئېلېمېنت'},numberedlist:'تەرتىپ نومۇر تىزىمى',bulletedlist:'تۈر بەلگە تىزىمى',indent:'تارايت',outdent:'كەڭەيت',justify:{left:'سولغا توغرىلا',center:'ئوتتۇرىغا توغرىلا',right:'ئوڭغا توغرىلا',block:'ئىككى تەرەپتىن توغرىلا'},blockquote:'بۆلەك نەقىل',clipboard:{title:'چاپلا',cutError:'تور كۆرگۈڭىزنىڭ بىخەتەرلىك تەڭشىكى تەھرىرلىگۈچنىڭ كەس مەشغۇلاتىنى ئۆزلۈكىدىن ئىجرا قىلىشىغا يول قويمايدۇ، ھەرپتاختا تېز كۇنۇپكا (Ctrl/Cmd+X) ئارقىلىق تاماملاڭ',copyError:'تور كۆرگۈڭىزنىڭ بىخەتەرلىك تەڭشىكى تەھرىرلىگۈچنىڭ كۆچۈر مەشغۇلاتىنى ئۆزلۈكىدىن ئىجرا قىلىشىغا يول قويمايدۇ، ھەرپتاختا تېز كۇنۇپكا (Ctrl/Cmd+C) ئارقىلىق تاماملاڭ',pasteMsg:'ھەرپتاختا تېز كۇنۇپكا (<STRONG>Ctrl/Cmd+V</STRONG>) نى ئىشلىتىپ مەزمۇننى تۆۋەندىكى رامكىغا كۆچۈرۈڭ، ئاندىن <STRONG>جەزملە</STRONG>نى بېسىڭ',securityMsg:'توركۆرگۈڭىزنىڭ بىخەتەرلىك تەڭشىكى سەۋەبىدىن بۇ تەھرىرلىگۈچ چاپلاش تاختىسىدىكى مەزمۇننى بىۋاستە زىيارەت قىلالمايدۇ، بۇ كۆزنەكتە قايتا بىر قېتىم چاپلىشىڭىز كېرەك.',pasteArea:'چاپلاش دائىرىسى'},pastefromword:{confirmCleanup:'سىز چاپلىماقچى بولغان مەزمۇن MS Word تىن كەلگەندەك قىلىدۇ، MS Word پىچىمىنى تازىلىۋەتكەندىن كېيىن ئاندىن چاپلامدۇ؟',toolbar:'MS Word تىن چاپلا',title:'MS Word تىن چاپلا',error:'ئىچكى خاتالىق سەۋەبىدىن چاپلايدىغان سانلىق مەلۇماتنى تازىلىيالمايدۇ'},pasteText:{button:'پىچىمى يوق تېكىست سۈپىتىدە چاپلا',title:'پىچىمى يوق تېكىست سۈپىتىدە چاپلا'},templates:{button:'قېلىپ',title:'مەزمۇن قېلىپى',options:'قېلىپ تاللانمىسى',insertOption:'نۆۋەتتىكى مەزمۇننى ئالماشتۇر',selectPromptMsg:'تەھرىرلىگۈچنىڭ مەزمۇن قېلىپىنى تاللاڭ:',emptyListMsg:'(قېلىپ يوق)'},showBlocks:'بۆلەكنى كۆرسەت',stylesCombo:{label:'ئۇسلۇب',panelTitle:'ئۇسلۇب',panelTitle1:'بۆلەك دەرىجىسىدىكى ئېلېمېنت ئۇسلۇبى',panelTitle2:'ئىچكى باغلانما ئېلېمېنت ئۇسلۇبى',panelTitle3:'نەڭ (Object) ئېلېمېنت ئۇسلۇبى'},format:{label:'پىچىم',panelTitle:'پىچىم',tag_p:'ئادەتتىكى',tag_pre:'تىزىلغان پىچىم',tag_address:'ئادرېس',tag_h1:'ماۋزۇ 1',tag_h2:'ماۋزۇ 2',tag_h3:'ماۋزۇ 3',tag_h4:'ماۋزۇ 4',tag_h5:'ماۋزۇ 5',tag_h6:'ماۋزۇ 6',tag_div:'ئابزاس (DIV)'},div:{title:'DIV قاچا قۇر',toolbar:'DIV قاچا قۇر',cssClassInputLabel:'ئۇسلۇب تىپىنىڭ ئاتى',styleSelectLabel:'ئۇسلۇب',IdInputLabel:'ID',languageCodeInputLabel:'تىل كودى',inlineStyleInputLabel:'قۇر ئىچىدىكى ئۇسلۇبى',advisoryTitleInputLabel:'ماۋزۇ',langDirLabel:'تىل يۆنىلىشى',langDirLTRLabel:'سولدىن ئوڭغا (LTR)',langDirRTLLabel:'ئوڭدىن سولغا (RTL)',edit:'DIV تەھرىر',remove:'DIV چىقىرىۋەت'},iframe:{title:'IFrame خاسلىق',toolbar:'IFrame ',noUrl:'كاندۇكنىڭ ئادرېسى(Url)نى كىرگۈزۈڭ',scrolling:'دومىلىما سۈرگۈچكە يول قوي',border:'كاندۇك گىرۋەكلىرىنى كۆرسەت'},font:{label:'خەت نۇسخا',voiceLabel:'خەت نۇسخا',panelTitle:'خەت نۇسخا'},fontSize:{label:'چوڭلۇقى',voiceLabel:'خەت چوڭلۇقى',panelTitle:'چوڭلۇقى'},colorButton:{textColorTitle:'تېكىست رەڭگى',bgColorTitle:'تەگلىك رەڭگى',panelTitle:'رەڭ',auto:'ئۆزلۈكىدىن',more:'باشقا رەڭ'},colors:{'000':'قارا',800000:'قىزغۇچ سېرىق','8B4513':'توق قوڭۇر','2F4F4F':'قارامتۇل يېشىل','008080':'كۆكۈش يېشىل','000080':'قارامتۇل كۆك','4B0082':'كۆكۈش كۈلرەڭ',696969:'قارامتۇل كۈلرەڭ',B22222:'خىش قىزىل',A52A2A:'قوڭۇر',DAA520:'ئالتۇن سېرىق','006400':'توق يېشىل','40E0D0':'كۆكۈچ يېشىل','0000CD':'ئوتتۇراھال كۆك',800080:'بىنەپشە',808080:'كۈلرەڭ',F00:'قىزىل',FF8C00:'توق قىزغۇچ سېرىق',FFD700:'ئالتۇن','008000':'يېشىل','0FF':'يېشىل كۆك','00F':'كۆك',EE82EE:'قىزغۇچ بىنەپشە',A9A9A9:'توق كۈلرەڭ',FFA07A:'كاۋا چېچىكى سېرىق',FFA500:'قىزغۇچ سېرىق',FFFF00:'سېرىق','00FF00':'Lime',AFEEEE:'سۇس ھاۋا رەڭ',ADD8E6:'ئوچۇق كۆك',DDA0DD:'قىزغۇچ بىنەپشە',D3D3D3:'سۇس كۆكۈچ كۈلرەڭ',FFF0F5:'سۇس قىزغۇچ بىنەپشە',FAEBD7:'Antique White',FFFFE0:'سۇس سېرىق',F0FFF0:'Honeydew',F0FFFF:'ئاسمان كۆكى',F0F8FF:'سۇس كۆك',E6E6FA:'سۇس بىنەپشە',FFF:'ئاق'},scayt:{title:'شۇئان ئىملا تەكشۈر',opera_title:'Opera توركۆرگۈنى قوللىمايدۇ',enable:'شۇئان ئىملا تەكشۈرۈشنى قوزغات',disable:'شۇئان ئىملا تەكشۈرۈشنى چەكلە',about:'شۇئان ئىملا تەكشۈرۈش ھەققىدە',toggle:'شۇئان ئىملا تەكشۈرۈشنى ۋاقىتلىق توختات/قوزغات',options:'تاللانما',langs:'تىل',moreSuggestions:'تېخىمۇ كۆپ ئىملا تەۋسىيەسى',ignore:'پەرۋا قىلما',ignoreAll:'ھەممىسىگە پەرۋا قىلما',addWord:'سۆز قوش',emptyDic:'لۇغەت ئاتى بوش قالمايدۇ',noSuggestions:'No suggestions',optionsTab:'تاللانما',allCaps:'چوڭ ھەرپتە يېزىلغان ھەممە سۆزگە پەرۋا قىلما',ignoreDomainNames:'دائىرە ئاتىغا پەرۋا قىلما',mixedCase:'چوڭ كىچىك ھەرپ بىلەن ئارىلاش يېزىلغان سۆزگە پەرۋا قىلما',mixedWithDigits:'سان بار سۆزگە پەرۋا قىلما',languagesTab:'تىل',dictionariesTab:'لۇغەت',dic_field_name:'لۇغەت ئاتى',dic_create:'قۇر',dic_restore:'ئەسلىگە كەلتۈر',dic_delete:'ئۆچۈر',dic_rename:'ئات ئۆزگەرت',dic_info:'باشلىنىشتا ئىشلەتكۈچى لۇغىتى Cookie غا ساقلىنىدۇ ئەمما Cookie نىڭ سىغىمى چەكلىك بولغاچقا، ئىشلەتكۈچى لۇغىتى كۆپىيىپ Cookie چەكلىمىسىدىن ئېشىپ كەتكەندە ساقلىغىلى بولمايدۇ، بۇ چاغدا لۇغىتىڭىزنى مۇلازىمېتىرىمىزغا ساقلىسىڭىز بولىدۇ. شەخسىي لۇغىتىڭىزنى مۇلازىمېتىرىمىزغا ساقلىماقچى بولسىڭىز لۇغىتىڭىزگە ئاتتىن بىرنى قويۇڭ، ئەگەر مۇلازىمتېرىمىزدا سىزنىڭ لۇغىتىڭىزدىن بىرسى بولسا لۇغەت ئاتىنى كىرگۈزۈپ ئەسلىگە قايتۇر توپچىسىنى بېسىڭ.',aboutTab:'ھەققىدە'},about:{title:'CKEditor ھەققىدە',dlgTitle:'CKEditor ھەققىدە',help:'$1 نى زىيارەت قىلىپ ياردەمگە ئېرىشىڭ',userGuide:'CKEditor ئىشلەتكۈچى قوللانمىسى',moreInfo:'تور تۇرايىمىزنى زىيارەت قىلىپ كېلىشىمگە ئائىت تېخىمۇ كۆپ ئۇچۇرغا ئېرىشىڭ',copy:'Copyright © $1. نەشر ھوقۇقىغا ئىگە'},maximize:'چوڭايت',minimize:'كىچىكلەت',fakeobjects:{anchor:'لەڭگەرلىك نۇقتا',flash:'Flash جانلاندۇرۇم',iframe:'IFrame',hiddenfield:'يوشۇرۇن دائىرە',unknown:'يوچۇن نەڭ'},resize:'چوڭلۇقىنى ئۆزگەرت',colordialog:{title:'رەڭ تاللاڭ',options:'رەڭ تاللانمىسى',highlight:'يورۇت',selected:'رەڭ تاللاڭ',clear:'تازىلا'},toolbarCollapse:'قورال بالداقنى قاتلا',toolbarExpand:'قورال بالداقنى ياي',toolbarGroups:{document:'پۈتۈك',clipboard:'چاپلاش تاختىسى/يېنىۋال',editing:'تەھرىر',forms:'جەدۋەل',basicstyles:'ئاساسىي ئۇسلۇب',paragraph:'ئابزاس',links:'ئۇلانما',insert:'قىستۇر',styles:'ئۇسلۇب',colors:'رەڭ',tools:'قورال'},bidi:{ltr:'تېكىست يۆنىلىشى سولدىن ئوڭغا',rtl:'تېكىست يۆنىلىشى ئوڭدىن سولغا'},docprops:{label:'بەت خاسلىقى',title:'بەت خاسلىقى',design:'لايىھە',meta:'مېتا سانلىق مەلۇمات',chooseColor:'تاللاڭ',other:'باشقا',docTitle:'بەت ماۋزۇسى',charset:'ھەرپ كودلىنىشى',charsetOther:'باشقا ھەرپ كودلىنىشى',charsetASCII:'ASCII',charsetCE:'ئوتتۇرا ياۋرۇپا',charsetCT:'مۇرەككەپ خەنزۇچە (Big5)',charsetCR:'سىلاۋيانچە',charsetGR:'گىرېكچە',charsetJP:'ياپونچە',charsetKR:'كۆرىيەچە',charsetTR:'تۈركچە',charsetUN:'يۇنىكود (UTF-8)',charsetWE:'غەربىي ياۋرۇپا',docType:'پۈتۈك تىپى',docTypeOther:'باشقا پۈتۈك تىپى',xhtmlDec:'XHTML ئېنىقلىمىسىنى ئۆز ئىچىگە ئالىدۇ',bgColor:'تەگلىك رەڭگى',bgImage:'تەگلىك سۈرەت',bgFixed:'تەگلىك سۈرەتنى دومىلاتما',txtColor:'تېكىست رەڭگى',margin:'بەت گىرۋەك',marginTop:'ئۈستى',marginLeft:'سول',marginRight:'ئوڭ',marginBottom:'ئاستى',metaKeywords:'بەت يۈزى ئىندېكىس ھالقىلىق سۆزى (ئىنگلىزچە پەش [,] بىلەن ئايرىلىدۇ)',metaDescription:'بەت يۈزى چۈشەندۈرۈشى',metaAuthor:'يازغۇچى',metaCopyright:'نەشر ھوقۇقى',previewHtml:'<p>بۇ بىر قىسىم <strong>كۆرسەتمىگە ئىشلىتىدىغان تېكىست </strong>سىز نۆۋەتتە <a href=\\\\"javascript:void(0)\\\\">CKEditor</a>.نى ئىشلىتىۋاتىسىز.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/en-gb.js�����������������������������������������0000664�0001750�0001750�00000041665�12262650742�022337� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang['en-gb']={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Source',newPage:'New Page',save:'Save',preview:'Preview',cut:'Cut',copy:'Copy',paste:'Paste',print:'Print',underline:'Underline',bold:'Bold',italic:'Italic',selectAll:'Select All',removeFormat:'Remove Format',strike:'Strike Through',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Insert Horizontal Line',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Unlink',undo:'Undo',redo:'Redo',common:{browseServer:'Browse Server',url:'URL',protocol:'Protocol',upload:'Upload',uploadSubmit:'Send it to the Server',image:'Image',flash:'Flash',form:'Form',checkbox:'Checkbox',radio:'Radio Button',textField:'Text Field',textarea:'Textarea',hiddenField:'Hidden Field',button:'Button',select:'Selection Field',imageButton:'Image Button',notSet:'<not set>',id:'Id',name:'Name',langDir:'Language Direction',langDirLtr:'Left to Right (LTR)',langDirRtl:'Right to Left (RTL)',langCode:'Language Code',longDescr:'Long Description URL',cssClass:'Stylesheet Classes',advisoryTitle:'Advisory Title',cssStyle:'Style',ok:'OK',cancel:'Cancel',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Advanced',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Width',height:'Height',align:'Align',alignLeft:'Left',alignRight:'Right',alignCenter:'Centre',alignTop:'Top',alignMiddle:'Middle',alignBottom:'Bottom',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Insert Special Character',title:'Select Special Character',options:'Special Character Options'},link:{toolbar:'Link',other:'<other>',menu:'Edit Link',title:'Link',info:'Link Info',target:'Target',upload:'Upload',advanced:'Advanced',type:'Link Type',toUrl:'URL',toAnchor:'Link to anchor in the text',toEmail:'E-mail',targetFrame:'<frame>',targetPopup:'<popup window>',targetFrameName:'Target Frame Name',targetPopupName:'Popup Window Name',popupFeatures:'Popup Window Features',popupResizable:'Resizable',popupStatusBar:'Status Bar',popupLocationBar:'Location Bar',popupToolbar:'Toolbar',popupMenuBar:'Menu Bar',popupFullScreen:'Full Screen (IE)',popupScrollBars:'Scroll Bars',popupDependent:'Dependent (Netscape)',popupLeft:'Left Position',popupTop:'Top Position',id:'Id',langDir:'Language Direction',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',acccessKey:'Access Key',name:'Name',langCode:'Language Code',tabIndex:'Tab Index',advisoryTitle:'Advisory Title',advisoryContentType:'Advisory Content Type',cssClasses:'Stylesheet Classes',charset:'Linked Resource Charset',styles:'Style',rel:'Relationship',selectAnchor:'Select an Anchor',anchorName:'By Anchor Name',anchorId:'By Element Id',emailAddress:'E-Mail Address',emailSubject:'Message Subject',emailBody:'Message Body',noAnchors:'(No anchors available in the document)',noUrl:'Please type the link URL',noEmail:'Please type the e-mail address'},anchor:{toolbar:'Anchor',menu:'Edit Anchor',title:'Anchor Properties',name:'Anchor Name',errorName:'Please type the anchor name',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Find',replace:'Replace',findWhat:'Find what:',replaceWith:'Replace with:',notFoundMsg:'The specified text was not found.',findOptions:'Find Options',matchCase:'Match case',matchWord:'Match whole word',matchCyclic:'Match cyclic',replaceAll:'Replace All',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Table',title:'Table Properties',menu:'Table Properties',deleteTable:'Delete Table',rows:'Rows',columns:'Columns',border:'Border size',widthPx:'pixels',widthPc:'percent',widthUnit:'width unit',cellSpace:'Cell spacing',cellPad:'Cell padding',caption:'Caption',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a number.',invalidCellPadding:'Cell padding must be a number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Delete Cells',merge:'Merge Cells',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Delete Rows'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Delete Columns'}},button:{title:'Button Properties',text:'Text (Value)',type:'Type',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Checkbox Properties',radioTitle:'Radio Button Properties',value:'Value',selected:'Selected'},form:{title:'Form Properties',menu:'Form Properties',action:'Action',method:'Method',encoding:'Encoding'},select:{title:'Selection Field Properties',selectInfo:'Select Info',opAvail:'Available Options',value:'Value',size:'Size',lines:'lines',chkMulti:'Allow multiple selections',opText:'Text',opValue:'Value',btnAdd:'Add',btnModify:'Modify',btnUp:'Up',btnDown:'Down',btnSetValue:'Set as selected value',btnDelete:'Delete'},textarea:{title:'Textarea Properties',cols:'Columns',rows:'Rows'},textfield:{title:'Text Field Properties',name:'Name',value:'Value',charWidth:'Character Width',maxChars:'Maximum Characters',type:'Type',typeText:'Text',typePass:'Password'},hidden:{title:'Hidden Field Properties',name:'Name',value:'Value'},image:{title:'Image Properties',titleButton:'Image Button Properties',menu:'Image Properties',infoTab:'Image Info',btnUpload:'Send it to the Server',upload:'Upload',alt:'Alternative Text',lockRatio:'Lock Ratio',resetSize:'Reset Size',border:'Border',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Please type the image URL',linkTab:'Link',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flash Properties',propertiesTab:'Properties',title:'Flash Properties',chkPlay:'Auto Play',chkLoop:'Loop',chkMenu:'Enable Flash Menu',chkFull:'Allow Fullscreen',scale:'Scale',scaleAll:'Show all',scaleNoBorder:'No Border',scaleFit:'Exact Fit',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs Bottom',alignAbsMiddle:'Abs Middle',alignBaseline:'Baseline',alignTextTop:'Text Top',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Background colour',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'URL must not be empty.',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Check Spelling',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Not in dictionary',changeTo:'Change to',btnIgnore:'Ignore',btnIgnoreAll:'Ignore All',btnReplace:'Replace',btnReplaceAll:'Replace All',btnUndo:'Undo',noSuggestions:'- No suggestions -',progress:'Spell check in progress...',noMispell:'Spell check complete: No misspellings found',noChanges:'Spell check complete: No words changed',oneChange:'Spell check complete: One word changed',manyChanges:'Spell check complete: %1 words changed',ieSpellDownload:'Spell checker not installed. Do you want to download it now?'},smiley:{toolbar:'Smiley',title:'Insert a Smiley',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Insert/Remove Numbered List',bulletedlist:'Insert/Remove Bulleted List',indent:'Increase Indent',outdent:'Decrease Indent',justify:{left:'Align Left',center:'Centre',right:'Align Right',block:'Justify'},blockquote:'Block Quote',clipboard:{title:'Paste',cutError:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).",copyError:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).",pasteMsg:'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Paste from Word',title:'Paste from Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Paste as plain text',title:'Paste as Plain Text'},templates:{button:'Templates',title:'Content Templates',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Please select the template to open in the editor',emptyListMsg:'(No templates defined)'},showBlocks:'Show Blocks',stylesCombo:{label:'Styles',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Paragraph Format',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font Name'},fontSize:{label:'Size',voiceLabel:'Font Size',panelTitle:'Font Size'},colorButton:{textColorTitle:'Text Colour',bgColorTitle:'Background Colour',panelTitle:'Colours',auto:'Automatic',more:'More Colours...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Grey','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Grey',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Grey',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Grey',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'No suggestions',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximise',minimize:'Minimise',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select colour',options:'Colour Options',highlight:'Highlight',selected:'Selected Colour',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Document Properties',title:'Document Properties',design:'Design',meta:'Meta Tags',chooseColor:'Choose',other:'Other...',docTitle:'Page Title',charset:'Character Set Encoding',charsetOther:'Other Character Set Encoding',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Document Type Heading',docTypeOther:'Other Document Type Heading',xhtmlDec:'Include XHTML Declarations',bgColor:'Background Color',bgImage:'Background Image URL',bgFixed:'Non-scrolling (Fixed) Background',txtColor:'Text Color',margin:'Page Margins',marginTop:'Top',marginLeft:'Left',marginRight:'Right',marginBottom:'Bottom',metaKeywords:'Document Indexing Keywords (comma separated)',metaDescription:'Document Description',metaAuthor:'Author',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/tr.js��������������������������������������������0000664�0001750�0001750�00000044710�12262650742�021766� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.tr={dir:'ltr',editorTitle:'Zengin metin editörü, %1',editorHelp:'Yardım için ALT 0 tuşuna basın',toolbars:'Araç çubukları Editörü',editor:'Zengin Metin Editörü',source:'Kaynak',newPage:'Yeni Sayfa',save:'Kaydet',preview:'Ön İzleme',cut:'Kes',copy:'Kopyala',paste:'Yapıştır',print:'Yazdır',underline:'Altı Çizgili',bold:'Kalın',italic:'İtalik',selectAll:'Tümünü Seç',removeFormat:'Biçimi Kaldır',strike:'Üstü Çizgili',subscript:'Alt Simge',superscript:'Üst Simge',horizontalrule:'Yatay Satır Ekle',pagebreak:'Sayfa Sonu Ekle',pagebreakAlt:'Sayfa Sonu',unlink:'Köprü Kaldır',undo:'Geri Al',redo:'Tekrarla',common:{browseServer:'Sunucuyu Gez',url:'URL',protocol:'Protokol',upload:'Karşıya Yükle',uploadSubmit:'Sunucuya Yolla',image:'Resim',flash:'Flash',form:'Form',checkbox:'Onay Kutusu',radio:'Seçenek Düğmesi',textField:'Metin Girişi',textarea:'Çok Satırlı Metin',hiddenField:'Gizli Veri',button:'Düğme',select:'Seçim Menüsü',imageButton:'Resimli Düğme',notSet:'<tanımlanmamış>',id:'Kimlik',name:'Ad',langDir:'Dil Yönü',langDirLtr:'Soldan Sağa (LTR)',langDirRtl:'Sağdan Sola (RTL)',langCode:'Dil Kodlaması',longDescr:'Uzun Tanımlı URL',cssClass:'Biçem Sayfası Sınıfları',advisoryTitle:'Danışma Başlığı',cssStyle:'Biçem',ok:'Tamam',cancel:'İptal',close:'Kapat',preview:'Ön gösterim',generalTab:'Genel',advancedTab:'Gelişmiş',validateNumberFailed:'Bu değer sayı değildir.',confirmNewPage:'İceriğiniz kayıt edilmediğinden dolayı kaybolacaktır. Yeni bir sayfa yüklemek istediğinize eminsiniz?',confirmCancel:'Bazı seçenekler değişmiştir. Dialog penceresini kapatmak istediğinize eminmisiniz?',options:'Seçenekler',target:'Hedef',targetNew:'Yeni Pencere (_blank)',targetTop:'Enüst Pencere (_top)',targetSelf:'Aynı Pencere (_self)',targetParent:'Ana Pencere (_parent)',langDirLTR:'Soldan Sağa (LTR)',langDirRTL:'Sağdan Sola (RTL)',styles:'Stil',cssClasses:'Stil sayfası Sınıfı',width:'Genişlik',height:'Yükseklik',align:'Hizalama',alignLeft:'Sol',alignRight:'Sağ',alignCenter:'Merkez',alignTop:'Tepe',alignMiddle:'Orta',alignBottom:'Alt',invalidValue:'Invalid value.',invalidHeight:'Yükseklik sayı olmalıdır.',invalidWidth:'Genişlik bir sayı olmalıdır.',invalidCssLength:'Belirttiğiniz sayı "%1" alanı için pozitif bir sayı CSS birim değeri olmalıdır (px, %, in, cm, mm, em, ex, pt, veya pc).',invalidHtmlLength:'Belirttiğiniz sayı "%1" alanı için pozitif bir sayı HTML birim değeri olmalıdır (px veya %).',invalidInlineStyle:'Noktalı virgülle ayrılmış: "değer adı," inline stil için belirtilen değer biçiminde bir veya daha fazla dizilerden oluşmalıdır.',cssLengthTooltip:'Pikseller için bir numara girin veya geçerli bir CSS numarası (px, %, in, cm, mm, em, ex, pt, veya pc).',unavailable:'%1<span class="cke_accessibility">, hazır değildir</span>'},contextmenu:{options:'İçerik Menüsü Seçenekleri'},specialChar:{toolbar:'Özel Karakter Ekle',title:'Özel Karakter Seç',options:'Özel Karakter Seçenekleri'},link:{toolbar:'Link Ekle/Düzenle',other:'<diğer>',menu:'Link Düzenle',title:'Link',info:'Link Bilgisi',target:'Hedef',upload:'Karşıya Yükle',advanced:'Gelişmiş',type:'Link Türü',toUrl:'URL',toAnchor:'Bu sayfada çapa',toEmail:'E-Posta',targetFrame:'<çerçeve>',targetPopup:'<yeni açılan pencere>',targetFrameName:'Hedef Çerçeve Adı',targetPopupName:'Yeni Açılan Pencere Adı',popupFeatures:'Yeni Açılan Pencere Özellikleri',popupResizable:'Resizable',popupStatusBar:'Durum Çubuğu',popupLocationBar:'Yer Çubuğu',popupToolbar:'Araç Çubuğu',popupMenuBar:'Menü Çubuğu',popupFullScreen:'Tam Ekran (IE)',popupScrollBars:'Kaydırma Çubukları',popupDependent:'Bağımlı (Netscape)',popupLeft:'Sola Göre Konum',popupTop:'Yukarıya Göre Konum',id:'Id',langDir:'Dil Yönü',langDirLTR:'Soldan Sağa (LTR)',langDirRTL:'Sağdan Sola (RTL)',acccessKey:'Erişim Tuşu',name:'Ad',langCode:'Dil Yönü',tabIndex:'Sekme İndeksi',advisoryTitle:'Danışma Başlığı',advisoryContentType:'Danışma İçerik Türü',cssClasses:'Biçem Sayfası Sınıfları',charset:'Bağlı Kaynak Karakter Gurubu',styles:'Biçem',rel:'İlişki',selectAnchor:'Bağlantı Seç',anchorName:'Bağlantı Adı ile',anchorId:'Eleman Kimlik Numarası ile',emailAddress:'E-Posta Adresi',emailSubject:'İleti Konusu',emailBody:'İleti Gövdesi',noAnchors:'(Bu belgede hiç çapa yok)',noUrl:"Lütfen Link URL'sini yazın",noEmail:'Lütfen E-posta adresini yazın'},anchor:{toolbar:'Bağlantı Ekle/Düzenle',menu:'Bağlantı Özellikleri',title:'Bağlantı Özellikleri',name:'Bağlantı Adı',errorName:'Lütfen bağlantı için ad giriniz',remove:'Bağlantıyı Kaldır'},list:{numberedTitle:'Sayılandırılmış Liste Özellikleri',bulletedTitle:'Simgeli Liste Özellikleri',type:'Tipi',start:'Başla',validateStartNumber:'Liste başlangıcı tam sayı olmalıdır.',circle:'Daire',disc:'Disk',square:'Kare',none:'Yok',notset:'<ayarlanmamış>',armenian:'Ermenice sayılandırma',georgian:'Gürcüce numaralandırma (an, ban, gan, vs.)',lowerRoman:'Küçük Roman (i, ii, iii, iv, v, vs.)',upperRoman:'Büyük Roman (I, II, III, IV, V, vs.)',lowerAlpha:'Küçük Alpha (a, b, c, d, e, vs.)',upperAlpha:'Büyük Alpha (A, B, C, D, E, vs.)',lowerGreek:'Küçük Greek (alpha, beta, gamma, vs.)',decimal:'Ondalık (1, 2, 3, vs.)',decimalLeadingZero:'Başı sıfırlı ondalık (01, 02, 03, vs.)'},findAndReplace:{title:'Bul ve Değiştir',find:'Bul',replace:'Değiştir',findWhat:'Aranan:',replaceWith:'Bununla değiştir:',notFoundMsg:'Belirtilen yazı bulunamadı.',findOptions:'Seçenekleri Bul',matchCase:'Büyük/küçük harf duyarlı',matchWord:'Kelimenin tamamı uysun',matchCyclic:'Eşleşen döngü',replaceAll:'Tümünü Değiştir',replaceSuccessMsg:'%1 bulunanlardan değiştirildi.'},table:{toolbar:'Tablo',title:'Tablo Özellikleri',menu:'Tablo Özellikleri',deleteTable:'Tabloyu Sil',rows:'Satırlar',columns:'Sütunlar',border:'Kenar Kalınlığı',widthPx:'piksel',widthPc:'yüzde',widthUnit:'genişlik birimi',cellSpace:'Izgara kalınlığı',cellPad:'Izgara yazı arası',caption:'Başlık',summary:'Özet',headers:'Başlıklar',headersNone:'Yok',headersColumn:'İlk Sütun',headersRow:'İlk Satır',headersBoth:'Her İkisi',invalidRows:'Satır sayısı 0 sayısından büyük olmalıdır.',invalidCols:'Sütün sayısı 0 sayısından büyük olmalıdır.',invalidBorder:'Çerceve büyüklüklüğü sayı olmalıdır.',invalidWidth:'Tablo genişliği sayı olmalıdır.',invalidHeight:'Tablo yüksekliği sayı olmalıdır.',invalidCellSpacing:'Hücre boşluğu (spacing) sayı olmalıdır.',invalidCellPadding:'Hücre aralığı (padding) sayı olmalıdır.',cell:{menu:'Hücre',insertBefore:'Hücre Ekle - Önce',insertAfter:'Hücre Ekle - Sonra',deleteCell:'Hücre Sil',merge:'Hücreleri Birleştir',mergeRight:'Birleştir - Sağdaki İle ',mergeDown:'Birleştir - Aşağıdaki İle ',splitHorizontal:'Hücreyi Yatay Böl',splitVertical:'Hücreyi Dikey Böl',title:'Hücre Özellikleri',cellType:'Hücre Tipi',rowSpan:'Satırlar Mesafesi (Span)',colSpan:'Sütünlar Mesafesi (Span)',wordWrap:'Kelime Kaydırma',hAlign:'Düşey Hizalama',vAlign:'Yataş Hizalama',alignBaseline:'Tabana',bgColor:'Arkaplan Rengi',borderColor:'Çerçeve Rengi',data:'Veri',header:'Başlık',yes:'Evet',no:'Hayır',invalidWidth:'Hücre genişliği sayı olmalıdır.',invalidHeight:'Hücre yüksekliği sayı olmalıdır.',invalidRowSpan:'Satırların mesafesi tam sayı olmalıdır.',invalidColSpan:'Sütünların mesafesi tam sayı olmalıdır.',chooseColor:'Seçiniz'},row:{menu:'Satır',insertBefore:'Satır Ekle - Önce',insertAfter:'Satır Ekle - Sonra',deleteRow:'Satır Sil'},column:{menu:'Sütun',insertBefore:'Kolon Ekle - Önce',insertAfter:'Kolon Ekle - Sonra',deleteColumn:'Sütun Sil'}},button:{title:'Düğme Özellikleri',text:'Metin (Değer)',type:'Tip',typeBtn:'Düğme',typeSbm:'Gönder',typeRst:'Sıfırla'},checkboxAndRadio:{checkboxTitle:'Onay Kutusu Özellikleri',radioTitle:'Seçenek Düğmesi Özellikleri',value:'Değer',selected:'Seçili'},form:{title:'Form Özellikleri',menu:'Form Özellikleri',action:'İşlem',method:'Yöntem',encoding:'Kodlama'},select:{title:'Seçim Menüsü Özellikleri',selectInfo:'Bilgi',opAvail:'Mevcut Seçenekler',value:'Değer',size:'Boyut',lines:'satır',chkMulti:'Çoklu seçime izin ver',opText:'Metin',opValue:'Değer',btnAdd:'Ekle',btnModify:'Düzenle',btnUp:'Yukarı',btnDown:'Aşağı',btnSetValue:'Seçili değer olarak ata',btnDelete:'Sil'},textarea:{title:'Çok Satırlı Metin Özellikleri',cols:'Sütunlar',rows:'Satırlar'},textfield:{title:'Metin Girişi Özellikleri',name:'Ad',value:'Değer',charWidth:'Karakter Genişliği',maxChars:'En Fazla Karakter',type:'Tür',typeText:'Metin',typePass:'Şifre'},hidden:{title:'Gizli Veri Özellikleri',name:'Ad',value:'Değer'},image:{title:'Resim Özellikleri',titleButton:'Resimli Düğme Özellikleri',menu:'Resim Özellikleri',infoTab:'Resim Bilgisi',btnUpload:'Sunucuya Yolla',upload:'Karşıya Yükle',alt:'Alternatif Yazı',lockRatio:'Oranı Kilitle',resetSize:'Boyutu Başa Döndür',border:'Kenar',hSpace:'Yatay Boşluk',vSpace:'Dikey Boşluk',alertUrl:"Lütfen resmin URL'sini yazınız",linkTab:'Köprü',button2Img:'Seçili resim butonunu basit resime çevirmek istermisiniz?',img2Button:'Seçili olan resimi, resimli butona çevirmek istermisiniz?',urlMissing:'Resmin URL kaynağı eksiktir.',validateBorder:'Çerçeve tam sayı olmalıdır.',validateHSpace:'HSpace tam sayı olmalıdır.',validateVSpace:'VSpace tam sayı olmalıdır.'},flash:{properties:'Flash Özellikleri',propertiesTab:'Özellikler',title:'Flash Özellikleri',chkPlay:'Otomatik Oynat',chkLoop:'Döngü',chkMenu:'Flash Menüsünü Kullan',chkFull:'Tam ekrana İzinver',scale:'Boyutlandır',scaleAll:'Hepsini Göster',scaleNoBorder:'Kenar Yok',scaleFit:'Tam Sığdır',access:'Kod İzni',accessAlways:'Herzaman',accessSameDomain:'Aynı domain',accessNever:'Asla',alignAbsBottom:'Tam Altı',alignAbsMiddle:'Tam Ortası',alignBaseline:'Taban Çizgisi',alignTextTop:'Yazı Tepeye',quality:'Kalite',qualityBest:'En iyi',qualityHigh:'Yüksek',qualityAutoHigh:'Otomatik Yükseklik',qualityMedium:'Orta',qualityAutoLow:'Otomatik Düşüklük',qualityLow:'Düşük',windowModeWindow:'Pencere',windowModeOpaque:'Opak',windowModeTransparent:'Şeffaf',windowMode:'Pencere modu',flashvars:'Flash Değerleri',bgcolor:'Arka Renk',hSpace:'Yatay Boşluk',vSpace:'Dikey Boşluk',validateSrc:"Lütfen köprü URL'sini yazın",validateHSpace:'HSpace sayı olmalıdır.',validateVSpace:'VSpace sayı olmalıdır.'},spellCheck:{toolbar:'Yazım Denetimi',title:'Yazımı Denetle',notAvailable:'Üzügünüz, bu servis şuanda hizmet dışıdır.',errorLoading:'Uygulamada yüklerken hata oluştu: %s.',notInDic:'Sözlükte Yok',changeTo:'Şuna değiştir:',btnIgnore:'Yoksay',btnIgnoreAll:'Tümünü Yoksay',btnReplace:'Değiştir',btnReplaceAll:'Tümünü Değiştir',btnUndo:'Geri Al',noSuggestions:'- Öneri Yok -',progress:'Yazım denetimi işlemde...',noMispell:'Yazım denetimi tamamlandı: Yanlış yazıma rastlanmadı',noChanges:'Yazım denetimi tamamlandı: Hiçbir kelime değiştirilmedi',oneChange:'Yazım denetimi tamamlandı: Bir kelime değiştirildi',manyChanges:'Yazım denetimi tamamlandı: %1 kelime değiştirildi',ieSpellDownload:'Yazım denetimi yüklenmemiş. Şimdi yüklemek ister misiniz?'},smiley:{toolbar:'İfade',title:'İfade Ekle',options:'İfade Seçenekleri'},elementsPath:{eleLabel:'Elementlerin yolu',eleTitle:'%1 elementi'},numberedlist:'Numaralı Liste',bulletedlist:'Simgeli Liste',indent:'Sekme Arttır',outdent:'Sekme Azalt',justify:{left:'Sola Dayalı',center:'Ortalanmış',right:'Sağa Dayalı',block:'İki Kenara Yaslanmış'},blockquote:'Blok Oluştur',clipboard:{title:'Yapıştır',cutError:'Gezgin yazılımınızın güvenlik ayarları düzenleyicinin otomatik kesme işlemine izin vermiyor. İşlem için (Ctrl/Cmd+X) tuşlarını kullanın.',copyError:'Gezgin yazılımınızın güvenlik ayarları düzenleyicinin otomatik kopyalama işlemine izin vermiyor. İşlem için (Ctrl/Cmd+C) tuşlarını kullanın.',pasteMsg:'Lütfen aşağıdaki kutunun içine yapıştırın. (<STRONG>Ctrl/Cmd+V</STRONG>) ve <STRONG>Tamam</STRONG> butonunu tıklayın.',securityMsg:'Gezgin yazılımınızın güvenlik ayarları düzenleyicinin direkt olarak panoya erişimine izin vermiyor. Bu pencere içine tekrar yapıştırmalısınız..',pasteArea:'Yapıştırma Alanı'},pastefromword:{confirmCleanup:"Yapıştırmaya çalıştığınız metin Word'den kopyalanmıştır. Yapıştırmadan önce silmek istermisiniz?",toolbar:"Word'den Yapıştır",title:"Word'den Yapıştır",error:'Yapıştırmadaki veri bilgisi hata düzelene kadar silinmeyecektir'},pasteText:{button:'Düz Metin Olarak Yapıştır',title:'Düz Metin Olarak Yapıştır'},templates:{button:'Şablonlar',title:'İçerik Şablonları',options:'Şablon Seçenekleri',insertOption:'Mevcut içerik ile değiştir',selectPromptMsg:'Düzenleyicide açmak için lütfen bir şablon seçin.<br>(hali hazırdaki içerik kaybolacaktır.):',emptyListMsg:'(Belirli bir şablon seçilmedi)'},showBlocks:'Blokları Göster',stylesCombo:{label:'Biçem',panelTitle:'Stilleri Düzenliyor',panelTitle1:'Blok Stilleri',panelTitle2:'Inline Stilleri',panelTitle3:'Nesne Stilleri'},format:{label:'Biçim',panelTitle:'Biçim',tag_p:'Normal',tag_pre:'Biçimli',tag_address:'Adres',tag_h1:'Başlık 1',tag_h2:'Başlık 2',tag_h3:'Başlık 3',tag_h4:'Başlık 4',tag_h5:'Başlık 5',tag_h6:'Başlık 6',tag_div:'Paragraf (DIV)'},div:{title:'Div İçeriği Oluştur',toolbar:'Div İçeriği Oluştur',cssClassInputLabel:'Stilltipi Sınıfı',styleSelectLabel:'Stil',IdInputLabel:'Id',languageCodeInputLabel:' Dil Kodu',inlineStyleInputLabel:'Inline Stili',advisoryTitleInputLabel:'Tavsiye Başlığı',langDirLabel:'Dil Yönü',langDirLTRLabel:'Soldan sağa (LTR)',langDirRTLLabel:'Sağdan sola (RTL)',edit:'Div Düzenle',remove:'Div Kaldır'},iframe:{title:'IFrame Özellikleri',toolbar:'IFrame',noUrl:'Lütfen IFrame köprü (URL) bağlantısını yazın',scrolling:'Kaydırma çubuklarını aktif et',border:'Çerceve sınırlarını göster'},font:{label:'Yazı Türü',voiceLabel:'Font',panelTitle:'Yazı Türü'},fontSize:{label:'Boyut',voiceLabel:'Font Size',panelTitle:'Boyut'},colorButton:{textColorTitle:'Yazı Rengi',bgColorTitle:'Arka Renk',panelTitle:'Renkler',auto:'Otomatik',more:'Diğer renkler...'},colors:{'000':'Siyah',800000:'Kestane','8B4513':'Koyu Kahverengi','2F4F4F':'Koyu Kurşuni Gri','008080':'Teal','000080':'Mavi','4B0082':'Çivit Mavisi',696969:'Silik Gri',B22222:'Ateş Tuğlası',A52A2A:'Kahverengi',DAA520:'Altun Sırık','006400':'Koyu Yeşil','40E0D0':'Turkuaz','0000CD':'Orta Mavi',800080:'Pembe',808080:'Gri',F00:'Kırmızı',FF8C00:'Koyu Portakal',FFD700:'Altın','008000':'Yeşil','0FF':'Ciyan','00F':'Mavi',EE82EE:'Menekşe',A9A9A9:'Koyu Gri',FFA07A:'Açık Sarımsı',FFA500:'Portakal',FFFF00:'Sarı','00FF00':'Açık Yeşil',AFEEEE:'Sönük Turkuaz',ADD8E6:'Açık Mavi',DDA0DD:'Mor',D3D3D3:'Açık Gri',FFF0F5:'Eflatun Pembe',FAEBD7:'Antik Beyaz',FFFFE0:'Açık Sarı',F0FFF0:'Balsarısı',F0FFFF:'Gök Mavisi',F0F8FF:'Reha Mavi',E6E6FA:'Eflatun',FFF:'Beyaz'},scayt:{title:'Girmiş olduğunuz kelime denetimi',opera_title:'Opera tarafından desteklenmemektedir',enable:"SCAYT'ı etkinleştir",disable:"SCAYT'ı pasifleştir",about:"SCAYT'ı hakkında",toggle:"SCAYT'ı değiştir",options:'Seçenekler',langs:'Diller',moreSuggestions:'Daha fazla öneri',ignore:'Yoksay',ignoreAll:'Tümünü Yoksay',addWord:'Kelime Ekle',emptyDic:'Sözlük adı boş olamaz.',noSuggestions:'Öneri Yok',optionsTab:'Seçenekler',allCaps:'Tüm büyük küçük kelimeleri yoksay',ignoreDomainNames:'Domain adlarını yoksay',mixedCase:'Karışık büyüklük ile Sözcükler yoksay',mixedWithDigits:'Sayılarla Kelimeler yoksay',languagesTab:'Diller',dictionariesTab:'Sözlükler',dic_field_name:'Sözlük adı',dic_create:'Oluştur',dic_restore:'Geri al',dic_delete:'Sil',dic_rename:'Yeniden adlandır',dic_info:'Başlangıçta Kullanıcı Sözlüğü bir çerezde saklanır. Ancak, Çerezler boyutu sınırlıdır. Kullanıcı Sözlüğü, çerezin içinde saklanamayacağı bir noktada, bizim sunucularımızın içindeki sözlükte saklanabilir. Bizim sunucu üzerinde kişisel Sözlük saklamanız için, Sözlüğe bir ad belirtmelisiniz. Eğer zaten bir saklı Sözlük varsa, lütfen adını yazın ve Geri Yükle düğmesini tıklayın.',aboutTab:'Hakkında'},about:{title:'CKEditor Hakkında',dlgTitle:'CKEditor Hakkında',help:'Yardım için $1 kontrol edin.',userGuide:'CKEditor Kullanıcı Kılavuzu',moreInfo:'Lisanslama hakkında daha fazla bilgi almak için lütfen sitemizi ziyaret edin:',copy:'Copyright © $1. Tüm hakları saklıdır.'},maximize:'Büyült',minimize:'Küçült',fakeobjects:{anchor:'Bağlantı',flash:'Flash Animasyonu',iframe:'IFrame',hiddenfield:'Gizli Alan',unknown:'Bilinmeyen Nesne'},resize:'Boyutlandırmak için sürükle',colordialog:{title:'Renk seç',options:'Renk Seçenekleri',highlight:'İşaretle',selected:'Seçilmiş',clear:'Temizle'},toolbarCollapse:'Araç çubuklarını topla',toolbarExpand:'Araç çubuklarını aç',toolbarGroups:{document:'Belge',clipboard:'Pano/Geri al',editing:'Düzenleme',forms:'Formlar',basicstyles:'Temel Stiller',paragraph:'Paragraf',links:'Bağlantılar',insert:'Ekle',styles:'Stiller',colors:'Renkler',tools:'Araçlar'},bidi:{ltr:'Metin yönü soldan sağa',rtl:'Metin yönü sağdan sola'},docprops:{label:'Belge Özellikleri',title:'Belge Özellikleri',design:'Dizayn',meta:'Tanım Bilgisi (Meta)',chooseColor:'Seçiniz',other:'<diğer>',docTitle:'Sayfa Başlığı',charset:'Karakter Kümesi Kodlaması',charsetOther:'Diğer Karakter Kümesi Kodlaması',charsetASCII:'ASCII',charsetCE:'Orta Avrupa',charsetCT:'Geleneksel Çince (Big5)',charsetCR:'Kiril',charsetGR:'Yunanca',charsetJP:'Japonca',charsetKR:'Korece',charsetTR:'Türkçe',charsetUN:'Evrensel Kod (UTF-8)',charsetWE:'Batı Avrupa',docType:'Belge Türü Başlığı',docTypeOther:'Diğer Belge Türü Başlığı',xhtmlDec:'XHTML Bildirimlerini Dahil Et',bgColor:'Arka Plan Rengi',bgImage:'Arka Plan Resim URLsi',bgFixed:'Sabit Arka Plan',txtColor:'Yazı Rengi',margin:'Kenar Boşlukları',marginTop:'Tepe',marginLeft:'Sol',marginRight:'Sağ',marginBottom:'Alt',metaKeywords:'Belge Dizinleme Anahtar Kelimeleri (virgülle ayrılmış)',metaDescription:'Belge Tanımı',metaAuthor:'Yazar',metaCopyright:'Telif',previewHtml:'<p>Bu bir <strong>örnek metindir</strong>. <a href="javascript:void(0)">CKEditor</a> kullanıyorsunuz.</p>'}}; ��������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/sr.js��������������������������������������������0000664�0001750�0001750�00000051543�12262650742�021767� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.sr={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Kôд',newPage:'Нова страница',save:'Сачувај',preview:'Изглед странице',cut:'Исеци',copy:'Копирај',paste:'Залепи',print:'Штампа',underline:'Подвучено',bold:'Подебљано',italic:'Курзив',selectAll:'Означи све',removeFormat:'Уклони форматирање',strike:'Прецртано',subscript:'Индекс',superscript:'Степен',horizontalrule:'Унеси хоризонталну линију',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Уклони линк',undo:'Поништи акцију',redo:'Понови акцију',common:{browseServer:'Претражи сервер',url:'УРЛ',protocol:'Протокол',upload:'Пошаљи',uploadSubmit:'Пошаљи на сервер',image:'Слика',flash:'Флеш елемент',form:'Форма',checkbox:'Поље за потврду',radio:'Радио-дугме',textField:'Текстуално поље',textarea:'Зона текста',hiddenField:'Скривено поље',button:'Дугме',select:'Изборно поље',imageButton:'Дугме са сликом',notSet:'<није постављено>',id:'Ид',name:'Назив',langDir:'Смер језика',langDirLtr:'С лева на десно (LTR)',langDirRtl:'С десна на лево (RTL)',langCode:'Kôд језика',longDescr:'Пун опис УРЛ',cssClass:'Stylesheet класе',advisoryTitle:'Advisory наслов',cssStyle:'Стил',ok:'OK',cancel:'Oткажи',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Напредни тагови',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Ширина',height:'Висина',align:'Равнање',alignLeft:'Лево',alignRight:'Десно',alignCenter:'Средина',alignTop:'Врх',alignMiddle:'Средина',alignBottom:'Доле',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Унеси специјални карактер',title:'Одаберите специјални карактер',options:'Special Character Options'},link:{toolbar:'Унеси/измени линк',other:'<other>',menu:'Промени линк',title:'Линк',info:'Линк инфо',target:'Meтa',upload:'Пошаљи',advanced:'Напредни тагови',type:'Врста линка',toUrl:'URL',toAnchor:'Сидро на овој страници',toEmail:'Eлектронска пошта',targetFrame:'<оквир>',targetPopup:'<искачући прозор>',targetFrameName:'Назив одредишног фрејма',targetPopupName:'Назив искачућег прозора',popupFeatures:'Могућности искачућег прозора',popupResizable:'Resizable',popupStatusBar:'Статусна линија',popupLocationBar:'Локација',popupToolbar:'Toolbar',popupMenuBar:'Контекстни мени',popupFullScreen:'Приказ преко целог екрана (ИE)',popupScrollBars:'Скрол бар',popupDependent:'Зависно (Netscape)',popupLeft:'Од леве ивице екрана (пиксела)',popupTop:'Од врха екрана (пиксела)',id:'Id',langDir:'Смер језика',langDirLTR:'С лева на десно (LTR)',langDirRTL:'С десна на лево (RTL)',acccessKey:'Приступни тастер',name:'Назив',langCode:'Смер језика',tabIndex:'Таб индекс',advisoryTitle:'Advisory наслов',advisoryContentType:'Advisory врста садржаја',cssClasses:'Stylesheet класе',charset:'Linked Resource Charset',styles:'Стил',rel:'Relationship',selectAnchor:'Одабери сидро',anchorName:'По називу сидра',anchorId:'Пo Ид-jу елемента',emailAddress:'Адреса електронске поште',emailSubject:'Наслов',emailBody:'Садржај поруке',noAnchors:'(Нема доступних сидра)',noUrl:'Унесите УРЛ линка',noEmail:'Откуцајте адресу електронске поште'},anchor:{toolbar:'Унеси/измени сидро',menu:'Особине сидра',title:'Особине сидра',name:'Име сидра',errorName:'Молимо Вас да унесете име сидра',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Претрага',replace:'Замена',findWhat:'Пронађи:',replaceWith:'Замени са:',notFoundMsg:'Тражени текст није пронађен.',findOptions:'Find Options',matchCase:'Разликуј велика и мала слова',matchWord:'Упореди целе речи',matchCyclic:'Match cyclic',replaceAll:'Замени све',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Табела',title:'Особине табеле',menu:'Особине табеле',deleteTable:'Delete Table',rows:'Редова',columns:'Kолона',border:'Величина оквира',widthPx:'пиксела',widthPc:'процената',widthUnit:'width unit',cellSpace:'Ћелијски простор',cellPad:'Размак ћелија',caption:'Наслов табеле',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Обриши ћелије',merge:'Спој ћелије',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Обриши редове'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Обриши колоне'}},button:{title:'Особине дугмета',text:'Текст (вредност)',type:'Tип',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Особине поља за потврду',radioTitle:'Особине радио-дугмета',value:'Вредност',selected:'Означено'},form:{title:'Особине форме',menu:'Особине форме',action:'Aкција',method:'Mетода',encoding:'Encoding'},select:{title:'Особине изборног поља',selectInfo:'Инфо',opAvail:'Доступне опције',value:'Вредност',size:'Величина',lines:'линија',chkMulti:'Дозволи вишеструку селекцију',opText:'Текст',opValue:'Вредност',btnAdd:'Додај',btnModify:'Измени',btnUp:'Горе',btnDown:'Доле',btnSetValue:'Подеси као означену вредност',btnDelete:'Обриши'},textarea:{title:'Особине зоне текста',cols:'Број колона',rows:'Број редова'},textfield:{title:'Особине текстуалног поља',name:'Назив',value:'Вредност',charWidth:'Ширина (карактера)',maxChars:'Максимално карактера',type:'Тип',typeText:'Текст',typePass:'Лозинка'},hidden:{title:'Особине скривеног поља',name:'Назив',value:'Вредност'},image:{title:'Особине слика',titleButton:'Особине дугмета са сликом',menu:'Особине слика',infoTab:'Инфо слике',btnUpload:'Пошаљи на сервер',upload:'Пошаљи',alt:'Алтернативни текст',lockRatio:'Закључај однос',resetSize:'Ресетуј величину',border:'Оквир',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Унесите УРЛ слике',linkTab:'Линк',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Особине Флеша',propertiesTab:'Properties',title:'Особине флеша',chkPlay:'Аутоматски старт',chkLoop:'Понављај',chkMenu:'Укључи флеш мени',chkFull:'Allow Fullscreen',scale:'Скалирај',scaleAll:'Прикажи све',scaleNoBorder:'Без ивице',scaleFit:'Попуни површину',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs доле',alignAbsMiddle:'Abs средина',alignBaseline:'Базно',alignTextTop:'Врх текста',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Боја позадине',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'Унесите УРЛ линка',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Провери спеловање',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Није у речнику',changeTo:'Измени',btnIgnore:'Игнориши',btnIgnoreAll:'Игнориши све',btnReplace:'Замени',btnReplaceAll:'Замени све',btnUndo:'Врати акцију',noSuggestions:'- Без сугестија -',progress:'Провера спеловања у току...',noMispell:'Провера спеловања завршена: грешке нису пронађене',noChanges:'Провера спеловања завршена: Није измењена ниједна реч',oneChange:'Провера спеловања завршена: Измењена је једна реч',manyChanges:'Провера спеловања завршена: %1 реч(и) је измењено',ieSpellDownload:'Провера спеловања није инсталирана. Да ли желите да је скинете са Интернета?'},smiley:{toolbar:'Смајли',title:'Унеси смајлија',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Набројиву листу',bulletedlist:'Ненабројива листа',indent:'Увећај леву маргину',outdent:'Смањи леву маргину',justify:{left:'Лево равнање',center:'Центриран текст',right:'Десно равнање',block:'Обострано равнање'},blockquote:'Block Quote',clipboard:{title:'Залепи',cutError:'Сигурносна подешавања Вашег претраживача не дозвољавају операције аутоматског исецања текста. Молимо Вас да користите пречицу са тастатуре (Ctrl/Cmd+X).',copyError:'Сигурносна подешавања Вашег претраживача не дозвољавају операције аутоматског копирања текста. Молимо Вас да користите пречицу са тастатуре (Ctrl/Cmd+C).',pasteMsg:'Молимо Вас да залепите унутар доње површине користећи тастатурну пречицу (<STRONG>Ctrl/Cmd+V</STRONG>) и да притиснете <STRONG>OK</STRONG>.',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Залепи из Worda',title:'Залепи из Worda',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Залепи као чист текст',title:'Залепи као чист текст'},templates:{button:'Обрасци',title:'Обрасци за садржај',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Молимо Вас да одаберете образац који ће бити примењен на страницу (тренутни садржај ће бити обрисан):',emptyListMsg:'(Нема дефинисаних образаца)'},showBlocks:'Show Blocks',stylesCombo:{label:'Стил',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Формат',panelTitle:'Формат',tag_p:'Normal',tag_pre:'Formatirano',tag_address:'Adresa',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Фонт',voiceLabel:'Font',panelTitle:'Фонт'},fontSize:{label:'Величина фонта',voiceLabel:'Font Size',panelTitle:'Величина фонта'},colorButton:{textColorTitle:'Боја текста',bgColorTitle:'Боја позадине',panelTitle:'Colors',auto:'Аутоматски',more:'Више боја...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'Без сугестија',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Особине документа',title:'Особине документа',design:'Design',meta:'Метаподаци',chooseColor:'Choose',other:'<other>',docTitle:'Наслов странице',charset:'Кодирање скупа карактера',charsetOther:'Остала кодирања скупа карактера',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Заглавље типа документа',docTypeOther:'Остала заглавља типа документа',xhtmlDec:'Улључи XHTML декларације',bgColor:'Боја позадине',bgImage:'УРЛ позадинске слике',bgFixed:'Фиксирана позадина',txtColor:'Боја текста',margin:'Маргине странице',marginTop:'Горња',marginLeft:'Лева',marginRight:'Десна',marginBottom:'Доња',metaKeywords:'Кључне речи за индексирање документа (раздвојене зарезом)',metaDescription:'Опис документа',metaAuthor:'Аутор',metaCopyright:'Ауторска права',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/gl.js��������������������������������������������0000664�0001750�0001750�00000044002�12262650742�021735� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.gl={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Código Fonte',newPage:'Nova Páxina',save:'Gardar',preview:'Vista Previa',cut:'Cortar',copy:'Copiar',paste:'Pegar',print:'Imprimir',underline:'Sub-raiado',bold:'Negrita',italic:'Cursiva',selectAll:'Seleccionar todo',removeFormat:'Eliminar Formato',strike:'Tachado',subscript:'Subíndice',superscript:'Superíndice',horizontalrule:'Inserir Liña Horizontal',pagebreak:'Inserir Salto de Páxina',pagebreakAlt:'Page Break',unlink:'Eliminar Ligazón',undo:'Desfacer',redo:'Refacer',common:{browseServer:'Navegar no Servidor',url:'URL',protocol:'Protocolo',upload:'Carregar',uploadSubmit:'Enviar ó Servidor',image:'Imaxe',flash:'Flash',form:'Formulario',checkbox:'Cadro de Verificación',radio:'Botón de Radio',textField:'Campo de Texto',textarea:'Área de Texto',hiddenField:'Campo Oculto',button:'Botón',select:'Campo de Selección',imageButton:'Botón de Imaxe',notSet:'<non definido>',id:'Id',name:'Nome',langDir:'Orientación do Idioma',langDirLtr:'Esquerda a Dereita (LTR)',langDirRtl:'Dereita a Esquerda (RTL)',langCode:'Código do Idioma',longDescr:'Descrición Completa da URL',cssClass:'Clases da Folla de Estilos',advisoryTitle:'Título',cssStyle:'Estilo',ok:'OK',cancel:'Cancelar',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Advanzado',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Largura',height:'Altura',align:'Aliñamento',alignLeft:'Esquerda',alignRight:'Dereita',alignCenter:'Centro',alignTop:'Tope',alignMiddle:'Centro',alignBottom:'Pé',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Inserir Carácter Especial',title:'Seleccione Caracter Especial',options:'Special Character Options'},link:{toolbar:'Inserir/Editar Ligazón',other:'<outro>',menu:'Editar Ligazón',title:'Ligazón',info:'Información da Ligazón',target:'Destino',upload:'Carregar',advanced:'Advanzado',type:'Tipo de Ligazón',toUrl:'URL',toAnchor:'Referencia nesta páxina',toEmail:'E-Mail',targetFrame:'<frame>',targetPopup:'<Xanela Emerxente>',targetFrameName:'Nome do Marco Destino',targetPopupName:'Nome da Xanela Emerxente',popupFeatures:'Características da Xanela Emerxente',popupResizable:'Resizable',popupStatusBar:'Barra de Estado',popupLocationBar:'Barra de Localización',popupToolbar:'Barra de Ferramentas',popupMenuBar:'Barra de Menú',popupFullScreen:'A Toda Pantalla (IE)',popupScrollBars:'Barras de Desplazamento',popupDependent:'Dependente (Netscape)',popupLeft:'Posición Esquerda',popupTop:'Posición dende Arriba',id:'Id',langDir:'Orientación do Idioma',langDirLTR:'Esquerda a Dereita (LTR)',langDirRTL:'Dereita a Esquerda (RTL)',acccessKey:'Chave de Acceso',name:'Nome',langCode:'Orientación do Idioma',tabIndex:'Índice de Tabulación',advisoryTitle:'Título',advisoryContentType:'Tipo de Contido',cssClasses:'Clases da Folla de Estilos',charset:'Fonte de Caracteres Vinculado',styles:'Estilo',rel:'Relationship',selectAnchor:'Seleccionar unha Referencia',anchorName:'Por Nome de Referencia',anchorId:'Por Element Id',emailAddress:'Enderezo de E-Mail',emailSubject:'Asunto do Mensaxe',emailBody:'Corpo do Mensaxe',noAnchors:'(Non hai referencias disponibles no documento)',noUrl:'Por favor, escriba a ligazón URL',noEmail:'Por favor, escriba o enderezo de e-mail'},anchor:{toolbar:'Inserir/Editar Referencia',menu:'Propriedades da Referencia',title:'Propriedades da Referencia',name:'Nome da Referencia',errorName:'Por favor, escriba o nome da referencia',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Procurar',replace:'Substituir',findWhat:'Texto a procurar:',replaceWith:'Substituir con:',notFoundMsg:'Non te atopou o texto indicado.',findOptions:'Find Options',matchCase:'Coincidir Mai./min.',matchWord:'Coincidir con toda a palabra',matchCyclic:'Match cyclic',replaceAll:'Substitiur Todo',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Tabla',title:'Propiedades da Táboa',menu:'Propiedades da Táboa',deleteTable:'Borrar Táboa',rows:'Filas',columns:'Columnas',border:'Tamaño do Borde',widthPx:'pixels',widthPc:'percent',widthUnit:'width unit',cellSpace:'Marxe entre Celas',cellPad:'Marxe interior',caption:'Título',summary:'Sumario',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cela',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Borrar Cela',merge:'Unir Celas',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Fila',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Borrar Filas'},column:{menu:'Columna',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Borrar Columnas'}},button:{title:'Propriedades do Botón',text:'Texto (Valor)',type:'Tipo',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Propriedades do Cadro de Verificación',radioTitle:'Propriedades do Botón de Radio',value:'Valor',selected:'Seleccionado'},form:{title:'Propriedades do Formulario',menu:'Propriedades do Formulario',action:'Acción',method:'Método',encoding:'Encoding'},select:{title:'Propriedades do Campo de Selección',selectInfo:'Info',opAvail:'Opcións Disponibles',value:'Valor',size:'Tamaño',lines:'liñas',chkMulti:'Permitir múltiples seleccións',opText:'Texto',opValue:'Valor',btnAdd:'Engadir',btnModify:'Modificar',btnUp:'Subir',btnDown:'Baixar',btnSetValue:'Definir como valor por defecto',btnDelete:'Borrar'},textarea:{title:'Propriedades da Área de Texto',cols:'Columnas',rows:'Filas'},textfield:{title:'Propriedades do Campo de Texto',name:'Nome',value:'Valor',charWidth:'Tamaño do Caracter',maxChars:'Máximo de Caracteres',type:'Tipo',typeText:'Texto',typePass:'Chave'},hidden:{title:'Propriedades do Campo Oculto',name:'Nome',value:'Valor'},image:{title:'Propriedades da Imaxe',titleButton:'Propriedades do Botón de Imaxe',menu:'Propriedades da Imaxe',infoTab:'Información da Imaxe',btnUpload:'Enviar ó Servidor',upload:'Carregar',alt:'Texto Alternativo',lockRatio:'Proporcional',resetSize:'Tamaño Orixinal',border:'Límite',hSpace:'Esp. Horiz.',vSpace:'Esp. Vert.',alertUrl:'Por favor, escriba a URL da imaxe',linkTab:'Ligazón',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Propriedades Flash',propertiesTab:'Properties',title:'Propriedades Flash',chkPlay:'Auto Execución',chkLoop:'Bucle',chkMenu:'Activar Menú Flash',chkFull:'Allow Fullscreen',scale:'Escalar',scaleAll:'Amosar Todo',scaleNoBorder:'Sen Borde',scaleFit:'Encaixar axustando',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs Inferior',alignAbsMiddle:'Abs Centro',alignBaseline:'Liña Base',alignTextTop:'Tope do Texto',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Cor do Fondo',hSpace:'Esp. Horiz.',vSpace:'Esp. Vert.',validateSrc:'Por favor, escriba a ligazón URL',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Corrección Ortográfica',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Non está no diccionario',changeTo:'Cambiar a',btnIgnore:'Ignorar',btnIgnoreAll:'Ignorar Todas',btnReplace:'Substituir',btnReplaceAll:'Substituir Todas',btnUndo:'Desfacer',noSuggestions:'- Sen candidatos -',progress:'Corrección ortográfica en progreso...',noMispell:'Corrección ortográfica rematada: Non se atoparon erros',noChanges:'Corrección ortográfica rematada: Non se substituiu nengunha verba',oneChange:'Corrección ortográfica rematada: Unha verba substituida',manyChanges:'Corrección ortográfica rematada: %1 verbas substituidas',ieSpellDownload:'O corrector ortográfico non está instalado. ¿Quere descargalo agora?'},smiley:{toolbar:'Smiley',title:'Inserte un Smiley',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Lista Numerada',bulletedlist:'Marcas',indent:'Aumentar Sangría',outdent:'Disminuir Sangría',justify:{left:'Aliñar á Esquerda',center:'Centrado',right:'Aliñar á Dereita',block:'Xustificado'},blockquote:'Block Quote',clipboard:{title:'Pegar',cutError:'Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de corte. Por favor, use o teclado para iso (Ctrl/Cmd+X).',copyError:'Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de copia. Por favor, use o teclado para iso (Ctrl/Cmd+C).',pasteMsg:'Por favor, pegue dentro do seguinte cadro usando o teclado (<STRONG>Ctrl/Cmd+V</STRONG>) e pulse <STRONG>OK</STRONG>.',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Pegar dende Word',title:'Pegar dende Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Pegar como texto plano',title:'Pegar como texto plano'},templates:{button:'Plantillas',title:'Plantillas de Contido',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Por favor, seleccione a plantilla a abrir no editor<br>(o contido actual perderase):',emptyListMsg:'(Non hai plantillas definidas)'},showBlocks:'Show Blocks',stylesCombo:{label:'Estilo',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Formato',panelTitle:'Formato',tag_p:'Normal',tag_pre:'Formateado',tag_address:'Enderezo',tag_h1:'Enacabezado 1',tag_h2:'Encabezado 2',tag_h3:'Encabezado 3',tag_h4:'Encabezado 4',tag_h5:'Encabezado 5',tag_h6:'Encabezado 6',tag_div:'Paragraph (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Tipo',voiceLabel:'Font',panelTitle:'Tipo'},fontSize:{label:'Tamaño',voiceLabel:'Font Size',panelTitle:'Tamaño'},colorButton:{textColorTitle:'Cor do Texto',bgColorTitle:'Cor do Fondo',panelTitle:'Colors',auto:'Automático',more:'Máis Cores...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'Sen candidatos',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Propriedades do Documento',title:'Propriedades do Documento',design:'Design',meta:'Meta Tags',chooseColor:'Choose',other:'<outro>',docTitle:'Título da Páxina',charset:'Codificación do Xogo de Caracteres',charsetOther:'Outra Codificación do Xogo de Caracteres',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Encabezado do Tipo de Documento',docTypeOther:'Outro Encabezado do Tipo de Documento',xhtmlDec:'Incluir Declaracións XHTML',bgColor:'Cor de Fondo',bgImage:'URL da Imaxe de Fondo',bgFixed:'Fondo Fixo',txtColor:'Cor do Texto',margin:'Marxes da Páxina',marginTop:'Arriba',marginLeft:'Esquerda',marginRight:'Dereita',marginBottom:'Abaixo',metaKeywords:'Palabras Chave de Indexación do Documento (separadas por comas)',metaDescription:'Descripción do Documento',metaAuthor:'Autor',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/mk.js��������������������������������������������0000664�0001750�0001750�00000041675�12262650742�021757� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.mk={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Source',newPage:'New Page',save:'Save',preview:'Preview',cut:'Cut',copy:'Copy',paste:'Paste',print:'Print',underline:'Underline',bold:'Bold',italic:'Italic',selectAll:'Select All',removeFormat:'Remove Format',strike:'Strike Through',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Insert Horizontal Line',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Unlink',undo:'Undo',redo:'Redo',common:{browseServer:'Browse Server',url:'URL',protocol:'Protocol',upload:'Upload',uploadSubmit:'Send it to the Server',image:'Image',flash:'Flash',form:'Form',checkbox:'Checkbox',radio:'Radio Button',textField:'Text Field',textarea:'Textarea',hiddenField:'Hidden Field',button:'Button',select:'Selection Field',imageButton:'Image Button',notSet:'<not set>',id:'Id',name:'Name',langDir:'Language Direction',langDirLtr:'Left to Right (LTR)',langDirRtl:'Right to Left (RTL)',langCode:'Language Code',longDescr:'Long Description URL',cssClass:'Stylesheet Classes',advisoryTitle:'Advisory Title',cssStyle:'Style',ok:'OK',cancel:'Cancel',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Advanced',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Width',height:'Height',align:'Alignment',alignLeft:'Left',alignRight:'Right',alignCenter:'Center',alignTop:'Top',alignMiddle:'Middle',alignBottom:'Bottom',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Insert Special Character',title:'Select Special Character',options:'Special Character Options'},link:{toolbar:'Link',other:'<other>',menu:'Edit Link',title:'Link',info:'Link Info',target:'Target',upload:'Upload',advanced:'Advanced',type:'Link Type',toUrl:'URL',toAnchor:'Link to anchor in the text',toEmail:'E-mail',targetFrame:'<frame>',targetPopup:'<popup window>',targetFrameName:'Target Frame Name',targetPopupName:'Popup Window Name',popupFeatures:'Popup Window Features',popupResizable:'Resizable',popupStatusBar:'Status Bar',popupLocationBar:'Location Bar',popupToolbar:'Toolbar',popupMenuBar:'Menu Bar',popupFullScreen:'Full Screen (IE)',popupScrollBars:'Scroll Bars',popupDependent:'Dependent (Netscape)',popupLeft:'Left Position',popupTop:'Top Position',id:'Id',langDir:'Language Direction',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',acccessKey:'Access Key',name:'Name',langCode:'Language Code',tabIndex:'Tab Index',advisoryTitle:'Advisory Title',advisoryContentType:'Advisory Content Type',cssClasses:'Stylesheet Classes',charset:'Linked Resource Charset',styles:'Style',rel:'Relationship',selectAnchor:'Select an Anchor',anchorName:'By Anchor Name',anchorId:'By Element Id',emailAddress:'E-Mail Address',emailSubject:'Message Subject',emailBody:'Message Body',noAnchors:'(No anchors available in the document)',noUrl:'Please type the link URL',noEmail:'Please type the e-mail address'},anchor:{toolbar:'Anchor',menu:'Edit Anchor',title:'Anchor Properties',name:'Anchor Name',errorName:'Please type the anchor name',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Find',replace:'Replace',findWhat:'Find what:',replaceWith:'Replace with:',notFoundMsg:'The specified text was not found.',findOptions:'Find Options',matchCase:'Match case',matchWord:'Match whole word',matchCyclic:'Match cyclic',replaceAll:'Replace All',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Table',title:'Table Properties',menu:'Table Properties',deleteTable:'Delete Table',rows:'Rows',columns:'Columns',border:'Border size',widthPx:'pixels',widthPc:'percent',widthUnit:'width unit',cellSpace:'Cell spacing',cellPad:'Cell padding',caption:'Caption',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Delete Cells',merge:'Merge Cells',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Delete Rows'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Delete Columns'}},button:{title:'Button Properties',text:'Text (Value)',type:'Type',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Checkbox Properties',radioTitle:'Radio Button Properties',value:'Value',selected:'Selected'},form:{title:'Form Properties',menu:'Form Properties',action:'Action',method:'Method',encoding:'Encoding'},select:{title:'Selection Field Properties',selectInfo:'Select Info',opAvail:'Available Options',value:'Value',size:'Size',lines:'lines',chkMulti:'Allow multiple selections',opText:'Text',opValue:'Value',btnAdd:'Add',btnModify:'Modify',btnUp:'Up',btnDown:'Down',btnSetValue:'Set as selected value',btnDelete:'Delete'},textarea:{title:'Textarea Properties',cols:'Columns',rows:'Rows'},textfield:{title:'Text Field Properties',name:'Name',value:'Value',charWidth:'Character Width',maxChars:'Maximum Characters',type:'Type',typeText:'Text',typePass:'Password'},hidden:{title:'Hidden Field Properties',name:'Name',value:'Value'},image:{title:'Image Properties',titleButton:'Image Button Properties',menu:'Image Properties',infoTab:'Image Info',btnUpload:'Send it to the Server',upload:'Upload',alt:'Alternative Text',lockRatio:'Lock Ratio',resetSize:'Reset Size',border:'Border',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Please type the image URL',linkTab:'Link',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flash Properties',propertiesTab:'Properties',title:'Flash Properties',chkPlay:'Auto Play',chkLoop:'Loop',chkMenu:'Enable Flash Menu',chkFull:'Allow Fullscreen',scale:'Scale',scaleAll:'Show all',scaleNoBorder:'No Border',scaleFit:'Exact Fit',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs Bottom',alignAbsMiddle:'Abs Middle',alignBaseline:'Baseline',alignTextTop:'Text Top',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Background color',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'URL must not be empty.',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Check Spelling',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Not in dictionary',changeTo:'Change to',btnIgnore:'Ignore',btnIgnoreAll:'Ignore All',btnReplace:'Replace',btnReplaceAll:'Replace All',btnUndo:'Undo',noSuggestions:'- No suggestions -',progress:'Spell check in progress...',noMispell:'Spell check complete: No misspellings found',noChanges:'Spell check complete: No words changed',oneChange:'Spell check complete: One word changed',manyChanges:'Spell check complete: %1 words changed',ieSpellDownload:'Spell checker not installed. Do you want to download it now?'},smiley:{toolbar:'Smiley',title:'Insert a Smiley',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Insert/Remove Numbered List',bulletedlist:'Insert/Remove Bulleted List',indent:'Increase Indent',outdent:'Decrease Indent',justify:{left:'Align Left',center:'Center',right:'Align Right',block:'Justify'},blockquote:'Block Quote',clipboard:{title:'Paste',cutError:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).",copyError:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).",pasteMsg:'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Paste from Word',title:'Paste from Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Paste as plain text',title:'Paste as Plain Text'},templates:{button:'Templates',title:'Content Templates',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Please select the template to open in the editor',emptyListMsg:'(No templates defined)'},showBlocks:'Show Blocks',stylesCombo:{label:'Styles',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Paragraph Format',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font Name'},fontSize:{label:'Size',voiceLabel:'Font Size',panelTitle:'Font Size'},colorButton:{textColorTitle:'Text Color',bgColorTitle:'Background Color',panelTitle:'Colors',auto:'Automatic',more:'More Colors...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'No suggestions',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Document Properties',title:'Document Properties',design:'Design',meta:'Meta Tags',chooseColor:'Choose',other:'Other...',docTitle:'Page Title',charset:'Character Set Encoding',charsetOther:'Other Character Set Encoding',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Document Type Heading',docTypeOther:'Other Document Type Heading',xhtmlDec:'Include XHTML Declarations',bgColor:'Background Color',bgImage:'Background Image URL',bgFixed:'Non-scrolling (Fixed) Background',txtColor:'Text Color',margin:'Page Margins',marginTop:'Top',marginLeft:'Left',marginRight:'Right',marginBottom:'Bottom',metaKeywords:'Document Indexing Keywords (comma separated)',metaDescription:'Document Description',metaAuthor:'Author',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/hi.js��������������������������������������������0000664�0001750�0001750�00000061073�12262650742�021742� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.hi={dir:'ltr',editorTitle:'रिच टेक्स्ट एडिटर, %1',editorHelp:'मदद के लिये ALT 0 दबाए',toolbars:'एडिटर टूलबार',editor:'रिच टेक्स्ट एडिटर',source:'सोर्स',newPage:'नया पेज',save:'सेव',preview:'प्रीव्यू',cut:'कट',copy:'कॉपी',paste:'पेस्ट',print:'प्रिन्ट',underline:'रेखांकण',bold:'बोल्ड',italic:'इटैलिक',selectAll:'सब सॅलॅक्ट करें',removeFormat:'फ़ॉर्मैट हटायें',strike:'स्ट्राइक थ्रू',subscript:'अधोलेख',superscript:'अभिलेख',horizontalrule:'हॉरिज़ॉन्टल रेखा इन्सर्ट करें',pagebreak:'पेज ब्रेक इन्सर्ट् करें',pagebreakAlt:'पेज ब्रेक',unlink:'लिंक हटायें',undo:'अन्डू',redo:'रीडू',common:{browseServer:'सर्वर ब्राउज़ करें',url:'URL',protocol:'प्रोटोकॉल',upload:'अपलोड',uploadSubmit:'इसे सर्वर को भेजें',image:'तस्वीर',flash:'फ़्लैश',form:'फ़ॉर्म',checkbox:'चॅक बॉक्स',radio:'रेडिओ बटन',textField:'टेक्स्ट फ़ील्ड',textarea:'टेक्स्ट एरिया',hiddenField:'गुप्त फ़ील्ड',button:'बटन',select:'चुनाव फ़ील्ड',imageButton:'तस्वीर बटन',notSet:'<सॅट नहीं>',id:'Id',name:'नाम',langDir:'भाषा लिखने की दिशा',langDirLtr:'बायें से दायें (LTR)',langDirRtl:'दायें से बायें (RTL)',langCode:'भाषा कोड',longDescr:'अधिक विवरण के लिए URL',cssClass:'स्टाइल-शीट क्लास',advisoryTitle:'परामर्श शीर्शक',cssStyle:'स्टाइल',ok:'ठीक है',cancel:'रद्द करें',close:'Close',preview:'Preview',generalTab:'सामान्य',advancedTab:'ऍड्वान्स्ड',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'चौड़ाई',height:'ऊँचाई',align:'ऍलाइन',alignLeft:'दायें',alignRight:'दायें',alignCenter:'बीच में',alignTop:'ऊपर',alignMiddle:'मध्य',alignBottom:'नीचे',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'विशेष करॅक्टर इन्सर्ट करें',title:'विशेष करॅक्टर चुनें',options:'Special Character Options'},link:{toolbar:'लिंक इन्सर्ट/संपादन',other:'<अन्य>',menu:'लिंक संपादन',title:'लिंक',info:'लिंक ',target:'टार्गेट',upload:'अपलोड',advanced:'ऍड्वान्स्ड',type:'लिंक प्रकार',toUrl:'URL',toAnchor:'इस पेज का ऐंकर',toEmail:'ई-मेल',targetFrame:'<फ़्रेम>',targetPopup:'<पॉप-अप विन्डो>',targetFrameName:'टार्गेट फ़्रेम का नाम',targetPopupName:'पॉप-अप विन्डो का नाम',popupFeatures:'पॉप-अप विन्डो फ़ीचर्स',popupResizable:'Resizable',popupStatusBar:'स्टेटस बार',popupLocationBar:'लोकेशन बार',popupToolbar:'टूल बार',popupMenuBar:'मॅन्यू बार',popupFullScreen:'फ़ुल स्क्रीन (IE)',popupScrollBars:'स्क्रॉल बार',popupDependent:'डिपेन्डॅन्ट (Netscape)',popupLeft:'बायीं तरफ',popupTop:'दायीं तरफ',id:'Id',langDir:'भाषा लिखने की दिशा',langDirLTR:'बायें से दायें (LTR)',langDirRTL:'दायें से बायें (RTL)',acccessKey:'ऍक्सॅस की',name:'नाम',langCode:'भाषा लिखने की दिशा',tabIndex:'टैब इन्डॅक्स',advisoryTitle:'परामर्श शीर्शक',advisoryContentType:'परामर्श कन्टॅन्ट प्रकार',cssClasses:'स्टाइल-शीट क्लास',charset:'लिंक रिसोर्स करॅक्टर सॅट',styles:'स्टाइल',rel:'Relationship',selectAnchor:'ऐंकर चुनें',anchorName:'ऐंकर नाम से',anchorId:'ऍलीमॅन्ट Id से',emailAddress:'ई-मेल पता',emailSubject:'संदेश विषय',emailBody:'संदेश',noAnchors:'(डॉक्यूमॅन्ट में ऐंकर्स की संख्या)',noUrl:'लिंक URL टाइप करें',noEmail:'ई-मेल पता टाइप करें'},anchor:{toolbar:'ऐंकर इन्सर्ट/संपादन',menu:'ऐंकर प्रॉपर्टीज़',title:'ऐंकर प्रॉपर्टीज़',name:'ऐंकर का नाम',errorName:'ऐंकर का नाम टाइप करें',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'खोजें और बदलें',find:'खोजें',replace:'रीप्लेस',findWhat:'यह खोजें:',replaceWith:'इससे रिप्लेस करें:',notFoundMsg:'आपके द्वारा दिया गया टेक्स्ट नहीं मिला',findOptions:'Find Options',matchCase:'केस मिलायें',matchWord:'पूरा शब्द मिलायें',matchCyclic:'Match cyclic',replaceAll:'सभी रिप्लेस करें',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'टेबल',title:'टेबल प्रॉपर्टीज़',menu:'टेबल प्रॉपर्टीज़',deleteTable:'टेबल डिलीट करें',rows:'पंक्तियाँ',columns:'कालम',border:'बॉर्डर साइज़',widthPx:'पिक्सैल',widthPc:'प्रतिशत',widthUnit:'width unit',cellSpace:'सैल अंतर',cellPad:'सैल पैडिंग',caption:'शीर्षक',summary:'सारांश',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'खाना',insertBefore:'पहले सैल डालें',insertAfter:'बाद में सैल डालें',deleteCell:'सैल डिलीट करें',merge:'सैल मिलायें',mergeRight:'बाँया विलय',mergeDown:'नीचे विलय करें',splitHorizontal:'सैल को क्षैतिज स्थिति में विभाजित करें',splitVertical:'सैल को लम्बाकार में विभाजित करें',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'पंक्ति',insertBefore:'पहले पंक्ति डालें',insertAfter:'बाद में पंक्ति डालें',deleteRow:'पंक्तियाँ डिलीट करें'},column:{menu:'कालम',insertBefore:'पहले कालम डालें',insertAfter:'बाद में कालम डालें',deleteColumn:'कालम डिलीट करें'}},button:{title:'बटन प्रॉपर्टीज़',text:'टेक्स्ट (वैल्यू)',type:'प्रकार',typeBtn:'बटन',typeSbm:'सब्मिट',typeRst:'रिसेट'},checkboxAndRadio:{checkboxTitle:'चॅक बॉक्स प्रॉपर्टीज़',radioTitle:'रेडिओ बटन प्रॉपर्टीज़',value:'वैल्यू',selected:'सॅलॅक्टॅड'},form:{title:'फ़ॉर्म प्रॉपर्टीज़',menu:'फ़ॉर्म प्रॉपर्टीज़',action:'क्रिया',method:'तरीका',encoding:'Encoding'},select:{title:'चुनाव फ़ील्ड प्रॉपर्टीज़',selectInfo:'सूचना',opAvail:'उपलब्ध विकल्प',value:'वैल्यू',size:'साइज़',lines:'पंक्तियाँ',chkMulti:'एक से ज्यादा विकल्प चुनने दें',opText:'टेक्स्ट',opValue:'वैल्यू',btnAdd:'जोड़ें',btnModify:'बदलें',btnUp:'ऊपर',btnDown:'नीचे',btnSetValue:'चुनी गई वैल्यू सॅट करें',btnDelete:'डिलीट'},textarea:{title:'टेक्स्त एरिया प्रॉपर्टीज़',cols:'कालम',rows:'पंक्तियां'},textfield:{title:'टेक्स्ट फ़ील्ड प्रॉपर्टीज़',name:'नाम',value:'वैल्यू',charWidth:'करॅक्टर की चौढ़ाई',maxChars:'अधिकतम करॅक्टर',type:'टाइप',typeText:'टेक्स्ट',typePass:'पास्वर्ड'},hidden:{title:'गुप्त फ़ील्ड प्रॉपर्टीज़',name:'नाम',value:'वैल्यू'},image:{title:'तस्वीर प्रॉपर्टीज़',titleButton:'तस्वीर बटन प्रॉपर्टीज़',menu:'तस्वीर प्रॉपर्टीज़',infoTab:'तस्वीर की जानकारी',btnUpload:'इसे सर्वर को भेजें',upload:'अपलोड',alt:'वैकल्पिक टेक्स्ट',lockRatio:'लॉक अनुपात',resetSize:'रीसॅट साइज़',border:'बॉर्डर',hSpace:'हॉरिज़ॉन्टल स्पेस',vSpace:'वर्टिकल स्पेस',alertUrl:'तस्वीर का URL टाइप करें ',linkTab:'लिंक',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'फ़्लैश प्रॉपर्टीज़',propertiesTab:'Properties',title:'फ़्लैश प्रॉपर्टीज़',chkPlay:'ऑटो प्ले',chkLoop:'लूप',chkMenu:'फ़्लैश मॅन्यू का प्रयोग करें',chkFull:'Allow Fullscreen',scale:'स्केल',scaleAll:'सभी दिखायें',scaleNoBorder:'कोई बॉर्डर नहीं',scaleFit:'बिल्कुल फ़िट',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs नीचे',alignAbsMiddle:'Abs ऊपर',alignBaseline:'मूल रेखा',alignTextTop:'टेक्स्ट ऊपर',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'बैक्ग्राउन्ड रंग',hSpace:'हॉरिज़ॉन्टल स्पेस',vSpace:'वर्टिकल स्पेस',validateSrc:'लिंक URL टाइप करें',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'वर्तनी (स्पेलिंग) जाँच',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'शब्दकोश में नहीं',changeTo:'इसमें बदलें',btnIgnore:'इग्नोर',btnIgnoreAll:'सभी इग्नोर करें',btnReplace:'रिप्लेस',btnReplaceAll:'सभी रिप्लेस करें',btnUndo:'अन्डू',noSuggestions:'- कोई सुझाव नहीं -',progress:'वर्तनी की जाँच (स्पॅल-चॅक) जारी है...',noMispell:'वर्तनी की जाँच : कोई गलत वर्तनी (स्पॅलिंग) नहीं पाई गई',noChanges:'वर्तनी की जाँच :कोई शब्द नहीं बदला गया',oneChange:'वर्तनी की जाँच : एक शब्द बदला गया',manyChanges:'वर्तनी की जाँच : %1 शब्द बदले गये',ieSpellDownload:'स्पॅल-चॅकर इन्स्टाल नहीं किया गया है। क्या आप इसे डाउनलोड करना चाहेंगे?'},smiley:{toolbar:'स्माइली',title:'स्माइली इन्सर्ट करें',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'अंकीय सूची',bulletedlist:'बुलॅट सूची',indent:'इन्डॅन्ट बढ़ायें',outdent:'इन्डॅन्ट कम करें',justify:{left:'बायीं तरफ',center:'बीच में',right:'दायीं तरफ',block:'ब्लॉक जस्टीफ़ाई'},blockquote:'ब्लॉक-कोट',clipboard:{title:'पेस्ट',cutError:'आपके ब्राउज़र की सुरक्षा सॅटिन्ग्स ने कट करने की अनुमति नहीं प्रदान की है। (Ctrl/Cmd+X) का प्रयोग करें।',copyError:'आपके ब्राआउज़र की सुरक्षा सॅटिन्ग्स ने कॉपी करने की अनुमति नहीं प्रदान की है। (Ctrl/Cmd+C) का प्रयोग करें।',pasteMsg:'Ctrl/Cmd+V का प्रयोग करके पेस्ट करें और ठीक है करें.',securityMsg:'आपके ब्राउज़र की सुरक्षा आपके ब्राउज़र की सुरKश सैटिंग के कारण, एडिटर आपके क्लिपबोर्ड डेटा को नहीं पा सकता है. आपको उसे इस विन्डो में दोबारा पेस्ट करना होगा.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'पेस्ट (वर्ड से)',title:'पेस्ट (वर्ड से)',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'पेस्ट (सादा टॅक्स्ट)',title:'पेस्ट (सादा टॅक्स्ट)'},templates:{button:'टॅम्प्लेट',title:'कन्टेन्ट टॅम्प्लेट',options:'Template Options',insertOption:'मूल शब्दों को बदलें',selectPromptMsg:'ऍडिटर में ओपन करने हेतु टॅम्प्लेट चुनें(वर्तमान कन्टॅन्ट सेव नहीं होंगे):',emptyListMsg:'(कोई टॅम्प्लेट डिफ़ाइन नहीं किया गया है)'},showBlocks:'ब्लॉक दिखायें',stylesCombo:{label:'स्टाइल',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'फ़ॉर्मैट',panelTitle:'फ़ॉर्मैट',tag_p:'साधारण',tag_pre:'फ़ॉर्मैटॅड',tag_address:'पता',tag_h1:'शीर्षक 1',tag_h2:'शीर्षक 2',tag_h3:'शीर्षक 3',tag_h4:'शीर्षक 4',tag_h5:'शीर्षक 5',tag_h6:'शीर्षक 6',tag_div:'शीर्षक (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'फ़ॉन्ट',voiceLabel:'Font',panelTitle:'फ़ॉन्ट'},fontSize:{label:'साइज़',voiceLabel:'Font Size',panelTitle:'साइज़'},colorButton:{textColorTitle:'टेक्स्ट रंग',bgColorTitle:'बैक्ग्राउन्ड रंग',panelTitle:'Colors',auto:'स्वचालित',more:'और रंग...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'कोई सुझाव नहीं',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'मेक्सिमाईज़',minimize:'मिनिमाईज़',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'डॉक्यूमॅन्ट प्रॉपर्टीज़',title:'डॉक्यूमॅन्ट प्रॉपर्टीज़',design:'Design',meta:'मॅटाडेटा',chooseColor:'Choose',other:'<अन्य>',docTitle:'पेज शीर्षक',charset:'करेक्टर सॅट ऍन्कोडिंग',charsetOther:'अन्य करेक्टर सॅट ऍन्कोडिंग',charsetASCII:'ASCII',charsetCE:'मध्य यूरोपीय (Central European)',charsetCT:'चीनी (Chinese Traditional Big5)',charsetCR:'सिरीलिक (Cyrillic)',charsetGR:'यवन (Greek)',charsetJP:'जापानी (Japanese)',charsetKR:'कोरीयन (Korean)',charsetTR:'तुर्की (Turkish)',charsetUN:'यूनीकोड (UTF-8)',charsetWE:'पश्चिम यूरोपीय (Western European)',docType:'डॉक्यूमॅन्ट प्रकार शीर्षक',docTypeOther:'अन्य डॉक्यूमॅन्ट प्रकार शीर्षक',xhtmlDec:'XHTML सूचना सम्मिलित करें',bgColor:'बैक्ग्राउन्ड रंग',bgImage:'बैक्ग्राउन्ड तस्वीर URL',bgFixed:'स्क्रॉल न करने वाला बैक्ग्राउन्ड',txtColor:'टेक्स्ट रंग',margin:'पेज मार्जिन',marginTop:'ऊपर',marginLeft:'बायें',marginRight:'दायें',marginBottom:'नीचे',metaKeywords:'डॉक्युमॅन्ट इन्डेक्स संकेतशब्द (अल्पविराम से अलग करें)',metaDescription:'डॉक्यूमॅन्ट करॅक्टरन',metaAuthor:'लेखक',metaCopyright:'कॉपीराइट',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/pt.js��������������������������������������������0000664�0001750�0001750�00000044412�12262650742�021763� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.pt={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor de barras de ferramentas',editor:'Editor de texto enriquecido',source:'Fonte',newPage:'Nova Página',save:'Guardar',preview:'Pré-visualizar',cut:'Cortar',copy:'Copiar',paste:'Colar',print:'Imprimir',underline:'Sublinhado',bold:'Negrito',italic:'Itálico',selectAll:'Seleccionar Tudo',removeFormat:'Eliminar Formato',strike:'Rasurado',subscript:'Superior à Linha',superscript:'Inferior à Linha',horizontalrule:'Inserir Linha Horizontal',pagebreak:'Inserir Quebra de Página',pagebreakAlt:'Quebra de página',unlink:'Eliminar Hiperligação',undo:'Anular',redo:'Repetir',common:{browseServer:'Navegar no Servidor',url:'URL',protocol:'Protocolo',upload:'Carregar',uploadSubmit:'Enviar para o Servidor',image:'Imagem',flash:'Flash',form:'Formulário',checkbox:'Caixa de Verificação',radio:'Botão de Opção',textField:'Campo de Texto',textarea:'Área de Texto',hiddenField:'Campo Escondido',button:'Botão',select:'Caixa de Combinação',imageButton:'Botão de Imagem',notSet:'<Não definido>',id:'Id',name:'Nome',langDir:'Orientação de idioma',langDirLtr:'Esquerda à Direita (LTR)',langDirRtl:'Direita a Esquerda (RTL)',langCode:'Código de Idioma',longDescr:'Descrição Completa do URL',cssClass:'Classes de Estilo de Folhas Classes',advisoryTitle:'Título',cssStyle:'Estilo',ok:'OK',cancel:'Cancelar',close:'Fechar',preview:'Pré-visualização',generalTab:'Geral',advancedTab:'Avançado',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Opções',target:'Alvo',targetNew:'Nova Janela (_blank)',targetTop:'Janela superior (_top)',targetSelf:'Mesma janela (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Direita para Esquerda (RTL)',styles:'Estilo',cssClasses:'Stylesheet Classes',width:'Largura',height:'Altura',align:'Alinhamento',alignLeft:'Esquerda',alignRight:'Direita',alignCenter:'Centrado',alignTop:'Topo',alignMiddle:'Centro',alignBottom:'Fundo',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Menu de opções de contexto'},specialChar:{toolbar:'Inserir Caracter Especial',title:'Seleccione um caracter especial',options:'Special Character Options'},link:{toolbar:'Inserir/Editar Hiperligação',other:'<outro>',menu:'Editar Hiperligação',title:'Hiperligação',info:'Informação de Hiperligação',target:'Destino',upload:'Carregar',advanced:'Avançado',type:'Tipo de Hiperligação',toUrl:'URL',toAnchor:'Referência a esta página',toEmail:'E-Mail',targetFrame:'<Frame>',targetPopup:'<Janela de popup>',targetFrameName:'Nome do Frame Destino',targetPopupName:'Nome da Janela de Popup',popupFeatures:'Características de Janela de Popup',popupResizable:'Redimensionável',popupStatusBar:'Barra de Estado',popupLocationBar:'Barra de localização',popupToolbar:'Barra de Ferramentas',popupMenuBar:'Barra de Menu',popupFullScreen:'Janela Completa (IE)',popupScrollBars:'Barras de deslocamento',popupDependent:'Dependente (Netscape)',popupLeft:'Posição Esquerda',popupTop:'Posição Direita',id:'ID',langDir:'Orientação de idioma',langDirLTR:'Esquerda à Direita (LTR)',langDirRTL:'Direita a Esquerda (RTL)',acccessKey:'Chave de Acesso',name:'Nome',langCode:'Orientação de idioma',tabIndex:'Índice de Tubulação',advisoryTitle:'Título',advisoryContentType:'Tipo de Conteúdo',cssClasses:'Classes de Estilo de Folhas Classes',charset:'Fonte de caracteres vinculado',styles:'Estilo',rel:'Relação',selectAnchor:'Seleccionar una referência',anchorName:'Por Nome de Referência',anchorId:'Por ID de elemento',emailAddress:'Endereço de E-Mail',emailSubject:'Título de Mensagem',emailBody:'Corpo da Mensagem',noAnchors:'(Não há referências disponíveis no documento)',noUrl:'Por favor introduza a hiperligação URL',noEmail:'Por favor introduza o endereço de e-mail'},anchor:{toolbar:' Inserir/Editar Âncora',menu:'Propriedades da Âncora',title:'Propriedades da Âncora',name:'Nome da Âncora',errorName:'Por favor, introduza o nome da âncora',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Tipo',start:'Iniciar',validateStartNumber:'List start number must be a whole number.',circle:'Círculo',disc:'Disco',square:'Quadrado',none:'Nenhum',notset:'<not set>',armenian:'Numeração armênia',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Procurar',replace:'Substituir',findWhat:'Texto a Procurar:',replaceWith:'Substituir por:',notFoundMsg:'O texto especificado não foi encontrado.',findOptions:'Find Options',matchCase:'Maiúsculas/Minúsculas',matchWord:'Coincidir com toda a palavra',matchCyclic:'Match cyclic',replaceAll:'Substituir Tudo',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Tabela',title:'Propriedades da Tabela',menu:'Propriedades da Tabela',deleteTable:'Eliminar Tabela',rows:'Linhas',columns:'Colunas',border:'Tamanho do Limite',widthPx:'pixeis',widthPc:'percentagem',widthUnit:'width unit',cellSpace:'Esp. e/células',cellPad:'Esp. interior',caption:'Título',summary:'Sumário',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Célula',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Eliminar Célula',merge:'Unir Células',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Linha',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Eliminar Linhas'},column:{menu:'Coluna',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Eliminar Coluna'}},button:{title:'Propriedades do Botão',text:'Texto (Valor)',type:'Tipo',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Propriedades da Caixa de Verificação',radioTitle:'Propriedades do Botão de Opção',value:'Valor',selected:'Seleccionado'},form:{title:'Propriedades do Formulário',menu:'Propriedades do Formulário',action:'Acção',method:'Método',encoding:'Encoding'},select:{title:'Propriedades da Caixa de Combinação',selectInfo:'Informação',opAvail:'Opções Possíveis',value:'Valor',size:'Tamanho',lines:'linhas',chkMulti:'Permitir selecções múltiplas',opText:'Texto',opValue:'Valor',btnAdd:'Adicionar',btnModify:'Modificar',btnUp:'Para cima',btnDown:'Para baixo',btnSetValue:'Definir um valor por defeito',btnDelete:'Apagar'},textarea:{title:'Propriedades da Área de Texto',cols:'Colunas',rows:'Linhas'},textfield:{title:'Propriedades do Campo de Texto',name:'Nome',value:'Valor',charWidth:'Tamanho do caracter',maxChars:'Nr. Máximo de Caracteres',type:'Tipo',typeText:'Texto',typePass:'Palavra-chave'},hidden:{title:'Propriedades do Campo Escondido',name:'Nome',value:'Valor'},image:{title:'Propriedades da Imagem',titleButton:'Propriedades do Botão de imagens',menu:'Propriedades da Imagem',infoTab:'Informação da Imagem',btnUpload:'Enviar para o Servidor',upload:'Carregar',alt:'Texto Alternativo',lockRatio:'Proporcional',resetSize:'Tamanho Original',border:'Limite',hSpace:'Esp.Horiz',vSpace:'Esp.Vert',alertUrl:'Por favor introduza o URL da imagem',linkTab:'Hiperligação',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Propriedades do Flash',propertiesTab:'Properties',title:'Propriedades do Flash',chkPlay:'Reproduzir automaticamente',chkLoop:'Loop',chkMenu:'Permitir Menu do Flash',chkFull:'Allow Fullscreen',scale:'Escala',scaleAll:'Mostrar tudo',scaleNoBorder:'Sem Limites',scaleFit:'Tamanho Exacto',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs inferior',alignAbsMiddle:'Abs centro',alignBaseline:'Linha de base',alignTextTop:'Topo do texto',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Cor de Fundo',hSpace:'Esp.Horiz',vSpace:'Esp.Vert',validateSrc:'Por favor introduza a hiperligação URL',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Verificação Ortográfica',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Não está num directório',changeTo:'Mudar para',btnIgnore:'Ignorar',btnIgnoreAll:'Ignorar Tudo',btnReplace:'Substituir',btnReplaceAll:'Substituir Tudo',btnUndo:'Anular',noSuggestions:'- Sem sugestões -',progress:'Verificação ortográfica em progresso…',noMispell:'Verificação ortográfica completa: não foram encontrados erros',noChanges:'Verificação ortográfica completa: não houve alteração de palavras',oneChange:'Verificação ortográfica completa: uma palavra alterada',manyChanges:'Verificação ortográfica completa: %1 palavras alteradas',ieSpellDownload:' Verificação ortográfica não instalada. Quer descarregar agora?'},smiley:{toolbar:'Emoticons',title:'Inserir um Emoticon',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Numeração',bulletedlist:'Marcas',indent:'Aumentar Avanço',outdent:'Diminuir Avanço',justify:{left:'Alinhar à Esquerda',center:'Alinhar ao Centro',right:'Alinhar à Direita',block:'Justificado'},blockquote:'Bloco de citação',clipboard:{title:'Colar',cutError:'A configuração de segurança do navegador não permite a execução automática de operações de cortar. Por favor use o teclado (Ctrl/Cmd+X).',copyError:'A configuração de segurança do navegador não permite a execução automática de operações de copiar. Por favor use o teclado (Ctrl/Cmd+C).',pasteMsg:'Por favor, cole dentro da seguinte caixa usando o teclado (<STRONG>Ctrl/Cmd+V</STRONG>) e prima <STRONG>OK</STRONG>.',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Colar do Word',title:'Colar do Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Colar como Texto Simples',title:'Colar como Texto Simples'},templates:{button:'Modelos',title:'Modelo de Conteúdo',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Por favor, seleccione o modelo a abrir no editor<br>(o conteúdo actual será perdido):',emptyListMsg:'(Sem modelos definidos)'},showBlocks:'Exibir blocos',stylesCombo:{label:'Estilo',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Formato',panelTitle:'Formato',tag_p:'Normal',tag_pre:'Formatado',tag_address:'Endereço',tag_h1:'Título 1',tag_h2:'Título 2',tag_h3:'Título 3',tag_h4:'Título 4',tag_h5:'Título 5',tag_h6:'Título 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Tipo de Letra',voiceLabel:'Font',panelTitle:'Tipo de Letra'},fontSize:{label:'Tamanho',voiceLabel:'Font Size',panelTitle:'Tamanho'},colorButton:{textColorTitle:'Cor do Texto',bgColorTitle:'Cor de Fundo',panelTitle:'Colors',auto:'Automático',more:'Mais Cores...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'Sem sugestões',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximizar',minimize:'Minimizar',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Arraste para redimensionar',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Colapsar Barra',toolbarExpand:'Expandir Barra',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Propriedades do Documento',title:'Propriedades do Documento',design:'Design',meta:'Meta Data',chooseColor:'Choose',other:'<outro>',docTitle:'Título da Página',charset:'Codificação de Caracteres',charsetOther:'Outra Codificação de Caracteres',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Tipo de Cabeçalho do Documento',docTypeOther:'Outro Tipo de Cabeçalho do Documento',xhtmlDec:'Incluir Declarações XHTML',bgColor:'Cor de Fundo',bgImage:'Caminho para a Imagem de Fundo',bgFixed:'Fundo Fixo',txtColor:'Cor do Texto',margin:'Margem das Páginas',marginTop:'Topo',marginLeft:'Esquerda',marginRight:'Direita',marginBottom:'Fundo',metaKeywords:'Palavras de Indexação do Documento (separadas por virgula)',metaDescription:'Descrição do Documento',metaAuthor:'Autor',metaCopyright:'Direitos de Autor',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/_translationstatus.txt���������������������������0000664�0001750�0001750�00000004275�12262650742�025507� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license af.js Found: 551 Missing: 28 ar.js Found: 471 Missing: 108 bg.js Found: 397 Missing: 182 bn.js Found: 293 Missing: 286 bs.js Found: 176 Missing: 403 ca.js Found: 550 Missing: 29 cs.js Found: 579 Missing: 0 cy.js Found: 579 Missing: 0 da.js Found: 577 Missing: 2 de.js Found: 578 Missing: 1 el.js Found: 449 Missing: 130 en-au.js Found: 348 Missing: 231 en-ca.js Found: 346 Missing: 233 en-gb.js Found: 518 Missing: 61 eo.js Found: 578 Missing: 1 es.js Found: 578 Missing: 1 et.js Found: 577 Missing: 2 eu.js Found: 418 Missing: 161 fa.js Found: 577 Missing: 2 fi.js Found: 579 Missing: 0 fo.js Found: 577 Missing: 2 fr-ca.js Found: 322 Missing: 257 fr.js Found: 578 Missing: 1 gl.js Found: 293 Missing: 286 gu.js Found: 577 Missing: 2 he.js Found: 578 Missing: 1 hi.js Found: 330 Missing: 249 hr.js Found: 578 Missing: 1 hu.js Found: 574 Missing: 5 id.js Found: 1 Missing: 578 is.js Found: 327 Missing: 252 it.js Found: 579 Missing: 0 ja.js Found: 496 Missing: 83 ka.js Found: 570 Missing: 9 km.js Found: 287 Missing: 292 ko.js Found: 305 Missing: 274 ku.js Found: 578 Missing: 1 lt.js Found: 577 Missing: 2 lv.js Found: 578 Missing: 1 mk.js Found: 0 Missing: 579 mn.js Found: 389 Missing: 190 ms.js Found: 277 Missing: 302 nb.js Found: 579 Missing: 0 nl.js Found: 576 Missing: 3 no.js Found: 579 Missing: 0 pl.js Found: 578 Missing: 1 pt-br.js Found: 579 Missing: 0 pt.js Found: 327 Missing: 252 ro.js Found: 434 Missing: 145 ru.js Found: 577 Missing: 2 sk.js Found: 578 Missing: 1 sl.js Found: 427 Missing: 152 sr-latn.js Found: 288 Missing: 291 sr.js Found: 287 Missing: 292 sv.js Found: 552 Missing: 27 th.js Found: 299 Missing: 280 tr.js Found: 578 Missing: 1 ug.js Found: 574 Missing: 5 uk.js Found: 578 Missing: 1 vi.js Found: 578 Missing: 1 zh-cn.js Found: 579 Missing: 0 zh.js Found: 436 Missing: 143 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/lv.js��������������������������������������������0000664�0001750�0001750�00000046023�12262650742�021761� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.lv={dir:'ltr',editorTitle:'Bagātinātā teksta redaktors, %1',editorHelp:'Palīdzībai, nospiediet ALT 0 ',toolbars:'Redaktora rīkjoslas',editor:'Bagātinātā teksta redaktors',source:'HTML kods',newPage:'Jauna lapa',save:'Saglabāt',preview:'Priekšskatīt',cut:'Izgriezt',copy:'Kopēt',paste:'Ielīmēt',print:'Drukāt',underline:'Pasvītrots',bold:'Treknināts',italic:'Kursīvs',selectAll:'Iezīmēt visu',removeFormat:'Noņemt stilus',strike:'Pārsvītrots',subscript:'Apakšrakstā',superscript:'Augšrakstā',horizontalrule:'Ievietot horizontālu Atdalītājsvītru',pagebreak:'Ievietot lapas pārtraukumu drukai',pagebreakAlt:'Lapas pārnesums',unlink:'Noņemt hipersaiti',undo:'Atcelt',redo:'Atkārtot',common:{browseServer:'Skatīt servera saturu',url:'URL',protocol:'Protokols',upload:'Augšupielādēt',uploadSubmit:'Nosūtīt serverim',image:'Attēls',flash:'Flash',form:'Forma',checkbox:'Izvēles rūtiņa',radio:'Radio poga',textField:'Teksta rinda',textarea:'Teksta laukums',hiddenField:'Paslēpts lauks',button:'Poga',select:'Iezīmēšanas lauks',imageButton:'Attēlpoga',notSet:'<nav iestatīts>',id:'Id',name:'Nosaukums',langDir:'Valodas lasīšanas virziens',langDirLtr:'No kreisās uz labo (LTR)',langDirRtl:'No labās uz kreiso (RTL)',langCode:'Valodas kods',longDescr:'Gara apraksta Hipersaite',cssClass:'Stilu saraksta klases',advisoryTitle:'Konsultatīvs virsraksts',cssStyle:'Stils',ok:'Apstiprināt',cancel:'Atcelt',close:'Aizvērt',preview:'Priekšskatījums',generalTab:'Vispārīgi',advancedTab:'Izvērstais',validateNumberFailed:'Šī vērtība nav skaitlis',confirmNewPage:'Jebkuras nesaglabātās izmaiņas tiks zaudētas. Vai tiešām vēlaties atvērt jaunu lapu?',confirmCancel:'Daži no uzstādījumiem ir mainīti. Vai tiešām vēlaties aizvērt šo dialogu?',options:'Uzstādījumi',target:'Mērķis',targetNew:'Jauns logs (_blank)',targetTop:'Virsējais logs (_top)',targetSelf:'Tas pats logs (_self)',targetParent:'Avota logs (_parent)',langDirLTR:'Kreisais uz Labo (LTR)',langDirRTL:'Labais uz Kreiso (RTL)',styles:'Stils',cssClasses:'Stilu klases',width:'Platums',height:'Augstums',align:'Līdzinājums',alignLeft:'Pa kreisi',alignRight:'Pa labi',alignCenter:'Centrēti',alignTop:'Augšā',alignMiddle:'Pa vidu',alignBottom:'Apakšā',invalidValue:'Nekorekta vērtība',invalidHeight:'Augstumam jābūt skaitlim.',invalidWidth:'Platumam jābūt skaitlim',invalidCssLength:'Laukam "%1" norādītajai vērtībai jābūt pozitīvam skaitlim ar vai bez korektām CSS mērvienībām (px, %, in, cm, mm, em, ex, pt, vai pc).',invalidHtmlLength:'Laukam "%1" norādītajai vērtībai jābūt pozitīvam skaitlim ar vai bez korektām HTML mērvienībām (px vai %).',invalidInlineStyle:'Iekļautajā stilā norādītajai vērtībai jāsastāv no viena vai vairākiem pāriem pēc forma\'ta "nosaukums: vērtība", atdalītiem ar semikolu.',cssLengthTooltip:'Ievadiet vērtību pikseļos vai skaitli ar derīgu CSS mērvienību (px, %, in, cm, mm, em, ex, pt, vai pc).',unavailable:'%1<span class="cke_accessibility">, nav pieejams</span>'},contextmenu:{options:'Uznirstošās izvēlnes uzstādījumi'},specialChar:{toolbar:'Ievietot speciālo simbolu',title:'Ievietot īpašu simbolu',options:'Speciālo simbolu uzstādījumi'},link:{toolbar:'Ievietot/Labot hipersaiti',other:'<cits>',menu:'Labot hipersaiti',title:'Hipersaite',info:'Hipersaites informācija',target:'Mērķis',upload:'Augšupielādēt',advanced:'Izvērstais',type:'Hipersaites tips',toUrl:'Adrese',toAnchor:'Iezīme šajā lapā',toEmail:'E-pasts',targetFrame:'<ietvars>',targetPopup:'<uznirstošā logā>',targetFrameName:'Mērķa ietvara nosaukums',targetPopupName:'Uznirstošā loga nosaukums',popupFeatures:'Uznirstošā loga nosaukums īpašības',popupResizable:'Mērogojams',popupStatusBar:'Statusa josla',popupLocationBar:'Atrašanās vietas josla',popupToolbar:'Rīku josla',popupMenuBar:'Izvēlnes josla',popupFullScreen:'Pilnā ekrānā (IE)',popupScrollBars:'Ritjoslas',popupDependent:'Atkarīgs (Netscape)',popupLeft:'Kreisā koordināte',popupTop:'Augšējā koordināte',id:'ID',langDir:'Valodas lasīšanas virziens',langDirLTR:'No kreisās uz labo (LTR)',langDirRTL:'No labās uz kreiso (RTL)',acccessKey:'Pieejas taustiņš',name:'Nosaukums',langCode:'Valodas kods',tabIndex:'Ciļņu indekss',advisoryTitle:'Konsultatīvs virsraksts',advisoryContentType:'Konsultatīvs satura tips',cssClasses:'Stilu saraksta klases',charset:'Pievienotā resursa kodējums',styles:'Stils',rel:'Relācija',selectAnchor:'Izvēlēties iezīmi',anchorName:'Pēc iezīmes nosaukuma',anchorId:'Pēc elementa ID',emailAddress:'E-pasta adrese',emailSubject:'Ziņas tēma',emailBody:'Ziņas saturs',noAnchors:'(Šajā dokumentā nav iezīmju)',noUrl:'Lūdzu norādi hipersaiti',noEmail:'Lūdzu norādi e-pasta adresi'},anchor:{toolbar:'Ievietot/Labot iezīmi',menu:'Labot iezīmi',title:'Iezīmes uzstādījumi',name:'Iezīmes nosaukums',errorName:'Lūdzu norādiet iezīmes nosaukumu',remove:'Noņemt iezīmi'},list:{numberedTitle:'Numurēta saraksta uzstādījumi',bulletedTitle:'Vienkārša saraksta uzstādījumi',type:'Tips',start:'Sākt',validateStartNumber:'Saraksta sākuma numuram jābūt veselam skaitlim',circle:'Aplis',disc:'Disks',square:'Kvadrāts',none:'Nekas',notset:'<nav norādīts>',armenian:'Armēņu skaitļi',georgian:'Gruzīņu skaitļi (an, ban, gan, utt)',lowerRoman:'Mazie romāņu (i, ii, iii, iv, v, utt)',upperRoman:'Lielie romāņu (I, II, III, IV, V, utt)',lowerAlpha:'Mazie alfabēta (a, b, c, d, e, utt)',upperAlpha:'Lielie alfabēta (A, B, C, D, E, utt)',lowerGreek:'Mazie grieķu (alfa, beta, gamma, utt)',decimal:'Decimālie (1, 2, 3, utt)',decimalLeadingZero:'Decimālie ar nulli (01, 02, 03, utt)'},findAndReplace:{title:'Meklēt un aizvietot',find:'Meklēt',replace:'Nomainīt',findWhat:'Meklēt:',replaceWith:'Nomainīt uz:',notFoundMsg:'Norādītā frāze netika atrasta.',findOptions:'Meklēt uzstādījumi',matchCase:'Reģistrjūtīgs',matchWord:'Jāsakrīt pilnībā',matchCyclic:'Sakrist cikliski',replaceAll:'Aizvietot visu',replaceSuccessMsg:'%1 gadījums(i) aizvietoti'},table:{toolbar:'Tabula',title:'Tabulas īpašības',menu:'Tabulas īpašības',deleteTable:'Dzēst tabulu',rows:'Rindas',columns:'Kolonnas',border:'Rāmja izmērs',widthPx:'pikseļos',widthPc:'procentuāli',widthUnit:'platuma mērvienība',cellSpace:'Rūtiņu atstatums',cellPad:'Rūtiņu nobīde',caption:'Leģenda',summary:'Anotācija',headers:'Virsraksti',headersNone:'Nekas',headersColumn:'Pirmā kolona',headersRow:'Pirmā rinda',headersBoth:'Abi',invalidRows:'Rindu skaitam jābūt lielākam par 0',invalidCols:'Kolonu skaitam jābūt lielākam par 0',invalidBorder:'Rāmju izmēram jābūt skaitlim',invalidWidth:'Tabulas platumam jābūt skaitlim',invalidHeight:'Tabulas augstumam jābūt skaitlim',invalidCellSpacing:'Šūnu atstarpēm jābūt pozitīvam skaitlim',invalidCellPadding:'Šūnu atkāpēm jābūt pozitīvam skaitlim',cell:{menu:'Šūna',insertBefore:'Pievienot šūnu pirms',insertAfter:'Pievienot šūnu pēc',deleteCell:'Dzēst rūtiņas',merge:'Apvienot rūtiņas',mergeRight:'Apvieno pa labi',mergeDown:'Apvienot uz leju',splitHorizontal:'Sadalīt šūnu horizontāli',splitVertical:'Sadalīt šūnu vertikāli',title:'Šūnas uzstādījumi',cellType:'Šūnas tips',rowSpan:'Apvienotas rindas',colSpan:'Apvienotas kolonas',wordWrap:'Vārdu pārnese',hAlign:'Horizontālais novietojums',vAlign:'Vertikālais novietojums',alignBaseline:'Pamatrinda',bgColor:'Fona krāsa',borderColor:'Rāmja krāsa',data:'Dati',header:'Virsraksts',yes:'Jā',no:'Nē',invalidWidth:'Šūnas platumam jābūt skaitlim',invalidHeight:'Šūnas augstumam jābūt skaitlim',invalidRowSpan:'Apvienojamo rindu skaitam jābūt veselam skaitlim',invalidColSpan:'Apvienojamo kolonu skaitam jābūt veselam skaitlim',chooseColor:'Izvēlēties'},row:{menu:'Rinda',insertBefore:'Ievietot rindu pirms',insertAfter:'Ievietot rindu pēc',deleteRow:'Dzēst rindas'},column:{menu:'Kolonna',insertBefore:'Ievietot kolonu pirms',insertAfter:'Ievieto kolonu pēc',deleteColumn:'Dzēst kolonnas'}},button:{title:'Pogas īpašības',text:'Teksts (vērtība)',type:'Tips',typeBtn:'Poga',typeSbm:'Nosūtīt',typeRst:'Atcelt'},checkboxAndRadio:{checkboxTitle:'Atzīmēšanas kastītes īpašības',radioTitle:'Izvēles poga īpašības',value:'Vērtība',selected:'Iezīmēts'},form:{title:'Formas īpašības',menu:'Formas īpašības',action:'Darbība',method:'Metode',encoding:'Kodējums'},select:{title:'Iezīmēšanas lauka īpašības',selectInfo:'Informācija',opAvail:'Pieejamās iespējas',value:'Vērtība',size:'Izmērs',lines:'rindas',chkMulti:'Atļaut vairākus iezīmējumus',opText:'Teksts',opValue:'Vērtība',btnAdd:'Pievienot',btnModify:'Veikt izmaiņas',btnUp:'Augšup',btnDown:'Lejup',btnSetValue:'Noteikt kā iezīmēto vērtību',btnDelete:'Dzēst'},textarea:{title:'Teksta laukuma īpašības',cols:'Kolonnas',rows:'Rindas'},textfield:{title:'Teksta rindas īpašības',name:'Nosaukums',value:'Vērtība',charWidth:'Simbolu platums',maxChars:'Simbolu maksimālais daudzums',type:'Tips',typeText:'Teksts',typePass:'Parole'},hidden:{title:'Paslēptās teksta rindas īpašības',name:'Nosaukums',value:'Vērtība'},image:{title:'Attēla īpašības',titleButton:'Attēlpogas īpašības',menu:'Attēla īpašības',infoTab:'Informācija par attēlu',btnUpload:'Nosūtīt serverim',upload:'Augšupielādēt',alt:'Alternatīvais teksts',lockRatio:'Nemainīga Augstuma/Platuma attiecība',resetSize:'Atjaunot sākotnējo izmēru',border:'Rāmis',hSpace:'Horizontālā telpa',vSpace:'Vertikālā telpa',alertUrl:'Lūdzu norādīt attēla hipersaiti',linkTab:'Hipersaite',button2Img:'Vai vēlaties pārveidot izvēlēto attēla pogu uz attēla?',img2Button:'Vai vēlaties pārveidot izvēlēto attēlu uz attēla pogas?',urlMissing:'Trūkst attēla atrašanās adrese.',validateBorder:'Apmalei jābūt veselam skaitlim',validateHSpace:'HSpace jābūt veselam skaitlim',validateVSpace:'VSpace jābūt veselam skaitlim'},flash:{properties:'Flash īpašības',propertiesTab:'Uzstādījumi',title:'Flash īpašības',chkPlay:'Automātiska atskaņošana',chkLoop:'Nepārtraukti',chkMenu:'Atļaut Flash izvēlni',chkFull:'Pilnekrāns',scale:'Mainīt izmēru',scaleAll:'Rādīt visu',scaleNoBorder:'Bez rāmja',scaleFit:'Precīzs izmērs',access:'Skripta pieeja',accessAlways:'Vienmēr',accessSameDomain:'Tas pats domēns',accessNever:'Nekad',alignAbsBottom:'Absolūti apakšā',alignAbsMiddle:'Absolūti vertikāli centrēts',alignBaseline:'Pamatrindā',alignTextTop:'Teksta augšā',quality:'Kvalitāte',qualityBest:'Labākā',qualityHigh:'Augsta',qualityAutoHigh:'Automātiski Augsta',qualityMedium:'Vidēja',qualityAutoLow:'Automātiski Zema',qualityLow:'Zema',windowModeWindow:'Logs',windowModeOpaque:'Necaurspīdīgs',windowModeTransparent:'Caurspīdīgs',windowMode:'Loga režīms',flashvars:'Flash mainīgie',bgcolor:'Fona krāsa',hSpace:'Horizontālā telpa',vSpace:'Vertikālā telpa',validateSrc:'Lūdzu norādi hipersaiti',validateHSpace:'Hspace jābūt skaitlim',validateVSpace:'Vspace jābūt skaitlim'},spellCheck:{toolbar:'Pareizrakstības pārbaude',title:'Pārbaudīt gramatiku',notAvailable:'Atvainojiet, bet serviss šobrīd nav pieejams.',errorLoading:'Kļūda ielādējot aplikācijas servisa adresi: %s.',notInDic:'Netika atrasts vārdnīcā',changeTo:'Nomainīt uz',btnIgnore:'Ignorēt',btnIgnoreAll:'Ignorēt visu',btnReplace:'Aizvietot',btnReplaceAll:'Aizvietot visu',btnUndo:'Atcelt',noSuggestions:'- Nav ieteikumu -',progress:'Notiek pareizrakstības pārbaude...',noMispell:'Pareizrakstības pārbaude pabeigta: kļūdas netika atrastas',noChanges:'Pareizrakstības pārbaude pabeigta: nekas netika labots',oneChange:'Pareizrakstības pārbaude pabeigta: 1 vārds izmainīts',manyChanges:'Pareizrakstības pārbaude pabeigta: %1 vārdi tika mainīti',ieSpellDownload:'Pareizrakstības pārbaudītājs nav pievienots. Vai vēlaties to lejupielādēt tagad?'},smiley:{toolbar:'Smaidiņi',title:'Ievietot smaidiņu',options:'Smaidiņu uzstādījumi'},elementsPath:{eleLabel:'Elementa ceļš',eleTitle:'%1 elements'},numberedlist:'Numurēts saraksts',bulletedlist:'Pievienot/Noņemt vienkāršu sarakstu',indent:'Palielināt atkāpi',outdent:'Samazināt atkāpi',justify:{left:'Izlīdzināt pa kreisi',center:'Izlīdzināt pret centru',right:'Izlīdzināt pa labi',block:'Izlīdzināt malas'},blockquote:'Bloka citāts',clipboard:{title:'Ievietot',cutError:'Jūsu pārlūkprogrammas drošības iestatījumi nepieļauj redaktoram automātiski veikt izgriezšanas darbību. Lūdzu, izmantojiet (Ctrl/Cmd+X), lai veiktu šo darbību.',copyError:'Jūsu pārlūkprogrammas drošības iestatījumi nepieļauj redaktoram automātiski veikt kopēšanas darbību. Lūdzu, izmantojiet (Ctrl/Cmd+C), lai veiktu šo darbību.',pasteMsg:'Lūdzu, ievietojiet tekstu šajā laukumā, izmantojot klaviatūru (<STRONG>Ctrl/Cmd+V</STRONG>) un apstipriniet ar <STRONG>Darīts!</STRONG>.',securityMsg:'Jūsu pārlūka drošības uzstādījumu dēļ, nav iespējams tieši piekļūt jūsu starpliktuvei. Jums jāielīmē atkārtoti šajā logā.',pasteArea:'Ielīmēšanas zona'},pastefromword:{confirmCleanup:'Teksts, kuru vēlaties ielīmēt, izskatās ir nokopēts no Word. Vai vēlaties to iztīrīt pirms ielīmēšanas?',toolbar:'Ievietot no Worda',title:'Ievietot no Worda',error:'Iekšējas kļūdas dēļ, neizdevās iztīrīt ielīmētos datus.'},pasteText:{button:'Ievietot kā vienkāršu tekstu',title:'Ievietot kā vienkāršu tekstu'},templates:{button:'Sagataves',title:'Satura sagataves',options:'Sagataves uzstādījumi',insertOption:'Aizvietot pašreizējo saturu',selectPromptMsg:'Lūdzu, norādiet sagatavi, ko atvērt editorā<br>(patreizējie dati tiks zaudēti):',emptyListMsg:'(Nav norādītas sagataves)'},showBlocks:'Parādīt blokus',stylesCombo:{label:'Stils',panelTitle:'Formatēšanas stili',panelTitle1:'Bloka stili',panelTitle2:'iekļautie stili',panelTitle3:'Objekta stili'},format:{label:'Formāts',panelTitle:'Formāts',tag_p:'Normāls teksts',tag_pre:'Formatēts teksts',tag_address:'Adrese',tag_h1:'Virsraksts 1',tag_h2:'Virsraksts 2',tag_h3:'Virsraksts 3',tag_h4:'Virsraksts 4',tag_h5:'Virsraksts 5',tag_h6:'Virsraksts 6',tag_div:'Rindkopa (DIV)'},div:{title:'Izveidot div konteineri',toolbar:'Izveidot div konteineri',cssClassInputLabel:'Stilu klases',styleSelectLabel:'Stils',IdInputLabel:'Id',languageCodeInputLabel:'Valodas kods',inlineStyleInputLabel:'Iekļautais stils',advisoryTitleInputLabel:'Konsultatīvs virsraksts',langDirLabel:'Valodas virziens',langDirLTRLabel:'Kreisais uz Labo (LTR)',langDirRTLLabel:'Labais uz kreiso (RTL)',edit:'Labot Div',remove:'Noņemt Div'},iframe:{title:'IFrame uzstādījumi',toolbar:'IFrame',noUrl:'Norādiet iframe adresi',scrolling:'Atļaut ritjoslas',border:'Rādīt rāmi'},font:{label:'Šrifts',voiceLabel:'Fonts',panelTitle:'Šrifts'},fontSize:{label:'Izmērs',voiceLabel:'Fonta izmeŗs',panelTitle:'Izmērs'},colorButton:{textColorTitle:'Teksta krāsa',bgColorTitle:'Fona krāsa',panelTitle:'Krāsa',auto:'Automātiska',more:'Plašāka palete...'},colors:{'000':'Melns',800000:'Sarkanbrūns','8B4513':'Sedlu brūns','2F4F4F':'Tumšas tāfeles pelēks','008080':'Zili-zaļš','000080':'Jūras','4B0082':'Indigo',696969:'Tumši pelēks',B22222:'Ķieģeļsarkans',A52A2A:'Brūns',DAA520:'Zelta','006400':'Tumši zaļš','40E0D0':'Tirkīzs','0000CD':'Vidēji zils',800080:'Purpurs',808080:'Pelēks',F00:'Sarkans',FF8C00:'Tumši oranžs',FFD700:'Zelta','008000':'Zaļš','0FF':'Tumšzils','00F':'Zils',EE82EE:'Violets',A9A9A9:'Pelēks',FFA07A:'Gaiši laškrāsas',FFA500:'Oranžs',FFFF00:'Dzeltens','00FF00':'Laima',AFEEEE:'Gaiši tirkīza',ADD8E6:'Gaiši zils',DDA0DD:'Plūmju',D3D3D3:'Gaiši pelēks',FFF0F5:'Lavandas sārts',FAEBD7:'Antīki balts',FFFFE0:'Gaiši dzeltens',F0FFF0:'Meduspile',F0FFFF:'Debesszils',F0F8FF:'Alises zils',E6E6FA:'Lavanda',FFF:'Balts'},scayt:{title:'Pārbaudīt gramatiku rakstot',opera_title:'Opera neatbalsta',enable:'Ieslēgt SCAYT',disable:'Atslēgt SCAYT',about:'Par SCAYT',toggle:'Pārslēgt SCAYT',options:'Uzstādījumi',langs:'Valodas',moreSuggestions:'Vairāk ieteikumi',ignore:'Ignorēt',ignoreAll:'Ignorēt visu',addWord:'Pievienot vārdu',emptyDic:'Vārdnīcas nosaukums nevar būt tukšs.',noSuggestions:'No suggestions',optionsTab:'Uzstādījumi',allCaps:'Ignorēt vārdus ar lielajiem burtiem',ignoreDomainNames:'Ignorēt domēnu nosaukumus',mixedCase:'Ignorēt vārdus ar jauktu reģistru burtiem',mixedWithDigits:'Ignorēt vārdus ar skaitļiem',languagesTab:'Valodas',dictionariesTab:'Vārdnīcas',dic_field_name:'Vārdnīcas nosaukums',dic_create:'Izveidot',dic_restore:'Atjaunot',dic_delete:'Dzēst',dic_rename:'Pārsaukt',dic_info:'Sākumā lietotāja vārdnīca tiek glabāta Cookie. Diemžēl, Cookie ir ierobežots izmērs. Kad vārdnīca sasniegs izmēru, ka to vairs nevar glabāt Cookie, tā tiks noglabāta uz servera. Lai saglabātu personīgo vārdnīcu uz jūsu servera, jums jānorāda tās nosaukums. Ja jūs jau esiet noglabājuši vārdnīcu, lūdzu ierakstiet tās nosaukum un nospiediet Atjaunot pogu.',aboutTab:'Par'},about:{title:'Par CKEditor',dlgTitle:'Par CKEditor',help:'Pārbaudiet $1 palīdzībai.',userGuide:'CKEditor Lietotāja pamācība',moreInfo:'Informācijai par licenzēšanu apmeklējiet mūsu mājas lapu:',copy:'Kopēšanas tiesības © $1. Visas tiesības rezervētas.'},maximize:'Maksimizēt',minimize:'Minimizēt',fakeobjects:{anchor:'Iezīme',flash:'Flash animācija',iframe:'Iframe',hiddenfield:'Slēpts lauks',unknown:'Nezināms objekts'},resize:'Velciet lai mērogotu',colordialog:{title:'Izvēlies krāsu',options:'Krāsas uzstādījumi',highlight:'Paraugs',selected:'Izvēlētā krāsa',clear:'Notīrīt'},toolbarCollapse:'Aizvērt rīkjoslu',toolbarExpand:'Atvērt rīkjoslu',toolbarGroups:{document:'Dokuments',clipboard:'Starpliktuve/Atcelt',editing:'Labošana',forms:'Formas',basicstyles:'Pamata stili',paragraph:'Paragrāfs',links:'Saites',insert:'Ievietot',styles:'Stili',colors:'Krāsas',tools:'Rīki'},bidi:{ltr:'Teksta virziens no kreisās uz labo',rtl:'Teksta virziens no labās uz kreiso'},docprops:{label:'Dokumenta īpašības',title:'Dokumenta īpašības',design:'Dizains',meta:'META dati',chooseColor:'Izvēlēties',other:'<cits>',docTitle:'Dokumenta virsraksts <Title>',charset:'Simbolu kodējums',charsetOther:'Cits simbolu kodējums',charsetASCII:'ASCII',charsetCE:'Centrāleiropas',charsetCT:'Ķīniešu tradicionālā (Big5)',charsetCR:'Kirilica',charsetGR:'Grieķu',charsetJP:'Japāņu',charsetKR:'Korejiešu',charsetTR:'Turku',charsetUN:'Unikods (UTF-8)',charsetWE:'Rietumeiropas',docType:'Dokumenta tips',docTypeOther:'Cits dokumenta tips',xhtmlDec:'Ietvert XHTML deklarācijas',bgColor:'Fona krāsa',bgImage:'Fona attēla hipersaite',bgFixed:'Fona attēls ir fiksēts',txtColor:'Teksta krāsa',margin:'Lapas robežas',marginTop:'Augšā',marginLeft:'Pa kreisi',marginRight:'Pa labi',marginBottom:'Apakšā',metaKeywords:'Dokumentu aprakstoši atslēgvārdi (atdalīti ar komatu)',metaDescription:'Dokumenta apraksts',metaAuthor:'Autors',metaCopyright:'Autortiesības',previewHtml:'<p>Šis ir <strong>parauga teksts</strong>. Jūs izmantojiet <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/fr.js��������������������������������������������0000664�0001750�0001750�00000047032�12262650742�021750� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.fr={dir:'ltr',editorTitle:'Éditeur de Texte Enrichi, %1',editorHelp:"Appuyez sur ALT-0 pour l'aide",toolbars:"Barre d'outils de l'éditeur",editor:'Éditeur de Texte Enrichi',source:'Source',newPage:'Nouvelle page',save:'Enregistrer',preview:'Aperçu',cut:'Couper',copy:'Copier',paste:'Coller',print:'Imprimer',underline:'Souligné',bold:'Gras',italic:'Italique',selectAll:'Tout sélectionner',removeFormat:'Supprimer la mise en forme',strike:'Barré',subscript:'Indice',superscript:'Exposant',horizontalrule:'Ligne horizontale',pagebreak:'Saut de page',pagebreakAlt:'Saut de page',unlink:'Supprimer le lien',undo:'Annuler',redo:'Rétablir',common:{browseServer:'Explorer le serveur',url:'URL',protocol:'Protocole',upload:'Envoyer',uploadSubmit:'Envoyer sur le serveur',image:'Image',flash:'Flash',form:'Formulaire',checkbox:'Case à cocher',radio:'Bouton Radio',textField:'Champ texte',textarea:'Zone de texte',hiddenField:'Champ caché',button:'Bouton',select:'Liste déroulante',imageButton:'Bouton image',notSet:'<non défini>',id:'Id',name:'Nom',langDir:"Sens d'écriture",langDirLtr:'Gauche à droite (LTR)',langDirRtl:'Droite à gauche (RTL)',langCode:'Code de langue',longDescr:'URL de description longue (longdesc => malvoyant)',cssClass:'Classe CSS',advisoryTitle:'Description (title)',cssStyle:'Style',ok:'OK',cancel:'Annuler',close:'Fermer',preview:'Aperçu',generalTab:'Général',advancedTab:'Avancé',validateNumberFailed:"Cette valeur n'est pas un nombre.",confirmNewPage:'Les changements non sauvegardés seront perdus. Êtes-vous sûr de vouloir charger une nouvelle page?',confirmCancel:'Certaines options ont été modifiées. Êtes-vous sûr de vouloir fermer?',options:'Options',target:'Cible (Target)',targetNew:'Nouvelle fenêtre (_blank)',targetTop:'Fenêtre supérieure (_top)',targetSelf:'Même fenêtre (_self)',targetParent:'Fenêtre parent (_parent)',langDirLTR:'Gauche à Droite (LTR)',langDirRTL:'Droite à Gauche (RTL)',styles:'Style',cssClasses:'Classes de style',width:'Largeur',height:'Hauteur',align:'Alignement',alignLeft:'Gauche',alignRight:'Droite',alignCenter:'Centré',alignTop:'Haut',alignMiddle:'Milieu',alignBottom:'Bas',invalidValue:'Invalid value.',invalidHeight:'La hauteur doit être un nombre.',invalidWidth:'La largeur doit être un nombre.',invalidCssLength:'La valeur spécifiée pour le champ "%1" doit être un nombre positif avec ou sans unité de mesure CSS valide (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'La valeur spécifiée pour le champ "%1" doit être un nombre positif avec ou sans unité de mesure HTML valide (px or %).',invalidInlineStyle:'La valeur spécifiée pour le style inline doit être composée d\'un ou plusieurs couples de valeur au format "nom : valeur", separés par des points-virgules.',cssLengthTooltip:'Entrer un nombre pour une valeur en pixels ou un nombre avec une unité de mesure CSS valide (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, Indisponible</span>'},contextmenu:{options:'Options du menu contextuel'},specialChar:{toolbar:'Insérer un caractère spécial',title:'Sélectionnez un caractère',options:'Options des caractères spéciaux'},link:{toolbar:'Lien',other:'<autre>',menu:'Editer le lien',title:'Lien',info:'Infos sur le lien',target:'Cible',upload:'Envoyer',advanced:'Avancé',type:'Type de lien',toUrl:'URL',toAnchor:'Transformer le lien en ancre dans le texte',toEmail:'E-mail',targetFrame:'<cadre>',targetPopup:'<fenêtre popup>',targetFrameName:'Nom du Cadre destination',targetPopupName:'Nom de la fenêtre popup',popupFeatures:'Options de la fenêtre popup',popupResizable:'Redimensionnable',popupStatusBar:'Barre de status',popupLocationBar:"Barre d'adresse",popupToolbar:"Barre d'outils",popupMenuBar:'Barre de menu',popupFullScreen:'Plein écran (IE)',popupScrollBars:'Barres de défilement',popupDependent:'Dépendante (Netscape)',popupLeft:'Position gauche',popupTop:'Position haute',id:'Id',langDir:"Sens d'écriture",langDirLTR:'Gauche à droite',langDirRTL:'Droite à gauche',acccessKey:"Touche d'accessibilité",name:'Nom',langCode:'Code de langue',tabIndex:'Index de tabulation',advisoryTitle:'Description (title)',advisoryContentType:'Type de contenu (ex: text/html)',cssClasses:'Classe CSS',charset:'Charset de la cible',styles:'Style',rel:'Relation',selectAnchor:"Sélectionner l'ancre",anchorName:"Par nom d'ancre",anchorId:"Par ID d'élément",emailAddress:'Adresse E-Mail',emailSubject:'Sujet du message',emailBody:'Corps du message',noAnchors:'(Aucune ancre disponible dans ce document)',noUrl:"Veuillez entrer l'adresse du lien",noEmail:"Veuillez entrer l'adresse e-mail"},anchor:{toolbar:'Ancre',menu:"Editer l'ancre",title:"Propriétés de l'ancre",name:"Nom de l'ancre",errorName:"Veuillez entrer le nom de l'ancre.",remove:"Supprimer l'ancre"},list:{numberedTitle:'Propriétés de la liste numérotée',bulletedTitle:'Propriétés de la liste à puces',type:'Type',start:'Début',validateStartNumber:'Le premier élément de la liste doit être un nombre entier.',circle:'Cercle',disc:'Disque',square:'Carré',none:'Aucun',notset:'<Non défini>',armenian:'Numération arménienne',georgian:'Numération géorgienne (an, ban, gan, etc.)',lowerRoman:'Nombres romains minuscules (i, ii, iii, iv, v, etc.)',upperRoman:'Nombres romains majuscules (I, II, III, IV, V, etc.)',lowerAlpha:'Alphabétique minuscules (a, b, c, d, e, etc.)',upperAlpha:'Alphabétique majuscules (A, B, C, D, E, etc.)',lowerGreek:'Grec minuscule (alpha, beta, gamma, etc.)',decimal:'Décimal (1, 2, 3, etc.)',decimalLeadingZero:'Décimal précédé par un 0 (01, 02, 03, etc.)'},findAndReplace:{title:'Trouver et remplacer',find:'Trouver',replace:'Remplacer',findWhat:'Expression à trouver: ',replaceWith:'Remplacer par: ',notFoundMsg:'Le texte spécifié ne peut être trouvé.',findOptions:'Options de recherche',matchCase:'Respecter la casse',matchWord:'Mot entier uniquement',matchCyclic:'Boucler',replaceAll:'Remplacer tout',replaceSuccessMsg:'%1 occurrence(s) replacée(s).'},table:{toolbar:'Tableau',title:'Propriétés du tableau',menu:'Propriétés du tableau',deleteTable:'Supprimer le tableau',rows:'Lignes',columns:'Colonnes',border:'Taille de la bordure',widthPx:'pixels',widthPc:'% pourcents',widthUnit:'unité de largeur',cellSpace:'Espacement des cellules',cellPad:'Marge interne des cellules',caption:'Titre du tableau',summary:'Résumé (description)',headers:'En-Têtes',headersNone:'Aucunes',headersColumn:'Première colonne',headersRow:'Première ligne',headersBoth:'Les deux',invalidRows:'Le nombre de lignes doit être supérieur à 0.',invalidCols:'Le nombre de colonnes doit être supérieur à 0.',invalidBorder:'La taille de la bordure doit être un nombre.',invalidWidth:'La largeur du tableau doit être un nombre.',invalidHeight:'La hauteur du tableau doit être un nombre.',invalidCellSpacing:"L'espacement des cellules doit être un nombre positif.",invalidCellPadding:'La marge intérieure des cellules doit être un nombre positif.',cell:{menu:'Cellule',insertBefore:'Insérer une cellule avant',insertAfter:'Insérer une cellule après',deleteCell:'Supprimer les cellules',merge:'Fusionner les cellules',mergeRight:'Fusionner à droite',mergeDown:'Fusionner en bas',splitHorizontal:'Fractionner horizontalement',splitVertical:'Fractionner verticalement',title:'Propriétés de la cellule',cellType:'Type de cellule',rowSpan:'Fusion de lignes',colSpan:'Fusion de colonnes',wordWrap:'Césure',hAlign:'Alignement Horizontal',vAlign:'Alignement Vertical',alignBaseline:'Bas du texte',bgColor:"Couleur d'arrière-plan",borderColor:'Couleur de Bordure',data:'Données',header:'Entête',yes:'Oui',no:'Non',invalidWidth:'La Largeur de Cellule doit être un nombre.',invalidHeight:'La Hauteur de Cellule doit être un nombre.',invalidRowSpan:'La fusion de lignes doit être un nombre entier.',invalidColSpan:'La fusion de colonnes doit être un nombre entier.',chooseColor:'Choisissez'},row:{menu:'Ligne',insertBefore:'Insérer une ligne avant',insertAfter:'Insérer une ligne après',deleteRow:'Supprimer les lignes'},column:{menu:'Colonnes',insertBefore:'Insérer une colonne avant',insertAfter:'Insérer une colonne après',deleteColumn:'Supprimer les colonnes'}},button:{title:'Propriétés du bouton',text:'Texte (Value)',type:'Type',typeBtn:'Bouton',typeSbm:'Validation (submit)',typeRst:'Remise à zéro'},checkboxAndRadio:{checkboxTitle:'Propriétés de la case à cocher',radioTitle:'Propriétés du bouton Radio',value:'Valeur',selected:'Sélectionné'},form:{title:'Propriétés du formulaire',menu:'Propriétés du formulaire',action:'Action',method:'Méthode',encoding:'Encodage'},select:{title:'Propriétés du menu déroulant',selectInfo:'Informations sur le menu déroulant',opAvail:'Options disponibles',value:'Valeur',size:'Taille',lines:'Lignes',chkMulti:'Permettre les sélections multiples',opText:'Texte',opValue:'Valeur',btnAdd:'Ajouter',btnModify:'Modifier',btnUp:'Haut',btnDown:'Bas',btnSetValue:'Définir comme valeur sélectionnée',btnDelete:'Supprimer'},textarea:{title:'Propriétés de la zone de texte',cols:'Colonnes',rows:'Lignes'},textfield:{title:'Propriétés du champ texte',name:'Nom',value:'Valeur',charWidth:'Taille des caractères',maxChars:'Nombre maximum de caractères',type:'Type',typeText:'Texte',typePass:'Mot de passe'},hidden:{title:'Propriétés du champ caché',name:'Nom',value:'Valeur'},image:{title:"Propriétés de l'image",titleButton:'Propriétés du bouton image',menu:"Propriétés de l'image",infoTab:"Informations sur l'image",btnUpload:'Envoyer sur le serveur',upload:'Envoyer',alt:'Texte de remplacement',lockRatio:'Conserver les proportions',resetSize:"Taille d'origine",border:'Bordure',hSpace:'Espacement horizontal',vSpace:'Espacement vertical',alertUrl:"Veuillez entrer l'adresse de l'image",linkTab:'Lien',button2Img:'Voulez-vous transformer le bouton image sélectionné en simple image?',img2Button:"Voulez-vous transformer l'image en bouton image?",urlMissing:"L'adresse source de l'image est manquante.",validateBorder:'Bordure doit être un entier.',validateHSpace:'HSpace doit être un entier.',validateVSpace:'VSpace doit être un entier.'},flash:{properties:'Propriétés du Flash',propertiesTab:'Propriétés',title:'Propriétés du Flash',chkPlay:'Jouer automatiquement',chkLoop:'Boucle',chkMenu:'Activer le menu Flash',chkFull:'Permettre le plein écran',scale:'Echelle',scaleAll:'Afficher tout',scaleNoBorder:'Pas de bordure',scaleFit:"Taille d'origine",access:'Accès aux scripts',accessAlways:'Toujours',accessSameDomain:'Même domaine',accessNever:'Jamais',alignAbsBottom:'Bas absolu',alignAbsMiddle:'Milieu absolu',alignBaseline:'Bas du texte',alignTextTop:'Haut du texte',quality:'Qualité',qualityBest:'Meilleure',qualityHigh:'Haute',qualityAutoHigh:'Haute Auto',qualityMedium:'Moyenne',qualityAutoLow:'Basse Auto',qualityLow:'Basse',windowModeWindow:'Fenêtre',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Mode fenêtre',flashvars:'Variables du Flash',bgcolor:"Couleur d'arrière-plan",hSpace:'Espacement horizontal',vSpace:'Espacement vertical',validateSrc:"L'adresse ne doit pas être vide.",validateHSpace:"L'espacement horizontal doit être un nombre.",validateVSpace:"L'espacement vertical doit être un nombre."},spellCheck:{toolbar:"Vérifier l'orthographe",title:"Vérifier l'orthographe",notAvailable:'Désolé, le service est indisponible actuellement.',errorLoading:"Erreur du chargement du service depuis l'hôte : %s.",notInDic:"N'existe pas dans le dictionnaire.",changeTo:'Modifier pour',btnIgnore:'Ignorer',btnIgnoreAll:'Ignorer tout',btnReplace:'Remplacer',btnReplaceAll:'Remplacer tout',btnUndo:'Annuler',noSuggestions:'- Aucune suggestion -',progress:"Vérification de l'orthographe en cours...",noMispell:"Vérification de l'orthographe terminée : aucune erreur trouvée.",noChanges:"Vérification de l'orthographe terminée : Aucun mot corrigé.",oneChange:"Vérification de l'orthographe terminée : Un seul mot corrigé.",manyChanges:"Vérification de l'orthographe terminée : %1 mots corrigés.",ieSpellDownload:"La vérification d'orthographe n'est pas installée. Voulez-vous la télécharger maintenant?"},smiley:{toolbar:'Émoticones',title:'Insérer un émoticone',options:'Options des émoticones'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 éléments'},numberedlist:'Insérer/Supprimer la liste numérotée',bulletedlist:'Insérer/Supprimer la liste à puces',indent:'Augmenter le retrait (tabulation)',outdent:'Diminuer le retrait (tabulation)',justify:{left:'Aligner à gauche',center:'Centrer',right:'Aligner à droite',block:'Justifier'},blockquote:'Citation',clipboard:{title:'Coller',cutError:"Les paramètres de sécurité de votre navigateur ne permettent pas à l'éditeur d'exécuter automatiquement l'opération \"couper\". Veuillez utiliser le raccourci clavier (Ctrl/Cmd+X).",copyError:"Les paramètres de sécurité de votre navigateur ne permettent pas à l'éditeur d'exécuter automatiquement des opérations de copie. Veuillez utiliser le raccourci clavier (Ctrl/Cmd+C).",pasteMsg:'Veuillez coller le texte dans la zone suivante en utilisant le raccourci clavier (<strong>Ctrl/Cmd+V</strong>) et cliquez sur OK.',securityMsg:"A cause des paramètres de sécurité de votre navigateur, l'éditeur n'est pas en mesure d'accéder directement à vos données contenues dans le presse-papier. Vous devriez réessayer de coller les données dans la fenêtre.",pasteArea:'Coller la zone'},pastefromword:{confirmCleanup:'Le texte à coller semble provenir de Word. Désirez-vous le nettoyer avant de coller?',toolbar:'Coller depuis Word',title:'Coller depuis Word',error:"Il n'a pas été possible de nettoyer les données collées à la suite d'une erreur interne."},pasteText:{button:'Coller comme texte sans mise en forme',title:'Coller comme texte sans mise en forme'},templates:{button:'Modèles',title:'Contenu des modèles',options:'Options des modèles',insertOption:'Remplacer le contenu actuel',selectPromptMsg:"Veuillez sélectionner le modèle pour l'ouvrir dans l'éditeur",emptyListMsg:'(Aucun modèle disponible)'},showBlocks:'Afficher les blocs',stylesCombo:{label:'Styles',panelTitle:'Styles de mise en page',panelTitle1:'Styles de blocs',panelTitle2:'Styles en ligne',panelTitle3:"Styles d'objet"},format:{label:'Format',panelTitle:'Format de paragraphe',tag_p:'Normal',tag_pre:'Formaté',tag_address:'Adresse',tag_h1:'Titre 1',tag_h2:'Titre 2',tag_h3:'Titre 3',tag_h4:'Titre 4',tag_h5:'Titre 5',tag_h6:'Titre 6',tag_div:'Normal (DIV)'},div:{title:'Créer un container DIV',toolbar:'Créer un container DIV',cssClassInputLabel:'Classe CSS',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:'Code de langue',inlineStyleInputLabel:'Style en ligne',advisoryTitleInputLabel:'Advisory Title',langDirLabel:"Sens d'écriture",langDirLTRLabel:'Gauche à droite (LTR)',langDirRTLLabel:'Droite à gauche (RTL)',edit:'Éditer la DIV',remove:'Enlever la DIV'},iframe:{title:'Propriétés de la IFrame',toolbar:'IFrame',noUrl:"Veuillez entrer l'adresse du lien de la IFrame",scrolling:'Permettre à la barre de défilement',border:'Afficher une bordure de la IFrame'},font:{label:'Police',voiceLabel:'Police',panelTitle:'Style de police'},fontSize:{label:'Taille',voiceLabel:'Taille de police',panelTitle:'Taille de police'},colorButton:{textColorTitle:'Couleur de texte',bgColorTitle:"Couleur d'arrière plan",panelTitle:'Couleurs',auto:'Automatique',more:'Plus de couleurs...'},colors:{'000':'Noir',800000:'Marron','8B4513':'Brun moyen','2F4F4F':'Vert sombre','008080':'Canard','000080':'Bleu marine','4B0082':'Indigo',696969:'Gris foncé',B22222:'Rouge brique',A52A2A:'Brun',DAA520:'Or terni','006400':'Vert foncé','40E0D0':'Turquoise','0000CD':'Bleu royal',800080:'Pourpre',808080:'Gris',F00:'Rouge',FF8C00:'Orange foncé',FFD700:'Or','008000':'Vert','0FF':'Cyan','00F':'Bleu',EE82EE:'Violet',A9A9A9:'Gris moyen',FFA07A:'Saumon',FFA500:'Orange',FFFF00:'Jaune','00FF00':'Lime',AFEEEE:'Turquoise clair',ADD8E6:'Bleu clair',DDA0DD:'Prune',D3D3D3:'Gris clair',FFF0F5:'Fard Lavande',FAEBD7:'Blanc antique',FFFFE0:'Jaune clair',F0FFF0:'Honeydew',F0FFFF:'Azur',F0F8FF:'Bleu Alice',E6E6FA:'Lavande',FFF:'Blanc'},scayt:{title:"Vérification de l'Orthographe en Cours de Frappe (SCAYT)",opera_title:'Non supporté par Opera',enable:'Activer SCAYT',disable:'Désactiver SCAYT',about:'A propos de SCAYT',toggle:'Activer/Désactiver SCAYT',options:'Options',langs:'Langues',moreSuggestions:'Plus de suggestions',ignore:'Ignorer',ignoreAll:'Ignorer Tout',addWord:'Ajouter le mot',emptyDic:'Le nom du dictionnaire ne devrait pas être vide.',noSuggestions:'Aucune suggestion',optionsTab:'Options',allCaps:'Ignorer les mots entièrement en majuscules',ignoreDomainNames:'Ignorer les noms de domaines',mixedCase:'Ignorer les mots à casse multiple',mixedWithDigits:'Ignorer les mots contenant des chiffres',languagesTab:'Langues',dictionariesTab:'Dictionnaires',dic_field_name:'Nom du dictionnaire',dic_create:'Créer',dic_restore:'Restaurer',dic_delete:'Effacer',dic_rename:'Renommer',dic_info:"Initialement, le dictionnaire de l'utilisateur est stocké dans un cookie. Cependant, les cookies sont limités en taille. Quand le dictionnaire atteint une taille qu'il n'est plus possible de stocker dans un cookie, il peut alors être stocké sur nos serveurs. Afin de stocker votre dictionnaire personnel sur nos serveurs, vous devez spécifier un nom pour ce dictionnaire. Si vous avez déjà un dictionnaire stocké, merci de taper son nom puis cliquer sur Restaurer pour le récupérer.",aboutTab:'À propos de'},about:{title:'À propos de CKEditor',dlgTitle:'À propos de CKEditor',help:"Consulter $1 pour l'aide.",userGuide:"Guide de l'utilisateur CKEditor en anglais",moreInfo:'Pour les informations de licence, veuillez visiter notre site web:',copy:'Copyright © $1. Tous droits réservés.'},maximize:'Agrandir',minimize:'Minimiser',fakeobjects:{anchor:'Ancre',flash:'Animation Flash',iframe:'IFrame',hiddenfield:'Champ caché',unknown:'Objet inconnu'},resize:'Déplacer pour modifier la taille',colordialog:{title:'Choisir une couleur',options:'Option des couleurs',highlight:'Détails',selected:'Couleur choisie',clear:'Effacer'},toolbarCollapse:"Enrouler la barre d'outils",toolbarExpand:"Dérouler la barre d'outils",toolbarGroups:{document:'Document',clipboard:'Presse-papier/Défaire',editing:'Editer',forms:'Formulaires',basicstyles:'Styles de base',paragraph:'Paragraphe',links:'Liens',insert:'Insérer',styles:'Styles',colors:'Couleurs',tools:'Outils'},bidi:{ltr:'Direction du texte de la gauche vers la droite',rtl:'Direction du texte de la droite vers la gauche'},docprops:{label:'Propriétés du document',title:'Propriétés du document',design:'Design',meta:'Métadonnées',chooseColor:'Choisissez',other:'<autre>',docTitle:'Titre de la page',charset:'Encodage de caractère',charsetOther:'Autre encodage de caractère',charsetASCII:'ASCII',charsetCE:'Europe Centrale',charsetCT:'Chinois Traditionnel (Big5)',charsetCR:'Cyrillique',charsetGR:'Grec',charsetJP:'Japonais',charsetKR:'Coréen',charsetTR:'Turc',charsetUN:'Unicode (UTF-8)',charsetWE:'Occidental',docType:'Type de document',docTypeOther:'Autre type de document',xhtmlDec:'Inclure les déclarations XHTML',bgColor:'Couleur de fond',bgImage:'Image de fond',bgFixed:'Image fixe sans défilement',txtColor:'Couleur de texte',margin:'Marges',marginTop:'Haut',marginLeft:'Gauche',marginRight:'Droite',marginBottom:'Bas',metaKeywords:'Mots-clés (séparés par des virgules)',metaDescription:'Description',metaAuthor:'Auteur',metaCopyright:'Copyright',previewHtml:'<p>Ceci est un <strong>texte d\'exemple</strong>. Vous utilisez <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/sl.js��������������������������������������������0000664�0001750�0001750�00000043225�12262650742�021757� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.sl={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Izvorna koda',newPage:'Nova stran',save:'Shrani',preview:'Predogled',cut:'Izreži',copy:'Kopiraj',paste:'Prilepi',print:'Natisni',underline:'Podčrtano',bold:'Krepko',italic:'Ležeče',selectAll:'Izberi vse',removeFormat:'Odstrani oblikovanje',strike:'Prečrtano',subscript:'Podpisano',superscript:'Nadpisano',horizontalrule:'Vstavi vodoravno črto',pagebreak:'Vstavi prelom strani',pagebreakAlt:'Page Break',unlink:'Odstrani povezavo',undo:'Razveljavi',redo:'Ponovi',common:{browseServer:'Prebrskaj na strežniku',url:'URL',protocol:'Protokol',upload:'Prenesi',uploadSubmit:'Pošlji na strežnik',image:'Slika',flash:'Flash',form:'Obrazec',checkbox:'Potrditveno polje',radio:'Izbirno polje',textField:'Vnosno polje',textarea:'Vnosno območje',hiddenField:'Skrito polje',button:'Gumb',select:'Spustni seznam',imageButton:'Gumb s sliko',notSet:'<ni postavljen>',id:'Id',name:'Ime',langDir:'Smer jezika',langDirLtr:'Od leve proti desni (LTR)',langDirRtl:'Od desne proti levi (RTL)',langCode:'Oznaka jezika',longDescr:'Dolg opis URL-ja',cssClass:'Razred stilne predloge',advisoryTitle:'Predlagani naslov',cssStyle:'Slog',ok:'V redu',cancel:'Prekliči',close:'Close',preview:'Preview',generalTab:'Splošno',advancedTab:'Napredno',validateNumberFailed:'Ta vrednost ni število.',confirmNewPage:'Vse neshranjene spremembe te vsebine bodo izgubljene. Ali gotovo želiš naložiti novo stran?',confirmCancel:'Nekaj možnosti je bilo spremenjenih. Ali gotovo želiš zapreti okno?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Širina',height:'Višina',align:'Poravnava',alignLeft:'Levo',alignRight:'Desno',alignCenter:'Sredinsko',alignTop:'Na vrh',alignMiddle:'V sredino',alignBottom:'Na dno',invalidValue:'Invalid value.',invalidHeight:'Višina mora biti število.',invalidWidth:'Širina mora biti število.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, nedosegljiv</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Vstavi posebni znak',title:'Izberi posebni znak',options:'Special Character Options'},link:{toolbar:'Vstavi/uredi povezavo',other:'<drug>',menu:'Uredi povezavo',title:'Povezava',info:'Podatki o povezavi',target:'Cilj',upload:'Prenesi',advanced:'Napredno',type:'Vrsta povezave',toUrl:'URL',toAnchor:'Zaznamek na tej strani',toEmail:'Elektronski naslov',targetFrame:'<okvir>',targetPopup:'<pojavno okno>',targetFrameName:'Ime ciljnega okvirja',targetPopupName:'Ime pojavnega okna',popupFeatures:'Značilnosti pojavnega okna',popupResizable:'Spremenljive velikosti',popupStatusBar:'Vrstica stanja',popupLocationBar:'Naslovna vrstica',popupToolbar:'Orodna vrstica',popupMenuBar:'Menijska vrstica',popupFullScreen:'Celozaslonska slika (IE)',popupScrollBars:'Drsniki',popupDependent:'Podokno (Netscape)',popupLeft:'Lega levo',popupTop:'Lega na vrhu',id:'Id',langDir:'Smer jezika',langDirLTR:'Od leve proti desni (LTR)',langDirRTL:'Od desne proti levi (RTL)',acccessKey:'Vstopno geslo',name:'Ime',langCode:'Smer jezika',tabIndex:'Številka tabulatorja',advisoryTitle:'Predlagani naslov',advisoryContentType:'Predlagani tip vsebine (content-type)',cssClasses:'Razred stilne predloge',charset:'Kodna tabela povezanega vira',styles:'Slog',rel:'Relationship',selectAnchor:'Izberi zaznamek',anchorName:'Po imenu zaznamka',anchorId:'Po ID-ju elementa',emailAddress:'Elektronski naslov',emailSubject:'Predmet sporočila',emailBody:'Vsebina sporočila',noAnchors:'(V tem dokumentu ni zaznamkov)',noUrl:'Vnesite URL povezave',noEmail:'Vnesite elektronski naslov'},anchor:{toolbar:'Vstavi/uredi zaznamek',menu:'Lastnosti zaznamka',title:'Lastnosti zaznamka',name:'Ime zaznamka',errorName:'Prosim vnesite ime zaznamka',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Najdi in zamenjaj',find:'Najdi',replace:'Zamenjaj',findWhat:'Najdi:',replaceWith:'Zamenjaj z:',notFoundMsg:'Navedeno besedilo ni bilo najdeno.',findOptions:'Find Options',matchCase:'Razlikuj velike in male črke',matchWord:'Samo cele besede',matchCyclic:'Primerjaj znake v cirilici',replaceAll:'Zamenjaj vse',replaceSuccessMsg:'%1 pojavitev je bilo zamenjano.'},table:{toolbar:'Tabela',title:'Lastnosti tabele',menu:'Lastnosti tabele',deleteTable:'Izbriši tabelo',rows:'Vrstice',columns:'Stolpci',border:'Velikost obrobe',widthPx:'pik',widthPc:'procentov',widthUnit:'width unit',cellSpace:'Razmik med celicami',cellPad:'Polnilo med celicami',caption:'Naslov',summary:'Povzetek',headers:'Glave',headersNone:'Brez',headersColumn:'Prvi stolpec',headersRow:'Prva vrstica',headersBoth:'Oboje',invalidRows:'Število vrstic mora biti večje od 0.',invalidCols:'Število stolpcev mora biti večje od 0.',invalidBorder:'Širina obrobe mora biti število.',invalidWidth:'Širina tabele mora biti število.',invalidHeight:'Višina tabele mora biti število.',invalidCellSpacing:'Razmik med celicami mora biti število.',invalidCellPadding:'Zamik celic mora biti število',cell:{menu:'Celica',insertBefore:'Vstavi celico pred',insertAfter:'Vstavi celico za',deleteCell:'Izbriši celice',merge:'Združi celice',mergeRight:'Združi desno',mergeDown:'Druži navzdol',splitHorizontal:'Razdeli celico vodoravno',splitVertical:'Razdeli celico navpično',title:'Lastnosti celice',cellType:'Vrsta celice',rowSpan:'Razpon vrstic',colSpan:'Razpon stolpcev',wordWrap:'Prelom besedila',hAlign:'Vodoravna poravnava',vAlign:'Navpična poravnava',alignBaseline:'Osnovnica',bgColor:'Barva ozadja',borderColor:'Barva obrobe',data:'Podatki',header:'Glava',yes:'Da',no:'Ne',invalidWidth:'Širina celice mora biti število.',invalidHeight:'Višina celice mora biti število.',invalidRowSpan:'Razpon vrstic mora biti celo število.',invalidColSpan:'Razpon stolpcev mora biti celo število.',chooseColor:'Izberi'},row:{menu:'Vrstica',insertBefore:'Vstavi vrstico pred',insertAfter:'Vstavi vrstico za',deleteRow:'Izbriši vrstice'},column:{menu:'Stolpec',insertBefore:'Vstavi stolpec pred',insertAfter:'Vstavi stolpec za',deleteColumn:'Izbriši stolpce'}},button:{title:'Lastnosti gumba',text:'Besedilo (Vrednost)',type:'Tip',typeBtn:'Gumb',typeSbm:'Potrdi',typeRst:'Ponastavi'},checkboxAndRadio:{checkboxTitle:'Lastnosti potrditvenega polja',radioTitle:'Lastnosti izbirnega polja',value:'Vrednost',selected:'Izbrano'},form:{title:'Lastnosti obrazca',menu:'Lastnosti obrazca',action:'Akcija',method:'Metoda',encoding:'Kodiranje znakov'},select:{title:'Lastnosti spustnega seznama',selectInfo:'Podatki',opAvail:'Razpoložljive izbire',value:'Vrednost',size:'Velikost',lines:'vrstic',chkMulti:'Dovoli izbor večih vrstic',opText:'Besedilo',opValue:'Vrednost',btnAdd:'Dodaj',btnModify:'Spremeni',btnUp:'Gor',btnDown:'Dol',btnSetValue:'Postavi kot privzeto izbiro',btnDelete:'Izbriši'},textarea:{title:'Lastnosti vnosnega območja',cols:'Stolpcev',rows:'Vrstic'},textfield:{title:'Lastnosti vnosnega polja',name:'Ime',value:'Vrednost',charWidth:'Dolžina',maxChars:'Največje število znakov',type:'Tip',typeText:'Besedilo',typePass:'Geslo'},hidden:{title:'Lastnosti skritega polja',name:'Ime',value:'Vrednost'},image:{title:'Lastnosti slike',titleButton:'Lastnosti gumba s sliko',menu:'Lastnosti slike',infoTab:'Podatki o sliki',btnUpload:'Pošlji na strežnik',upload:'Pošlji',alt:'Nadomestno besedilo',lockRatio:'Zakleni razmerje',resetSize:'Ponastavi velikost',border:'Obroba',hSpace:'Vodoravni razmik',vSpace:'Navpični razmik',alertUrl:'Vnesite URL slike',linkTab:'Povezava',button2Img:'Želiš pretvoriti izbrani gumb s sliko v preprosto sliko?',img2Button:'Želiš pretvoriti izbrano sliko v gumb s sliko?',urlMissing:'Manjka vir (URL) slike.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Lastnosti Flash',propertiesTab:'Lastnosti',title:'Lastnosti Flash',chkPlay:'Samodejno predvajaj',chkLoop:'Ponavljanje',chkMenu:'Omogoči Flash Meni',chkFull:'Dovoli celozaslonski način',scale:'Povečava',scaleAll:'Pokaži vse',scaleNoBorder:'Brez obrobe',scaleFit:'Natančno prileganje',access:'Dostop skript',accessAlways:'Vedno',accessSameDomain:'Samo ista domena',accessNever:'Nikoli',alignAbsBottom:'Popolnoma na dno',alignAbsMiddle:'Popolnoma v sredino',alignBaseline:'Na osnovno črto',alignTextTop:'Besedilo na vrh',quality:'Kakovost',qualityBest:'Najvišja',qualityHigh:'Visoka',qualityAutoHigh:'Samodejno visoka',qualityMedium:'Srednja',qualityAutoLow:'Samodejno nizka',qualityLow:'Nizka',windowModeWindow:'Okno',windowModeOpaque:'Motno',windowModeTransparent:'Prosojno',windowMode:'Vrsta okna',flashvars:'Spremenljivke za Flash',bgcolor:'Barva ozadja',hSpace:'Vodoravni razmik',vSpace:'Navpični razmik',validateSrc:'Vnesite URL povezave',validateHSpace:'Vodoravni razmik mora biti število.',validateVSpace:'Navpični razmik mora biti število.'},spellCheck:{toolbar:'Preveri črkovanje',title:'Črkovalnik',notAvailable:'Oprostite, storitev trenutno ni dosegljiva.',errorLoading:'Napaka pri nalaganju storitve programa na naslovu %s.',notInDic:'Ni v slovarju',changeTo:'Spremeni v',btnIgnore:'Prezri',btnIgnoreAll:'Prezri vse',btnReplace:'Zamenjaj',btnReplaceAll:'Zamenjaj vse',btnUndo:'Razveljavi',noSuggestions:'- Ni predlogov -',progress:'Preverjanje črkovanja se izvaja...',noMispell:'Črkovanje je končano: Brez napak',noChanges:'Črkovanje je končano: Nobena beseda ni bila spremenjena',oneChange:'Črkovanje je končano: Spremenjena je bila ena beseda',manyChanges:'Črkovanje je končano: Spremenjenih je bilo %1 besed',ieSpellDownload:'Črkovalnik ni nameščen. Ali ga želite prenesti sedaj?'},smiley:{toolbar:'Smeško',title:'Vstavi smeška',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Oštevilčen seznam',bulletedlist:'Označen seznam',indent:'Povečaj zamik',outdent:'Zmanjšaj zamik',justify:{left:'Leva poravnava',center:'Sredinska poravnava',right:'Desna poravnava',block:'Obojestranska poravnava'},blockquote:'Citat',clipboard:{title:'Prilepi',cutError:'Varnostne nastavitve brskalnika ne dopuščajo samodejnega izrezovanja. Uporabite kombinacijo tipk na tipkovnici (Ctrl/Cmd+X).',copyError:'Varnostne nastavitve brskalnika ne dopuščajo samodejnega kopiranja. Uporabite kombinacijo tipk na tipkovnici (Ctrl/Cmd+C).',pasteMsg:'Prosim prilepite v sleči okvir s pomočjo tipkovnice (<STRONG>Ctrl/Cmd+V</STRONG>) in pritisnite <STRONG>V redu</STRONG>.',securityMsg:'Zaradi varnostnih nastavitev vašega brskalnika urejevalnik ne more neposredno dostopati do odložišča. Vsebino odložišča ponovno prilepite v to okno.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Prilepi iz Worda',title:'Prilepi iz Worda',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Prilepi kot golo besedilo',title:'Prilepi kot golo besedilo'},templates:{button:'Predloge',title:'Vsebinske predloge',options:'Template Options',insertOption:'Zamenjaj trenutno vsebino',selectPromptMsg:'Izberite predlogo, ki jo želite odpreti v urejevalniku<br>(trenutna vsebina bo izgubljena):',emptyListMsg:'(Ni pripravljenih predlog)'},showBlocks:'Prikaži ograde',stylesCombo:{label:'Slog',panelTitle:'Formatting Styles',panelTitle1:'Slogi odstavkov',panelTitle2:'Slogi besedila',panelTitle3:'Slogi objektov'},format:{label:'Oblika',panelTitle:'Oblika',tag_p:'Navaden',tag_pre:'Oblikovan',tag_address:'Napis',tag_h1:'Naslov 1',tag_h2:'Naslov 2',tag_h3:'Naslov 3',tag_h4:'Naslov 4',tag_h5:'Naslov 5',tag_h6:'Naslov 6',tag_div:'Navaden (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Pisava',voiceLabel:'Pisava',panelTitle:'Pisava'},fontSize:{label:'Velikost',voiceLabel:'Velikost',panelTitle:'Velikost'},colorButton:{textColorTitle:'Barva besedila',bgColorTitle:'Barva ozadja',panelTitle:'Colors',auto:'Samodejno',more:'Več barv...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Črkovanje med tipkanjem',opera_title:'Not supported by Opera',enable:'Omogoči SCAYT',disable:'Onemogoči SCAYT',about:'O storitvi SCAYT',toggle:'Preklopi SCAYT',options:'Možnosti',langs:'Jeziki',moreSuggestions:'Več predlogov',ignore:'Prezri',ignoreAll:'Prezri vse',addWord:'Dodaj besedo',emptyDic:'Ime slovarja ne more biti prazno.',noSuggestions:'Ni predlogov',optionsTab:'Možnosti',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Jeziki',dictionariesTab:'Slovarji',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'O storitvi'},about:{title:'O programu CKEditor',dlgTitle:'O programu CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'Za informacijo o licenci prostim obiščite našo spletno stran:',copy:'Copyright © $1. Vse pravice pridržane.'},maximize:'Maksimiraj',minimize:'Minimiraj',fakeobjects:{anchor:'Sidro',flash:'Flash animacija',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Neznan objekt'},resize:'Potegni za spremembo velikosti',colordialog:{title:'Izberi barvo',options:'Color Options',highlight:'Poudarjeno',selected:'Izbrano',clear:'Počisti'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Lastnosti dokumenta',title:'Lastnosti dokumenta',design:'Design',meta:'Meta podatki',chooseColor:'Izberi',other:'<drug>',docTitle:'Naslov strani',charset:'Kodna tabela',charsetOther:'Druga kodna tabela',charsetASCII:'ASCII',charsetCE:'Srednjeevropsko',charsetCT:'Tradicionalno Kitajsko (Big5)',charsetCR:'Cirilica',charsetGR:'Grško',charsetJP:'Japonsko',charsetKR:'Korejsko',charsetTR:'Turško',charsetUN:'Unicode (UTF-8)',charsetWE:'Zahodnoevropsko',docType:'Glava tipa dokumenta',docTypeOther:'Druga glava tipa dokumenta',xhtmlDec:'Vstavi XHTML deklaracije',bgColor:'Barva ozadja',bgImage:'URL slike za ozadje',bgFixed:'Nepremično ozadje',txtColor:'Barva besedila',margin:'Zamiki strani',marginTop:'Na vrhu',marginLeft:'Levo',marginRight:'Desno',marginBottom:'Spodaj',metaKeywords:'Ključne besede (ločene z vejicami)',metaDescription:'Opis strani',metaAuthor:'Avtor',metaCopyright:'Avtorske pravice',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/en-ca.js�����������������������������������������0000664�0001750�0001750�00000041661�12262650742�022326� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang['en-ca']={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Source',newPage:'New Page',save:'Save',preview:'Preview',cut:'Cut',copy:'Copy',paste:'Paste',print:'Print',underline:'Underline',bold:'Bold',italic:'Italic',selectAll:'Select All',removeFormat:'Remove Format',strike:'Strike Through',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Insert Horizontal Line',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Unlink',undo:'Undo',redo:'Redo',common:{browseServer:'Browse Server',url:'URL',protocol:'Protocol',upload:'Upload',uploadSubmit:'Send it to the Server',image:'Image',flash:'Flash',form:'Form',checkbox:'Checkbox',radio:'Radio Button',textField:'Text Field',textarea:'Textarea',hiddenField:'Hidden Field',button:'Button',select:'Selection Field',imageButton:'Image Button',notSet:'<not set>',id:'Id',name:'Name',langDir:'Language Direction',langDirLtr:'Left to Right (LTR)',langDirRtl:'Right to Left (RTL)',langCode:'Language Code',longDescr:'Long Description URL',cssClass:'Stylesheet Classes',advisoryTitle:'Advisory Title',cssStyle:'Style',ok:'OK',cancel:'Cancel',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Advanced',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Width',height:'Height',align:'Align',alignLeft:'Left',alignRight:'Right',alignCenter:'Centre',alignTop:'Top',alignMiddle:'Middle',alignBottom:'Bottom',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Insert Special Character',title:'Select Special Character',options:'Special Character Options'},link:{toolbar:'Link',other:'<other>',menu:'Edit Link',title:'Link',info:'Link Info',target:'Target',upload:'Upload',advanced:'Advanced',type:'Link Type',toUrl:'URL',toAnchor:'Link to anchor in the text',toEmail:'E-mail',targetFrame:'<frame>',targetPopup:'<popup window>',targetFrameName:'Target Frame Name',targetPopupName:'Popup Window Name',popupFeatures:'Popup Window Features',popupResizable:'Resizable',popupStatusBar:'Status Bar',popupLocationBar:'Location Bar',popupToolbar:'Toolbar',popupMenuBar:'Menu Bar',popupFullScreen:'Full Screen (IE)',popupScrollBars:'Scroll Bars',popupDependent:'Dependent (Netscape)',popupLeft:'Left Position',popupTop:'Top Position',id:'Id',langDir:'Language Direction',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',acccessKey:'Access Key',name:'Name',langCode:'Language Code',tabIndex:'Tab Index',advisoryTitle:'Advisory Title',advisoryContentType:'Advisory Content Type',cssClasses:'Stylesheet Classes',charset:'Linked Resource Charset',styles:'Style',rel:'Relationship',selectAnchor:'Select an Anchor',anchorName:'By Anchor Name',anchorId:'By Element Id',emailAddress:'E-Mail Address',emailSubject:'Message Subject',emailBody:'Message Body',noAnchors:'(No anchors available in the document)',noUrl:'Please type the link URL',noEmail:'Please type the e-mail address'},anchor:{toolbar:'Anchor',menu:'Edit Anchor',title:'Anchor Properties',name:'Anchor Name',errorName:'Please type the anchor name',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Find',replace:'Replace',findWhat:'Find what:',replaceWith:'Replace with:',notFoundMsg:'The specified text was not found.',findOptions:'Find Options',matchCase:'Match case',matchWord:'Match whole word',matchCyclic:'Match cyclic',replaceAll:'Replace All',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Table',title:'Table Properties',menu:'Table Properties',deleteTable:'Delete Table',rows:'Rows',columns:'Columns',border:'Border size',widthPx:'pixels',widthPc:'percent',widthUnit:'width unit',cellSpace:'Cell spacing',cellPad:'Cell padding',caption:'Caption',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a number.',invalidCellPadding:'Cell padding must be a number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Delete Cells',merge:'Merge Cells',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Delete Rows'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Delete Columns'}},button:{title:'Button Properties',text:'Text (Value)',type:'Type',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Checkbox Properties',radioTitle:'Radio Button Properties',value:'Value',selected:'Selected'},form:{title:'Form Properties',menu:'Form Properties',action:'Action',method:'Method',encoding:'Encoding'},select:{title:'Selection Field Properties',selectInfo:'Select Info',opAvail:'Available Options',value:'Value',size:'Size',lines:'lines',chkMulti:'Allow multiple selections',opText:'Text',opValue:'Value',btnAdd:'Add',btnModify:'Modify',btnUp:'Up',btnDown:'Down',btnSetValue:'Set as selected value',btnDelete:'Delete'},textarea:{title:'Textarea Properties',cols:'Columns',rows:'Rows'},textfield:{title:'Text Field Properties',name:'Name',value:'Value',charWidth:'Character Width',maxChars:'Maximum Characters',type:'Type',typeText:'Text',typePass:'Password'},hidden:{title:'Hidden Field Properties',name:'Name',value:'Value'},image:{title:'Image Properties',titleButton:'Image Button Properties',menu:'Image Properties',infoTab:'Image Info',btnUpload:'Send it to the Server',upload:'Upload',alt:'Alternative Text',lockRatio:'Lock Ratio',resetSize:'Reset Size',border:'Border',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Please type the image URL',linkTab:'Link',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flash Properties',propertiesTab:'Properties',title:'Flash Properties',chkPlay:'Auto Play',chkLoop:'Loop',chkMenu:'Enable Flash Menu',chkFull:'Allow Fullscreen',scale:'Scale',scaleAll:'Show all',scaleNoBorder:'No Border',scaleFit:'Exact Fit',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs Bottom',alignAbsMiddle:'Abs Middle',alignBaseline:'Baseline',alignTextTop:'Text Top',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Background colour',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'URL must not be empty.',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Check Spelling',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Not in dictionary',changeTo:'Change to',btnIgnore:'Ignore',btnIgnoreAll:'Ignore All',btnReplace:'Replace',btnReplaceAll:'Replace All',btnUndo:'Undo',noSuggestions:'- No suggestions -',progress:'Spell check in progress...',noMispell:'Spell check complete: No misspellings found',noChanges:'Spell check complete: No words changed',oneChange:'Spell check complete: One word changed',manyChanges:'Spell check complete: %1 words changed',ieSpellDownload:'Spell checker not installed. Do you want to download it now?'},smiley:{toolbar:'Smiley',title:'Insert a Smiley',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Insert/Remove Numbered List',bulletedlist:'Insert/Remove Bulleted List',indent:'Increase Indent',outdent:'Decrease Indent',justify:{left:'Align Left',center:'Centre',right:'Align Right',block:'Justify'},blockquote:'Block Quote',clipboard:{title:'Paste',cutError:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).",copyError:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).",pasteMsg:'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Paste from Word',title:'Paste from Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Paste as plain text',title:'Paste as Plain Text'},templates:{button:'Templates',title:'Content Templates',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Please select the template to open in the editor',emptyListMsg:'(No templates defined)'},showBlocks:'Show Blocks',stylesCombo:{label:'Styles',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Paragraph Format',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font Name'},fontSize:{label:'Size',voiceLabel:'Font Size',panelTitle:'Font Size'},colorButton:{textColorTitle:'Text Colour',bgColorTitle:'Background Colour',panelTitle:'Colors',auto:'Automatic',more:'More Colours...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'No suggestions',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Document Properties',title:'Document Properties',design:'Design',meta:'Meta Tags',chooseColor:'Choose',other:'Other...',docTitle:'Page Title',charset:'Character Set Encoding',charsetOther:'Other Character Set Encoding',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Document Type Heading',docTypeOther:'Other Document Type Heading',xhtmlDec:'Include XHTML Declarations',bgColor:'Background Color',bgImage:'Background Image URL',bgFixed:'Non-scrolling (Fixed) Background',txtColor:'Text Color',margin:'Page Margins',marginTop:'Top',marginLeft:'Left',marginRight:'Right',marginBottom:'Bottom',metaKeywords:'Document Indexing Keywords (comma separated)',metaDescription:'Document Description',metaAuthor:'Author',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/zh-cn.js�����������������������������������������0000664�0001750�0001750�00000040605�12262650742�022357� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang['zh-cn']={dir:'ltr',editorTitle:'富文本编辑器,%1',editorHelp:'按 ALT+0 获得帮助',toolbars:'工具栏',editor:'所见即所得编辑器',source:'源码',newPage:'新建',save:'保存',preview:'预览',cut:'剪切',copy:'复制',paste:'粘贴',print:'打印',underline:'下划线',bold:'加粗',italic:'倾斜',selectAll:'全选',removeFormat:'清除格式',strike:'删除线',subscript:'下标',superscript:'上标',horizontalrule:'插入水平线',pagebreak:'插入分页符',pagebreakAlt:'分页符',unlink:'取消超链接',undo:'撤消',redo:'重做',common:{browseServer:'浏览服务器',url:'源文件',protocol:'协议',upload:'上传',uploadSubmit:'上传到服务器上',image:'图象',flash:'Flash',form:'表单',checkbox:'复选框',radio:'单选按钮',textField:'单行文本',textarea:'多行文本',hiddenField:'隐藏域',button:'按钮',select:'列表/菜单',imageButton:'图像域',notSet:'<没有设置>',id:'ID',name:'名称',langDir:'语言方向',langDirLtr:'从左到右 (LTR)',langDirRtl:'从右到左 (RTL)',langCode:'语言代码',longDescr:'详细说明地址',cssClass:'样式类名称',advisoryTitle:'标题',cssStyle:'行内样式',ok:'确定',cancel:'取消',close:'关闭',preview:'预览',generalTab:'常规',advancedTab:'高级',validateNumberFailed:'需要输入数字格式',confirmNewPage:'当前文档内容未保存,是否确认新建文档?',confirmCancel:'部分修改尚未保存,是否确认关闭对话框?',options:'选项',target:'目标窗口',targetNew:'新窗口 (_blank)',targetTop:'整页 (_top)',targetSelf:'本窗口 (_self)',targetParent:'父窗口 (_parent)',langDirLTR:'从左到右 (LTR)',langDirRTL:'从右到左 (RTL)',styles:'样式',cssClasses:'样式类',width:'宽度',height:'高度',align:'对齐方式',alignLeft:'左对齐',alignRight:'右对齐',alignCenter:'居中',alignTop:'顶端',alignMiddle:'居中',alignBottom:'底部',invalidValue:'无效的值。',invalidHeight:'高度必须为数字格式',invalidWidth:'宽度必须为数字格式',invalidCssLength:'该字段必须为合式的CSS长度值,包括单位(px, %, in, cm, mm, em, ex, pt 或 pc)',invalidHtmlLength:'该字段必须为合式的HTML长度值,包括单位(px 或 %)',invalidInlineStyle:'内联样式必须为格式是以分号分隔的一个或多个“属性名 : 属性值”',cssLengthTooltip:'该字段必须为合式的CSS长度值,包括单位(px, %, in, cm, mm, em, ex, pt 或 pc)',unavailable:'%1<span class="cke_accessibility">, 不可用</span>'},contextmenu:{options:'快捷菜单选项'},specialChar:{toolbar:'插入特殊符号',title:'选择特殊符号',options:'特殊符号选项'},link:{toolbar:'插入/编辑超链接',other:'<其他>',menu:'编辑超链接',title:'超链接',info:'超链接信息',target:'目标',upload:'上传',advanced:'高级',type:'超链接类型',toUrl:'地址',toAnchor:'页内锚点链接',toEmail:'电子邮件',targetFrame:'<框架>',targetPopup:'<弹出窗口>',targetFrameName:'目标框架名称',targetPopupName:'弹出窗口名称',popupFeatures:'弹出窗口属性',popupResizable:'可缩放',popupStatusBar:'状态栏',popupLocationBar:'地址栏',popupToolbar:'工具栏',popupMenuBar:'菜单栏',popupFullScreen:'全屏 (IE)',popupScrollBars:'滚动条',popupDependent:'依附 (NS)',popupLeft:'左',popupTop:'右',id:'ID',langDir:'语言方向',langDirLTR:'从左到右 (LTR)',langDirRTL:'从右到左 (RTL)',acccessKey:'访问键',name:'名称',langCode:'语言代码',tabIndex:'Tab 键次序',advisoryTitle:'标题',advisoryContentType:'内容类型',cssClasses:'样式类名称',charset:'字符编码',styles:'行内样式',rel:'关联',selectAnchor:'选择一个锚点',anchorName:'按锚点名称',anchorId:'按锚点 ID',emailAddress:'地址',emailSubject:'主题',emailBody:'内容',noAnchors:'(此文档没有可用的锚点)',noUrl:'请输入超链接地址',noEmail:'请输入电子邮件地址'},anchor:{toolbar:'插入/编辑锚点链接',menu:'锚点链接属性',title:'锚点链接属性',name:'锚点名称',errorName:'请输入锚点名称',remove:'删除锚点'},list:{numberedTitle:'编号列表属性',bulletedTitle:'项目列表属性',type:'标记类型',start:'开始序号',validateStartNumber:'列表开始序号必须为整数格式',circle:'空心圆',disc:'实心圆',square:'实心方块',none:'无标记',notset:'<没有设置>',armenian:'传统的亚美尼亚编号方式',georgian:'传统的乔治亚编号方式(an, ban, gan, 等)',lowerRoman:'小写罗马数字(i, ii, iii, iv, v, 等)',upperRoman:'大写罗马数字(I, II, III, IV, V, 等)',lowerAlpha:'小写英文字母(a, b, c, d, e, 等)',upperAlpha:'大写英文字母(A, B, C, D, E, 等)',lowerGreek:'小写希腊字母(alpha, beta, gamma, 等)',decimal:'数字 (1, 2, 3, 等)',decimalLeadingZero:'0开头的数字标记(01, 02, 03, 等)'},findAndReplace:{title:'查找和替换',find:'查找',replace:'替换',findWhat:'查找:',replaceWith:'替换:',notFoundMsg:'指定文本没有找到',findOptions:'查找选项',matchCase:'区分大小写',matchWord:'全字匹配',matchCyclic:'循环匹配',replaceAll:'全部替换',replaceSuccessMsg:'共完成 %1 处替换.'},table:{toolbar:'表格',title:'表格属性',menu:'表格属性',deleteTable:'删除表格',rows:'行数',columns:'列数',border:'边框',widthPx:'像素',widthPc:'百分比',widthUnit:'宽度单位',cellSpace:'间距',cellPad:'边距',caption:'标题',summary:'摘要',headers:'标题单元格',headersNone:'无',headersColumn:'第一列',headersRow:'第一行',headersBoth:'第一列和第一行',invalidRows:'指定的列数必须大于零',invalidCols:'指定的行数必须大于零',invalidBorder:'边框粗细必须为数字格式',invalidWidth:'表格宽度必须为数字格式',invalidHeight:'表格高度必须为数字格式',invalidCellSpacing:'单元格间距必须为数字格式',invalidCellPadding:'单元格填充必须为数字格式',cell:{menu:'单元格',insertBefore:'在左侧插入单元格',insertAfter:'在右侧插入单元格',deleteCell:'删除单元格',merge:'合并单元格',mergeRight:'向右合并单元格',mergeDown:'向下合并单元格',splitHorizontal:'水平拆分单元格',splitVertical:'垂直拆分单元格',title:'单元格属性',cellType:'单元格类型',rowSpan:'纵跨行数',colSpan:'横跨列数',wordWrap:'自动换行',hAlign:'水平对齐',vAlign:'垂直对齐',alignBaseline:'基线',bgColor:'背景颜色',borderColor:'边框颜色',data:'数据',header:'表头',yes:'是',no:'否',invalidWidth:'单元格宽度必须为数字格式',invalidHeight:'单元格高度必须为数字格式',invalidRowSpan:'行跨度必须为整数格式',invalidColSpan:'列跨度必须为整数格式',chooseColor:'选择'},row:{menu:'行',insertBefore:'在上方插入行',insertAfter:'在下方插入行',deleteRow:'删除行'},column:{menu:'列',insertBefore:'在左侧插入列',insertAfter:'在右侧插入列',deleteColumn:'删除列'}},button:{title:'按钮属性',text:'标签(值)',type:'类型',typeBtn:'按钮',typeSbm:'提交',typeRst:'重设'},checkboxAndRadio:{checkboxTitle:'复选框属性',radioTitle:'单选按钮属性',value:'选定值',selected:'已勾选'},form:{title:'表单属性',menu:'表单属性',action:'动作',method:'方法',encoding:'表单编码'},select:{title:'菜单/列表属性',selectInfo:'选择信息',opAvail:'可选项',value:'值',size:'高度',lines:'行',chkMulti:'允许多选',opText:'选项文本',opValue:'选项值',btnAdd:'添加',btnModify:'修改',btnUp:'上移',btnDown:'下移',btnSetValue:'设为初始选定',btnDelete:'删除'},textarea:{title:'多行文本属性',cols:'字符宽度',rows:'行数'},textfield:{title:'单行文本属性',name:'名称',value:'初始值',charWidth:'字符宽度',maxChars:'最多字符数',type:'类型',typeText:'文本',typePass:'密码'},hidden:{title:'隐藏域属性',name:'名称',value:'初始值'},image:{title:'图象属性',titleButton:'图像域属性',menu:'图象属性',infoTab:'图象',btnUpload:'上传到服务器上',upload:'上传',alt:'替换文本',lockRatio:'锁定比例',resetSize:'原始尺寸',border:'边框大小',hSpace:'水平间距',vSpace:'垂直间距',alertUrl:'请输入图象地址',linkTab:'链接',button2Img:'确定要把当前按钮改变为图像吗?',img2Button:'确定要把当前图像改变为按钮吗?',urlMissing:'缺少图像源文件地址',validateBorder:'边框大小必须为整数格式',validateHSpace:'水平间距必须为整数格式',validateVSpace:'垂直间距必须为整数格式'},flash:{properties:'Flash 属性',propertiesTab:'属性',title:'标题',chkPlay:'自动播放',chkLoop:'循环',chkMenu:'启用 Flash 菜单',chkFull:'启用全屏',scale:'缩放',scaleAll:'全部显示',scaleNoBorder:'无边框',scaleFit:'严格匹配',access:'允许脚本访问',accessAlways:'总是',accessSameDomain:'同域',accessNever:'从不',alignAbsBottom:'绝对底部',alignAbsMiddle:'绝对居中',alignBaseline:'基线',alignTextTop:'文本上方',quality:'质量',qualityBest:'最好',qualityHigh:'高',qualityAutoHigh:'高(自动)',qualityMedium:'中(自动)',qualityAutoLow:'低(自动)',qualityLow:'低',windowModeWindow:'窗体',windowModeOpaque:'不透明',windowModeTransparent:'透明',windowMode:'窗体模式',flashvars:'Flash 变量',bgcolor:'背景颜色',hSpace:'水平间距',vSpace:'垂直间距',validateSrc:'请输入源文件地址',validateHSpace:'水平间距必须为数字格式',validateVSpace:'垂直间距必须为数字格式'},spellCheck:{toolbar:'拼写检查',title:'拼写检查',notAvailable:'抱歉, 服务目前暂不可用',errorLoading:'加载应该服务主机时出错: %s.',notInDic:'没有在字典里',changeTo:'更改为',btnIgnore:'忽略',btnIgnoreAll:'全部忽略',btnReplace:'替换',btnReplaceAll:'全部替换',btnUndo:'撤消',noSuggestions:'- 没有建议 -',progress:'正在进行拼写检查...',noMispell:'拼写检查完成: 没有发现拼写错误',noChanges:'拼写检查完成: 没有更改任何单词',oneChange:'拼写检查完成: 更改了一个单词',manyChanges:'拼写检查完成: 更改了 %1 个单词',ieSpellDownload:'拼写检查插件还没安装, 您是否想现在就下载?'},smiley:{toolbar:'表情符',title:'插入表情图标',options:'表情图标选项'},elementsPath:{eleLabel:'元素路径',eleTitle:'%1 元素'},numberedlist:'编号列表',bulletedlist:'项目列表',indent:'增加缩进量',outdent:'减少缩进量',justify:{left:'左对齐',center:'居中',right:'右对齐',block:'两端对齐'},blockquote:'块引用',clipboard:{title:'粘贴',cutError:'您的浏览器安全设置不允许编辑器自动执行剪切操作, 请使用键盘快捷键(Ctrl/Cmd+X)来完成',copyError:'您的浏览器安全设置不允许编辑器自动执行复制操作, 请使用键盘快捷键(Ctrl/Cmd+C)来完成',pasteMsg:'请使用键盘快捷键(<STRONG>Ctrl/Cmd+V</STRONG>)把内容粘贴到下面的方框里,再按 <STRONG>确定</STRONG>',securityMsg:'因为您的浏览器的安全设置原因, 本编辑器不能直接访问您的剪贴板内容, 你需要在本窗口重新粘贴一次。',pasteArea:'粘贴区域'},pastefromword:{confirmCleanup:'您要粘贴的内容好像是来自 MS Word, 是否要清除 MS Word 格式后再粘贴?',toolbar:'从 MS Word 粘贴',title:'从 MS Word 粘贴',error:'由于内部错误无法清理要粘贴的数据'},pasteText:{button:'粘贴为无格式文本',title:'粘贴为无格式文本'},templates:{button:'模板',title:'内容模板',options:'模板选项',insertOption:'替换当前内容',selectPromptMsg:'请选择编辑器内容模板:',emptyListMsg:'(没有模板)'},showBlocks:'显示区块',stylesCombo:{label:'样式',panelTitle:'样式',panelTitle1:'块级元素样式',panelTitle2:'内联元素样式',panelTitle3:'对象元素样式'},format:{label:'格式',panelTitle:'格式',tag_p:'普通',tag_pre:'已编排格式',tag_address:'地址',tag_h1:'标题 1',tag_h2:'标题 2',tag_h3:'标题 3',tag_h4:'标题 4',tag_h5:'标题 5',tag_h6:'标题 6',tag_div:'段落(DIV)'},div:{title:'创建 DIV 容器',toolbar:'创建 DIV 容器',cssClassInputLabel:'样式类名称',styleSelectLabel:'样式',IdInputLabel:'ID',languageCodeInputLabel:'语言代码',inlineStyleInputLabel:'行内样式',advisoryTitleInputLabel:'标题',langDirLabel:'语言方向',langDirLTRLabel:'从左到右 (LTR)',langDirRTLLabel:'从右到左 (RTL)',edit:'编辑 DIV',remove:'移除 DIV'},iframe:{title:'IFrame 属性',toolbar:'IFrame',noUrl:'请输入框架的 URL',scrolling:'允许滚动条',border:'显示框架边框'},font:{label:'字体',voiceLabel:'字体',panelTitle:'字体'},fontSize:{label:'大小',voiceLabel:'文字大小',panelTitle:'大小'},colorButton:{textColorTitle:'文本颜色',bgColorTitle:'背景颜色',panelTitle:'颜色',auto:'自动',more:'其它颜色...'},colors:{'000':'黑',800000:'褐红','8B4513':'深褐','2F4F4F':'墨绿','008080':'绿松石','000080':'海军蓝','4B0082':'靛蓝',696969:'暗灰',B22222:'砖红',A52A2A:'褐',DAA520:'金黄','006400':'深绿','40E0D0':'蓝绿','0000CD':'中蓝',800080:'紫',808080:'灰',F00:'红',FF8C00:'深橙',FFD700:'金','008000':'绿','0FF':'青','00F':'蓝',EE82EE:'紫罗兰',A9A9A9:'深灰',FFA07A:'亮橙',FFA500:'橙',FFFF00:'黄','00FF00':'水绿',AFEEEE:'粉蓝',ADD8E6:'亮蓝',DDA0DD:'梅红',D3D3D3:'淡灰',FFF0F5:'淡紫红',FAEBD7:'古董白',FFFFE0:'淡黄',F0FFF0:'蜜白',F0FFFF:'天蓝',F0F8FF:'淡蓝',E6E6FA:'淡紫',FFF:'白'},scayt:{title:'即时拼写检查',opera_title:'不支持 Opera 浏览器',enable:'启用即时拼写检查',disable:'禁用即时拼写检查',about:'关于即时拼写检查',toggle:'暂停/启用即时拼写检查',options:'选项',langs:'语言',moreSuggestions:'更多拼写建议',ignore:'忽略',ignoreAll:'全部忽略',addWord:'添加单词',emptyDic:'字典名不应为空.',noSuggestions:'没有建议',optionsTab:'选项',allCaps:'忽略所有大写单词',ignoreDomainNames:'忽略域名',mixedCase:'忽略大小写混合的单词',mixedWithDigits:'忽略带数字的单词',languagesTab:'语言',dictionariesTab:'字典',dic_field_name:'字典名称',dic_create:'创建',dic_restore:'还原',dic_delete:'删除',dic_rename:'重命名',dic_info:'一开始用户词典储存在 Cookie 中, 但是 Cookies 的容量是有限的, 当用户词典增长到超出 Cookie 限制时就无法再储存了, 这时您可以将词典储存到我们的服务器上. 要把您的个人词典到储存到我们的服务器上的话, 需要为您的词典指定一个名称, 如果您在我们的服务器上已经有储存有一个词典, 请输入词典名称并按还原按钮.',aboutTab:'关于'},about:{title:'关于CKEditor',dlgTitle:'关于CKEditor',help:'请访问 $1 以获取帮助.',userGuide:'CKEditor 用户向导',moreInfo:'访问我们的网站以获取更多关于协议的信息',copy:'Copyright © $1. 版权所有。'},maximize:'全屏',minimize:'最小化',fakeobjects:{anchor:'锚点',flash:'Flash 动画',iframe:'IFrame',hiddenfield:'隐藏域',unknown:'未知对象'},resize:'拖拽以改变尺寸',colordialog:{title:'选择颜色',options:'颜色选项',highlight:'高亮',selected:'选择颜色',clear:'清除'},toolbarCollapse:'折叠工具栏',toolbarExpand:'展开工具栏',toolbarGroups:{document:'文档',clipboard:'剪贴板/撤销',editing:'编辑',forms:'表单',basicstyles:'基本格式',paragraph:'段落',links:'链接',insert:'插入',styles:'样式',colors:'颜色',tools:'工具'},bidi:{ltr:'文字方向为从左至右',rtl:'文字方向为从右至左'},docprops:{label:'页面属性',title:'页面属性',design:'设计',meta:'Meta 数据',chooseColor:'选择',other:'<其他>',docTitle:'页面标题',charset:'字符编码',charsetOther:'其它字符编码',charsetASCII:'ASCII',charsetCE:'中欧',charsetCT:'繁体中文 (Big5)',charsetCR:'西里尔文',charsetGR:'希腊文',charsetJP:'日文',charsetKR:'韩文',charsetTR:'土耳其文',charsetUN:'Unicode (UTF-8)',charsetWE:'西欧',docType:'文档类型',docTypeOther:'其它文档类型',xhtmlDec:'包含 XHTML 声明',bgColor:'背景颜色',bgImage:'背景图像',bgFixed:'不滚动背景图像',txtColor:'文本颜色',margin:'页面边距',marginTop:'上',marginLeft:'左',marginRight:'右',marginBottom:'下',metaKeywords:'页面索引关键字 (用半角逗号[,]分隔)',metaDescription:'页面说明',metaAuthor:'作者',metaCopyright:'版权',previewHtml:'<p>这是一些<strong>演示用文字</strong>。您当前正在使用<a href="javascript:void(0)">CKEditor</a>。</p>'}}; ���������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/de.js��������������������������������������������0000664�0001750�0001750�00000045321�12262650742�021730� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.de={dir:'ltr',editorTitle:'WYSIWYG-Editor, %1',editorHelp:'Drücken Sie ALT 0 für Hilfe',toolbars:'Editor Symbolleisten',editor:'WYSIWYG-Editor',source:'Quellcode',newPage:'Neue Seite',save:'Speichern',preview:'Vorschau',cut:'Ausschneiden',copy:'Kopieren',paste:'Einfügen',print:'Drucken',underline:'Unterstrichen',bold:'Fett',italic:'Kursiv',selectAll:'Alles auswählen',removeFormat:'Formatierungen entfernen',strike:'Durchgestrichen',subscript:'Tiefgestellt',superscript:'Hochgestellt',horizontalrule:'Horizontale Linie einfügen',pagebreak:'Seitenumbruch einfügen',pagebreakAlt:'Seitenumbruch einfügen',unlink:'Link entfernen',undo:'Rückgängig',redo:'Wiederherstellen',common:{browseServer:'Server durchsuchen',url:'URL',protocol:'Protokoll',upload:'Hochladen',uploadSubmit:'Zum Server senden',image:'Bild',flash:'Flash',form:'Formular',checkbox:'Checkbox',radio:'Radiobutton',textField:'Textfeld einzeilig',textarea:'Textfeld mehrzeilig',hiddenField:'Verstecktes Feld',button:'Klickbutton',select:'Auswahlfeld',imageButton:'Bildbutton',notSet:'<nichts>',id:'ID',name:'Name',langDir:'Schreibrichtung',langDirLtr:'Links nach Rechts (LTR)',langDirRtl:'Rechts nach Links (RTL)',langCode:'Sprachenkürzel',longDescr:'Langform URL',cssClass:'Stylesheet Klasse',advisoryTitle:'Titel Beschreibung',cssStyle:'Style',ok:'OK',cancel:'Abbrechen',close:'Schließen',preview:'Vorschau',generalTab:'Allgemein',advancedTab:'Erweitert',validateNumberFailed:'Dieser Wert ist keine Nummer.',confirmNewPage:'Alle nicht gespeicherten Änderungen gehen verlohren. Sind Sie sicher die neue Seite zu laden?',confirmCancel:'Einige Optionen wurden geändert. Wollen Sie den Dialog dennoch schließen?',options:'Optionen',target:'Zielseite',targetNew:'Neues Fenster (_blank)',targetTop:'Oberstes Fenster (_top)',targetSelf:'Gleiches Fenster (_self)',targetParent:'Oberes Fenster (_parent)',langDirLTR:'Links nach Rechts (LNR)',langDirRTL:'Rechts nach Links (RNL)',styles:'Style',cssClasses:'Stylesheet Klasse',width:'Breite',height:'Höhe',align:'Ausrichtung',alignLeft:'Links',alignRight:'Rechts',alignCenter:'Zentriert',alignTop:'Oben',alignMiddle:'Mitte',alignBottom:'Unten',invalidValue:'Invalid value.',invalidHeight:'Höhe muss eine Zahl sein.',invalidWidth:'Breite muss eine Zahl sein.',invalidCssLength:'Wert spezifiziert für "%1" Feld muss ein positiver numerischer Wert sein mit oder ohne korrekte CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).',invalidHtmlLength:'Wert spezifiziert für "%1" Feld muss ein positiver numerischer Wert sein mit oder ohne korrekte HTML Messeinheit (px oder %).',invalidInlineStyle:'Wert spezifiziert für inline Stilart muss enthalten ein oder mehr Tupels mit dem Format "Name : Wert" getrennt mit Semikolons.',cssLengthTooltip:'Gebe eine Zahl ein für ein Wert in pixels oder eine Zahl mit einer korrekten CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).',unavailable:'%1<span class="cke_accessibility">, nicht verfügbar</span>'},contextmenu:{options:'Kontextmenü Optionen'},specialChar:{toolbar:'Sonderzeichen einfügen/editieren',title:'Sonderzeichen auswählen',options:'Sonderzeichen Optionen'},link:{toolbar:'Link einfügen/editieren',other:'<andere>',menu:'Link editieren',title:'Link',info:'Link-Info',target:'Zielseite',upload:'Hochladen',advanced:'Erweitert',type:'Link-Typ',toUrl:'URL',toAnchor:'Anker in dieser Seite',toEmail:'E-Mail',targetFrame:'<Frame>',targetPopup:'<Pop-up Fenster>',targetFrameName:'Ziel-Fenster-Name',targetPopupName:'Pop-up Fenster-Name',popupFeatures:'Pop-up Fenster-Eigenschaften',popupResizable:'Größe änderbar',popupStatusBar:'Statusleiste',popupLocationBar:'Adress-Leiste',popupToolbar:'Symbolleiste',popupMenuBar:'Menü-Leiste',popupFullScreen:'Vollbild (IE)',popupScrollBars:'Rollbalken',popupDependent:'Abhängig (Netscape)',popupLeft:'Linke Position',popupTop:'Obere Position',id:'Id',langDir:'Schreibrichtung',langDirLTR:'Links nach Rechts (LTR)',langDirRTL:'Rechts nach Links (RTL)',acccessKey:'Zugriffstaste',name:'Name',langCode:'Sprachenkürzel',tabIndex:'Tab-Index',advisoryTitle:'Titel Beschreibung',advisoryContentType:'Inhaltstyp',cssClasses:'Stylesheet Klasse',charset:'Ziel-Zeichensatz',styles:'Style',rel:'Beziehung',selectAnchor:'Anker auswählen',anchorName:'nach Anker Name',anchorId:'nach Element Id',emailAddress:'E-Mail Adresse',emailSubject:'Betreffzeile',emailBody:'Nachrichtentext',noAnchors:'(keine Anker im Dokument vorhanden)',noUrl:'Bitte geben Sie die Link-URL an',noEmail:'Bitte geben Sie e-Mail Adresse an'},anchor:{toolbar:'Anker einfügen/editieren',menu:'Anker-Eigenschaften',title:'Anker-Eigenschaften',name:'Anker Name',errorName:'Bitte geben Sie den Namen des Ankers ein',remove:'Anker entfernen'},list:{numberedTitle:'Nummerierte Listen-Eigenschaften',bulletedTitle:'Listen-Eigenschaften',type:'Typ',start:'Start',validateStartNumber:'List Startnummer muss eine ganze Zahl sein.',circle:'Ring',disc:'Kreis',square:'Quadrat',none:'Keine',notset:'<nicht gesetzt>',armenian:'Armenisch Nummerierung',georgian:'Georgisch Nummerierung (an, ban, gan, etc.)',lowerRoman:'Klein römisch (i, ii, iii, iv, v, etc.)',upperRoman:'Groß römisch (I, II, III, IV, V, etc.)',lowerAlpha:'Klein alpha (a, b, c, d, e, etc.)',upperAlpha:'Groß alpha (A, B, C, D, E, etc.)',lowerGreek:'Klein griechisch (alpha, beta, gamma, etc.)',decimal:'Dezimal (1, 2, 3, etc.)',decimalLeadingZero:'Dezimal mit führende Null (01, 02, 03, etc.)'},findAndReplace:{title:'Suchen und Ersetzen',find:'Suchen',replace:'Ersetzen',findWhat:'Suche nach:',replaceWith:'Ersetze mit:',notFoundMsg:'Der gesuchte Text wurde nicht gefunden.',findOptions:'Suchoptionen',matchCase:'Groß-Kleinschreibung beachten',matchWord:'Nur ganze Worte suchen',matchCyclic:'Zyklische Suche',replaceAll:'Alle ersetzen',replaceSuccessMsg:'%1 vorkommen ersetzt.'},table:{toolbar:'Tabelle',title:'Tabellen-Eigenschaften',menu:'Tabellen-Eigenschaften',deleteTable:'Tabelle löschen',rows:'Zeile',columns:'Spalte',border:'Rahmen',widthPx:'Pixel',widthPc:'%',widthUnit:'Breite Einheit',cellSpace:'Zellenabstand außen',cellPad:'Zellenabstand innen',caption:'Überschrift',summary:'Inhaltsübersicht',headers:'Kopfzeile',headersNone:'Keine',headersColumn:'Erste Spalte',headersRow:'Erste Zeile',headersBoth:'Beide',invalidRows:'Die Anzahl der Zeilen muß größer als 0 sein.',invalidCols:'Die Anzahl der Spalten muß größer als 0 sein..',invalidBorder:'Die Rahmenbreite muß eine Zahl sein.',invalidWidth:'Die Tabellenbreite muss eine Zahl sein.',invalidHeight:'Die Tabellenbreite muß eine Zahl sein.',invalidCellSpacing:'Der Zellenabstand außen muß eine positive Zahl sein.',invalidCellPadding:'Der Zellenabstand innen muß eine positive Zahl sein.',cell:{menu:'Zelle',insertBefore:'Zelle davor einfügen',insertAfter:'Zelle danach einfügen',deleteCell:'Zelle löschen',merge:'Zellen verbinden',mergeRight:'Nach rechts verbinden',mergeDown:'Nach unten verbinden',splitHorizontal:'Zelle horizontal teilen',splitVertical:'Zelle vertikal teilen',title:'Zellen-Eigenschaften',cellType:'Zellart',rowSpan:'Anzahl Zeilen verbinden',colSpan:'Anzahl Spalten verbinden',wordWrap:'Zeilenumbruch',hAlign:'Horizontale Ausrichtung',vAlign:'Vertikale Ausrichtung',alignBaseline:'Grundlinie',bgColor:'Hintergrundfarbe',borderColor:'Rahmenfarbe',data:'Daten',header:'Überschrift',yes:'Ja',no:'Nein',invalidWidth:'Zellenbreite muß eine Zahl sein.',invalidHeight:'Zellenhöhe muß eine Zahl sein.',invalidRowSpan:'"Anzahl Zeilen verbinden" muss eine Ganzzahl sein.',invalidColSpan:'"Anzahl Spalten verbinden" muss eine Ganzzahl sein.',chooseColor:'Wählen'},row:{menu:'Zeile',insertBefore:'Zeile oberhalb einfügen',insertAfter:'Zeile unterhalb einfügen',deleteRow:'Zeile entfernen'},column:{menu:'Spalte',insertBefore:'Spalte links davor einfügen',insertAfter:'Spalte rechts danach einfügen',deleteColumn:'Spalte löschen'}},button:{title:'Button-Eigenschaften',text:'Text (Wert)',type:'Typ',typeBtn:'Button',typeSbm:'Absenden',typeRst:'Zurücksetzen'},checkboxAndRadio:{checkboxTitle:'Checkbox-Eigenschaften',radioTitle:'Optionsfeld-Eigenschaften',value:'Wert',selected:'ausgewählt'},form:{title:'Formular-Eigenschaften',menu:'Formular-Eigenschaften',action:'Action',method:'Method',encoding:'Zeichenkodierung'},select:{title:'Auswahlfeld-Eigenschaften',selectInfo:'Info',opAvail:'Mögliche Optionen',value:'Wert',size:'Größe',lines:'Linien',chkMulti:'Erlaube Mehrfachauswahl',opText:'Text',opValue:'Wert',btnAdd:'Hinzufügen',btnModify:'Ändern',btnUp:'Hoch',btnDown:'Runter',btnSetValue:'Setze als Standardwert',btnDelete:'Entfernen'},textarea:{title:'Textfeld (mehrzeilig) Eigenschaften',cols:'Spalten',rows:'Reihen'},textfield:{title:'Textfeld (einzeilig) Eigenschaften',name:'Name',value:'Wert',charWidth:'Zeichenbreite',maxChars:'Max. Zeichen',type:'Typ',typeText:'Text',typePass:'Passwort'},hidden:{title:'Verstecktes Feld-Eigenschaften',name:'Name',value:'Wert'},image:{title:'Bild-Eigenschaften',titleButton:'Bildbutton-Eigenschaften',menu:'Bild-Eigenschaften',infoTab:'Bild-Info',btnUpload:'Zum Server senden',upload:'Hochladen',alt:'Alternativer Text',lockRatio:'Größenverhältnis beibehalten',resetSize:'Größe zurücksetzen',border:'Rahmen',hSpace:'Horizontal-Abstand',vSpace:'Vertikal-Abstand',alertUrl:'Bitte geben Sie die Bild-URL an',linkTab:'Link',button2Img:'Möchten Sie den gewählten Bild-Button in ein einfaches Bild umwandeln?',img2Button:'Möchten Sie das gewählten Bild in einen Bild-Button umwandeln?',urlMissing:'Imagequelle URL fehlt.',validateBorder:'Rahmen muß eine ganze Zahl sein.',validateHSpace:'Horizontal-Abstand muß eine ganze Zahl sein.',validateVSpace:'Vertikal-Abstand muß eine ganze Zahl sein.'},flash:{properties:'Flash-Eigenschaften',propertiesTab:'Eigenschaften',title:'Flash-Eigenschaften',chkPlay:'Automatisch Abspielen',chkLoop:'Endlosschleife',chkMenu:'Flash-Menü aktivieren',chkFull:'Vollbildmodus erlauben',scale:'Skalierung',scaleAll:'Alles anzeigen',scaleNoBorder:'Ohne Rand',scaleFit:'Passgenau',access:'Skript Zugang',accessAlways:'Immer',accessSameDomain:'Gleiche Domain',accessNever:'Nie',alignAbsBottom:'Abs Unten',alignAbsMiddle:'Abs Mitte',alignBaseline:'Baseline',alignTextTop:'Text Oben',quality:'Qualität',qualityBest:'Beste',qualityHigh:'Hoch',qualityAutoHigh:'Auto Hoch',qualityMedium:'Medium',qualityAutoLow:'Auto Niedrig',qualityLow:'Niedrig',windowModeWindow:'Fenster',windowModeOpaque:'Deckend',windowModeTransparent:'Transparent',windowMode:'Fenster Modus',flashvars:'Variablen für Flash',bgcolor:'Hintergrundfarbe',hSpace:'Horizontal-Abstand',vSpace:'Vertikal-Abstand',validateSrc:'Bitte geben Sie die Link-URL an',validateHSpace:'HSpace muss eine Zahl sein.',validateVSpace:'VSpace muss eine Zahl sein.'},spellCheck:{toolbar:'Rechtschreibprüfung',title:'Rechtschreibprüfung',notAvailable:'Entschuldigung, aber dieser Dienst steht im Moment nicht zur Verfügung.',errorLoading:'Fehler beim laden des Dienstanbieters: %s.',notInDic:'Nicht im Wörterbuch',changeTo:'Ändern in',btnIgnore:'Ignorieren',btnIgnoreAll:'Alle Ignorieren',btnReplace:'Ersetzen',btnReplaceAll:'Alle Ersetzen',btnUndo:'Rückgängig',noSuggestions:' - keine Vorschläge - ',progress:'Rechtschreibprüfung läuft...',noMispell:'Rechtschreibprüfung abgeschlossen - keine Fehler gefunden',noChanges:'Rechtschreibprüfung abgeschlossen - keine Worte geändert',oneChange:'Rechtschreibprüfung abgeschlossen - ein Wort geändert',manyChanges:'Rechtschreibprüfung abgeschlossen - %1 Wörter geändert',ieSpellDownload:'Rechtschreibprüfung nicht installiert. Möchten Sie sie jetzt herunterladen?'},smiley:{toolbar:'Smiley',title:'Smiley auswählen',options:'Smiley Optionen'},elementsPath:{eleLabel:'Elements Pfad',eleTitle:'%1 Element'},numberedlist:'Nummerierte Liste',bulletedlist:'Liste',indent:'Einzug erhöhen',outdent:'Einzug verringern',justify:{left:'Linksbündig',center:'Zentriert',right:'Rechtsbündig',block:'Blocksatz'},blockquote:'Zitatblock',clipboard:{title:'Einfügen',cutError:'Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch auszuschneiden. Bitte benutzen Sie die System-Zwischenablage über STRG-X (ausschneiden) und STRG-V (einfügen).',copyError:'Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch kopieren. Bitte benutzen Sie die System-Zwischenablage über STRG-C (kopieren).',pasteMsg:'Bitte fügen Sie den Text in der folgenden Box über die Tastatur (mit <STRONG>Strg+V</STRONG>) ein und bestätigen Sie mit <STRONG>OK</STRONG>.',securityMsg:'Aufgrund von Sicherheitsbeschränkungen Ihres Browsers kann der Editor nicht direkt auf die Zwischenablage zugreifen. Bitte fügen Sie den Inhalt erneut in diesem Fenster ein.',pasteArea:'Einfügebereich'},pastefromword:{confirmCleanup:'Der Text, den Sie einfügen möchten, scheint aus MS-Word kopiert zu sein. Möchten Sie ihn zuvor bereinigen lassen?',toolbar:'Aus MS-Word einfügen',title:'Aus MS-Word einfügen',error:'Aufgrund eines internen Fehlers war es nicht möglich die eingefügten Daten zu bereinigen'},pasteText:{button:'Als Text einfügen',title:'Als Text einfügen'},templates:{button:'Vorlagen',title:'Vorlagen',options:'Vorlagen Optionen',insertOption:'Aktuellen Inhalt ersetzen',selectPromptMsg:'Klicken Sie auf eine Vorlage, um sie im Editor zu öffnen (der aktuelle Inhalt wird dabei gelöscht!):',emptyListMsg:'(keine Vorlagen definiert)'},showBlocks:'Blöcke anzeigen',stylesCombo:{label:'Stil',panelTitle:'Formatierungenstil',panelTitle1:'Block Stilart',panelTitle2:'Inline Stilart',panelTitle3:'Objekt Stilart'},format:{label:'Format',panelTitle:'Format',tag_p:'Normal',tag_pre:'Formatiert',tag_address:'Addresse',tag_h1:'Überschrift 1',tag_h2:'Überschrift 2',tag_h3:'Überschrift 3',tag_h4:'Überschrift 4',tag_h5:'Überschrift 5',tag_h6:'Überschrift 6',tag_div:'Normal (DIV)'},div:{title:'Div Container erzeugen',toolbar:'Div Container erzeugen',cssClassInputLabel:'Stylesheet Klasse',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:'Sprachenkürzel',inlineStyleInputLabel:'Inline Stil',advisoryTitleInputLabel:'Tooltip',langDirLabel:'Sprache Richtung',langDirLTRLabel:'Links nach Rechs (LTR)',langDirRTLLabel:'Rechs nach Links (RTL)',edit:'Div bearbeiten',remove:'Div entfernen'},iframe:{title:'IFrame-Eigenschaften',toolbar:'IFrame',noUrl:'Bitte geben Sie die IFrame-URL an',scrolling:'Rollbalken anzeigen',border:'Rahmen anzeigen'},font:{label:'Schriftart',voiceLabel:'Schriftart',panelTitle:'Schriftart'},fontSize:{label:'Größe',voiceLabel:'Schrifgröße',panelTitle:'Größe'},colorButton:{textColorTitle:'Textfarbe',bgColorTitle:'Hintergrundfarbe',panelTitle:'Farben',auto:'Automatisch',more:'Weitere Farben...'},colors:{'000':'Schwarz',800000:'Kastanienbraun','8B4513':'Braun','2F4F4F':'Dunkles Schiefergrau','008080':'Blaugrün','000080':'Navy','4B0082':'Indigo',696969:'Dunkelgrau',B22222:'Ziegelrot',A52A2A:'Braun',DAA520:'Goldgelb','006400':'Dunkelgrün','40E0D0':'Türkis','0000CD':'Medium Blau',800080:'Lila',808080:'Grau',F00:'Rot',FF8C00:'Dunkelorange',FFD700:'Gold','008000':'Grün','0FF':'Cyan','00F':'Blau',EE82EE:'Hellviolett',A9A9A9:'Dunkelgrau',FFA07A:'Helles Lachsrosa',FFA500:'Orange',FFFF00:'Gelb','00FF00':'Lime',AFEEEE:'Blaß-Türkis',ADD8E6:'Hellblau',DDA0DD:'Pflaumenblau',D3D3D3:'Hellgrau',FFF0F5:'Lavendel',FAEBD7:'Antik Weiß',FFFFE0:'Hellgelb',F0FFF0:'Honigtau',F0FFFF:'Azurblau',F0F8FF:'Alice Blau',E6E6FA:'Lavendel',FFF:'Weiß'},scayt:{title:'Rechtschreibprüfung während der Texteingabe (SCAYT)',opera_title:'Nicht von Opera unterstützt',enable:'SCAYT einschalten',disable:'SCAYT ausschalten',about:'Über SCAYT',toggle:'SCAYT umschalten',options:'Optionen',langs:'Sprachen',moreSuggestions:'Mehr Vorschläge',ignore:'Ignorieren',ignoreAll:'Alle ignorieren',addWord:'Wort hinzufügen',emptyDic:'Wörterbuchname sollte leer sein.',noSuggestions:'keine Vorschläge',optionsTab:'Optionen',allCaps:'Groß geschriebenen Wörter ignorieren',ignoreDomainNames:'Domain-Namen ignorieren',mixedCase:'Wörter mit gemischte Setzkasten ignorieren',mixedWithDigits:'Wörter mit Zahlen ignorieren',languagesTab:'Sprachen',dictionariesTab:'Wörterbücher',dic_field_name:'Wörterbuchname',dic_create:'Erzeugen',dic_restore:'Wiederherstellen',dic_delete:'Löschen',dic_rename:'Umbenennen',dic_info:'Anfangs wird das Benutzerwörterbuch in einem Cookie gespeichert. Allerdings sind Cookies in der Größe begrenzt. Wenn das Benutzerwörterbuch bis zu einem Punkt wächst, wo es nicht mehr in einem Cookie gespeichert werden kann, wird das Benutzerwörterbuch auf dem Server gespeichert. Um Ihr persönliches Wörterbuch auf dem Server zu speichern, müssen Sie einen Namen für das Wörterbuch angeben. Falls Sie schon ein gespeicherte Wörterbuch haben, geben Sie bitte dessen Namen ein und klicken Sie auf die Schaltfläche Wiederherstellen.',aboutTab:'Über'},about:{title:'Über CKEditor',dlgTitle:'Über CKEditor',help:'Prüfe $1 für Hilfe.',userGuide:'CKEditor Benutzerhandbuch',moreInfo:'Für Informationen über unsere Lizenzbestimmungen besuchen sie bitte unsere Webseite:',copy:'Copyright © $1. Alle Rechte vorbehalten.'},maximize:'Maximieren',minimize:'Minimieren',fakeobjects:{anchor:'Anker',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Verstecktes Feld',unknown:'Unbekanntes Objekt'},resize:'Zum Vergrößern ziehen',colordialog:{title:'Farbe wählen',options:'Farbeoptionen',highlight:'Hervorheben',selected:'Ausgewählte Farbe',clear:'Entfernen'},toolbarCollapse:'Symbolleiste einklappen',toolbarExpand:'Symbolleiste ausklappen',toolbarGroups:{document:'Dokument',clipboard:'Zwischenablage/Rückgängig',editing:'Editieren',forms:'Formularen',basicstyles:'Grundstile',paragraph:'Absatz',links:'Links',insert:'Einfügen',styles:'Stile',colors:'Farben',tools:'Werkzeuge'},bidi:{ltr:'Leserichtung von Links nach Rechts',rtl:'Leserichtung von Rechts nach Links'},docprops:{label:'Dokument-Eigenschaften',title:'Dokument-Eigenschaften',design:'Design',meta:'Metadaten',chooseColor:'Wählen',other:'<andere>',docTitle:'Seitentitel',charset:'Zeichenkodierung',charsetOther:'Andere Zeichenkodierung',charsetASCII:'ASCII',charsetCE:'Zentraleuropäisch',charsetCT:'traditionell Chinesisch (Big5)',charsetCR:'Kyrillisch',charsetGR:'Griechisch',charsetJP:'Japanisch',charsetKR:'Koreanisch',charsetTR:'Türkisch',charsetUN:'Unicode (UTF-8)',charsetWE:'Westeuropäisch',docType:'Dokumententyp',docTypeOther:'Anderer Dokumententyp',xhtmlDec:'Beziehe XHTML Deklarationen ein',bgColor:'Hintergrundfarbe',bgImage:'Hintergrundbild URL',bgFixed:'feststehender Hintergrund',txtColor:'Textfarbe',margin:'Seitenränder',marginTop:'Oben',marginLeft:'Links',marginRight:'Rechts',marginBottom:'Unten',metaKeywords:'Schlüsselwörter (durch Komma getrennt)',metaDescription:'Dokument-Beschreibung',metaAuthor:'Autor',metaCopyright:'Copyright',previewHtml:'<p>Das ist ein <strong>Beispieltext</strong>. Du schreibst in <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ko.js��������������������������������������������0000664�0001750�0001750�00000043104�12262650742�021746� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.ko={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'소스',newPage:'새 문서',save:'저장하기',preview:'미리보기',cut:'잘라내기',copy:'복사하기',paste:'붙여넣기',print:'인쇄하기',underline:'밑줄',bold:'진하게',italic:'이텔릭',selectAll:'전체선택',removeFormat:'포맷 지우기',strike:'취소선',subscript:'아래 첨자',superscript:'위 첨자',horizontalrule:'수평선 삽입',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'링크 삭제',undo:'취소',redo:'재실행',common:{browseServer:'서버 보기',url:'URL',protocol:'프로토콜',upload:'업로드',uploadSubmit:'서버로 전송',image:'이미지',flash:'플래쉬',form:'폼',checkbox:'체크박스',radio:'라디오버튼',textField:'입력필드',textarea:'입력영역',hiddenField:'숨김필드',button:'버튼',select:'펼침목록',imageButton:'이미지버튼',notSet:'<설정되지 않음>',id:'ID',name:'Name',langDir:'쓰기 방향',langDirLtr:'왼쪽에서 오른쪽 (LTR)',langDirRtl:'오른쪽에서 왼쪽 (RTL)',langCode:'언어 코드',longDescr:'URL 설명',cssClass:'Stylesheet Classes',advisoryTitle:'Advisory Title',cssStyle:'Style',ok:'예',cancel:'아니오',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'자세히',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'너비',height:'높이',align:'정렬',alignLeft:'왼쪽',alignRight:'오른쪽',alignCenter:'가운데',alignTop:'위',alignMiddle:'중간',alignBottom:'아래',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'특수문자 삽입',title:'특수문자 선택',options:'Special Character Options'},link:{toolbar:'링크 삽입/변경',other:'<기타>',menu:'링크 수정',title:'링크',info:'링크 정보',target:'타겟',upload:'업로드',advanced:'자세히',type:'링크 종류',toUrl:'URL',toAnchor:'책갈피',toEmail:'이메일',targetFrame:'<프레임>',targetPopup:'<팝업창>',targetFrameName:'타겟 프레임 이름',targetPopupName:'팝업창 이름',popupFeatures:'팝업창 설정',popupResizable:'Resizable',popupStatusBar:'상태바',popupLocationBar:'주소표시줄',popupToolbar:'툴바',popupMenuBar:'메뉴바',popupFullScreen:'전체화면 (IE)',popupScrollBars:'스크롤바',popupDependent:'Dependent (Netscape)',popupLeft:'왼쪽 위치',popupTop:'윗쪽 위치',id:'Id',langDir:'쓰기 방향',langDirLTR:'왼쪽에서 오른쪽 (LTR)',langDirRTL:'오른쪽에서 왼쪽 (RTL)',acccessKey:'엑세스 키',name:'Name',langCode:'쓰기 방향',tabIndex:'탭 순서',advisoryTitle:'Advisory Title',advisoryContentType:'Advisory Content Type',cssClasses:'Stylesheet Classes',charset:'Linked Resource Charset',styles:'Style',rel:'Relationship',selectAnchor:'책갈피 선택',anchorName:'책갈피 이름',anchorId:'책갈피 ID',emailAddress:'이메일 주소',emailSubject:'제목',emailBody:'내용',noAnchors:'(문서에 책갈피가 없습니다.)',noUrl:'링크 URL을 입력하십시요.',noEmail:'이메일주소를 입력하십시요.'},anchor:{toolbar:'책갈피 삽입/변경',menu:'책갈피 속성',title:'책갈피 속성',name:'책갈피 이름',errorName:'책갈피 이름을 입력하십시요.',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'찾기 & 바꾸기',find:'찾기',replace:'바꾸기',findWhat:'찾을 문자열:',replaceWith:'바꿀 문자열:',notFoundMsg:'문자열을 찾을 수 없습니다.',findOptions:'Find Options',matchCase:'대소문자 구분',matchWord:'온전한 단어',matchCyclic:'Match cyclic',replaceAll:'모두 바꾸기',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'표',title:'표 설정',menu:'표 설정',deleteTable:'표 삭제',rows:'가로줄',columns:'세로줄',border:'테두리 크기',widthPx:'픽셀',widthPc:'퍼센트',widthUnit:'width unit',cellSpace:'셀 간격',cellPad:'셀 여백',caption:'캡션',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'셀/칸(Cell)',insertBefore:'앞에 셀/칸 삽입',insertAfter:'뒤에 셀/칸 삽입',deleteCell:'셀 삭제',merge:'셀 합치기',mergeRight:'오른쪽 뭉치기',mergeDown:'왼쪽 뭉치기',splitHorizontal:'수평 나누기',splitVertical:'수직 나누기',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'행(Row)',insertBefore:'앞에 행 삽입',insertAfter:'뒤에 행 삽입',deleteRow:'가로줄 삭제'},column:{menu:'열(Column)',insertBefore:'앞에 열 삽입',insertAfter:'뒤에 열 삽입',deleteColumn:'세로줄 삭제'}},button:{title:'버튼 속성',text:'버튼글자(값)',type:'버튼종류',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'체크박스 속성',radioTitle:'라디오버튼 속성',value:'값',selected:'선택됨'},form:{title:'폼 속성',menu:'폼 속성',action:'실행경로(Action)',method:'방법(Method)',encoding:'Encoding'},select:{title:'펼침목록 속성',selectInfo:'정보',opAvail:'선택옵션',value:'값',size:'세로크기',lines:'줄',chkMulti:'여러항목 선택 허용',opText:'이름',opValue:'값',btnAdd:'추가',btnModify:'변경',btnUp:'위로',btnDown:'아래로',btnSetValue:'선택된것으로 설정',btnDelete:'삭제'},textarea:{title:'입력영역 속성',cols:'칸수',rows:'줄수'},textfield:{title:'입력필드 속성',name:'이름',value:'값',charWidth:'글자 너비',maxChars:'최대 글자수',type:'종류',typeText:'문자열',typePass:'비밀번호'},hidden:{title:'숨김필드 속성',name:'이름',value:'값'},image:{title:'이미지 설정',titleButton:'이미지버튼 속성',menu:'이미지 설정',infoTab:'이미지 정보',btnUpload:'서버로 전송',upload:'업로드',alt:'이미지 설명',lockRatio:'비율 유지',resetSize:'원래 크기로',border:'테두리',hSpace:'수평여백',vSpace:'수직여백',alertUrl:'이미지 URL을 입력하십시요',linkTab:'링크',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'플래쉬 속성',propertiesTab:'Properties',title:'플래쉬 등록정보',chkPlay:'자동재생',chkLoop:'반복',chkMenu:'플래쉬메뉴 가능',chkFull:'Allow Fullscreen',scale:'영역',scaleAll:'모두보기',scaleNoBorder:'경계선없음',scaleFit:'영역자동조절',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'줄아래(Abs Bottom)',alignAbsMiddle:'줄중간(Abs Middle)',alignBaseline:'기준선',alignTextTop:'글자상단',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'배경 색상',hSpace:'수평여백',vSpace:'수직여백',validateSrc:'링크 URL을 입력하십시요.',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'철자검사',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'사전에 없는 단어',changeTo:'변경할 단어',btnIgnore:'건너뜀',btnIgnoreAll:'모두 건너뜀',btnReplace:'변경',btnReplaceAll:'모두 변경',btnUndo:'취소',noSuggestions:'- 추천단어 없음 -',progress:'철자검사를 진행중입니다...',noMispell:'철자검사 완료: 잘못된 철자가 없습니다.',noChanges:'철자검사 완료: 변경된 단어가 없습니다.',oneChange:'철자검사 완료: 단어가 변경되었습니다.',manyChanges:'철자검사 완료: %1 단어가 변경되었습니다.',ieSpellDownload:'철자 검사기가 철치되지 않았습니다. 지금 다운로드하시겠습니까?'},smiley:{toolbar:'아이콘',title:'아이콘 삽입',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'순서있는 목록',bulletedlist:'순서없는 목록',indent:'들여쓰기',outdent:'내어쓰기',justify:{left:'왼쪽 정렬',center:'가운데 정렬',right:'오른쪽 정렬',block:'양쪽 맞춤'},blockquote:'Block Quote',clipboard:{title:'붙여넣기',cutError:'브라우저의 보안설정때문에 잘라내기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl/Cmd+X).',copyError:'브라우저의 보안설정때문에 복사하기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl/Cmd+C).',pasteMsg:'키보드의 (<STRONG>Ctrl/Cmd+V</STRONG>) 를 이용해서 상자안에 붙여넣고 <STRONG>OK</STRONG> 를 누르세요.',securityMsg:'브러우저 보안 설정으로 인해, 클립보드의 자료를 직접 접근할 수 없습니다. 이 창에 다시 붙여넣기 하십시오.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'MS Word 형식에서 붙여넣기',title:'MS Word 형식에서 붙여넣기',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'텍스트로 붙여넣기',title:'텍스트로 붙여넣기'},templates:{button:'템플릿',title:'내용 템플릿',options:'Template Options',insertOption:'현재 내용 바꾸기',selectPromptMsg:'에디터에서 사용할 템플릿을 선택하십시요.<br>(지금까지 작성된 내용은 사라집니다.):',emptyListMsg:'(템플릿이 없습니다.)'},showBlocks:'Show Blocks',stylesCombo:{label:'스타일',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'포맷',panelTitle:'포맷',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'폰트',voiceLabel:'Font',panelTitle:'폰트'},fontSize:{label:'글자 크기',voiceLabel:'Font Size',panelTitle:'글자 크기'},colorButton:{textColorTitle:'글자 색상',bgColorTitle:'배경 색상',panelTitle:'Colors',auto:'기본색상',more:'색상선택...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'추천단어 없음',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'문서 속성',title:'문서 속성',design:'Design',meta:'메타데이터',chooseColor:'Choose',other:'<기타>',docTitle:'페이지명',charset:'캐릭터셋 인코딩',charsetOther:'다른 캐릭터셋 인코딩',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'문서 헤드',docTypeOther:'다른 문서헤드',xhtmlDec:'XHTML 문서정의 포함',bgColor:'배경색상',bgImage:'배경이미지 URL',bgFixed:'스크롤되지않는 배경',txtColor:'글자 색상',margin:'페이지 여백',marginTop:'위',marginLeft:'왼쪽',marginRight:'오른쪽',marginBottom:'아래',metaKeywords:'문서 키워드 (콤마로 구분)',metaDescription:'문서 설명',metaAuthor:'작성자',metaCopyright:'저작권',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/sv.js��������������������������������������������0000664�0001750�0001750�00000042627�12262650742�021776� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.sv={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Tryck ALT 0 för hjälp',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Källa',newPage:'Ny sida',save:'Spara',preview:'Förhandsgranska',cut:'Klipp ut',copy:'Kopiera',paste:'Klistra in',print:'Skriv ut',underline:'Understruken',bold:'Fet',italic:'Kursiv',selectAll:'Markera allt',removeFormat:'Radera formatering',strike:'Genomstruken',subscript:'Nedsänkta tecken',superscript:'Upphöjda tecken',horizontalrule:'Infoga horisontal linje',pagebreak:'Infoga sidbrytning',pagebreakAlt:'Sidbrytning',unlink:'Radera länk',undo:'Ångra',redo:'Gör om',common:{browseServer:'Bläddra på server',url:'URL',protocol:'Protokoll',upload:'Ladda upp',uploadSubmit:'Skicka till server',image:'Bild',flash:'Flash',form:'Formulär',checkbox:'Kryssruta',radio:'Alternativknapp',textField:'Textfält',textarea:'Textruta',hiddenField:'Dolt fält',button:'Knapp',select:'Flervalslista',imageButton:'Bildknapp',notSet:'<ej angivet>',id:'Id',name:'Namn',langDir:'Språkriktning',langDirLtr:'Vänster till Höger (VTH)',langDirRtl:'Höger till Vänster (HTV)',langCode:'Språkkod',longDescr:'URL-beskrivning',cssClass:'Stilmall',advisoryTitle:'Titel',cssStyle:'Stilmall',ok:'OK',cancel:'Avbryt',close:'Stäng',preview:'Förhandsgranska',generalTab:'Allmänt',advancedTab:'Avancerad',validateNumberFailed:'Värdet är inte ett nummer.',confirmNewPage:'Alla ändringar i innehållet kommer att förloras. Är du säker på att du vill ladda en ny sida?',confirmCancel:'Några av de alternativ har ändrats. Är du säker på att stänga dialogrutan?',options:'Alternativ',target:'Mål',targetNew:'Nytt fönster (_blank)',targetTop:'Översta fönstret (_top)',targetSelf:'Samma fönster (_self)',targetParent:'Föregående fönster (_parent)',langDirLTR:'Vänster till höger (LTR)',langDirRTL:'Höger till vänster (RTL)',styles:'Stil',cssClasses:'Stilmallar',width:'Bredd',height:'Höjd',align:'Justering',alignLeft:'Vänster',alignRight:'Höger',alignCenter:'Centrerad',alignTop:'Överkant',alignMiddle:'Mitten',alignBottom:'Nederkant',invalidValue:'Invalid value.',invalidHeight:'Höjd måste vara ett nummer.',invalidWidth:'Bredd måste vara ett nummer.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, Ej tillgänglig</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Klistra in utökat tecken',title:'Välj utökat tecken',options:'Special Character Options'},link:{toolbar:'Infoga/Redigera länk',other:'<annan>',menu:'Redigera länk',title:'Länk',info:'Länkinformation',target:'Mål',upload:'Ladda upp',advanced:'Avancerad',type:'Länktyp',toUrl:'URL',toAnchor:'Ankare i sidan',toEmail:'E-post',targetFrame:'<ram>',targetPopup:'<popup-fönster>',targetFrameName:'Målets ramnamn',targetPopupName:'Popup-fönstrets namn',popupFeatures:'Popup-fönstrets egenskaper',popupResizable:'Resizable',popupStatusBar:'Statusfält',popupLocationBar:'Adressfält',popupToolbar:'Verktygsfält',popupMenuBar:'Menyfält',popupFullScreen:'Helskärm (endast IE)',popupScrollBars:'Scrolllista',popupDependent:'Beroende (endast Netscape)',popupLeft:'Position från vänster',popupTop:'Position från sidans topp',id:'Id',langDir:'Språkriktning',langDirLTR:'Vänster till höger (VTH)',langDirRTL:'Höger till vänster (HTV)',acccessKey:'Behörighetsnyckel',name:'Namn',langCode:'Språkriktning',tabIndex:'Tabindex',advisoryTitle:'Titel',advisoryContentType:'Innehållstyp',cssClasses:'Stylesheet class',charset:'Teckenuppställning',styles:'Stilmall',rel:'Relationship',selectAnchor:'Välj ett ankare',anchorName:'efter ankarnamn',anchorId:'efter objektid',emailAddress:'E-postadress',emailSubject:'Ämne',emailBody:'Innehåll',noAnchors:'(Inga ankare kunde hittas)',noUrl:'Var god ange länkens URL',noEmail:'Var god ange E-postadress'},anchor:{toolbar:'Infoga/Redigera ankarlänk',menu:'Egenskaper för ankarlänk',title:'Egenskaper för ankarlänk',name:'Ankarnamn',errorName:'Var god ange ett ankarnamn',remove:'Remove Anchor'},list:{numberedTitle:'Egenskaper för punktlista',bulletedTitle:'Egenskaper för punktlista',type:'Typ',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Cirkel',disc:'Disk',square:'Fyrkant',none:'Ingen',notset:'<ej angiven>',armenian:'Armenisk numrering',georgian:'Georgisk numrering (an, ban, gan, etc.)',lowerRoman:'Romerska gemener (i, ii, iii, iv, v, etc.)',upperRoman:'Romerska versaler (I, II, III, IV, V, etc.)',lowerAlpha:'Alpha gemener (a, b, c, d, e, etc.)',upperAlpha:'Alpha versaler (A, B, C, D, E, etc.)',lowerGreek:'Grekiska gemener (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal nolla (01, 02, 03, etc.)'},findAndReplace:{title:'Sök och ersätt',find:'Sök',replace:'Ersätt',findWhat:'Sök efter:',replaceWith:'Ersätt med:',notFoundMsg:'Angiven text kunde ej hittas.',findOptions:'Find Options',matchCase:'Skiftläge',matchWord:'Inkludera hela ord',matchCyclic:'Matcha cykliska',replaceAll:'Ersätt alla',replaceSuccessMsg:'%1 förekomst(er) ersatta.'},table:{toolbar:'Tabell',title:'Tabellegenskaper',menu:'Tabellegenskaper',deleteTable:'Radera tabell',rows:'Rader',columns:'Kolumner',border:'Kantstorlek',widthPx:'pixlar',widthPc:'procent',widthUnit:'enhet bredd',cellSpace:'Cellavstånd',cellPad:'Cellutfyllnad',caption:'Rubrik',summary:'Sammanfattning',headers:'Ruberiker',headersNone:'Ingen',headersColumn:'Första kolumnen',headersRow:'Första raden',headersBoth:'Båda',invalidRows:'Antal rader måste vara större än 0.',invalidCols:'Antal kolumner måste vara ett nummer större än 0.',invalidBorder:'Ram måste vara ett nummer.',invalidWidth:'Tabell måste vara ett nummer.',invalidHeight:'Tabellens höjd måste vara ett nummer.',invalidCellSpacing:'Luft i cell måste vara ett nummer.',invalidCellPadding:'Luft i cell måste vara ett nummer.',cell:{menu:'Cell',insertBefore:'Lägg till cell före',insertAfter:'Lägg till cell efter',deleteCell:'Radera celler',merge:'Sammanfoga celler',mergeRight:'Sammanfoga höger',mergeDown:'Sammanfoga ner',splitHorizontal:'Dela cell horisontellt',splitVertical:'Dela cell vertikalt',title:'Egenskaper för cell',cellType:'Celltyp',rowSpan:'Rad spann',colSpan:'Kolumnen spann',wordWrap:'Radbrytning',hAlign:'Horisontell justering',vAlign:'Vertikal justering',alignBaseline:'Baslinje',bgColor:'Bakgrundsfärg',borderColor:'Ramfärg',data:'Data',header:'Rubrik',yes:'Ja',no:'Nej',invalidWidth:'Cellens bredd måste vara ett nummer.',invalidHeight:'Cellens höjd måste vara ett nummer.',invalidRowSpan:'Radutvidgning måste vara ett heltal.',invalidColSpan:'Kolumn måste vara ett heltal.',chooseColor:'Välj'},row:{menu:'Rad',insertBefore:'Lägg till Rad Före',insertAfter:'Lägg till rad efter',deleteRow:'Radera rad'},column:{menu:'Kolumn',insertBefore:'Lägg till kolumn före',insertAfter:'Lägg till kolumn efter',deleteColumn:'Radera kolumn'}},button:{title:'Egenskaper för knapp',text:'Text (värde)',type:'Typ',typeBtn:'Knapp',typeSbm:'Skicka',typeRst:'Återställ'},checkboxAndRadio:{checkboxTitle:'Egenskaper för kryssruta',radioTitle:'Egenskaper för alternativknapp',value:'Värde',selected:'Vald'},form:{title:'Egenskaper för formulär',menu:'Egenskaper för formulär',action:'Funktion',method:'Metod',encoding:'Kodning'},select:{title:'Egenskaper för flervalslista',selectInfo:'Information',opAvail:'Befintliga val',value:'Värde',size:'Storlek',lines:'Linjer',chkMulti:'Tillåt flerval',opText:'Text',opValue:'Värde',btnAdd:'Lägg till',btnModify:'Redigera',btnUp:'Upp',btnDown:'Ner',btnSetValue:'Markera som valt värde',btnDelete:'Radera'},textarea:{title:'Egenskaper för textruta',cols:'Kolumner',rows:'Rader'},textfield:{title:'Egenskaper för textfält',name:'Namn',value:'Värde',charWidth:'Teckenbredd',maxChars:'Max antal tecken',type:'Typ',typeText:'Text',typePass:'Lösenord'},hidden:{title:'Egenskaper för dolt fält',name:'Namn',value:'Värde'},image:{title:'Bildegenskaper',titleButton:'Egenskaper för bildknapp',menu:'Bildegenskaper',infoTab:'Bildinformation',btnUpload:'Skicka till server',upload:'Ladda upp',alt:'Alternativ text',lockRatio:'Lås höjd/bredd förhållanden',resetSize:'Återställ storlek',border:'Kant',hSpace:'Horis. marginal',vSpace:'Vert. marginal',alertUrl:'Var god och ange bildens URL',linkTab:'Länk',button2Img:'Vill du omvandla den valda bildknappen på en enkel bild?',img2Button:'Vill du omvandla den valda bildknappen på en enkel bild?',urlMissing:'Bildkällans URL saknas.',validateBorder:'Kantlinje måste vara ett heltal.',validateHSpace:'HSpace måste vara ett heltal.',validateVSpace:'VSpace måste vara ett heltal.'},flash:{properties:'Flashegenskaper',propertiesTab:'Egenskaper',title:'Flashegenskaper',chkPlay:'Automatisk uppspelning',chkLoop:'Upprepa/Loopa',chkMenu:'Aktivera Flashmeny',chkFull:'Tillåt helskärm',scale:'Skala',scaleAll:'Visa allt',scaleNoBorder:'Ingen ram',scaleFit:'Exakt passning',access:'Script-tillgång',accessAlways:'Alltid',accessSameDomain:'Samma domän',accessNever:'Aldrig',alignAbsBottom:'Absolut nederkant',alignAbsMiddle:'Absolut centrering',alignBaseline:'Baslinje',alignTextTop:'Text överkant',quality:'Kvalitet',qualityBest:'Bäst',qualityHigh:'Hög',qualityAutoHigh:'Auto Hög',qualityMedium:'Medium',qualityAutoLow:'Auto Låg',qualityLow:'Låg',windowModeWindow:'Fönster',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Fönsterläge',flashvars:'Variabler för Flash',bgcolor:'Bakgrundsfärg',hSpace:'Horis. marginal',vSpace:'Vert. marginal',validateSrc:'Var god ange länkens URL',validateHSpace:'HSpace måste vara ett nummer.',validateVSpace:'VSpace måste vara ett nummer.'},spellCheck:{toolbar:'Stavningskontroll',title:'Kontrollera stavning',notAvailable:'Tyvärr är tjänsten ej tillgänglig nu',errorLoading:'Tjänsten är ej tillgänglig: %s.',notInDic:'Saknas i ordlistan',changeTo:'Ändra till',btnIgnore:'Ignorera',btnIgnoreAll:'Ignorera alla',btnReplace:'Ersätt',btnReplaceAll:'Ersätt alla',btnUndo:'Ångra',noSuggestions:'- Förslag saknas -',progress:'Stavningskontroll pågår...',noMispell:'Stavningskontroll slutförd: Inga stavfel påträffades.',noChanges:'Stavningskontroll slutförd: Inga ord rättades.',oneChange:'Stavningskontroll slutförd: Ett ord rättades.',manyChanges:'Stavningskontroll slutförd: %1 ord rättades.',ieSpellDownload:'Stavningskontrollen är ej installerad. Vill du göra det nu?'},smiley:{toolbar:'Smiley',title:'Infoga smiley',options:'Smileyinställningar'},elementsPath:{eleLabel:'Elementets sökväg',eleTitle:'%1 element'},numberedlist:'Numrerad lista',bulletedlist:'Punktlista',indent:'Öka indrag',outdent:'Minska indrag',justify:{left:'Vänsterjustera',center:'Centrera',right:'Högerjustera',block:'Justera till marginaler'},blockquote:'Blockcitat',clipboard:{title:'Klistra in',cutError:'Säkerhetsinställningar i Er webläsare tillåter inte åtgården Klipp ut. Använd (Ctrl/Cmd+X) istället.',copyError:'Säkerhetsinställningar i Er webläsare tillåter inte åtgården Kopiera. Använd (Ctrl/Cmd+C) istället',pasteMsg:'Var god och klistra in Er text i rutan nedan genom att använda (<STRONG>Ctrl/Cmd+V</STRONG>) klicka sen på <STRONG>OK</STRONG>.',securityMsg:'På grund av din webbläsares säkerhetsinställningar kan verktyget inte få åtkomst till urklippsdatan. Var god och använd detta fönster istället.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'Texten du vill klistra in verkar vara kopierad från Word. Vill du rensa innan du klistrar?',toolbar:'Klistra in från Word',title:'Klistra in från Word',error:'Det var inte möjligt att städa upp den inklistrade data på grund av ett internt fel'},pasteText:{button:'Klistra in som vanlig text',title:'Klistra in som vanlig text'},templates:{button:'Sidmallar',title:'Sidmallar',options:'Inställningar för mall',insertOption:'Ersätt aktuellt innehåll',selectPromptMsg:'Var god välj en mall att använda med editorn<br>(allt nuvarande innehåll raderas):',emptyListMsg:'(Ingen mall är vald)'},showBlocks:'Visa block',stylesCombo:{label:'Anpassad stil',panelTitle:'Formatmallar',panelTitle1:'Blockstil',panelTitle2:'Inbäddad stil',panelTitle3:'Objektets stil'},format:{label:'Teckenformat',panelTitle:'Teckenformat',tag_p:'Normal',tag_pre:'Formaterad',tag_address:'Adress',tag_h1:'Rubrik 1',tag_h2:'Rubrik 2',tag_h3:'Rubrik 3',tag_h4:'Rubrik 4',tag_h5:'Rubrik 5',tag_h6:'Rubrik 6',tag_div:'Normal (DIV)'},div:{title:'Skapa Div container',toolbar:'Skapa Div container',cssClassInputLabel:'Stilmallar',styleSelectLabel:'Stil',IdInputLabel:'Id',languageCodeInputLabel:' Språkkod',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Rådgivande titel',langDirLabel:'Språkriktning',langDirLTRLabel:'Vänster till Höger (LTR)',langDirRTLLabel:'Höger till vänster (RTL)',edit:'Redigera Div',remove:'Ta bort Div'},iframe:{title:'iFrame Egenskaper',toolbar:'iFrame',noUrl:'Skriv in URL för iFrame',scrolling:'Aktivera rullningslister',border:'Visa ramkant'},font:{label:'Typsnitt',voiceLabel:'Typsnitt',panelTitle:'Typsnitt'},fontSize:{label:'Storlek',voiceLabel:'Teckenstorlek',panelTitle:'Storlek'},colorButton:{textColorTitle:'Textfärg',bgColorTitle:'Bakgrundsfärg',panelTitle:'Färger',auto:'Automatisk',more:'Fler färger...'},colors:{'000':'Svart',800000:'Rödbrun','8B4513':'Mörkbrun','2F4F4F':'Skiffergrå','008080':'Kricka','000080':'Marinblå','4B0082':'Indigo',696969:'Mörkgrå',B22222:'Tegelsten',A52A2A:'Brun',DAA520:'Mörk guld','006400':'Mörkgrön','40E0D0':'Turkos','0000CD':'Medium blå',800080:'Lila',808080:'Grå',F00:'Röd',FF8C00:'Mörkorange',FFD700:'Guld','008000':'Grön','0FF':'Turkos','00F':'Blå',EE82EE:'Violett',A9A9A9:'Matt grå',FFA07A:'Laxrosa',FFA500:'Orange',FFFF00:'Gul','00FF00':'Lime',AFEEEE:'Ljusturkos',ADD8E6:'Ljusblå',DDA0DD:'Plommon',D3D3D3:'Ljusgrå',FFF0F5:'Ljus lavender',FAEBD7:'Antikvit',FFFFE0:'Ljusgul',F0FFF0:'Honung',F0FFFF:'Azurblå',F0F8FF:'Aliceblå',E6E6FA:'Lavender',FFF:'Vit'},scayt:{title:'Stavningskontroll medan du skriver',opera_title:'Stöds ej av Opera',enable:'Aktivera SCAYT',disable:'Inaktivera SCAYT',about:'Om SCAYT',toggle:'Växla SCAYT',options:'Inställningar',langs:'Språk',moreSuggestions:'Fler förslag',ignore:'Ignorera',ignoreAll:'Ignorera alla',addWord:'Lägg till ord',emptyDic:'Ordlistans namn får ej vara tomt.',noSuggestions:'Förslag saknas',optionsTab:'Inställningar',allCaps:'Ignorera alla ord med enbart versaler',ignoreDomainNames:'Ignorera domännamn',mixedCase:'Ignorera ord med blandat shiftläge',mixedWithDigits:'Ignorera ord med nummer',languagesTab:'Språk',dictionariesTab:'Ordlistor',dic_field_name:'Ordlistans namn',dic_create:'Skapa',dic_restore:'Återställ',dic_delete:'Ta bort',dic_rename:'Byt namn',dic_info:'Inledningsvis lagras ordlistan i en cookie. När ordlista växer till en punkt där det inte kan lagras i en cookie, lagras den på vår server. För att lagra din personliga ordlista på vår server du ska ange ett namn för din ordbok. Om du redan har en lagrad ordbok, skriv namnet och klicka på knappen Återställ.',aboutTab:'Om'},about:{title:'Om CKEditor',dlgTitle:'Om CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'För information av licenciering besök vår hemsida:',copy:'Copyright © $1. Alla rättigheter reserverade.'},maximize:'Maximera',minimize:'Minimera',fakeobjects:{anchor:'Ankare',flash:'Flashanimation',iframe:'iFrame',hiddenfield:'Gömt fält',unknown:'Okänt objekt'},resize:'Dra för att ändra storlek',colordialog:{title:'Välj färg',options:'Färgalternativ',highlight:'Markera',selected:'Vald färg',clear:'Rensa'},toolbarCollapse:'Dölj verktygsfält',toolbarExpand:'Visa verktygsfält',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text riktning från vänster till höger',rtl:'Text riktning från höger till vänster'},docprops:{label:'Dokumentegenskaper',title:'Dokumentegenskaper',design:'Design',meta:'Metadata',chooseColor:'Välj',other:'<annan>',docTitle:'Sidtitel',charset:'Teckenuppsättningar',charsetOther:'Övriga teckenuppsättningar',charsetASCII:'ASCII',charsetCE:'Central Europa',charsetCT:'Traditionell Kinesisk (Big5)',charsetCR:'Kyrillisk',charsetGR:'Grekiska',charsetJP:'Japanska',charsetKR:'Koreanska',charsetTR:'Turkiska',charsetUN:'Unicode (UTF-8)',charsetWE:'Väst Europa',docType:'Sidhuvud',docTypeOther:'Övriga sidhuvuden',xhtmlDec:'Inkludera XHTML deklaration',bgColor:'Bakgrundsfärg',bgImage:'Bakgrundsbildens URL',bgFixed:'Fast bakgrund',txtColor:'Textfärg',margin:'Sidmarginal',marginTop:'Topp',marginLeft:'Vänster',marginRight:'Höger',marginBottom:'Botten',metaKeywords:'Sidans nyckelord',metaDescription:'Sidans beskrivning',metaAuthor:'Författare',metaCopyright:'Upphovsrätt',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ms.js��������������������������������������������0000664�0001750�0001750�00000042515�12262650742�021761� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.ms={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Sumber',newPage:'Helaian Baru',save:'Simpan',preview:'Prebiu',cut:'Potong',copy:'Salin',paste:'Tampal',print:'Cetak',underline:'Underline',bold:'Bold',italic:'Italic',selectAll:'Pilih Semua',removeFormat:'Buang Format',strike:'Strike Through',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Masukkan Garisan Membujur',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Buang Sambungan',undo:'Batalkan',redo:'Ulangkan',common:{browseServer:'Browse Server',url:'URL',protocol:'Protokol',upload:'Muat Naik',uploadSubmit:'Hantar ke Server',image:'Gambar',flash:'Flash',form:'Borang',checkbox:'Checkbox',radio:'Butang Radio',textField:'Text Field',textarea:'Textarea',hiddenField:'Field Tersembunyi',button:'Butang',select:'Field Pilihan',imageButton:'Butang Bergambar',notSet:'<tidak di set>',id:'Id',name:'Nama',langDir:'Arah Tulisan',langDirLtr:'Kiri ke Kanan (LTR)',langDirRtl:'Kanan ke Kiri (RTL)',langCode:'Kod Bahasa',longDescr:'Butiran Panjang URL',cssClass:'Kelas-kelas Stylesheet',advisoryTitle:'Tajuk Makluman',cssStyle:'Stail',ok:'OK',cancel:'Batal',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Advanced',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Lebar',height:'Tinggi',align:'Jajaran',alignLeft:'Kiri',alignRight:'Kanan',alignCenter:'Tengah',alignTop:'Atas',alignMiddle:'Pertengahan',alignBottom:'Bawah',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Masukkan Huruf Istimewa',title:'Sila pilih huruf istimewa',options:'Special Character Options'},link:{toolbar:'Masukkan/Sunting Sambungan',other:'<lain>',menu:'Sunting Sambungan',title:'Sambungan',info:'Butiran Sambungan',target:'Sasaran',upload:'Muat Naik',advanced:'Advanced',type:'Jenis Sambungan',toUrl:'URL',toAnchor:'Pautan dalam muka surat ini',toEmail:'E-Mail',targetFrame:'<bingkai>',targetPopup:'<tetingkap popup>',targetFrameName:'Nama Bingkai Sasaran',targetPopupName:'Nama Tetingkap Popup',popupFeatures:'Ciri Tetingkap Popup',popupResizable:'Resizable',popupStatusBar:'Bar Status',popupLocationBar:'Bar Lokasi',popupToolbar:'Toolbar',popupMenuBar:'Bar Menu',popupFullScreen:'Skrin Penuh (IE)',popupScrollBars:'Bar-bar skrol',popupDependent:'Bergantungan (Netscape)',popupLeft:'Posisi Kiri',popupTop:'Posisi Atas',id:'Id',langDir:'Arah Tulisan',langDirLTR:'Kiri ke Kanan (LTR)',langDirRTL:'Kanan ke Kiri (RTL)',acccessKey:'Kunci Akses',name:'Nama',langCode:'Arah Tulisan',tabIndex:'Indeks Tab ',advisoryTitle:'Tajuk Makluman',advisoryContentType:'Jenis Kandungan Makluman',cssClasses:'Kelas-kelas Stylesheet',charset:'Linked Resource Charset',styles:'Stail',rel:'Relationship',selectAnchor:'Sila pilih pautan',anchorName:'dengan menggunakan nama pautan',anchorId:'dengan menggunakan ID elemen',emailAddress:'Alamat E-Mail',emailSubject:'Subjek Mesej',emailBody:'Isi Kandungan Mesej',noAnchors:'(Tiada pautan terdapat dalam dokumen ini)',noUrl:'Sila taip sambungan URL',noEmail:'Sila taip alamat e-mail'},anchor:{toolbar:'Masukkan/Sunting Pautan',menu:'Ciri-ciri Pautan',title:'Ciri-ciri Pautan',name:'Nama Pautan',errorName:'Sila taip nama pautan',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Cari',replace:'Ganti',findWhat:'Perkataan yang dicari:',replaceWith:'Diganti dengan:',notFoundMsg:'Text yang dicari tidak dijumpai.',findOptions:'Find Options',matchCase:'Padanan case huruf',matchWord:'Padana Keseluruhan perkataan',matchCyclic:'Match cyclic',replaceAll:'Ganti semua',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Jadual',title:'Ciri-ciri Jadual',menu:'Ciri-ciri Jadual',deleteTable:'Delete Table',rows:'Barisan',columns:'Jaluran',border:'Saiz Border',widthPx:'piksel-piksel',widthPc:'peratus',widthUnit:'width unit',cellSpace:'Ruangan Antara Sel',cellPad:'Tambahan Ruang Sel',caption:'Keterangan',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Buangkan Sel-sel',merge:'Cantumkan Sel-sel',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Buangkan Baris'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Buangkan Lajur'}},button:{title:'Ciri-ciri Butang',text:'Teks (Nilai)',type:'Jenis',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Ciri-ciri Checkbox',radioTitle:'Ciri-ciri Butang Radio',value:'Nilai',selected:'Dipilih'},form:{title:'Ciri-ciri Borang',menu:'Ciri-ciri Borang',action:'Tindakan borang',method:'Cara borang dihantar',encoding:'Encoding'},select:{title:'Ciri-ciri Selection Field',selectInfo:'Select Info',opAvail:'Pilihan sediada',value:'Nilai',size:'Saiz',lines:'garisan',chkMulti:'Benarkan pilihan pelbagai',opText:'Teks',opValue:'Nilai',btnAdd:'Tambah Pilihan',btnModify:'Ubah Pilihan',btnUp:'Naik ke atas',btnDown:'Turun ke bawah',btnSetValue:'Set sebagai nilai terpilih',btnDelete:'Padam'},textarea:{title:'Ciri-ciri Textarea',cols:'Lajur',rows:'Baris'},textfield:{title:'Ciri-ciri Text Field',name:'Nama',value:'Nilai',charWidth:'Lebar isian',maxChars:'Isian Maksimum',type:'Jenis',typeText:'Teks',typePass:'Kata Laluan'},hidden:{title:'Ciri-ciri Field Tersembunyi',name:'Nama',value:'Nilai'},image:{title:'Ciri-ciri Imej',titleButton:'Ciri-ciri Butang Bergambar',menu:'Ciri-ciri Imej',infoTab:'Info Imej',btnUpload:'Hantar ke Server',upload:'Muat Naik',alt:'Text Alternatif',lockRatio:'Tetapkan Nisbah',resetSize:'Saiz Set Semula',border:'Border',hSpace:'Ruang Melintang',vSpace:'Ruang Menegak',alertUrl:'Sila taip URL untuk fail gambar',linkTab:'Sambungan',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flash Properties',propertiesTab:'Properties',title:'Flash Properties',chkPlay:'Auto Play',chkLoop:'Loop',chkMenu:'Enable Flash Menu',chkFull:'Allow Fullscreen',scale:'Scale',scaleAll:'Show all',scaleNoBorder:'No Border',scaleFit:'Exact Fit',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Bawah Mutlak',alignAbsMiddle:'Pertengahan Mutlak',alignBaseline:'Garis Dasar',alignTextTop:'Atas Text',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Warna Latarbelakang',hSpace:'Ruang Melintang',vSpace:'Ruang Menegak',validateSrc:'Sila taip sambungan URL',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Semak Ejaan',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Tidak terdapat didalam kamus',changeTo:'Tukarkan kepada',btnIgnore:'Biar',btnIgnoreAll:'Biarkan semua',btnReplace:'Ganti',btnReplaceAll:'Gantikan Semua',btnUndo:'Batalkan',noSuggestions:'- Tiada cadangan -',progress:'Pemeriksaan ejaan sedang diproses...',noMispell:'Pemeriksaan ejaan siap: Tiada salah ejaan',noChanges:'Pemeriksaan ejaan siap: Tiada perkataan diubah',oneChange:'Pemeriksaan ejaan siap: Satu perkataan telah diubah',manyChanges:'Pemeriksaan ejaan siap: %1 perkataan diubah',ieSpellDownload:'Pemeriksa ejaan tidak dipasang. Adakah anda mahu muat turun sekarang?'},smiley:{toolbar:'Smiley',title:'Masukkan Smiley',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Senarai bernombor',bulletedlist:'Senarai tidak bernombor',indent:'Tambahkan Inden',outdent:'Kurangkan Inden',justify:{left:'Jajaran Kiri',center:'Jajaran Tengah',right:'Jajaran Kanan',block:'Jajaran Blok'},blockquote:'Block Quote',clipboard:{title:'Tampal',cutError:'Keselamatan perisian browser anda tidak membenarkan operasi suntingan text/imej. Sila gunakan papan kekunci (Ctrl/Cmd+X).',copyError:'Keselamatan perisian browser anda tidak membenarkan operasi salinan text/imej. Sila gunakan papan kekunci (Ctrl/Cmd+C).',pasteMsg:'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Tampal dari Word',title:'Tampal dari Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Tampal sebagai text biasa',title:'Tampal sebagai text biasa'},templates:{button:'Templat',title:'Templat Kandungan',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Sila pilih templat untuk dibuka oleh editor<br>(kandungan sebenar akan hilang):',emptyListMsg:'(Tiada Templat Disimpan)'},showBlocks:'Show Blocks',stylesCombo:{label:'Stail',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Format',tag_p:'Normal',tag_pre:'Telah Diformat',tag_address:'Alamat',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Perenggan (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font'},fontSize:{label:'Saiz',voiceLabel:'Font Size',panelTitle:'Saiz'},colorButton:{textColorTitle:'Warna Text',bgColorTitle:'Warna Latarbelakang',panelTitle:'Colors',auto:'Otomatik',more:'Warna lain-lain...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'Tiada cadangan',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Ciri-ciri dokumen',title:'Ciri-ciri dokumen',design:'Design',meta:'Data Meta',chooseColor:'Choose',other:'<lain>',docTitle:'Tajuk Muka Surat',charset:'Enkod Set Huruf',charsetOther:'Enkod Set Huruf yang Lain',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Jenis Kepala Dokumen',docTypeOther:'Jenis Kepala Dokumen yang Lain',xhtmlDec:'Masukkan pemula kod XHTML',bgColor:'Warna Latarbelakang',bgImage:'URL Gambar Latarbelakang',bgFixed:'Imej Latarbelakang tanpa Skrol',txtColor:'Warna Text',margin:'Margin Muka Surat',marginTop:'Atas',marginLeft:'Kiri',marginRight:'Kanan',marginBottom:'Bawah',metaKeywords:'Kata Kunci Indeks Dokumen (dipisahkan oleh koma)',metaDescription:'Keterangan Dokumen',metaAuthor:'Penulis',metaCopyright:'Hakcipta',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/fa.js��������������������������������������������0000664�0001750�0001750�00000071625�12262650742�021734� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /** * @fileOverview Defines the {@link CKEDITOR.lang} object for the * Persian language. */ /**#@+ @type String @example */ /** * Contains the dictionary of language entries. * @namespace */ CKEDITOR.lang['fa'] = { /** * The language reading direction. Possible values are "rtl" for * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right * languages (like English). * @default 'ltr' */ dir : 'rtl', /* * Screenreader titles. Please note that screenreaders are not always capable * of reading non-English words. So be careful while translating it. */ editorTitle : 'ویرایشگر متن غنی, %1', editorHelp : 'کلید Alt+0 را برای راهنمایی بفشارید', // ARIA descriptions. toolbars : 'نوار ابزار', editor : 'ویرایشگر متن غنی', // Toolbar buttons without dialogs. source : 'منبع', newPage : 'برگهٴ تازه', save : 'ذخیره', preview : 'پیشنمایش', cut : 'برش', copy : 'کپی', paste : 'چسباندن', print : 'چاپ', underline : 'زیرخطدار', bold : 'درشت', italic : 'خمیده', selectAll : 'گزینش همه', removeFormat : 'برداشتن فرمت', strike : 'میانخط', subscript : 'زیرنویس', superscript : 'بالانویس', horizontalrule : 'گنجاندن خط افقی', pagebreak : 'گنجاندن شکستگی پایان برگه', pagebreakAlt : 'شکستن صفحه', unlink : 'برداشتن پیوند', undo : 'واچیدن', redo : 'بازچیدن', // Common messages and labels. common : { browseServer : 'فهرستنمایی سرور', url : 'URL', protocol : 'پروتکل', upload : 'انتقال به سرور', uploadSubmit : 'به سرور بفرست', image : 'تصویر', flash : 'فلش', form : 'فرم', checkbox : 'خانهٴ گزینهای', radio : 'دکمهٴ رادیویی', textField : 'فیلد متنی', textarea : 'ناحیهٴ متنی', hiddenField : 'فیلد پنهان', button : 'دکمه', select : 'فیلد چندگزینهای', imageButton : 'دکمهٴ تصویری', notSet : '<تعین نشده>', id : 'شناسه', name : 'نام', langDir : 'جهتنمای زبان', langDirLtr : 'چپ به راست (LTR)', langDirRtl : 'راست به چپ (RTL)', langCode : 'کد زبان', longDescr : 'URL توصیف طولانی', cssClass : 'کلاسهای شیوهنامه(Stylesheet)', advisoryTitle : 'عنوان کمکی', cssStyle : 'شیوه(style)', ok : 'پذیرش', cancel : 'انصراف', close : 'بستن', preview : 'پیشنمایش', generalTab : 'عمومی', advancedTab : 'پیشرفته', validateNumberFailed : 'این مقدار یک عدد نیست.', confirmNewPage : 'هر تغییر ایجاد شدهی ذخیره نشده از بین خواهد رفت. آیا اطمینان دارید که قصد بارگیری صفحه جدیدی را دارید؟', confirmCancel : 'برخی از گزینهها تغییر کردهاند. آیا واقعا قصد بستن این پنجره را دارید؟', options : 'گزینهها', target : 'مسیر', targetNew : 'پنجره جدید (_blank)', targetTop : 'بالاترین پنجره (_top)', targetSelf : 'همان پنجره (_self)', targetParent : 'پنجره والد (_parent)', langDirLTR : 'چپ به راست (LTR)', langDirRTL : 'راست به چپ (RTL)', styles : 'سبک', cssClasses : 'کلاسهای شیوهنامه', width : 'پهنا', height : 'درازا', align : 'چینش', alignLeft : 'چپ', alignRight : 'راست', alignCenter : 'وسط', alignTop : 'بالا', alignMiddle : 'وسط', alignBottom : 'پائین', invalidValue : 'Invalid value.', // MISSING invalidHeight : 'ارتفاع باید یک عدد باشد.', invalidWidth : 'پهنا باید یک عدد باشد.', invalidCssLength : 'عدد تعیین شده برای فیلد "%1" باید یک عدد مثبت با یا بدون یک واحد اندازه گیری CSS معتبر باشد (px, %, in, cm, mm, em, ex, pt, or pc).', invalidHtmlLength : 'عدد تعیین شده برای فیلد "%1" باید یک عدد مثبت با یا بدون یک واحد اندازه گیری HTML معتبر باشد (px or %).', invalidInlineStyle : 'عدد تعیین شده برای سبک درونخطی(Inline Style) باید دارای یک یا چند چندتایی با شکلی شبیه "name : value" که باید با یک ","(semi-colons) از هم جدا شوند.', cssLengthTooltip : 'یک عدد برای یک مقدار بر حسب پیکسل و یا یک عدد با یک واحد CSS معتبر وارد کنید (px, %, in, cm, mm, em, ex, pt, or pc).', // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">، غیر قابل دسترس</span>' }, contextmenu : { options : 'گزینههای منوی زمینه' }, // Special char dialog. specialChar : { toolbar : 'گنجاندن نویسهٴ ویژه', title : 'گزینش نویسهٴ ویژه', options : 'گزینههای نویسههای ویژه' }, // Link dialog. link : { toolbar : 'گنجاندن/ویرایش پیوند', other : '<سایر>', menu : 'ویرایش پیوند', title : 'پیوند', info : 'اطلاعات پیوند', target : 'مقصد', upload : 'انتقال به سرور', advanced : 'پیشرفته', type : 'نوع پیوند', toUrl : 'URL', toAnchor : 'لنگر در همین صفحه', toEmail : 'پست الکترونیکی', targetFrame : '<فریم>', targetPopup : '<پنجرهٴ پاپاپ>', targetFrameName : 'نام فریم مقصد', targetPopupName : 'نام پنجرهٴ پاپاپ', popupFeatures : 'ویژگیهای پنجرهٴ پاپاپ', popupResizable : 'قابل تغییر اندازه', popupStatusBar : 'نوار وضعیت', popupLocationBar: 'نوار موقعیت', popupToolbar : 'نوارابزار', popupMenuBar : 'نوار منو', popupFullScreen : 'تمامصفحه (IE)', popupScrollBars : 'میلههای پیمایش', popupDependent : 'وابسته (Netscape)', popupLeft : 'موقعیت چپ', popupTop : 'موقعیت بالا', id : 'شناسه', langDir : 'جهتنمای زبان', langDirLTR : 'چپ به راست (LTR)', langDirRTL : 'راست به چپ (RTL)', acccessKey : 'کلید دستیابی', name : 'نام', langCode : 'جهتنمای زبان', tabIndex : 'نمایهٴ دسترسی با برگه', advisoryTitle : 'عنوان کمکی', advisoryContentType : 'نوع محتوای کمکی', cssClasses : 'کلاسهای شیوهنامه(Stylesheet)', charset : 'نویسهگان منبع پیوند شده', styles : 'شیوه(style)', rel : 'وابستگی', selectAnchor : 'یک لنگر برگزینید', anchorName : 'با نام لنگر', anchorId : 'با شناسهٴ المان', emailAddress : 'نشانی پست الکترونیکی', emailSubject : 'موضوع پیام', emailBody : 'متن پیام', noAnchors : '(در این سند لنگری دردسترس نیست)', noUrl : 'لطفا URL پیوند را بنویسید', noEmail : 'لطفا نشانی پست الکترونیکی را بنویسید' }, // Anchor dialog anchor : { toolbar : 'گنجاندن/ویرایش لنگر', menu : 'ویژگیهای لنگر', title : 'ویژگیهای لنگر', name : 'نام لنگر', errorName : 'لطفا نام لنگر را بنویسید', remove : 'حذف لنگر' }, // List style dialog list: { numberedTitle : 'ویژگیهای فهرست شمارهدار', bulletedTitle : 'ویژگیهای فهرست گلولهدار', type : 'نوع', start : 'شروع', validateStartNumber :'فهرست شماره شروع باید یک عدد صحیح باشد.', circle : 'دایره', disc : 'صفحه گرد', square : 'چهارگوش', none : 'هیچ', notset : '<تنظیم نشده>', armenian : 'شمارهگذاری ارمنی', georgian : 'شمارهگذاری گریگورین (an, ban, gan, etc.)', lowerRoman : 'پانویس رومی (i, ii, iii, iv, v, etc.)', upperRoman : 'بالانویس رومی (I, II, III, IV, V, etc.)', lowerAlpha : 'پانویس الفبایی (a, b, c, d, e, etc.)', upperAlpha : 'بالانویس الفبایی (A, B, C, D, E, etc.)', lowerGreek : 'پانویس یونانی (alpha, beta, gamma, etc.)', decimal : 'دهدهی (1, 2, 3, etc.)', decimalLeadingZero : 'دهدهی همراه با صفر (01, 02, 03, etc.)' }, // Find And Replace Dialog findAndReplace : { title : 'جستجو و جایگزینی', find : 'جستجو', replace : 'جایگزینی', findWhat : 'چه چیز را مییابید:', replaceWith : 'جایگزینی با:', notFoundMsg : 'متن موردنظر یافت نشد.', findOptions : 'گزینههای جستجو', matchCase : 'همسانی در بزرگی و کوچکی نویسهها', matchWord : 'همسانی با واژهٴ کامل', matchCyclic : 'همسانی با چرخه', replaceAll : 'جایگزینی همهٴ یافتهها', replaceSuccessMsg : '%1 رخداد جایگزین شد.' }, // Table Dialog table : { toolbar : 'جدول', title : 'ویژگیهای جدول', menu : 'ویژگیهای جدول', deleteTable : 'پاک کردن جدول', rows : 'سطرها', columns : 'ستونها', border : 'اندازهٴ لبه', widthPx : 'پیکسل', widthPc : 'درصد', widthUnit : 'واحد پهنا', cellSpace : 'فاصلهٴ میان سلولها', cellPad : 'فاصلهٴ پرشده در سلول', caption : 'عنوان', summary : 'خلاصه', headers : 'سرنویسها', headersNone : 'هیچ', headersColumn : 'اولین ستون', headersRow : 'اولین ردیف', headersBoth : 'هردو', invalidRows : 'تعداد ردیفها باید یک عدد بزرگتر از 0 باشد.', invalidCols : 'تعداد ستونها باید یک عدد بزرگتر از 0 باشد.', invalidBorder : 'مقدار اندازه خطوط باید یک عدد باشد.', invalidWidth : 'مقدار پهنای جدول باید یک عدد باشد.', invalidHeight : 'مقدار ارتفاع جدول باید یک عدد باشد.', invalidCellSpacing : 'مقدار فاصلهگذاری سلول باید یک عدد باشد.', invalidCellPadding : 'بالشتک سلول باید یک عدد باشد.', cell : { menu : 'سلول', insertBefore : 'افزودن سلول قبل از', insertAfter : 'افزودن سلول بعد از', deleteCell : 'حذف سلولها', merge : 'ادغام سلولها', mergeRight : 'ادغام به راست', mergeDown : 'ادغام به پایین', splitHorizontal : 'جدا کردن افقی سلول', splitVertical : 'جدا کردن عمودی سلول', title : 'ویژگیهای سلول', cellType : 'نوع سلول', rowSpan : 'محدوده ردیفها', colSpan : 'محدوده ستونها', wordWrap : 'شکستن کلمه', hAlign : 'چینش افقی', vAlign : 'چینش عمودی', alignBaseline : 'خط مبنا', bgColor : 'رنگ زمینه', borderColor : 'رنگ خطوط', data : 'اطلاعات', header : 'سرنویس', yes : 'بله', no : 'خیر', invalidWidth : 'عرض سلول باید یک عدد باشد.', invalidHeight : 'ارتفاع سلول باید عدد باشد.', invalidRowSpan : 'مقدار محدوده ردیفها باید یک عدد باشد.', invalidColSpan : 'مقدار محدوده ستونها باید یک عدد باشد.', chooseColor : 'انتخاب' }, row : { menu : 'سطر', insertBefore : 'افزودن سطر قبل از', insertAfter : 'افزودن سطر بعد از', deleteRow : 'حذف سطرها' }, column : { menu : 'ستون', insertBefore : 'افزودن ستون قبل از', insertAfter : 'افزودن ستون بعد از', deleteColumn : 'حذف ستونها' } }, // Button Dialog. button : { title : 'ویژگیهای دکمه', text : 'متن (مقدار)', type : 'نوع', typeBtn : 'دکمه', typeSbm : 'ثبت', typeRst : 'بازنشانی (Reset)' }, // Checkbox and Radio Button Dialogs. checkboxAndRadio : { checkboxTitle : 'ویژگیهای خانهٴ گزینهای', radioTitle : 'ویژگیهای دکمهٴ رادیویی', value : 'مقدار', selected : 'برگزیده' }, // Form Dialog. form : { title : 'ویژگیهای فرم', menu : 'ویژگیهای فرم', action : 'رویداد', method : 'متد', encoding : 'رمزنگاری' }, // Select Field Dialog. select : { title : 'ویژگیهای فیلد چندگزینهای', selectInfo : 'اطلاعات', opAvail : 'گزینههای دردسترس', value : 'مقدار', size : 'اندازه', lines : 'خطوط', chkMulti : 'گزینش چندگانه فراهم باشد', opText : 'متن', opValue : 'مقدار', btnAdd : 'افزودن', btnModify : 'ویرایش', btnUp : 'بالا', btnDown : 'پائین', btnSetValue : 'تنظیم به عنوان مقدار برگزیده', btnDelete : 'پاککردن' }, // Textarea Dialog. textarea : { title : 'ویژگیهای ناحیهٴ متنی', cols : 'ستونها', rows : 'سطرها' }, // Text Field Dialog. textfield : { title : 'ویژگیهای فیلد متنی', name : 'نام', value : 'مقدار', charWidth : 'پهنای نویسه', maxChars : 'بیشینهٴ نویسهها', type : 'نوع', typeText : 'متن', typePass : 'گذرواژه' }, // Hidden Field Dialog. hidden : { title : 'ویژگیهای فیلد پنهان', name : 'نام', value : 'مقدار' }, // Image Dialog. image : { title : 'ویژگیهای تصویر', titleButton : 'ویژگیهای دکمهٴ تصویری', menu : 'ویژگیهای تصویر', infoTab : 'اطلاعات تصویر', btnUpload : 'به سرور بفرست', upload : 'انتقال به سرور', alt : 'متن جایگزین', lockRatio : 'قفل کردن نسبت', resetSize : 'بازنشانی اندازه', border : 'لبه', hSpace : 'فاصلهٴ افقی', vSpace : 'فاصلهٴ عمودی', alertUrl : 'لطفا URL تصویر را بنویسید', linkTab : 'پیوند', button2Img : 'آیا مایلید از یک تصویر ساده روی دکمه تصویری انتخاب شده استفاده کنید؟', img2Button : 'آیا مایلید از یک دکمه تصویری روی تصویر انتخاب شده استفاده کنید؟', urlMissing : 'آدرس URL اصلی تصویر یافت نشد.', validateBorder : 'مقدار خطوط باید یک عدد باشد.', validateHSpace : 'مقدار فاصلهگذاری افقی باید یک عدد باشد.', validateVSpace : 'مقدار فاصلهگذاری عمودی باید یک عدد باشد.' }, // Flash Dialog flash : { properties : 'ویژگیهای فلش', propertiesTab : 'ویژگیها', title : 'ویژگیهای فلش', chkPlay : 'آغاز خودکار', chkLoop : 'اجرای پیاپی', chkMenu : 'در دسترس بودن منوی فلش', chkFull : 'اجازه تمام صفحه', scale : 'مقیاس', scaleAll : 'نمایش همه', scaleNoBorder : 'بدون کران', scaleFit : 'جایگیری کامل', access : 'دسترسی به اسکریپت', accessAlways : 'همیشه', accessSameDomain: 'همان دامنه', accessNever : 'هرگز', alignAbsBottom : 'پائین مطلق', alignAbsMiddle : 'وسط مطلق', alignBaseline : 'خط پایه', alignTextTop : 'متن بالا', quality : 'کیفیت', qualityBest : 'بهترین', qualityHigh : 'بالا', qualityAutoHigh : 'بالا - خودکار', qualityMedium : 'متوسط', qualityAutoLow : 'پایین - خودکار', qualityLow : 'پایین', windowModeWindow: 'پنجره', windowModeOpaque: 'مات', windowModeTransparent : 'شفاف', windowMode : 'حالت پنجره', flashvars : 'مقادیر برای فلش', bgcolor : 'رنگ پسزمینه', hSpace : 'فاصلهٴ افقی', vSpace : 'فاصلهٴ عمودی', validateSrc : 'لطفا URL پیوند را بنویسید', validateHSpace : 'مقدار فاصلهگذاری افقی باید یک عدد باشد.', validateVSpace : 'مقدار فاصلهگذاری عمودی باید یک عدد باشد.' }, // Speller Pages Dialog spellCheck : { toolbar : 'بررسی املا', title : 'بررسی املا', notAvailable : 'با عرض پوزش خدمات الان در دسترس نیستند.', errorLoading : 'خطا در بارگیری برنامه خدمات میزبان: %s.', notInDic : 'در واژه~نامه یافت نشد', changeTo : 'تغییر به', btnIgnore : 'چشمپوشی', btnIgnoreAll : 'چشمپوشی همه', btnReplace : 'جایگزینی', btnReplaceAll : 'جایگزینی همه', btnUndo : 'واچینش', noSuggestions : '- پیشنهادی نیست -', progress : 'بررسی املا در حال انجام...', noMispell : 'بررسی املا انجام شد. هیچ غلط املائی یافت نشد', noChanges : 'بررسی املا انجام شد. هیچ واژهای تغییر نیافت', oneChange : 'بررسی املا انجام شد. یک واژه تغییر یافت', manyChanges : 'بررسی املا انجام شد. %1 واژه تغییر یافت', ieSpellDownload : 'بررسی کنندهٴ املا نصب نشده است. آیا میخواهید آن را هماکنون دریافت کنید؟' }, smiley : { toolbar : 'خندانک', title : 'گنجاندن خندانک', options : 'گزینههای خندانک' }, elementsPath : { eleLabel : 'مسیر عناصر', eleTitle : '%1 عنصر' }, numberedlist : 'فهرست شمارهدار', bulletedlist : 'فهرست نقطهای', indent : 'افزایش تورفتگی', outdent : 'کاهش تورفتگی', justify : { left : 'چپچین', center : 'میانچین', right : 'راستچین', block : 'بلوکچین' }, blockquote : 'بلوک نقل قول', clipboard : { title : 'چسباندن', cutError : 'تنظیمات امنیتی مرورگر شما اجازه نمیدهد که ویرایشگر به طور خودکار عملکردهای برش را انجام دهد. لطفا با دکمههای صفحه کلید این کار را انجام دهید (Ctrl/Cmd+X).', copyError : 'تنظیمات امنیتی مرورگر شما اجازه نمیدهد که ویرایشگر به طور خودکار عملکردهای کپی کردن را انجام دهد. لطفا با دکمههای صفحه کلید این کار را انجام دهید (Ctrl/Cmd+C).', pasteMsg : 'لطفا متن را با کلیدهای (<STRONG>Ctrl/Cmd+V</STRONG>) در این جعبهٴ متنی بچسبانید و <STRONG>پذیرش</STRONG> را بزنید.', securityMsg : 'به خاطر تنظیمات امنیتی مرورگر شما، ویرایشگر نمیتواند دسترسی مستقیم به دادههای clipboard داشته باشد. شما باید دوباره آنرا در این پنجره بچسبانید.', pasteArea : 'محل چسباندن' }, pastefromword : { confirmCleanup : 'متنی که میخواهید بچسبانید به نظر میرسد که از Word کپی شده است. آیا میخواهید قبل از چسباندن آن را پاکسازی کنید؟', toolbar : 'چسباندن از Word', title : 'چسباندن از Word', error : 'به دلیل بروز خطای داخلی امکان پاکسازی اطلاعات بازنشانی شده وجود ندارد.' }, pasteText : { button : 'چسباندن به عنوان متن ِساده', title : 'چسباندن به عنوان متن ِساده' }, templates : { button : 'الگوها', title : 'الگوهای محتویات', options : 'گزینههای الگو', insertOption : 'محتویات کنونی جایگزین شوند', selectPromptMsg : 'لطفا الگوی موردنظر را برای بازکردن در ویرایشگر برگزینید<br>(محتویات کنونی از دست خواهند رفت):', emptyListMsg : '(الگوئی تعریف نشده است)' }, showBlocks : 'نمایش بلوکها', stylesCombo : { label : 'سبک', panelTitle : 'سبکهای قالببندی', panelTitle1 : 'سبکهای بلوک', panelTitle2 : 'سبکهای درونخطی', panelTitle3 : 'سبکهای شیء' }, format : { label : 'فرمت', panelTitle : 'فرمت', tag_p : 'نرمال', tag_pre : 'فرمت شده', tag_address : 'آدرس', tag_h1 : 'سرنویس 1', tag_h2 : 'سرنویس 2', tag_h3 : 'سرنویس 3', tag_h4 : 'سرنویس 4', tag_h5 : 'سرنویس 5', tag_h6 : 'سرنویس 6', tag_div : 'بند' }, div : { title : 'ایجاد یک محل DIV', toolbar : 'ایجاد یک محل DIV', cssClassInputLabel : 'کلاسهای شیوهنامه', styleSelectLabel : 'سبک', IdInputLabel : 'شناسه', languageCodeInputLabel : ' کد زبان', inlineStyleInputLabel : 'سبک درونخطی(Inline Style)', advisoryTitleInputLabel : 'عنوان مشاوره', langDirLabel : 'جهت نوشتاری زبان', langDirLTRLabel : 'چپ به راست (LTR)', langDirRTLLabel : 'راست به چپ (RTL)', edit : 'ویرایش Div', remove : 'حذف Div' }, iframe : { title : 'ویژگیهای IFrame', toolbar : 'IFrame', noUrl : 'لطفا مسیر URL iframe را درج کنید', scrolling : 'نمایش خطکشها', border : 'نمایش خطوط frame' }, font : { label : 'قلم', voiceLabel : 'قلم', panelTitle : 'قلم' }, fontSize : { label : 'اندازه', voiceLabel : 'اندازه قلم', panelTitle : 'اندازه' }, colorButton : { textColorTitle : 'رنگ متن', bgColorTitle : 'رنگ پسزمینه', panelTitle : 'رنگها', auto : 'خودکار', more : 'رنگهای بیشتر...' }, colors : { '000' : 'سیاه', '800000' : 'خرمایی', '8B4513' : 'قهوهای شکلاتی', '2F4F4F' : 'ارغوانی مایل به خاکستری', '008080' : 'آبی مایل به خاکستری', '000080' : 'آبی سیر', '4B0082' : 'نیلی', '696969' : 'خاکستری تیره', 'B22222' : 'آتش آجری', 'A52A2A' : 'قهوهای', 'DAA520' : 'میلهی طلایی', '006400' : 'سبز تیره', '40E0D0' : 'فیروزهای', '0000CD' : 'آبی روشن', '800080' : 'ارغوانی', '808080' : 'خاکستری', 'F00' : 'قرمز', 'FF8C00' : 'نارنجی پررنگ', 'FFD700' : 'طلایی', '008000' : 'سبز', '0FF' : 'آبی مایل به سبز', '00F' : 'آبی', 'EE82EE' : 'بنفش', 'A9A9A9' : 'خاکستری مات', 'FFA07A' : 'صورتی کدر روشن', 'FFA500' : 'نارنجی', 'FFFF00' : 'زرد', '00FF00' : 'فسفری', 'AFEEEE' : 'فیروزهای رنگ پریده', 'ADD8E6' : 'آبی کمرنگ', 'DDA0DD' : 'آلویی', 'D3D3D3' : 'خاکستری روشن', 'FFF0F5' : 'بنفش کمرنگ', 'FAEBD7' : 'عتیقه سفید', 'FFFFE0' : 'زرد روشن', 'F0FFF0' : 'عسلی', 'F0FFFF' : 'لاجوردی', 'F0F8FF' : 'آبی براق', 'E6E6FA' : 'بنفش کمرنگ', 'FFF' : 'سفید' }, scayt : { title : 'بررسی املای تایپ شما', opera_title : 'توسط اپرا پشتیبانی نمیشود', enable : 'فعالسازی SCAYT', disable : 'غیرفعالسازی SCAYT', about : 'درباره SCAYT', toggle : 'ضامن SCAYT', options : 'گزینهها', langs : 'زبانها', moreSuggestions : 'پیشنهادهای بیشتر', ignore : 'عبور کردن', ignoreAll : 'عبور کردن از همه', addWord : 'افزودن Word', emptyDic : 'نام دیکشنری نباید خالی باشد.', noSuggestions : 'No suggestions', // MISSING optionsTab : 'گزینهها', allCaps : 'نادیده گرفتن همه کلاه-واژهها', ignoreDomainNames : 'عبور از نامهای دامنه', mixedCase : 'عبور از کلماتی مرکب از حروف بزرگ و کوچک', mixedWithDigits : 'عبور از کلمات به همراه عدد', languagesTab : 'زبانها', dictionariesTab : 'دیکشنریها', dic_field_name : 'نام دیکشنری', dic_create : 'ایجاد', dic_restore : 'بازیافت', dic_delete : 'حذف', dic_rename : 'تغییر نام', dic_info : 'در ابتدا دیکشنری کاربر در کوکی ذخیره میشود. با این حال، کوکیها در اندازه محدود شدهاند. وقتی که دیکشنری کاربری بزرگ میشود و به نقطهای که نمیتواند در کوکی ذخیره شود، پس از آن دیکشنری ممکن است بر روی سرور ما ذخیره شود. برای ذخیره دیکشنری شخصی شما بر روی سرور ما، باید یک نام برای دیکشنری خود مشخص نمایید. اگر شما قبلا یک دیکشنری روی سرور ما ذخیره کردهاید، لطفا نام آنرا درج و روی دکمه بازیافت کلیک نمایید.', aboutTab : 'درباره' }, about : { title : 'درباره CKEditor', dlgTitle : 'درباره CKEditor', help : 'بررسی $1 برای راهنمایی.', userGuide : 'راهنمای کاربران CKEditor', moreInfo : 'برای کسب اطلاعات مجوز لطفا به وب سایت ما مراجعه کنید:', copy : 'حق نشر © $1. کلیه حقوق محفوظ است.' }, maximize : 'حداکثر کردن', minimize : 'حداقل کردن', fakeobjects : { anchor : 'لنگر', flash : 'انیمشن فلش', iframe : 'IFrame', hiddenfield : 'فیلد پنهان', unknown : 'شیء ناشناخته' }, resize : 'کشیدن برای تغییر اندازه', colordialog : { title : 'انتخاب رنگ', options : 'گزینههای رنگ', highlight : 'متمایز', selected : 'رنگ انتخاب شده', clear : 'پاک کردن' }, toolbarCollapse : 'بستن نوار ابزار', toolbarExpand : 'بازکردن نوار ابزار', toolbarGroups : { document : 'سند', clipboard : 'حافظه موقت/برگشت', editing : 'در حال ویرایش', forms : 'فرمها', basicstyles : 'شیوههای پایه', paragraph : 'بند', links : 'پیوندها', insert : 'ورود', styles : 'شیوهها', colors : 'رنگها', tools : 'ابزارها' }, bidi : { ltr : 'نوشتار متن از چپ به راست', rtl : 'نوشتار متن از راست به چپ' }, docprops : { label : 'ویژگیهای سند', title : 'ویژگیهای سند', design : 'طراحی', meta : 'فراداده', chooseColor : 'انتخاب', other : '<سایر>', docTitle : 'عنوان صفحه', charset : 'رمزگذاری نویسهگان', charsetOther : 'رمزگذاری نویسهگان دیگر', charsetASCII : 'ASCII', charsetCE : 'اروپای مرکزی', charsetCT : 'چینی رسمی (Big5)', charsetCR : 'سیریلیک', charsetGR : 'یونانی', charsetJP : 'ژاپنی', charsetKR : 'کرهای', charsetTR : 'ترکی', charsetUN : 'یونیکُد (UTF-8)', charsetWE : 'اروپای غربی', docType : 'عنوان نوع سند', docTypeOther : 'عنوان نوع سند دیگر', xhtmlDec : 'شامل تعاریف XHTML', bgColor : 'رنگ پسزمینه', bgImage : 'URL تصویر پسزمینه', bgFixed : 'پسزمینهٴ پیمایش ناپذیر', txtColor : 'رنگ متن', margin : 'حاشیههای صفحه', marginTop : 'بالا', marginLeft : 'چپ', marginRight : 'راست', marginBottom : 'پایین', metaKeywords : 'کلیدواژگان نمایهگذاری سند (با کاما جدا شوند)', metaDescription : 'توصیف سند', metaAuthor : 'نویسنده', metaCopyright : 'حق انتشار', previewHtml : '<p>این یک <strong>متن نمونه</strong> است. شما در حال استفاده از <a href="javascript:void(0)">CKEditor</a> هستید.</p>' } }; �����������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/da.js��������������������������������������������0000664�0001750�0001750�00000043423�12262650742�021725� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.da={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Tryk ALT 0 for hjælp',toolbars:'Editors værktøjslinjer',editor:'Rich Text Editor',source:'Kilde',newPage:'Ny side',save:'Gem',preview:'Vis eksempel',cut:'Klip',copy:'Kopiér',paste:'Indsæt',print:'Udskriv',underline:'Understreget',bold:'Fed',italic:'Kursiv',selectAll:'Vælg alt',removeFormat:'Fjern formatering',strike:'Gennemstreget',subscript:'Sænket skrift',superscript:'Hævet skrift',horizontalrule:'Indsæt vandret streg',pagebreak:'Indsæt sideskift',pagebreakAlt:'Sideskift',unlink:'Fjern hyperlink',undo:'Fortryd',redo:'Annullér fortryd',common:{browseServer:'Gennemse...',url:'URL',protocol:'Protokol',upload:'Upload',uploadSubmit:'Upload',image:'Indsæt billede',flash:'Indsæt Flash',form:'Indsæt formular',checkbox:'Indsæt afkrydsningsfelt',radio:'Indsæt alternativknap',textField:'Indsæt tekstfelt',textarea:'Indsæt tekstboks',hiddenField:'Indsæt skjult felt',button:'Indsæt knap',select:'Indsæt liste',imageButton:'Indsæt billedknap',notSet:'<intet valgt>',id:'Id',name:'Navn',langDir:'Tekstretning',langDirLtr:'Fra venstre mod højre (LTR)',langDirRtl:'Fra højre mod venstre (RTL)',langCode:'Sprogkode',longDescr:'Udvidet beskrivelse',cssClass:'Typografiark (CSS)',advisoryTitle:'Titel',cssStyle:'Typografi (CSS)',ok:'OK',cancel:'Annullér',close:'Luk',preview:'Forhåndsvisning',generalTab:'Generelt',advancedTab:'Avanceret',validateNumberFailed:'Værdien er ikke et tal.',confirmNewPage:'Alt indhold, der ikke er blevet gemt, vil gå tabt. Er du sikker på, at du vil indlæse en ny side?',confirmCancel:'Nogle af indstillingerne er blevet ændret. Er du sikker på, at du vil lukke vinduet?',options:'Vis muligheder',target:'Mål',targetNew:'Nyt vindue (_blank)',targetTop:'Øverste vindue (_top)',targetSelf:'Samme vindue (_self)',targetParent:'Samme vindue (_parent)',langDirLTR:'Venstre til højre (LTR)',langDirRTL:'Højre til venstre (RTL)',styles:'Style',cssClasses:'Stylesheetklasser',width:'Bredde',height:'Højde',align:'Justering',alignLeft:'Venstre',alignRight:'Højre',alignCenter:'Centreret',alignTop:'Øverst',alignMiddle:'Centreret',alignBottom:'Nederst',invalidValue:'Invalid value.',invalidHeight:'Højde skal være et tal.',invalidWidth:'Bredde skal være et tal.',invalidCssLength:'Værdien specificeret for "%1" feltet skal være et positivt nummer med eller uden en CSS måleenhed (px, %, in, cm, mm, em, ex, pt, eller pc).',invalidHtmlLength:'Værdien specificeret for "%1" feltet skal være et positivt nummer med eller uden en CSS måleenhed (px eller %).',invalidInlineStyle:'Værdien specificeret for inline style skal indeholde en eller flere elementer med et format som "name:value", separeret af semikoloner',cssLengthTooltip:'Indsæt en numerisk værdi i pixel eller nummer med en gyldig CSS værdi (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, ikke tilgængelig</span>'},contextmenu:{options:'Muligheder for hjælpemenu'},specialChar:{toolbar:'Indsæt symbol',title:'Vælg symbol',options:'Muligheder for specialkarakterer'},link:{toolbar:'Indsæt/redigér hyperlink',other:'<anden>',menu:'Redigér hyperlink',title:'Egenskaber for hyperlink',info:'Generelt',target:'Mål',upload:'Upload',advanced:'Avanceret',type:'Type',toUrl:'URL',toAnchor:'Bogmærke på denne side',toEmail:'E-mail',targetFrame:'<ramme>',targetPopup:'<popup vindue>',targetFrameName:'Destinationsvinduets navn',targetPopupName:'Popupvinduets navn',popupFeatures:'Egenskaber for popup',popupResizable:'Justérbar',popupStatusBar:'Statuslinje',popupLocationBar:'Adresselinje',popupToolbar:'Værktøjslinje',popupMenuBar:'Menulinje',popupFullScreen:'Fuld skærm (IE)',popupScrollBars:'Scrollbar',popupDependent:'Koblet/dependent (Netscape)',popupLeft:'Position fra venstre',popupTop:'Position fra toppen',id:'Id',langDir:'Tekstretning',langDirLTR:'Fra venstre mod højre (LTR)',langDirRTL:'Fra højre mod venstre (RTL)',acccessKey:'Genvejstast',name:'Navn',langCode:'Tekstretning',tabIndex:'Tabulatorindeks',advisoryTitle:'Titel',advisoryContentType:'Indholdstype',cssClasses:'Typografiark',charset:'Tegnsæt',styles:'Typografi',rel:'Relation',selectAnchor:'Vælg et anker',anchorName:'Efter ankernavn',anchorId:'Efter element-Id',emailAddress:'E-mailadresse',emailSubject:'Emne',emailBody:'Besked',noAnchors:'(Ingen bogmærker i dokumentet)',noUrl:'Indtast hyperlink-URL!',noEmail:'Indtast e-mailadresse!'},anchor:{toolbar:'Indsæt/redigér bogmærke',menu:'Egenskaber for bogmærke',title:'Egenskaber for bogmærke',name:'Bogmærkenavn',errorName:'Indtast bogmærkenavn',remove:'Fjern bogmærke'},list:{numberedTitle:'Egenskaber for nummereret liste',bulletedTitle:'Værdier for cirkelpunktopstilling',type:'Type',start:'Start',validateStartNumber:'Den nummererede liste skal starte med et rundt nummer',circle:'Cirkel',disc:'Værdier for diskpunktopstilling',square:'Firkant',none:'Ingen',notset:'<ikke defineret>',armenian:'Armensk nummering',georgian:'Georgiansk nummering (an, ban, gan, etc.)',lowerRoman:'Små romerske (i, ii, iii, iv, v, etc.)',upperRoman:'Store romerske (I, II, III, IV, V, etc.)',lowerAlpha:'Små alfabet (a, b, c, d, e, etc.)',upperAlpha:'Store alfabet (A, B, C, D, E, etc.)',lowerGreek:'Små græsk (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, osv.)',decimalLeadingZero:'Decimaler med 0 først (01, 02, 03, etc.)'},findAndReplace:{title:'Søg og erstat',find:'Søg',replace:'Erstat',findWhat:'Søg efter:',replaceWith:'Erstat med:',notFoundMsg:'Søgeteksten blev ikke fundet',findOptions:'Find muligheder',matchCase:'Forskel på store og små bogstaver',matchWord:'Kun hele ord',matchCyclic:'Match cyklisk',replaceAll:'Erstat alle',replaceSuccessMsg:'%1 forekomst(er) erstattet.'},table:{toolbar:'Tabel',title:'Egenskaber for tabel',menu:'Egenskaber for tabel',deleteTable:'Slet tabel',rows:'Rækker',columns:'Kolonner',border:'Rammebredde',widthPx:'pixels',widthPc:'procent',widthUnit:'Bredde på enhed',cellSpace:'Celleafstand',cellPad:'Cellemargen',caption:'Titel',summary:'Resumé',headers:'Hoved',headersNone:'Ingen',headersColumn:'Første kolonne',headersRow:'Første række',headersBoth:'Begge',invalidRows:'Antallet af rækker skal være større end 0.',invalidCols:'Antallet af kolonner skal være større end 0.',invalidBorder:'Rammetykkelse skal være et tal.',invalidWidth:'Tabelbredde skal være et tal.',invalidHeight:'Tabelhøjde skal være et tal.',invalidCellSpacing:'Celleafstand skal være et tal.',invalidCellPadding:'Cellemargen skal være et tal.',cell:{menu:'Celle',insertBefore:'Indsæt celle før',insertAfter:'Indsæt celle efter',deleteCell:'Slet celle',merge:'Flet celler',mergeRight:'Flet til højre',mergeDown:'Flet nedad',splitHorizontal:'Del celle vandret',splitVertical:'Del celle lodret',title:'Celleegenskaber',cellType:'Celletype',rowSpan:'Række span (rows span)',colSpan:'Kolonne span (columns span)',wordWrap:'Tekstombrydning',hAlign:'Vandret justering',vAlign:'Lodret justering',alignBaseline:'Grundlinje',bgColor:'Baggrundsfarve',borderColor:'Rammefarve',data:'Data',header:'Hoved',yes:'Ja',no:'Nej',invalidWidth:'Cellebredde skal være et tal.',invalidHeight:'Cellehøjde skal være et tal.',invalidRowSpan:'Række span skal være et heltal.',invalidColSpan:'Kolonne span skal være et heltal.',chooseColor:'Vælg'},row:{menu:'Række',insertBefore:'Indsæt række før',insertAfter:'Indsæt række efter',deleteRow:'Slet række'},column:{menu:'Kolonne',insertBefore:'Indsæt kolonne før',insertAfter:'Indsæt kolonne efter',deleteColumn:'Slet kolonne'}},button:{title:'Egenskaber for knap',text:'Tekst',type:'Type',typeBtn:'Knap',typeSbm:'Send',typeRst:'Nulstil'},checkboxAndRadio:{checkboxTitle:'Egenskaber for afkrydsningsfelt',radioTitle:'Egenskaber for alternativknap',value:'Værdi',selected:'Valgt'},form:{title:'Egenskaber for formular',menu:'Egenskaber for formular',action:'Handling',method:'Metode',encoding:'Kodning (encoding)'},select:{title:'Egenskaber for liste',selectInfo:'Generelt',opAvail:'Valgmuligheder',value:'Værdi',size:'Størrelse',lines:'Linjer',chkMulti:'Tillad flere valg',opText:'Tekst',opValue:'Værdi',btnAdd:'Tilføj',btnModify:'Redigér',btnUp:'Op',btnDown:'Ned',btnSetValue:'Sæt som valgt',btnDelete:'Slet'},textarea:{title:'Egenskaber for tekstboks',cols:'Kolonner',rows:'Rækker'},textfield:{title:'Egenskaber for tekstfelt',name:'Navn',value:'Værdi',charWidth:'Bredde (tegn)',maxChars:'Max. antal tegn',type:'Type',typeText:'Tekst',typePass:'Adgangskode'},hidden:{title:'Egenskaber for skjult felt',name:'Navn',value:'Værdi'},image:{title:'Egenskaber for billede',titleButton:'Egenskaber for billedknap',menu:'Egenskaber for billede',infoTab:'Generelt',btnUpload:'Upload fil til serveren',upload:'Upload',alt:'Alternativ tekst',lockRatio:'Lås størrelsesforhold',resetSize:'Nulstil størrelse',border:'Ramme',hSpace:'Vandret margen',vSpace:'Lodret margen',alertUrl:'Indtast stien til billedet',linkTab:'Hyperlink',button2Img:'Vil du lave billedknappen om til et almindeligt billede?',img2Button:'Vil du lave billedet om til en billedknap?',urlMissing:'Kilde på billed-URL mangler',validateBorder:'Kant skal være et helt nummer.',validateHSpace:'HSpace skal være et helt nummer.',validateVSpace:'VSpace skal være et helt nummer.'},flash:{properties:'Egenskaber for Flash',propertiesTab:'Egenskaber',title:'Egenskaber for Flash',chkPlay:'Automatisk afspilning',chkLoop:'Gentagelse',chkMenu:'Vis Flash-menu',chkFull:'Tillad fuldskærm',scale:'Skalér',scaleAll:'Vis alt',scaleNoBorder:'Ingen ramme',scaleFit:'Tilpas størrelse',access:'Scriptadgang',accessAlways:'Altid',accessSameDomain:'Samme domæne',accessNever:'Aldrig',alignAbsBottom:'Absolut nederst',alignAbsMiddle:'Absolut centreret',alignBaseline:'Grundlinje',alignTextTop:'Toppen af teksten',quality:'Kvalitet',qualityBest:'Bedste',qualityHigh:'Høj',qualityAutoHigh:'Auto høj',qualityMedium:'Medium',qualityAutoLow:'Auto lav',qualityLow:'Lav',windowModeWindow:'Vindue',windowModeOpaque:'Gennemsigtig (opaque)',windowModeTransparent:'Transparent',windowMode:'Vinduestilstand',flashvars:'Variabler for Flash',bgcolor:'Baggrundsfarve',hSpace:'Vandret margen',vSpace:'Lodret margen',validateSrc:'Indtast hyperlink URL!',validateHSpace:'Vandret margen skal være et tal.',validateVSpace:'Lodret margen skal være et tal.'},spellCheck:{toolbar:'Stavekontrol',title:'Stavekontrol',notAvailable:'Stavekontrol er desværre ikke tilgængelig.',errorLoading:'Fejl ved indlæsning af host: %s.',notInDic:'Ikke i ordbogen',changeTo:'Forslag',btnIgnore:'Ignorér',btnIgnoreAll:'Ignorér alle',btnReplace:'Erstat',btnReplaceAll:'Erstat alle',btnUndo:'Tilbage',noSuggestions:'(ingen forslag)',progress:'Stavekontrollen arbejder...',noMispell:'Stavekontrol færdig: Ingen fejl fundet',noChanges:'Stavekontrol færdig: Ingen ord ændret',oneChange:'Stavekontrol færdig: Et ord ændret',manyChanges:'Stavekontrol færdig: %1 ord ændret',ieSpellDownload:'Stavekontrol ikke installeret. Vil du installere den nu?'},smiley:{toolbar:'Smiley',title:'Vælg smiley',options:'Smileymuligheder'},elementsPath:{eleLabel:'Sti på element',eleTitle:'%1 element'},numberedlist:'Talopstilling',bulletedlist:'Punktopstilling',indent:'Forøg indrykning',outdent:'Formindsk indrykning',justify:{left:'Venstrestillet',center:'Centreret',right:'Højrestillet',block:'Lige margener'},blockquote:'Blokcitat',clipboard:{title:'Indsæt',cutError:'Din browsers sikkerhedsindstillinger tillader ikke editoren at få automatisk adgang til udklipsholderen.<br><br>Brug i stedet tastaturet til at klippe teksten (Ctrl/Cmd+X).',copyError:'Din browsers sikkerhedsindstillinger tillader ikke editoren at få automatisk adgang til udklipsholderen.<br><br>Brug i stedet tastaturet til at kopiere teksten (Ctrl/Cmd+C).',pasteMsg:'Indsæt i feltet herunder (<STRONG>Ctrl/Cmd+V</STRONG>) og klik på <STRONG>OK</STRONG>.',securityMsg:'Din browsers sikkerhedsindstillinger tillader ikke editoren at få automatisk adgang til udklipsholderen.<br><br>Du skal indsætte udklipsholderens indhold i dette vindue igen.',pasteArea:'Indsæt område'},pastefromword:{confirmCleanup:'Den tekst du forsøger at indsætte ser ud til at komme fra Word. Vil du rense teksten før den indsættes?',toolbar:'Indsæt fra Word',title:'Indsæt fra Word',error:'Det var ikke muligt at fjerne formatteringen på den indsatte tekst grundet en intern fejl'},pasteText:{button:'Indsæt som ikke-formateret tekst',title:'Indsæt som ikke-formateret tekst'},templates:{button:'Skabeloner',title:'Indholdsskabeloner',options:'Skabelon muligheder',insertOption:'Erstat det faktiske indhold',selectPromptMsg:'Vælg den skabelon, som skal åbnes i editoren (nuværende indhold vil blive overskrevet):',emptyListMsg:'(Der er ikke defineret nogen skabelon)'},showBlocks:'Vis afsnitsmærker',stylesCombo:{label:'Typografi',panelTitle:'Formattering på stylesheet',panelTitle1:'Block typografi',panelTitle2:'Inline typografi',panelTitle3:'Object typografi'},format:{label:'Formatering',panelTitle:'Formatering',tag_p:'Normal',tag_pre:'Formateret',tag_address:'Adresse',tag_h1:'Overskrift 1',tag_h2:'Overskrift 2',tag_h3:'Overskrift 3',tag_h4:'Overskrift 4',tag_h5:'Overskrift 5',tag_h6:'Overskrift 6',tag_div:'Normal (DIV)'},div:{title:'Opret Div Container',toolbar:'Opret Div Container',cssClassInputLabel:'Typografiark',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Sprogkode',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Vejledende titel',langDirLabel:'Sprogretning',langDirLTRLabel:'Venstre til højre (LTR)',langDirRTLLabel:'Højre til venstre (RTL)',edit:'Rediger Div',remove:'Slet Div'},iframe:{title:'Iframe egenskaber',toolbar:'Iframe',noUrl:'Venligst indsæt URL på iframen',scrolling:'Aktiver scrollbars',border:'Vis kant på rammen'},font:{label:'Skrifttype',voiceLabel:'Skrifttype',panelTitle:'Skrifttype'},fontSize:{label:'Skriftstørrelse',voiceLabel:'Skriftstørrelse',panelTitle:'Skriftstørrelse'},colorButton:{textColorTitle:'Tekstfarve',bgColorTitle:'Baggrundsfarve',panelTitle:'Farver',auto:'Automatisk',more:'Flere farver...'},colors:{'000':'Sort',800000:'Mørkerød','8B4513':'Mørk orange','2F4F4F':'Dark Slate Grå','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Mørkegrå',B22222:'Scarlet / Rød',A52A2A:'Brun',DAA520:'Guld','006400':'Mørkegrøn','40E0D0':'Tyrkis','0000CD':'Mellemblå',800080:'Lilla',808080:'Grå',F00:'Rød',FF8C00:'Mørk orange',FFD700:'Guld','008000':'Grøn','0FF':'Cyan','00F':'Blå',EE82EE:'Violet',A9A9A9:'Matgrå',FFA07A:'Laksefarve',FFA500:'Orange',FFFF00:'Gul','00FF00':'Lime',AFEEEE:'Mat tyrkis',ADD8E6:'Lyseblå',DDA0DD:'Plum',D3D3D3:'Lysegrå',FFF0F5:'Lavender Blush',FAEBD7:'Antikhvid',FFFFE0:'Lysegul',F0FFF0:'Gul / Beige',F0FFFF:'Himmeblå',F0F8FF:'Alice blue',E6E6FA:'Lavendel',FFF:'Hvid'},scayt:{title:'Stavekontrol mens du skriver',opera_title:'Ikke supporteret af Opera',enable:'Aktivér SCAYT',disable:'Deaktivér SCAYT',about:'Om SCAYT',toggle:'Skift/toggle SCAYT',options:'Indstillinger',langs:'Sprog',moreSuggestions:'Flere forslag',ignore:'Ignorér',ignoreAll:'Ignorér alle',addWord:'Tilføj ord',emptyDic:'Ordbogsnavn må ikke være tom.',noSuggestions:'Ingen forslag',optionsTab:'Indstillinger',allCaps:'Ignorer alle store bogstaver',ignoreDomainNames:'Ignorér domænenavne',mixedCase:'Ignorer ord med store og små bogstaver',mixedWithDigits:'Ignorér ord med numre',languagesTab:'Sprog',dictionariesTab:'Ordbøger',dic_field_name:'Navn på ordbog',dic_create:'Opret',dic_restore:'Gendan',dic_delete:'Slet',dic_rename:'Omdøb',dic_info:'Til start er brugerordbogen gemt i en Cookie. Dog har Cookies en begrænsning på størrelse. Når ordbogen når en bestemt størrelse kan den blive gemt på vores server. For at gemme din personlige ordbog på vores server skal du angive et navn for denne. Såfremt du allerede har gemt en ordbog, skriv navnet på denne og klik på Gendan knappen.',aboutTab:'Om'},about:{title:'Om CKEditor',dlgTitle:'Om CKEditor',help:'Se $1 for at få hjælp.',userGuide:'CKEditor-brugermanual',moreInfo:'For informationer omkring licens, se venligst vores hjemmeside (på engelsk):',copy:'Copyright © $1. Alle rettigheder forbeholdes.'},maximize:'Maksimér',minimize:'Minimér',fakeobjects:{anchor:'Anker',flash:'Flashanimation',iframe:'Iframe',hiddenfield:'Skjult felt',unknown:'Ukendt objekt'},resize:'Træk for at skalere',colordialog:{title:'Vælg farve',options:'Farvemuligheder',highlight:'Markér',selected:'Valgt farve',clear:'Nulstil'},toolbarCollapse:'Sammenklap værktøjslinje',toolbarExpand:'Udvid værktøjslinje',toolbarGroups:{document:'Dokument',clipboard:'Udklipsholder/Fortryd',editing:'Redigering',forms:'Formularer',basicstyles:'Basis styles',paragraph:'Paragraf',links:'Links',insert:'Indsæt',styles:'Typografier',colors:'Farver',tools:'Værktøjer'},bidi:{ltr:'Tekstretning fra venstre til højre',rtl:'Tekstretning fra højre til venstre'},docprops:{label:'Egenskaber for dokument',title:'Egenskaber for dokument',design:'Design',meta:'Metatags',chooseColor:'Vælg',other:'<anden>',docTitle:'Sidetitel',charset:'Tegnsætskode',charsetOther:'Anden tegnsætskode',charsetASCII:'ASCII',charsetCE:'Centraleuropæisk',charsetCT:'Traditionel kinesisk (Big5)',charsetCR:'Kyrillisk',charsetGR:'Græsk',charsetJP:'Japansk',charsetKR:'Koreansk',charsetTR:'Tyrkisk',charsetUN:'Unicode (UTF-8)',charsetWE:'Vesteuropæisk',docType:'Dokumenttype kategori',docTypeOther:'Anden dokumenttype kategori',xhtmlDec:'Inkludere XHTML deklartion',bgColor:'Baggrundsfarve',bgImage:'Baggrundsbillede URL',bgFixed:'Fastlåst baggrund',txtColor:'Tekstfarve',margin:'Sidemargen',marginTop:'Øverst',marginLeft:'Venstre',marginRight:'Højre',marginBottom:'Nederst',metaKeywords:'Dokument index nøgleord (kommasepareret)',metaDescription:'Dokumentbeskrivelse',metaAuthor:'Forfatter',metaCopyright:'Copyright',previewHtml:'<p>Dette er et <strong>eksempel på noget tekst</strong>. Du benytter <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ja.js��������������������������������������������0000664�0001750�0001750�00000051533�12262650742�021734� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.ja={dir:'ltr',editorTitle:'リッチテキストエディタ, %1',editorHelp:'ヘルプは ALT 0 を押してください',toolbars:'Editor toolbars',editor:'リッチテキストエディタ',source:'ソース',newPage:'新しいページ',save:'保存',preview:'プレビュー',cut:'切り取り',copy:'コピー',paste:'貼り付け',print:'印刷',underline:'下線',bold:'太字',italic:'斜体',selectAll:'すべて選択',removeFormat:'フォーマット削除',strike:'打ち消し線',subscript:'添え字',superscript:'上付き文字',horizontalrule:'横罫線',pagebreak:'改ページ挿入',pagebreakAlt:'Page Break',unlink:'リンク削除',undo:'元に戻す',redo:'やり直し',common:{browseServer:'サーバーブラウザー',url:'URL',protocol:'プロトコル',upload:'アップロード',uploadSubmit:'サーバーに送信',image:'イメージ',flash:'Flash',form:'フォーム',checkbox:'チェックボックス',radio:'ラジオボタン',textField:'1行テキスト',textarea:'テキストエリア',hiddenField:'不可視フィールド',button:'ボタン',select:'選択フィールド',imageButton:'画像ボタン',notSet:'<なし>',id:'Id',name:'Name属性',langDir:'文字表記の方向',langDirLtr:'左から右 (LTR)',langDirRtl:'右から左 (RTL)',langCode:'言語コード',longDescr:'longdesc属性(長文説明)',cssClass:'スタイルシートクラス',advisoryTitle:'Title属性',cssStyle:'スタイルシート',ok:'OK',cancel:'キャンセル',close:'閉じる',preview:'プレビュー',generalTab:'全般',advancedTab:'高度な設定',validateNumberFailed:'値が数ではありません',confirmNewPage:'変更内容を保存せず、 新しいページを開いてもよろしいでしょうか?',confirmCancel:'オプション設定を変更しました。ダイアログを閉じてもよろしいでしょうか?',options:'オプション',target:'ターゲット',targetNew:'新しいウィンドウ (_空白)',targetTop:'最上部ウィンドウ (_トップ)',targetSelf:'同じウィンドウ (_同一)',targetParent:'親ウィンドウ (_親)',langDirLTR:'左から右 (LTR)',langDirRTL:'右から左 (RTL)',styles:'スタイル',cssClasses:'スタイルシートクラス',width:'幅',height:'高さ',align:'行揃え',alignLeft:'左',alignRight:'右',alignCenter:'中央',alignTop:'上',alignMiddle:'中央',alignBottom:'下',invalidValue:'Invalid value.',invalidHeight:'高さは数値で入力してください。',invalidWidth:'幅は数値で入力してください。',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, 利用不可能</span>'},contextmenu:{options:'コンテキストメニューオプション'},specialChar:{toolbar:'特殊文字挿入',title:'特殊文字選択',options:'特殊文字オプション'},link:{toolbar:'リンク挿入/編集',other:'<その他の>',menu:'リンク編集',title:'ハイパーリンク',info:'ハイパーリンク 情報',target:'ターゲット',upload:'アップロード',advanced:'高度な設定',type:'リンクタイプ',toUrl:'URL',toAnchor:'このページのアンカー',toEmail:'E-Mail',targetFrame:'<フレーム>',targetPopup:'<ポップアップウィンドウ>',targetFrameName:'目的のフレーム名',targetPopupName:'ポップアップウィンドウ名',popupFeatures:'ポップアップウィンドウ特徴',popupResizable:'サイズ可変',popupStatusBar:'ステータスバー',popupLocationBar:'ロケーションバー',popupToolbar:'ツールバー',popupMenuBar:'メニューバー',popupFullScreen:'全画面モード(IE)',popupScrollBars:'スクロールバー',popupDependent:'開いたウィンドウに連動して閉じる (Netscape)',popupLeft:'左端からの座標で指定',popupTop:'上端からの座標で指定',id:'Id',langDir:'文字表記の方向',langDirLTR:'左から右 (LTR)',langDirRTL:'右から左 (RTL)',acccessKey:'アクセスキー',name:'Name属性',langCode:'言語コード',tabIndex:'タブインデックス',advisoryTitle:'Title属性',advisoryContentType:'Content Type属性',cssClasses:'スタイルシートクラス',charset:'リンクcharset属性',styles:'スタイルシート',rel:'Relationship',selectAnchor:'アンカーを選択',anchorName:'アンカー名',anchorId:'エレメントID',emailAddress:'E-Mail アドレス',emailSubject:'件名',emailBody:'本文',noAnchors:'(ドキュメントにおいて利用可能なアンカーはありません。)',noUrl:'リンクURLを入力してください。',noEmail:'メールアドレスを入力してください。'},anchor:{toolbar:'アンカー挿入/編集',menu:'アンカー プロパティ',title:'アンカー プロパティ',name:'アンカー名',errorName:'アンカー名を必ず入力してください。',remove:'Remove Anchor'},list:{numberedTitle:'段落番号 プロパティ',bulletedTitle:'箇条書き プロパティ',type:'タイプ',start:'開始',validateStartNumber:'リスト開始番号は数値で入力してください。',circle:'白丸',disc:'黒丸',square:'四角',none:'なし',notset:'<なし>',armenian:'アルメニア数字',georgian:'グルジア数字 (an, ban, gan, etc.)',lowerRoman:'小文字ローマ数字 (i, ii, iii, iv, v, etc.)',upperRoman:'大文字ローマ数字 (I, II, III, IV, V, etc.)',lowerAlpha:'小文字アルファベット (a, b, c, d, e, etc.)',upperAlpha:'大文字アルファベット (A, B, C, D, E, etc.)',lowerGreek:'小文字ギリシャ文字 (alpha, beta, gamma, etc.)',decimal:'数字 (1, 2, 3, etc.)',decimalLeadingZero:'上位桁に0をつけた数字 (01, 02, 03, etc.)'},findAndReplace:{title:'検索して置換',find:'検索',replace:'置き換え',findWhat:'検索する文字列:',replaceWith:'置換えする文字列:',notFoundMsg:'指定された文字列は見つかりませんでした。',findOptions:'Find Options',matchCase:'大文字と小文字を区別する',matchWord:'単語単位で探す',matchCyclic:'一周する',replaceAll:'すべて置換え',replaceSuccessMsg:'%1 個置換しました。'},table:{toolbar:'テーブル',title:'テーブル プロパティ',menu:'テーブル プロパティ',deleteTable:'テーブル削除',rows:'行',columns:'列',border:'ボーダーサイズ',widthPx:'ピクセル',widthPc:'パーセント',widthUnit:'ユニット',cellSpace:'セル内余白',cellPad:'セル内間隔',caption:'キャプション',summary:'テーブルの概要',headers:'テーブルヘッダ(th)',headersNone:'なし',headersColumn:'初めの列のみ',headersRow:'初めの行のみ',headersBoth:'両方',invalidRows:'行は0より大きな数値で入力してください。',invalidCols:'列は0より大きな数値で入力してください。',invalidBorder:'ボーダーサイズは数値で入力してください。',invalidWidth:'幅は数値で入力してください。',invalidHeight:'高さは数値で入力してください。',invalidCellSpacing:'セル内余白は数値で入力してください。',invalidCellPadding:'セル内間隔は数値で入力してください。',cell:{menu:'セル',insertBefore:'セルの前に挿入',insertAfter:'セルの後に挿入',deleteCell:'セル削除',merge:'セル結合',mergeRight:'右に結合',mergeDown:'下に結合',splitHorizontal:'セルを水平方向分割',splitVertical:'セルを垂直方向に分割',title:'セルプロパティ',cellType:'セルタイプ',rowSpan:'縦幅(行数)',colSpan:'横幅(列数)',wordWrap:'折り返し',hAlign:'セル横の整列',vAlign:'セル縦の整列',alignBaseline:'ベースライン',bgColor:'背景色',borderColor:'ボーダーカラー',data:'テーブルデータ(td)',header:'テーブルヘッダ(th)',yes:'Yes',no:'No',invalidWidth:'セル幅は数値で入力してください。',invalidHeight:'セル高さは数値で入力してください。',invalidRowSpan:'縦幅(行数)は数値で入力してください。',invalidColSpan:'横幅(列数)は数値で入力してください。',chooseColor:'色の選択'},row:{menu:'行',insertBefore:'行の前に挿入',insertAfter:'行の後に挿入',deleteRow:'行削除'},column:{menu:'カラム',insertBefore:'カラムの前に挿入',insertAfter:'カラムの後に挿入',deleteColumn:'列削除'}},button:{title:'ボタン プロパティ',text:'テキスト (値)',type:'タイプ',typeBtn:'ボタン',typeSbm:'送信',typeRst:'リセット'},checkboxAndRadio:{checkboxTitle:'チェックボックス プロパティ',radioTitle:'ラジオボタン プロパティ',value:'値',selected:'選択済み'},form:{title:'フォーム プロパティ',menu:'フォーム プロパティ',action:'アクション',method:'メソッド',encoding:'エンコーディング'},select:{title:'選択フィールド プロパティ',selectInfo:'情報',opAvail:'利用可能なオプション',value:'選択項目値',size:'サイズ',lines:'行',chkMulti:'複数項目選択を許可',opText:'選択項目名',opValue:'値',btnAdd:'追加',btnModify:'編集',btnUp:'上へ',btnDown:'下へ',btnSetValue:'選択した値を設定',btnDelete:'削除'},textarea:{title:'テキストエリア プロパティ',cols:'列',rows:'行'},textfield:{title:'1行テキスト プロパティ',name:'名前',value:'値',charWidth:'サイズ',maxChars:'最大長',type:'タイプ',typeText:'テキスト',typePass:'パスワード入力'},hidden:{title:'不可視フィールド プロパティ',name:'名前',value:'値'},image:{title:'イメージ プロパティ',titleButton:'画像ボタン プロパティ',menu:'イメージ プロパティ',infoTab:'イメージ 情報',btnUpload:'サーバーに送信',upload:'アップロード',alt:'代替テキスト',lockRatio:'ロック比率',resetSize:'サイズリセット',border:'ボーダー',hSpace:'横間隔',vSpace:'縦間隔',alertUrl:'イメージのURLを入力してください。',linkTab:'リンク',button2Img:'選択したボタンを画像に置き換えますか?',img2Button:'選択した画像をボタンに置き換えますか?',urlMissing:'イメージのURLを入力してください。',validateBorder:'ボーダーは数値で入力してください。',validateHSpace:'横間隔は数値で入力してください。',validateVSpace:'縦間隔は数値で入力してください。'},flash:{properties:'Flash プロパティ',propertiesTab:'プロパティ',title:'Flash プロパティ',chkPlay:'再生',chkLoop:'ループ再生',chkMenu:'Flashメニュー可能',chkFull:'フルスクリーン許可',scale:'拡大縮小設定',scaleAll:'すべて表示',scaleNoBorder:'外が見えない様に拡大',scaleFit:'上下左右にフィット',access:'スプリクトアクセス(AllowScriptAccess)',accessAlways:'すべての場合に通信可能(Always)',accessSameDomain:'同一ドメインのみに通信可能(Same domain)',accessNever:'すべての場合に通信不可能(Never)',alignAbsBottom:'下部(絶対的)',alignAbsMiddle:'中央(絶対的)',alignBaseline:'ベースライン',alignTextTop:'テキスト上部',quality:'画質',qualityBest:'品質優先',qualityHigh:'高',qualityAutoHigh:'自動/高',qualityMedium:'中',qualityAutoLow:'自動/低',qualityLow:'低',windowModeWindow:'標準',windowModeOpaque:'背景を不透明設定',windowModeTransparent:'背景を透過設定',windowMode:'ウィンドウモード',flashvars:'フラッシュに渡す変数(FlashVars)',bgcolor:'背景色',hSpace:'横間隔',vSpace:'縦間隔',validateSrc:'リンクURLを入力してください。',validateHSpace:'横間隔は数値で入力してください。',validateVSpace:'縦間隔は数値で入力してください。'},spellCheck:{toolbar:'スペルチェック',title:'スペルチェック',notAvailable:'申し訳ありません、現在サービスを利用することができません',errorLoading:'アプリケーションサービスホスト読込みエラー: %s.',notInDic:'辞書にありません',changeTo:'変更',btnIgnore:'無視',btnIgnoreAll:'すべて無視',btnReplace:'置換',btnReplaceAll:'すべて置換',btnUndo:'やり直し',noSuggestions:'- 該当なし -',progress:'スペルチェック処理中...',noMispell:'スペルチェック完了: スペルの誤りはありませんでした',noChanges:'スペルチェック完了: 語句は変更されませんでした',oneChange:'スペルチェック完了: 1語句変更されました',manyChanges:'スペルチェック完了: %1 語句変更されました',ieSpellDownload:'スペルチェッカーがインストールされていません。今すぐダウンロードしますか?'},smiley:{toolbar:'絵文字',title:'顔文字挿入',options:'絵文字オプション'},elementsPath:{eleLabel:'エレメントパス',eleTitle:'%1 エレメント'},numberedlist:'段落番号',bulletedlist:'箇条書き',indent:'インデント',outdent:'インデント解除',justify:{left:'左揃え',center:'中央揃え',right:'右揃え',block:'両端揃え'},blockquote:'ブロック引用',clipboard:{title:'貼り付け',cutError:'ブラウザーのセキュリティ設定によりエディタの切り取り操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl/Cmd+X)を使用してください。',copyError:'ブラウザーのセキュリティ設定によりエディタのコピー操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl/Cmd+C)を使用してください。',pasteMsg:'キーボード(<STRONG>Ctrl/Cmd+V</STRONG>)を使用して、次の入力エリア内で貼って、<STRONG>OK</STRONG>を押してください。',securityMsg:'ブラウザのセキュリティ設定により、エディタはクリップボード・データに直接アクセスすることができません。このウィンドウは貼り付け操作を行う度に表示されます。',pasteArea:'貼り付け場所'},pastefromword:{confirmCleanup:'貼り付けを行うテキストは、ワード文章からコピーされようとしています。貼り付ける前にクリーニングを行いますか?',toolbar:'ワード文章から貼り付け',title:'ワード文章から貼り付け',error:'内部エラーにより貼り付けたデータがクリアできませんでした'},pasteText:{button:'プレーンテキスト貼り付け',title:'プレーンテキスト貼り付け'},templates:{button:'テンプレート(雛形)',title:'テンプレート内容',options:'テンプレートオプション',insertOption:'現在のエディタの内容と置換えをします',selectPromptMsg:'エディターで使用するテンプレートを選択してください。<br>(現在のエディタの内容は失われます):',emptyListMsg:'(テンプレートが定義されていません)'},showBlocks:'ブロック表示',stylesCombo:{label:'スタイル',panelTitle:'スタイル',panelTitle1:'ブロックスタイル',panelTitle2:'インラインスタイル',panelTitle3:'オブジェクトスタイル'},format:{label:'フォーマット',panelTitle:'フォーマット',tag_p:'標準',tag_pre:'書式付き',tag_address:'アドレス',tag_h1:'見出し 1',tag_h2:'見出し 2',tag_h3:'見出し 3',tag_h4:'見出し 4',tag_h5:'見出し 5',tag_h6:'見出し 6',tag_div:'標準 (DIV)'},div:{title:'Divコンテナ',toolbar:'Divコンテナ',cssClassInputLabel:'スタイルシートクラス',styleSelectLabel:'スタイル',IdInputLabel:'Id',languageCodeInputLabel:' 言語コード',inlineStyleInputLabel:'インラインスタイル',advisoryTitleInputLabel:'Title属性',langDirLabel:'文字表記の方向',langDirLTRLabel:'左から右 (LTR)',langDirRTLLabel:'右から左 (RTL)',edit:'Divコンテナ 編集',remove:'Divコンテナ 削除'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'フォント',voiceLabel:'フォント',panelTitle:'フォント'},fontSize:{label:'サイズ',voiceLabel:'フォントサイズ',panelTitle:'サイズ'},colorButton:{textColorTitle:'テキスト色',bgColorTitle:'背景色',panelTitle:'色',auto:'自動',more:'その他の色...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'スペルチェック設定(SCAYT)',opera_title:'Operaではサポートされません',enable:'SCAYT有効',disable:'SCAYT無効',about:'SCAYTバージョン',toggle:'SCAYT切替',options:'オプション',langs:'言語',moreSuggestions:'他の候補',ignore:'無視',ignoreAll:'すべて無視',addWord:'語句追加',emptyDic:'辞書名は必ず入力してください',noSuggestions:'該当なし',optionsTab:'オプション',allCaps:'全て大文字の単語を無視',ignoreDomainNames:'ドメイン名を無視',mixedCase:'大文字小文字混在の単語を無視',mixedWithDigits:'数字付き単語を無視',languagesTab:'言語',dictionariesTab:'辞書',dic_field_name:'辞書名',dic_create:'登録',dic_restore:'元に戻す',dic_delete:'削除',dic_rename:'名前変更',dic_info:'始めユーザーディレクトリは、Cookieに保存されます。但し Cookie はサイズに制限があります。ユーザーディレクトリがCookieに保存できないサイズに到達するとディレクトリはサーバー上に保存されます。個人のディレクトリをサーバー上に保存するには、ディレクトリ名を明示する必要があります。もし既に保存されたディレクトリがある場合、その名前を入力し、元に戻すボタンを押してください。',aboutTab:'バージョン情報'},about:{title:'CKEditorバージョン情報',dlgTitle:'CKEditorバージョン情報',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'ライセンス情報の詳細はウェブサイトにて確認してください:',copy:'Copyright © $1. All rights reserved.'},maximize:'最大化',minimize:'最小化',fakeobjects:{anchor:'アンカー',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'ドラッグしてリサイズ',colordialog:{title:'色選択',options:'カラーオプション',highlight:'ハイライト',selected:'選択された色',clear:'クリア'},toolbarCollapse:'ツールバーを閉じる',toolbarExpand:'ツールバーを開く',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'テキストの向き : 左から右へ',rtl:'テキストの向き : 右から左へ'},docprops:{label:'文書 プロパティ',title:'文書 プロパティ',design:'Design',meta:'メタデータ',chooseColor:'色の選択',other:'<その他の>',docTitle:'ページタイトル',charset:'文字セット符号化',charsetOther:'他の文字セット符号化',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'文書タイプヘッダー',docTypeOther:'その他文書タイプヘッダー',xhtmlDec:'XHTML宣言をインクルード',bgColor:'背景色',bgImage:'背景画像 URL',bgFixed:'スクロールしない背景',txtColor:'テキスト色',margin:'ページ・マージン',marginTop:'上部',marginLeft:'左',marginRight:'右',marginBottom:'下部',metaKeywords:'文書のキーワード(カンマ区切り)',metaDescription:'文書の概要',metaAuthor:'文書の作者',metaCopyright:'文書の著作権',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/vi.js��������������������������������������������0000664�0001750�0001750�00000052470�12262650742�021761� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.vi={dir:'ltr',editorTitle:'Trình soạn thảo phong phú, %1',editorHelp:'Nhấn ALT + 0 để được giúp đỡ',toolbars:'Thanh công cụ',editor:'Bộ soạn thảo',source:'Mã HTML',newPage:'Trang mới',save:'Lưu',preview:'Xem trước',cut:'Cắt',copy:'Sao chép',paste:'Dán',print:'In',underline:'Gạch chân',bold:'Đậm',italic:'Nghiêng',selectAll:'Chọn tất cả',removeFormat:'Xoá định dạng',strike:'Gạch xuyên ngang',subscript:'Chỉ số dưới',superscript:'Chỉ số trên',horizontalrule:'Chèn đường phân cách ngang',pagebreak:'Chèn ngắt trang',pagebreakAlt:'Ngắt trang',unlink:'Xoá liên kết',undo:'Khôi phục thao tác',redo:'Làm lại thao tác',common:{browseServer:'Duyệt trên máy chủ',url:'URL',protocol:'Giao thức',upload:'Tải lên',uploadSubmit:'Tải lên máy chủ',image:'Hình ảnh',flash:'Flash',form:'Biểu mẫu',checkbox:'Nút kiểm',radio:'Nút chọn',textField:'Trường văn bản',textarea:'Vùng văn bản',hiddenField:'Trường ẩn',button:'Nút',select:'Ô chọn',imageButton:'Nút hình ảnh',notSet:'<không thiết lập>',id:'Định danh',name:'Tên',langDir:'Hướng ngôn ngữ',langDirLtr:'Trái sang phải (LTR)',langDirRtl:'Phải sang trái (RTL)',langCode:'Mã ngôn ngữ',longDescr:'Mô tả URL',cssClass:'Lớp Stylesheet',advisoryTitle:'Nhan đề hướng dẫn',cssStyle:'Kiểu (style)',ok:'Đồng ý',cancel:'Bỏ qua',close:'Đóng',preview:'Xem trước',generalTab:'Tab chung',advancedTab:'Tab mở rộng',validateNumberFailed:'Giá trị này không phải là số.',confirmNewPage:'Mọi thay đổi không được lưu lại, nội dung này sẽ bị mất. Bạn có chắc chắn muốn tải một trang mới?',confirmCancel:'Một vài tùy chọn đã bị thay đổi. Bạn có chắc chắn muốn đóng hộp thoại?',options:'Tùy chọn',target:'Đích đến',targetNew:'Cửa sổ mới (_blank)',targetTop:'Cửa sổ trên cùng (_top)',targetSelf:'Tại trang (_self)',targetParent:'Cửa sổ cha (_parent)',langDirLTR:'Trái sang phải (LTR)',langDirRTL:'Phải sang trái (RTL)',styles:'Kiểu',cssClasses:'Lớp CSS',width:'Chiều rộng',height:'chiều cao',align:'Vị trí',alignLeft:'Trái',alignRight:'Phải',alignCenter:'Giữa',alignTop:'Trên',alignMiddle:'Giữa',alignBottom:'Dưới',invalidValue:'Invalid value.',invalidHeight:'Chiều cao phải là số nguyên.',invalidWidth:'Chiều rộng phải là số nguyên.',invalidCssLength:'Giá trị quy định cho trường "%1" phải là một số dương có hoặc không có một đơn vị đo CSS hợp lệ (px, %, in, cm, mm, em, ex, pt, hoặc pc).',invalidHtmlLength:'Giá trị quy định cho trường "%1" phải là một số dương có hoặc không có một đơn vị đo HTML hợp lệ (px hoặc %).',invalidInlineStyle:'Giá trị quy định cho kiểu nội tuyến phải bao gồm một hoặc nhiều dữ liệu với định dạng "tên:giá trị", cách nhau bằng dấu chấm phẩy.',cssLengthTooltip:'Nhập một giá trị theo pixel hoặc một số với một đơn vị CSS hợp lệ (px, %, in, cm, mm, em, ex, pt, hoặc pc).',unavailable:'%1<span class="cke_accessibility">, không có</span>'},contextmenu:{options:'Tùy chọn menu bổ xung'},specialChar:{toolbar:'Chèn ký tự đặc biệt',title:'Hãy chọn ký tự đặc biệt',options:'Tùy chọn các ký tự đặc biệt'},link:{toolbar:'Chèn/Sửa liên kết',other:'<khác>',menu:'Sửa liên kết',title:'Liên kết',info:'Thông tin liên kết',target:'Đích',upload:'Tải lên',advanced:'Mở rộng',type:'Kiểu liên kết',toUrl:'URL',toAnchor:'Neo trong trang này',toEmail:'Thư điện tử',targetFrame:'<khung>',targetPopup:'<cửa sổ popup>',targetFrameName:'Tên khung đích',targetPopupName:'Tên cửa sổ Popup',popupFeatures:'Đặc điểm của cửa sổ Popup',popupResizable:'Có thể thay đổi kích cỡ',popupStatusBar:'Thanh trạng thái',popupLocationBar:'Thanh vị trí',popupToolbar:'Thanh công cụ',popupMenuBar:'Thanh Menu',popupFullScreen:'Toàn màn hình (IE)',popupScrollBars:'Thanh cuộn',popupDependent:'Phụ thuộc (Netscape)',popupLeft:'Vị trí bên trái',popupTop:'Vị trí phía trên',id:'Định danh',langDir:'Hướng ngôn ngữ',langDirLTR:'Trái sang phải (LTR)',langDirRTL:'Phải sang trái (RTL)',acccessKey:'Phím hỗ trợ truy cập',name:'Tên',langCode:'Mã ngôn ngữ',tabIndex:'Chỉ số của Tab',advisoryTitle:'Nhan đề hướng dẫn',advisoryContentType:'Nội dung hướng dẫn',cssClasses:'Lớp Stylesheet',charset:'Bảng mã của tài nguyên được liên kết đến',styles:'Kiểu (style)',rel:'Quan hệ',selectAnchor:'Chọn một điểm neo',anchorName:'Theo tên điểm neo',anchorId:'Theo định danh thành phần',emailAddress:'Thư điện tử',emailSubject:'Tiêu đề thông điệp',emailBody:'Nội dung thông điệp',noAnchors:'(Không có điểm neo nào trong tài liệu)',noUrl:'Hãy đưa vào đường dẫn liên kết (URL)',noEmail:'Hãy đưa vào địa chỉ thư điện tử'},anchor:{toolbar:'Chèn/Sửa điểm neo',menu:'Thuộc tính điểm neo',title:'Thuộc tính điểm neo',name:'Tên của điểm neo',errorName:'Hãy nhập vào tên của điểm neo',remove:'Xóa neo'},list:{numberedTitle:'Thuộc tính danh sách có thứ tự',bulletedTitle:'Thuộc tính danh sách không thứ tự',type:'Kiểu loại',start:'Bắt đầu',validateStartNumber:'Số bắt đầu danh sách phải là một số nguyên.',circle:'Khuyên tròn',disc:'Hình đĩa',square:'Hình vuông',none:'Không gì cả',notset:'<không thiết lập>',armenian:'Số theo kiểu Armenian',georgian:'Số theo kiểu Georgian (an, ban, gan...)',lowerRoman:'Số La Mã kiểu thường (i, ii, iii, iv, v...)',upperRoman:'Số La Mã kiểu HOA (I, II, III, IV, V...)',lowerAlpha:'Kiểu abc thường (a, b, c, d, e...)',upperAlpha:'Kiểu ABC HOA (A, B, C, D, E...)',lowerGreek:'Kiểu Hy Lạp (alpha, beta, gamma...)',decimal:'Kiểu số (1, 2, 3 ...)',decimalLeadingZero:'Kiểu số (01, 02, 03...)'},findAndReplace:{title:'Tìm kiếm và thay thế',find:'Tìm kiếm',replace:'Thay thế',findWhat:'Tìm chuỗi:',replaceWith:'Thay bằng:',notFoundMsg:'Không tìm thấy chuỗi cần tìm.',findOptions:'Tìm tùy chọn',matchCase:'Phân biệt chữ hoa/thường',matchWord:'Giống toàn bộ từ',matchCyclic:'Giống một phần',replaceAll:'Thay thế tất cả',replaceSuccessMsg:'%1 vị trí đã được thay thế.'},table:{toolbar:'Bảng',title:'Thuộc tính bảng',menu:'Thuộc tính bảng',deleteTable:'Xóa bảng',rows:'Số hàng',columns:'Số cột',border:'Kích thước đường viền',widthPx:'Điểm ảnh (px)',widthPc:'Phần trăm (%)',widthUnit:'Đơn vị',cellSpace:'Khoảng cách giữa các ô',cellPad:'Khoảng đệm giữ ô và nội dung',caption:'Đầu đề',summary:'Tóm lược',headers:'Đầu đề',headersNone:'Không có',headersColumn:'Cột đầu tiên',headersRow:'Hàng đầu tiên',headersBoth:'Cả hai',invalidRows:'Số lượng hàng phải là một số lớn hơn 0.',invalidCols:'Số lượng cột phải là một số lớn hơn 0.',invalidBorder:'Kích cỡ của đường biên phải là một số nguyên.',invalidWidth:'Chiều rộng của bảng phải là một số nguyên.',invalidHeight:'Chiều cao của bảng phải là một số nguyên.',invalidCellSpacing:'Khoảng cách giữa các ô phải là một số nguyên.',invalidCellPadding:'Khoảng đệm giữa ô và nội dung phải là một số nguyên.',cell:{menu:'Ô',insertBefore:'Chèn ô Phía trước',insertAfter:'Chèn ô Phía sau',deleteCell:'Xoá ô',merge:'Kết hợp ô',mergeRight:'Kết hợp sang phải',mergeDown:'Kết hợp xuống dưới',splitHorizontal:'Phân tách ô theo chiều ngang',splitVertical:'Phân tách ô theo chiều dọc',title:'Thuộc tính của ô',cellType:'Kiểu của ô',rowSpan:'Kết hợp hàng',colSpan:'Kết hợp cột',wordWrap:'Chữ liền hàng',hAlign:'Canh lề ngang',vAlign:'Canh lề dọc',alignBaseline:'Đường cơ sở',bgColor:'Màu nền',borderColor:'Màu viền',data:'Dữ liệu',header:'Đầu đề',yes:'Có',no:'Không',invalidWidth:'Chiều rộng của ô phải là một số nguyên.',invalidHeight:'Chiều cao của ô phải là một số nguyên.',invalidRowSpan:'Số hàng kết hợp phải là một số nguyên.',invalidColSpan:'Số cột kết hợp phải là một số nguyên.',chooseColor:'Chọn màu'},row:{menu:'Hàng',insertBefore:'Chèn hàng phía trước',insertAfter:'Chèn hàng phía sau',deleteRow:'Xoá hàng'},column:{menu:'Cột',insertBefore:'Chèn cột phía trước',insertAfter:'Chèn cột phía sau',deleteColumn:'Xoá cột'}},button:{title:'Thuộc tính của nút',text:'Chuỗi hiển thị (giá trị)',type:'Kiểu',typeBtn:'Nút bấm',typeSbm:'Nút gửi',typeRst:'Nút nhập lại'},checkboxAndRadio:{checkboxTitle:'Thuộc tính nút kiểm',radioTitle:'Thuộc tính nút chọn',value:'Giá trị',selected:'Được chọn'},form:{title:'Thuộc tính biểu mẫu',menu:'Thuộc tính biểu mẫu',action:'Hành động',method:'Phương thức',encoding:'Bảng mã'},select:{title:'Thuộc tính ô chọn',selectInfo:'Thông tin',opAvail:'Các tùy chọn có thể sử dụng',value:'Giá trị',size:'Kích cỡ',lines:'dòng',chkMulti:'Cho phép chọn nhiều',opText:'Văn bản',opValue:'Giá trị',btnAdd:'Thêm',btnModify:'Thay đổi',btnUp:'Lên',btnDown:'Xuống',btnSetValue:'Giá trị được chọn',btnDelete:'Nút xoá'},textarea:{title:'Thuộc tính vùng văn bản',cols:'Số cột',rows:'Số hàng'},textfield:{title:'Thuộc tính trường văn bản',name:'Tên',value:'Giá trị',charWidth:'Độ rộng của ký tự',maxChars:'Số ký tự tối đa',type:'Kiểu',typeText:'Ký tự',typePass:'Mật khẩu'},hidden:{title:'Thuộc tính trường ẩn',name:'Tên',value:'Giá trị'},image:{title:'Thuộc tính của ảnh',titleButton:'Thuộc tính nút của ảnh',menu:'Thuộc tính của ảnh',infoTab:'Thông tin của ảnh',btnUpload:'Tải lên máy chủ',upload:'Tải lên',alt:'Chú thích ảnh',lockRatio:'Giữ nguyên tỷ lệ',resetSize:'Kích thước gốc',border:'Đường viền',hSpace:'Khoảng đệm ngang',vSpace:'Khoảng đệm dọc',alertUrl:'Hãy đưa vào đường dẫn của ảnh',linkTab:'Tab liên kết',button2Img:'Bạn có muốn chuyển nút bấm bằng ảnh được chọn thành ảnh?',img2Button:'Bạn có muốn chuyển đổi ảnh được chọn thành nút bấm bằng ảnh?',urlMissing:'Thiếu đường dẫn hình ảnh',validateBorder:'Chiều rộng của đường viền phải là một số nguyên dương',validateHSpace:'Khoảng đệm ngang phải là một số nguyên dương',validateVSpace:'Khoảng đệm dọc phải là một số nguyên dương'},flash:{properties:'Thuộc tính Flash',propertiesTab:'Thuộc tính',title:'Thuộc tính Flash',chkPlay:'Tự động chạy',chkLoop:'Lặp',chkMenu:'Cho phép bật menu của Flash',chkFull:'Cho phép toàn màn hình',scale:'Tỷ lệ',scaleAll:'Hiển thị tất cả',scaleNoBorder:'Không đường viền',scaleFit:'Vừa vặn',access:'Truy cập mã',accessAlways:'Luôn luôn',accessSameDomain:'Cùng tên miền',accessNever:'Không bao giờ',alignAbsBottom:'Dưới tuyệt đối',alignAbsMiddle:'Giữa tuyệt đối',alignBaseline:'Đường cơ sở',alignTextTop:'Phía trên chữ',quality:'Chất lượng',qualityBest:'Tốt nhất',qualityHigh:'Cao',qualityAutoHigh:'Cao tự động',qualityMedium:'Trung bình',qualityAutoLow:'Thấp tự động',qualityLow:'Thấp',windowModeWindow:'Cửa sổ',windowModeOpaque:'Mờ đục',windowModeTransparent:'Trong suốt',windowMode:'Chế độ cửa sổ',flashvars:'Các biến số dành cho Flash',bgcolor:'Màu nền',hSpace:'Khoảng đệm ngang',vSpace:'Khoảng đệm dọc',validateSrc:'Hãy đưa vào đường dẫn liên kết',validateHSpace:'Khoảng đệm ngang phải là số nguyên.',validateVSpace:'Khoảng đệm dọc phải là số nguyên.'},spellCheck:{toolbar:'Kiểm tra chính tả',title:'Kiểm tra chính tả',notAvailable:'Xin lỗi, dịch vụ này hiện tại không có.',errorLoading:'Lỗi khi đang nạp dịch vụ ứng dụng: %s.',notInDic:'Không có trong từ điển',changeTo:'Chuyển thành',btnIgnore:'Bỏ qua',btnIgnoreAll:'Bỏ qua tất cả',btnReplace:'Thay thế',btnReplaceAll:'Thay thế tất cả',btnUndo:'Phục hồi lại',noSuggestions:'- Không đưa ra gợi ý về từ -',progress:'Đang tiến hành kiểm tra chính tả...',noMispell:'Hoàn tất kiểm tra chính tả: Không có lỗi chính tả',noChanges:'Hoàn tất kiểm tra chính tả: Không có từ nào được thay đổi',oneChange:'Hoàn tất kiểm tra chính tả: Một từ đã được thay đổi',manyChanges:'Hoàn tất kiểm tra chính tả: %1 từ đã được thay đổi',ieSpellDownload:'Chức năng kiểm tra chính tả chưa được cài đặt. Bạn có muốn tải về ngay bây giờ?'},smiley:{toolbar:'Hình biểu lộ cảm xúc (mặt cười)',title:'Chèn hình biểu lộ cảm xúc (mặt cười)',options:'Tùy chọn hình biểu lộ cảm xúc'},elementsPath:{eleLabel:'Nhãn thành phần',eleTitle:'%1 thành phần'},numberedlist:'Chèn/Xoá Danh sách có thứ tự',bulletedlist:'Chèn/Xoá Danh sách không thứ tự',indent:'Dịch vào trong',outdent:'Dịch ra ngoài',justify:{left:'Canh trái',center:'Canh giữa',right:'Canh phải',block:'Canh đều'},blockquote:'Khối trích dẫn',clipboard:{title:'Dán',cutError:'Các thiết lập bảo mật của trình duyệt không cho phép trình biên tập tự động thực thi lệnh cắt. Hãy sử dụng bàn phím cho lệnh này (Ctrl/Cmd+X).',copyError:'Các thiết lập bảo mật của trình duyệt không cho phép trình biên tập tự động thực thi lệnh sao chép. Hãy sử dụng bàn phím cho lệnh này (Ctrl/Cmd+C).',pasteMsg:'Hãy dán nội dung vào trong khung bên dưới, sử dụng tổ hợp phím (<STRONG>Ctrl/Cmd+V</STRONG>) và nhấn vào nút <STRONG>Đồng ý</STRONG>.',securityMsg:'Do thiết lập bảo mật của trình duyệt nên trình biên tập không thể truy cập trực tiếp vào nội dung đã sao chép. Bạn cần phải dán lại nội dung vào cửa sổ này.',pasteArea:'Khu vực dán'},pastefromword:{confirmCleanup:'Văn bản bạn muốn dán có kèm định dạng của Word. Bạn có muốn loại bỏ định dạng Word trước khi dán?',toolbar:'Dán với định dạng Word',title:'Dán với định dạng Word',error:'Không thể để làm sạch các dữ liệu dán do một lỗi nội bộ'},pasteText:{button:'Dán theo định dạng văn bản thuần',title:'Dán theo định dạng văn bản thuần'},templates:{button:'Mẫu dựng sẵn',title:'Nội dung Mẫu dựng sẵn',options:'Tùy chọn mẫu dựng sẵn',insertOption:'Thay thế nội dung hiện tại',selectPromptMsg:'Hãy chọn mẫu dựng sẵn để mở trong trình biên tập<br>(nội dung hiện tại sẽ bị mất):',emptyListMsg:'(Không có mẫu dựng sẵn nào được định nghĩa)'},showBlocks:'Hiển thị các khối',stylesCombo:{label:'Kiểu',panelTitle:'Phong cách định dạng',panelTitle1:'Kiểu khối',panelTitle2:'Kiểu trực tiếp',panelTitle3:'Kiểu đối tượng'},format:{label:'Định dạng',panelTitle:'Định dạng',tag_p:'Bình thường (P)',tag_pre:'Đã thiết lập',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Bình thường (DIV)'},div:{title:'Tạo khối các thành phần',toolbar:'Tạo khối các thành phần',cssClassInputLabel:'Các lớp CSS',styleSelectLabel:'Kiểu (style)',IdInputLabel:'Định danh (id)',languageCodeInputLabel:'Mã ngôn ngữ',inlineStyleInputLabel:'Kiểu nội dòng',advisoryTitleInputLabel:'Nhan đề hướng dẫn',langDirLabel:'Hướng ngôn ngữ',langDirLTRLabel:'Trái sang phải (LTR)',langDirRTLLabel:'Phải qua trái (RTL)',edit:'Chỉnh sửa',remove:'Xóa bỏ'},iframe:{title:'Thuộc tính iframe',toolbar:'Iframe',noUrl:'Vui lòng nhập địa chỉ iframe',scrolling:'Kích hoạt thanh cuộn',border:'Hiển thị viền khung'},font:{label:'Phông',voiceLabel:'Phông',panelTitle:'Phông'},fontSize:{label:'Cỡ chữ',voiceLabel:'Kích cỡ phông',panelTitle:'Cỡ chữ'},colorButton:{textColorTitle:'Màu chữ',bgColorTitle:'Màu nền',panelTitle:'Màu sắc',auto:'Tự động',more:'Màu khác...'},colors:{'000':'Đen',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Nâu',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Xám',F00:'Đỏ',FF8C00:'Dark Orange',FFD700:'Vàng','008000':'Xanh lá cây','0FF':'Cyan','00F':'Xanh da trời',EE82EE:'Tím',A9A9A9:'Xám tối',FFA07A:'Light Salmon',FFA500:'Màu cam',FFFF00:'Vàng','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'Trắng'},scayt:{title:'Kiểm tra chính tả ngay khi gõ chữ (SCAYT)',opera_title:'Không hỗ trợ trên trình duyệt Opera',enable:'Bật SCAYT',disable:'Tắt SCAYT',about:'Thông tin về SCAYT',toggle:'Bật tắt SCAYT',options:'Tùy chọn',langs:'Ngôn ngữ',moreSuggestions:'Đề xuất thêm',ignore:'Bỏ qua',ignoreAll:'Bỏ qua tất cả',addWord:'Thêm từ',emptyDic:'Tên của từ điển không được để trống.',noSuggestions:'Không đưa ra gợi ý về từ',optionsTab:'Tùy chọn',allCaps:'Không phân biệt chữ HOA chữ thường',ignoreDomainNames:'Bỏ qua tên miền',mixedCase:'Không phân biệt loại chữ',mixedWithDigits:'Không phân biệt chữ và số',languagesTab:'Tab ngôn ngữ',dictionariesTab:'Từ điển',dic_field_name:'Tên từ điển',dic_create:'Tạo',dic_restore:'Phục hồi',dic_delete:'Xóa',dic_rename:'Thay tên',dic_info:'Ban đầu, từ điển người dùng được lưu trữ trong một cookie. Tuy nhiên, kích thước cookie bị giới hạn. Khi người sử dụng từ điển phát triển đến điểm không thể được lưu trữ trong cookie, từ điển sẽ được lưu trữ trên máy chủ của chúng tôi. Để lưu trữ từ điển cá nhân của bạn trên máy chủ của chúng tôi, bạn nên xác định một tên cho từ điển của bạn. Nếu bạn đã có một cuốn từ điển được lưu trữ, xin vui lòng gõ tên của nó và nhấn vào nút Khôi phục.',aboutTab:'Thông tin'},about:{title:'Thông tin về CKEditor',dlgTitle:'Thông tin về CKEditor',help:'Kiểm tra $1 để được giúp đỡ.',userGuide:'Hướng dẫn sử dụng CKEditor',moreInfo:'Vui lòng ghé thăm trang web của chúng tôi để có thông tin về giấy phép:',copy:'Bản quyền © $1. Giữ toàn quyền.'},maximize:'Phóng to tối đa',minimize:'Thu nhỏ',fakeobjects:{anchor:'Điểm neo',flash:'Flash',iframe:'IFrame',hiddenfield:'Trường ẩn',unknown:'Đối tượng không rõ ràng'},resize:'Kéo rê để thay đổi kích cỡ',colordialog:{title:'Chọn màu',options:'Tùy chọn màu',highlight:'Màu chọn',selected:'Màu đã chọn',clear:'Xóa bỏ'},toolbarCollapse:'Thu gọn thanh công cụ',toolbarExpand:'Mở rộng thnah công cụ',toolbarGroups:{document:'Tài liệu',clipboard:'Clipboard/Undo',editing:'Chỉnh sửa',forms:'Bảng biểu',basicstyles:'Kiểu cơ bản',paragraph:'Đoạn',links:'Liên kết',insert:'Chèn',styles:'Kiểu',colors:'Màu sắc',tools:'Công cụ'},bidi:{ltr:'Văn bản hướng từ trái sang phải',rtl:'Văn bản hướng từ phải sang trái'},docprops:{label:'Thuộc tính Tài liệu',title:'Thuộc tính Tài liệu',design:'Thiết kế',meta:'Siêu dữ liệu',chooseColor:'Chọn màu',other:'<khác>',docTitle:'Tiêu đề Trang',charset:'Bảng mã ký tự',charsetOther:'Bảng mã ký tự khác',charsetASCII:'ASCII',charsetCE:'Trung Âu',charsetCT:'Tiếng Trung Quốc (Big5)',charsetCR:'Tiếng Kirin',charsetGR:'Tiếng Hy Lạp',charsetJP:'Tiếng Nhật',charsetKR:'Tiếng Hàn',charsetTR:'Tiếng Thổ Nhĩ Kỳ',charsetUN:'Unicode (UTF-8)',charsetWE:'Tây Âu',docType:'Kiểu Đề mục Tài liệu',docTypeOther:'Kiểu Đề mục Tài liệu khác',xhtmlDec:'Bao gồm cả định nghĩa XHTML',bgColor:'Màu nền',bgImage:'URL của Hình ảnh nền',bgFixed:'Không cuộn nền',txtColor:'Màu chữ',margin:'Đường biên của Trang',marginTop:'Trên',marginLeft:'Trái',marginRight:'Phải',marginBottom:'Dưới',metaKeywords:'Các từ khóa chỉ mục tài liệu (phân cách bởi dấu phẩy)',metaDescription:'Mô tả tài liệu',metaAuthor:'Tác giả',metaCopyright:'Bản quyền',previewHtml:'<p>Đây là một số <strong>văn bản mẫu</strong>. Bạn đang sử dụng <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ka.js��������������������������������������������0000664�0001750�0001750�00000105620�12262650742�021732� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.ka={dir:'ltr',editorTitle:'ტექსტის რედაქტორი, %1',editorHelp:'დააჭირეთ ALT 0-ს დახმარების მისაღებად',toolbars:'Editor toolbars',editor:'ტექსტის რედაქტორი',source:'კოდები',newPage:'ახალი გვერდი',save:'ჩაწერა',preview:'გადახედვა',cut:'ამოჭრა',copy:'ასლი',paste:'ჩასმა',print:'ბეჭდვა',underline:'გახაზული',bold:'მსხვილი',italic:'დახრილი',selectAll:'ყველაფრის მონიშნვა',removeFormat:'ფორმატირების მოხსნა',strike:'გადახაზული',subscript:'ინდექსი',superscript:'ხარისხი',horizontalrule:'ჰორიზონტალური ხაზის ჩასმა',pagebreak:'გვერდის წყვეტა ბეჭდვისთვის',pagebreakAlt:'გვერდის წყვეტა',unlink:'ბმულის მოხსნა',undo:'გაუქმება',redo:'გამეორება',common:{browseServer:'სერვერზე დათვალიერება',url:'URL',protocol:'პროტოკოლი',upload:'ატვირთვა',uploadSubmit:'სერვერზე გაგზავნა',image:'სურათი',flash:'Flash',form:'ფორმა',checkbox:'მონიშვნის ღილაკი',radio:'ამორჩევის ღილაკი',textField:'ტექსტური ველი',textarea:'ტექსტური არე',hiddenField:'მალული ველი',button:'ღილაკი',select:'არჩევის ველი',imageButton:'სურათიანი ღილაკი',notSet:'<არაფერი>',id:'Id',name:'სახელი',langDir:'ენის მიმართულება',langDirLtr:'მარცხნიდან მარჯვნივ (LTR)',langDirRtl:'მარჯვნიდან მარცხნივ (RTL)',langCode:'ენის კოდი',longDescr:'დიდი აღწერის URL',cssClass:'CSS კლასი',advisoryTitle:'სათაური',cssStyle:'CSS სტილი',ok:'დიახ',cancel:'გაუქმება',close:'დახურვა',preview:'გადახედვა',generalTab:'ინფორმაცია',advancedTab:'გაფართოებული',validateNumberFailed:'ეს მნიშვნელობა არაა რიცხვი.',confirmNewPage:'ამ დოკუმენტში ყველა ჩაუწერელი ცვლილება დაიკარგება. დარწმუნებული ხართ რომ ახალი გვერდის ჩატვირთვა გინდათ?',confirmCancel:'ზოგიერთი პარამეტრი შეცვლილია, დარწმუნებულილ ხართ რომ ფანჯრის დახურვა გსურთ?',options:'პარამეტრები',target:'გახსნის ადგილი',targetNew:'ახალი ფანჯარა (_blank)',targetTop:'ზედა ფანჯარა (_top)',targetSelf:'იგივე ფანჯარა (_self)',targetParent:'მშობელი ფანჯარა (_parent)',langDirLTR:'მარცხნიდან მარჯვნივ (LTR)',langDirRTL:'მარჯვნიდან მარცხნივ (RTL)',styles:'სტილი',cssClasses:'CSS კლასი',width:'სიგანე',height:'სიმაღლე',align:'სწორება',alignLeft:'მარცხენა',alignRight:'მარჯვენა',alignCenter:'შუა',alignTop:'ზემოთა',alignMiddle:'შუა',alignBottom:'ქვემოთა',invalidValue:'Invalid value.',invalidHeight:'სიმაღლე რიცხვით უნდა იყოს წარმოდგენილი.',invalidWidth:'სიგანე რიცხვით უნდა იყოს წარმოდგენილი.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, მიუწვდომელია</span>'},contextmenu:{options:'კონტექსტური მენიუს პარამეტრები'},specialChar:{toolbar:'სპეციალური სიმბოლოს ჩასმა',title:'სპეციალური სიმბოლოს არჩევა',options:'სპეციალური სიმბოლოს პარამეტრები'},link:{toolbar:'ბმული',other:'<სხვა>',menu:'ბმულის რედაქტირება',title:'ბმული',info:'ბმულის ინფორმაცია',target:'გახსნის ადგილი',upload:'აქაჩვა',advanced:'დაწვრილებით',type:'ბმულის ტიპი',toUrl:'URL',toAnchor:'ბმული ტექსტში ღუზაზე',toEmail:'ელფოსტა',targetFrame:'<frame>',targetPopup:'<popup ფანჯარა>',targetFrameName:'Frame-ის სახელი',targetPopupName:'Popup ფანჯრის სახელი',popupFeatures:'Popup ფანჯრის პარამეტრები',popupResizable:'ცვალებადი ზომით',popupStatusBar:'სტატუსის ზოლი',popupLocationBar:'ნავიგაციის ზოლი',popupToolbar:'ხელსაწყოთა ზოლი',popupMenuBar:'მენიუს ზოლი',popupFullScreen:'მთელი ეკრანი (IE)',popupScrollBars:'გადახვევის ზოლები',popupDependent:'დამოკიდებული (Netscape)',popupLeft:'მარცხენა პოზიცია',popupTop:'ზედა პოზიცია',id:'Id',langDir:'ენის მიმართულება',langDirLTR:'მარცხნიდან მარჯვნივ (LTR)',langDirRTL:'მარჯვნიდან მარცხნივ (RTL)',acccessKey:'წვდომის ღილაკი',name:'სახელი',langCode:'ენის კოდი',tabIndex:'Tab-ის ინდექსი',advisoryTitle:'სათაური',advisoryContentType:'შიგთავსის ტიპი',cssClasses:'CSS კლასი',charset:'კოდირება',styles:'CSS სტილი',rel:'კავშირი',selectAnchor:'აირჩიეთ ღუზა',anchorName:'ღუზის სახელით',anchorId:'ელემენტის Id-თ',emailAddress:'ელფოსტის მისამართები',emailSubject:'წერილის სათაური',emailBody:'წერილის ტექსტი',noAnchors:'(ამ დოკუმენტში ღუზა არაა)',noUrl:'აკრიფეთ ბმულის URL',noEmail:'აკრიფეთ ელფოსტის მისამართი'},anchor:{toolbar:'ღუზა',menu:'ღუზის რედაქტირება',title:'ღუზის პარამეტრები',name:'ღუზუს სახელი',errorName:'აკრიფეთ ღუზის სახელი',remove:'Remove Anchor'},list:{numberedTitle:'გადანომრილი სიის პარამეტრები',bulletedTitle:'ღილებიანი სიის პარამეტრები',type:'ტიპი',start:'საწყისი',validateStartNumber:'სიის საწყისი მთელი რიცხვი უნდა იყოს.',circle:'წრეწირი',disc:'წრე',square:'კვადრატი',none:'არაფერი',notset:'<არაფერი>',armenian:'სომხური გადანომრვა',georgian:'ქართული გადანომრვა (ან, ბან, გან, ..)',lowerRoman:'რომაული გადანომრვცა პატარა ციფრებით (i, ii, iii, iv, v, ..)',upperRoman:'რომაული გადანომრვა დიდი ციფრებით (I, II, III, IV, V, etc.)',lowerAlpha:'პატარა ლათინური ასოებით (a, b, c, d, e, ..)',upperAlpha:'დიდი ლათინური ასოებით (A, B, C, D, E, ..)',lowerGreek:'პატარა ბერძნული ასოებით (ალფა, ბეტა, გამა, ..)',decimal:'რიცხვებით (1, 2, 3, ..)',decimalLeadingZero:'ნულით დაწყებული რიცხვებით (01, 02, 03, ..)'},findAndReplace:{title:'ძებნა და შეცვლა',find:'ძებნა',replace:'შეცვლა',findWhat:'საძიებელი ტექსტი:',replaceWith:'შეცვლის ტექსტი:',notFoundMsg:'მითითებული ტექსტი არ მოიძებნა.',findOptions:'Find Options',matchCase:'დიდი და პატარა ასოების დამთხვევა',matchWord:'მთელი სიტყვის დამთხვევა',matchCyclic:'დოკუმენტის ბოლოში გასვლის მერე თავიდან დაწყება',replaceAll:'ყველას შეცვლა',replaceSuccessMsg:'%1 მოძებნილი შეიცვალა.'},table:{toolbar:'ცხრილი',title:'ცხრილის პარამეტრები',menu:'ცხრილის პარამეტრები',deleteTable:'ცხრილის წაშლა',rows:'სტრიქონი',columns:'სვეტი',border:'ჩარჩოს ზომა',widthPx:'წერტილი',widthPc:'პროცენტი',widthUnit:'საზომი ერთეული',cellSpace:'უჯრის სივრცე (spacing)',cellPad:'უჯრის კიდე (padding)',caption:'სათაური',summary:'შეჯამება',headers:'სათაურები',headersNone:'არაფერი',headersColumn:'პირველი სვეტი',headersRow:'პირველი სტრიქონი',headersBoth:'ორივე',invalidRows:'სტრიქონების რაოდენობა დადებითი რიცხვი უნდა იყოს.',invalidCols:'სვეტების რაოდენობა დადებითი რიცხვი უნდა იყოს.',invalidBorder:'ჩარჩოს ზომა რიცხვით უდნა იყოს წარმოდგენილი.',invalidWidth:'ცხრილის სიგანე რიცხვით უნდა იყოს წარმოდგენილი.',invalidHeight:'ცხრილის სიმაღლე რიცხვით უნდა იყოს წარმოდგენილი.',invalidCellSpacing:'უჯრის სივრცე (spacing) რიცხვით უნდა იყოს წარმოდგენილი.',invalidCellPadding:'უჯრის კიდე (padding) რიცხვით უნდა იყოს წარმოდგენილი.',cell:{menu:'უჯრა',insertBefore:'უჯრის ჩასმა მანამდე',insertAfter:'უჯრის ჩასმა მერე',deleteCell:'უჯრების წაშლა',merge:'უჯრების შეერთება',mergeRight:'შეერთება მარჯვენასთან',mergeDown:'შეერთება ქვემოთასთან',splitHorizontal:'გაყოფა ჰორიზონტალურად',splitVertical:'გაყოფა ვერტიკალურად',title:'უჯრის პარამეტრები',cellType:'უჯრის ტიპი',rowSpan:'სტრიქონების ოდენობა',colSpan:'სვეტების ოდენობა',wordWrap:'სტრიქონის გადატანა (Word Wrap)',hAlign:'ჰორიზონტალური სწორება',vAlign:'ვერტიკალური სწორება',alignBaseline:'ძირითადი ხაზის გასწვრივ',bgColor:'ფონის ფერი',borderColor:'ჩარჩოს ფერი',data:'მონაცემები',header:'სათაური',yes:'დიახ',no:'არა',invalidWidth:'უჯრის სიგანე რიცხვით უნდა იყოს წარმოდგენილი.',invalidHeight:'უჯრის სიმაღლე რიცხვით უნდა იყოს წარმოდგენილი.',invalidRowSpan:'სტრიქონების რაოდენობა მთელი რიცხვი უნდა იყოს.',invalidColSpan:'სვეტების რაოდენობა მთელი რიცხვი უნდა იყოს.',chooseColor:'არჩევა'},row:{menu:'სტრიქონი',insertBefore:'სტრიქონის ჩამატება წინ',insertAfter:'სტრიქონის ჩამატება მერე',deleteRow:'სტრიქონების წაშლა'},column:{menu:'სვეტი',insertBefore:'სვეტის ჩამატება წინ',insertAfter:'სვეტის ჩამატება მერე',deleteColumn:'სვეტების წაშლა'}},button:{title:'ღილაკის პარამეტრები',text:'ტექსტი',type:'ტიპი',typeBtn:'ღილაკი',typeSbm:'გაგზავნა',typeRst:'გასუფთავება'},checkboxAndRadio:{checkboxTitle:'მონიშვნის ღილაკის (Checkbox) პარამეტრები',radioTitle:'ასარჩევი ღილაკის (Radio) პარამეტრები',value:'ტექსტი',selected:'არჩეული'},form:{title:'ფორმის პარამეტრები',menu:'ფორმის პარამეტრები',action:'ქმედება',method:'მეთოდი',encoding:'კოდირება'},select:{title:'არჩევის ველის პარამეტრები',selectInfo:'ინფორმაცია',opAvail:'შესაძლებელი ვარიანტები',value:'მნიშვნელობა',size:'ზომა',lines:'ხაზები',chkMulti:'მრავლობითი არჩევანის საშუალება',opText:'ტექსტი',opValue:'მნიშვნელობა',btnAdd:'დამატება',btnModify:'შეცვლა',btnUp:'ზემოთ',btnDown:'ქვემოთ',btnSetValue:'ამორჩეულ მნიშვნელოვნად დაყენება',btnDelete:'წაშლა'},textarea:{title:'ტექსტური არის პარამეტრები',cols:'სვეტები',rows:'სტრიქონები'},textfield:{title:'ტექსტური ველის პარამეტრები',name:'სახელი',value:'მნიშვნელობა',charWidth:'სიმბოლოს ზომა',maxChars:'ასოების მაქსიმალური ოდენობა',type:'ტიპი',typeText:'ტექსტი',typePass:'პაროლი'},hidden:{title:'მალული ველის პარამეტრები',name:'სახელი',value:'მნიშვნელობა'},image:{title:'სურათის პარამეტრები',titleButton:'სურათიანი ღილაკის პარამეტრები',menu:'სურათის პარამეტრები',infoTab:'სურათის ინფორმცია',btnUpload:'სერვერისთვის გაგზავნა',upload:'ატვირთვა',alt:'სანაცვლო ტექსტი',lockRatio:'პროპორციის შენარჩუნება',resetSize:'ზომის დაბრუნება',border:'ჩარჩო',hSpace:'ჰორიზონტალური სივრცე',vSpace:'ვერტიკალური სივრცე',alertUrl:'აკრიფეთ სურათის URL',linkTab:'ბმული',button2Img:'გსურთ არჩეული სურათიანი ღილაკის გადაქცევა ჩვეულებრივ ღილაკად?',img2Button:'გსურთ არჩეული ჩვეულებრივი ღილაკის გადაქცევა სურათიან ღილაკად?',urlMissing:'სურათის URL არაა შევსებული.',validateBorder:'ჩარჩო მთელი რიცხვი უნდა იყოს.',validateHSpace:'ჰორიზონტალური სივრცე მთელი რიცხვი უნდა იყოს.',validateVSpace:'ვერტიკალური სივრცე მთელი რიცხვი უნდა იყოს.'},flash:{properties:'Flash-ის პარამეტრები',propertiesTab:'პარამეტრები',title:'Flash-ის პარამეტრები',chkPlay:'ავტო გაშვება',chkLoop:'ჩაციკლვა',chkMenu:'Flash-ის მენიუს დაშვება',chkFull:'მთელი ეკრანის დაშვება',scale:'მასშტაბირება',scaleAll:'ყველაფრის ჩვენება',scaleNoBorder:'ჩარჩოს გარეშე',scaleFit:'ზუსტი ჩასმა',access:'სკრიპტის წვდომა',accessAlways:'ყოველთვის',accessSameDomain:'იგივე დომენი',accessNever:'არასდროს',alignAbsBottom:'ჩარჩოს ქვემოთა ნაწილის სწორება ტექსტისთვის',alignAbsMiddle:'ჩარჩოს შუა ნაწილის სწორება ტექსტისთვის',alignBaseline:'საბაზისო ხაზის სწორება',alignTextTop:'ტექსტი ზემოდან',quality:'ხარისხი',qualityBest:'საუკეთესო',qualityHigh:'მაღალი',qualityAutoHigh:'მაღალი (ავტომატური)',qualityMedium:'საშუალო',qualityAutoLow:'ძალიან დაბალი',qualityLow:'დაბალი',windowModeWindow:'ფანჯარა',windowModeOpaque:'გაუმჭვირვალე',windowModeTransparent:'გამჭვირვალე',windowMode:'ფანჯრის რეჟიმი',flashvars:'ცვლადები Flash-ისთვის',bgcolor:'ფონის ფერი',hSpace:'ჰორიზ. სივრცე',vSpace:'ვერტ. სივრცე',validateSrc:'URL არ უნდა იყოს ცარიელი.',validateHSpace:'ჰორიზონტალური სივრცე არ უნდა იყოს ცარიელი.',validateVSpace:'ვერტიკალური სივრცე არ უნდა იყოს ცარიელი.'},spellCheck:{toolbar:'მართლწერა',title:'მართლწერა',notAvailable:'უკაცრავად, ეს სერვისი ამჟამად მიუწვდომელია.',errorLoading:'სერვისის გამოძახების შეცდომა: %s.',notInDic:'არაა ლექსიკონში',changeTo:'შეცვლელი',btnIgnore:'უგულებელყოფა',btnIgnoreAll:'ყველას უგულებელყოფა',btnReplace:'შეცვლა',btnReplaceAll:'ყველას შეცვლა',btnUndo:'გაუქმება',noSuggestions:'- არაა შემოთავაზება -',progress:'მიმდინარეობს მართლწერის შემოწმება...',noMispell:'მართლწერის შემოწმება: შეცდომა არ მოიძებნა',noChanges:'მართლწერის შემოწმება: არაფერი შეცვლილა',oneChange:'მართლწერის შემოწმება: ერთი სიტყვა შეიცვალა',manyChanges:'მართლწერის შემოწმება: %1 სიტყვა შეიცვალა',ieSpellDownload:'მართლწერის შემოწმება არაა დაინსტალირებული. ჩამოვქაჩოთ ინტერნეტიდან?'},smiley:{toolbar:'სიცილაკები',title:'სიცილაკის ჩასმა',options:'სიცილაკის პარამეტრები'},elementsPath:{eleLabel:'ელემეტის გზა',eleTitle:'%1 ელემენტი'},numberedlist:'გადანომრილი სია',bulletedlist:'ღილიანი სია',indent:'მეტად შეწევა',outdent:'ნაკლებად შეწევა',justify:{left:'მარცხნივ სწორება',center:'შუაში სწორება',right:'მარჯვნივ სწორება',block:'გადასწორება'},blockquote:'ციტატა',clipboard:{title:'ჩასმა',cutError:'თქვენი ბროუზერის უსაფრთხოების პარამეტრები არ იძლევა ამოჭრის ოპერაციის ავტომატურად განხორციელების საშუალებას. გამოიყენეთ კლავიატურა ამისთვის (Ctrl/Cmd+X).',copyError:'თქვენი ბროუზერის უსაფრთხოების პარამეტრები არ იძლევა ასლის ოპერაციის ავტომატურად განხორციელების საშუალებას. გამოიყენეთ კლავიატურა ამისთვის (Ctrl/Cmd+C).',pasteMsg:'ჩასვით ამ არის შიგნით კლავიატურის გამოყენებით (<strong>Ctrl/Cmd+V</strong>) და დააჭირეთ OK-ს',securityMsg:'თქვენი ბროუზერის უსაფრთხოების პარამეტრები არ იძლევა clipboard-ის მონაცემების წვდომის უფლებას. კიდევ უნდა ჩასვათ ტექსტი ამ ფანჯარაში.',pasteArea:'ჩასმის არე'},pastefromword:{confirmCleanup:'ჩასასმელი ტექსტი ვორდიდან გადმოტანილს გავს - გინდათ მისი წინასწარ გაწმენდა?',toolbar:'ვორდიდან ჩასმა',title:'ვორდიდან ჩასმა',error:'შიდა შეცდომის გამო ვერ მოხერხდა ტექსტის გაწმენდა'},pasteText:{button:'მხოლოდ ტექსტის ჩასმა',title:'მხოლოდ ტექსტის ჩასმა'},templates:{button:'თარგები',title:'თარგები',options:'თარგების პარამეტრები',insertOption:'მიმდინარე შეგთავსის შეცვლა',selectPromptMsg:'აირჩიეთ თარგი რედაქტორისთვის',emptyListMsg:'(თარგი არაა განსაზღვრული)'},showBlocks:'არეების ჩვენება',stylesCombo:{label:'სტილები',panelTitle:'ფორმატირების სტილები',panelTitle1:'არის სტილები',panelTitle2:'თანდართული სტილები',panelTitle3:'ობიექტის სტილები'},format:{label:'ფიორმატირება',panelTitle:'ფორმატირება',tag_p:'ჩვეულებრივი',tag_pre:'ფორმატირებული',tag_address:'მისამართი',tag_h1:'სათაური 1',tag_h2:'სათაური 2',tag_h3:'სათაური 3',tag_h4:'სათაური 4',tag_h5:'სათაური 5',tag_h6:'სათაური 6',tag_div:'ჩვეულებრივი (DIV)'},div:{title:'Div კონტეინერის შექმნა',toolbar:'Div კონტეინერის შექმნა',cssClassInputLabel:'CSS კლასები',styleSelectLabel:'სტილი',IdInputLabel:'Id',languageCodeInputLabel:'ენის კოდი',inlineStyleInputLabel:'თანდართული სტილი',advisoryTitleInputLabel:'სათაური',langDirLabel:'ენის მინართულება',langDirLTRLabel:'მარცხნიდან მარჯვნიც (LTR)',langDirRTLLabel:'მარჯვნიდან მარცხნივ (RTL)',edit:'Div-ის რედაქტირება',remove:'Div-ის წაშლა'},iframe:{title:'IFrame-ის პარამეტრები',toolbar:'IFrame',noUrl:'აკრიფეთ iframe-ის URL',scrolling:'გადახვევის ზოლების დაშვება',border:'ჩარჩოს გამოჩენა'},font:{label:'ფონტი',voiceLabel:'ფონტი',panelTitle:'ფონტის სახელი'},fontSize:{label:'ზომა',voiceLabel:'ტექსტის ზომა',panelTitle:'ტექსტის ზომა'},colorButton:{textColorTitle:'ტექსტის ფერი',bgColorTitle:'ფონის ფერი',panelTitle:'ფერები',auto:'ავტომატური',more:'მეტი ფერი...'},colors:{'000':'შავი',800000:'მუქი შინდისფერი','8B4513':'ყავისფერი','2F4F4F':'მოლურჯო ნაცრისფერი','008080':'ჩამქრალი ლურჯი','000080':'მუქი ლურჯი','4B0082':'იასამნისფერი',696969:'მუქი ნაცრისფერი',B22222:'აგურისფერი',A52A2A:'მუქი ყავისფერი',DAA520:'მოყვითალო','006400':'მუქი მწვანე','40E0D0':'ცისფერი','0000CD':'ზომიერად ლურჯი',800080:'იისფერი',808080:'ნაცრისფერი',F00:'წითელი',FF8C00:'მუქი სტაფილოსფერი',FFD700:'ოქროსფერი','008000':'მწვანე','0FF':'ღია ცისფერი','00F':'ლურჯი',EE82EE:'იისფერი',A9A9A9:'ბაცი ნაცრისფერი',FFA07A:'ჩამქრალი ვარდისფერი',FFA500:'სტაფილოსფერი',FFFF00:'ყვითელი','00FF00':'ლურჯი',AFEEEE:'ცისფერი',ADD8E6:'ღია ლურჯი',DDA0DD:'ღია იისფერი',D3D3D3:'ღია ნაცრისფერი',FFF0F5:'ღია ვარდისფერი',FAEBD7:'ღია ყავისფერი',FFFFE0:'ნათელი ყვითელი',F0FFF0:'ღია მწვანე',F0FFFF:'ღია ცისფერი 2',F0F8FF:'ღია ცისფერი 3',E6E6FA:'ღია იისფერი 2',FFF:'თეთრი'},scayt:{title:'მართლწერის შემოწმება კრეფისას',opera_title:'არაა მხარდაჭერილი Opera-ს მიერ',enable:'SCAYT-ის ჩართვა',disable:'SCAYT-ის გამორთვა',about:'SCAYT-ის შესახებ',toggle:'SCAYT-ის გადართვა',options:'პარამეტრები',langs:'ენები',moreSuggestions:'მეტი შემოთავაზება',ignore:'უგულებელყოფა',ignoreAll:'ყველას უგულებელყოფა',addWord:'სიტყვის დამატება',emptyDic:'ლექსიკონის სიტყვა არ უნდა იყოს ცარიელი.',noSuggestions:'No suggestions',optionsTab:'პარამეტრები',allCaps:'დიდი ასოებით დაწერილი სიტყვების უგულებელყოფა',ignoreDomainNames:'დომენური სახელების უგულებელყოფა',mixedCase:'შერეული ასოებანი სიტყვების უგულებელყოფა',mixedWithDigits:'ციფრებიანი სიტყვების უგულებელყოფა',languagesTab:'ენები',dictionariesTab:'ლექსიკონები',dic_field_name:'ლექსიკონის სახელი',dic_create:'შექმნა',dic_restore:'დაბრუნება',dic_delete:'წაშლა',dic_rename:'გადარქმევა',dic_info:'თავდაპირველად მომხმარებლის ლექსიკონი ინახება Cookie-ში. თუმცა Cookie შეზღუდულია ზომაში. როცა ლექსიკონის ზომა გაიზრდება საკმაოდ ის შეიძლება შევინახოთ ჩვენს სერვერზე. ჩვენს სერვერზე ლექსიკონს შესანახად უნდა მიუთითოთ მისი სახელი. თუ უკე გაქვთ ლექსიკონი, აკრიფეთ მისი სახელი და დააჭირეთ "დაბრუნების" ღილაკს.',aboutTab:'ინფორმაცია'},about:{title:'CKEditor-ის შესახებ',dlgTitle:'CKEditor-ის შესახებ',help:'დახმარებისთვის იხილეთ $1.',userGuide:'CKEditor-ის მომხმარებლის სახელმძღვანელო',moreInfo:'ლიცენზიის ინფორმაციისთვის ეწვიეთ ჩვენს საიტს:',copy:'Copyright © $1. ყველა უფლება დაცულია.'},maximize:'გადიდება',minimize:'დაპატარავება',fakeobjects:{anchor:'ღუზა',flash:'Flash ანიმაცია',iframe:'IFrame',hiddenfield:'მალული ველი',unknown:'უცნობი ობიექტი'},resize:'გაწიე ზომის შესაცვლელად',colordialog:{title:'ფერის შეცვლა',options:'ფერის პარამეტრები',highlight:'ჩვენება',selected:'არჩეული ფერი',clear:'გასუფთავება'},toolbarCollapse:'ხელსაწყოთა ზოლის შეწევა',toolbarExpand:'ხელსაწყოთა ზოლის გამოწევა',toolbarGroups:{document:'დოკუმენტი',clipboard:'Clipboard/გაუქმება',editing:'რედაქტირება',forms:'ფორმები',basicstyles:'ძირითადი სტილები',paragraph:'აბზაცი',links:'ბმულები',insert:'ჩასმა',styles:'სტილები',colors:'ფერები',tools:'ხელსაწყოები'},bidi:{ltr:'ტექსტის მიმართულება მარცხნიდან მარჯვნივ',rtl:'ტექსტის მიმართულება მარჯვნიდან მარცხნივ'},docprops:{label:'დოკუმენტის პარამეტრები',title:'დოკუმენტის პარამეტრები',design:'დიზაინი',meta:'მეტაTag-ები',chooseColor:'არჩევა',other:'სხვა...',docTitle:'გვერდის სათაური',charset:'კოდირება',charsetOther:'სხვა კოდირებები',charsetASCII:'ამერიკული (ASCII)',charsetCE:'ცენტრალურ ევროპული',charsetCT:'ტრადიციული ჩინური (Big5)',charsetCR:'კირილური',charsetGR:'ბერძნული',charsetJP:'იაპონური',charsetKR:'კორეული',charsetTR:'თურქული',charsetUN:'უნიკოდი (UTF-8)',charsetWE:'დასავლეთ ევროპული',docType:'დოკუმენტის ტიპი',docTypeOther:'სხვა ტიპის დოკუმენტი',xhtmlDec:'XHTML დეკლარაციების ჩართვა',bgColor:'ფონის ფერი',bgImage:'ფონური სურათის URL',bgFixed:'უმოძრაო (ფიქსირებული) ფონი',txtColor:'ტექსტის ფერი',margin:'გვერდის კიდეები',marginTop:'ზედა',marginLeft:'მარცხენა',marginRight:'მარჯვენა',marginBottom:'ქვედა',metaKeywords:'დოკუმენტის საკვანძო სიტყვები (მძიმით გამოყოფილი)',metaDescription:'დოკუმენტის აღწერა',metaAuthor:'ავტორი',metaCopyright:'Copyright',previewHtml:'<p>ეს არის <strong>საცდელი ტექსტი</strong>. თქვენ <a href="javascript:void(0)">CKEditor</a>-ით სარგებლობთ.</p>'}}; ����������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/fo.js��������������������������������������������0000664�0001750�0001750�00000044344�12262650742�021750� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.fo={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Trýst ALT og 0 fyri vegleiðing',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Kelda',newPage:'Nýggj síða',save:'Goym',preview:'Frumsýning',cut:'Kvett',copy:'Avrita',paste:'Innrita',print:'Prenta',underline:'Undirstrikað',bold:'Feit skrift',italic:'Skráskrift',selectAll:'Markera alt',removeFormat:'Strika sniðgeving',strike:'Yvirstrikað',subscript:'Lækkað skrift',superscript:'Hækkað skrift',horizontalrule:'Ger vatnrætta linju',pagebreak:'Ger síðuskift',pagebreakAlt:'Síðuskift',unlink:'Strika tilknýti',undo:'Angra',redo:'Vend aftur',common:{browseServer:'Ambætarakagi',url:'URL',protocol:'Protokoll',upload:'Send til ambætaran',uploadSubmit:'Send til ambætaran',image:'Myndir',flash:'Flash',form:'Formur',checkbox:'Flugubein',radio:'Radioknøttur',textField:'Tekstteigur',textarea:'Tekstumráði',hiddenField:'Fjaldur teigur',button:'Knøttur',select:'Valskrá',imageButton:'Myndaknøttur',notSet:'<ikki sett>',id:'Id',name:'Navn',langDir:'Tekstkós',langDirLtr:'Frá vinstru til høgru (LTR)',langDirRtl:'Frá høgru til vinstru (RTL)',langCode:'Málkoda',longDescr:'Víðkað URL frágreiðing',cssClass:'Typografi klassar',advisoryTitle:'Vegleiðandi heiti',cssStyle:'Typografi',ok:'Góðkent',cancel:'Avlýst',close:'Lat aftur',preview:'Frumsýn',generalTab:'Generelt',advancedTab:'Fjølbroytt',validateNumberFailed:'Hetta er ikki eitt tal.',confirmNewPage:'Allar ikki goymdar broytingar í hesum innihaldið hvørva. Skal nýggj síða lesast kortini?',confirmCancel:'Nakrir valmøguleikar eru broyttir. Ert tú vísur í, at dialogurin skal latast aftur?',options:'Options',target:'Target',targetNew:'Nýtt vindeyga (_blank)',targetTop:'Vindeyga ovast (_top)',targetSelf:'Sama vindeyga (_self)',targetParent:'Upphavligt vindeyga (_parent)',langDirLTR:'Frá vinstru til høgru (LTR)',langDirRTL:'Frá høgru til vinstru (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Breidd',height:'Hædd',align:'Justering',alignLeft:'Vinstra',alignRight:'Høgra',alignCenter:'Miðsett',alignTop:'Ovast',alignMiddle:'Miðja',alignBottom:'Botnur',invalidValue:'Invalid value.',invalidHeight:'Hædd má vera eitt tal.',invalidWidth:'Breidd má vera eitt tal.',invalidCssLength:'Virðið sett í "%1" feltið má vera eitt positivt tal, við ella uttan gyldugum CSS mátieind (px, %, in, cm, mm, em, ex, pt, ella pc).',invalidHtmlLength:'Virðið sett í "%1" feltiðield má vera eitt positivt tal, við ella uttan gyldugum CSS mátieind (px ella %).',invalidInlineStyle:'Virði specifiserað fyri inline style má hava eitt ella fleiri pør (tuples) skrivað sum "name : value", hvørt parið sundurskilt við semi-colon.',cssLengthTooltip:'Skriva eitt tal fyri eitt virði í pixels ella eitt tal við gyldigum CSS eind (px, %, in, cm, mm, em, ex, pt, ella pc).',unavailable:'%1<span class="cke_accessibility">, ikki tøkt</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Set inn sertekn',title:'Vel sertekn',options:'Møguleikar við serteknum'},link:{toolbar:'Ger/broyt tilknýti',other:'<annað>',menu:'Broyt tilknýti',title:'Tilknýti',info:'Tilknýtis upplýsingar',target:'Target',upload:'Send til ambætaran',advanced:'Fjølbroytt',type:'Tilknýtisslag',toUrl:'URL',toAnchor:'Tilknýti til marknastein í tekstinum',toEmail:'Teldupostur',targetFrame:'<ramma>',targetPopup:'<popup vindeyga>',targetFrameName:'Vís navn vindeygans',targetPopupName:'Popup vindeygans navn',popupFeatures:'Popup vindeygans víðkaðu eginleikar',popupResizable:'Stødd kann broytast',popupStatusBar:'Støðufrágreiðingarbjálki',popupLocationBar:'Adressulinja',popupToolbar:'Amboðsbjálki',popupMenuBar:'Skrábjálki',popupFullScreen:'Fullur skermur (IE)',popupScrollBars:'Rullibjálki',popupDependent:'Bundið (Netscape)',popupLeft:'Frástøða frá vinstru',popupTop:'Frástøða frá íerva',id:'Id',langDir:'Tekstkós',langDirLTR:'Frá vinstru til høgru (LTR)',langDirRTL:'Frá høgru til vinstru (RTL)',acccessKey:'Snarvegisknöttur',name:'Navn',langCode:'Tekstkós',tabIndex:'Tabulator indeks',advisoryTitle:'Vegleiðandi heiti',advisoryContentType:'Vegleiðandi innihaldsslag',cssClasses:'Typografi klassar',charset:'Atknýtt teknsett',styles:'Typografi',rel:'Relatión',selectAnchor:'Vel ein marknastein',anchorName:'Eftir navni á marknasteini',anchorId:'Eftir element Id',emailAddress:'Teldupost-adressa',emailSubject:'Evni',emailBody:'Breyðtekstur',noAnchors:'(Eingir marknasteinar eru í hesum dokumentið)',noUrl:'Vinarliga skriva tilknýti (URL)',noEmail:'Vinarliga skriva teldupost-adressu'},anchor:{toolbar:'Ger/broyt marknastein',menu:'Eginleikar fyri marknastein',title:'Eginleikar fyri marknastein',name:'Heiti marknasteinsins',errorName:'Vinarliga rita marknasteinsins heiti',remove:'Strika marknastein'},list:{numberedTitle:'Eginleikar fyri lista við tølum',bulletedTitle:'Eginleikar fyri lista við prikkum',type:'Slag',start:'Byrjan',validateStartNumber:'Byrjunartalið fyri lista má vera eitt heiltal.',circle:'Sirkul',disc:'Disc',square:'Fýrkantur',none:'Einki',notset:'<ikki sett>',armenian:'Armensk talskipan',georgian:'Georgisk talskipan (an, ban, gan, osv.)',lowerRoman:'Lítil rómaratøl (i, ii, iii, iv, v, etc.)',upperRoman:'Stór rómaratøl (I, II, III, IV, V, etc.)',lowerAlpha:'Lítlir bókstavir (a, b, c, d, e, etc.)',upperAlpha:'Stórir bókstavir (A, B, C, D, E, etc.)',lowerGreek:'Grikskt við lítlum (alpha, beta, gamma, etc.)',decimal:'Vanlig tøl (1, 2, 3, etc.)',decimalLeadingZero:'Tøl við null frammanfyri (01, 02, 03, etc.)'},findAndReplace:{title:'Finn og broyt',find:'Leita',replace:'Yvirskriva',findWhat:'Finn:',replaceWith:'Yvirskriva við:',notFoundMsg:'Leititeksturin varð ikki funnin',findOptions:'Finn møguleikar',matchCase:'Munur á stórum og smáum bókstavum',matchWord:'Bert heil orð',matchCyclic:'Match cyclic',replaceAll:'Yvirskriva alt',replaceSuccessMsg:'%1 úrslit broytt.'},table:{toolbar:'Tabell',title:'Eginleikar fyri tabell',menu:'Eginleikar fyri tabell',deleteTable:'Strika tabell',rows:'Røðir',columns:'Kolonnur',border:'Bordabreidd',widthPx:'pixels',widthPc:'prosent',widthUnit:'breiddar unit',cellSpace:'Fjarstøða millum meskar',cellPad:'Meskubreddi',caption:'Tabellfrágreiðing',summary:'Samandráttur',headers:'Yvirskriftir',headersNone:'Eingin',headersColumn:'Fyrsta kolonna',headersRow:'Fyrsta rað',headersBoth:'Báðir',invalidRows:'Talið av røðum má vera eitt tal størri enn 0.',invalidCols:'Talið av kolonnum má vera eitt tal størri enn 0.',invalidBorder:'Borda-stødd má vera eitt tal.',invalidWidth:'Tabell-breidd má vera eitt tal.',invalidHeight:'Tabell-hædd má vera eitt tal.',invalidCellSpacing:'Cell spacing má vera eitt tal.',invalidCellPadding:'Cell padding má vera eitt tal.',cell:{menu:'Meski',insertBefore:'Set meska inn áðrenn',insertAfter:'Set meska inn aftaná',deleteCell:'Strika meskar',merge:'Flætta meskar',mergeRight:'Flætta meskar til høgru',mergeDown:'Flætta saman',splitHorizontal:'Kloyv meska vatnrætt',splitVertical:'Kloyv meska loddrætt',title:'Mesku eginleikar',cellType:'Mesku slag',rowSpan:'Ræð spenni',colSpan:'Kolonnu spenni',wordWrap:'Orðkloyving',hAlign:'Horisontal plasering',vAlign:'Loddrøtt plasering',alignBaseline:'Basislinja',bgColor:'Bakgrundslitur',borderColor:'Bordalitur',data:'Data',header:'Header',yes:'Ja',no:'Nei',invalidWidth:'Meskubreidd má vera eitt tal.',invalidHeight:'Meskuhædd má vera eitt tal.',invalidRowSpan:'Raðspennið má vera eitt heiltal.',invalidColSpan:'Kolonnuspennið má vera eitt heiltal.',chooseColor:'Vel'},row:{menu:'Rað',insertBefore:'Set rað inn áðrenn',insertAfter:'Set rað inn aftaná',deleteRow:'Strika røðir'},column:{menu:'Kolonna',insertBefore:'Set kolonnu inn áðrenn',insertAfter:'Set kolonnu inn aftaná',deleteColumn:'Strika kolonnur'}},button:{title:'Eginleikar fyri knøtt',text:'Tekstur',type:'Slag',typeBtn:'Knøttur',typeSbm:'Send',typeRst:'Nullstilla'},checkboxAndRadio:{checkboxTitle:'Eginleikar fyri flugubein',radioTitle:'Eginleikar fyri radioknøtt',value:'Virði',selected:'Valt'},form:{title:'Eginleikar fyri Form',menu:'Eginleikar fyri Form',action:'Hending',method:'Háttur',encoding:'Encoding'},select:{title:'Eginleikar fyri valskrá',selectInfo:'Upplýsingar',opAvail:'Tøkir møguleikar',value:'Virði',size:'Stødd',lines:'Linjur',chkMulti:'Loyv fleiri valmøguleikum samstundis',opText:'Tekstur',opValue:'Virði',btnAdd:'Legg afturat',btnModify:'Broyt',btnUp:'Upp',btnDown:'Niður',btnSetValue:'Set sum valt virði',btnDelete:'Strika'},textarea:{title:'Eginleikar fyri tekstumráði',cols:'kolonnur',rows:'røðir'},textfield:{title:'Eginleikar fyri tekstteig',name:'Navn',value:'Virði',charWidth:'Breidd (sjónlig tekn)',maxChars:'Mest loyvdu tekn',type:'Slag',typeText:'Tekstur',typePass:'Loyniorð'},hidden:{title:'Eginleikar fyri fjaldan teig',name:'Navn',value:'Virði'},image:{title:'Myndaeginleikar',titleButton:'Eginleikar fyri myndaknøtt',menu:'Myndaeginleikar',infoTab:'Myndaupplýsingar',btnUpload:'Send til ambætaran',upload:'Send',alt:'Alternativur tekstur',lockRatio:'Læs lutfallið',resetSize:'Upprunastødd',border:'Bordi',hSpace:'Høgri breddi',vSpace:'Vinstri breddi',alertUrl:'Rita slóðina til myndina',linkTab:'Tilknýti',button2Img:'Skal valdi myndaknøttur gerast til vanliga mynd?',img2Button:'Skal valda mynd gerast til myndaknøtt?',urlMissing:'URL til mynd manglar.',validateBorder:'Bordi má vera eitt heiltal.',validateHSpace:'HSpace má vera eitt heiltal.',validateVSpace:'VSpace má vera eitt heiltal.'},flash:{properties:'Flash eginleikar',propertiesTab:'Eginleikar',title:'Flash eginleikar',chkPlay:'Avspælingin byrjar sjálv',chkLoop:'Endurspæl',chkMenu:'Ger Flash skrá virkna',chkFull:'Loyv fullan skerm',scale:'Skalering',scaleAll:'Vís alt',scaleNoBorder:'Eingin bordi',scaleFit:'Neyv skalering',access:'Script atgongd',accessAlways:'Altíð',accessSameDomain:'Sama navnaøki',accessNever:'Ongantíð',alignAbsBottom:'Abs botnur',alignAbsMiddle:'Abs miðja',alignBaseline:'Basislinja',alignTextTop:'Tekst toppur',quality:'Góðska',qualityBest:'Besta',qualityHigh:'Høg',qualityAutoHigh:'Auto høg',qualityMedium:'Meðal',qualityAutoLow:'Auto Lág',qualityLow:'Lág',windowModeWindow:'Rútur',windowModeOpaque:'Ikki transparent',windowModeTransparent:'Transparent',windowMode:'Slag av rúti',flashvars:'Variablar fyri Flash',bgcolor:'Bakgrundslitur',hSpace:'Høgri breddi',vSpace:'Vinstri breddi',validateSrc:'Vinarliga skriva tilknýti (URL)',validateHSpace:'HSpace má vera eitt tal.',validateVSpace:'VSpace má vera eitt tal.'},spellCheck:{toolbar:'Kanna stavseting',title:'Kanna stavseting',notAvailable:'Tíverri, ikki tøkt í løtuni.',errorLoading:'Feilur við innlesing av application service host: %s.',notInDic:'Finst ikki í orðabókini',changeTo:'Broyt til',btnIgnore:'Forfjóna',btnIgnoreAll:'Forfjóna alt',btnReplace:'Yvirskriva',btnReplaceAll:'Yvirskriva alt',btnUndo:'Angra',noSuggestions:'- Einki uppskot -',progress:'Rættstavarin arbeiðir...',noMispell:'Rættstavarin liðugur: Eingin feilur funnin',noChanges:'Rættstavarin liðugur: Einki orð varð broytt',oneChange:'Rættstavarin liðugur: Eitt orð er broytt',manyChanges:'Rættstavarin liðugur: %1 orð broytt',ieSpellDownload:'Rættstavarin er ikki tøkur í tekstviðgeranum. Vilt tú heinta hann nú?'},smiley:{toolbar:'Smiley',title:'Vel Smiley',options:'Møguleikar fyri Smiley'},elementsPath:{eleLabel:'Slóð til elementir',eleTitle:'%1 element'},numberedlist:'Talmerktur listi',bulletedlist:'Punktmerktur listi',indent:'Økja reglubrotarinntriv',outdent:'Minka reglubrotarinntriv',justify:{left:'Vinstrasett',center:'Miðsett',right:'Høgrasett',block:'Javnir tekstkantar'},blockquote:'Blockquote',clipboard:{title:'Innrita',cutError:'Trygdaruppseting alnótskagans forðar tekstviðgeranum í at kvetta tekstin. Vinarliga nýt knappaborðið til at kvetta tekstin (Ctrl/Cmd+X).',copyError:'Trygdaruppseting alnótskagans forðar tekstviðgeranum í at avrita tekstin. Vinarliga nýt knappaborðið til at avrita tekstin (Ctrl/Cmd+C).',pasteMsg:'Vinarliga koyr tekstin í hendan rútin við knappaborðinum (<strong>Ctrl/Cmd+V</strong>) og klikk á <strong>Góðtak</strong>.',securityMsg:'Trygdaruppseting alnótskagans forðar tekstviðgeranum í beinleiðis atgongd til avritingarminnið. Tygum mugu royna aftur í hesum rútinum.',pasteArea:'Avritingarumráði'},pastefromword:{confirmCleanup:'Teksturin, tú roynir at seta inn, sýnist at stava frá Word. Skal teksturin reinsast fyrst?',toolbar:'Innrita frá Word',title:'Innrita frá Word',error:'Tað eydnaðist ikki at reinsa tekstin vegna ein internan feil'},pasteText:{button:'Innrita som reinan tekst',title:'Innrita som reinan tekst'},templates:{button:'Skabelónir',title:'Innihaldsskabelónir',options:'Møguleikar fyri Template',insertOption:'Yvirskriva núverandi innihald',selectPromptMsg:'Vinarliga vel ta skabelón, ið skal opnast í tekstviðgeranum<br>(Hetta yvirskrivar núverandi innihald):',emptyListMsg:'(Ongar skabelónir tøkar)'},showBlocks:'Vís blokkar',stylesCombo:{label:'Typografi',panelTitle:'Formatterings stílir',panelTitle1:'Blokk stílir',panelTitle2:'Inline stílir',panelTitle3:'Object stílir'},format:{label:'Skriftsnið',panelTitle:'Skriftsnið',tag_p:'Vanligt',tag_pre:'Sniðgivið',tag_address:'Adressa',tag_h1:'Yvirskrift 1',tag_h2:'Yvirskrift 2',tag_h3:'Yvirskrift 3',tag_h4:'Yvirskrift 4',tag_h5:'Yvirskrift 5',tag_h6:'Yvirskrift 6',tag_div:'Vanligt (DIV)'},div:{title:'Ger Div Container',toolbar:'Ger Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Vinstru til høgru (LTR)',langDirRTLLabel:'Høgru til vinstru (RTL)',edit:'Redigera Div',remove:'Strika Div'},iframe:{title:'Møguleikar fyri IFrame',toolbar:'IFrame',noUrl:'Vinarliga skriva URL til iframe',scrolling:'Loyv scrollbars',border:'Vís frame kant'},font:{label:'Skrift',voiceLabel:'Skrift',panelTitle:'Skrift'},fontSize:{label:'Skriftstødd',voiceLabel:'Skriftstødd',panelTitle:'Skriftstødd'},colorButton:{textColorTitle:'Tekstlitur',bgColorTitle:'Bakgrundslitur',panelTitle:'Litir',auto:'Automatiskt',more:'Fleiri litir...'},colors:{'000':'Svart',800000:'Maroon','8B4513':'Saðilsbrúnt','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Myrkagrátt',B22222:'Fire Brick',A52A2A:'Brúnt',DAA520:'Gullstavur','006400':'Myrkagrønt','40E0D0':'Turquoise','0000CD':'Meðal blátt',800080:'Purple',808080:'Grátt',F00:'Reytt',FF8C00:'Myrkt appelsingult',FFD700:'Gull','008000':'Grønt','0FF':'Cyan','00F':'Blátt',EE82EE:'Violet',A9A9A9:'Døkt grátt',FFA07A:'Ljósur laksur',FFA500:'Appelsingult',FFFF00:'Gult','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Ljósablátt',DDA0DD:'Plum',D3D3D3:'Ljósagrátt',FFF0F5:'Lavender Blush',FAEBD7:'Klassiskt hvítt',FFFFE0:'Ljósagult',F0FFF0:'Hunangsdøggur',F0FFFF:'Azure',F0F8FF:'Alice Blátt',E6E6FA:'Lavender',FFF:'Hvítt'},scayt:{title:'Kanna stavseting, meðan tú skrivar',opera_title:'Ikki stuðlað í Opera',enable:'Loyv SCAYT',disable:'Nokta SCAYT',about:'Um SCAYT',toggle:'Toggle SCAYT',options:'Uppseting',langs:'Tungumál',moreSuggestions:'Fleiri tilráðingar',ignore:'Ignorera',ignoreAll:'Ignorera alt',addWord:'Legg orð afturat',emptyDic:'Heiti á orðabók eigur ikki at vera tómt.',noSuggestions:'Einki uppskot',optionsTab:'Uppseting',allCaps:'Loyp orð við bert stórum stavum um',ignoreDomainNames:'loyp økisnøvn um',mixedCase:'Loyp orð við blandaðum smáum og stórum stavum um',mixedWithDigits:'Loyp orð við tølum um',languagesTab:'Tungumál',dictionariesTab:'Orðabøkur',dic_field_name:'Orðabókanavn',dic_create:'Upprætta nýggja',dic_restore:'Endurskapa',dic_delete:'Strika',dic_rename:'Broyt',dic_info:'Upprunaliga er brúkara-orðabókin goymd í eini cookie í tínum egna kaga. Men hesar cookies eru avmarkaðar í stødd. Tá brúkara-orðabókin veksur seg ov stóra til eina cookie, so er møguligt at goyma hana á ambætara okkara. Fyri at goyma persónligu orðabókina á ambætaranum eigur tú at velja eitt navn til tína skuffu. Hevur tú longu goymt eina orðabók, so vinarliga skriva navnið og klikk á knøttin Endurskapa.',aboutTab:'Um'},about:{title:'Um CKEditor',dlgTitle:'Um CKEditor',help:'Kekka $1 fyri hjálp.',userGuide:'CKEditor Brúkaravegleiðing',moreInfo:'Licens upplýsingar finnast á heimasíðu okkara:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maksimera',minimize:'Minimera',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Fjaldur teigur',unknown:'Ókent Object'},resize:'Drag fyri at broyta stødd',colordialog:{title:'Vel lit',options:'Litmøguleikar',highlight:'Framheva',selected:'Valdur litur',clear:'Strika'},toolbarCollapse:'Lat Toolbar aftur',toolbarExpand:'Vís Toolbar',toolbarGroups:{document:'Dokument',clipboard:'Clipboard/Undo',editing:'Editering',forms:'Formar',basicstyles:'Grundleggjandi Styles',paragraph:'Reglubrot',links:'Leinkjur',insert:'Set inn',styles:'Styles',colors:'Litir',tools:'Tól'},bidi:{ltr:'Tekstkós frá vinstru til høgru',rtl:'Tekstkós frá høgru til vinstru'},docprops:{label:'Eginleikar fyri dokument',title:'Eginleikar fyri dokument',design:'Design',meta:'META-upplýsingar',chooseColor:'Vel',other:'<annað>',docTitle:'Síðuheiti',charset:'Teknsett koda',charsetOther:'Onnur teknsett koda',charsetASCII:'ASCII',charsetCE:'Miðeuropa',charsetCT:'Kinesiskt traditionelt (Big5)',charsetCR:'Cyrilliskt',charsetGR:'Grikst',charsetJP:'Japanskt',charsetKR:'Koreanskt',charsetTR:'Turkiskt',charsetUN:'Unicode (UTF-8)',charsetWE:'Vestureuropa',docType:'Dokumentslag yvirskrift',docTypeOther:'Annað dokumentslag yvirskrift',xhtmlDec:'Viðfest XHTML deklaratiónir',bgColor:'Bakgrundslitur',bgImage:'Leið til bakgrundsmynd (URL)',bgFixed:'Læst bakgrund (rullar ikki)',txtColor:'Tekstlitur',margin:'Síðubreddar',marginTop:'Ovast',marginLeft:'Vinstra',marginRight:'Høgra',marginBottom:'Niðast',metaKeywords:'Dokument index lyklaorð (sundurbýtt við komma)',metaDescription:'Dokumentlýsing',metaAuthor:'Høvundur',metaCopyright:'Upphavsrættindi',previewHtml:'<p>Hetta er ein <strong>royndartekstur</strong>. Tygum brúka <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/pl.js��������������������������������������������0000664�0001750�0001750�00000046110�12262650742�021750� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.pl={dir:'ltr',editorTitle:'Edytor tekstu sformatowanego, %1',editorHelp:'W celu uzyskania pomocy naciśnij ALT 0',toolbars:'Paski narzędzi edytora',editor:'Edytor tekstu sformatowanego',source:'Źródło dokumentu',newPage:'Nowa strona',save:'Zapisz',preview:'Podgląd',cut:'Wytnij',copy:'Kopiuj',paste:'Wklej',print:'Drukuj',underline:'Podkreślenie',bold:'Pogrubienie',italic:'Kursywa',selectAll:'Zaznacz wszystko',removeFormat:'Usuń formatowanie',strike:'Przekreślenie',subscript:'Indeks dolny',superscript:'Indeks górny',horizontalrule:'Wstaw poziomą linię',pagebreak:'Wstaw podział strony',pagebreakAlt:'Wstaw podział strony',unlink:'Usuń odnośnik',undo:'Cofnij',redo:'Ponów',common:{browseServer:'Przeglądaj',url:'Adres URL',protocol:'Protokół',upload:'Wyślij',uploadSubmit:'Wyślij',image:'Obrazek',flash:'Flash',form:'Formularz',checkbox:'Pole wyboru (checkbox)',radio:'Przycisk opcji (radio)',textField:'Pole tekstowe',textarea:'Obszar tekstowy',hiddenField:'Pole ukryte',button:'Przycisk',select:'Lista wyboru',imageButton:'Przycisk graficzny',notSet:'<nie ustawiono>',id:'Id',name:'Nazwa',langDir:'Kierunek tekstu',langDirLtr:'Od lewej do prawej (LTR)',langDirRtl:'Od prawej do lewej (RTL)',langCode:'Kod języka',longDescr:'Adres URL długiego opisu',cssClass:'Nazwa klasy CSS',advisoryTitle:'Opis obiektu docelowego',cssStyle:'Styl',ok:'OK',cancel:'Anuluj',close:'Zamknij',preview:'Podgląd',generalTab:'Ogólne',advancedTab:'Zaawansowane',validateNumberFailed:'Ta wartość nie jest liczbą.',confirmNewPage:'Wszystkie niezapisane zmiany zostaną utracone. Czy na pewno wczytać nową stronę?',confirmCancel:'Pewne opcje zostały zmienione. Czy na pewno zamknąć okno dialogowe?',options:'Opcje',target:'Obiekt docelowy',targetNew:'Nowe okno (_blank)',targetTop:'Okno najwyżej w hierarchii (_top)',targetSelf:'To samo okno (_self)',targetParent:'Okno nadrzędne (_parent)',langDirLTR:'Od lewej do prawej (LTR)',langDirRTL:'Od prawej do lewej (RTL)',styles:'Style',cssClasses:'Klasy arkusza stylów',width:'Szerokość',height:'Wysokość',align:'Wyrównaj',alignLeft:'Do lewej',alignRight:'Do prawej',alignCenter:'Do środka',alignTop:'Do góry',alignMiddle:'Do środka',alignBottom:'Do dołu',invalidValue:'Invalid value.',invalidHeight:'Wysokość musi być liczbą.',invalidWidth:'Szerokość musi być liczbą.',invalidCssLength:'Wartość podana dla pola "%1" musi być liczbą dodatnią bez jednostki lub z poprawną jednostką długości zgodną z CSS (px, %, in, cm, mm, em, ex, pt lub pc).',invalidHtmlLength:'Wartość podana dla pola "%1" musi być liczbą dodatnią bez jednostki lub z poprawną jednostką długości zgodną z HTML (px lub %).',invalidInlineStyle:'Wartość podana dla stylu musi składać się z jednej lub większej liczby krotek w formacie "nazwa : wartość", rozdzielonych średnikami.',cssLengthTooltip:'Wpisz liczbę dla wartości w pikselach lub liczbę wraz z jednostką długości zgodną z CSS (px, %, in, cm, mm, em, ex, pt lub pc).',unavailable:'%1<span class="cke_accessibility">, niedostępne</span>'},contextmenu:{options:'Opcje menu kontekstowego'},specialChar:{toolbar:'Wstaw znak specjalny',title:'Wybierz znak specjalny',options:'Opcje znaków specjalnych'},link:{toolbar:'Wstaw/edytuj odnośnik',other:'<inny>',menu:'Edytuj odnośnik',title:'Odnośnik',info:'Informacje ',target:'Obiekt docelowy',upload:'Wyślij',advanced:'Zaawansowane',type:'Typ odnośnika',toUrl:'Adres URL',toAnchor:'Odnośnik wewnątrz strony (kotwica)',toEmail:'Adres e-mail',targetFrame:'<ramka>',targetPopup:'<wyskakujące okno>',targetFrameName:'Nazwa ramki docelowej',targetPopupName:'Nazwa wyskakującego okna',popupFeatures:'Właściwości wyskakującego okna',popupResizable:'Skalowalny',popupStatusBar:'Pasek statusu',popupLocationBar:'Pasek adresu',popupToolbar:'Pasek narzędzi',popupMenuBar:'Pasek menu',popupFullScreen:'Pełny ekran (IE)',popupScrollBars:'Paski przewijania',popupDependent:'Okno zależne (Netscape)',popupLeft:'Pozycja w poziomie',popupTop:'Pozycja w pionie',id:'Id',langDir:'Kierunek tekstu',langDirLTR:'Od lewej do prawej (LTR)',langDirRTL:'Od prawej do lewej (RTL)',acccessKey:'Klawisz dostępu',name:'Nazwa',langCode:'Kod języka',tabIndex:'Indeks kolejności',advisoryTitle:'Opis obiektu docelowego',advisoryContentType:'Typ MIME obiektu docelowego',cssClasses:'Nazwa klasy CSS',charset:'Kodowanie znaków obiektu docelowego',styles:'Styl',rel:'Relacja',selectAnchor:'Wybierz kotwicę',anchorName:'Wg nazwy',anchorId:'Wg identyfikatora',emailAddress:'Adres e-mail',emailSubject:'Temat',emailBody:'Treść',noAnchors:'(W dokumencie nie zdefiniowano żadnych kotwic)',noUrl:'Podaj adres URL',noEmail:'Podaj adres e-mail'},anchor:{toolbar:'Wstaw/edytuj kotwicę',menu:'Właściwości kotwicy',title:'Właściwości kotwicy',name:'Nazwa kotwicy',errorName:'Wpisz nazwę kotwicy',remove:'Usuń kotwicę'},list:{numberedTitle:'Właściwości list numerowanych',bulletedTitle:'Właściwości list wypunktowanych',type:'Typ punktora',start:'Początek',validateStartNumber:'Listę musi rozpoczynać liczba całkowita.',circle:'Koło',disc:'Okrąg',square:'Kwadrat',none:'Brak',notset:'<nie ustawiono>',armenian:'Numerowanie armeńskie',georgian:'Numerowanie gruzińskie (an, ban, gan itd.)',lowerRoman:'Małe cyfry rzymskie (i, ii, iii, iv, v itd.)',upperRoman:'Duże cyfry rzymskie (I, II, III, IV, V itd.)',lowerAlpha:'Małe litery (a, b, c, d, e itd.)',upperAlpha:'Duże litery (A, B, C, D, E itd.)',lowerGreek:'Małe litery greckie (alpha, beta, gamma itd.)',decimal:'Liczby (1, 2, 3 itd.)',decimalLeadingZero:'Liczby z początkowym zerem (01, 02, 03 itd.)'},findAndReplace:{title:'Znajdź i zamień',find:'Znajdź',replace:'Zamień',findWhat:'Znajdź:',replaceWith:'Zastąp przez:',notFoundMsg:'Nie znaleziono szukanego hasła.',findOptions:'Opcje wyszukiwania',matchCase:'Uwzględnij wielkość liter',matchWord:'Całe słowa',matchCyclic:'Cykliczne dopasowanie',replaceAll:'Zamień wszystko',replaceSuccessMsg:'%1 wystąpień zastąpionych.'},table:{toolbar:'Tabela',title:'Właściwości tabeli',menu:'Właściwości tabeli',deleteTable:'Usuń tabelę',rows:'Liczba wierszy',columns:'Liczba kolumn',border:'Grubość obramowania',widthPx:'piksele',widthPc:'%',widthUnit:'jednostka szerokości',cellSpace:'Odstęp pomiędzy komórkami',cellPad:'Dopełnienie komórek',caption:'Tytuł',summary:'Podsumowanie',headers:'Nagłówki',headersNone:'Brak',headersColumn:'Pierwsza kolumna',headersRow:'Pierwszy wiersz',headersBoth:'Oba',invalidRows:'Liczba wierszy musi być większa niż 0.',invalidCols:'Liczba kolumn musi być większa niż 0.',invalidBorder:'Wartość obramowania musi być liczbą.',invalidWidth:'Szerokość tabeli musi być liczbą.',invalidHeight:'Wysokość tabeli musi być liczbą.',invalidCellSpacing:'Odstęp pomiędzy komórkami musi być liczbą dodatnią.',invalidCellPadding:'Dopełnienie komórek musi być liczbą dodatnią.',cell:{menu:'Komórka',insertBefore:'Wstaw komórkę z lewej',insertAfter:'Wstaw komórkę z prawej',deleteCell:'Usuń komórki',merge:'Połącz komórki',mergeRight:'Połącz z komórką z prawej',mergeDown:'Połącz z komórką poniżej',splitHorizontal:'Podziel komórkę poziomo',splitVertical:'Podziel komórkę pionowo',title:'Właściwości komórki',cellType:'Typ komórki',rowSpan:'Scalenie wierszy',colSpan:'Scalenie komórek',wordWrap:'Zawijanie słów',hAlign:'Wyrównanie poziome',vAlign:'Wyrównanie pionowe',alignBaseline:'Linia bazowa',bgColor:'Kolor tła',borderColor:'Kolor obramowania',data:'Dane',header:'Nagłówek',yes:'Tak',no:'Nie',invalidWidth:'Szerokość komórki musi być liczbą.',invalidHeight:'Wysokość komórki musi być liczbą.',invalidRowSpan:'Scalenie wierszy musi być liczbą całkowitą.',invalidColSpan:'Scalenie komórek musi być liczbą całkowitą.',chooseColor:'Wybierz'},row:{menu:'Wiersz',insertBefore:'Wstaw wiersz powyżej',insertAfter:'Wstaw wiersz poniżej',deleteRow:'Usuń wiersze'},column:{menu:'Kolumna',insertBefore:'Wstaw kolumnę z lewej',insertAfter:'Wstaw kolumnę z prawej',deleteColumn:'Usuń kolumny'}},button:{title:'Właściwości przycisku',text:'Tekst (Wartość)',type:'Typ',typeBtn:'Przycisk',typeSbm:'Wyślij',typeRst:'Wyczyść'},checkboxAndRadio:{checkboxTitle:'Właściwości pola wyboru (checkbox)',radioTitle:'Właściwości przycisku opcji (radio)',value:'Wartość',selected:'Zaznaczone'},form:{title:'Właściwości formularza',menu:'Właściwości formularza',action:'Akcja',method:'Metoda',encoding:'Kodowanie'},select:{title:'Właściwości listy wyboru',selectInfo:'Informacje',opAvail:'Dostępne opcje',value:'Wartość',size:'Rozmiar',lines:'wierszy',chkMulti:'Wielokrotny wybór',opText:'Tekst',opValue:'Wartość',btnAdd:'Dodaj',btnModify:'Zmień',btnUp:'Do góry',btnDown:'Do dołu',btnSetValue:'Ustaw jako zaznaczoną',btnDelete:'Usuń'},textarea:{title:'Właściwości obszaru tekstowego',cols:'Liczba kolumn',rows:'Liczba wierszy'},textfield:{title:'Właściwości pola tekstowego',name:'Nazwa',value:'Wartość',charWidth:'Szerokość w znakach',maxChars:'Szerokość maksymalna',type:'Typ',typeText:'Tekst',typePass:'Hasło'},hidden:{title:'Właściwości pola ukrytego',name:'Nazwa',value:'Wartość'},image:{title:'Właściwości obrazka',titleButton:'Właściwości przycisku graficznego',menu:'Właściwości obrazka',infoTab:'Informacje o obrazku',btnUpload:'Wyślij',upload:'Wyślij',alt:'Tekst zastępczy',lockRatio:'Zablokuj proporcje',resetSize:'Przywróć rozmiar',border:'Obramowanie',hSpace:'Odstęp poziomy',vSpace:'Odstęp pionowy',alertUrl:'Podaj adres obrazka.',linkTab:'Hiperłącze',button2Img:'Czy chcesz przekonwertować zaznaczony przycisk graficzny do zwykłego obrazka?',img2Button:'Czy chcesz przekonwertować zaznaczony obrazek do przycisku graficznego?',urlMissing:'Podaj adres URL obrazka.',validateBorder:'Wartość obramowania musi być liczbą całkowitą.',validateHSpace:'Wartość odstępu poziomego musi być liczbą całkowitą.',validateVSpace:'Wartość odstępu pionowego musi być liczbą całkowitą.'},flash:{properties:'Właściwości obiektu Flash',propertiesTab:'Właściwości',title:'Właściwości obiektu Flash',chkPlay:'Autoodtwarzanie',chkLoop:'Pętla',chkMenu:'Włącz menu',chkFull:'Zezwól na pełny ekran',scale:'Skaluj',scaleAll:'Pokaż wszystko',scaleNoBorder:'Bez obramowania',scaleFit:'Dokładne dopasowanie',access:'Dostęp skryptów',accessAlways:'Zawsze',accessSameDomain:'Ta sama domena',accessNever:'Nigdy',alignAbsBottom:'Do dołu',alignAbsMiddle:'Do środka w pionie',alignBaseline:'Do linii bazowej',alignTextTop:'Do góry tekstu',quality:'Jakość',qualityBest:'Najlepsza',qualityHigh:'Wysoka',qualityAutoHigh:'Auto wysoka',qualityMedium:'Średnia',qualityAutoLow:'Auto niska',qualityLow:'Niska',windowModeWindow:'Okno',windowModeOpaque:'Nieprzezroczyste',windowModeTransparent:'Przezroczyste',windowMode:'Tryb okna',flashvars:'Zmienne obiektu Flash',bgcolor:'Kolor tła',hSpace:'Odstęp poziomy',vSpace:'Odstęp pionowy',validateSrc:'Podaj adres URL',validateHSpace:'Odstęp poziomy musi być liczbą.',validateVSpace:'Odstęp pionowy musi być liczbą.'},spellCheck:{toolbar:'Sprawdź pisownię',title:'Sprawdź pisownię',notAvailable:'Przepraszamy, ale usługa jest obecnie niedostępna.',errorLoading:'Błąd wczytywania hosta aplikacji usługi: %s.',notInDic:'Słowa nie ma w słowniku',changeTo:'Zmień na',btnIgnore:'Ignoruj',btnIgnoreAll:'Ignoruj wszystkie',btnReplace:'Zmień',btnReplaceAll:'Zmień wszystkie',btnUndo:'Cofnij',noSuggestions:'- Brak sugestii -',progress:'Trwa sprawdzanie...',noMispell:'Sprawdzanie zakończone: nie znaleziono błędów',noChanges:'Sprawdzanie zakończone: nie zmieniono żadnego słowa',oneChange:'Sprawdzanie zakończone: zmieniono jedno słowo',manyChanges:'Sprawdzanie zakończone: zmieniono %l słów',ieSpellDownload:'Słownik nie jest zainstalowany. Czy chcesz go pobrać?'},smiley:{toolbar:'Emotikony',title:'Wstaw emotikona',options:'Opcje emotikonów'},elementsPath:{eleLabel:'Ścieżka elementów',eleTitle:'element %1'},numberedlist:'Lista numerowana',bulletedlist:'Lista wypunktowana',indent:'Zwiększ wcięcie',outdent:'Zmniejsz wcięcie',justify:{left:'Wyrównaj do lewej',center:'Wyśrodkuj',right:'Wyrównaj do prawej',block:'Wyjustuj'},blockquote:'Cytat',clipboard:{title:'Wklej',cutError:'Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne wycinanie tekstu. Użyj skrótu klawiszowego Ctrl/Cmd+X.',copyError:'Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne kopiowanie tekstu. Użyj skrótu klawiszowego Ctrl/Cmd+C.',pasteMsg:'Wklej tekst w poniższym polu, używając skrótu klawiaturowego (<STRONG>Ctrl/Cmd+V</STRONG>), i kliknij <STRONG>OK</STRONG>.',securityMsg:'Zabezpieczenia przeglądarki uniemożliwiają wklejenie danych bezpośrednio do edytora. Proszę ponownie wkleić dane w tym oknie.',pasteArea:'Obszar wklejania'},pastefromword:{confirmCleanup:'Tekst, który chcesz wkleić, prawdopodobnie pochodzi z programu Microsoft Word. Czy chcesz go wyczyścić przed wklejeniem?',toolbar:'Wklej z programu MS Word',title:'Wklej z programu MS Word',error:'Wyczyszczenie wklejonych danych nie było możliwe z powodu wystąpienia błędu.'},pasteText:{button:'Wklej jako czysty tekst',title:'Wklej jako czysty tekst'},templates:{button:'Szablony',title:'Szablony zawartości',options:'Opcje szablonów',insertOption:'Zastąp obecną zawartość',selectPromptMsg:'Wybierz szablon do otwarcia w edytorze<br>(obecna zawartość okna edytora zostanie utracona):',emptyListMsg:'(Brak zdefiniowanych szablonów)'},showBlocks:'Pokaż bloki',stylesCombo:{label:'Styl',panelTitle:'Style formatujące',panelTitle1:'Style blokowe',panelTitle2:'Style liniowe',panelTitle3:'Style obiektowe'},format:{label:'Format',panelTitle:'Format',tag_p:'Normalny',tag_pre:'Tekst sformatowany',tag_address:'Adres',tag_h1:'Nagłówek 1',tag_h2:'Nagłówek 2',tag_h3:'Nagłówek 3',tag_h4:'Nagłówek 4',tag_h5:'Nagłówek 5',tag_h6:'Nagłówek 6',tag_div:'Normalny (DIV)'},div:{title:'Utwórz pojemnik Div',toolbar:'Utwórz pojemnik Div',cssClassInputLabel:'Klasy arkusza stylów',styleSelectLabel:'Styl',IdInputLabel:'Id',languageCodeInputLabel:'Kod języka',inlineStyleInputLabel:'Style liniowe',advisoryTitleInputLabel:'Opis obiektu docelowego',langDirLabel:'Kierunek tekstu',langDirLTRLabel:'Od lewej do prawej (LTR)',langDirRTLLabel:'Od prawej do lewej (RTL)',edit:'Edytuj pojemnik Div',remove:'Usuń pojemnik Div'},iframe:{title:'Właściwości elementu IFrame',toolbar:'IFrame',noUrl:'Podaj adres URL elementu IFrame',scrolling:'Włącz paski przewijania',border:'Pokaż obramowanie obiektu IFrame'},font:{label:'Czcionka',voiceLabel:'Czcionka',panelTitle:'Czcionka'},fontSize:{label:'Rozmiar',voiceLabel:'Rozmiar czcionki',panelTitle:'Rozmiar'},colorButton:{textColorTitle:'Kolor tekstu',bgColorTitle:'Kolor tła',panelTitle:'Kolory',auto:'Automatycznie',more:'Więcej kolorów...'},colors:{'000':'Czarny',800000:'Kasztanowy','8B4513':'Czekoladowy','2F4F4F':'Ciemnografitowy','008080':'Morski','000080':'Granatowy','4B0082':'Indygo',696969:'Ciemnoszary',B22222:'Czerwień żelazowa',A52A2A:'Brązowy',DAA520:'Ciemnozłoty','006400':'Ciemnozielony','40E0D0':'Turkusowy','0000CD':'Ciemnoniebieski',800080:'Purpurowy',808080:'Szary',F00:'Czerwony',FF8C00:'Ciemnopomarańczowy',FFD700:'Złoty','008000':'Zielony','0FF':'Cyjan','00F':'Niebieski',EE82EE:'Fioletowy',A9A9A9:'Przygaszony szary',FFA07A:'Łososiowy',FFA500:'Pomarańczowy',FFFF00:'Żółty','00FF00':'Limonkowy',AFEEEE:'Bladoturkusowy',ADD8E6:'Jasnoniebieski',DDA0DD:'Śliwkowy',D3D3D3:'Jasnoszary',FFF0F5:'Jasnolawendowy',FAEBD7:'Kremowobiały',FFFFE0:'Jasnożółty',F0FFF0:'Bladozielony',F0FFFF:'Jasnolazurowy',F0F8FF:'Jasnobłękitny',E6E6FA:'Lawendowy',FFF:'Biały'},scayt:{title:'Sprawdź pisownię podczas pisania (SCAYT)',opera_title:'Funkcja nie jest obsługiwana przez przeglądarkę Opera',enable:'Włącz SCAYT',disable:'Wyłącz SCAYT',about:'Informacje o SCAYT',toggle:'Przełącz SCAYT',options:'Opcje',langs:'Języki',moreSuggestions:'Więcej sugestii',ignore:'Ignoruj',ignoreAll:'Ignoruj wszystkie',addWord:'Dodaj słowo',emptyDic:'Nazwa słownika nie może być pusta.',noSuggestions:'Brak sugestii',optionsTab:'Opcje',allCaps:'Ignoruj wyrazy pisane dużymi literami',ignoreDomainNames:'Ignoruj nazwy domen',mixedCase:'Ignoruj wyrazy pisane dużymi i małymi literami',mixedWithDigits:'Ignoruj wyrazy zawierające cyfry',languagesTab:'Języki',dictionariesTab:'Słowniki',dic_field_name:'Nazwa słownika',dic_create:'Utwórz',dic_restore:'Przywróć',dic_delete:'Usuń',dic_rename:'Zmień nazwę',dic_info:'Początkowo słownik użytkownika przechowywany jest w cookie. Pliki cookie mają jednak ograniczoną pojemność. Jeśli słownik użytkownika przekroczy wielkość dopuszczalną dla pliku cookie, możliwe jest przechowanie go na naszym serwerze. W celu zapisania słownika na serwerze niezbędne jest nadanie mu nazwy. Jeśli słownik został już zapisany na serwerze, wystarczy podać jego nazwę i nacisnąć przycisk Przywróć.',aboutTab:'Informacje o SCAYT'},about:{title:'Informacje o programie CKEditor',dlgTitle:'Informacje o programie CKEditor',help:'Pomoc znajdziesz w $1.',userGuide:'podręczniku użytkownika programu CKEditor',moreInfo:'Informacje na temat licencji można znaleźć na naszej stronie:',copy:'Copyright © $1. Wszelkie prawa zastrzeżone.'},maximize:'Maksymalizuj',minimize:'Minimalizuj',fakeobjects:{anchor:'Kotwica',flash:'Animacja Flash',iframe:'IFrame',hiddenfield:'Pole ukryte',unknown:'Nieznany obiekt'},resize:'Przeciągnij, aby zmienić rozmiar',colordialog:{title:'Wybierz kolor',options:'Opcje koloru',highlight:'Zaznacz',selected:'Wybrany',clear:'Wyczyść'},toolbarCollapse:'Zwiń pasek narzędzi',toolbarExpand:'Rozwiń pasek narzędzi',toolbarGroups:{document:'Dokument',clipboard:'Schowek/Wstecz',editing:'Edycja',forms:'Formularze',basicstyles:'Style podstawowe',paragraph:'Akapit',links:'Hiperłącza',insert:'Wstawianie',styles:'Style',colors:'Kolory',tools:'Narzędzia'},bidi:{ltr:'Kierunek tekstu od lewej strony do prawej',rtl:'Kierunek tekstu od prawej strony do lewej'},docprops:{label:'Właściwości dokumentu',title:'Właściwości dokumentu',design:'Projekt strony',meta:'Znaczniki meta',chooseColor:'Wybierz',other:'Inne',docTitle:'Tytuł strony',charset:'Kodowanie znaków',charsetOther:'Inne kodowanie znaków',charsetASCII:'ASCII',charsetCE:'Środkowoeuropejskie',charsetCT:'Chińskie tradycyjne (Big5)',charsetCR:'Cyrylica',charsetGR:'Greckie',charsetJP:'Japońskie',charsetKR:'Koreańskie',charsetTR:'Tureckie',charsetUN:'Unicode (UTF-8)',charsetWE:'Zachodnioeuropejskie',docType:'Definicja typu dokumentu',docTypeOther:'Inna definicja typu dokumentu',xhtmlDec:'Uwzględnij deklaracje XHTML',bgColor:'Kolor tła',bgImage:'Adres URL obrazka tła',bgFixed:'Tło nieruchome (nieprzewijające się)',txtColor:'Kolor tekstu',margin:'Marginesy strony',marginTop:'Górny',marginLeft:'Lewy',marginRight:'Prawy',marginBottom:'Dolny',metaKeywords:'Słowa kluczowe dokumentu (oddzielone przecinkami)',metaDescription:'Opis dokumentu',metaAuthor:'Autor',metaCopyright:'Prawa autorskie',previewHtml:'<p>To jest <strong>przykładowy tekst</strong>. Korzystasz z programu <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/af.js��������������������������������������������0000664�0001750�0001750�00000042175�12262650742�021732� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.af={dir:'ltr',editorTitle:'Teksverwerker, %1',editorHelp:'Druk op ALT 0 vir hulp',toolbars:'Editor toolbars',editor:'Teksverwerker',source:'Bron',newPage:'Nuwe bladsy',save:'Bewaar',preview:'Voorbeeld',cut:'Knip',copy:'Kopiëer',paste:'Plak',print:'Druk',underline:'Onderstreep',bold:'Vet',italic:'Skuins',selectAll:'Selekteer alles',removeFormat:'Verwyder opmaak',strike:'Deurstreep',subscript:'Onderskrif',superscript:'Bo-skrif',horizontalrule:'Horisontale lyn invoeg',pagebreak:'Bladsy-einde invoeg',pagebreakAlt:'Bladsy-einde',unlink:'Verwyder skakel',undo:'Ontdoen',redo:'Oordoen',common:{browseServer:'Blaai op bediener',url:'URL',protocol:'Protokol',upload:'Oplaai',uploadSubmit:'Stuur na bediener',image:'Afbeelding',flash:'Flash',form:'Vorm',checkbox:'Merkhokkie',radio:'Radioknoppie',textField:'Teksveld',textarea:'Teks-area',hiddenField:'Blinde veld',button:'Knop',select:'Keuseveld',imageButton:'Afbeeldingsknop',notSet:'<geen instelling>',id:'Id',name:'Naam',langDir:'Skryfrigting',langDirLtr:'Links na regs (LTR)',langDirRtl:'Regs na links (RTL)',langCode:'Taalkode',longDescr:'Lang beskrywing URL',cssClass:'CSS klasse',advisoryTitle:'Aanbevole titel',cssStyle:'Styl',ok:'OK',cancel:'Kanselleer',close:'Sluit',preview:'Voorbeeld',generalTab:'Algemeen',advancedTab:'Gevorderd',validateNumberFailed:"Hierdie waarde is nie 'n getal nie.",confirmNewPage:"Alle wysiginge sal verlore gaan. Is u seker dat u 'n nuwe bladsy wil laai?",confirmCancel:'Sommige opsies is gewysig. Is u seker dat u hierdie dialoogvenster wil sluit?',options:'Opsies',target:'Doel',targetNew:'Nuwe venster (_blank)',targetTop:'Boonste venster (_top)',targetSelf:'Selfde venster (_self)',targetParent:'Oorspronklike venster (_parent)',langDirLTR:'Links na Regs (LTR)',langDirRTL:'Regs na Links (RTL)',styles:'Styl',cssClasses:'CSS klasse',width:'Breedte',height:'Hoogte',align:'Oplyn',alignLeft:'Links',alignRight:'Regs',alignCenter:'Sentreer',alignTop:'Bo',alignMiddle:'Middel',alignBottom:'Onder',invalidValue:'Invalid value.',invalidHeight:"Hoogte moet 'n getal wees",invalidWidth:"Breedte moet 'n getal wees.",invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, nie beskikbaar nie</span>'},contextmenu:{options:'Konteks Spyskaart-opsies'},specialChar:{toolbar:'Voeg spesiaale karakter in',title:'Kies spesiale karakter',options:'Spesiale karakter-opsies'},link:{toolbar:'Skakel invoeg/wysig',other:'<ander>',menu:'Wysig skakel',title:'Skakel',info:'Skakel informasie',target:'Doel',upload:'Oplaai',advanced:'Gevorderd',type:'Skakelsoort',toUrl:'URL',toAnchor:'Anker in bladsy',toEmail:'E-pos',targetFrame:'<raam>',targetPopup:'<opspringvenster>',targetFrameName:'Naam van doelraam',targetPopupName:'Naam van opspringvenster',popupFeatures:'Eienskappe van opspringvenster',popupResizable:'Herskaalbaar',popupStatusBar:'Statusbalk',popupLocationBar:'Adresbalk',popupToolbar:'Werkbalk',popupMenuBar:'Spyskaartbalk',popupFullScreen:'Volskerm (IE)',popupScrollBars:'Skuifbalke',popupDependent:'Afhanklik (Netscape)',popupLeft:'Posisie links',popupTop:'Posisie bo',id:'Id',langDir:'Skryfrigting',langDirLTR:'Links na regs (LTR)',langDirRTL:'Regs na links (RTL)',acccessKey:'Toegangsleutel',name:'Naam',langCode:'Taalkode',tabIndex:'Tab indeks',advisoryTitle:'Aanbevole titel',advisoryContentType:'Aanbevole inhoudstipe',cssClasses:'CSS klasse',charset:'Karakterstel van geskakelde bron',styles:'Styl',rel:'Relationship',selectAnchor:"Kies 'n anker",anchorName:'Op ankernaam',anchorId:'Op element Id',emailAddress:'E-posadres',emailSubject:'Berig-onderwerp',emailBody:'Berig-inhoud',noAnchors:'(Geen ankers beskikbaar in dokument)',noUrl:'Gee die skakel se URL',noEmail:'Gee die e-posadres'},anchor:{toolbar:'Anker byvoeg/verander',menu:'Anker-eienskappe',title:'Anker-eienskappe',name:'Ankernaam',errorName:'Voltooi die ankernaam asseblief',remove:'Remove Anchor'},list:{numberedTitle:'Eienskappe van genommerde lys',bulletedTitle:'Eienskappe van ongenommerde lys',type:'Tipe',start:'Begin',validateStartNumber:"Beginnommer van lys moet 'n heelgetal wees.",circle:'Sirkel',disc:'Skyf',square:'Vierkant',none:'Geen',notset:'<nie ingestel nie>',armenian:'Armeense nommering',georgian:'Georgiese nommering (an, ban, gan, ens.)',lowerRoman:'Romeinse kleinletters (i, ii, iii, iv, v, ens.)',upperRoman:'Romeinse hoofletters (I, II, III, IV, V, ens.)',lowerAlpha:'Kleinletters (a, b, c, d, e, ens.)',upperAlpha:'Hoofletters (A, B, C, D, E, ens.)',lowerGreek:'Griekse kleinletters (alpha, beta, gamma, ens.)',decimal:'Desimale syfers (1, 2, 3, ens.)',decimalLeadingZero:'Desimale syfers met voorloopnul (01, 02, 03, ens.)'},findAndReplace:{title:'Soek en vervang',find:'Soek',replace:'Vervang',findWhat:'Soek na:',replaceWith:'Vervang met:',notFoundMsg:'Teks nie gevind nie.',findOptions:'Find Options',matchCase:'Hoof/kleinletter sensitief',matchWord:'Hele woord moet voorkom',matchCyclic:'Soek deurlopend',replaceAll:'Vervang alles',replaceSuccessMsg:'%1 voorkoms(te) vervang.'},table:{toolbar:'Tabel',title:'Tabel eienskappe',menu:'Tabel eienskappe',deleteTable:'Verwyder tabel',rows:'Rye',columns:'Kolomme',border:'Randbreedte',widthPx:'piksels',widthPc:'persent',widthUnit:'breedte-eenheid',cellSpace:'Sel-afstand',cellPad:'Sel-spasie',caption:'Naam',summary:'Opsomming',headers:'Opskrifte',headersNone:'Geen',headersColumn:'Eerste kolom',headersRow:'Eerste ry',headersBoth:'Beide ',invalidRows:"Aantal rye moet 'n getal groter as 0 wees.",invalidCols:"Aantal kolomme moet 'n getal groter as 0 wees.",invalidBorder:"Randbreedte moet 'n getal wees.",invalidWidth:"Tabelbreedte moet 'n getal wees.",invalidHeight:"Tabelhoogte moet 'n getal wees.",invalidCellSpacing:"Sel-afstand moet 'n getal wees.",invalidCellPadding:"Sel-spasie moet 'n getal wees.",cell:{menu:'Sel',insertBefore:'Voeg sel in voor',insertAfter:'Voeg sel in na',deleteCell:'Verwyder sel',merge:'Voeg selle saam',mergeRight:'Voeg saam na regs',mergeDown:'Voeg saam ondertoe',splitHorizontal:'Splits sel horisontaal',splitVertical:'Splits sel vertikaal',title:'Sel eienskappe',cellType:'Sel tipe',rowSpan:'Omspan rye',colSpan:'Omspan kolomme',wordWrap:'Woord terugloop',hAlign:'Horisontale oplyning',vAlign:'Vertikale oplyning',alignBaseline:'Basislyn',bgColor:'Agtergrondkleur',borderColor:'Randkleur',data:'Inhoud',header:'Opskrif',yes:'Ja',no:'Nee',invalidWidth:"Selbreedte moet 'n getal wees.",invalidHeight:"Selhoogte moet 'n getal wees.",invalidRowSpan:"Omspan rye moet 'n heelgetal wees.",invalidColSpan:"Omspan kolomme moet 'n heelgetal wees.",chooseColor:'Kies'},row:{menu:'Ry',insertBefore:'Voeg ry in voor',insertAfter:'Voeg ry in na',deleteRow:'Verwyder ry'},column:{menu:'Kolom',insertBefore:'Voeg kolom in voor',insertAfter:'Voeg kolom in na',deleteColumn:'Verwyder kolom'}},button:{title:'Knop eienskappe',text:'Teks (Waarde)',type:'Soort',typeBtn:'Knop',typeSbm:'Stuur',typeRst:'Maak leeg'},checkboxAndRadio:{checkboxTitle:'Merkhokkie eienskappe',radioTitle:'Radioknoppie eienskappe',value:'Waarde',selected:'Geselekteer'},form:{title:'Vorm eienskappe',menu:'Vorm eienskappe',action:'Aksie',method:'Metode',encoding:'Kodering'},select:{title:'Keuseveld eienskappe',selectInfo:'Info',opAvail:'Beskikbare opsies',value:'Waarde',size:'Grootte',lines:'Lyne',chkMulti:'Laat meer as een keuse toe',opText:'Teks',opValue:'Waarde',btnAdd:'Byvoeg',btnModify:'Wysig',btnUp:'Op',btnDown:'Af',btnSetValue:'Stel as geselekteerde waarde',btnDelete:'Verwyder'},textarea:{title:'Teks-area eienskappe',cols:'Kolomme',rows:'Rye'},textfield:{title:'Teksveld eienskappe',name:'Naam',value:'Waarde',charWidth:'Breedte (karakters)',maxChars:'Maksimum karakters',type:'Soort',typeText:'Teks',typePass:'Wagwoord'},hidden:{title:'Verborge veld eienskappe',name:'Naam',value:'Waarde'},image:{title:'Afbeelding eienskappe',titleButton:'Afbeeldingsknop eienskappe',menu:'Afbeelding eienskappe',infoTab:'Afbeelding informasie',btnUpload:'Stuur na bediener',upload:'Oplaai',alt:'Alternatiewe teks',lockRatio:'Vaste proporsie',resetSize:'Herstel grootte',border:'Rand',hSpace:'HSpasie',vSpace:'VSpasie',alertUrl:'Gee URL van afbeelding.',linkTab:'Skakel',button2Img:"Wil u die geselekteerde afbeeldingsknop vervang met 'n eenvoudige afbeelding?",img2Button:"Wil u die geselekteerde afbeelding vervang met 'n afbeeldingsknop?",urlMissing:'Die URL na die afbeelding ontbreek.',validateBorder:"Rand moet 'n heelgetal wees.",validateHSpace:"HSpasie moet 'n heelgetal wees.",validateVSpace:"VSpasie moet 'n heelgetal wees."},flash:{properties:'Flash eienskappe',propertiesTab:'Eienskappe',title:'Flash eienskappe',chkPlay:'Speel outomaties',chkLoop:'Herhaal',chkMenu:'Flash spyskaart aan',chkFull:'Laat volledige skerm toe',scale:'Skaal',scaleAll:'Wys alles',scaleNoBorder:'Geen rand',scaleFit:'Presiese pas',access:'Skrip toegang',accessAlways:'Altyd',accessSameDomain:'Selfde domeinnaam',accessNever:'Nooit',alignAbsBottom:'Absoluut-onder',alignAbsMiddle:'Absoluut-middel',alignBaseline:'Basislyn',alignTextTop:'Teks bo',quality:'Kwaliteit',qualityBest:'Beste',qualityHigh:'Hoog',qualityAutoHigh:'Outomaties hoog',qualityMedium:'Gemiddeld',qualityAutoLow:'Outomaties laag',qualityLow:'Laag',windowModeWindow:'Venster',windowModeOpaque:'Ondeursigtig',windowModeTransparent:'Deursigtig',windowMode:'Venster modus',flashvars:'Veranderlikes vir Flash',bgcolor:'Agtergrondkleur',hSpace:'HSpasie',vSpace:'VSpasie',validateSrc:'Voeg die URL in',validateHSpace:"HSpasie moet 'n heelgetal wees.",validateVSpace:"VSpasie moet 'n heelgetal wees."},spellCheck:{toolbar:'Speltoets',title:'Speltoetser',notAvailable:'Jammer, hierdie diens is nie nou beskikbaar nie.',errorLoading:'Fout by inlaai van diens: %s.',notInDic:'Nie in woordeboek nie',changeTo:'Verander na',btnIgnore:'Ignoreer',btnIgnoreAll:'Ignoreer alles',btnReplace:'Vervang',btnReplaceAll:'vervang alles',btnUndo:'Ontdoen',noSuggestions:'- Geen voorstel -',progress:'Spelling word getoets...',noMispell:'Klaar met speltoets: Geen foute nie',noChanges:'Klaar met speltoets: Geen woorde verander nie',oneChange:'Klaar met speltoets: Een woord verander',manyChanges:'Klaar met speltoets: %1 woorde verander',ieSpellDownload:'Speltoetser is nie geïnstalleer nie. Wil u dit nou aflaai?'},smiley:{toolbar:'Lagbekkie',title:'Voeg lagbekkie by',options:'Lagbekkie opsies'},elementsPath:{eleLabel:'Elemente-pad',eleTitle:'%1 element'},numberedlist:'Genommerde lys',bulletedlist:'Ongenommerde lys',indent:'Vergroot inspring',outdent:'Verklein inspring',justify:{left:'Links oplyn',center:'Sentreer',right:'Regs oplyn',block:'Uitvul'},blockquote:'Sitaatblok',clipboard:{title:'Byvoeg',cutError:'U blaaier se sekuriteitsinstelling belet die outomatiese knip-aksie. Gebruik die sleutelbordkombinasie (Ctrl/Cmd+X).',copyError:'U blaaier se sekuriteitsinstelling belet die kopiëringsaksie. Gebruik die sleutelbordkombinasie (Ctrl/Cmd+C).',pasteMsg:'Plak die teks in die volgende teks-area met die sleutelbordkombinasie (<STRONG>Ctrl/Cmd+V</STRONG>) en druk <STRONG>OK</STRONG>.',securityMsg:'Weens u blaaier se sekuriteitsinstelling is data op die knipbord nie toeganklik nie. U kan dit eers weer in hierdie venster plak.',pasteArea:'Plak-area'},pastefromword:{confirmCleanup:'Die teks wat u wil plak lyk asof dit uit Word gekopiëer is. Wil u dit eers skoonmaak voordat dit geplak word?',toolbar:'Plak vanuit Word',title:'Plak vanuit Word',error:"Die geplakte teks kon nie skoongemaak word nie, weens 'n interne fout"},pasteText:{button:'Plak as eenvoudige teks',title:'Plak as eenvoudige teks'},templates:{button:'Sjablone',title:'Inhoud Sjablone',options:'Sjabloon opsies',insertOption:'Vervang huidige inhoud',selectPromptMsg:'Kies die sjabloon om te gebruik in die redigeerder (huidige inhoud gaan verlore):',emptyListMsg:'(Geen sjablone gedefineer nie)'},showBlocks:'Toon blokke',stylesCombo:{label:'Styl',panelTitle:'Opmaak style',panelTitle1:'Blok style',panelTitle2:'Inlyn style',panelTitle3:'Objek style'},format:{label:'Opmaak',panelTitle:'Opmaak',tag_p:'Normaal',tag_pre:'Opgemaak',tag_address:'Adres',tag_h1:'Opskrif 1',tag_h2:'Opskrif 2',tag_h3:'Opskrif 3',tag_h4:'Opskrif 4',tag_h5:'Opskrif 5',tag_h6:'Opskrif 6',tag_div:'Normaal (DIV)'},div:{title:'Skep Div houer',toolbar:'Skep Div houer',cssClassInputLabel:'CSS klasse',styleSelectLabel:'Styl',IdInputLabel:'Id',languageCodeInputLabel:' Taalkode',inlineStyleInputLabel:'Inlyn Styl',advisoryTitleInputLabel:'Aanbevole Titel',langDirLabel:'Skryfrigting',langDirLTRLabel:'Links na regs (LTR)',langDirRTLLabel:'Regs na links (RTL)',edit:'Wysig Div',remove:'Verwyder Div'},iframe:{title:'IFrame Eienskappe',toolbar:'IFrame',noUrl:'Gee die iframe URL',scrolling:'Skuifbalke aan',border:'Wys rand van raam'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Fontnaam'},fontSize:{label:'Grootte',voiceLabel:'Fontgrootte',panelTitle:'Fontgrootte'},colorButton:{textColorTitle:'Tekskleur',bgColorTitle:'Agtergrondkleur',panelTitle:'Kleure',auto:'Outomaties',more:'Meer Kleure...'},colors:{'000':'Swart',800000:'Meroen','8B4513':'Sjokoladebruin','2F4F4F':'Donkerleisteengrys','008080':'Blougroen','000080':'Vlootblou','4B0082':'Indigo',696969:'Donkergrys',B22222:'Rooibaksteen',A52A2A:'Bruin',DAA520:'Donkergeel','006400':'Donkergroen','40E0D0':'Turkoois','0000CD':'Middelblou',800080:'Pers',808080:'Grys',F00:'Rooi',FF8C00:'Donkeroranje',FFD700:'Goud','008000':'Groen','0FF':'Siaan','00F':'Blou',EE82EE:'Viooltjieblou',A9A9A9:'Donkergrys',FFA07A:'Ligsalm',FFA500:'Oranje',FFFF00:'Geel','00FF00':'Lemmetjie',AFEEEE:'Ligturkoois',ADD8E6:'Ligblou',DDA0DD:'Pruim',D3D3D3:'Liggrys',FFF0F5:'Linne',FAEBD7:'Ivoor',FFFFE0:'Liggeel',F0FFF0:'Heuningdou',F0FFFF:'Asuur',F0F8FF:'Ligte hemelsblou',E6E6FA:'Laventel',FFF:'Wit'},scayt:{title:'Speltoets terwyl u tik',opera_title:'Nie ondersteun deur Opera nie',enable:'SCAYT aan',disable:'SCAYT af',about:'SCAYT info',toggle:'SCAYT wissel aan/af',options:'Opsies',langs:'Tale',moreSuggestions:'Meer voorstelle',ignore:'Ignoreer',ignoreAll:'Ignoreer alles',addWord:'Voeg woord by',emptyDic:'Woordeboeknaam mag nie leeg wees nie.',noSuggestions:'Geen voorstel',optionsTab:'Opsies',allCaps:'Ignoreer woorde in hoofletters',ignoreDomainNames:'Ignoreer domeinname',mixedCase:'Ignoreer woorde met hoof- en kleinletters',mixedWithDigits:'Ignoreer woorde met syfers',languagesTab:'Tale',dictionariesTab:'Woordeboeke',dic_field_name:'Naam van woordeboek',dic_create:'Skep',dic_restore:'Herstel',dic_delete:'Verwijder',dic_rename:'Hernoem',dic_info:"Aanvanklik word die gebruikerswoordeboek in 'n koekie gestoor. Koekies is egter beperk in grootte. Wanneer die gebruikerswoordeboek te groot vir 'n koekie geword het, kan dit op ons bediener gestoor word. Om u persoonlike woordeboek op ons bediener te stoor, gee asb. 'n naam vir u woordeboek. Indien u alreeds 'n gestoorde woordeboek het, tik die naam en kliek op die Herstel knop.",aboutTab:'Info'},about:{title:'Info oor CKEditor',dlgTitle:'Info oor CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'Vir lisensie-informasie, besoek asb. ons webwerf:',copy:'Kopiereg © $1. Alle regte voorbehou.'},maximize:'Maksimaliseer',minimize:'Minimaliseer',fakeobjects:{anchor:'Anker',flash:'Flash animasie',iframe:'IFrame',hiddenfield:'Verborge veld',unknown:'Onbekende objek'},resize:'Sleep om te herskaal',colordialog:{title:'Kies kleur',options:'Kleuropsies',highlight:'Aktief',selected:'Geselekteer',clear:'Herstel'},toolbarCollapse:'Verklein werkbalk',toolbarExpand:'Vergroot werkbalk',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Skryfrigting van links na regs',rtl:'Skryfrigting van regs na links'},docprops:{label:'Dokument Eienskappe',title:'Dokument Eienskappe',design:'Design',meta:'Meta Data',chooseColor:'Kies',other:'<ander>',docTitle:'Bladsy Opskrif',charset:'Karakterstel Kodeering',charsetOther:'Ander Karakterstel Kodeering',charsetASCII:'ASCII',charsetCE:'Sentraal Europa',charsetCT:'Chinees Traditioneel (Big5)',charsetCR:'Cyrillic',charsetGR:'Grieks',charsetJP:'Japanees',charsetKR:'Koreans',charsetTR:'Turks',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Dokument Opskrif Soort',docTypeOther:'Ander Dokument Opskrif Soort',xhtmlDec:'Voeg XHTML verklaring by',bgColor:'Agtergrond kleur',bgImage:'Agtergrond Beeld URL',bgFixed:'Vasgeklemde Agtergrond',txtColor:'Tekskleur',margin:'Bladsy Rante',marginTop:'Bo',marginLeft:'Links',marginRight:'Regs',marginBottom:'Onder',metaKeywords:'Dokument Index Sleutelwoorde(comma verdeelt)',metaDescription:'Dokument Beskrywing',metaAuthor:'Skrywer',metaCopyright:'Kopiereg',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/bn.js��������������������������������������������0000664�0001750�0001750�00000057365�12262650742�021752� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.bn={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'সোর্স',newPage:'নতুন পেজ',save:'সংরক্ষন কর',preview:'প্রিভিউ',cut:'কাট',copy:'কপি',paste:'পেস্ট',print:'প্রিন্ট',underline:'আন্ডারলাইন',bold:'বোল্ড',italic:'ইটালিক',selectAll:'সব সিলেক্ট কর',removeFormat:'ফরমেট সরাও',strike:'স্ট্রাইক থ্রু',subscript:'অধোলেখ',superscript:'অভিলেখ',horizontalrule:'রেখা যুক্ত কর',pagebreak:'পেজ ব্রেক',pagebreakAlt:'Page Break',unlink:'লিংক সরাও',undo:'আনডু',redo:'রি-ডু',common:{browseServer:'ব্রাউজ সার্ভার',url:'URL',protocol:'প্রোটোকল',upload:'আপলোড',uploadSubmit:'ইহাকে সার্ভারে প্রেরন কর',image:'ছবির লেবেল যুক্ত কর',flash:'ফ্লাশ লেবেল যুক্ত কর',form:'ফর্ম',checkbox:'চেক বাক্স',radio:'রেডিও বাটন',textField:'টেক্সট ফীল্ড',textarea:'টেক্সট এরিয়া',hiddenField:'গুপ্ত ফীল্ড',button:'বাটন',select:'বাছাই ফীল্ড',imageButton:'ছবির বাটন',notSet:'<সেট নেই>',id:'আইডি',name:'নাম',langDir:'ভাষা লেখার দিক',langDirLtr:'বাম থেকে ডান (LTR)',langDirRtl:'ডান থেকে বাম (RTL)',langCode:'ভাষা কোড',longDescr:'URL এর লম্বা বর্ণনা',cssClass:'স্টাইল-শীট ক্লাস',advisoryTitle:'পরামর্শ শীর্ষক',cssStyle:'স্টাইল',ok:'ওকে',cancel:'বাতিল',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'এডভান্সড',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'প্রস্থ',height:'দৈর্ঘ্য',align:'এলাইন',alignLeft:'বামে',alignRight:'ডানে',alignCenter:'মাঝখানে',alignTop:'উপর',alignMiddle:'মধ্য',alignBottom:'নীচে',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'বিশেষ অক্ষর যুক্ত কর',title:'বিশেষ ক্যারেক্টার বাছাই কর',options:'Special Character Options'},link:{toolbar:'লিংক যুক্ত কর',other:'<other>',menu:'লিংক সম্পাদন',title:'লিংক',info:'লিংক তথ্য',target:'টার্গেট',upload:'আপলোড',advanced:'এডভান্সড',type:'লিংক প্রকার',toUrl:'URL',toAnchor:'এই পেজে নোঙর কর',toEmail:'ইমেইল',targetFrame:'<ফ্রেম>',targetPopup:'<পপআপ উইন্ডো>',targetFrameName:'টার্গেট ফ্রেমের নাম',targetPopupName:'পপআপ উইন্ডোর নাম',popupFeatures:'পপআপ উইন্ডো ফীচার সমূহ',popupResizable:'Resizable',popupStatusBar:'স্ট্যাটাস বার',popupLocationBar:'লোকেশন বার',popupToolbar:'টুল বার',popupMenuBar:'মেন্যু বার',popupFullScreen:'পূর্ণ পর্দা জুড়ে (IE)',popupScrollBars:'স্ক্রল বার',popupDependent:'ডিপেন্ডেন্ট (Netscape)',popupLeft:'বামের পজিশন',popupTop:'ডানের পজিশন',id:'Id',langDir:'ভাষা লেখার দিক',langDirLTR:'বাম থেকে ডান (LTR)',langDirRTL:'ডান থেকে বাম (RTL)',acccessKey:'এক্সেস কী',name:'নাম',langCode:'ভাষা লেখার দিক',tabIndex:'ট্যাব ইন্ডেক্স',advisoryTitle:'পরামর্শ শীর্ষক',advisoryContentType:'পরামর্শ কন্টেন্টের প্রকার',cssClasses:'স্টাইল-শীট ক্লাস',charset:'লিংক রিসোর্স ক্যারেক্টর সেট',styles:'স্টাইল',rel:'Relationship',selectAnchor:'নোঙর বাছাই',anchorName:'নোঙরের নাম দিয়ে',anchorId:'নোঙরের আইডি দিয়ে',emailAddress:'ইমেইল ঠিকানা',emailSubject:'মেসেজের বিষয়',emailBody:'মেসেজের দেহ',noAnchors:'(No anchors available in the document)',noUrl:'অনুগ্রহ করে URL লিংক টাইপ করুন',noEmail:'অনুগ্রহ করে ইমেইল এড্রেস টাইপ করুন'},anchor:{toolbar:'নোঙ্গর',menu:'নোঙর প্রোপার্টি',title:'নোঙর প্রোপার্টি',name:'নোঙরের নাম',errorName:'নোঙরের নাম টাইপ করুন',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'খোজো',replace:'রিপ্লেস',findWhat:'যা খুঁজতে হবে:',replaceWith:'যার সাথে বদলাতে হবে:',notFoundMsg:'আপনার উল্লেখিত টেকস্ট পাওয়া যায়নি',findOptions:'Find Options',matchCase:'কেস মিলাও',matchWord:'পুরা শব্দ মেলাও',matchCyclic:'Match cyclic',replaceAll:'সব বদলে দাও',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'টেবিলের লেবেল যুক্ত কর',title:'টেবিল প্রোপার্টি',menu:'টেবিল প্রোপার্টি',deleteTable:'টেবিল ডিলীট কর',rows:'রো',columns:'কলাম',border:'বর্ডার সাইজ',widthPx:'পিক্সেল',widthPc:'শতকরা',widthUnit:'width unit',cellSpace:'সেল স্পেস',cellPad:'সেল প্যাডিং',caption:'শীর্ষক',summary:'সারাংশ',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'সেল',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'সেল মুছে দাও',merge:'সেল জোড়া দাও',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'রো',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'রো মুছে দাও'},column:{menu:'কলাম',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'কলাম মুছে দাও'}},button:{title:'বাটন প্রোপার্টি',text:'টেক্সট (ভ্যালু)',type:'প্রকার',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'চেক বক্স প্রোপার্টি',radioTitle:'রেডিও বাটন প্রোপার্টি',value:'ভ্যালু',selected:'সিলেক্টেড'},form:{title:'ফর্ম প্রোপার্টি',menu:'ফর্ম প্রোপার্টি',action:'একশ্যন',method:'পদ্ধতি',encoding:'Encoding'},select:{title:'বাছাই ফীল্ড প্রোপার্টি',selectInfo:'তথ্য',opAvail:'অন্যান্য বিকল্প',value:'ভ্যালু',size:'সাইজ',lines:'লাইন সমূহ',chkMulti:'একাধিক সিলেকশন এলাউ কর',opText:'টেক্সট',opValue:'ভ্যালু',btnAdd:'যুক্ত',btnModify:'বদলে দাও',btnUp:'উপর',btnDown:'নীচে',btnSetValue:'বাছাই করা ভ্যালু হিসেবে সেট কর',btnDelete:'ডিলীট'},textarea:{title:'টেক্সট এরিয়া প্রোপার্টি',cols:'কলাম',rows:'রো'},textfield:{title:'টেক্সট ফীল্ড প্রোপার্টি',name:'নাম',value:'ভ্যালু',charWidth:'ক্যারেক্টার প্রশস্ততা',maxChars:'সর্বাধিক ক্যারেক্টার',type:'টাইপ',typeText:'টেক্সট',typePass:'পাসওয়ার্ড'},hidden:{title:'গুপ্ত ফীল্ড প্রোপার্টি',name:'নাম',value:'ভ্যালু'},image:{title:'ছবির প্রোপার্টি',titleButton:'ছবি বাটন প্রোপার্টি',menu:'ছবির প্রোপার্টি',infoTab:'ছবির তথ্য',btnUpload:'ইহাকে সার্ভারে প্রেরন কর',upload:'আপলোড',alt:'বিকল্প টেক্সট',lockRatio:'অনুপাত লক কর',resetSize:'সাইজ পূর্বাবস্থায় ফিরিয়ে দাও',border:'বর্ডার',hSpace:'হরাইজন্টাল স্পেস',vSpace:'ভার্টিকেল স্পেস',alertUrl:'অনুগ্রহক করে ছবির URL টাইপ করুন',linkTab:'লিংক',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'ফ্লাশ প্রোপার্টি',propertiesTab:'Properties',title:'ফ্ল্যাশ প্রোপার্টি',chkPlay:'অটো প্লে',chkLoop:'লূপ',chkMenu:'ফ্ল্যাশ মেনু এনাবল কর',chkFull:'Allow Fullscreen',scale:'স্কেল',scaleAll:'সব দেখাও',scaleNoBorder:'কোনো বর্ডার নেই',scaleFit:'নিখুঁত ফিট',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs নীচে',alignAbsMiddle:'Abs উপর',alignBaseline:'মূল রেখা',alignTextTop:'টেক্সট উপর',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'বেকগ্রাউন্ড রং',hSpace:'হরাইজন্টাল স্পেস',vSpace:'ভার্টিকেল স্পেস',validateSrc:'অনুগ্রহ করে URL লিংক টাইপ করুন',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'বানান চেক',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'শব্দকোষে নেই',changeTo:'এতে বদলাও',btnIgnore:'ইগনোর কর',btnIgnoreAll:'সব ইগনোর কর',btnReplace:'বদলে দাও',btnReplaceAll:'সব বদলে দাও',btnUndo:'আন্ডু',noSuggestions:'- কোন সাজেশন নেই -',progress:'বানান পরীক্ষা চলছে...',noMispell:'বানান পরীক্ষা শেষ: কোন ভুল বানান পাওয়া যায়নি',noChanges:'বানান পরীক্ষা শেষ: কোন শব্দ পরিবর্তন করা হয়নি',oneChange:'বানান পরীক্ষা শেষ: একটি মাত্র শব্দ পরিবর্তন করা হয়েছে',manyChanges:'বানান পরীক্ষা শেষ: %1 গুলো শব্দ বদলে গ্যাছে',ieSpellDownload:'বানান পরীক্ষক ইনস্টল করা নেই। আপনি কি এখনই এটা ডাউনলোড করতে চান?'},smiley:{toolbar:'স্মাইলী',title:'স্মাইলী যুক্ত কর',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'সাংখ্যিক লিস্টের লেবেল',bulletedlist:'বুলেট লিস্ট লেবেল',indent:'ইনডেন্ট বাড়াও',outdent:'ইনডেন্ট কমাও',justify:{left:'বা দিকে ঘেঁষা',center:'মাঝ বরাবর ঘেষা',right:'ডান দিকে ঘেঁষা',block:'ব্লক জাস্টিফাই'},blockquote:'Block Quote',clipboard:{title:'পেস্ট',cutError:'আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কাট করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl/Cmd+X)।',copyError:'আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কপি করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl/Cmd+C)।',pasteMsg:'অনুগ্রহ করে নীচের বাক্সে কিবোর্ড ব্যবহার করে (<STRONG>Ctrl/Cmd+V</STRONG>) পেস্ট করুন এবং <STRONG>OK</STRONG> চাপ দিন',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'পেস্ট (শব্দ)',title:'পেস্ট (শব্দ)',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'সাদা টেক্সট হিসেবে পেস্ট কর',title:'সাদা টেক্সট হিসেবে পেস্ট কর'},templates:{button:'টেমপ্লেট',title:'কনটেন্ট টেমপ্লেট',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'অনুগ্রহ করে এডিটরে ওপেন করার জন্য টেমপ্লেট বাছাই করুন<br>(আসল কনটেন্ট হারিয়ে যাবে):',emptyListMsg:'(কোন টেমপ্লেট ডিফাইন করা নেই)'},showBlocks:'Show Blocks',stylesCombo:{label:'স্টাইল',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'ফন্ট ফরমেট',panelTitle:'ফন্ট ফরমেট',tag_p:'সাধারণ',tag_pre:'ফর্মেটেড',tag_address:'ঠিকানা',tag_h1:'শীর্ষক ১',tag_h2:'শীর্ষক ২',tag_h3:'শীর্ষক ৩',tag_h4:'শীর্ষক ৪',tag_h5:'শীর্ষক ৫',tag_h6:'শীর্ষক ৬',tag_div:'শীর্ষক (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'ফন্ট',voiceLabel:'Font',panelTitle:'ফন্ট'},fontSize:{label:'সাইজ',voiceLabel:'Font Size',panelTitle:'সাইজ'},colorButton:{textColorTitle:'টেক্স্ট রং',bgColorTitle:'বেকগ্রাউন্ড রং',panelTitle:'Colors',auto:'অটোমেটিক',more:'আরও রং...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'কোন সাজেশন নেই',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'ডক্যুমেন্ট প্রোপার্টি',title:'ডক্যুমেন্ট প্রোপার্টি',design:'Design',meta:'মেটাডেটা',chooseColor:'Choose',other:'<other>',docTitle:'পেজ শীর্ষক',charset:'ক্যারেক্টার সেট এনকোডিং',charsetOther:'অন্য ক্যারেক্টার সেট এনকোডিং',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'ডক্যুমেন্ট টাইপ হেডিং',docTypeOther:'অন্য ডক্যুমেন্ট টাইপ হেডিং',xhtmlDec:'XHTML ডেক্লারেশন যুক্ত কর',bgColor:'ব্যাকগ্রাউন্ড রং',bgImage:'ব্যাকগ্রাউন্ড ছবির URL',bgFixed:'স্ক্রলহীন ব্যাকগ্রাউন্ড',txtColor:'টেক্স্ট রং',margin:'পেজ মার্জিন',marginTop:'উপর',marginLeft:'বামে',marginRight:'ডানে',marginBottom:'নীচে',metaKeywords:'ডক্যুমেন্ট ইন্ডেক্স কিওয়ার্ড (কমা দ্বারা বিচ্ছিন্ন)',metaDescription:'ডক্যূমেন্ট বর্ণনা',metaAuthor:'লেখক',metaCopyright:'কপীরাইট',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/nb.js��������������������������������������������0000664�0001750�0001750�00000042600�12262650742�021734� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.nb={dir:'ltr',editorTitle:'Rikteksteditor, %1',editorHelp:'Trykk ALT 0 for hjelp',toolbars:'Verktøylinjer for editor',editor:'Rikteksteditor',source:'Kilde',newPage:'Ny side',save:'Lagre',preview:'Forhåndsvis',cut:'Klipp ut',copy:'Kopier',paste:'Lim inn',print:'Skriv ut',underline:'Understreking',bold:'Fet',italic:'Kursiv',selectAll:'Merk alt',removeFormat:'Fjern formatering',strike:'Gjennomstreking',subscript:'Senket skrift',superscript:'Hevet skrift',horizontalrule:'Sett inn horisontal linje',pagebreak:'Sett inn sideskift for utskrift',pagebreakAlt:'Sideskift',unlink:'Fjern lenke',undo:'Angre',redo:'Gjør om',common:{browseServer:'Bla igjennom server',url:'URL',protocol:'Protokoll',upload:'Last opp',uploadSubmit:'Send det til serveren',image:'Bilde',flash:'Flash',form:'Skjema',checkbox:'Avmerkingsboks',radio:'Alternativknapp',textField:'Tekstboks',textarea:'Tekstområde',hiddenField:'Skjult felt',button:'Knapp',select:'Rullegardinliste',imageButton:'Bildeknapp',notSet:'<ikke satt>',id:'Id',name:'Navn',langDir:'Språkretning',langDirLtr:'Venstre til høyre (VTH)',langDirRtl:'Høyre til venstre (HTV)',langCode:'Språkkode',longDescr:'Utvidet beskrivelse',cssClass:'Stilarkklasser',advisoryTitle:'Tittel',cssStyle:'Stil',ok:'OK',cancel:'Avbryt',close:'Lukk',preview:'Forhåndsvis',generalTab:'Generelt',advancedTab:'Avansert',validateNumberFailed:'Denne verdien er ikke et tall.',confirmNewPage:'Alle ulagrede endringer som er gjort i dette innholdet vil bli tapt. Er du sikker på at du vil laste en ny side?',confirmCancel:'Noen av valgene har blitt endret. Er du sikker på at du vil lukke dialogen?',options:'Valg',target:'Mål',targetNew:'Nytt vindu (_blank)',targetTop:'Hele vindu (_top)',targetSelf:'Samme vindu (_self)',targetParent:'Foreldrevindu (_parent)',langDirLTR:'Venstre til høyre (VTH)',langDirRTL:'Høyre til venstre (HTV)',styles:'Stil',cssClasses:'Stilarkklasser',width:'Bredde',height:'Høyde',align:'Juster',alignLeft:'Venstre',alignRight:'Høyre',alignCenter:'Midtjuster',alignTop:'Topp',alignMiddle:'Midten',alignBottom:'Bunn',invalidValue:'Ugyldig verdi.',invalidHeight:'Høyde må være et tall.',invalidWidth:'Bredde må være et tall.',invalidCssLength:'Den angitte verdien for feltet "%1" må være et positivt tall med eller uten en gyldig CSS-målingsenhet (px, %, in, cm, mm, em, ex, pt, eller pc).',invalidHtmlLength:'Den angitte verdien for feltet "%1" må være et positivt tall med eller uten en gyldig HTML-målingsenhet (px eller %).',invalidInlineStyle:'Verdi angitt for inline stil må bestå av en eller flere sett med formatet "navn : verdi", separert med semikolon',cssLengthTooltip:'Skriv inn et tall for en piksel-verdi eller et tall med en gyldig CSS-enhet (px, %, in, cm, mm, em, ex, pt, eller pc).',unavailable:'%1<span class="cke_accessibility">, utilgjenglig</span>'},contextmenu:{options:'Alternativer for høyreklikkmeny'},specialChar:{toolbar:'Sett inn spesialtegn',title:'Velg spesialtegn',options:'Alternativer for spesialtegn'},link:{toolbar:'Sett inn/Rediger lenke',other:'<annen>',menu:'Rediger lenke',title:'Lenke',info:'Lenkeinfo',target:'Mål',upload:'Last opp',advanced:'Avansert',type:'Lenketype',toUrl:'URL',toAnchor:'Lenke til anker i teksten',toEmail:'E-post',targetFrame:'<ramme>',targetPopup:'<popup-vindu>',targetFrameName:'Målramme',targetPopupName:'Navn på popup-vindu',popupFeatures:'Egenskaper for popup-vindu',popupResizable:'Skalerbar',popupStatusBar:'Statuslinje',popupLocationBar:'Adresselinje',popupToolbar:'Verktøylinje',popupMenuBar:'Menylinje',popupFullScreen:'Fullskjerm (IE)',popupScrollBars:'Scrollbar',popupDependent:'Avhenging (Netscape)',popupLeft:'Venstre posisjon',popupTop:'Topp-posisjon',id:'Id',langDir:'Språkretning',langDirLTR:'Venstre til høyre (VTH)',langDirRTL:'Høyre til venstre (HTV)',acccessKey:'Aksessknapp',name:'Navn',langCode:'Språkkode',tabIndex:'Tabindeks',advisoryTitle:'Tittel',advisoryContentType:'Type',cssClasses:'Stilarkklasser',charset:'Lenket tegnsett',styles:'Stil',rel:'Relasjon (rel)',selectAnchor:'Velg et anker',anchorName:'Anker etter navn',anchorId:'Element etter ID',emailAddress:'E-postadresse',emailSubject:'Meldingsemne',emailBody:'Melding',noAnchors:'(Ingen anker i dokumentet)',noUrl:'Vennligst skriv inn lenkens URL',noEmail:'Vennligst skriv inn e-postadressen'},anchor:{toolbar:'Sett inn/Rediger anker',menu:'Egenskaper for anker',title:'Egenskaper for anker',name:'Ankernavn',errorName:'Vennligst skriv inn ankernavnet',remove:'Fjern anker'},list:{numberedTitle:'Egenskaper for nummerert liste',bulletedTitle:'Egenskaper for punktmerket liste',type:'Type',start:'Start',validateStartNumber:'Starten på listen må være et heltall.',circle:'Sirkel',disc:'Disk',square:'Firkant',none:'Ingen',notset:'<ikke satt>',armenian:'Armensk nummerering',georgian:'Georgisk nummerering (an, ban, gan, osv.)',lowerRoman:'Romertall, små (i, ii, iii, iv, v, osv.)',upperRoman:'Romertall, store (I, II, III, IV, V, osv.)',lowerAlpha:'Alfabetisk, små (a, b, c, d, e, osv.)',upperAlpha:'Alfabetisk, store (A, B, C, D, E, osv.)',lowerGreek:'Gresk, små (alpha, beta, gamma, osv.)',decimal:'Tall (1, 2, 3, osv.)',decimalLeadingZero:'Tall, med førstesiffer null (01, 02, 03, osv.)'},findAndReplace:{title:'Søk og erstatt',find:'Søk',replace:'Erstatt',findWhat:'Søk etter:',replaceWith:'Erstatt med:',notFoundMsg:'Fant ikke søketeksten.',findOptions:'Søkealternativer',matchCase:'Skill mellom store og små bokstaver',matchWord:'Bare hele ord',matchCyclic:'Søk i hele dokumentet',replaceAll:'Erstatt alle',replaceSuccessMsg:'%1 tilfelle(r) erstattet.'},table:{toolbar:'Tabell',title:'Egenskaper for tabell',menu:'Egenskaper for tabell',deleteTable:'Slett tabell',rows:'Rader',columns:'Kolonner',border:'Rammestørrelse',widthPx:'piksler',widthPc:'prosent',widthUnit:'Bredde-enhet',cellSpace:'Cellemarg',cellPad:'Cellepolstring',caption:'Tittel',summary:'Sammendrag',headers:'Overskrifter',headersNone:'Ingen',headersColumn:'Første kolonne',headersRow:'Første rad',headersBoth:'Begge',invalidRows:'Antall rader må være et tall større enn 0.',invalidCols:'Antall kolonner må være et tall større enn 0.',invalidBorder:'Rammestørrelse må være et tall.',invalidWidth:'Tabellbredde må være et tall.',invalidHeight:'Tabellhøyde må være et tall.',invalidCellSpacing:'Cellemarg må være et positivt tall.',invalidCellPadding:'Cellepolstring må være et positivt tall.',cell:{menu:'Celle',insertBefore:'Sett inn celle før',insertAfter:'Sett inn celle etter',deleteCell:'Slett celler',merge:'Slå sammen celler',mergeRight:'Slå sammen høyre',mergeDown:'Slå sammen ned',splitHorizontal:'Del celle horisontalt',splitVertical:'Del celle vertikalt',title:'Celleegenskaper',cellType:'Celletype',rowSpan:'Radspenn',colSpan:'Kolonnespenn',wordWrap:'Tekstbrytning',hAlign:'Horisontal justering',vAlign:'Vertikal justering',alignBaseline:'Grunnlinje',bgColor:'Bakgrunnsfarge',borderColor:'Rammefarge',data:'Data',header:'Overskrift',yes:'Ja',no:'Nei',invalidWidth:'Cellebredde må være et tall.',invalidHeight:'Cellehøyde må være et tall.',invalidRowSpan:'Radspenn må være et heltall.',invalidColSpan:'Kolonnespenn må være et heltall.',chooseColor:'Velg'},row:{menu:'Rader',insertBefore:'Sett inn rad før',insertAfter:'Sett inn rad etter',deleteRow:'Slett rader'},column:{menu:'Kolonne',insertBefore:'Sett inn kolonne før',insertAfter:'Sett inn kolonne etter',deleteColumn:'Slett kolonner'}},button:{title:'Egenskaper for knapp',text:'Tekst (verdi)',type:'Type',typeBtn:'Knapp',typeSbm:'Send',typeRst:'Nullstill'},checkboxAndRadio:{checkboxTitle:'Egenskaper for avmerkingsboks',radioTitle:'Egenskaper for alternativknapp',value:'Verdi',selected:'Valgt'},form:{title:'Egenskaper for skjema',menu:'Egenskaper for skjema',action:'Handling',method:'Metode',encoding:'Encoding'},select:{title:'Egenskaper for rullegardinliste',selectInfo:'Info',opAvail:'Tilgjenglige alternativer',value:'Verdi',size:'Størrelse',lines:'Linjer',chkMulti:'Tillat flervalg',opText:'Tekst',opValue:'Verdi',btnAdd:'Legg til',btnModify:'Endre',btnUp:'Opp',btnDown:'Ned',btnSetValue:'Sett som valgt',btnDelete:'Slett'},textarea:{title:'Egenskaper for tekstområde',cols:'Kolonner',rows:'Rader'},textfield:{title:'Egenskaper for tekstfelt',name:'Navn',value:'Verdi',charWidth:'Tegnbredde',maxChars:'Maks antall tegn',type:'Type',typeText:'Tekst',typePass:'Passord'},hidden:{title:'Egenskaper for skjult felt',name:'Navn',value:'Verdi'},image:{title:'Bildeegenskaper',titleButton:'Egenskaper for bildeknapp',menu:'Bildeegenskaper',infoTab:'Bildeinformasjon',btnUpload:'Send det til serveren',upload:'Last opp',alt:'Alternativ tekst',lockRatio:'Lås forhold',resetSize:'Tilbakestill størrelse',border:'Ramme',hSpace:'HMarg',vSpace:'VMarg',alertUrl:'Vennligst skriv bilde-urlen',linkTab:'Lenke',button2Img:'Vil du endre den valgte bildeknappen til et vanlig bilde?',img2Button:'Vil du endre det valgte bildet til en bildeknapp?',urlMissing:'Bildets adresse mangler.',validateBorder:'Ramme må være et heltall.',validateHSpace:'HMarg må være et heltall.',validateVSpace:'VMarg må være et heltall.'},flash:{properties:'Egenskaper for Flash-objekt',propertiesTab:'Egenskaper',title:'Flash-egenskaper',chkPlay:'Autospill',chkLoop:'Loop',chkMenu:'Slå på Flash-meny',chkFull:'Tillat fullskjerm',scale:'Skaler',scaleAll:'Vis alt',scaleNoBorder:'Ingen ramme',scaleFit:'Skaler til å passe',access:'Scripttilgang',accessAlways:'Alltid',accessSameDomain:'Samme domene',accessNever:'Aldri',alignAbsBottom:'Abs bunn',alignAbsMiddle:'Abs midten',alignBaseline:'Bunnlinje',alignTextTop:'Tekst topp',quality:'Kvalitet',qualityBest:'Best',qualityHigh:'Høy',qualityAutoHigh:'Auto høy',qualityMedium:'Medium',qualityAutoLow:'Auto lav',qualityLow:'Lav',windowModeWindow:'Vindu',windowModeOpaque:'Opaque',windowModeTransparent:'Gjennomsiktig',windowMode:'Vindumodus',flashvars:'Variabler for flash',bgcolor:'Bakgrunnsfarge',hSpace:'HMarg',vSpace:'VMarg',validateSrc:'Vennligst skriv inn lenkens url.',validateHSpace:'HMarg må være et tall.',validateVSpace:'VMarg må være et tall.'},spellCheck:{toolbar:'Stavekontroll',title:'Stavekontroll',notAvailable:'Beklager, tjenesten er utilgjenglig nå.',errorLoading:'Feil under lasting av applikasjonstjenestetjener: %s.',notInDic:'Ikke i ordboken',changeTo:'Endre til',btnIgnore:'Ignorer',btnIgnoreAll:'Ignorer alle',btnReplace:'Erstatt',btnReplaceAll:'Erstatt alle',btnUndo:'Angre',noSuggestions:'- Ingen forslag -',progress:'Stavekontroll pågår...',noMispell:'Stavekontroll fullført: ingen feilstavinger funnet',noChanges:'Stavekontroll fullført: ingen ord endret',oneChange:'Stavekontroll fullført: Ett ord endret',manyChanges:'Stavekontroll fullført: %1 ord endret',ieSpellDownload:'Stavekontroll er ikke installert. Vil du laste den ned nå?'},smiley:{toolbar:'Smil',title:'Sett inn smil',options:'Alternativer for smil'},elementsPath:{eleLabel:'Element-sti',eleTitle:'%1 element'},numberedlist:'Legg til/Fjern nummerert liste',bulletedlist:'Legg til/Fjern punktmerket liste',indent:'Øk innrykk',outdent:'Reduser innrykk',justify:{left:'Venstrejuster',center:'Midtstill',right:'Høyrejuster',block:'Blokkjuster'},blockquote:'Sitatblokk',clipboard:{title:'Lim inn',cutError:'Din nettlesers sikkerhetsinstillinger tillater ikke automatisk utklipping av tekst. Vennligst bruk snarveien (Ctrl/Cmd+X).',copyError:'Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst bruk snarveien (Ctrl/Cmd+C).',pasteMsg:'Vennligst lim inn i følgende boks med tastaturet (<STRONG>Ctrl/Cmd+V</STRONG>) og trykk <STRONG>OK</STRONG>.',securityMsg:'Din nettlesers sikkerhetsinstillinger gir ikke redigeringsverktøyet direkte tilgang til utklippstavlen. Du må derfor lime det inn på nytt i dette vinduet.',pasteArea:'Innlimingsområde'},pastefromword:{confirmCleanup:'Teksten du limer inn ser ut til å være kopiert fra Word. Vil du renske den før du limer den inn?',toolbar:'Lim inn fra Word',title:'Lim inn fra Word',error:'Det var ikke mulig å renske den innlimte teksten på grunn av en intern feil'},pasteText:{button:'Lim inn som ren tekst',title:'Lim inn som ren tekst'},templates:{button:'Maler',title:'Innholdsmaler',options:'Alternativer for mal',insertOption:'Erstatt gjeldende innhold',selectPromptMsg:'Velg malen du vil åpne i redigeringsverktøyet:',emptyListMsg:'(Ingen maler definert)'},showBlocks:'Vis blokker',stylesCombo:{label:'Stil',panelTitle:'Stilformater',panelTitle1:'Blokkstiler',panelTitle2:'Inlinestiler',panelTitle3:'Objektstiler'},format:{label:'Format',panelTitle:'Avsnittsformat',tag_p:'Normal',tag_pre:'Formatert',tag_address:'Adresse',tag_h1:'Overskrift 1',tag_h2:'Overskrift 2',tag_h3:'Overskrift 3',tag_h4:'Overskrift 4',tag_h5:'Overskrift 5',tag_h6:'Overskrift 6',tag_div:'Normal (DIV)'},div:{title:'Sett inn Div Container',toolbar:'Sett inn Div Container',cssClassInputLabel:'Stilark-klasser',styleSelectLabel:'Stil',IdInputLabel:'Id',languageCodeInputLabel:' Språkkode',inlineStyleInputLabel:'Inlinestiler',advisoryTitleInputLabel:'Tittel',langDirLabel:'Språkretning',langDirLTRLabel:'Venstre til høyre (VTH)',langDirRTLLabel:'Høyre til venstre (HTV)',edit:'Rediger Div',remove:'Fjern Div'},iframe:{title:'Egenskaper for IFrame',toolbar:'IFrame',noUrl:'Vennligst skriv inn URL for iframe',scrolling:'Aktiver scrollefelt',border:'Viss ramme rundt iframe'},font:{label:'Skrift',voiceLabel:'Font',panelTitle:'Skrift'},fontSize:{label:'Størrelse',voiceLabel:'Font Størrelse',panelTitle:'Størrelse'},colorButton:{textColorTitle:'Tekstfarge',bgColorTitle:'Bakgrunnsfarge',panelTitle:'Farger',auto:'Automatisk',more:'Flere farger...'},colors:{'000':'Svart',800000:'Rødbrun','8B4513':'Salbrun','2F4F4F':'Grønnsvart','008080':'Blågrønn','000080':'Marineblått','4B0082':'Indigo',696969:'Mørk grå',B22222:'Mørkerød',A52A2A:'Brun',DAA520:'Lys brun','006400':'Mørk grønn','40E0D0':'Turkis','0000CD':'Medium blå',800080:'Purpur',808080:'Grå',F00:'Rød',FF8C00:'Mørk oransje',FFD700:'Gull','008000':'Grønn','0FF':'Cyan','00F':'Blå',EE82EE:'Fiolett',A9A9A9:'Svak grå',FFA07A:'Rosa-oransje',FFA500:'Oransje',FFFF00:'Gul','00FF00':'Lime',AFEEEE:'Svak turkis',ADD8E6:'Lys Blå',DDA0DD:'Plomme',D3D3D3:'Lys grå',FFF0F5:'Svak lavendelrosa',FAEBD7:'Antikk-hvit',FFFFE0:'Lys gul',F0FFF0:'Honningmelon',F0FFFF:'Svakt asurblått',F0F8FF:'Svak cyan',E6E6FA:'Lavendel',FFF:'Hvit'},scayt:{title:'Stavekontroll mens du skriver',opera_title:'Ikke støttet av Opera',enable:'Slå på SCAYT',disable:'Slå av SCAYT',about:'Om SCAYT',toggle:'Veksle SCAYT',options:'Valg',langs:'Språk',moreSuggestions:'Flere forslag',ignore:'Ignorer',ignoreAll:'Ignorer Alle',addWord:'Legg til ord',emptyDic:'Ordboknavn bør ikke være tom.',noSuggestions:'Ingen forslag',optionsTab:'Valg',allCaps:'Ikke kontroller ord med kun store bokstaver',ignoreDomainNames:'Ikke kontroller domenenavn',mixedCase:'Ikke kontroller ord med blandet små og store bokstaver',mixedWithDigits:'Ikke kontroller ord som inneholder tall',languagesTab:'Språk',dictionariesTab:'Ordbøker',dic_field_name:'Ordboknavn',dic_create:'Opprett',dic_restore:'Gjenopprett',dic_delete:'Slett',dic_rename:'Gi nytt navn',dic_info:'Brukerordboken lagres først i en informasjonskapsel på din maskin, men det er en begrensning på hvor mye som kan lagres her. Når ordboken blir for stor til å lagres i en informasjonskapsel, vil vi i stedet lagre ordboken på vår server. For å lagre din personlige ordbok på vår server, burde du velge et navn for ordboken din. Hvis du allerede har lagret en ordbok, vennligst skriv inn ordbokens navn og klikk på Gjenopprett-knappen.',aboutTab:'Om'},about:{title:'Om CKEditor',dlgTitle:'Om CKEditor',help:'Se $1 for hjelp.',userGuide:'CKEditors brukerveiledning',moreInfo:'For lisensieringsinformasjon, vennligst besøk vårt nettsted:',copy:'Copyright © $1. Alle rettigheter reservert.'},maximize:'Maksimer',minimize:'Minimer',fakeobjects:{anchor:'Anker',flash:'Flash-animasjon',iframe:'IFrame',hiddenfield:'Skjult felt',unknown:'Ukjent objekt'},resize:'Dra for å skalere',colordialog:{title:'Velg farge',options:'Alternativer for farge',highlight:'Merk',selected:'Valgt',clear:'Tøm'},toolbarCollapse:'Skjul verktøylinje',toolbarExpand:'Vis verktøylinje',toolbarGroups:{document:'Dokument',clipboard:'Utklippstavle/Angre',editing:'Redigering',forms:'Skjema',basicstyles:'Basisstiler',paragraph:'Avsnitt',links:'Lenker',insert:'Innsetting',styles:'Stiler',colors:'Farger',tools:'Verktøy'},bidi:{ltr:'Tekstretning fra venstre til høyre',rtl:'Tekstretning fra høyre til venstre'},docprops:{label:'Dokumentegenskaper',title:'Dokumentegenskaper',design:'Design',meta:'Meta-data',chooseColor:'Velg',other:'<annen>',docTitle:'Sidetittel',charset:'Tegnsett',charsetOther:'Annet tegnsett',charsetASCII:'ASCII',charsetCE:'Sentraleuropeisk',charsetCT:'Tradisonell kinesisk(Big5)',charsetCR:'Kyrillisk',charsetGR:'Gresk',charsetJP:'Japansk',charsetKR:'Koreansk',charsetTR:'Tyrkisk',charsetUN:'Unicode (UTF-8)',charsetWE:'Vesteuropeisk',docType:'Dokumenttype header',docTypeOther:'Annet dokumenttype header',xhtmlDec:'Inkluder XHTML-deklarasjon',bgColor:'Bakgrunnsfarge',bgImage:'URL for bakgrunnsbilde',bgFixed:'Lås bakgrunnsbilde',txtColor:'Tekstfarge',margin:'Sidemargin',marginTop:'Topp',marginLeft:'Venstre',marginRight:'Høyre',marginBottom:'Bunn',metaKeywords:'Dokument nøkkelord (kommaseparert)',metaDescription:'Dokumentbeskrivelse',metaAuthor:'Forfatter',metaCopyright:'Kopirett',previewHtml:'<p>Dette er en <strong>eksempeltekst</strong>. Du bruker <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/hr.js��������������������������������������������0000664�0001750�0001750�00000043121�12262650742�021745� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.hr={dir:'ltr',editorTitle:'Bogati uređivač teksta, %1',editorHelp:'Pritisni ALT 0 za pomoć',toolbars:'Alatne trake uređivača teksta',editor:'Bogati uređivač teksta',source:'Kôd',newPage:'Nova stranica',save:'Snimi',preview:'Pregledaj',cut:'Izreži',copy:'Kopiraj',paste:'Zalijepi',print:'Ispiši',underline:'Potcrtano',bold:'Podebljaj',italic:'Ukosi',selectAll:'Odaberi sve',removeFormat:'Ukloni formatiranje',strike:'Precrtano',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Ubaci vodoravnu liniju',pagebreak:'Ubaci prijelom stranice',pagebreakAlt:'Prijelom stranice',unlink:'Ukloni link',undo:'Poništi',redo:'Ponovi',common:{browseServer:'Pretraži server',url:'URL',protocol:'Protokol',upload:'Pošalji',uploadSubmit:'Pošalji na server',image:'Slika',flash:'Flash',form:'Form',checkbox:'Checkbox',radio:'Radio Button',textField:'Text Field',textarea:'Textarea',hiddenField:'Hidden Field',button:'Button',select:'Selection Field',imageButton:'Image Button',notSet:'<nije postavljeno>',id:'Id',name:'Naziv',langDir:'Smjer jezika',langDirLtr:'S lijeva na desno (LTR)',langDirRtl:'S desna na lijevo (RTL)',langCode:'Kôd jezika',longDescr:'Dugački opis URL',cssClass:'Stylesheet klase',advisoryTitle:'Advisory naslov',cssStyle:'Stil',ok:'OK',cancel:'Poništi',close:'Zatvori',preview:'Pregledaj',generalTab:'Općenito',advancedTab:'Napredno',validateNumberFailed:'Ova vrijednost nije broj.',confirmNewPage:'Sve napravljene promjene će biti izgubljene ukoliko ih niste snimili. Sigurno želite učitati novu stranicu?',confirmCancel:'Neke od opcija su promjenjene. Sigurno želite zatvoriti ovaj prozor?',options:'Opcije',target:'Odredište',targetNew:'Novi prozor (_blank)',targetTop:'Vršni prozor (_top)',targetSelf:'Isti prozor (_self)',targetParent:'Roditeljski prozor (_parent)',langDirLTR:'S lijeva na desno (LTR)',langDirRTL:'S desna na lijevo (RTL)',styles:'Stil',cssClasses:'Klase stilova',width:'Širina',height:'Visina',align:'Poravnaj',alignLeft:'Lijevo',alignRight:'Desno',alignCenter:'Središnje',alignTop:'Vrh',alignMiddle:'Sredina',alignBottom:'Dolje',invalidValue:'Invalid value.',invalidHeight:'Visina mora biti broj.',invalidWidth:'Širina mora biti broj.',invalidCssLength:'Vrijednost određena za "%1" polje mora biti pozitivni broj sa ili bez važećih CSS mjernih jedinica (px, %, in, cm, mm, em, ex, pt ili pc).',invalidHtmlLength:'Vrijednost određena za "%1" polje mora biti pozitivni broj sa ili bez važećih HTML mjernih jedinica (px ili %).',invalidInlineStyle:'Vrijednost za linijski stil mora sadržavati jednu ili više definicija s formatom "naziv:vrijednost", odvojenih točka-zarezom.',cssLengthTooltip:'Unesite broj za vrijednost u pikselima ili broj s važećim CSS mjernim jedinicama (px, %, in, cm, mm, em, ex, pt ili pc).',unavailable:'%1<span class="cke_accessibility">, nedostupno</span>'},contextmenu:{options:'Opcije izbornika'},specialChar:{toolbar:'Ubaci posebne znakove',title:'Odaberite posebni karakter',options:'Opcije specijalnih znakova'},link:{toolbar:'Ubaci/promijeni link',other:'<drugi>',menu:'Promijeni link',title:'Link',info:'Link Info',target:'Meta',upload:'Pošalji',advanced:'Napredno',type:'Link vrsta',toUrl:'URL',toAnchor:'Sidro na ovoj stranici',toEmail:'E-Mail',targetFrame:'<okvir>',targetPopup:'<popup prozor>',targetFrameName:'Ime ciljnog okvira',targetPopupName:'Naziv popup prozora',popupFeatures:'Mogućnosti popup prozora',popupResizable:'Promjenjiva veličina',popupStatusBar:'Statusna traka',popupLocationBar:'Traka za lokaciju',popupToolbar:'Traka s alatima',popupMenuBar:'Izborna traka',popupFullScreen:'Cijeli ekran (IE)',popupScrollBars:'Scroll traka',popupDependent:'Ovisno (Netscape)',popupLeft:'Lijeva pozicija',popupTop:'Gornja pozicija',id:'Id',langDir:'Smjer jezika',langDirLTR:'S lijeva na desno (LTR)',langDirRTL:'S desna na lijevo (RTL)',acccessKey:'Pristupna tipka',name:'Naziv',langCode:'Smjer jezika',tabIndex:'Tab Indeks',advisoryTitle:'Advisory naslov',advisoryContentType:'Advisory vrsta sadržaja',cssClasses:'Stylesheet klase',charset:'Kodna stranica povezanih resursa',styles:'Stil',rel:'Veza',selectAnchor:'Odaberi sidro',anchorName:'Po nazivu sidra',anchorId:'Po Id elementa',emailAddress:'E-Mail adresa',emailSubject:'Naslov',emailBody:'Sadržaj poruke',noAnchors:'(Nema dostupnih sidra)',noUrl:'Molimo upišite URL link',noEmail:'Molimo upišite e-mail adresu'},anchor:{toolbar:'Ubaci/promijeni sidro',menu:'Svojstva sidra',title:'Svojstva sidra',name:'Ime sidra',errorName:'Molimo unesite ime sidra',remove:'Ukloni sidro'},list:{numberedTitle:'Svojstva brojčane liste',bulletedTitle:'Svojstva liste',type:'Vrsta',start:'Početak',validateStartNumber:'Početak brojčane liste mora biti cijeli broj.',circle:'Krug',disc:'Disk',square:'Kvadrat',none:'Bez',notset:'<nije određen>',armenian:'Armenijska numeracija',georgian:'Gruzijska numeracija(an, ban, gan, etc.)',lowerRoman:'Romanska numeracija mala slova (i, ii, iii, iv, v, itd.)',upperRoman:'Romanska numeracija velika slova (I, II, III, IV, V, itd.)',lowerAlpha:'Znakovi mala slova (a, b, c, d, e, itd.)',upperAlpha:'Znakovi velika slova (A, B, C, D, E, itd.)',lowerGreek:'Grčka numeracija mala slova (alfa, beta, gama, itd).',decimal:'Decimalna numeracija (1, 2, 3, itd.)',decimalLeadingZero:'Decimalna s vodećom nulom (01, 02, 03, itd)'},findAndReplace:{title:'Pronađi i zamijeni',find:'Pronađi',replace:'Zamijeni',findWhat:'Pronađi:',replaceWith:'Zamijeni s:',notFoundMsg:'Traženi tekst nije pronađen.',findOptions:'Opcije traženja',matchCase:'Usporedi mala/velika slova',matchWord:'Usporedi cijele riječi',matchCyclic:'Usporedi kružno',replaceAll:'Zamijeni sve',replaceSuccessMsg:'Zamijenjeno %1 pojmova.'},table:{toolbar:'Tablica',title:'Svojstva tablice',menu:'Svojstva tablice',deleteTable:'Izbriši tablicu',rows:'Redova',columns:'Kolona',border:'Veličina okvira',widthPx:'piksela',widthPc:'postotaka',widthUnit:'jedinica širine',cellSpace:'Prostornost ćelija',cellPad:'Razmak ćelija',caption:'Naslov',summary:'Sažetak',headers:'Zaglavlje',headersNone:'Ništa',headersColumn:'Prva kolona',headersRow:'Prvi red',headersBoth:'Oba',invalidRows:'Broj redova mora biti broj veći od 0.',invalidCols:'Broj kolona mora biti broj veći od 0.',invalidBorder:'Debljina ruba mora biti broj.',invalidWidth:'Širina tablice mora biti broj.',invalidHeight:'Visina tablice mora biti broj.',invalidCellSpacing:'Prostornost ćelija mora biti broj.',invalidCellPadding:'Razmak ćelija mora biti broj.',cell:{menu:'Ćelija',insertBefore:'Ubaci ćeliju prije',insertAfter:'Ubaci ćeliju poslije',deleteCell:'Izbriši ćelije',merge:'Spoji ćelije',mergeRight:'Spoji desno',mergeDown:'Spoji dolje',splitHorizontal:'Podijeli ćeliju vodoravno',splitVertical:'Podijeli ćeliju okomito',title:'Svojstva ćelije',cellType:'Vrsta ćelije',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Prelazak u novi red',hAlign:'Vodoravno poravnanje',vAlign:'Okomito poravnanje',alignBaseline:'Osnovna linija',bgColor:'Boja pozadine',borderColor:'Boja ruba',data:'Podatak',header:'Zaglavlje',yes:'Da',no:'ne',invalidWidth:'Širina ćelije mora biti broj.',invalidHeight:'Visina ćelije mora biti broj.',invalidRowSpan:'Rows span mora biti cijeli broj.',invalidColSpan:'Columns span mora biti cijeli broj.',chooseColor:'Odaberi'},row:{menu:'Red',insertBefore:'Ubaci red prije',insertAfter:'Ubaci red poslije',deleteRow:'Izbriši redove'},column:{menu:'Kolona',insertBefore:'Ubaci kolonu prije',insertAfter:'Ubaci kolonu poslije',deleteColumn:'Izbriši kolone'}},button:{title:'Image Button svojstva',text:'Tekst (vrijednost)',type:'Vrsta',typeBtn:'Gumb',typeSbm:'Pošalji',typeRst:'Poništi'},checkboxAndRadio:{checkboxTitle:'Checkbox svojstva',radioTitle:'Radio Button svojstva',value:'Vrijednost',selected:'Odabrano'},form:{title:'Form svojstva',menu:'Form svojstva',action:'Akcija',method:'Metoda',encoding:'Encoding'},select:{title:'Selection svojstva',selectInfo:'Info',opAvail:'Dostupne opcije',value:'Vrijednost',size:'Veličina',lines:'linija',chkMulti:'Dozvoli višestruki odabir',opText:'Tekst',opValue:'Vrijednost',btnAdd:'Dodaj',btnModify:'Promijeni',btnUp:'Gore',btnDown:'Dolje',btnSetValue:'Postavi kao odabranu vrijednost',btnDelete:'Obriši'},textarea:{title:'Textarea svojstva',cols:'Kolona',rows:'Redova'},textfield:{title:'Text Field svojstva',name:'Ime',value:'Vrijednost',charWidth:'Širina',maxChars:'Najviše karaktera',type:'Vrsta',typeText:'Tekst',typePass:'Šifra'},hidden:{title:'Hidden Field svojstva',name:'Ime',value:'Vrijednost'},image:{title:'Svojstva slika',titleButton:'Image Button svojstva',menu:'Svojstva slika',infoTab:'Info slike',btnUpload:'Pošalji na server',upload:'Pošalji',alt:'Alternativni tekst',lockRatio:'Zaključaj odnos',resetSize:'Obriši veličinu',border:'Okvir',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Unesite URL slike',linkTab:'Link',button2Img:'Želite li promijeniti odabrani gumb u jednostavnu sliku?',img2Button:'Želite li promijeniti odabranu sliku u gumb?',urlMissing:'Nedostaje URL slike.',validateBorder:'Okvir mora biti cijeli broj.',validateHSpace:'HSpace mora biti cijeli broj',validateVSpace:'VSpace mora biti cijeli broj.'},flash:{properties:'Flash svojstva',propertiesTab:'Svojstva',title:'Flash svojstva',chkPlay:'Auto Play',chkLoop:'Ponavljaj',chkMenu:'Omogući Flash izbornik',chkFull:'Omogući Fullscreen',scale:'Omjer',scaleAll:'Prikaži sve',scaleNoBorder:'Bez okvira',scaleFit:'Točna veličina',access:'Script Access',accessAlways:'Uvijek',accessSameDomain:'Ista domena',accessNever:'Nikad',alignAbsBottom:'Abs dolje',alignAbsMiddle:'Abs sredina',alignBaseline:'Bazno',alignTextTop:'Vrh teksta',quality:'Kvaliteta',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Vrsta prozora',flashvars:'Varijable za Flash',bgcolor:'Boja pozadine',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'Molimo upišite URL link',validateHSpace:'HSpace mora biti broj.',validateVSpace:'VSpace mora biti broj.'},spellCheck:{toolbar:'Provjeri pravopis',title:'Provjera pravopisa',notAvailable:'Žao nam je, ali usluga trenutno nije dostupna.',errorLoading:'Greška učitavanja aplikacije: %s.',notInDic:'Nije u rječniku',changeTo:'Promijeni u',btnIgnore:'Zanemari',btnIgnoreAll:'Zanemari sve',btnReplace:'Zamijeni',btnReplaceAll:'Zamijeni sve',btnUndo:'Vrati',noSuggestions:'-Nema preporuke-',progress:'Provjera u tijeku...',noMispell:'Provjera završena: Nema grešaka',noChanges:'Provjera završena: Nije napravljena promjena',oneChange:'Provjera završena: Jedna riječ promjenjena',manyChanges:'Provjera završena: Promijenjeno %1 riječi',ieSpellDownload:'Provjera pravopisa nije instalirana. Želite li skinuti provjeru pravopisa?'},smiley:{toolbar:'Smješko',title:'Ubaci smješka',options:'Opcije smješka'},elementsPath:{eleLabel:'Putanja elemenata',eleTitle:'%1 element'},numberedlist:'Brojčana lista',bulletedlist:'Obična lista',indent:'Pomakni udesno',outdent:'Pomakni ulijevo',justify:{left:'Lijevo poravnanje',center:'Središnje poravnanje',right:'Desno poravnanje',block:'Blok poravnanje'},blockquote:'Blockquote',clipboard:{title:'Zalijepi',cutError:'Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog izrezivanja. Molimo koristite kraticu na tipkovnici (Ctrl/Cmd+X).',copyError:'Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tipkovnici (Ctrl/Cmd+C).',pasteMsg:'Molimo zaljepite unutar doljnjeg okvira koristeći tipkovnicu (<STRONG>Ctrl/Cmd+V</STRONG>) i kliknite <STRONG>OK</STRONG>.',securityMsg:'Zbog sigurnosnih postavki Vašeg pretraživača, editor nema direktan pristup Vašem međuspremniku. Potrebno je ponovno zalijepiti tekst u ovaj prozor.',pasteArea:'Prostor za ljepljenje'},pastefromword:{confirmCleanup:'Tekst koji želite zalijepiti čini se da je kopiran iz Worda. Želite li prije očistiti tekst?',toolbar:'Zalijepi iz Worda',title:'Zalijepi iz Worda',error:'Nije moguće očistiti podatke za ljepljenje zbog interne greške'},pasteText:{button:'Zalijepi kao čisti tekst',title:'Zalijepi kao čisti tekst'},templates:{button:'Predlošci',title:'Predlošci sadržaja',options:'Opcije predložaka',insertOption:'Zamijeni trenutne sadržaje',selectPromptMsg:'Molimo odaberite predložak koji želite otvoriti<br>(stvarni sadržaj će biti izgubljen):',emptyListMsg:'(Nema definiranih predložaka)'},showBlocks:'Prikaži blokove',stylesCombo:{label:'Stil',panelTitle:'Stilovi formatiranja',panelTitle1:'Block stilovi',panelTitle2:'Inline stilovi',panelTitle3:'Object stilovi'},format:{label:'Format',panelTitle:'Format',tag_p:'Normal',tag_pre:'Formatirano',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Napravi DIV kontejner',toolbar:'Napravi DIV kontejner',cssClassInputLabel:'Klase stilova',styleSelectLabel:'Stil',IdInputLabel:'Id',languageCodeInputLabel:'Jezični kod',inlineStyleInputLabel:'Stil u liniji',advisoryTitleInputLabel:'Savjetodavni naslov',langDirLabel:'Smjer jezika',langDirLTRLabel:'S lijeva na desno (LTR)',langDirRTLLabel:'S desna na lijevo (RTL)',edit:'Uredi DIV',remove:'Ukloni DIV'},iframe:{title:'IFrame svojstva',toolbar:'IFrame',noUrl:'Unesite URL iframe-a',scrolling:'Omogući trake za skrolanje',border:'Prikaži okvir IFrame-a'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font'},fontSize:{label:'Veličina',voiceLabel:'Veličina slova',panelTitle:'Veličina'},colorButton:{textColorTitle:'Boja teksta',bgColorTitle:'Boja pozadine',panelTitle:'Boje',auto:'Automatski',more:'Više boja...'},colors:{'000':'Crna',800000:'Kesten','8B4513':'Smeđa','2F4F4F':'Tamno siva','008080':'Teal','000080':'Mornarska','4B0082':'Indigo',696969:'Tamno siva',B22222:'Vatrena cigla',A52A2A:'Smeđa',DAA520:'Zlatna','006400':'Tamno zelena','40E0D0':'Tirkizna','0000CD':'Srednje plava',800080:'Ljubičasta',808080:'Siva',F00:'Crvena',FF8C00:'Tamno naranđasta',FFD700:'Zlatna','008000':'Zelena','0FF':'Cijan','00F':'Plava',EE82EE:'Ljubičasta',A9A9A9:'Mutno siva',FFA07A:'Svijetli losos',FFA500:'Naranđasto',FFFF00:'Žuto','00FF00':'Limun',AFEEEE:'Blijedo tirkizna',ADD8E6:'Svijetlo plava',DDA0DD:'Šljiva',D3D3D3:'Svijetlo siva',FFF0F5:'Lavanda rumeno',FAEBD7:'Antikno bijela',FFFFE0:'Svijetlo žuta',F0FFF0:'Med',F0FFFF:'Azurna',F0F8FF:'Alice plava',E6E6FA:'Lavanda',FFF:'Bijela'},scayt:{title:'Provjeri pravopis tijekom tipkanja (SCAYT)',opera_title:'Nije podržano u Operi',enable:'Omogući SCAYT',disable:'Onemogući SCAYT',about:'O SCAYT',toggle:'Omoguću/Onemogući SCAYT',options:'Opcije',langs:'Jezici',moreSuggestions:'Više prijedloga',ignore:'Zanemari',ignoreAll:'Zanemari sve',addWord:'Dodaj riječ',emptyDic:'Naziv rječnika ne smije biti prazno.',noSuggestions:'Nema preporuke',optionsTab:'Opcije',allCaps:'Ignoriraj riječi s velikim slovima',ignoreDomainNames:'Ignoriraj nazive domena',mixedCase:'Ignoriraj riječi s miješanim slovima',mixedWithDigits:'Ignoriraj riječi s brojevima',languagesTab:'Jezici',dictionariesTab:'Rječnici',dic_field_name:'Naziv riječnika',dic_create:'Napravi',dic_restore:'Povrati',dic_delete:'Obriši',dic_rename:'Promijeni naziv',dic_info:'Na početku se korisnički Riječnik sprema u Cookie. Nažalost, veličina im je ograničena. Kada korisnički Riječnik naraste preko te veličine, Riječnik će biti smješten na naš server. Kako bi se korisnički Riječnik spremio na naš server morate odabrati naziv Vašeg Riječnika. Ukoliko ste već prije spremali Riječnik na naše servere, unesite naziv Riječnika i pritisnite na Povrati.',aboutTab:'O SCAYT'},about:{title:'O CKEditoru',dlgTitle:'O CKEditoru',help:'Provjeri $1 za pomoć.',userGuide:'Vodič za CKEditor korisnike',moreInfo:'Za informacije o licencama posjetite našu web stranicu:',copy:'Copyright © $1. All rights reserved.'},maximize:'Povećaj',minimize:'Smanji',fakeobjects:{anchor:'Sidro',flash:'Flash animacija',iframe:'IFrame',hiddenfield:'Sakriveno polje',unknown:'Nepoznati objekt'},resize:'Povuci za promjenu veličine',colordialog:{title:'Odaberi boju',options:'Opcije boje',highlight:'Istaknuto',selected:'Odabrana boja',clear:'Očisti'},toolbarCollapse:'Smanji alatnu traku',toolbarExpand:'Proširi alatnu traku',toolbarGroups:{document:'Dokument',clipboard:'Međuspremnik/Poništi',editing:'Uređivanje',forms:'Forme',basicstyles:'Osnovni stilovi',paragraph:'Paragraf',links:'Veze',insert:'Umetni',styles:'Stilovi',colors:'Boje',tools:'Alatke'},bidi:{ltr:'Smjer teksta s lijeva na desno',rtl:'Smjer teksta s desna na lijevo'},docprops:{label:'Svojstva dokumenta',title:'Svojstva dokumenta',design:'Dizajn',meta:'Meta Data',chooseColor:'Odaberi',other:'<drugi>',docTitle:'Naslov stranice',charset:'Enkodiranje znakova',charsetOther:'Ostalo enkodiranje znakova',charsetASCII:'ASCII',charsetCE:'Središnja Europa',charsetCT:'Tradicionalna kineska (Big5)',charsetCR:'Ćirilica',charsetGR:'Grčka',charsetJP:'Japanska',charsetKR:'Koreanska',charsetTR:'Turska',charsetUN:'Unicode (UTF-8)',charsetWE:'Zapadna Europa',docType:'Zaglavlje vrste dokumenta',docTypeOther:'Ostalo zaglavlje vrste dokumenta',xhtmlDec:'Ubaci XHTML deklaracije',bgColor:'Boja pozadine',bgImage:'URL slike pozadine',bgFixed:'Pozadine se ne pomiče',txtColor:'Boja teksta',margin:'Margine stranice',marginTop:'Vrh',marginLeft:'Lijevo',marginRight:'Desno',marginBottom:'Dolje',metaKeywords:'Ključne riječi dokumenta (odvojene zarezom)',metaDescription:'Opis dokumenta',metaAuthor:'Autor',metaCopyright:'Autorska prava',previewHtml:'<p>Ovo je neki <strong>primjer teksta</strong>. Vi koristite <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/uk.js��������������������������������������������0000664�0001750�0001750�00000067104�12262650742�021762� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.uk={dir:'ltr',editorTitle:'Текстовий редактор, %1',editorHelp:'натисніть ALT 0 для довідки',toolbars:'Панель інструментів редактора',editor:'Текстовий редактор',source:'Джерело',newPage:'Нова сторінка',save:'Зберегти',preview:'Попередній перегляд',cut:'Вирізати',copy:'Копіювати',paste:'Вставити',print:'Друк',underline:'Підкреслений',bold:'Жирний',italic:'Курсив',selectAll:'Виділити все',removeFormat:'Очистити форматування',strike:'Закреслений',subscript:'Нижній індекс',superscript:'Верхній індекс',horizontalrule:'Горизонтальна лінія',pagebreak:'Вставити розрив сторінки',pagebreakAlt:'Розрив Сторінки',unlink:'Видалити посилання',undo:'Повернути',redo:'Повторити',common:{browseServer:'Огляд',url:'URL',protocol:'Протокол',upload:'Надіслати',uploadSubmit:'Надіслати на сервер',image:'Зображення',flash:'Flash',form:'Форма',checkbox:'Галочка',radio:'Кнопка вибору',textField:'Текстове поле',textarea:'Текстова область',hiddenField:'Приховане поле',button:'Кнопка',select:'Список',imageButton:'Кнопка із зображенням',notSet:'<не визначено>',id:'Ідентифікатор',name:"Ім'я",langDir:'Напрямок мови',langDirLtr:'Зліва направо (LTR)',langDirRtl:'Справа наліво (RTL)',langCode:'Код мови',longDescr:'Довгий опис URL',cssClass:'Клас CSS',advisoryTitle:'Заголовок',cssStyle:'Стиль CSS',ok:'ОК',cancel:'Скасувати',close:'Закрити',preview:'Попередній перегляд',generalTab:'Основне',advancedTab:'Додаткове',validateNumberFailed:'Значення не є цілим числом.',confirmNewPage:'Всі незбережені зміни будуть втрачені. Ви впевнені, що хочете завантажити нову сторінку?',confirmCancel:'Деякі опції змінено. Закрити вікно без збереження змін?',options:'Опції',target:'Ціль',targetNew:'Нове вікно (_blank)',targetTop:'Поточне вікно (_top)',targetSelf:'Поточний фрейм/вікно (_self)',targetParent:'Батьківський фрейм/вікно (_parent)',langDirLTR:'Зліва направо (LTR)',langDirRTL:'Справа наліво (RTL)',styles:'Стиль CSS',cssClasses:'Клас CSS',width:'Ширина',height:'Висота',align:'Вирівнювання',alignLeft:'По лівому краю',alignRight:'По правому краю',alignCenter:'По центру',alignTop:'По верхньому краю',alignMiddle:'По середині',alignBottom:'По нижньому краю',invalidValue:'Invalid value.',invalidHeight:'Висота повинна бути цілим числом.',invalidWidth:'Ширина повинна бути цілим числом.',invalidCssLength:'Значення, вказане для "%1" в полі повинно бути позитивним числом або без дійсного виміру CSS блоку (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Значення, вказане для "%1" в полі повинно бути позитивним числом або без дійсного виміру HTML блоку (px or %).',invalidInlineStyle:'Значення, вказане для вбудованого стилю повинне складатися з одного чи кількох кортежів у форматі "ім\'я : значення", розділених крапкою з комою.',cssLengthTooltip:'Введіть номер значення в пікселях або число з дійсною одиниці CSS (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, не доступне</span>'},contextmenu:{options:'Опції контекстного меню'},specialChar:{toolbar:'Спеціальний символ',title:'Оберіть спеціальний символ',options:'Опції'},link:{toolbar:'Вставити/Редагувати посилання',other:'<інший>',menu:'Вставити посилання',title:'Посилання',info:'Інформація посилання',target:'Ціль',upload:'Надіслати',advanced:'Додаткове',type:'Тип посилання',toUrl:'URL',toAnchor:'Якір на цю сторінку',toEmail:'Ел. пошта',targetFrame:'<фрейм>',targetPopup:'<випливаюче вікно>',targetFrameName:"Ім'я цільового фрейму",targetPopupName:"Ім'я випливаючого вікна",popupFeatures:'Властивості випливаючого вікна',popupResizable:'Масштабоване',popupStatusBar:'Рядок статусу',popupLocationBar:'Панель локації',popupToolbar:'Панель інструментів',popupMenuBar:'Панель меню',popupFullScreen:'Повний екран (IE)',popupScrollBars:'Стрічки прокрутки',popupDependent:'Залежний (Netscape)',popupLeft:'Позиція зліва',popupTop:'Позиція зверху',id:'Ідентифікатор',langDir:'Напрямок мови',langDirLTR:'Зліва направо (LTR)',langDirRTL:'Справа наліво (RTL)',acccessKey:'Гаряча клавіша',name:"Ім'я",langCode:'Код мови',tabIndex:'Послідовність переходу',advisoryTitle:'Заголовок',advisoryContentType:'Тип вмісту',cssClasses:'Клас CSS',charset:'Кодування',styles:'Стиль CSS',rel:"Зв'язок",selectAnchor:'Оберіть якір',anchorName:"За ім'ям елементу",anchorId:'За ідентифікатором елементу',emailAddress:'Адреса ел. пошти',emailSubject:'Тема листа',emailBody:'Тіло повідомлення',noAnchors:'(В цьому документі немає якорів)',noUrl:'Будь ласка, вкажіть URL посилання',noEmail:'Будь ласка, вкажіть адрес ел. пошти'},anchor:{toolbar:'Вставити/Редагувати якір',menu:'Властивості якоря',title:'Властивості якоря',name:"Ім'я якоря",errorName:"Будь ласка, вкажіть ім'я якоря",remove:'Прибрати якір'},list:{numberedTitle:'Опції нумерованого списку',bulletedTitle:'Опції маркованого списку',type:'Тип',start:'Почати з...',validateStartNumber:'Початковий номер списку повинен бути цілим числом.',circle:'Кільце',disc:'Кружечок',square:'Квадратик',none:'Нема',notset:'<не вказано>',armenian:'Вірменська нумерація',georgian:'Грузинська нумерація (an, ban, gan і т.д.)',lowerRoman:'Малі римські (i, ii, iii, iv, v і т.д.)',upperRoman:'Великі римські (I, II, III, IV, V і т.д.)',lowerAlpha:'Малі лат. букви (a, b, c, d, e і т.д.)',upperAlpha:'Великі лат. букви (A, B, C, D, E і т.д.)',lowerGreek:'Малі гр. букви (альфа, бета, гамма і т.д.)',decimal:'Десяткові (1, 2, 3 і т.д.)',decimalLeadingZero:'Десяткові з нулем (01, 02, 03 і т.д.)'},findAndReplace:{title:'Знайти і замінити',find:'Пошук',replace:'Заміна',findWhat:'Шукати:',replaceWith:'Замінити на:',notFoundMsg:'Вказаний текст не знайдено.',findOptions:'Параметри Пошуку',matchCase:'Враховувати регістр',matchWord:'Збіг цілих слів',matchCyclic:'Циклічна заміна',replaceAll:'Замінити все',replaceSuccessMsg:'%1 співпадінь(ня) замінено.'},table:{toolbar:'Таблиця',title:'Властивості таблиці',menu:'Властивості таблиці',deleteTable:'Видалити таблицю',rows:'Рядки',columns:'Стовбці',border:'Розмір рамки',widthPx:'пікселів',widthPc:'відсотків',widthUnit:'Одиниці вимір.',cellSpace:'Проміжок',cellPad:'Внутр. відступ',caption:'Заголовок таблиці',summary:'Детальний опис заголовку таблиці',headers:'Заголовки стовбців/рядків',headersNone:'Без заголовків',headersColumn:'Стовбці',headersRow:'Рядки',headersBoth:'Стовбці і рядки',invalidRows:'Кількість рядків повинна бути більшою 0.',invalidCols:'Кількість стовбців повинна бути більшою 0.',invalidBorder:'Розмір рамки повинен бути цілим числом.',invalidWidth:'Ширина таблиці повинна бути цілим числом.',invalidHeight:'Висота таблиці повинна бути цілим числом.',invalidCellSpacing:'Проміжок між комірками повинен бути цілим числом.',invalidCellPadding:'Внутр. відступ комірки повинен бути цілим числом.',cell:{menu:'Комірки',insertBefore:'Вставити комірку перед',insertAfter:'Вставити комірку після',deleteCell:'Видалити комірки',merge:"Об'єднати комірки",mergeRight:"Об'єднати справа",mergeDown:"Об'єднати донизу",splitHorizontal:'Розділити комірку по горизонталі',splitVertical:'Розділити комірку по вертикалі',title:'Властивості комірки',cellType:'Тип комірки',rowSpan:"Об'єднання рядків",colSpan:"Об'єднання стовпців",wordWrap:'Автоперенесення тексту',hAlign:'Гориз. вирівнювання',vAlign:'Верт. вирівнювання',alignBaseline:'По базовій лінії',bgColor:'Колір фону',borderColor:'Колір рамки',data:'Дані',header:'Заголовок',yes:'Так',no:'Ні',invalidWidth:'Ширина комірки повинна бути цілим числом.',invalidHeight:'Висота комірки повинна бути цілим числом.',invalidRowSpan:"Кількість об'єднуваних рядків повинна бути цілим числом.",invalidColSpan:"Кількість об'єднуваних стовбців повинна бути цілим числом.",chooseColor:'Обрати'},row:{menu:'Рядки',insertBefore:'Вставити рядок перед',insertAfter:'Вставити рядок після',deleteRow:'Видалити рядки'},column:{menu:'Стовбці',insertBefore:'Вставити стовбець перед',insertAfter:'Вставити стовбець після',deleteColumn:'Видалити стовбці'}},button:{title:'Властивості кнопки',text:'Значення',type:'Тип',typeBtn:'Кнопка (button)',typeSbm:'Надіслати (submit)',typeRst:'Очистити (reset)'},checkboxAndRadio:{checkboxTitle:'Властивості галочки',radioTitle:'Властивості кнопки вибору',value:'Значення',selected:'Обрана'},form:{title:'Властивості форми',menu:'Властивості форми',action:'Дія',method:'Метод',encoding:'Кодування'},select:{title:'Властивості списку',selectInfo:'Інфо',opAvail:'Доступні варіанти',value:'Значення',size:'Кількість',lines:'видимих позицій у списку',chkMulti:'Список з мультивибором',opText:'Текст',opValue:'Значення',btnAdd:'Добавити',btnModify:'Змінити',btnUp:'Вгору',btnDown:'Вниз',btnSetValue:'Встановити як обране значення',btnDelete:'Видалити'},textarea:{title:'Властивості текстової області',cols:'Стовбці',rows:'Рядки'},textfield:{title:'Властивості текстового поля',name:"Ім'я",value:'Значення',charWidth:'Ширина',maxChars:'Макс. к-ть символів',type:'Тип',typeText:'Текст',typePass:'Пароль'},hidden:{title:'Властивості прихованого поля',name:"Ім'я",value:'Значення'},image:{title:'Властивості зображення',titleButton:'Властивості кнопки із зображенням',menu:'Властивості зображення',infoTab:'Інформація про зображення',btnUpload:'Надіслати на сервер',upload:'Надіслати',alt:'Альтернативний текст',lockRatio:'Зберегти пропорції',resetSize:'Очистити поля розмірів',border:'Рамка',hSpace:'Гориз. відступ',vSpace:'Верт. відступ',alertUrl:'Будь ласка, вкажіть URL зображення',linkTab:'Посилання',button2Img:'Бажаєте перетворити обрану кнопку-зображення на просте зображення?',img2Button:'Бажаєте перетворити обране зображення на кнопку-зображення?',urlMissing:'Вкажіть URL зображення.',validateBorder:'Ширина рамки повинна бути цілим числом.',validateHSpace:'Гориз. відступ повинен бути цілим числом.',validateVSpace:'Верт. відступ повинен бути цілим числом.'},flash:{properties:'Властивості Flash',propertiesTab:'Властивості',title:'Властивості Flash',chkPlay:'Автопрогравання',chkLoop:'Циклічно',chkMenu:'Дозволити меню Flash',chkFull:'Дозволити повноекранний перегляд',scale:'Масштаб',scaleAll:'Показати все',scaleNoBorder:'Без рамки',scaleFit:'Поч. розмір',access:'Доступ до скрипта',accessAlways:'Завжди',accessSameDomain:'З того ж домена',accessNever:'Ніколи',alignAbsBottom:'По нижньому краю (abs)',alignAbsMiddle:'По середині (abs)',alignBaseline:'По базовій лінії',alignTextTop:'Текст по верхньому краю',quality:'Якість',qualityBest:'Відмінна',qualityHigh:'Висока',qualityAutoHigh:'Автом. відмінна',qualityMedium:'Середня',qualityAutoLow:'Автом. низька',qualityLow:'Низька',windowModeWindow:'Вікно',windowModeOpaque:'Непрозорість',windowModeTransparent:'Прозорість',windowMode:'Віконний режим',flashvars:'Змінні Flash',bgcolor:'Колір фону',hSpace:'Гориз. відступ',vSpace:'Верт. відступ',validateSrc:'Будь ласка, вкажіть URL посилання',validateHSpace:'Гориз. відступ повинен бути цілим числом.',validateVSpace:'Верт. відступ повинен бути цілим числом.'},spellCheck:{toolbar:'Перевірити орфографію',title:'Перевірка орфографії',notAvailable:'Вибачте, але сервіс наразі недоступний.',errorLoading:'Помилка завантаження : %s.',notInDic:'Немає в словнику',changeTo:'Замінити на',btnIgnore:'Пропустити',btnIgnoreAll:'Пропустити все',btnReplace:'Замінити',btnReplaceAll:'Замінити все',btnUndo:'Назад',noSuggestions:'- немає варіантів -',progress:'Виконується перевірка орфографії...',noMispell:'Перевірку орфографії завершено: помилок не знайдено',noChanges:'Перевірку орфографії завершено: жодне слово не змінено',oneChange:'Перевірку орфографії завершено: змінено одне слово',manyChanges:'Перевірку орфографії завершено: 1% слів(ова) змінено',ieSpellDownload:'Модуль перевірки орфографії не встановлено. Бажаєте завантажити його зараз?'},smiley:{toolbar:'Смайлик',title:'Вставити смайлик',options:'Опції смайликів'},elementsPath:{eleLabel:'Шлях',eleTitle:'%1 елемент'},numberedlist:'Нумерований список',bulletedlist:'Маркірований список',indent:'Збільшити відступ',outdent:'Зменшити відступ',justify:{left:'По лівому краю',center:'По центру',right:'По правому краю',block:'По ширині'},blockquote:'Цитата',clipboard:{title:'Вставити',cutError:'Налаштування безпеки Вашого браузера не дозволяють редактору автоматично виконувати операції вирізування. Будь ласка, використовуйте клавіатуру для цього (Ctrl/Cmd+X)',copyError:'Налаштування безпеки Вашого браузера не дозволяють редактору автоматично виконувати операції копіювання. Будь ласка, використовуйте клавіатуру для цього (Ctrl/Cmd+C).',pasteMsg:'Будь ласка, вставте інформацію з буфера обміну в цю область, користуючись комбінацією клавіш (<STRONG>Ctrl/Cmd+V</STRONG>), та натисніть <STRONG>OK</STRONG>.',securityMsg:"Редактор не може отримати прямий доступ до буферу обміну у зв'язку з налаштуваннями Вашого браузера. Вам потрібно вставити інформацію в це вікно.",pasteArea:'Область вставки'},pastefromword:{confirmCleanup:'Текст, що Ви намагаєтесь вставити, схожий на скопійований з Word. Бажаєте очистити його форматування перед вставлянням?',toolbar:'Вставити з Word',title:'Вставити з Word',error:'Неможливо очистити форматування через внутрішню помилку.'},pasteText:{button:'Вставити тільки текст',title:'Вставити тільки текст'},templates:{button:'Шаблони',title:'Шаблони змісту',options:'Опції шаблону',insertOption:'Замінити поточний вміст',selectPromptMsg:'Оберіть, будь ласка, шаблон для відкриття в редакторі<br>(поточний зміст буде втрачено):',emptyListMsg:'(Не знайдено жодного шаблону)'},showBlocks:'Показувати блоки',stylesCombo:{label:'Стиль',panelTitle:'Стилі форматування',panelTitle1:'Блочні стилі',panelTitle2:'Рядкові стилі',panelTitle3:"Об'єктні стилі"},format:{label:'Форматування',panelTitle:'Форматування параграфа',tag_p:'Нормальний',tag_pre:'Форматований',tag_address:'Адреса',tag_h1:'Заголовок 1',tag_h2:'Заголовок 2',tag_h3:'Заголовок 3',tag_h4:'Заголовок 4',tag_h5:'Заголовок 5',tag_h6:'Заголовок 6',tag_div:'Нормальний (div)'},div:{title:'Створити блок-контейнер',toolbar:'Створити блок-контейнер',cssClassInputLabel:'Клас CSS',styleSelectLabel:'Стиль CSS',IdInputLabel:'Ідентифікатор',languageCodeInputLabel:'Код мови',inlineStyleInputLabel:'Вписаний стиль',advisoryTitleInputLabel:'Зміст випливаючої підказки',langDirLabel:'Напрямок мови',langDirLTRLabel:'Зліва направо (LTR)',langDirRTLLabel:'Справа наліво (RTL)',edit:'Редагувати блок',remove:'Видалити блок'},iframe:{title:'Налаштування для IFrame',toolbar:'IFrame',noUrl:'Будь ласка введіть посилання для IFrame',scrolling:'Увімкнути прокрутку',border:'Показати рамки фрейму'},font:{label:'Шрифт',voiceLabel:'Шрифт',panelTitle:'Шрифт'},fontSize:{label:'Розмір',voiceLabel:'Розмір шрифту',panelTitle:'Розмір'},colorButton:{textColorTitle:'Колір тексту',bgColorTitle:'Колір фону',panelTitle:'Кольори',auto:'Авто',more:'Кольори...'},colors:{'000':'Чорний',800000:'Бордовий','8B4513':'Коричневий','2F4F4F':'Темний сіро-зелений','008080':'Морської хвилі','000080':'Сливовий','4B0082':'Індиго',696969:'Темносірий',B22222:'Темночервоний',A52A2A:'Каштановий',DAA520:'Бежевий','006400':'Темнозелений','40E0D0':'Бірюзовий','0000CD':'Темносиній',800080:'Пурпурний',808080:'Сірий',F00:'Червоний',FF8C00:'Темнооранжевий',FFD700:'Жовтий','008000':'Зелений','0FF':'Синьо-зелений','00F':'Синій',EE82EE:'Фіолетовий',A9A9A9:'Світлосірий',FFA07A:'Рожевий',FFA500:'Оранжевий',FFFF00:'Яскравожовтий','00FF00':'Салатовий',AFEEEE:'Світлобірюзовий',ADD8E6:'Блакитний',DDA0DD:'Світлофіолетовий',D3D3D3:'Сріблястий',FFF0F5:'Світлорожевий',FAEBD7:'Світлооранжевий',FFFFE0:'Світложовтий',F0FFF0:'Світлозелений',F0FFFF:'Світлий синьо-зелений',F0F8FF:'Світлоблакитний',E6E6FA:'Лавандовий',FFF:'Білий'},scayt:{title:'Перефірка орфографії по мірі набору',opera_title:'Не підтримується в Opera',enable:'Ввімкнути SCAYT',disable:'Вимкнути SCAYT',about:'Про SCAYT',toggle:'Перемкнути SCAYT',options:'Опції',langs:'Мови',moreSuggestions:'Більше варіантів',ignore:'Пропустити',ignoreAll:'Пропустити всі',addWord:'Додати слово',emptyDic:'Назва словника повинна бути вказана.',noSuggestions:'Немає варіантів',optionsTab:'Опції',allCaps:'Пропустити прописні слова',ignoreDomainNames:'Пропустити доменні назви',mixedCase:'Пропустити слова зі змішаним регістром',mixedWithDigits:'Пропустити слова, що містять цифри',languagesTab:'Мови',dictionariesTab:'Словники',dic_field_name:'Назва словника',dic_create:'Створити',dic_restore:'Відновити',dic_delete:'Видалити',dic_rename:'Перейменувати',dic_info:'Як правило, користувацькі словники зберігаються у cookie-файлах. Однак, cookie-файли мають обмеження на розмір. Якщо користувацький словник зростає в обсязі настільки, що вже не може бути збережений у cookie-файлі, тоді його можна зберегти на нашому сервері. Щоб зберегти Ваш персональний словник на нашому сервері необхідно вказати назву словника. Якщо Ви вже зберігали словник на сервері, будь ласка, вкажіть назву збереженого словника і натисніть кнопку Відновити.',aboutTab:'Про SCAYT'},about:{title:'Про CKEditor',dlgTitle:'Про CKEditor',help:'Перевірте $1 для допомоги.',userGuide:'Інструкція Користувача для CKEditor',moreInfo:'Щодо інформації з ліцензування завітайте на наш сайт:',copy:'Copyright © $1. Всі права застережено.'},maximize:'Максимізувати',minimize:'Мінімізувати',fakeobjects:{anchor:'Якір',flash:'Flash-анімація',iframe:'IFrame',hiddenfield:'Приховані Поля',unknown:"Невідомий об'єкт"},resize:'Потягніть для зміни розмірів',colordialog:{title:'Обрати колір',options:'Опції кольорів',highlight:'Колір, на який вказує курсор',selected:'Обраний колір',clear:'Очистити'},toolbarCollapse:'Згорнути панель інструментів',toolbarExpand:'Розгорнути панель інструментів',toolbarGroups:{document:'Документ',clipboard:'Буфер обміну / Скасувати',editing:'Редагування',forms:'Форми',basicstyles:'Основний Стиль',paragraph:'Параграф',links:'Посилання',insert:'Вставити',styles:'Стилі',colors:'Кольори',tools:'Інструменти'},bidi:{ltr:'Напрямок тексту зліва направо',rtl:'Напрямок тексту справа наліво'},docprops:{label:'Властивості документа',title:'Властивості документа',design:'Дизайн',meta:'Мета дані',chooseColor:'Обрати',other:'<інший>',docTitle:'Заголовок сторінки',charset:'Кодування набору символів',charsetOther:'Інше кодування набору символів',charsetASCII:'ASCII',charsetCE:'Центрально-європейська',charsetCT:'Китайська традиційна (Big5)',charsetCR:'Кирилиця',charsetGR:'Грецька',charsetJP:'Японська',charsetKR:'Корейська',charsetTR:'Турецька',charsetUN:'Юнікод (UTF-8)',charsetWE:'Західно-европейская',docType:'Заголовок типу документу',docTypeOther:'Інший заголовок типу документу',xhtmlDec:'Ввімкнути XHTML оголошення',bgColor:'Колір тла',bgImage:'URL зображення тла',bgFixed:'Тло без прокрутки',txtColor:'Колір тексту',margin:'Відступи сторінки',marginTop:'Верхній',marginLeft:'Лівий',marginRight:'Правий',marginBottom:'Нижній',metaKeywords:'Ключові слова документа (розділені комами)',metaDescription:'Опис документа',metaAuthor:'Автор',metaCopyright:'Авторські права',previewHtml:'<p>Це приклад<strong>тексту</strong>. Ви використовуєте<a href="javascript:void(0)"> CKEditor </a>.</p>'}}; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/el.js��������������������������������������������0000664�0001750�0001750�00000063070�12262650742�021741� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.el={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Εργαλειοθήκες Επεξεργαστή',editor:'Επεξεργαστής Πλούσιου Κειμένου',source:'HTML κώδικας',newPage:'Νέα Σελίδα',save:'Αποθήκευση',preview:'Προεπισκόπιση',cut:'Αποκοπή',copy:'Αντιγραφή',paste:'Επικόλληση',print:'Εκτύπωση',underline:'Υπογράμμιση',bold:'Έντονα',italic:'Πλάγια',selectAll:'Επιλογή όλων',removeFormat:'Αφαίρεση Μορφοποίησης',strike:'Διαγράμμιση',subscript:'Δείκτης',superscript:'Εκθέτης',horizontalrule:'Εισαγωγή Οριζόντιας Γραμμής',pagebreak:'Εισαγωγή τέλους σελίδας',pagebreakAlt:'Αλλαγή Σελίδας',unlink:'Αφαίρεση Συνδέσμου (Link)',undo:'Αναίρεση',redo:'Επαναφορά',common:{browseServer:'Εξερεύνηση διακομιστή',url:'URL',protocol:'Πρωτόκολλο',upload:'Ανέβασμα',uploadSubmit:'Αποστολή στον Διακομιστή',image:'Εικόνα',flash:'Εισαγωγή Flash',form:'Φόρμα',checkbox:'Κουτί επιλογής',radio:'Κουμπί επιλογής',textField:'Πεδίο κειμένου',textarea:'Περιοχή κειμένου',hiddenField:'Κρυφό πεδίο',button:'Κουμπί',select:'Πεδίο επιλογής',imageButton:'Κουμπί εικόνας',notSet:'<δεν έχει ρυθμιστεί>',id:'Id',name:'Όνομα',langDir:'Κατεύθυνση κειμένου',langDirLtr:'Αριστερά προς Δεξιά (LTR)',langDirRtl:'Δεξιά προς Αριστερά (RTL)',langCode:'Κωδικός Γλώσσας',longDescr:'Αναλυτική περιγραφή URL',cssClass:'Stylesheet Classes',advisoryTitle:'Ενδεικτικός τίτλος',cssStyle:'Μορφή κειμένου',ok:'OK',cancel:'Ακύρωση',close:'Κλείσιμο',preview:'Προεπισκόπηση',generalTab:'Γενικά',advancedTab:'Για προχωρημένους',validateNumberFailed:'Αυτή η τιμή δεν είναι αριθμός.',confirmNewPage:'Οι όποιες αλλαγές στο περιεχόμενο θα χαθούν. Είσαστε σίγουροι ότι θέλετε να φορτώσετε μια νέα σελίδα;',confirmCancel:'Μερικές επιλογές έχουν αλλάξει. Είσαστε σίγουροι ότι θέλετε να κλείσετε το παράθυρο διαλόγου;',options:'Επιλογές',target:'Προορισμός',targetNew:'Νέο Παράθυρο (_blank)',targetTop:'Αρχική Περιοχή (_top)',targetSelf:'Ίδια Περιοχή (_self)',targetParent:'Γονεϊκό Παράθυρο (_parent)',langDirLTR:'Αριστερά προς Δεξιά (LTR)',langDirRTL:'Δεξιά προς Αριστερά (RTL)',styles:'Μορφή',cssClasses:'Stylesheet Classes',width:'Πλάτος',height:'Ύψος',align:'Στοίχιση',alignLeft:'Αριστερά',alignRight:'Δεξιά',alignCenter:'Κέντρο',alignTop:'Πάνω',alignMiddle:'Μέση',alignBottom:'Κάτω',invalidValue:'Invalid value.',invalidHeight:'Το ύψος πρέπει να είναι ένας αριθμός.',invalidWidth:'Το πλάτος πρέπει να είναι ένας αριθμός.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Επιλογές Αναδυόμενου Μενού'},specialChar:{toolbar:'Εισαγωγή Ειδικού Χαρακτήρα',title:'Επιλέξτε έναν Ειδικό Χαρακτήρα',options:'Επιλογές Ειδικών Χαρακτήρων'},link:{toolbar:'Σύνδεσμος',other:'<άλλο>',menu:'Επεξεργασία Συνδέσμου',title:'Σύνδεσμος',info:'Πληροφορίες Συνδέσμου',target:'Παράθυρο Προορισμού',upload:'Ανέβασμα',advanced:'Για προχωρημένους',type:'Τύπος Συνδέσμου',toUrl:'URL',toAnchor:'Άγκυρα σε αυτή τη σελίδα',toEmail:'E-Mail',targetFrame:'<πλαίσιο>',targetPopup:'<αναδυόμενο παράθυρο>',targetFrameName:'Όνομα Παραθύρου Προορισμού',targetPopupName:'Όνομα Αναδυόμενου Παραθύρου',popupFeatures:'Επιλογές Αναδυόμενου Παραθύρου',popupResizable:'Προσαρμοζόμενο Μέγεθος',popupStatusBar:'Γραμμή Κατάστασης',popupLocationBar:'Γραμμή Τοποθεσίας',popupToolbar:'Εργαλειοθήκη',popupMenuBar:'Γραμμή Επιλογών',popupFullScreen:'Πλήρης Οθόνη (IE)',popupScrollBars:'Μπάρες Κύλισης',popupDependent:'Εξαρτημένο (Netscape)',popupLeft:'Θέση Αριστερά',popupTop:'Θέση Πάνω',id:'Id',langDir:'Κατεύθυνση Κειμένου',langDirLTR:'Αριστερά προς Δεξιά (LTR)',langDirRTL:'Δεξιά προς Αριστερά (RTL)',acccessKey:'Συντόμευση',name:'Όνομα',langCode:'Κατεύθυνση Κειμένου',tabIndex:'Σειρά Μεταπήδησης',advisoryTitle:'Ενδεικτικός Τίτλος',advisoryContentType:'Ενδεικτικός Τύπος Περιεχομένου',cssClasses:'Stylesheet Classes',charset:'Κωδικοποίηση Χαρακτήρων Προσαρτημένης Πηγής',styles:'Μορφή',rel:'Σχέση',selectAnchor:'Επιλέξτε μια άγκυρα',anchorName:'Βάσει του Ονόματος της άγκυρας',anchorId:'Βάσει του Element Id',emailAddress:'Διεύθυνση e-mail',emailSubject:'Θέμα Μηνύματος',emailBody:'Κείμενο Μηνύματος',noAnchors:'(Δεν υπάρχουν άγκυρες στο κείμενο)',noUrl:'Εισάγετε την τοποθεσία (URL) του υπερσυνδέσμου (Link)',noEmail:'Εισάγετε την διεύθυνση ηλεκτρονικού ταχυδρομείου'},anchor:{toolbar:'Εισαγωγή/επεξεργασία Άγκυρας',menu:'Ιδιότητες άγκυρας',title:'Ιδιότητες άγκυρας',name:'Όνομα άγκυρας',errorName:'Παρακαλούμε εισάγετε όνομα άγκυρας',remove:'Αφαίρεση Άγκυρας'},list:{numberedTitle:'Ιδιότητες Αριθμημένης Λίστας ',bulletedTitle:'Ιδιότητες Λίστας Σημείων',type:'Τύπος',start:'Εκκίνηση',validateStartNumber:'Ο αριθμός εκκίνησης της αρίθμησης πρέπει να είναι ακέραιος αριθμός.',circle:'Κύκλος',disc:'Δίσκος',square:'Τετράγωνο',none:'Τίποτα',notset:'<δεν έχει οριστεί>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Δεκαδικός (1, 2, 3, κτλ)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Αναζήτηση και Αντικατάσταση',find:'Αναζήτηση',replace:'Αντικατάσταση',findWhat:'Αναζήτηση για:',replaceWith:'Αντικατάσταση με:',notFoundMsg:'Το κείμενο δεν βρέθηκε.',findOptions:'Find Options',matchCase:'Έλεγχος πεζών/κεφαλαίων',matchWord:'Εύρεση πλήρους λέξης',matchCyclic:'Match cyclic',replaceAll:'Αντικατάσταση Όλων',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Πίνακας',title:'Ιδιότητες Πίνακα',menu:'Ιδιότητες Πίνακα',deleteTable:'Διαγραφή πίνακα',rows:'Γραμμές',columns:'Κολώνες',border:'Πάχος Περιγράμματος',widthPx:'pixels',widthPc:'τοις εκατό',widthUnit:'μονάδα πλάτους',cellSpace:'Διάστημα κελιών',cellPad:'Γέμισμα κελιών',caption:'Λεζάντα',summary:'Περίληψη',headers:'Κεφαλίδες',headersNone:'Κανένα',headersColumn:'Πρώτη Στήλη',headersRow:'Πρώτη Σειρά',headersBoth:'Και τα δύο',invalidRows:'Ο αριθμός των σειρών πρέπει να είναι μεγαλύτερος από 0.',invalidCols:'Ο αριθμός των στηλών πρέπει να είναι μεγαλύτερος από 0.',invalidBorder:'Το πάχος του περιγράμματος πρέπει να είναι ένας αριθμός.',invalidWidth:'Το πλάτος του πίνακα πρέπει να είναι ένας αριθμός.',invalidHeight:'Το ύψος του πίνακα πρέπει να είναι ένας αριθμός.',invalidCellSpacing:'Η απόσταση μεταξύ των κελιών πρέπει να είναι ένας θετικός αριθμός.',invalidCellPadding:'Το γέμισμα μέσα στα κελιά πρέπει να είναι ένας θετικός αριθμός.',cell:{menu:'Κελί',insertBefore:'Εισαγωγή Κελιού Πριν',insertAfter:'Εισαγωγή Κελιού Μετά',deleteCell:'Διαγραφή Κελιών',merge:'Ενοποίηση Κελιών',mergeRight:'Συγχώνευση Με Δεξιά',mergeDown:'Συγχώνευση Με Κάτω',splitHorizontal:'Οριζόντιο Μοίρασμα Κελιού',splitVertical:'Κατακόρυφο Μοίρασμα Κελιού',title:'Ιδιότητες Κελιού',cellType:'Τύπος Κελιού',rowSpan:'Εύρος Σειρών',colSpan:'Εύρος Στηλών',wordWrap:'Word Wrap',hAlign:'Οριζόντια Στοίχιση',vAlign:'Κάθετη Στοίχιση',alignBaseline:'Baseline',bgColor:'Χρώμα Φόντου',borderColor:'Χρώμα Περιγράμματος',data:'Δεδομένα',header:'Κεφαλίδα',yes:'Ναι',no:'Όχι',invalidWidth:'Το πλάτος του κελιού πρέπει να είναι ένας αριθμός.',invalidHeight:'Το ύψος του κελιού πρέπει να είναι ένας αριθμός.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Επιλέξτε'},row:{menu:'Σειρά',insertBefore:'Εισαγωγή Σειράς Από Πάνω',insertAfter:'Εισαγωγή Σειράς Από Κάτω',deleteRow:'Διαγραφή Γραμμών'},column:{menu:'Στήλη',insertBefore:'Εισαγωγή Στήλης Πριν',insertAfter:'Εισαγωγή Σειράς Μετά',deleteColumn:'Διαγραφή Κολωνών'}},button:{title:'Ιδιότητες Κουμπιού',text:'Κείμενο (Τιμή)',type:'Τύπος',typeBtn:'Κουμπί',typeSbm:'Υποβολή',typeRst:'Επαναφορά'},checkboxAndRadio:{checkboxTitle:'Ιδιότητες Κουτιού Επιλογής',radioTitle:'Ιδιότητες Κουμπιού Επιλογής',value:'Τιμή',selected:'Επιλεγμένο'},form:{title:'Ιδιότητες Φόρμας',menu:'Ιδιότητες Φόρμας',action:'Δράση',method:'Μέθοδος',encoding:'Κωδικοποίηση'},select:{title:'Ιδιότητες Πεδίου Επιλογής',selectInfo:'Πληροφορίες Πεδίου Επιλογής',opAvail:'Διαθέσιμες Επιλογές',value:'Τιμή',size:'Μέγεθος',lines:'γραμμές',chkMulti:'Να επιτρέπονται οι πολλαπλές επιλογές',opText:'Κείμενο',opValue:'Τιμή',btnAdd:'Προσθήκη',btnModify:'Τροποποίηση',btnUp:'Πάνω',btnDown:'Κάτω',btnSetValue:'Προεπιλογή',btnDelete:'Διαγραφή'},textarea:{title:'Ιδιότητες Περιοχής Κειμένου',cols:'Στήλες',rows:'Σειρές'},textfield:{title:'Ιδιότητες Πεδίου Κειμένου',name:'Όνομα',value:'Τιμή',charWidth:'Πλάτος Χαρακτήρων',maxChars:'Μέγιστοι χαρακτήρες',type:'Τύπος',typeText:'Κείμενο',typePass:'Κωδικός'},hidden:{title:'Ιδιότητες Κρυφού Πεδίου',name:'Όνομα',value:'Τιμή'},image:{title:'Ιδιότητες Εικόνας',titleButton:'Ιδιότητες Κουμπιού Εικόνας',menu:'Ιδιότητες Εικόνας',infoTab:'Πληροφορίες Εικόνας',btnUpload:'Αποστολή στον Διακομιστή',upload:'Ανέβασμα',alt:'Εναλλακτικό Κείμενο',lockRatio:'Κλείδωμα Αναλογίας',resetSize:'Επαναφορά Αρχικού Μεγέθους',border:'Περίγραμμα',hSpace:'Οριζόντιο Διάστημα',vSpace:'Κάθετο Διάστημα',alertUrl:'Εισάγετε την τοποθεσία (URL) της εικόνας',linkTab:'Σύνδεσμος',button2Img:'Θέλετε να μετατρέψετε το επιλεγμένο κουμπί εικόνας σε απλή εικόνα;',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Ιδιότητες Flash',propertiesTab:'Ιδιότητες',title:'Ιδιότητες Flash',chkPlay:'Αυτόματη Εκτέλεση',chkLoop:'Επανάληψη',chkMenu:'Ενεργοποίηση Flash Menu',chkFull:'Allow Fullscreen',scale:'Μεγέθυνση',scaleAll:'Εμφάνιση όλων',scaleNoBorder:'Χωρίς Περίγραμμα',scaleFit:'Ακριβές Μέγεθος',access:'Script Access',accessAlways:'Πάντα',accessSameDomain:'Same domain',accessNever:'Ποτέ',alignAbsBottom:'Απόλυτα Κάτω',alignAbsMiddle:'Απόλυτα στη Μέση',alignBaseline:'Γραμμή Βάσης',alignTextTop:'Κορυφή Κειμένου',quality:'Ποιότητα',qualityBest:'Καλύτερη',qualityHigh:'Υψηλή',qualityAutoHigh:'Αυτόματη Υψηλή',qualityMedium:'Μεσαία',qualityAutoLow:'Αυτόματη Χαμηλή',qualityLow:'Χαμηλή',windowModeWindow:'Παράθυρο',windowModeOpaque:'Συμπαγές',windowModeTransparent:'Διάφανο',windowMode:'Window mode',flashvars:'Μεταβλητές για Flash',bgcolor:'Χρώμα Υποβάθρου',hSpace:'Οριζόντιο Διάστημα',vSpace:'Κάθετο Διάστημα',validateSrc:'Εισάγετε την τοποθεσία (URL) του υπερσυνδέσμου (Link)',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Ορθογραφικός Έλεγχος',title:'Ορθογραφικός Έλεγχος',notAvailable:'Η υπηρεσία δεν είναι διαθέσιμη αυτήν την στιγμή.',errorLoading:'Error loading application service host: %s.',notInDic:'Δεν υπάρχει στο λεξικό',changeTo:'Αλλαγή σε',btnIgnore:'Αγνόηση',btnIgnoreAll:'Αγνόηση όλων',btnReplace:'Αντικατάσταση',btnReplaceAll:'Αντικατάσταση όλων',btnUndo:'Αναίρεση',noSuggestions:'- Δεν υπάρχουν προτάσεις -',progress:'Γίνεται ορθογραφικός έλεγχος...',noMispell:'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν βρέθηκαν λάθη',noChanges:'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν άλλαξαν λέξεις',oneChange:'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Άλλαξε μια λέξη',manyChanges:'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Άλλαξαν %1 λέξεις',ieSpellDownload:'Δεν υπάρχει εγκατεστημένος ορθογράφος. Θέλετε να τον κατεβάσετε τώρα;'},smiley:{toolbar:'Smiley',title:'Επιλέξτε ένα Smiley',options:'Επιλογές Smiley'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 στοιχείο'},numberedlist:'Εισαγωγή/Απομάκρυνση Αριθμημένης Λίστας',bulletedlist:'Εισαγωγή/Απομάκρυνση Λίστας Κουκκίδων',indent:'Αύξηση Εσοχής',outdent:'Μείωση Εσοχής',justify:{left:'Στοίχιση Αριστερά',center:'Στοίχιση στο Κέντρο',right:'Στοίχιση Δεξιά',block:'Πλήρης Στοίχιση'},blockquote:'Περιοχή Παράθεσης',clipboard:{title:'Επικόλληση',cutError:'Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αποκοπής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl/Cmd+X).',copyError:'Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αντιγραφής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl/Cmd+C).',pasteMsg:'Παρακαλώ επικολήστε στο ακόλουθο κουτί χρησιμοποιόντας το πληκτρολόγιο (<strong>Ctrl/Cmd+V</strong>) και πατήστε OK.',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Επικόλληση από το Word',title:'Επικόλληση από το Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Επικόλληση ως Απλό Κείμενο',title:'Επικόλληση ως Απλό Κείμενο'},templates:{button:'Πρότυπα',title:'Πρότυπα Περιεχομένου',options:'Template Options',insertOption:'Αντικατάσταση υπάρχοντων περιεχομένων',selectPromptMsg:'Παρακαλώ επιλέξτε πρότυπο για εισαγωγή στο πρόγραμμα',emptyListMsg:'(Δεν έχουν καθοριστεί πρότυπα)'},showBlocks:'Προβολή Περιοχών',stylesCombo:{label:'Μορφές',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Μορφοποίηση',panelTitle:'Μορφοποίηση Παραγράφου',tag_p:'Κανονικό',tag_pre:'Μορφοποιημένο',tag_address:'Διεύθυνση',tag_h1:'Επικεφαλίδα 1',tag_h2:'Επικεφαλίδα 2',tag_h3:'Επικεφαλίδα 3',tag_h4:'Επικεφαλίδα 4',tag_h5:'Επικεφαλίδα 5',tag_h6:'Επικεφαλίδα 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Ενεργοποίηση μπαρών κύλισης',border:'Show frame border'},font:{label:'Γραμματοσειρά',voiceLabel:'Γραμματοσειρά',panelTitle:'Όνομα Γραμματοσειράς'},fontSize:{label:'Μέγεθος',voiceLabel:'Μέγεθος γραμματοσειράς',panelTitle:'Μέγεθος Γραμματοσειράς'},colorButton:{textColorTitle:'Χρώμα Κειμένου',bgColorTitle:'Χρώμα Φόντου',panelTitle:'Χρώματα',auto:'Αυτόματα',more:'Περισσότερα χρώματα...'},colors:{'000':'Μαύρο',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Μώβ',808080:'Γκρί',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Επιλογές',langs:'Γλώσσες',moreSuggestions:'Περισσότερες προτάσεις',ignore:'Αγνόησε το',ignoreAll:'Να αγνοηθούν όλα',addWord:'Προσθήκη στο λεξικό',emptyDic:'Το όνομα του λεξικού δεν πρέπει να είναι κενό.',noSuggestions:'No suggestions',optionsTab:'Επιλογές',allCaps:'Να αγνοούνται όλες οι λέξεις σε κεφαλαία',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Γλώσσες',dictionariesTab:'Λεξικά',dic_field_name:'Όνομα λεξικού',dic_create:'Δημιουργία',dic_restore:'Ανάκτηση',dic_delete:'Διαγραφή',dic_rename:'Μετονομασία',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'Περί'},about:{title:'Περί του CKEditor',dlgTitle:'Περί του CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Μεγιστοποίηση',minimize:'Ελαχιστοποίηση',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Άγνωστο Αντικείμενο'},resize:'Σύρσιμο για αλλαγή μεγέθους',colordialog:{title:'Επιλογή Χρώματος',options:'Επιλογές Χρωμάτων',highlight:'Highlight',selected:'Επιλεγμένο Χρώμα',clear:'Καθαρισμός'},toolbarCollapse:'Σύμπτηξη Εργαλειοθήκης',toolbarExpand:'Ανάπτυξη Εργαλειοθήκης',toolbarGroups:{document:'Έγγραφο',clipboard:'Clipboard/Undo',editing:'Σε επεξεργασία',forms:'Φόρμες',basicstyles:'Βασικά στυλ',paragraph:'Παράγραφος',links:'Συνδέσμοι',insert:'Εισαγωγή',styles:'Στυλ',colors:'Χρώματα',tools:'Εργαλεία'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Ιδιότητες Εγγράφου',title:'Ιδιότητες Εγγράφου',design:'Design',meta:'Δεδομένα Meta',chooseColor:'Choose',other:'Άλλο...',docTitle:'Τίτλος Σελίδας',charset:'Κωδικοποίηση Χαρακτήρων',charsetOther:'Άλλη Κωδικοποίηση Χαρακτήρων',charsetASCII:'ASCII',charsetCE:'Κεντρικής Ευρώπης',charsetCT:'Παραδοσιακά κινέζικα (Big5)',charsetCR:'Κυριλλική',charsetGR:'Ελληνική',charsetJP:'Ιαπωνική',charsetKR:'Κορεάτικη',charsetTR:'Τουρκική',charsetUN:'Διεθνής (UTF-8)',charsetWE:'Δυτικής Ευρώπης',docType:'Επικεφαλίδα τύπου εγγράφου',docTypeOther:'Άλλη επικεφαλίδα τύπου εγγράφου',xhtmlDec:'Να συμπεριληφθούν οι δηλώσεις XHTML',bgColor:'Χρώμα φόντου',bgImage:'Διεύθυνση εικόνας φόντου',bgFixed:'Φόντο χωρίς κύλιση',txtColor:'Χρώμα Γραμμάτων',margin:'Περιθώρια σελίδας',marginTop:'Κορυφή',marginLeft:'Αριστερά',marginRight:'Δεξιά',marginBottom:'Κάτω',metaKeywords:'Λέξεις κλειδιά δείκτες εγγράφου (διαχωρισμός με κόμμα)',metaDescription:'Περιγραφή εγγράφου',metaAuthor:'Συγγραφέας',metaCopyright:'Πνευματικά Δικαιώματα',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/_languages.js������������������������������������0000664�0001750�0001750�00000002357�12262650742�023447� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ var CKEDITOR_LANGS=(function(){var b={af:'Afrikaans',ar:'Arabic',bg:'Bulgarian',bn:'Bengali/Bangla',bs:'Bosnian',ca:'Catalan',cs:'Czech',cy:'Welsh',da:'Danish',de:'German',el:'Greek',en:'English','en-au':'English (Australia)','en-ca':'English (Canadian)','en-gb':'English (United Kingdom)',eo:'Esperanto',es:'Spanish',et:'Estonian',eu:'Basque',fa:'Persian',fi:'Finnish',fo:'Faroese',fr:'French','fr-ca':'French (Canada)',gl:'Galician',gu:'Gujarati',he:'Hebrew',hi:'Hindi',hr:'Croatian',hu:'Hungarian',is:'Icelandic',it:'Italian',ja:'Japanese',ka:'Georgian',km:'Khmer',ko:'Korean',ku:'Kurdish',lt:'Lithuanian',lv:'Latvian',mn:'Mongolian',ms:'Malay',nb:'Norwegian Bokmal',nl:'Dutch',no:'Norwegian',pl:'Polish',pt:'Portuguese (Portugal)','pt-br':'Portuguese (Brazil)',ro:'Romanian',ru:'Russian',sk:'Slovak',sl:'Slovenian',sr:'Serbian (Cyrillic)','sr-latn':'Serbian (Latin)',sv:'Swedish',th:'Thai',tr:'Turkish',ug:'Uighur',uk:'Ukrainian',vi:'Vietnamese',zh:'Chinese Traditional','zh-cn':'Chinese Simplified'},c=[];for(var d in b)c.push({code:d,name:b[d]});c.sort(function(e,f){return e.name<f.name?-1:1;});return c;})(); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ro.js��������������������������������������������0000664�0001750�0001750�00000047006�12262650742�021762� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.ro={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Apasă ALT 0 pentru ajutor',toolbars:'Editează bara de unelte',editor:'Rich Text Editor',source:'Sursa',newPage:'Pagină nouă',save:'Salvează',preview:'Previzualizare',cut:'Taie',copy:'Copiază',paste:'Adaugă',print:'Printează',underline:'Subliniat (underline)',bold:'Îngroşat (bold)',italic:'Înclinat (italic)',selectAll:'Selectează tot',removeFormat:'Înlătură formatarea',strike:'Tăiat (strike through)',subscript:'Indice (subscript)',superscript:'Putere (superscript)',horizontalrule:'Inserează linie orizontală',pagebreak:'Inserează separator de pagină (Page Break)',pagebreakAlt:'Page Break',unlink:'Înlătură link (legătură web)',undo:'Starea anterioară (undo)',redo:'Starea ulterioară (redo)',common:{browseServer:'Răsfoieşte server',url:'URL',protocol:'Protocol',upload:'Încarcă',uploadSubmit:'Trimite la server',image:'Imagine',flash:'Flash',form:'Formular (Form)',checkbox:'Bifă (Checkbox)',radio:'Buton radio (RadioButton)',textField:'Câmp text (TextField)',textarea:'Suprafaţă text (Textarea)',hiddenField:'Câmp ascuns (HiddenField)',button:'Buton',select:'Câmp selecţie (SelectionField)',imageButton:'Buton imagine (ImageButton)',notSet:'<nesetat>',id:'Id',name:'Nume',langDir:'Direcţia cuvintelor',langDirLtr:'stânga-dreapta (LTR)',langDirRtl:'dreapta-stânga (RTL)',langCode:'Codul limbii',longDescr:'Descrierea lungă URL',cssClass:'Clasele cu stilul paginii (CSS)',advisoryTitle:'Titlul consultativ',cssStyle:'Stil',ok:'OK',cancel:'Anulare',close:'Închide',preview:'Previzualizare',generalTab:'General',advancedTab:'Avansat',validateNumberFailed:'Această valoare nu este un număr.',confirmNewPage:'Orice modificări nesalvate ale acestui conținut, vor fi pierdute. Sigur doriți încărcarea unei noi pagini?',confirmCancel:'Câteva opțiuni au fost schimbate. Sigur doriți să închideți dialogul?',options:'Opțiuni',target:'Țintă',targetNew:'Fereastră nouă (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'În aceeași fereastră (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Stânga spre Dreapta (LTR)',langDirRTL:'Dreapta spre Stânga (RTL)',styles:'Stil',cssClasses:'Stylesheet Classes',width:'Lăţime',height:'Înălţime',align:'Aliniere',alignLeft:'Mărește Bara',alignRight:'Dreapta',alignCenter:'Centru',alignTop:'Sus',alignMiddle:'Mijloc',alignBottom:'Jos',invalidValue:'Invalid value.',invalidHeight:'Înălțimea trebuie să fie un număr.',invalidWidth:'Lățimea trebuie să fie un număr.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Opțiuni Meniu Contextual'},specialChar:{toolbar:'Inserează caracter special',title:'Selectează caracter special',options:'Opțiuni caractere speciale'},link:{toolbar:'Inserează/Editează link (legătură web)',other:'<alt>',menu:'Editează Link',title:'Link (Legătură web)',info:'Informaţii despre link (Legătură web)',target:'Ţintă (Target)',upload:'Încarcă',advanced:'Avansat',type:'Tipul link-ului (al legăturii web)',toUrl:'URL',toAnchor:'Ancoră în această pagină',toEmail:'E-Mail',targetFrame:'<frame>',targetPopup:'<fereastra popup>',targetFrameName:'Numele frameului ţintă',targetPopupName:'Numele ferestrei popup',popupFeatures:'Proprietăţile ferestrei popup',popupResizable:'Redimensionabil',popupStatusBar:'Bara de status',popupLocationBar:'Bara de locaţie',popupToolbar:'Bara de opţiuni',popupMenuBar:'Bara de meniu',popupFullScreen:'Tot ecranul (Full Screen)(IE)',popupScrollBars:'Bare de derulare',popupDependent:'Dependent (Netscape)',popupLeft:'Poziţia la stânga',popupTop:'Poziţia la dreapta',id:'Id',langDir:'Direcţia cuvintelor',langDirLTR:'stânga-dreapta (LTR)',langDirRTL:'dreapta-stânga (RTL)',acccessKey:'Tasta de acces',name:'Nume',langCode:'Direcţia cuvintelor',tabIndex:'Indexul tabului',advisoryTitle:'Titlul consultativ',advisoryContentType:'Tipul consultativ al titlului',cssClasses:'Clasele cu stilul paginii (CSS)',charset:'Setul de caractere al resursei legate',styles:'Stil',rel:'Relație',selectAnchor:'Selectaţi o ancoră',anchorName:'după numele ancorei',anchorId:'după Id-ul elementului',emailAddress:'Adresă de e-mail',emailSubject:'Subiectul mesajului',emailBody:'Opțiuni Meniu Contextual',noAnchors:'(Nicio ancoră disponibilă în document)',noUrl:'Vă rugăm să scrieţi URL-ul',noEmail:'Vă rugăm să scrieţi adresa de e-mail'},anchor:{toolbar:'Inserează/Editează ancoră',menu:'Proprietăţi ancoră',title:'Proprietăţi ancoră',name:'Numele ancorei',errorName:'Vă rugăm scrieţi numele ancorei',remove:'Elimină ancora'},list:{numberedTitle:'Proprietățile listei numerotate',bulletedTitle:'Proprietățile listei cu simboluri',type:'Tip',start:'Start',validateStartNumber:'Începutul listei trebuie să fie un număr întreg.',circle:'Cerc',disc:'Disc',square:'Pătrat',none:'Nimic',notset:'<nesetat>',armenian:'Numerotare armeniană',georgian:'Numerotare georgiană (an, ban, gan, etc.)',lowerRoman:'Cifre romane mici (i, ii, iii, iv, v, etc.)',upperRoman:'Cifre romane mari (I, II, III, IV, V, etc.)',lowerAlpha:'Litere mici (a, b, c, d, e, etc.)',upperAlpha:'Litere mari (A, B, C, D, E, etc.)',lowerGreek:'Litere grecești mici (alpha, beta, gamma, etc.)',decimal:'Decimale (1, 2, 3, etc.)',decimalLeadingZero:'Decimale cu zero în față (01, 02, 03, etc.)'},findAndReplace:{title:'Găseşte şi înlocuieşte',find:'Găseşte',replace:'Înlocuieşte',findWhat:'Găseşte:',replaceWith:'Înlocuieşte cu:',notFoundMsg:'Textul specificat nu a fost găsit.',findOptions:'Find Options',matchCase:'Deosebeşte majuscule de minuscule (Match case)',matchWord:'Doar cuvintele întregi',matchCyclic:'Potrivește ciclic',replaceAll:'Înlocuieşte tot',replaceSuccessMsg:'%1 căutări înlocuite.'},table:{toolbar:'Tabel',title:'Proprietăţile tabelului',menu:'Proprietăţile tabelului',deleteTable:'Şterge tabel',rows:'Rânduri',columns:'Coloane',border:'Mărimea marginii',widthPx:'pixeli',widthPc:'procente',widthUnit:'unitate lățime',cellSpace:'Spaţiu între celule',cellPad:'Spaţiu în cadrul celulei',caption:'Titlu (Caption)',summary:'Rezumat',headers:'Antente',headersNone:'Nimic',headersColumn:'Prima coloană',headersRow:'Primul rând',headersBoth:'Ambele',invalidRows:'Numărul rândurilor trebuie să fie mai mare decât 0.',invalidCols:'Numărul coloanelor trebuie să fie mai mare decât 0.',invalidBorder:'Dimensiunea bordurii trebuie să aibe un număr.',invalidWidth:'Lățimea tabelului trebuie să fie un număr.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Spațierea celului trebuie să fie un număr pozitiv.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Celulă',insertBefore:'Inserează celulă înainte',insertAfter:'Inserează celulă după',deleteCell:'Şterge celule',merge:'Uneşte celule',mergeRight:'Uneşte la dreapta',mergeDown:'Uneşte jos',splitHorizontal:'Împarte celula pe orizontală',splitVertical:'Împarte celula pe verticală',title:'Proprietăți celulă',cellType:'Tipul celulei',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Aliniament orizontal',vAlign:'Aliniament vertical',alignBaseline:'Baseline',bgColor:'Culoare fundal',borderColor:'Culoare bordură',data:'Data',header:'Antet',yes:'Da',no:'Nu',invalidWidth:'Lățimea celulei trebuie să fie un număr.',invalidHeight:'Înălțimea celulei trebuie să fie un număr.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Alege'},row:{menu:'Rând',insertBefore:'Inserează rând înainte',insertAfter:'Inserează rând după',deleteRow:'Şterge rânduri'},column:{menu:'Coloană',insertBefore:'Inserează coloană înainte',insertAfter:'Inserează coloană după',deleteColumn:'Şterge celule'}},button:{title:'Proprietăţi buton',text:'Text (Valoare)',type:'Tip',typeBtn:'Buton',typeSbm:'Trimite',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Proprietăţi bifă (Checkbox)',radioTitle:'Proprietăţi buton radio (Radio Button)',value:'Valoare',selected:'Selectat'},form:{title:'Proprietăţi formular (Form)',menu:'Proprietăţi formular (Form)',action:'Acţiune',method:'Metodă',encoding:'Encodare'},select:{title:'Proprietăţi câmp selecţie (Selection Field)',selectInfo:'Informaţii',opAvail:'Opţiuni disponibile',value:'Valoare',size:'Mărime',lines:'linii',chkMulti:'Permite selecţii multiple',opText:'Text',opValue:'Valoare',btnAdd:'Adaugă',btnModify:'Modifică',btnUp:'Sus',btnDown:'Jos',btnSetValue:'Setează ca valoare selectată',btnDelete:'Şterge'},textarea:{title:'Proprietăţi suprafaţă text (Textarea)',cols:'Coloane',rows:'Linii'},textfield:{title:'Proprietăţi câmp text (Text Field)',name:'Nume',value:'Valoare',charWidth:'Lărgimea caracterului',maxChars:'Caractere maxime',type:'Tip',typeText:'Text',typePass:'Parolă'},hidden:{title:'Proprietăţi câmp ascuns (Hidden Field)',name:'Nume',value:'Valoare'},image:{title:'Proprietăţile imaginii',titleButton:'Proprietăţi buton imagine (Image Button)',menu:'Proprietăţile imaginii',infoTab:'Informaţii despre imagine',btnUpload:'Trimite la server',upload:'Încarcă',alt:'Text alternativ',lockRatio:'Păstrează proporţiile',resetSize:'Resetează mărimea',border:'Margine',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Vă rugăm să scrieţi URL-ul imaginii',linkTab:'Link (Legătură web)',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Sursa URL a imaginii lipsește.',validateBorder:'Bordura trebuie să fie un număr întreg.',validateHSpace:'Hspace trebuie să fie un număr întreg.',validateVSpace:'Vspace trebuie să fie un număr întreg.'},flash:{properties:'Proprietăţile flashului',propertiesTab:'Proprietăți',title:'Proprietăţile flashului',chkPlay:'Rulează automat',chkLoop:'Repetă (Loop)',chkMenu:'Activează meniul flash',chkFull:'Permite pe tot ecranul',scale:'Scală',scaleAll:'Arată tot',scaleNoBorder:'Fără bordură (No border)',scaleFit:'Potriveşte',access:'Acces script',accessAlways:'Întotdeauna',accessSameDomain:'Același domeniu',accessNever:'Niciodată',alignAbsBottom:'Jos absolut (Abs Bottom)',alignAbsMiddle:'Mijloc absolut (Abs Middle)',alignBaseline:'Linia de jos (Baseline)',alignTextTop:'Text sus',quality:'Calitate',qualityBest:'Cea mai bună',qualityHigh:'Înaltă',qualityAutoHigh:'Auto înaltă',qualityMedium:'Medie',qualityAutoLow:'Auto Joasă',qualityLow:'Joasă',windowModeWindow:'Fereastră',windowModeOpaque:'Opacă',windowModeTransparent:'Transparentă',windowMode:'Mod fereastră',flashvars:'Variabile pentru flash',bgcolor:'Coloarea fundalului',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'Vă rugăm să scrieţi URL-ul',validateHSpace:'Hspace trebuie să fie un număr.',validateVSpace:'VSpace trebuie să fie un număr'},spellCheck:{toolbar:'Verifică scrierea textului',title:'Spell Check',notAvailable:'Scuzați, dar serviciul nu este disponibil momentan.',errorLoading:'Eroare în lansarea aplicației service host %s.',notInDic:'Nu e în dicţionar',changeTo:'Schimbă în',btnIgnore:'Ignoră',btnIgnoreAll:'Ignoră toate',btnReplace:'Înlocuieşte',btnReplaceAll:'Înlocuieşte tot',btnUndo:'Starea anterioară (undo)',noSuggestions:'- Fără sugestii -',progress:'Verificarea textului în desfăşurare...',noMispell:'Verificarea textului terminată: Nicio greşeală găsită',noChanges:'Verificarea textului terminată: Niciun cuvânt modificat',oneChange:'Verificarea textului terminată: Un cuvânt modificat',manyChanges:'Verificarea textului terminată: 1% cuvinte modificate',ieSpellDownload:'Unealta pentru verificat textul (Spell checker) neinstalată. Doriţi să o descărcaţi acum?'},smiley:{toolbar:'Figură expresivă (Emoticon)',title:'Inserează o figură expresivă (Emoticon)',options:'Opțiuni figuri expresive'},elementsPath:{eleLabel:'Calea elementelor',eleTitle:'%1 element'},numberedlist:'Inserează / Elimină Listă numerotată',bulletedlist:'Inserează / Elimină Listă cu puncte',indent:'Creşte indentarea',outdent:'Scade indentarea',justify:{left:'Aliniere la stânga',center:'Aliniere centrală',right:'Aliniere la dreapta',block:'Aliniere în bloc (Block Justify)'},blockquote:'Citat',clipboard:{title:'Adaugă',cutError:'Setările de securitate ale navigatorului (browser) pe care îl folosiţi nu permit editorului să execute automat operaţiunea de tăiere. Vă rugăm folosiţi tastatura (Ctrl/Cmd+X).',copyError:'Setările de securitate ale navigatorului (browser) pe care îl folosiţi nu permit editorului să execute automat operaţiunea de copiere. Vă rugăm folosiţi tastatura (Ctrl/Cmd+C).',pasteMsg:'Vă rugăm adăugaţi în căsuţa următoare folosind tastatura (<strong>Ctrl/Cmd+V</strong>) şi apăsaţi OK',securityMsg:'Din cauza setărilor de securitate ale programului dvs. cu care navigaţi pe internet (browser), editorul nu poate accesa direct datele din clipboard. Va trebui să adăugaţi din nou datele în această fereastră.',pasteArea:'Suprafața de adăugare'},pastefromword:{confirmCleanup:'Textul pe care doriți să-l lipiți este din Word. Doriți curățarea textului înante de a-l adăuga?',toolbar:'Adaugă din Word',title:'Adaugă din Word',error:'Nu a fost posibilă curățarea datelor adăugate datorită unei erori interne'},pasteText:{button:'Adaugă ca text simplu (Plain Text)',title:'Adaugă ca text simplu (Plain Text)'},templates:{button:'Template-uri (şabloane)',title:'Template-uri (şabloane) de conţinut',options:'Opțiuni șabloane',insertOption:'Înlocuieşte cuprinsul actual',selectPromptMsg:'Vă rugăm selectaţi template-ul (şablonul) ce se va deschide în editor<br>(conţinutul actual va fi pierdut):',emptyListMsg:'(Niciun template (şablon) definit)'},showBlocks:'Arată blocurile',stylesCombo:{label:'Stil',panelTitle:'Formatarea stilurilor',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Formatare',panelTitle:'Formatare',tag_p:'Normal',tag_pre:'Formatat',tag_address:'Adresă',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Stil',IdInputLabel:'Id',languageCodeInputLabel:'Codul limbii',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font'},fontSize:{label:'Mărime',voiceLabel:'Font Size',panelTitle:'Mărime'},colorButton:{textColorTitle:'Culoarea textului',bgColorTitle:'Coloarea fundalului',panelTitle:'Colors',auto:'Automatic',more:'Mai multe culori...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'Fără sugestii',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Mărește',minimize:'Micșorează',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Trage pentru a redimensiona',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Micșorează Bara',toolbarExpand:'Mărește Bara',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Proprietăţile documentului',title:'Proprietăţile documentului',design:'Design',meta:'Meta Tags',chooseColor:'Choose',other:'<alt>',docTitle:'Titlul paginii',charset:'Encoding setului de caractere',charsetOther:'Alt encoding al setului de caractere',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinezesc tradiţional (Big5)',charsetCR:'Chirilic',charsetGR:'Grecesc',charsetJP:'Japonez',charsetKR:'Corean',charsetTR:'Turcesc',charsetUN:'Unicode (UTF-8)',charsetWE:'Vest european',docType:'Document Type Heading',docTypeOther:'Alt Document Type Heading',xhtmlDec:'Include declaraţii XHTML',bgColor:'Culoarea fundalului (Background Color)',bgImage:'URL-ul imaginii din fundal (Background Image URL)',bgFixed:'Fundal neflotant, fix (Non-scrolling Background)',txtColor:'Culoarea textului',margin:'Marginile paginii',marginTop:'Sus',marginLeft:'Stânga',marginRight:'Dreapta',marginBottom:'Jos',metaKeywords:'Cuvinte cheie după care se va indexa documentul (separate prin virgulă)',metaDescription:'Descrierea documentului',metaAuthor:'Autor',metaCopyright:'Drepturi de autor',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/et.js��������������������������������������������0000664�0001750�0001750�00000043413�12262650742�021750� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.et={dir:'ltr',editorTitle:'Vormindatud teksti redaktor %1',editorHelp:'Abi saamiseks vajuta ALT 0',toolbars:'Redaktori tööriistaribad',editor:'Rikkalik tekstiredaktor',source:'Lähtekood',newPage:'Uus leht',save:'Salvestamine',preview:'Eelvaade',cut:'Lõika',copy:'Kopeeri',paste:'Aseta',print:'Printimine',underline:'Allajoonitud',bold:'Paks',italic:'Kursiiv',selectAll:'Kõige valimine',removeFormat:'Vormingu eemaldamine',strike:'Läbijoonitud',subscript:'Allindeks',superscript:'Ülaindeks',horizontalrule:'Horisontaaljoone sisestamine',pagebreak:'Lehevahetuskoha sisestamine',pagebreakAlt:'Lehevahetuskoht',unlink:'Lingi eemaldamine',undo:'Tagasivõtmine',redo:'Toimingu kordamine',common:{browseServer:'Serveri sirvimine',url:'URL',protocol:'Protokoll',upload:'Laadi üles',uploadSubmit:'Saada serverisse',image:'Pilt',flash:'Flash',form:'Vorm',checkbox:'Märkeruut',radio:'Raadionupp',textField:'Tekstilahter',textarea:'Tekstiala',hiddenField:'Varjatud lahter',button:'Nupp',select:'Valiklahter',imageButton:'Piltnupp',notSet:'<määramata>',id:'ID',name:'Nimi',langDir:'Keele suund',langDirLtr:'Vasakult paremale (LTR)',langDirRtl:'Paremalt vasakule (RTL)',langCode:'Keele kood',longDescr:'Pikk kirjeldus URL',cssClass:'Stiilistiku klassid',advisoryTitle:'Soovituslik pealkiri',cssStyle:'Laad',ok:'OK',cancel:'Loobu',close:'Sulge',preview:'Eelvaade',generalTab:'Üldine',advancedTab:'Täpsemalt',validateNumberFailed:'See väärtus pole number.',confirmNewPage:'Kõik salvestamata muudatused lähevad kaotsi. Kas oled kindel, et tahad laadida uue lehe?',confirmCancel:'Mõned valikud on muudetud. Kas oled kindel, et tahad dialoogi sulgeda?',options:'Valikud',target:'Sihtkoht',targetNew:'Uus aken (_blank)',targetTop:'Kõige ülemine aken (_top)',targetSelf:'Sama aken (_self)',targetParent:'Vanemaken (_parent)',langDirLTR:'Vasakult paremale (LTR)',langDirRTL:'Paremalt vasakule (RTL)',styles:'Stiili',cssClasses:'Stiililehe klassid',width:'Laius',height:'Kõrgus',align:'Joondus',alignLeft:'Vasak',alignRight:'Paremale',alignCenter:'Kesk',alignTop:'Üles',alignMiddle:'Keskele',alignBottom:'Alla',invalidValue:'Invalid value.',invalidHeight:'Kõrgus peab olema number.',invalidWidth:'Laius peab olema number.',invalidCssLength:'"%1" välja jaoks määratud väärtus peab olema positiivne täisarv CSS ühikuga (px, %, in, cm, mm, em, ex, pt või pc) või ilma.',invalidHtmlLength:'"%1" välja jaoks määratud väärtus peab olema positiivne täisarv HTML ühikuga (px või %) või ilma.',invalidInlineStyle:'Reasisese stiili määrangud peavad koosnema paarisväärtustest (tuples), mis on semikoolonitega eraldatult järgnevas vormingus: "nimi : väärtus".',cssLengthTooltip:'Sisesta väärtus pikslites või number koos sobiva CSS-i ühikuga (px, %, in, cm, mm, em, ex, pt või pc).',unavailable:'%1<span class="cke_accessibility">, pole saadaval</span>'},contextmenu:{options:'Kontekstimenüü valikud'},specialChar:{toolbar:'Erimärgi sisestamine',title:'Erimärgi valimine',options:'Erimärkide valikud'},link:{toolbar:'Lingi lisamine/muutmine',other:'<muu>',menu:'Muuda linki',title:'Link',info:'Lingi info',target:'Sihtkoht',upload:'Lae üles',advanced:'Täpsemalt',type:'Lingi liik',toUrl:'URL',toAnchor:'Ankur sellel lehel',toEmail:'E-post',targetFrame:'<raam>',targetPopup:'<hüpikaken>',targetFrameName:'Sihtmärk raami nimi',targetPopupName:'Hüpikakna nimi',popupFeatures:'Hüpikakna omadused',popupResizable:'Suurust saab muuta',popupStatusBar:'Olekuriba',popupLocationBar:'Aadressiriba',popupToolbar:'Tööriistariba',popupMenuBar:'Menüüriba',popupFullScreen:'Täisekraan (IE)',popupScrollBars:'Kerimisribad',popupDependent:'Sõltuv (Netscape)',popupLeft:'Vasak asukoht',popupTop:'Ülemine asukoht',id:'ID',langDir:'Keele suund',langDirLTR:'Vasakult paremale (LTR)',langDirRTL:'Paremalt vasakule (RTL)',acccessKey:'Juurdepääsu võti',name:'Nimi',langCode:'Keele suund',tabIndex:'Tab indeks',advisoryTitle:'Juhendav tiitel',advisoryContentType:'Juhendava sisu tüüp',cssClasses:'Stiilistiku klassid',charset:'Lingitud ressursi märgistik',styles:'Laad',rel:'Suhe',selectAnchor:'Vali ankur',anchorName:'Ankru nime järgi',anchorId:'Elemendi id järgi',emailAddress:'E-posti aadress',emailSubject:'Sõnumi teema',emailBody:'Sõnumi tekst',noAnchors:'(Selles dokumendis pole ankruid)',noUrl:'Palun kirjuta lingi URL',noEmail:'Palun kirjuta e-posti aadress'},anchor:{toolbar:'Ankru sisestamine/muutmine',menu:'Ankru omadused',title:'Ankru omadused',name:'Ankru nimi',errorName:'Palun sisesta ankru nimi',remove:'Eemalda ankur'},list:{numberedTitle:'Numberloendi omadused',bulletedTitle:'Punktloendi omadused',type:'Liik',start:'Algus',validateStartNumber:'Loendi algusnumber peab olema täisarv.',circle:'Ring',disc:'Täpp',square:'Ruut',none:'Puudub',notset:'<pole määratud>',armenian:'Armeenia numbrid',georgian:'Gruusia numbrid (an, ban, gan, jne)',lowerRoman:'Väiksed rooma numbrid (i, ii, iii, iv, v, jne)',upperRoman:'Suured rooma numbrid (I, II, III, IV, V, jne)',lowerAlpha:'Väiketähed (a, b, c, d, e, jne)',upperAlpha:'Suurtähed (A, B, C, D, E, jne)',lowerGreek:'Kreeka väiketähed (alpha, beta, gamma, jne)',decimal:'Numbrid (1, 2, 3, jne)',decimalLeadingZero:'Numbrid algusnulliga (01, 02, 03, jne)'},findAndReplace:{title:'Otsimine ja asendamine',find:'Otsi',replace:'Asenda',findWhat:'Otsitav:',replaceWith:'Asendus:',notFoundMsg:'Otsitud teksti ei leitud.',findOptions:'Otsingu valikud',matchCase:'Suur- ja väiketähtede eristamine',matchWord:'Ainult terved sõnad',matchCyclic:'Jätkatakse algusest',replaceAll:'Asenda kõik',replaceSuccessMsg:'%1 vastet asendati.'},table:{toolbar:'Tabel',title:'Tabeli omadused',menu:'Tabeli omadused',deleteTable:'Kustuta tabel',rows:'Read',columns:'Veerud',border:'Joone suurus',widthPx:'pikslit',widthPc:'protsenti',widthUnit:'laiuse ühik',cellSpace:'Lahtri vahe',cellPad:'Lahtri täidis',caption:'Tabeli tiitel',summary:'Kokkuvõte',headers:'Päised',headersNone:'Puudub',headersColumn:'Esimene tulp',headersRow:'Esimene rida',headersBoth:'Mõlemad',invalidRows:'Ridade arv peab olema nullist suurem.',invalidCols:'Tulpade arv peab olema nullist suurem.',invalidBorder:'Äärise suurus peab olema number.',invalidWidth:'Tabeli laius peab olema number.',invalidHeight:'Tabeli kõrgus peab olema number.',invalidCellSpacing:'Lahtrite vahe peab olema positiivne arv.',invalidCellPadding:'Lahtrite polsterdus (padding) peab olema positiivne arv.',cell:{menu:'Lahter',insertBefore:'Sisesta lahter enne',insertAfter:'Sisesta lahter peale',deleteCell:'Eemalda lahtrid',merge:'Ühenda lahtrid',mergeRight:'Ühenda paremale',mergeDown:'Ühenda alla',splitHorizontal:'Poolita lahter horisontaalselt',splitVertical:'Poolita lahter vertikaalselt',title:'Lahtri omadused',cellType:'Lahtri liik',rowSpan:'Ridade vahe',colSpan:'Tulpade vahe',wordWrap:'Sõnade murdmine',hAlign:'Horisontaalne joondus',vAlign:'Vertikaalne joondus',alignBaseline:'Baasjoon',bgColor:'Tausta värv',borderColor:'Äärise värv',data:'Andmed',header:'Päis',yes:'Jah',no:'Ei',invalidWidth:'Lahtri laius peab olema number.',invalidHeight:'Lahtri kõrgus peab olema number.',invalidRowSpan:'Ridade vahe peab olema täisarv.',invalidColSpan:'Tulpade vahe peab olema täisarv.',chooseColor:'Vali'},row:{menu:'Rida',insertBefore:'Sisesta rida enne',insertAfter:'Sisesta rida peale',deleteRow:'Eemalda read'},column:{menu:'Veerg',insertBefore:'Sisesta veerg enne',insertAfter:'Sisesta veerg peale',deleteColumn:'Eemalda veerud'}},button:{title:'Nupu omadused',text:'Tekst (väärtus)',type:'Liik',typeBtn:'Nupp',typeSbm:'Saada',typeRst:'Lähtesta'},checkboxAndRadio:{checkboxTitle:'Märkeruudu omadused',radioTitle:'Raadionupu omadused',value:'Väärtus',selected:'Märgitud'},form:{title:'Vormi omadused',menu:'Vormi omadused',action:'Toiming',method:'Meetod',encoding:'Kodeering'},select:{title:'Valiklahtri omadused',selectInfo:'Info',opAvail:'Võimalikud valikud:',value:'Väärtus',size:'Suurus',lines:'ridu',chkMulti:'Võimalik mitu valikut',opText:'Tekst',opValue:'Väärtus',btnAdd:'Lisa',btnModify:'Muuda',btnUp:'Üles',btnDown:'Alla',btnSetValue:'Määra vaikimisi',btnDelete:'Kustuta'},textarea:{title:'Tekstiala omadused',cols:'Veerge',rows:'Ridu'},textfield:{title:'Tekstilahtri omadused',name:'Nimi',value:'Väärtus',charWidth:'Laius (tähemärkides)',maxChars:'Maksimaalselt tähemärke',type:'Liik',typeText:'Tekst',typePass:'Parool'},hidden:{title:'Varjatud lahtri omadused',name:'Nimi',value:'Väärtus'},image:{title:'Pildi omadused',titleButton:'Piltnupu omadused',menu:'Pildi omadused',infoTab:'Pildi info',btnUpload:'Saada serverisse',upload:'Lae üles',alt:'Alternatiivne tekst',lockRatio:'Lukusta kuvasuhe',resetSize:'Lähtesta suurus',border:'Joon',hSpace:'H. vaheruum',vSpace:'V. vaheruum',alertUrl:'Palun kirjuta pildi URL',linkTab:'Link',button2Img:'Kas tahad teisendada valitud pildiga nupu tavaliseks pildiks?',img2Button:'Kas tahad teisendada valitud tavalise pildi pildiga nupuks?',urlMissing:'Pildi lähte-URL on puudu.',validateBorder:'Äärise laius peab olema täisarv.',validateHSpace:'Horisontaalne vaheruum peab olema täisarv.',validateVSpace:'Vertikaalne vaheruum peab olema täisarv.'},flash:{properties:'Flashi omadused',propertiesTab:'Omadused',title:'Flashi omadused',chkPlay:'Automaatne start ',chkLoop:'Korduv',chkMenu:'Flashi menüü lubatud',chkFull:'Täisekraan lubatud',scale:'Mastaap',scaleAll:'Näidatakse kõike',scaleNoBorder:'Äärist ei ole',scaleFit:'Täpne sobivus',access:'Skriptide ligipääs',accessAlways:'Kõigile',accessSameDomain:'Samalt domeenilt',accessNever:'Mitte ühelegi',alignAbsBottom:'Abs alla',alignAbsMiddle:'Abs keskele',alignBaseline:'Baasjoonele',alignTextTop:'Tekstist üles',quality:'Kvaliteet',qualityBest:'Parim',qualityHigh:'Kõrge',qualityAutoHigh:'Automaatne kõrge',qualityMedium:'Keskmine',qualityAutoLow:'Automaatne madal',qualityLow:'Madal',windowModeWindow:'Aken',windowModeOpaque:'Läbipaistmatu',windowModeTransparent:'Läbipaistev',windowMode:'Akna režiim',flashvars:'Flashi muutujad',bgcolor:'Tausta värv',hSpace:'H. vaheruum',vSpace:'V. vaheruum',validateSrc:'Palun kirjuta lingi URL',validateHSpace:'H. vaheruum peab olema number.',validateVSpace:'V. vaheruum peab olema number.'},spellCheck:{toolbar:'Õigekirjakontroll',title:'Õigekirjakontroll',notAvailable:'Kahjuks ei ole teenus praegu saadaval.',errorLoading:'Viga rakenduse teenushosti laadimisel: %s.',notInDic:'Puudub sõnastikust',changeTo:'Muuda',btnIgnore:'Ignoreeri',btnIgnoreAll:'Ignoreeri kõiki',btnReplace:'Asenda',btnReplaceAll:'Asenda kõik',btnUndo:'Võta tagasi',noSuggestions:'- Soovitused puuduvad -',progress:'Toimub õigekirja kontroll...',noMispell:'Õigekirja kontroll sooritatud: õigekirjuvigu ei leitud',noChanges:'Õigekirja kontroll sooritatud: ühtegi sõna ei muudetud',oneChange:'Õigekirja kontroll sooritatud: üks sõna muudeti',manyChanges:'Õigekirja kontroll sooritatud: %1 sõna muudetud',ieSpellDownload:'Õigekirja kontrollija ei ole paigaldatud. Soovid sa selle alla laadida?'},smiley:{toolbar:'Emotikon',title:'Sisesta emotikon',options:'Emotikonide valikud'},elementsPath:{eleLabel:'Elementide asukoht',eleTitle:'%1 element'},numberedlist:'Numberloend',bulletedlist:'Punktloend',indent:'Taande suurendamine',outdent:'Taande vähendamine',justify:{left:'Vasakjoondus',center:'Keskjoondus',right:'Paremjoondus',block:'Rööpjoondus'},blockquote:'Blokktsitaat',clipboard:{title:'Asetamine',cutError:'Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt lõigata. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl/Cmd+X).',copyError:'Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt kopeerida. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl/Cmd+C).',pasteMsg:'Palun aseta tekst järgnevasse kasti kasutades klaviatuuri klahvikombinatsiooni (<STRONG>Ctrl/Cmd+V</STRONG>) ja vajuta seejärel <STRONG>OK</STRONG>.',securityMsg:'Sinu veebisirvija turvaseadete tõttu ei oma redaktor otsest ligipääsu lõikelaua andmetele. Sa pead asetama need uuesti siia aknasse.',pasteArea:'Asetamise ala'},pastefromword:{confirmCleanup:'Tekst, mida tahad asetada näib pärinevat Wordist. Kas tahad selle enne asetamist puhastada?',toolbar:'Asetamine Wordist',title:'Asetamine Wordist',error:'Asetatud andmete puhastamine ei olnud sisemise vea tõttu võimalik'},pasteText:{button:'Asetamine tavalise tekstina',title:'Asetamine tavalise tekstina'},templates:{button:'Mall',title:'Sisumallid',options:'Malli valikud',insertOption:'Praegune sisu asendatakse',selectPromptMsg:'Palun vali mall, mis avada redaktoris<br />(praegune sisu läheb kaotsi):',emptyListMsg:'(Ühtegi malli ei ole defineeritud)'},showBlocks:'Blokkide näitamine',stylesCombo:{label:'Stiil',panelTitle:'Vormindusstiilid',panelTitle1:'Blokkstiilid',panelTitle2:'Reasisesed stiilid',panelTitle3:'Objektistiilid'},format:{label:'Vorming',panelTitle:'Vorming',tag_p:'Tavaline',tag_pre:'Vormindatud',tag_address:'Aadress',tag_h1:'Pealkiri 1',tag_h2:'Pealkiri 2',tag_h3:'Pealkiri 3',tag_h4:'Pealkiri 4',tag_h5:'Pealkiri 5',tag_h6:'Pealkiri 6',tag_div:'Tavaline (DIV)'},div:{title:'Div-konteineri loomine',toolbar:'Div-konteineri loomine',cssClassInputLabel:'Stiililehe klassid',styleSelectLabel:'Stiil',IdInputLabel:'ID',languageCodeInputLabel:' Keelekood',inlineStyleInputLabel:'Reasisene stiil',advisoryTitleInputLabel:'Soovitatav pealkiri',langDirLabel:'Keele suund',langDirLTRLabel:'Vasakult paremale (LTR)',langDirRTLLabel:'Paremalt vasakule (RTL)',edit:'Muuda Div',remove:'Eemalda Div'},iframe:{title:'IFrame omadused',toolbar:'IFrame',noUrl:'Vali iframe URLi liik',scrolling:'Kerimisribade lubamine',border:'Raami äärise näitamine'},font:{label:'Kiri',voiceLabel:'Kiri',panelTitle:'Kiri'},fontSize:{label:'Suurus',voiceLabel:'Kirja suurus',panelTitle:'Suurus'},colorButton:{textColorTitle:'Teksti värv',bgColorTitle:'Tausta värv',panelTitle:'Värvid',auto:'Automaatne',more:'Rohkem värve...'},colors:{'000':'Must',800000:'Kastanpruun','8B4513':'Sadulapruun','2F4F4F':'Tume paehall','008080':'Sinakasroheline','000080':'Meresinine','4B0082':'Indigosinine',696969:'Tumehall',B22222:'Šamottkivi',A52A2A:'Pruun',DAA520:'Kuldkollane','006400':'Tumeroheline','40E0D0':'Türkiissinine','0000CD':'Keskmine sinine',800080:'Lilla',808080:'Hall',F00:'Punanae',FF8C00:'Tumeoranž',FFD700:'Kuldne','008000':'Roheline','0FF':'Tsüaniidsinine','00F':'Sinine',EE82EE:'Violetne',A9A9A9:'Tuhm hall',FFA07A:'Hele lõhe',FFA500:'Oranž',FFFF00:'Kollane','00FF00':'Lubja hall',AFEEEE:'Kahvatu türkiis',ADD8E6:'Helesinine',DDA0DD:'Ploomililla',D3D3D3:'Helehall',FFF0F5:'Lavendlipunane',FAEBD7:'Antiikvalge',FFFFE0:'Helekollane',F0FFF0:'Meloniroheline',F0FFFF:'Taevasinine',F0F8FF:'Beebisinine',E6E6FA:'Lavendel',FFF:'Valge'},scayt:{title:'Õigekirjakontroll kirjutamise ajal',opera_title:'Operas pole toetatud',enable:'SCAYT lubatud',disable:'SCAYT keelatud',about:'SCAYT-ist lähemalt',toggle:'SCAYT sisse/välja lülitamine',options:'Valikud',langs:'Keeled',moreSuggestions:'Veel soovitusi',ignore:'Eira',ignoreAll:'Eira kõiki',addWord:'Lisa sõna',emptyDic:'Sõnaraamatu nimi ei tohi olla tühi.',noSuggestions:'No suggestions',optionsTab:'Valikud',allCaps:'Läbivate suurtähtedega sõnade eiramine',ignoreDomainNames:'Domeeninimede eiramine',mixedCase:'Tavapäratu tõstuga sõnade eiramine',mixedWithDigits:'Numbreid sisaldavate sõnade eiramine',languagesTab:'Keeled',dictionariesTab:'Sõnaraamatud',dic_field_name:'Sõnaraamatu nimi',dic_create:'Loo',dic_restore:'Taasta',dic_delete:'Kustuta',dic_rename:'Nimeta ümber',dic_info:'Alguses säilitatakse kasutaja sõnaraamatut küpsises. Küpsise suurus on piiratud. Pärast sõnaraamatu kasvamist nii suureks, et see küpsisesse ei mahu, võib sõnaraamatut hoida meie serveris. Oma isikliku sõnaraamatu hoidmiseks meie serveris pead andma sellele nime. Kui sa juba oled sõnaraamatu salvestanud, sisesta selle nimi ja klõpsa taastamise nupule.',aboutTab:'Lähemalt'},about:{title:'CKEditorist',dlgTitle:'CKEditorist',help:'Abi jaoks vaata $1.',userGuide:'CKEditori kasutusjuhendit',moreInfo:'Litsentsi andmed leiab meie veebilehelt:',copy:'Copyright © $1. Kõik õigused kaitstud.'},maximize:'Maksimeerimine',minimize:'Minimeerimine',fakeobjects:{anchor:'Ankur',flash:'Flashi animatsioon',iframe:'IFrame',hiddenfield:'Varjatud väli',unknown:'Tundmatu objekt'},resize:'Suuruse muutmiseks lohista',colordialog:{title:'Värvi valimine',options:'Värvi valikud',highlight:'Näidis',selected:'Valitud värv',clear:'Eemalda'},toolbarCollapse:'Tööriistariba peitmine',toolbarExpand:'Tööriistariba näitamine',toolbarGroups:{document:'Dokument',clipboard:'Lõikelaud/tagasivõtmine',editing:'Muutmine',forms:'Vormid',basicstyles:'Põhistiilid',paragraph:'Lõik',links:'Lingid',insert:'Sisesta',styles:'Stiilid',colors:'Värvid',tools:'Tööriistad'},bidi:{ltr:'Teksti suund vasakult paremale',rtl:'Teksti suund paremalt vasakule'},docprops:{label:'Dokumendi omadused',title:'Dokumendi omadused',design:'Disain',meta:'Meta andmed',chooseColor:'Vali',other:'<muu>',docTitle:'Lehekülje tiitel',charset:'Märgistiku kodeering',charsetOther:'Ülejäänud märgistike kodeeringud',charsetASCII:'ASCII',charsetCE:'Kesk-Euroopa',charsetCT:'Hiina traditsiooniline (Big5)',charsetCR:'Kirillisa',charsetGR:'Kreeka',charsetJP:'Jaapani',charsetKR:'Korea',charsetTR:'Türgi',charsetUN:'Unicode (UTF-8)',charsetWE:'Lääne-Euroopa',docType:'Dokumendi tüüppäis',docTypeOther:'Teised dokumendi tüüppäised',xhtmlDec:'Arva kaasa XHTML deklaratsioonid',bgColor:'Taustavärv',bgImage:'Taustapildi URL',bgFixed:'Mittekeritav tagataust',txtColor:'Teksti värv',margin:'Lehekülje äärised',marginTop:'Ülaserv',marginLeft:'Vasakserv',marginRight:'Paremserv',marginBottom:'Alaserv',metaKeywords:'Dokumendi võtmesõnad (eraldatud komadega)',metaDescription:'Dokumendi kirjeldus',metaAuthor:'Autor',metaCopyright:'Autoriõigus',previewHtml:'<p>See on <strong>näidistekst</strong>. Sa kasutad <a href="javascript:void(0)">CKEditori</a>.</p>'}}; �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/gu.js��������������������������������������������0000664�0001750�0001750�00000076253�12262650742�021763� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.gu={dir:'ltr',editorTitle:'રીચ ટેક્ષ્ત્ એડિટર, %1',editorHelp:'પ્રેસ ALT 0 મદદ માટ',toolbars:'એડીટર ટૂલ બાર',editor:'રીચ ટેક્ષ્ત્ એડીટર',source:'મૂળ કે પ્રાથમિક દસ્તાવેજ',newPage:'નવુ પાનું',save:'સેવ',preview:'પૂર્વદર્શન',cut:'કાપવું',copy:'નકલ',paste:'પેસ્ટ',print:'પ્રિન્ટ',underline:'અન્ડર્લાઇન, નીચે લીટી',bold:'બોલ્ડ/સ્પષ્ટ',italic:'ઇટેલિક, ત્રાંસા',selectAll:'બઘું પસંદ કરવું',removeFormat:'ફૉર્મટ કાઢવું',strike:'છેકી નાખવું',subscript:'એક ચિહ્નની નીચે કરેલું બીજું ચિહ્ન',superscript:'એક ચિહ્ન ઉપર કરેલું બીજું ચિહ્ન.',horizontalrule:'સમસ્તરીય રેખા ઇન્સર્ટ/દાખલ કરવી',pagebreak:'ઇન્સર્ટ પેજબ્રેક/પાનાને અલગ કરવું/દાખલ કરવું',pagebreakAlt:'નવું પાનું',unlink:'લિંક કાઢવી',undo:'રદ કરવું; પહેલાં હતી એવી સ્થિતિ પાછી લાવવી',redo:'રિડૂ; પછી હતી એવી સ્થિતિ પાછી લાવવી',common:{browseServer:'સર્વર બ્રાઉઝ કરો',url:'URL',protocol:'પ્રોટોકૉલ',upload:'અપલોડ',uploadSubmit:'આ સર્વરને મોકલવું',image:'ચિત્ર',flash:'ફ્લૅશ',form:'ફૉર્મ/પત્રક',checkbox:'ચેક બોક્સ',radio:'રેડિઓ બટન',textField:'ટેક્સ્ટ ફીલ્ડ, શબ્દ ક્ષેત્ર',textarea:'ટેક્સ્ટ એરિઆ, શબ્દ વિસ્તાર',hiddenField:'ગુપ્ત ક્ષેત્ર',button:'બટન',select:'પસંદગી ક્ષેત્ર',imageButton:'ચિત્ર બટન',notSet:'<સેટ નથી>',id:'Id',name:'નામ',langDir:'ભાષા લેખવાની પદ્ધતિ',langDirLtr:'ડાબે થી જમણે (LTR)',langDirRtl:'જમણે થી ડાબે (RTL)',langCode:'ભાષા કોડ',longDescr:'વધારે માહિતી માટે URL',cssClass:'સ્ટાઇલ-શીટ ક્લાસ',advisoryTitle:'મુખ્ય મથાળું',cssStyle:'સ્ટાઇલ',ok:'ઠીક છે',cancel:'રદ કરવું',close:'બંધ કરવું',preview:'જોવું',generalTab:'જનરલ',advancedTab:'અડ્વાન્સડ',validateNumberFailed:'આ રકમ આકડો નથી.',confirmNewPage:'સવે કાર્ય વગરનું ફકરો ખોવાઈ જશે. તમને ખાતરી છે કે તમને નવું પાનું ખોલવું છે?',confirmCancel:'ઘણા વિકલ્પો બદલાયા છે. તમારે આ બોક્ષ્ બંધ કરવું છે?',options:'વિકલ્પો',target:'લક્ષ્ય',targetNew:'નવી વિન્ડો (_blank)',targetTop:'ઉપરની વિન્ડો (_top)',targetSelf:'એજ વિન્ડો (_self)',targetParent:'પેરનટ વિન્ડો (_parent)',langDirLTR:'ડાબે થી જમણે (LTR)',langDirRTL:'જમણે થી ડાબે (RTL)',styles:'શૈલી',cssClasses:'શૈલી કલાસીસ',width:'પહોળાઈ',height:'ઊંચાઈ',align:'લાઇનદોરીમાં ગોઠવવું',alignLeft:'ડાબી બાજુ ગોઠવવું',alignRight:'જમણી',alignCenter:'મધ્ય સેન્ટર',alignTop:'ઉપર',alignMiddle:'વચ્ચે',alignBottom:'નીચે',invalidValue:'Invalid value.',invalidHeight:'ઉંચાઈ એક આંકડો હોવો જોઈએ.',invalidWidth:'પોહળ ઈ એક આંકડો હોવો જોઈએ.',invalidCssLength:'"%1" ની વેલ્યુ એક પોસીટીવ આંકડો હોવો જોઈએ અથવા CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc) વગર.',invalidHtmlLength:'"%1" ની વેલ્યુ એક પોસીટીવ આંકડો હોવો જોઈએ અથવા HTML measurement unit (px or %) વગર.',invalidInlineStyle:'ઈનલાઈન સ્ટાઈલ ની વેલ્યુ "name : value" ના ફોર્મેટ માં હોવી જોઈએ, વચ્ચે સેમી-કોલોન જોઈએ.',cssLengthTooltip:'પિક્ષ્લ્ નો આંકડો CSS unit (px, %, in, cm, mm, em, ex, pt, or pc) માં નાખો.',unavailable:'%1<span class="cke_accessibility">, નથી મળતું</span>'},contextmenu:{options:'કોન્તેક્ષ્ત્ મેનુના વિકલ્પો'},specialChar:{toolbar:'વિશિષ્ટ અક્ષર ઇન્સર્ટ/દાખલ કરવું',title:'સ્પેશિઅલ વિશિષ્ટ અક્ષર પસંદ કરો',options:'સ્પેશિઅલ કરેક્ટરના વિકલ્પો'},link:{toolbar:'લિંક ઇન્સર્ટ/દાખલ કરવી',other:'<other> <અન્ય>',menu:' લિંક એડિટ/માં ફેરફાર કરવો',title:'લિંક',info:'લિંક ઇન્ફૉ ટૅબ',target:'ટાર્ગેટ/લક્ષ્ય',upload:'અપલોડ',advanced:'અડ્વાન્સડ',type:'લિંક પ્રકાર',toUrl:'URL',toAnchor:'આ પેજનો ઍંકર',toEmail:'ઈ-મેલ',targetFrame:'<ફ્રેમ>',targetPopup:'<પૉપ-અપ વિન્ડો>',targetFrameName:'ટાર્ગેટ ફ્રેમ નું નામ',targetPopupName:'પૉપ-અપ વિન્ડો નું નામ',popupFeatures:'પૉપ-અપ વિન્ડો ફીચરસૅ',popupResizable:'રીસાઈઝએબલ',popupStatusBar:'સ્ટૅટસ બાર',popupLocationBar:'લોકેશન બાર',popupToolbar:'ટૂલ બાર',popupMenuBar:'મેન્યૂ બાર',popupFullScreen:'ફુલ સ્ક્રીન (IE)',popupScrollBars:'સ્ક્રોલ બાર',popupDependent:'ડિપેન્ડન્ટ (Netscape)',popupLeft:'ડાબી બાજુ',popupTop:'જમણી બાજુ',id:'Id',langDir:'ભાષા લેખવાની પદ્ધતિ',langDirLTR:'ડાબે થી જમણે (LTR)',langDirRTL:'જમણે થી ડાબે (RTL)',acccessKey:'ઍક્સેસ કી',name:'નામ',langCode:'ભાષા લેખવાની પદ્ધતિ',tabIndex:'ટૅબ ઇન્ડેક્સ',advisoryTitle:'મુખ્ય મથાળું',advisoryContentType:'મુખ્ય કન્ટેન્ટ પ્રકાર',cssClasses:'સ્ટાઇલ-શીટ ક્લાસ',charset:'લિંક રિસૉર્સ કૅરિક્ટર સેટ',styles:'સ્ટાઇલ',rel:'સંબંધની સ્થિતિ',selectAnchor:'ઍંકર પસંદ કરો',anchorName:'ઍંકર નામથી પસંદ કરો',anchorId:'ઍંકર એલિમન્ટ Id થી પસંદ કરો',emailAddress:'ઈ-મેલ સરનામું',emailSubject:'ઈ-મેલ વિષય',emailBody:'સંદેશ',noAnchors:'(ડૉક્યુમન્ટમાં ઍંકરની સંખ્યા)',noUrl:'લિંક URL ટાઇપ કરો',noEmail:'ઈ-મેલ સરનામું ટાઇપ કરો'},anchor:{toolbar:'ઍંકર ઇન્સર્ટ/દાખલ કરવી',menu:'ઍંકરના ગુણ',title:'ઍંકરના ગુણ',name:'ઍંકરનું નામ',errorName:'ઍંકરનું નામ ટાઈપ કરો',remove:'સ્થિર નકરવું'},list:{numberedTitle:'આંકડાના લીસ્ટના ગુણ',bulletedTitle:'બુલેટેડ લીસ્ટના ગુણ',type:'પ્રકાર',start:'શરુ કરવું',validateStartNumber:'લીસ્ટના સરુઆતનો આંકડો પુરો હોવો જોઈએ.',circle:'વર્તુળ',disc:'ડિસ્ક',square:'ચોરસ',none:'કસુ ',notset:'<સેટ નથી>',armenian:'અરમેનિયન આંકડા પદ્ધતિ',georgian:'ગેઓર્ગિયન આંકડા પદ્ધતિ (an, ban, gan, etc.)',lowerRoman:'રોમન નાના (i, ii, iii, iv, v, etc.)',upperRoman:'રોમન મોટા (I, II, III, IV, V, etc.)',lowerAlpha:'આલ્ફા નાના (a, b, c, d, e, etc.)',upperAlpha:'આલ્ફા મોટા (A, B, C, D, E, etc.)',lowerGreek:'ગ્રીક નાના (alpha, beta, gamma, etc.)',decimal:'આંકડા (1, 2, 3, etc.)',decimalLeadingZero:'સુન્ય આગળ આંકડા (01, 02, 03, etc.)'},findAndReplace:{title:'શોધવું અને બદલવું',find:'શોધવું',replace:'રિપ્લેસ/બદલવું',findWhat:'આ શોધો',replaceWith:'આનાથી બદલો',notFoundMsg:'તમે શોધેલી ટેક્સ્ટ નથી મળી',findOptions:'વીકલ્પ શોધો',matchCase:'કેસ સરખા રાખો',matchWord:'બઘા શબ્દ સરખા રાખો',matchCyclic:'સરખાવવા બધા',replaceAll:'બઘા બદલી ',replaceSuccessMsg:'%1 ફેરફારો બાદલાયા છે.'},table:{toolbar:'ટેબલ, કોઠો',title:'ટેબલ, કોઠાનું મથાળું',menu:'ટેબલ, કોઠાનું મથાળું',deleteTable:'કોઠો ડિલીટ/કાઢી નાખવું',rows:'પંક્તિના ખાના',columns:'કૉલમ/ઊભી કટાર',border:'કોઠાની બાજુ(બોર્ડર) સાઇઝ',widthPx:'પિકસલ',widthPc:'પ્રતિશત',widthUnit:'પોહાલાઈ એકમ',cellSpace:'સેલ અંતર',cellPad:'સેલ પૅડિંગ',caption:'મથાળું/કૅપ્શન ',summary:'ટૂંકો એહેવાલ',headers:'મથાળા',headersNone:'નથી ',headersColumn:'પહેલી ઊભી કટાર',headersRow:'પહેલી કટાર',headersBoth:'બેવું',invalidRows:'આડી કટાર, 0 કરતા વધારે હોવી જોઈએ.',invalidCols:'ઉભી કટાર, 0 કરતા વધારે હોવી જોઈએ.',invalidBorder:'બોર્ડર એક આંકડો હોવો જોઈએ',invalidWidth:'ટેબલની પોહલાઈ આંકડો હોવો જોઈએ.',invalidHeight:'ટેબલની ઊંચાઈ આંકડો હોવો જોઈએ.',invalidCellSpacing:'સેલ વચ્ચેની જગ્યા સુન્ય કરતા વધારે હોવી જોઈએ.',invalidCellPadding:'સેલની અંદરની જગ્યા સુન્ય કરતા વધારે હોવી જોઈએ.',cell:{menu:'કોષના ખાના',insertBefore:'પહેલાં કોષ ઉમેરવો',insertAfter:'પછી કોષ ઉમેરવો',deleteCell:'કોષ ડિલીટ/કાઢી નાખવો',merge:'કોષ ભેગા કરવા',mergeRight:'જમણી બાજુ ભેગા કરવા',mergeDown:'નીચે ભેગા કરવા',splitHorizontal:'કોષને સમસ્તરીય વિભાજન કરવું',splitVertical:'કોષને સીધું ને ઊભું વિભાજન કરવું',title:'સેલના ગુણ',cellType:'સેલનો પ્રકાર',rowSpan:'આડી કટારની જગ્યા',colSpan:'ઊભી કતારની જગ્યા',wordWrap:'વર્ડ રેપ',hAlign:'સપાટ લાઈનદોરી',vAlign:'ઊભી લાઈનદોરી',alignBaseline:'બસે લાઈન',bgColor:'પાછાળનો રંગ',borderColor:'બોર્ડેર રંગ',data:'સ્વીકૃત માહિતી',header:'મથાળું',yes:'હા',no:'ના',invalidWidth:'સેલની પોહલાઈ આંકડો હોવો જોઈએ.',invalidHeight:'સેલની ઊંચાઈ આંકડો હોવો જોઈએ.',invalidRowSpan:'રો સ્પાન આંકડો હોવો જોઈએ.',invalidColSpan:'કોલમ સ્પાન આંકડો હોવો જોઈએ.',chooseColor:'પસંદ કરવું'},row:{menu:'પંક્તિના ખાના',insertBefore:'પહેલાં પંક્તિ ઉમેરવી',insertAfter:'પછી પંક્તિ ઉમેરવી',deleteRow:'પંક્તિઓ ડિલીટ/કાઢી નાખવી'},column:{menu:'કૉલમ/ઊભી કટાર',insertBefore:'પહેલાં કૉલમ/ઊભી કટાર ઉમેરવી',insertAfter:'પછી કૉલમ/ઊભી કટાર ઉમેરવી',deleteColumn:'કૉલમ/ઊભી કટાર ડિલીટ/કાઢી નાખવી'}},button:{title:'બટનના ગુણ',text:'ટેક્સ્ટ (વૅલ્યૂ)',type:'પ્રકાર',typeBtn:'બટન',typeSbm:'સબ્મિટ',typeRst:'રિસેટ'},checkboxAndRadio:{checkboxTitle:'ચેક બોક્સ ગુણ',radioTitle:'રેડિઓ બટનના ગુણ',value:'વૅલ્યૂ',selected:'સિલેક્ટેડ'},form:{title:'ફૉર્મ/પત્રકના ગુણ',menu:'ફૉર્મ/પત્રકના ગુણ',action:'ક્રિયા',method:'પદ્ધતિ',encoding:'અન્કોડીન્ગ'},select:{title:'પસંદગી ક્ષેત્રના ગુણ',selectInfo:'સૂચના',opAvail:'ઉપલબ્ધ વિકલ્પ',value:'વૅલ્યૂ',size:'સાઇઝ',lines:'લીટીઓ',chkMulti:'એકથી વધારે પસંદ કરી શકો',opText:'ટેક્સ્ટ',opValue:'વૅલ્યૂ',btnAdd:'ઉમેરવું',btnModify:'બદલવું',btnUp:'ઉપર',btnDown:'નીચે',btnSetValue:'પસંદ કરલી વૅલ્યૂ સેટ કરો',btnDelete:'રદ કરવું'},textarea:{title:'ટેક્સ્ટ એઅરિઆ, શબ્દ વિસ્તારના ગુણ',cols:'કૉલમ/ઊભી કટાર',rows:'પંક્તિઓ'},textfield:{title:'ટેક્સ્ટ ફીલ્ડ, શબ્દ ક્ષેત્રના ગુણ',name:'નામ',value:'વૅલ્યૂ',charWidth:'કેરેક્ટરની પહોળાઈ',maxChars:'અધિકતમ કેરેક્ટર',type:'ટાઇપ',typeText:'ટેક્સ્ટ',typePass:'પાસવર્ડ'},hidden:{title:'ગુપ્ત ક્ષેત્રના ગુણ',name:'નામ',value:'વૅલ્યૂ'},image:{title:'ચિત્રના ગુણ',titleButton:'ચિત્ર બટનના ગુણ',menu:'ચિત્રના ગુણ',infoTab:'ચિત્ર ની જાણકારી',btnUpload:'આ સર્વરને મોકલવું',upload:'અપલોડ',alt:'ઑલ્ટર્નટ ટેક્સ્ટ',lockRatio:'લૉક ગુણોત્તર',resetSize:'રીસેટ સાઇઝ',border:'બોર્ડર',hSpace:'સમસ્તરીય જગ્યા',vSpace:'લંબરૂપ જગ્યા',alertUrl:'ચિત્રની URL ટાઇપ કરો',linkTab:'લિંક',button2Img:'તમારે ઈમેજ બટનને સાદી ઈમેજમાં બદલવું છે.',img2Button:'તમારે સાદી ઈમેજને ઈમેજ બટનમાં બદલવું છે.',urlMissing:'ઈમેજની મૂળ URL છે નહી.',validateBorder:'બોર્ડેર આંકડો હોવો જોઈએ.',validateHSpace:'HSpaceઆંકડો હોવો જોઈએ.',validateVSpace:'VSpace આંકડો હોવો જોઈએ. '},flash:{properties:'ફ્લૅશના ગુણ',propertiesTab:'ગુણ',title:'ફ્લૅશ ગુણ',chkPlay:'ઑટો/સ્વયં પ્લે',chkLoop:'લૂપ',chkMenu:'ફ્લૅશ મેન્યૂ નો પ્રયોગ કરો',chkFull:'ફૂલ સ્ક્રીન કરવું',scale:'સ્કેલ',scaleAll:'સ્કેલ ઓલ/બધુ બતાવો',scaleNoBorder:'સ્કેલ બોર્ડર વગર',scaleFit:'સ્કેલ એકદમ ફીટ',access:'સ્ક્રીપ્ટ એક્સેસ',accessAlways:'હમેશાં',accessSameDomain:'એજ ડોમેન',accessNever:'નહી',alignAbsBottom:'Abs નીચે',alignAbsMiddle:'Abs ઉપર',alignBaseline:'આધાર લીટી',alignTextTop:'ટેક્સ્ટ ઉપર',quality:'ગુણધર્મ',qualityBest:'શ્રેષ્ઠ',qualityHigh:'ઊંચું',qualityAutoHigh:'ઓટો ઊંચું',qualityMedium:'મધ્યમ',qualityAutoLow:'ઓટો નીચું',qualityLow:'નીચું',windowModeWindow:'વિન્ડો',windowModeOpaque:'અપારદર્શક',windowModeTransparent:'પારદર્શક',windowMode:'વિન્ડો મોડ',flashvars:'ફલેશ ના વિકલ્પો',bgcolor:'બૅકગ્રાઉન્ડ રંગ,',hSpace:'સમસ્તરીય જગ્યા',vSpace:'લંબરૂપ જગ્યા',validateSrc:'લિંક URL ટાઇપ કરો',validateHSpace:'HSpace આંકડો હોવો જોઈએ.',validateVSpace:'VSpace આંકડો હોવો જોઈએ.'},spellCheck:{toolbar:'જોડણી (સ્પેલિંગ) તપાસવી',title:'સ્પેલ ',notAvailable:'માફ કરશો, આ સુવિધા ઉપલબ્ધ નથી',errorLoading:'સર્વિસ એપ્લીકેશન લોડ નથી થ: %s.',notInDic:'શબ્દકોશમાં નથી',changeTo:'આનાથી બદલવું',btnIgnore:'ઇગ્નોર/અવગણના કરવી',btnIgnoreAll:'બધાની ઇગ્નોર/અવગણના કરવી',btnReplace:'બદલવું',btnReplaceAll:'બધા બદલી કરો',btnUndo:'અન્ડૂ',noSuggestions:'- કઇ સજેશન નથી -',progress:'શબ્દની જોડણી/સ્પેલ ચેક ચાલુ છે...',noMispell:'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: ખોટી જોડણી મળી નથી',noChanges:'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એકપણ શબ્દ બદલયો નથી',oneChange:'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એક શબ્દ બદલયો છે',manyChanges:'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: %1 શબ્દ બદલયા છે',ieSpellDownload:'સ્પેલ-ચેકર ઇન્સ્ટોલ નથી. શું તમે ડાઉનલોડ કરવા માંગો છો?'},smiley:{toolbar:'સ્માઇલી',title:'સ્માઇલી પસંદ કરો',options:'સમ્ય્લી વિકલ્પો'},elementsPath:{eleLabel:'એલીમેન્ટ્સ નો ',eleTitle:'એલીમેન્ટ %1'},numberedlist:'સંખ્યાંકન સૂચિ',bulletedlist:'બુલેટ સૂચિ',indent:'ઇન્ડેન્ટ, લીટીના આરંભમાં જગ્યા વધારવી',outdent:'ઇન્ડેન્ટ લીટીના આરંભમાં જગ્યા ઘટાડવી',justify:{left:'ડાબી બાજુએ/બાજુ તરફ',center:'સંકેંદ્રણ/સેંટરિંગ',right:'જમણી બાજુએ/બાજુ તરફ',block:'બ્લૉક, અંતરાય જસ્ટિફાઇ'},blockquote:'બ્લૉક-કોટ, અવતરણચિહ્નો',clipboard:{title:'પેસ્ટ',cutError:'તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસ કટ કરવાની પરવાનગી નથી આપતી. (Ctrl/Cmd+X) નો ઉપયોગ કરો.',copyError:'તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસ કોપી કરવાની પરવાનગી નથી આપતી. (Ctrl/Cmd+C) का प्रयोग करें।',pasteMsg:'Ctrl/Cmd+V નો પ્રયોગ કરી પેસ્ટ કરો',securityMsg:'તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસના કારણે,એડિટર તમારા કિલ્પબોર્ડ ડેટા ને કોપી નથી કરી શકતો. તમારે આ વિન્ડોમાં ફરીથી પેસ્ટ કરવું પડશે.',pasteArea:'પેસ્ટ કરવાની જગ્યા'},pastefromword:{confirmCleanup:'તમે જે ટેક્ષ્ત્ કોપી કરી રહ્યા છો ટે વર્ડ ની છે. કોપી કરતા પેહલા સાફ કરવી છે?',toolbar:'પેસ્ટ (વડૅ ટેક્સ્ટ)',title:'પેસ્ટ (વડૅ ટેક્સ્ટ)',error:'પેસ્ટ કરેલો ડેટા ઇન્ટરનલ એરર ના લીથે સાફ કરી શકાયો નથી.'},pasteText:{button:'પેસ્ટ (ટેક્સ્ટ)',title:'પેસ્ટ (ટેક્સ્ટ)'},templates:{button:'ટેમ્પ્લેટ',title:'કન્ટેન્ટ ટેમ્પ્લેટ',options:'ટેમ્પ્લેટના વિકલ્પો',insertOption:'મૂળ શબ્દને બદલો',selectPromptMsg:'એડિટરમાં ઓપન કરવા ટેમ્પ્લેટ પસંદ કરો (વર્તમાન કન્ટેન્ટ સેવ નહીં થાય):',emptyListMsg:'(કોઈ ટેમ્પ્લેટ ડિફાઇન નથી)'},showBlocks:'બ્લૉક બતાવવું',stylesCombo:{label:'શૈલી/રીત',panelTitle:'ફોર્મેટ ',panelTitle1:'બ્લોક ',panelTitle2:'ઈનલાઈન ',panelTitle3:'ઓબ્જેક્ટ પદ્ધતિ'},format:{label:'ફૉન્ટ ફૉર્મટ, રચનાની શૈલી',panelTitle:'ફૉન્ટ ફૉર્મટ, રચનાની શૈલી',tag_p:'સામાન્ય',tag_pre:'ફૉર્મટેડ',tag_address:'સરનામું',tag_h1:'શીર્ષક 1',tag_h2:'શીર્ષક 2',tag_h3:'શીર્ષક 3',tag_h4:'શીર્ષક 4',tag_h5:'શીર્ષક 5',tag_h6:'શીર્ષક 6',tag_div:'શીર્ષક (DIV)'},div:{title:'Div કન્ટેનર બનાવુંવું',toolbar:'Div કન્ટેનર બનાવુંવું',cssClassInputLabel:'સ્ટાઈલશીટ કલાસીસ',styleSelectLabel:'સ્ટાઈલ',IdInputLabel:'Id',languageCodeInputLabel:'ભાષાનો કોડ',inlineStyleInputLabel:'ઈનલાઈન પદ્ધતિ',advisoryTitleInputLabel:'એડવાઈઝર શીર્ષક',langDirLabel:'ભાષાની દિશા',langDirLTRLabel:'ડાબે થી જમણે (LTR)',langDirRTLLabel:'જમણે થી ડાબે (RTL)',edit:'ડીવીમાં ફેરફાર કરવો',remove:'ડીવી કાઢી કાઢવું'},iframe:{title:'IFrame વિકલ્પો',toolbar:'IFrame',noUrl:'iframe URL ટાઈપ્ કરો',scrolling:'સ્ક્રોલબાર ચાલુ કરવા',border:'ફ્રેમ બોર્ડેર બતાવવી'},font:{label:'ફૉન્ટ',voiceLabel:'ફોન્ટ',panelTitle:'ફૉન્ટ'},fontSize:{label:'ફૉન્ટ સાઇઝ/કદ',voiceLabel:'ફોન્ટ સાઈઝ',panelTitle:'ફૉન્ટ સાઇઝ/કદ'},colorButton:{textColorTitle:'શબ્દનો રંગ',bgColorTitle:'બૅકગ્રાઉન્ડ રંગ,',panelTitle:'રંગ',auto:'સ્વચાલિત',more:'ઔર રંગ...'},colors:{'000':'કાળો',800000:'મરુન','8B4513':'છીક','2F4F4F':'ડાર્ક સ્લેટ ગ્રે ','008080':'ટીલ','000080':'નેવી','4B0082':'જામલી',696969:'ડાર્ક ગ્રે',B22222:'ઈટ',A52A2A:'બ્રાઉન',DAA520:'ગોલ્ડન રોડ','006400':'ડાર્ક લીલો','40E0D0':'ટ્રકોઈસ','0000CD':'મધ્યમ વાદળી',800080:'પર્પલ',808080:'ગ્રે',F00:'લાલ',FF8C00:'ડાર્ક ઓરંજ',FFD700:'ગોલ્ડ','008000':'ગ્રીન','0FF':'સાયન','00F':'વાદળી',EE82EE:'વાયોલેટ',A9A9A9:'ડીમ ',FFA07A:'લાઈટ સાલમન',FFA500:'ઓરંજ',FFFF00:'પીળો','00FF00':'લાઈમ',AFEEEE:'પેલ કોઈસ',ADD8E6:'લાઈટ બ્લુ',DDA0DD:'પલ્મ',D3D3D3:'લાઈટ ગ્રે',FFF0F5:'લવંડર ',FAEBD7:'એન્ટીક સફેદ',FFFFE0:'લાઈટ પીળો',F0FFF0:'હનીડઉય',F0FFFF:'અઝુરે',F0F8FF:'એલીસ બ્લુ',E6E6FA:'લવંડર',FFF:'સફેદ'},scayt:{title:'ટાઈપ કરતા સ્પેલ તપાસો',opera_title:'ઓપેરામાં સપોર્ટ નથી',enable:'SCAYT એનેબલ કરવું',disable:'SCAYT ડિસેબલ કરવું',about:'SCAYT વિષે',toggle:'SCAYT ટોગલ',options:'વિકલ્પો',langs:'ભાષાઓ',moreSuggestions:'વધારે વિકલ્પો',ignore:'ઇગ્નોર',ignoreAll:'બધા ઇગ્નોર ',addWord:'શબ્દ ઉમેરવો',emptyDic:'ડિક્સનરીનું નામ ખાલી ના હોય.',noSuggestions:'No suggestions',optionsTab:'વિકલ્પો',allCaps:'ઓલ-કેપ્સ વર્ડ છોડી દો.',ignoreDomainNames:'ડોમેન નામ છોડી દો.',mixedCase:'મિક્સ કેસ વર્ડ છોડી દો.',mixedWithDigits:'આંકડા વાળા શબ્દ છોડી દો.',languagesTab:'ભાષા',dictionariesTab:'શબ્દકોશ',dic_field_name:'શબ્દકોશ નામ',dic_create:'બનાવવું',dic_restore:'પાછું ',dic_delete:'કાઢી નાખવું',dic_rename:'નવું નામ આપવું',dic_info:'પેહલા User Dictionary, Cookie તરીકે સ્ટોર થાય છે. પણ Cookie ની સમતા ઓછી છે. જયારે User Dictionary, Cookie તરીકે સ્ટોર ના કરી શકાય, ત્યારે તે અમારા સર્વર પર સ્ટોર થાય છે. તમારી વ્યતિગત ડીકસ્નરી ને સર્વર પર સ્ટોર કરવા માટે તમારે તેનું નામ આપવું પડશે. જો તમે તમારી ડીકસ્નરી નું નામ આપેલું હોય તો તમે રિસ્ટોર બટન ક્લીક કરી શકો.',aboutTab:'વિષે'},about:{title:'CKEditor વિષે',dlgTitle:'CKEditor વિષે',help:'મદદ માટે $1 તપાસો',userGuide:'CKEditor યુઝર્સ ગાઈડ',moreInfo:'લાયસનસની માહિતી માટે અમારી વેબ સાઈટ',copy:'કોપીરાઈટ © $1. ઓલ રાઈટ્સ '},maximize:'મોટું કરવું',minimize:'નાનું કરવું',fakeobjects:{anchor:'અનકર',flash:'ફ્લેશ ',iframe:'IFrame',hiddenfield:'હિડન ',unknown:'અનનોન ઓબ્જેક્ટ'},resize:'ખેંચી ને યોગ્ય કરવું',colordialog:{title:'રંગ પસંદ કરો',options:'રંગના વિકલ્પ',highlight:'હાઈઈટ',selected:'પસંદ કરેલો રંગ',clear:'સાફ કરવું'},toolbarCollapse:'ટૂલબાર નાનું કરવું',toolbarExpand:'ટૂલબાર મોટું કરવું',toolbarGroups:{document:'દસ્તાવેજ',clipboard:'ક્લિપબોર્ડ/અન',editing:'એડીટ કરવું',forms:'ફોર્મ',basicstyles:'બેસિક્ સ્ટાઇલ',paragraph:'ફકરો',links:'લીંક',insert:'ઉમેરવું',styles:'સ્ટાઇલ',colors:'રંગ',tools:'ટૂલ્સ'},bidi:{ltr:'ટેક્ષ્ત્ ની દિશા ડાબે થી જમણે',rtl:'ટેક્ષ્ત્ ની દિશા જમણે થી ડાબે'},docprops:{label:'ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ',title:'ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ',design:'ડીસા',meta:'મેટાડૅટા',chooseColor:'વિકલ્પ',other:'<other>',docTitle:'પેજ મથાળું/ટાઇટલ',charset:'કેરેક્ટર સેટ એન્કોડિંગ',charsetOther:'અન્ય કેરેક્ટર સેટ એન્કોડિંગ',charsetASCII:'ASCII',charsetCE:'મધ્ય યુરોપિઅન (Central European)',charsetCT:'ચાઇનીઝ (Chinese Traditional Big5)',charsetCR:'સિરીલિક (Cyrillic)',charsetGR:'ગ્રીક (Greek)',charsetJP:'જાપાનિઝ (Japanese)',charsetKR:'કોરીયન (Korean)',charsetTR:'ટર્કિ (Turkish)',charsetUN:'યૂનિકોડ (UTF-8)',charsetWE:'પશ્ચિમ યુરોપિઅન (Western European)',docType:'ડૉક્યુમન્ટ પ્રકાર શીર્ષક',docTypeOther:'અન્ય ડૉક્યુમન્ટ પ્રકાર શીર્ષક',xhtmlDec:'XHTML સૂચના સમાવિષ્ટ કરવી',bgColor:'બૅકગ્રાઉન્ડ રંગ',bgImage:'બૅકગ્રાઉન્ડ ચિત્ર URL',bgFixed:'સ્ક્રોલ ન થાય તેવું બૅકગ્રાઉન્ડ',txtColor:'શબ્દનો રંગ',margin:'પેજ માર્જિન',marginTop:'ઉપર',marginLeft:'ડાબી',marginRight:'જમણી',marginBottom:'નીચે',metaKeywords:'ડૉક્યુમન્ટ ઇન્ડેક્સ સંકેતશબ્દ (અલ્પવિરામ (,) થી અલગ કરો)',metaDescription:'ડૉક્યુમન્ટ વર્ણન',metaAuthor:'લેખક',metaCopyright:'કૉપિરાઇટ',previewHtml:'<p>આ એક <strong>સેમ્પલ ટેક્ષ્ત્</strong> છે. તમે <a href="javascript:void(0)">CKEditor</a> વાપરો છો.</p>'}}; �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ku.js��������������������������������������������0000664�0001750�0001750�00000103351�12262650742�021755� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /** * @fileOverview */ /**#@+ @type String @example */ /** * Contains the dictionary of language entries. * @namespace */ CKEDITOR.lang['ku'] = { /** * The language reading direction. Possible values are "rtl" for * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right * languages (like English). * @default 'ltr' */ dir : 'rtl', /* * Screenreader titles. Please note that screenreaders are not always capable * of reading non-English words. So be careful while translating it. */ editorTitle : 'ده‌سکاریکه‌ری ناونیشان', editorHelp : 'کلیکی ALT له‌گه‌ڵ 0 بکه‌ بۆ یارمه‌تی', // ARIA descriptions. toolbars : 'تووڵاەرازی دەسکاریکەر', editor : 'سەرنووسەی دەقی بەپیت', // Toolbar buttons without dialogs. source : 'سەرچاوە', newPage : 'پەڕەیەکی نوێ', save : 'پاشکەوتکردن', preview : 'پێشبینین', cut : 'بڕین', copy : 'لەبەرگرنتەوه', paste : 'لکاندن', print : 'چاپکردن', underline : 'ژێرهێڵ', bold : 'قەڵەو', italic : 'لار', selectAll : 'نیشانکردنی هەمووی', removeFormat : 'لابردنی داڕشتەکە', strike : 'لێدان', subscript : 'ژێرنووس', superscript : 'سەرنووس', horizontalrule : 'دانانی هێلی ئاسۆیی', pagebreak : 'دانانی پشووی پەڕە بۆ چاپکردن', pagebreakAlt : 'پشووی پەڕە', unlink : 'لابردنی بەستەر', undo : 'پووچکردنەوه', redo : 'هەڵگەڕاندنەوه', // Common messages and labels. common : { browseServer : 'هێنانی ڕاژە', url : 'ناونیشانی بەستەر', protocol : 'پڕۆتۆکۆڵ', upload : 'بارکردن', uploadSubmit : 'ناردنی بۆ ڕاژە', image : 'وێنە', flash : 'فلاش', form : 'داڕشتە', checkbox : 'خانەی نیشانکردن', radio : 'جێگرەوەی دوگمە', textField : 'خانەی دەق', textarea : 'ڕووبەری دەق', hiddenField : 'شاردنەوی خانە', button : 'دوگمە', select : 'هەڵبژاردەی خانە', imageButton : 'دوگمەی وێنە', notSet : '<هیچ دانەدراوە>', id : 'ناسنامە', name : 'ناو', langDir : 'ئاراستەی زمان', langDirLtr : 'چەپ بۆ ڕاست (LTR)', langDirRtl : 'ڕاست بۆ چەپ (RTL)', langCode : 'هێمای زمان', longDescr : 'پێناسەی درێژی بەستەر', cssClass : 'شێوازی چینی په‌ڕە', advisoryTitle : 'ڕاوێژکاری سەردێڕ', cssStyle : 'شێواز', ok : 'باشە', cancel : 'هەڵوەشاندن', close : 'داخستن', preview : 'پێشبینین', generalTab : 'گشتی', advancedTab : 'په‌ره‌سه‌ندوو', validateNumberFailed : 'ئەم نرخە ژمارە نیه، تکایە نرخێکی ژمارە بنووسە.', confirmNewPage : 'سەرجەم گۆڕانکاریەکان و پێکهاتەکانی ناوەووە لەدەست دەدەی گەر بێتوو پاشکەوتی نەکەی یەکەم جار، تۆ هەر دڵنیایی لەکردنەوەی پەنجەرەکی نوێ؟', confirmCancel : 'هەندێك هەڵبژاردە گۆڕدراوە. تۆ دڵنیایی له‌داخستنی ئەم دیالۆگە؟', options : 'هەڵبژاردە', target : 'ئامانج', targetNew : 'پەنجەرەیه‌کی نوێ (_blank)', targetTop : 'لووتکەی پەنجەرە (_top)', targetSelf : 'لەهەمان پەنجەرە (_self)', targetParent : 'پەنجەرەی باوان (_parent)', langDirLTR : 'چەپ بۆ ڕاست (LTR)', langDirRTL : 'ڕاست بۆ چەپ (RTL)', styles : 'شێواز', cssClasses : 'شێوازی چینی پەڕە', width : 'پانی', height : 'درێژی', align : 'ڕێککەرەوە', alignLeft : 'چەپ', alignRight : 'ڕاست', alignCenter : 'ناوەڕاست', alignTop : 'سەرەوە', alignMiddle : 'ناوەند', alignBottom : 'ژێرەوە', invalidValue : 'نرخێکی نادرووست.', invalidHeight : 'درێژی دەبێت ژمارە بێت.', invalidWidth : 'پانی دەبێت ژمارە بێت.', invalidCssLength : 'ئەم نرخەی دراوە بۆ خانەی "%1" دەبێت ژمارەکی درووست بێت یان بێ ناونیشانی ئامرازی (px, %, in, cm, mm, em, ex, pt, یان pc).', invalidHtmlLength : 'ئەم نرخەی دراوە بۆ خانەی "%1" دەبێت ژمارەکی درووست بێت یان بێ ناونیشانی ئامرازی HTML (px یان %).', invalidInlineStyle : 'دانه‌ی نرخی شێوازی ناوهێڵ ده‌بێت پێکهاتبێت له‌یه‌ك یان زیاتری داڕشته‌ "ناو : نرخ", جیاکردنه‌وه‌ی به‌فاریزه‌وخاڵ', cssLengthTooltip : 'ژماره‌یه‌ك بنووسه‌ بۆ نرخی piksel یان ئامرازێکی درووستی CSS (px, %, in, cm, mm, em, ex, pt, یان pc).', // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, ئامادە نیە</span>' }, contextmenu : { options : 'هەڵبژاردەی لیستەی کلیکی دەستی ڕاست' }, // Special char dialog. specialChar : { toolbar : 'دانانەی نووسەی تایبەتی', title : 'هەڵبژاردنی نووسەی تایبەتی', options : 'هەڵبژاردەی نووسەی تایبەتی' }, // Link dialog. link : { toolbar : 'دانان/ڕێکخستنی بەستەر', other : '<هیتر>', menu : 'چاکسازی بەستەر', title : 'بەستەر', info : 'زانیاری بەستەر', target : 'ئامانج', upload : 'بارکردن', advanced : 'پێشکه‌وتوو', type : 'جۆری به‌سته‌ر', toUrl : 'ناونیشانی به‌سته‌ر', toAnchor : 'به‌سته‌ر بۆ له‌نگه‌ر له‌ ده‌ق', toEmail : 'ئیمه‌یل', targetFrame : '<چووارچێوه>', targetPopup : '<په‌نجه‌ره‌ی سه‌رهه‌ڵده‌ر>', targetFrameName : 'ناوی ئامانجی چووارچێوه', targetPopupName : 'ناوی په‌نجه‌ره‌ی سه‌رهه‌ڵده‌ر', popupFeatures : 'خاسیه‌تی په‌نجه‌ره‌ی سه‌رهه‌ڵده‌ر', popupResizable : 'توانای گۆڕینی قه‌باره‌', popupStatusBar : 'هێڵی دۆخ', popupLocationBar: 'هێڵی ناونیشانی به‌سته‌ر', popupToolbar : 'هێڵی تووڵامراز', popupMenuBar : 'هێڵی لیسته', popupFullScreen : 'پڕ به‌پڕی شاشه‌ (IE)', popupScrollBars : 'هێڵی هاتووچۆپێکردن', popupDependent : 'پێوه‌به‌ستراو (Netscape)', popupLeft : 'جێگای چه‌پ', popupTop : 'جێگای سه‌ره‌وه‌', id : 'ناسنامه', langDir : 'ئاراسته‌ی زمان', langDirLTR : 'چه‌پ بۆ ڕاست (LTR)', langDirRTL : 'ڕاست بۆ چه‌پ (RTL)', acccessKey : 'کلیلی ده‌ستپێگه‌یشتن', name : 'ناو', langCode : 'هێمای زمان', tabIndex : 'بازده‌ری تابی ئیندێکس', advisoryTitle : 'ڕاوێژکاری سه‌ردێڕ', advisoryContentType : 'جۆری ناوه‌ڕۆکی ڕاویژکار', cssClasses : 'شێوازی چینی په‌ڕه‌', charset : 'بەستەری سەرچاوەی نووسه', styles : 'شێواز', rel : 'په‌یوه‌ندی (rel)', selectAnchor : 'هه‌ڵبژاردنی له‌نگه‌رێك', anchorName : 'به‌پێی ناوی له‌نگه‌ر', anchorId : 'به‌پێی ناسنامه‌ی توخم', emailAddress : 'ناونیشانی ئیمه‌یل', emailSubject : 'بابه‌تی نامه', emailBody : 'ناوه‌ڕۆکی نامه', noAnchors : '(هیچ جۆرێکی له‌نگه‌ر ئاماده‌ نیه له‌م په‌ڕه‌یه)', noUrl : 'تکایه‌ ناونیشانی به‌سته‌ر بنووسه', noEmail : 'تکایه‌ ناونیشانی ئیمه‌یل بنووسه' }, // Anchor dialog anchor : { toolbar : 'دانان/چاکسازی له‌نگه‌ر', menu : 'چاکسازی له‌نگه‌ر', title : 'خاسیه‌تی له‌نگه‌ر', name : 'ناوی له‌نگه‌ر', errorName : 'تکایه‌ ناوی له‌نگه‌ر بنووسه', remove : 'لابردنی له‌نگه‌ر' }, // List style dialog list: { numberedTitle : 'خاسیه‌تی لیستی ژماره‌یی', bulletedTitle : 'خاسیه‌تی لیستی خاڵی', type : 'جۆر', start : 'ده‌ستپێکردن', validateStartNumber :'ده‌ستپێکه‌ری لیستی ژماره‌یی ده‌بێت ته‌نها ژماره‌ بێت.', circle : 'بازنه', disc : 'په‌پکه', square : 'چووراگۆشه', none : 'هیچ', notset : '<دانه‌ندراوه>', armenian : 'ئاراسته‌ی ژماره‌ی ئه‌رمه‌نی', georgian : 'ئاراسته‌ی ژماره‌ی جۆڕجی (an, ban, gan, وه‌هیتر.)', lowerRoman : 'ژماره‌ی ڕۆمی بچووك (i, ii, iii, iv, v, وه‌هیتر.)', upperRoman : 'ژماره‌ی ڕۆمی گه‌وره (I, II, III, IV, V, وه‌هیتر.)', lowerAlpha : 'ئه‌لفابێی بچووك (a, b, c, d, e, وه‌هیتر.)', upperAlpha : 'ئه‌لفابێی گه‌وره‌ (A, B, C, D, E, وه‌هیتر.)', lowerGreek : 'یۆنانی بچووك (alpha, beta, gamma, وه‌هیتر.)', decimal : 'ژماره (1, 2, 3, وه‌هیتر.)', decimalLeadingZero : 'ژماره‌ سفڕی له‌پێشه‌وه (01, 02, 03, وه‌هیتر.)' }, // Find And Replace Dialog findAndReplace : { title : 'گه‌ڕان وه‌ له‌بریدانان', find : 'گه‌ڕان', replace : 'له‌بریدانان', findWhat : 'گه‌ڕان به‌دووای:', replaceWith : 'له‌بریدانان به‌:', notFoundMsg : 'هیچ ده‌قه‌ گه‌ڕانێك نه‌دۆزراوه.', findOptions : 'هه‌ڵبژارده‌کانی گه‌ڕان', matchCase : 'جیاکردنه‌وه‌ له‌نێوان پیتی گه‌وره‌و بچووك', matchWord : 'ته‌نها هه‌موو وشه‌که‌', matchCyclic : 'گه‌ڕان له‌هه‌موو په‌ڕه‌که', replaceAll : 'له‌بریدانانی هه‌مووی', replaceSuccessMsg : ' پێشهاته(ی) له‌بری دانرا. %1' }, // Table Dialog table : { toolbar : 'خشته', title : 'خاسیه‌تی خشته', menu : 'خاسیه‌تی خشته', deleteTable : 'سڕینه‌وه‌ی خشته', rows : 'ڕیز', columns : 'ستوونه‌کان', border : 'گه‌وره‌یی په‌راوێز', widthPx : 'وێنه‌خاڵ - پیکسل', widthPc : 'له‌سه‌دا', widthUnit : 'پانی یه‌که‌', cellSpace : 'بۆشایی خانه', cellPad : 'بۆشایی ناوپۆش', caption : 'سه‌ردێڕ', summary : 'کورته', headers : 'سه‌رپه‌ڕه‌', headersNone : 'هیچ', headersColumn : 'یه‌که‌م ئه‌ستوون', headersRow : 'یه‌که‌م ڕیز', headersBoth : 'هه‌ردووك', invalidRows : 'ژماره‌ی ڕیز ده‌بێت گه‌وره‌تر بێت له‌ژماره‌ی 0.', invalidCols : 'ژماره‌ی ئه‌ستوونی ده‌بێت گه‌وره‌تر بێت له‌ژماره‌ی 0.', invalidBorder : 'ژماره‌ی په‌راوێز ده‌بێت ته‌نها ژماره‌ بێت.', invalidWidth : 'پانی خشته‌ ده‌بێت ته‌نها ژماره‌ بێت.', invalidHeight : 'درێژی خشته ده‌بێت ته‌نها ژماره‌ بێت.', invalidCellSpacing : 'بۆشایی خانه‌ ده‌بێت ژماره‌کی درووست بێت.', invalidCellPadding : 'ناوپۆشی خانه‌ ده‌بێت ژماره‌کی درووست بێت.', cell : { menu : 'خانه', insertBefore : 'دانانی خانه‌ له‌پێش', insertAfter : 'دانانی خانه له‌پاش', deleteCell : 'سڕینه‌وه‌ی خانه', merge : 'تێکه‌ڵکردنی خانه', mergeRight : 'تێکه‌ڵکردنی له‌گه‌ڵ ڕاست', mergeDown : 'تێکه‌ڵکردنی له‌گه‌ڵ خواره‌وه', splitHorizontal : 'دابه‌شکردنی خانه‌ی ئاسۆیی', splitVertical : 'دابه‌شکردنی خانه‌ی ئه‌ستونی', title : 'خاسیه‌تی خانه', cellType : 'جۆری خانه', rowSpan : 'ماوه‌ی نێوان ڕیز', colSpan : 'بستی ئه‌ستونی', wordWrap : 'پێچانه‌وه‌ی وشه', hAlign : 'ڕیزکردنی ئاسۆیی', vAlign : 'ڕیزکردنی ئه‌ستونی', alignBaseline : 'هێڵه‌بنه‌ڕه‌ت', bgColor : 'ڕه‌نگی پاشبنه‌ما', borderColor : 'ڕه‌نگی په‌راوێز', data : 'داتا', header : 'سه‌رپه‌ڕه‌', yes : 'به‌ڵێ', no : 'نه‌خێر', invalidWidth : 'پانی خانه‌ ده‌بێت به‌ته‌واوی ژماره‌ بێت.', invalidHeight : 'درێژی خانه‌ به‌ته‌واوی ده‌بێت ژماره‌ بێت.', invalidRowSpan : 'ماوه‌ی نێوان ڕیز به‌ته‌واوی ده‌بێت ژماره‌ بێت.', invalidColSpan : 'ماوه‌ی نێوان ئه‌ستونی به‌ته‌واوی ده‌بێت ژماره‌ بێت.', chooseColor : 'هه‌ڵبژاردن' }, row : { menu : 'ڕیز', insertBefore : 'دانانی ڕیز له‌پێش', insertAfter : 'دانانی ڕیز له‌پاش', deleteRow : 'سڕینه‌وه‌ی ڕیز' }, column : { menu : 'ئه‌ستون', insertBefore : 'دانانی ئه‌ستون له‌پێش', insertAfter : 'دانانی ئه‌ستوون له‌پاش', deleteColumn : 'سڕینه‌وه‌ی ئه‌ستوون' } }, // Button Dialog. button : { title : 'خاسیه‌تی دوگمه', text : '(نرخی) ده‌ق', type : 'جۆر', typeBtn : 'دوگمه‌', typeSbm : 'ناردن', typeRst : 'ڕێکخستنه‌وه' }, // Checkbox and Radio Button Dialogs. checkboxAndRadio : { checkboxTitle : 'خاسیه‌تی چووارگۆشی پشکنین', radioTitle : 'خاسیه‌تی جێگره‌وه‌ی دوگمه', value : 'نرخ', selected : 'هه‌ڵبژاردرا' }, // Form Dialog. form : { title : 'خاسیه‌تی داڕشته', menu : 'خاسیه‌تی داڕشته', action : 'کردار', method : 'ڕێگه', encoding : 'به‌کۆدکه‌ر' }, // Select Field Dialog. select : { title : 'هه‌ڵبژارده‌ی خاسیه‌تی خانه', selectInfo : 'زانیاری', opAvail : 'هه‌ڵبژارده‌ی هه‌بوو', value : 'نرخ', size : 'گه‌وره‌یی', lines : 'هێڵه‌کان', chkMulti : 'ڕێدان به‌فره‌ هه‌ڵبژارده', opText : 'ده‌ق', opValue : 'نرخ', btnAdd : 'زیادکردن', btnModify : 'گۆڕانکاری', btnUp : 'سه‌ره‌وه', btnDown : 'خواره‌وه', btnSetValue : 'دابنێ وه‌ك نرخێکی هه‌ڵبژێردراو', btnDelete : 'سڕینه‌وه' }, // Textarea Dialog. textarea : { title : 'خاسیه‌تی ڕووبه‌ری ده‌ق', cols : 'ئه‌ستونیه‌کان', rows : 'ڕیزه‌کان' }, // Text Field Dialog. textfield : { title : 'خاسیه‌تی خانه‌ی ده‌ق', name : 'ناو', value : 'نرخ', charWidth : 'پانی نووسه', maxChars : 'ئه‌وپه‌ڕی نووسه', type : 'جۆر', typeText : 'ده‌ق', typePass : 'پێپه‌ڕه‌وشه' }, // Hidden Field Dialog. hidden : { title : 'خاسیه‌تی خانه‌ی شاردراوه', name : 'ناو', value : 'نرخ' }, // Image Dialog. image : { title : 'خاسیه‌تی وێنه', titleButton : 'خاسیه‌تی دوگمه‌ی وێنه', menu : 'خاسیه‌تی وێنه', infoTab : 'زانیاری وێنه', btnUpload : 'ناردنی بۆ ڕاژه', upload : 'بارکردن', alt : 'جێگره‌وه‌ی ده‌ق', lockRatio : 'داخستنی ڕێژه', resetSize : 'ڕێکخستنه‌وه‌ی قه‌باره', border : 'په‌راوێز', hSpace : 'بۆشایی ئاسۆیی', vSpace : 'بۆشایی ئه‌ستونی', alertUrl : 'تکایه‌ ناونیشانی به‌سته‌ری وێنه‌ بنووسه', linkTab : 'به‌سته‌ر', button2Img : 'تۆ ده‌ته‌وێت دوگمه‌ی وێنه‌ی دیاریکراو بگۆڕیت بۆ وێنه‌کی ئاسایی؟', img2Button : 'تۆ ده‌ته‌وێت وێنه‌ی دیاریکراو بگۆڕیت بۆ دوگمه‌ی وێنه؟', urlMissing : 'سه‌رچاوه‌ی به‌سته‌ری وێنه‌ بزره', validateBorder : 'په‌راوێز ده‌بێت به‌ته‌واوی ته‌نها ژماره‌ بێت.', validateHSpace : 'بۆشایی ئاسۆیی ده‌بێت به‌ته‌واوی ته‌نها ژماره‌ بێت.', validateVSpace : 'بۆشایی ئه‌ستونی ده‌بێت به‌ته‌واوی ته‌نها ژماره‌ بێت.' }, // Flash Dialog flash : { properties : 'خاسیه‌تی فلاش', propertiesTab : 'خاسیه‌ت', title : 'خاسیه‌تی فلاش', chkPlay : 'پێکردنی یان لێدانی خۆکار', chkLoop : 'گرێ', chkMenu : 'چالاککردنی لیسته‌ی فلاش', chkFull : 'ڕێپێدان به‌ پڕ به‌پڕی شاشه', scale : 'پێوانه', scaleAll : 'نیشاندانی هه‌موو', scaleNoBorder : 'بێ په‌راوێز', scaleFit : 'به‌وردی بگونجێت', access : 'ده‌ستپێگه‌یشتنی نووسراو', accessAlways : 'هه‌میشه', accessSameDomain: 'هه‌مان دۆمه‌ین', accessNever : 'هه‌رگیز', alignAbsBottom : 'له‌ ژێره‌وه', alignAbsMiddle : 'له‌ناوه‌ند', alignBaseline : 'هێڵەبنەڕەت', alignTextTop : 'ده‌ق له‌سه‌ره‌وه', quality : 'جۆرایه‌تی', qualityBest : 'باشترین', qualityHigh : 'به‌رزی', qualityAutoHigh : 'به‌رزی خۆکار', qualityMedium : 'مامناوه‌ند', qualityAutoLow : 'نزمی خۆکار', qualityLow : 'نزم', windowModeWindow: 'په‌نجه‌ره', windowModeOpaque: 'ناڕوون', windowModeTransparent : 'ڕۆشن', windowMode : 'شێوازی په‌نجه‌ره', flashvars : 'گۆڕاوه‌کان بۆ فلاش', bgcolor : 'ڕه‌نگی پاشبنه‌ما', hSpace : 'بۆشایی ئاسۆیی', vSpace : 'بۆشایی ئه‌ستونی', validateSrc : 'ناونیشانی به‌سته‌ر نابێت خاڵی بێت', validateHSpace : 'بۆشایی ئاسۆیی ده‌بێت ژماره‌ بێت.', validateVSpace : 'بۆشایی ئه‌ستونی ده‌بێت ژماره‌ بێت.' }, // Speller Pages Dialog spellCheck : { toolbar : 'پشکنینی ڕێنووس', title : 'پشکنینی ڕێنووس', notAvailable : 'ببووره‌، له‌مکاته‌دا ڕاژه‌که له‌به‌رده‌ستا نیه.', errorLoading : 'هه‌ڵه‌ له‌هێنانی داخوازینامه‌ی خانه‌خۆێی ڕاژه: %s.', notInDic : 'له‌فه‌رهه‌نگ دانیه', changeTo : 'گۆڕینی بۆ', btnIgnore : 'پشتگوێ کردن', btnIgnoreAll : 'پشتگوێکردنی هه‌مووی', btnReplace : 'له‌بریدانن', btnReplaceAll : 'له‌بریدانانی هه‌مووی', btnUndo : 'پووچکردنه‌وه', noSuggestions : '- هیچ پێشنیارێك -', progress : 'پشکنینی ڕێنووس له‌به‌رده‌وامبوون دایه...', noMispell : 'پشکنینی ڕێنووس کۆتای هات: هیچ هه‌ڵه‌یه‌کی ڕێنووس نه‌دۆزراوه', noChanges : 'پشکنینی ڕێنووس کۆتای هات: هیچ وشه‌یه‌ك نۆگۆڕدرا', oneChange : 'پشکنینی ڕێنووس کۆتای هات: یه‌ك وشه گۆڕدرا', manyChanges : 'پشکنینی ڕێنووس کۆتای هات: له‌سه‌دا %1 ی وشه‌کان گۆڕدرا', ieSpellDownload : 'پشکنینی ڕێنووس دانه‌مزراوه. ده‌ته‌وێت ئێستا دایبگریت?' }, smiley : { toolbar : 'زه‌رده‌خه‌نه', title : 'دانانی زه‌رده‌خه‌نه‌یه‌ك', options : 'هه‌ڵبژارده‌ی زه‌رده‌خه‌نه' }, elementsPath : { eleLabel : 'ڕێڕه‌وی توخمه‌کان', eleTitle : '%1 توخم' }, numberedlist : 'دانان/لابردنی ژمارەی لیست', bulletedlist : 'دانان/لابردنی خاڵی لیست', indent : 'زیادکردنی بۆشایی', outdent : 'کەمکردنەوەی بۆشایی', justify : { left : 'به‌هێڵ کردنی چه‌پ', center : 'ناوه‌ڕاست', right : 'به‌هێڵ کردنی ڕاست', block : 'هاوستوونی' }, blockquote : 'بەربەستکردنی وتەی وەرگیراو', clipboard : { title : 'لکاندن', cutError : 'پارێزی وێبگەڕەکەت ڕێگه‌نادات بە سەرنووسەکە له‌بڕینی خۆکار. تکایە لەبری ئەمە ئەم فەرمانە بەکاربهێنە بەداگرتنی کلیلی (Ctrl/Cmd+X).', copyError : 'پارێزی وێبگەڕەکەت ڕێگه‌نادات بەسەرنووسەکە لە لکاندنی دەقی خۆکار. تکایە لەبری ئەمە ئەم فەرمانە بەکاربهێنە بەداگرتنی کلیلی (Ctrl/Cmd+C).', pasteMsg : 'تکایه‌ بیلکێنه‌ له‌ناوه‌وه‌ی ئه‌م سنوقه له‌ڕێی ته‌خته‌کلیله‌که‌ت به‌باکارهێنانی کلیلی (<STRONG>Ctrl/Cmd+V</STRONG>) دووای کلیکی باشه‌ بکه.', securityMsg : 'به‌هۆی شێوه‌پێدانی پارێزی وێبگه‌ڕه‌که‌ت، سه‌رنووسه‌که‌ ناتوانێت ده‌ستبگه‌یه‌نێت به‌هه‌ڵگیراوه‌که ڕاسته‌وخۆ. بۆیه‌ پێویسته دووباره‌ بیلکێنیت له‌م په‌نجه‌ره‌یه‌.', pasteArea : 'ناوچه‌ی لکاندن' }, pastefromword : { confirmCleanup : 'ئه‌م ده‌قه‌ی به‌ته‌مای بیلکێنی پێده‌چێت له‌ word هێنرابێت. ده‌ته‌وێت پاکی بکه‌یوه‌ پێش ئه‌وه‌ی بیلکێنی؟', toolbar : 'لکاندنی له‌ڕێی Word', title : 'لکاندنی له‌لایه‌ن Word', error : 'هیچ ڕێگه‌یه‌ك نه‌بوو له‌لکاندنی ده‌قه‌که‌ به‌هۆی هه‌ڵه‌کی ناوه‌خۆیی' }, pasteText : { button : 'لکاندنی وه‌ك ده‌قی ڕوون', title : 'لکاندنی وه‌ك ده‌قی ڕوون' }, templates : { button : 'ڕووکار', title : 'پێکهاته‌ی ڕووکار', options : 'هه‌ڵبژارده‌کانی ڕووکار', insertOption : 'له‌شوێن دانانی ئه‌م پێکهاتانه‌ی ئێستا', selectPromptMsg : 'ڕووکارێك هه‌ڵبژێره‌ بۆ کردنه‌وه‌ی له‌ سه‌رنووسه‌ر:', emptyListMsg : '(هیچ ڕووکارێك دیارینه‌کراوه)' }, showBlocks : 'نیشاندانی بەربەستەکان', stylesCombo : { label : 'شێواز', panelTitle : 'شێوازی ڕازاندنه‌وه', panelTitle1 : 'شێوازی خشت', panelTitle2 : 'شێوازی ناوهێڵ', panelTitle3 : 'شێوازی به‌رکار' }, format : { label : 'ڕازاندنه‌وه', panelTitle : 'به‌شی ڕازاندنه‌وه‌', tag_p : 'ئاسایی', tag_pre : 'شێوازکراو', tag_address : 'ناونیشان', tag_h1 : 'سه‌رنووسه‌ی ١', tag_h2 : 'سه‌رنووسه‌ی ٢', tag_h3 : 'سه‌رنووسه‌ی ٣', tag_h4 : 'سه‌رنووسه‌ی ٤', tag_h5 : 'سه‌رنووسه‌ی ٥', tag_h6 : 'سه‌رنووسه‌ی ٦', tag_div : '(DIV)-ی ئاسایی' }, div : { title : 'دانانی له‌خۆگری Div', toolbar : 'دانانی له‌خۆگری Div', cssClassInputLabel : 'شێوازی چینی په‌ڕه', styleSelectLabel : 'شێواز', IdInputLabel : 'ناسنامه', languageCodeInputLabel : 'هێمای زمان', inlineStyleInputLabel : 'شێوازی ناوهێڵ', advisoryTitleInputLabel : 'سه‌ردێڕ', langDirLabel : 'ئاراسته‌ی زمان', langDirLTRLabel : 'چه‌پ بۆ ڕاست (LTR)', langDirRTLLabel : 'ڕاست بۆ چه‌پ (RTL)', edit : 'چاکسازی Div', remove : 'لابردنی Div' }, iframe : { title : 'دیالۆگی چووارچێوه', toolbar : 'چووارچێوه', noUrl : 'تکایه‌ ناونیشانی به‌سته‌ر بنووسه‌ بۆ چووارچێوه‌', scrolling : 'چالاککردنی هاتووچۆپێکردن', border : 'نیشاندانی لاکێشه‌ به‌چووارده‌وری چووارچێوه' }, font : { label : 'فۆنت', voiceLabel : 'فۆنت', panelTitle : 'ناوی فۆنت' }, fontSize : { label : 'گه‌وره‌یی', voiceLabel : 'گه‌وره‌یی فۆنت', panelTitle : 'گه‌وره‌یی فۆنت' }, colorButton : { textColorTitle : 'ڕه‌نگی ده‌ق', bgColorTitle : 'ڕه‌نگی پاشبنه‌ما', panelTitle : 'ڕه‌نگه‌کان', auto : 'خۆکار', more : 'ڕه‌نگی زیاتر...' }, colors : { '000' : 'ڕه‌ش', '800000' : 'سۆرو ماڕوونی', '8B4513' : 'ماڕوونی', '2F4F4F' : 'سه‌وزی تاریك', '008080' : 'سه‌وزو شین', '000080' : 'شینی تۆخ', '4B0082' : 'مۆری تۆخ', '696969' : 'ڕه‌ساسی تۆخ', 'B22222' : 'سۆری تۆخ', 'A52A2A' : 'قاوه‌یی', 'DAA520' : 'قاوه‌یی بریسکه‌دار', '006400' : 'سه‌وزی تۆخ', '40E0D0' : 'شینی ناتۆخی بریسکه‌دار', '0000CD' : 'شینی مامناوه‌ند', '800080' : 'په‌مبه‌یی', '808080' : 'ڕه‌ساسی', 'F00' : 'سۆر', 'FF8C00' : 'ناره‌نجی تۆخ', 'FFD700' : 'زه‌رد', '008000' : 'سه‌وز', '0FF' : 'شینی ئاسمانی', '00F' : 'شین', 'EE82EE' : 'په‌مه‌یی', 'A9A9A9' : 'ڕه‌ساسی ناتۆخ', 'FFA07A' : 'ناره‌نجی ناتۆخ', 'FFA500' : 'ناره‌نجی', 'FFFF00' : 'زه‌رد', '00FF00' : 'سه‌وز', 'AFEEEE' : 'شینی ناتۆخ', 'ADD8E6' : 'شینی زۆر ناتۆخ', 'DDA0DD' : 'په‌مه‌یی ناتۆخ', 'D3D3D3' : 'ڕه‌ساسی بریسکه‌دار', 'FFF0F5' : 'جه‌رگی زۆر ناتۆخ', 'FAEBD7' : 'جه‌رگی ناتۆخ', 'FFFFE0' : 'سپی ناتۆخ', 'F0FFF0' : 'هه‌نگوینی ناتۆخ', 'F0FFFF' : 'شینێکی زۆر ناتۆخ', 'F0F8FF' : 'شینێکی ئاسمانی زۆر ناتۆخ', 'E6E6FA' : 'شیری', 'FFF' : 'سپی' }, scayt : { title : 'پشکنینی نووسه‌ له‌کاتی نووسین', opera_title : 'پشتیوانی نه‌کراوه له‌لایه‌ن Opera', enable : 'چالاککردنی SCAYT', disable : 'ناچالاککردنی SCAYT', about : 'ده‌رباره‌ی SCAYT', toggle : 'گۆڕینی SCAYT', options : 'هه‌ڵبژارده', langs : 'زمانه‌کان', moreSuggestions : 'پێشنیاری زیاتر', ignore : 'پشتگوێخستن', ignoreAll : 'پشتگوێخستنی هه‌مووی', addWord : 'زیادکردنی ووشه', emptyDic : 'ناوی فه‌رهه‌نگ نابێت خاڵی بێت.', noSuggestions : 'No suggestions', // MISSING optionsTab : 'هه‌ڵبژارده', allCaps : 'پشتگوێخستنی وشانه‌ی پێکهاتووه له‌پیتی گه‌وره‌', ignoreDomainNames : 'پشتگوێخستنی دۆمه‌ین', mixedCase : 'پشتگوێخستنی وشانه‌ی پێکهاتووه له‌پیتی گه‌وره‌و بچووك', mixedWithDigits : 'پشتگوێخستنی وشانه‌ی پێکهاتووه له‌ژماره', languagesTab : 'زمانه‌کان', dictionariesTab : 'فه‌رهه‌نگه‌کان', dic_field_name : 'ناوی فه‌رهه‌نگ', dic_create : 'درووستکردن', dic_restore : 'گه‌ڕاندنه‌وه', dic_delete : 'سڕینه‌وه', dic_rename : 'گۆڕینی ناو', dic_info : 'له‌بنچینه‌دا فه‌رهه‌نگی به‌کارهێنه‌ر کۆگاکردن کراوه‌ له‌ شه‌کرۆکه Cookie, هه‌رچۆنێك بێت شه‌کۆرکه سنووردار کراوه له‌ قه‌باره کۆگاکردن.کاتێك فه‌رهه‌نگی به‌کارهێنه‌ر گه‌یشته‌ ئه‌م خاڵه‌ی که‌ناتوانرێت زیاتر کۆگاکردن بکرێت له‌ شه‌کرۆکه‌، ئه‌وسا فه‌رهه‌نگه‌که‌ پێویسته‌ کۆگابکرێت له‌ ڕاژه‌که‌ی ئێمه‌.‌ بۆ کۆگاکردنی زانیاری تایبه‌تی فه‌رهه‌نگه‌که‌ له‌ ڕاژه‌که‌ی ئێمه, پێویسته‌ ناوێك هه‌ڵبژێریت بۆ فه‌رهه‌نگه‌که‌. گه‌ر تۆ فه‌رهه‌نگێکی کۆگاکراوت هه‌یه‌, تکایه‌ ناوی فه‌رهه‌نگه‌که‌ بنووسه‌ وه‌ کلیکی دوگمه‌ی گه‌ڕاندنه‌وه‌ بکه.', aboutTab : 'ده‌رباره‌ی' }, about : { title : 'ده‌رباره‌ی CKEditor', dlgTitle : 'ده‌رباره‌ی CKEditor', help : 'سه‌یری $1 بکه‌ بۆ یارمه‌تی.', userGuide : 'ڕێپیشانده‌ری CKEditors', moreInfo : 'بۆ زانیاری زیاتری مۆڵه‌ت, تکایه‌ سه‌ردانی ماڵپه‌ڕه‌که‌مان بکه:', copy : 'مافی له‌به‌رگرتنه‌وه‌ی © $1. گشتی پارێزراوه.' }, maximize : 'ئەوپه‌ڕی گەورەیی', minimize : 'ئەوپەڕی بچووکی', fakeobjects : { anchor : 'له‌نگه‌ر', flash : 'فلاش', iframe : 'له‌چوارچێوه', hiddenfield : 'شاردنه‌وه‌ی خانه', unknown : 'به‌رکارێکی نه‌ناسراو' }, resize : 'ڕابکێشە بۆ گۆڕینی قەبارەکەی', colordialog : { title : 'هه‌ڵبژاردنی ڕه‌نگ', options : 'هه‌ڵبژارده‌ی ڕه‌نگه‌کان', highlight : 'نیشانکردن', selected : 'هه‌ڵبژاردرا', clear : 'پاککردنه‌وه' }, toolbarCollapse : 'شاردنەوی هێڵی تووڵامراز', toolbarExpand : 'نیشاندانی هێڵی تووڵامراز', toolbarGroups : { document : 'په‌ڕه', clipboard : 'بڕین/پووچکردنه‌وه', editing : 'چاکسازی', forms : 'داڕشته', basicstyles : 'شێوازی بنچینه‌یی', paragraph : 'بڕگه', links : 'به‌سته‌ر', insert : 'خستنه‌ ناو', styles : 'شێواز', colors : 'ڕه‌نگه‌کان', tools : 'ئامرازه‌کان' }, bidi : { ltr : 'ئاراسته‌ی نووسه‌ له‌چه‌پ بۆ ڕاست', rtl : 'ئاراسته‌ی نووسه‌ له‌ڕاست بۆ چه‌پ' }, docprops : { label : 'خاسییه‌تی په‌ڕه', title : 'خاسییه‌تی په‌ڕه', design : 'شێوه‌کار', meta : 'زانیاری مێتا', chooseColor : '‌هه‌ڵبژێره', other : 'هیتر...', docTitle : 'سه‌ردێڕی په‌ڕه', charset : 'ده‌سته‌ی نووسه‌ی به‌کۆده‌که‌ر', charsetOther : 'ده‌سته‌ی نووسه‌ی به‌کۆده‌که‌ری تر', charsetASCII : 'ASCII', charsetCE : 'ناوه‌ڕاست ئه‌وروپا', charsetCT : 'چینی(Big5)', charsetCR : 'سیریلیك', charsetGR : 'یۆنانی', charsetJP : 'ژاپۆن', charsetKR : 'کۆریا', charsetTR : 'تورکیا', charsetUN : 'Unicode (UTF-8)', charsetWE : 'ڕۆژئاوای ئه‌وروپا', docType : 'سه‌رپه‌ڕه‌ی جۆری په‌ڕه', docTypeOther : 'سه‌رپه‌ڕه‌ی جۆری په‌ڕه‌ی تر', xhtmlDec : 'به‌یاننامه‌کانی XHTML له‌گه‌ڵدابێت', bgColor : 'ڕه‌نگی پاشبنه‌ما', bgImage : 'ناونیشانی به‌سته‌ری وێنه‌ی پاشبنه‌ما', bgFixed : 'بێ هاتووچوپێکردنی (چه‌سپاو) پاشبنه‌مای وێنه', txtColor : 'ڕه‌نگی ده‌ق', margin : 'ته‌نیشت په‌ڕه‌', marginTop : 'سه‌ره‌وه', marginLeft : 'چه‌پ', marginRight : 'ڕاست', marginBottom : 'ژێره‌وه', metaKeywords : 'به‌ڵگه‌نامه‌ی وشه‌ی کاریگه‌ر(به‌ کۆما لێکیان جیابکه‌وه)', metaDescription : 'پێناسه‌ی لاپه‌ڕه', metaAuthor : 'نووسه‌ر', metaCopyright : 'مافی بڵاوکردنه‌وه‌ی', previewHtml : '<p>ئه‌مه‌ وه‌ك نموونه‌ی <strong>ده‌قه</strong>. تۆ به‌کارده‌هێنیت <a href="javascript:void(0)">CKEditor</a>.</p>' } }; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/id.js��������������������������������������������0000664�0001750�0001750�00000041675�12262650742�021744� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.id={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Source',newPage:'New Page',save:'Save',preview:'Preview',cut:'Cut',copy:'Copy',paste:'Paste',print:'Print',underline:'Underline',bold:'Bold',italic:'Italic',selectAll:'Select All',removeFormat:'Remove Format',strike:'Strike Through',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Insert Horizontal Line',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Unlink',undo:'Undo',redo:'Redo',common:{browseServer:'Browse Server',url:'URL',protocol:'Protocol',upload:'Upload',uploadSubmit:'Send it to the Server',image:'Image',flash:'Flash',form:'Form',checkbox:'Checkbox',radio:'Radio Button',textField:'Text Field',textarea:'Textarea',hiddenField:'Hidden Field',button:'Button',select:'Selection Field',imageButton:'Image Button',notSet:'<not set>',id:'Id',name:'Name',langDir:'Language Direction',langDirLtr:'Left to Right (LTR)',langDirRtl:'Right to Left (RTL)',langCode:'Language Code',longDescr:'Long Description URL',cssClass:'Stylesheet Classes',advisoryTitle:'Advisory Title',cssStyle:'Style',ok:'OK',cancel:'Cancel',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Advanced',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Width',height:'Height',align:'Alignment',alignLeft:'Left',alignRight:'Right',alignCenter:'Center',alignTop:'Top',alignMiddle:'Middle',alignBottom:'Bottom',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Insert Special Character',title:'Select Special Character',options:'Special Character Options'},link:{toolbar:'Link',other:'<other>',menu:'Edit Link',title:'Link',info:'Link Info',target:'Target',upload:'Upload',advanced:'Advanced',type:'Link Type',toUrl:'URL',toAnchor:'Link to anchor in the text',toEmail:'E-mail',targetFrame:'<frame>',targetPopup:'<popup window>',targetFrameName:'Target Frame Name',targetPopupName:'Popup Window Name',popupFeatures:'Popup Window Features',popupResizable:'Resizable',popupStatusBar:'Status Bar',popupLocationBar:'Location Bar',popupToolbar:'Toolbar',popupMenuBar:'Menu Bar',popupFullScreen:'Full Screen (IE)',popupScrollBars:'Scroll Bars',popupDependent:'Dependent (Netscape)',popupLeft:'Left Position',popupTop:'Top Position',id:'Id',langDir:'Language Direction',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',acccessKey:'Access Key',name:'Name',langCode:'Language Code',tabIndex:'Tab Index',advisoryTitle:'Advisory Title',advisoryContentType:'Advisory Content Type',cssClasses:'Stylesheet Classes',charset:'Linked Resource Charset',styles:'Style',rel:'Relationship',selectAnchor:'Select an Anchor',anchorName:'By Anchor Name',anchorId:'By Element Id',emailAddress:'E-Mail Address',emailSubject:'Message Subject',emailBody:'Message Body',noAnchors:'(No anchors available in the document)',noUrl:'Please type the link URL',noEmail:'Please type the e-mail address'},anchor:{toolbar:'Anchor',menu:'Edit Anchor',title:'Anchor Properties',name:'Anchor Name',errorName:'Please type the anchor name',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Find',replace:'Replace',findWhat:'Find what:',replaceWith:'Replace with:',notFoundMsg:'The specified text was not found.',findOptions:'Find Options',matchCase:'Match case',matchWord:'Match whole word',matchCyclic:'Match cyclic',replaceAll:'Replace All',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Table',title:'Table Properties',menu:'Table Properties',deleteTable:'Delete Table',rows:'Rows',columns:'Columns',border:'Border size',widthPx:'pixels',widthPc:'percent',widthUnit:'width unit',cellSpace:'Cell spacing',cellPad:'Cell padding',caption:'Caption',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Delete Cells',merge:'Merge Cells',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Delete Rows'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Delete Columns'}},button:{title:'Button Properties',text:'Text (Value)',type:'Type',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Checkbox Properties',radioTitle:'Radio Button Properties',value:'Value',selected:'Selected'},form:{title:'Form Properties',menu:'Form Properties',action:'Action',method:'Method',encoding:'Encoding'},select:{title:'Selection Field Properties',selectInfo:'Select Info',opAvail:'Available Options',value:'Value',size:'Size',lines:'lines',chkMulti:'Allow multiple selections',opText:'Text',opValue:'Value',btnAdd:'Add',btnModify:'Modify',btnUp:'Up',btnDown:'Down',btnSetValue:'Set as selected value',btnDelete:'Delete'},textarea:{title:'Textarea Properties',cols:'Columns',rows:'Rows'},textfield:{title:'Text Field Properties',name:'Name',value:'Value',charWidth:'Character Width',maxChars:'Maximum Characters',type:'Type',typeText:'Text',typePass:'Password'},hidden:{title:'Hidden Field Properties',name:'Name',value:'Value'},image:{title:'Image Properties',titleButton:'Image Button Properties',menu:'Image Properties',infoTab:'Image Info',btnUpload:'Send it to the Server',upload:'Upload',alt:'Alternative Text',lockRatio:'Lock Ratio',resetSize:'Reset Size',border:'Border',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Please type the image URL',linkTab:'Link',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flash Properties',propertiesTab:'Properties',title:'Flash Properties',chkPlay:'Auto Play',chkLoop:'Loop',chkMenu:'Enable Flash Menu',chkFull:'Allow Fullscreen',scale:'Scale',scaleAll:'Show all',scaleNoBorder:'No Border',scaleFit:'Exact Fit',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs Bottom',alignAbsMiddle:'Abs Middle',alignBaseline:'Baseline',alignTextTop:'Text Top',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Background color',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'URL must not be empty.',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Check Spelling',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Not in dictionary',changeTo:'Change to',btnIgnore:'Ignore',btnIgnoreAll:'Ignore All',btnReplace:'Replace',btnReplaceAll:'Replace All',btnUndo:'Undo',noSuggestions:'- No suggestions -',progress:'Spell check in progress...',noMispell:'Spell check complete: No misspellings found',noChanges:'Spell check complete: No words changed',oneChange:'Spell check complete: One word changed',manyChanges:'Spell check complete: %1 words changed',ieSpellDownload:'Spell checker not installed. Do you want to download it now?'},smiley:{toolbar:'Smiley',title:'Insert a Smiley',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Insert/Remove Numbered List',bulletedlist:'Insert/Remove Bulleted List',indent:'Increase Indent',outdent:'Decrease Indent',justify:{left:'Align Left',center:'Center',right:'Align Right',block:'Justify'},blockquote:'Block Quote',clipboard:{title:'Paste',cutError:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).",copyError:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).",pasteMsg:'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Paste from Word',title:'Paste from Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Paste as plain text',title:'Paste as Plain Text'},templates:{button:'Templates',title:'Content Templates',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Please select the template to open in the editor',emptyListMsg:'(No templates defined)'},showBlocks:'Show Blocks',stylesCombo:{label:'Styles',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Paragraph Format',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font Name'},fontSize:{label:'Size',voiceLabel:'Font Size',panelTitle:'Font Size'},colorButton:{textColorTitle:'Text Color',bgColorTitle:'Background Color',panelTitle:'Colors',auto:'Automatic',more:'More Colors...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'No suggestions',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Document Properties',title:'Document Properties',design:'Design',meta:'Meta Tags',chooseColor:'Choose',other:'Other...',docTitle:'Page Title',charset:'Character Set Encoding',charsetOther:'Other Character Set Encoding',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Document Type Heading',docTypeOther:'Other Document Type Heading',xhtmlDec:'Include XHTML Declarations',bgColor:'Background Color',bgImage:'Background Image URL',bgFixed:'Non-scrolling (Fixed) Background',txtColor:'Text Color',margin:'Page Margins',marginTop:'Top',marginLeft:'Left',marginRight:'Right',marginBottom:'Bottom',metaKeywords:'Document Indexing Keywords (comma separated)',metaDescription:'Document Description',metaAuthor:'Author',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/lt.js��������������������������������������������0000664�0001750�0001750�00000045655�12262650742�021771� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.lt={dir:'ltr',editorTitle:'Pilnas redaktorius, %1',editorHelp:'Spauskite ALT 0 dėl pagalbos',toolbars:'Redaktoriaus įrankiai',editor:'Pilnas redaktorius',source:'Šaltinis',newPage:'Naujas puslapis',save:'Išsaugoti',preview:'Peržiūra',cut:'Iškirpti',copy:'Kopijuoti',paste:'Įdėti',print:'Spausdinti',underline:'Pabrauktas',bold:'Pusjuodis',italic:'Kursyvas',selectAll:'Pažymėti viską',removeFormat:'Panaikinti formatą',strike:'Perbrauktas',subscript:'Apatinis indeksas',superscript:'Viršutinis indeksas',horizontalrule:'Įterpti horizontalią liniją',pagebreak:'Įterpti puslapių skirtuką',pagebreakAlt:'Puslapio skirtukas',unlink:'Panaikinti nuorodą',undo:'Atšaukti',redo:'Atstatyti',common:{browseServer:'Naršyti po serverį',url:'URL',protocol:'Protokolas',upload:'Siųsti',uploadSubmit:'Siųsti į serverį',image:'Vaizdas',flash:'Flash',form:'Forma',checkbox:'Žymimasis langelis',radio:'Žymimoji akutė',textField:'Teksto laukas',textarea:'Teksto sritis',hiddenField:'Nerodomas laukas',button:'Mygtukas',select:'Atrankos laukas',imageButton:'Vaizdinis mygtukas',notSet:'<nėra nustatyta>',id:'Id',name:'Vardas',langDir:'Teksto kryptis',langDirLtr:'Iš kairės į dešinę (LTR)',langDirRtl:'Iš dešinės į kairę (RTL)',langCode:'Kalbos kodas',longDescr:'Ilgas aprašymas URL',cssClass:'Stilių lentelės klasės',advisoryTitle:'Konsultacinė antraštė',cssStyle:'Stilius',ok:'OK',cancel:'Nutraukti',close:'Uždaryti',preview:'Peržiūrėti',generalTab:'Bendros savybės',advancedTab:'Papildomas',validateNumberFailed:'Ši reikšmė nėra skaičius.',confirmNewPage:'Visas neišsaugotas turinys bus prarastas. Ar tikrai norite įkrauti naują puslapį?',confirmCancel:'Kai kurie parametrai pasikeitė. Ar tikrai norite užverti langą?',options:'Parametrai',target:'Tikslinė nuoroda',targetNew:'Naujas langas (_blank)',targetTop:'Viršutinis langas (_top)',targetSelf:'Esamas langas (_self)',targetParent:'Paskutinis langas (_parent)',langDirLTR:'Iš kairės į dešinę (LTR)',langDirRTL:'Iš dešinės į kairę (RTL)',styles:'Stilius',cssClasses:'Stilių klasės',width:'Plotis',height:'Aukštis',align:'Lygiuoti',alignLeft:'Kairę',alignRight:'Dešinę',alignCenter:'Centrą',alignTop:'Viršūnę',alignMiddle:'Vidurį',alignBottom:'Apačią',invalidValue:'Invalid value.',invalidHeight:'Aukštis turi būti nurodytas skaičiais.',invalidWidth:'Plotis turi būti nurodytas skaičiais.',invalidCssLength:'Reikšmė nurodyta "%1" laukui, turi būti teigiamas skaičius su arba be tinkamo CSS matavimo vieneto (px, %, in, cm, mm, em, ex, pt arba pc).',invalidHtmlLength:'Reikšmė nurodyta "%1" laukui, turi būti teigiamas skaičius su arba be tinkamo HTML matavimo vieneto (px arba %).',invalidInlineStyle:'Reikšmė nurodyta vidiniame stiliuje turi būti sudaryta iš vieno šių reikšmių "vardas : reikšmė", atskirta kabliataškiais.',cssLengthTooltip:'Įveskite reikšmę pikseliais arba skaičiais su tinkamu CSS vienetu (px, %, in, cm, mm, em, ex, pt arba pc).',unavailable:'%1<span class="cke_accessibility">, netinkamas</span>'},contextmenu:{options:'Kontekstinio meniu parametrai'},specialChar:{toolbar:'Įterpti specialų simbolį',title:'Pasirinkite specialų simbolį',options:'Specialaus simbolio nustatymai'},link:{toolbar:'Įterpti/taisyti nuorodą',other:'<kitas>',menu:'Taisyti nuorodą',title:'Nuoroda',info:'Nuorodos informacija',target:'Paskirties vieta',upload:'Siųsti',advanced:'Papildomas',type:'Nuorodos tipas',toUrl:'Nuoroda',toAnchor:'Žymė šiame puslapyje',toEmail:'El.paštas',targetFrame:'<kadras>',targetPopup:'<išskleidžiamas langas>',targetFrameName:'Paskirties kadro vardas',targetPopupName:'Paskirties lango vardas',popupFeatures:'Išskleidžiamo lango savybės',popupResizable:'Kintamas dydis',popupStatusBar:'Būsenos juosta',popupLocationBar:'Adreso juosta',popupToolbar:'Mygtukų juosta',popupMenuBar:'Meniu juosta',popupFullScreen:'Visas ekranas (IE)',popupScrollBars:'Slinkties juostos',popupDependent:'Priklausomas (Netscape)',popupLeft:'Kairė pozicija',popupTop:'Viršutinė pozicija',id:'Id',langDir:'Teksto kryptis',langDirLTR:'Iš kairės į dešinę (LTR)',langDirRTL:'Iš dešinės į kairę (RTL)',acccessKey:'Prieigos raktas',name:'Vardas',langCode:'Teksto kryptis',tabIndex:'Tabuliavimo indeksas',advisoryTitle:'Konsultacinė antraštė',advisoryContentType:'Konsultacinio turinio tipas',cssClasses:'Stilių lentelės klasės',charset:'Susietų išteklių simbolių lentelė',styles:'Stilius',rel:'Sąsajos',selectAnchor:'Pasirinkite žymę',anchorName:'Pagal žymės vardą',anchorId:'Pagal žymės Id',emailAddress:'El.pašto adresas',emailSubject:'Žinutės tema',emailBody:'Žinutės turinys',noAnchors:'(Šiame dokumente žymių nėra)',noUrl:'Prašome įvesti nuorodos URL',noEmail:'Prašome įvesti el.pašto adresą'},anchor:{toolbar:'Įterpti/modifikuoti žymę',menu:'Žymės savybės',title:'Žymės savybės',name:'Žymės vardas',errorName:'Prašome įvesti žymės vardą',remove:'Pašalinti žymę'},list:{numberedTitle:'Skaitmeninio sąrašo nustatymai',bulletedTitle:'Ženklelinio sąrašo nustatymai',type:'Rūšis',start:'Pradžia',validateStartNumber:'Sąrašo pradžios skaitmuo turi būti sveikas skaičius.',circle:'Apskritimas',disc:'Diskas',square:'Kvadratas',none:'Niekas',notset:'<nenurodytas>',armenian:'Armėniški skaitmenys',georgian:'Gruziniški skaitmenys (an, ban, gan, t.t)',lowerRoman:'Mažosios Romėnų (i, ii, iii, iv, v, t.t)',upperRoman:'Didžiosios Romėnų (I, II, III, IV, V, t.t)',lowerAlpha:'Mažosios Alpha (a, b, c, d, e, t.t)',upperAlpha:'Didžiosios Alpha (A, B, C, D, E, t.t)',lowerGreek:'Mažosios Graikų (alpha, beta, gamma, t.t)',decimal:'Dešimtainis (1, 2, 3, t.t)',decimalLeadingZero:'Dešimtainis su nuliu priekyje (01, 02, 03, t.t)'},findAndReplace:{title:'Surasti ir pakeisti',find:'Rasti',replace:'Pakeisti',findWhat:'Surasti tekstą:',replaceWith:'Pakeisti tekstu:',notFoundMsg:'Nurodytas tekstas nerastas.',findOptions:'Paieškos nustatymai',matchCase:'Skirti didžiąsias ir mažąsias raides',matchWord:'Atitikti pilną žodį',matchCyclic:'Sutampantis cikliškumas',replaceAll:'Pakeisti viską',replaceSuccessMsg:'%1 sutapimas(ų) buvo pakeisti.'},table:{toolbar:'Lentelė',title:'Lentelės savybės',menu:'Lentelės savybės',deleteTable:'Šalinti lentelę',rows:'Eilutės',columns:'Stulpeliai',border:'Rėmelio dydis',widthPx:'taškais',widthPc:'procentais',widthUnit:'pločio vienetas',cellSpace:'Tarpas tarp langelių',cellPad:'Trapas nuo langelio rėmo iki teksto',caption:'Antraštė',summary:'Santrauka',headers:'Antraštės',headersNone:'Nėra',headersColumn:'Pirmas stulpelis',headersRow:'Pirma eilutė',headersBoth:'Abu',invalidRows:'Skaičius turi būti didesnis nei 0.',invalidCols:'Skaičius turi būti didesnis nei 0.',invalidBorder:'Reikšmė turi būti nurodyta skaičiumi.',invalidWidth:'Reikšmė turi būti nurodyta skaičiumi.',invalidHeight:'Reikšmė turi būti nurodyta skaičiumi.',invalidCellSpacing:'Reikšmė turi būti nurodyta skaičiumi.',invalidCellPadding:'Reikšmė turi būti nurodyta skaičiumi.',cell:{menu:'Langelis',insertBefore:'Įterpti langelį prieš',insertAfter:'Įterpti langelį po',deleteCell:'Šalinti langelius',merge:'Sujungti langelius',mergeRight:'Sujungti su dešine',mergeDown:'Sujungti su apačia',splitHorizontal:'Skaidyti langelį horizontaliai',splitVertical:'Skaidyti langelį vertikaliai',title:'Cell nustatymai',cellType:'Cell rūšis',rowSpan:'Eilučių Span',colSpan:'Stulpelių Span',wordWrap:'Sutraukti raides',hAlign:'Horizontalus lygiavimas',vAlign:'Vertikalus lygiavimas',alignBaseline:'Apatinė linija',bgColor:'Fono spalva',borderColor:'Rėmelio spalva',data:'Data',header:'Antraštė',yes:'Taip',no:'Ne',invalidWidth:'Reikšmė turi būti skaičius.',invalidHeight:'Reikšmė turi būti skaičius.',invalidRowSpan:'Reikšmė turi būti skaičius.',invalidColSpan:'Reikšmė turi būti skaičius.',chooseColor:'Pasirinkite'},row:{menu:'Eilutė',insertBefore:'Įterpti eilutę prieš',insertAfter:'Įterpti eilutę po',deleteRow:'Šalinti eilutes'},column:{menu:'Stulpelis',insertBefore:'Įterpti stulpelį prieš',insertAfter:'Įterpti stulpelį po',deleteColumn:'Šalinti stulpelius'}},button:{title:'Mygtuko savybės',text:'Tekstas (Reikšmė)',type:'Tipas',typeBtn:'Mygtukas',typeSbm:'Siųsti',typeRst:'Išvalyti'},checkboxAndRadio:{checkboxTitle:'Žymimojo langelio savybės',radioTitle:'Žymimosios akutės savybės',value:'Reikšmė',selected:'Pažymėtas'},form:{title:'Formos savybės',menu:'Formos savybės',action:'Veiksmas',method:'Metodas',encoding:'Kodavimas'},select:{title:'Atrankos lauko savybės',selectInfo:'Informacija',opAvail:'Galimos parinktys',value:'Reikšmė',size:'Dydis',lines:'eilučių',chkMulti:'Leisti daugeriopą atranką',opText:'Tekstas',opValue:'Reikšmė',btnAdd:'Įtraukti',btnModify:'Modifikuoti',btnUp:'Aukštyn',btnDown:'Žemyn',btnSetValue:'Laikyti pažymėta reikšme',btnDelete:'Trinti'},textarea:{title:'Teksto srities savybės',cols:'Ilgis',rows:'Plotis'},textfield:{title:'Teksto lauko savybės',name:'Vardas',value:'Reikšmė',charWidth:'Ilgis simboliais',maxChars:'Maksimalus simbolių skaičius',type:'Tipas',typeText:'Tekstas',typePass:'Slaptažodis'},hidden:{title:'Nerodomo lauko savybės',name:'Vardas',value:'Reikšmė'},image:{title:'Vaizdo savybės',titleButton:'Vaizdinio mygtuko savybės',menu:'Vaizdo savybės',infoTab:'Vaizdo informacija',btnUpload:'Siųsti į serverį',upload:'Nusiųsti',alt:'Alternatyvus Tekstas',lockRatio:'Išlaikyti proporciją',resetSize:'Atstatyti dydį',border:'Rėmelis',hSpace:'Hor.Erdvė',vSpace:'Vert.Erdvė',alertUrl:'Prašome įvesti vaizdo URL',linkTab:'Nuoroda',button2Img:'Ar norite mygtuką paversti paprastu paveiksliuku?',img2Button:'Ar norite paveiksliuką paversti mygtuku?',urlMissing:'Paveiksliuko nuorodos nėra.',validateBorder:'Reikšmė turi būti sveikas skaičius.',validateHSpace:'Reikšmė turi būti sveikas skaičius.',validateVSpace:'Reikšmė turi būti sveikas skaičius.'},flash:{properties:'Flash savybės',propertiesTab:'Nustatymai',title:'Flash savybės',chkPlay:'Automatinis paleidimas',chkLoop:'Ciklas',chkMenu:'Leisti Flash meniu',chkFull:'Leisti per visą ekraną',scale:'Mastelis',scaleAll:'Rodyti visą',scaleNoBorder:'Be rėmelio',scaleFit:'Tikslus atitikimas',access:'Skripto priėjimas',accessAlways:'Visada',accessSameDomain:'Tas pats domenas',accessNever:'Niekada',alignAbsBottom:'Absoliučią apačią',alignAbsMiddle:'Absoliutų vidurį',alignBaseline:'Apatinę liniją',alignTextTop:'Teksto viršūnę',quality:'Kokybė',qualityBest:'Geriausia',qualityHigh:'Gera',qualityAutoHigh:'Automatiškai Gera',qualityMedium:'Vidutinė',qualityAutoLow:'Automatiškai Žema',qualityLow:'Žema',windowModeWindow:'Langas',windowModeOpaque:'Nepermatomas',windowModeTransparent:'Permatomas',windowMode:'Lango režimas',flashvars:'Flash kintamieji',bgcolor:'Fono spalva',hSpace:'Hor.Erdvė',vSpace:'Vert.Erdvė',validateSrc:'Prašome įvesti nuorodos URL',validateHSpace:'HSpace turi būti skaičius.',validateVSpace:'VSpace turi būti skaičius.'},spellCheck:{toolbar:'Rašybos tikrinimas',title:'Tikrinti klaidas',notAvailable:'Atleiskite, šiuo metu servisas neprieinamas.',errorLoading:'Klaida įkraunant servisą: %s.',notInDic:'Žodyne nerastas',changeTo:'Pakeisti į',btnIgnore:'Ignoruoti',btnIgnoreAll:'Ignoruoti visus',btnReplace:'Pakeisti',btnReplaceAll:'Pakeisti visus',btnUndo:'Atšaukti',noSuggestions:'- Nėra pasiūlymų -',progress:'Vyksta rašybos tikrinimas...',noMispell:'Rašybos tikrinimas baigtas: Nerasta rašybos klaidų',noChanges:'Rašybos tikrinimas baigtas: Nėra pakeistų žodžių',oneChange:'Rašybos tikrinimas baigtas: Vienas žodis pakeistas',manyChanges:'Rašybos tikrinimas baigtas: Pakeista %1 žodžių',ieSpellDownload:'Rašybos tikrinimas neinstaliuotas. Ar Jūs norite jį dabar atsisiųsti?'},smiley:{toolbar:'Veideliai',title:'Įterpti veidelį',options:'Šypsenėlių nustatymai'},elementsPath:{eleLabel:'Elemento kelias',eleTitle:'%1 elementas'},numberedlist:'Numeruotas sąrašas',bulletedlist:'Suženklintas sąrašas',indent:'Padidinti įtrauką',outdent:'Sumažinti įtrauką',justify:{left:'Lygiuoti kairę',center:'Centruoti',right:'Lygiuoti dešinę',block:'Lygiuoti abi puses'},blockquote:'Citata',clipboard:{title:'Įdėti',cutError:'Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti iškirpimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl/Cmd+X).',copyError:'Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti kopijavimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl/Cmd+C).',pasteMsg:'Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami klaviatūrą (<STRONG>Ctrl/Cmd+V</STRONG>) ir paspauskite mygtuką <STRONG>OK</STRONG>.',securityMsg:'Dėl jūsų naršyklės saugumo nustatymų, redaktorius negali tiesiogiai pasiekti laikinosios atminties. Jums reikia nukopijuoti dar kartą į šį langą.',pasteArea:'Įkelti dalį'},pastefromword:{confirmCleanup:'Tekstas, kurį įkeliate yra kopijuojamas iš Word. Ar norite jį išvalyti prieš įkeliant?',toolbar:'Įdėti iš Word',title:'Įdėti iš Word',error:'Dėl vidinių sutrikimų, nepavyko išvalyti įkeliamo teksto'},pasteText:{button:'Įdėti kaip gryną tekstą',title:'Įdėti kaip gryną tekstą'},templates:{button:'Šablonai',title:'Turinio šablonai',options:'Template Options',insertOption:'Pakeisti dabartinį turinį pasirinktu šablonu',selectPromptMsg:'Pasirinkite norimą šabloną<br>(<b>Dėmesio!</b> esamas turinys bus prarastas):',emptyListMsg:'(Šablonų sąrašas tuščias)'},showBlocks:'Rodyti blokus',stylesCombo:{label:'Stilius',panelTitle:'Stilių formatavimas',panelTitle1:'Blokų stiliai',panelTitle2:'Vidiniai stiliai',panelTitle3:'Objektų stiliai'},format:{label:'Šrifto formatas',panelTitle:'Šrifto formatas',tag_p:'Normalus',tag_pre:'Formuotas',tag_address:'Kreipinio',tag_h1:'Antraštinis 1',tag_h2:'Antraštinis 2',tag_h3:'Antraštinis 3',tag_h4:'Antraštinis 4',tag_h5:'Antraštinis 5',tag_h6:'Antraštinis 6',tag_div:'Normalus (DIV)'},div:{title:'Sukurti Div elementą',toolbar:'Sukurti Div elementą',cssClassInputLabel:'Stilių klasės',styleSelectLabel:'Stilius',IdInputLabel:'Id',languageCodeInputLabel:' Kalbos kodas',inlineStyleInputLabel:'Vidiniai stiliai',advisoryTitleInputLabel:'Patariamas pavadinimas',langDirLabel:'Kalbos nurodymai',langDirLTRLabel:'Iš kairės į dešinę (LTR)',langDirRTLLabel:'Iš dešinės į kairę (RTL)',edit:'Redaguoti Div',remove:'Pašalinti Div'},iframe:{title:'IFrame nustatymai',toolbar:'IFrame',noUrl:'Nurodykite iframe nuorodą',scrolling:'Įjungti slankiklius',border:'Rodyti rėmelį'},font:{label:'Šriftas',voiceLabel:'Šriftas',panelTitle:'Šriftas'},fontSize:{label:'Šrifto dydis',voiceLabel:'Šrifto dydis',panelTitle:'Šrifto dydis'},colorButton:{textColorTitle:'Teksto spalva',bgColorTitle:'Fono spalva',panelTitle:'Spalva',auto:'Automatinis',more:'Daugiau spalvų...'},colors:{'000':'Juoda',800000:'Kaštoninė','8B4513':'Tamsiai ruda','2F4F4F':'Pilka tamsaus šiferio','008080':'Teal','000080':'Karinis','4B0082':'Indigo',696969:'Tamsiai pilka',B22222:'Ugnies',A52A2A:'Ruda',DAA520:'Aukso','006400':'Tamsiai žalia','40E0D0':'Turquoise','0000CD':'Vidutinė mėlyna',800080:'Violetinė',808080:'Pilka',F00:'Raudona',FF8C00:'Tamsiai oranžinė',FFD700:'Auksinė','008000':'Žalia','0FF':'Žydra','00F':'Mėlyna',EE82EE:'Violetinė',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Oranžinė',FFFF00:'Geltona','00FF00':'Citrinų',AFEEEE:'Pale Turquoise',ADD8E6:'Šviesiai mėlyna',DDA0DD:'Plum',D3D3D3:'Šviesiai pilka',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Šviesiai geltona',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'Balta'},scayt:{title:'Tikrinti klaidas kai rašoma',opera_title:'Nepalaikoma naršyklėje Opera',enable:'Įjungti SCAYT',disable:'Išjungti SCAYT',about:'Apie SCAYT',toggle:'Perjungti SCAYT',options:'Parametrai',langs:'Kalbos',moreSuggestions:'Daugiau patarimų',ignore:'Ignoruoti',ignoreAll:'Ignoruoti viską',addWord:'Pridėti žodį',emptyDic:'Žodyno vardas neturėtų būti tuščias.',noSuggestions:'No suggestions',optionsTab:'Parametrai',allCaps:'Ignoruoti visas didžiąsias raides',ignoreDomainNames:'Ignoruoti domenų vardus',mixedCase:'Ignoruoti maišyto dydžio raides',mixedWithDigits:'Ignoruoti raides su skaičiais',languagesTab:'Kalbos',dictionariesTab:'Žodynai',dic_field_name:'Žodyno pavadinimas',dic_create:'Sukurti',dic_restore:'Atstatyti',dic_delete:'Ištrinti',dic_rename:'Pervadinti',dic_info:'Paprastai žodynas yra saugojamas sausainėliuose (cookies), kurių dydis, bet kokiu atveju, yra apribotas. Esant sausainėlių apimties pervišiui, viskas bus saugoma serveryje. Jei norite iš kart viską saugoti serveryje, turite sugalvoti žodynui pavadinimą. Jei jau turite žodyną, įrašykite pavadinimą ir nuspauskite Atstatyti mygtuką.',aboutTab:'Apie'},about:{title:'Apie CKEditor',dlgTitle:'Apie CKEditor',help:'Patikrinkite $1 dėl pagalbos.',userGuide:'CKEditor Vartotojo Gidas',moreInfo:'Dėl licencijavimo apsilankykite mūsų svetainėje:',copy:'Copyright © $1. Visos teiss saugomos.'},maximize:'Išdidinti',minimize:'Sumažinti',fakeobjects:{anchor:'Žymė',flash:'Flash animacija',iframe:'IFrame',hiddenfield:'Paslėptas laukas',unknown:'Nežinomas objektas'},resize:'Pavilkite, kad pakeistumėte dydį',colordialog:{title:'Pasirinkite spalvą',options:'Spalvos nustatymai',highlight:'Paryškinti',selected:'Pasirinkta spalva',clear:'Išvalyti'},toolbarCollapse:'Apjungti įrankių juostą',toolbarExpand:'Išplėsti įrankių juostą',toolbarGroups:{document:'Dokumentas',clipboard:'Atmintinė/Atgal',editing:'Redagavimas',forms:'Formos',basicstyles:'Pagrindiniai stiliai',paragraph:'Paragrafas',links:'Nuorodos',insert:'Įterpti',styles:'Stiliai',colors:'Spalvos',tools:'Įrankiai'},bidi:{ltr:'Tekstas iš kairės į dešinę',rtl:'Tekstas iš dešinės į kairę'},docprops:{label:'Dokumento savybės',title:'Dokumento savybės',design:'Išdėstymas',meta:'Meta duomenys',chooseColor:'Pasirinkite',other:'<kitas>',docTitle:'Puslapio antraštė',charset:'Simbolių kodavimo lentelė',charsetOther:'Kita simbolių kodavimo lentelė',charsetASCII:'ASCII',charsetCE:'Centrinės Europos',charsetCT:'Tradicinės kinų (Big5)',charsetCR:'Kirilica',charsetGR:'Graikų',charsetJP:'Japonų',charsetKR:'Korėjiečių',charsetTR:'Turkų',charsetUN:'Unikodas (UTF-8)',charsetWE:'Vakarų Europos',docType:'Dokumento tipo antraštė',docTypeOther:'Kita dokumento tipo antraštė',xhtmlDec:'Įtraukti XHTML deklaracijas',bgColor:'Fono spalva',bgImage:'Fono paveikslėlio nuoroda (URL)',bgFixed:'Neslenkantis fonas',txtColor:'Teksto spalva',margin:'Puslapio kraštinės',marginTop:'Viršuje',marginLeft:'Kairėje',marginRight:'Dešinėje',marginBottom:'Apačioje',metaKeywords:'Dokumento indeksavimo raktiniai žodžiai (atskirti kableliais)',metaDescription:'Dokumento apibūdinimas',metaAuthor:'Autorius',metaCopyright:'Autorinės teisės',previewHtml:'<p>Tai yra <strong>pavyzdinis tekstas</strong>. Jūs naudojate <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �����������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/eo.js��������������������������������������������0000664�0001750�0001750�00000044464�12262650742�021752� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.eo={dir:'ltr',editorTitle:'riĉteksta redaktilo, %1',editorHelp:'Premu ALT 0 por helpilo',toolbars:'Ilobretoj de la redaktilo',editor:'Redaktilo por Riĉiga Teksto',source:'Fonto',newPage:'Nova Paĝo',save:'Konservi',preview:'Vidigi Aspekton',cut:'Eltondi',copy:'Kopii',paste:'Interglui',print:'Presi',underline:'Substreko',bold:'Grasa',italic:'Kursiva',selectAll:'Elekti ĉion',removeFormat:'Forigi Formaton',strike:'Trastreko',subscript:'Suba indico',superscript:'Supra indico',horizontalrule:'Enmeti Horizontalan Linion',pagebreak:'Enmeti Paĝavancon por Presado',pagebreakAlt:'Paĝavanco',unlink:'Forigi Ligilon',undo:'Malfari',redo:'Refari',common:{browseServer:'Foliumi en la Servilo',url:'URL',protocol:'Protokolo',upload:'Alŝuti',uploadSubmit:'Sendu al Servilo',image:'Bildo',flash:'Flaŝo',form:'Formularo',checkbox:'Markobutono',radio:'Radiobutono',textField:'Teksta kampo',textarea:'Teksta Areo',hiddenField:'Kaŝita Kampo',button:'Butono',select:'Elekta Kampo',imageButton:'Bildbutono',notSet:'<Defaŭlta>',id:'Id',name:'Nomo',langDir:'Skribdirekto',langDirLtr:'De maldekstro dekstren (LTR)',langDirRtl:'De dekstro maldekstren (RTL)',langCode:'Lingva Kodo',longDescr:'URL de Longa Priskribo',cssClass:'Klasoj de Stilfolioj',advisoryTitle:'Priskriba Titolo',cssStyle:'Stilo',ok:'Akcepti',cancel:'Rezigni',close:'Fermi',preview:'Vidigi Aspekton',generalTab:'Ĝenerala',advancedTab:'Speciala',validateNumberFailed:'Tiu valoro ne estas nombro.',confirmNewPage:'La neregistritaj ŝanĝoj estas perdotaj. Ĉu vi certas, ke vi volas ŝargi novan paĝon?',confirmCancel:'Iuj opcioj esta ŝanĝitaj. Ĉu vi certas, ke vi volas fermi la dialogon?',options:'Opcioj',target:'Celo',targetNew:'Nova Fenestro (_blank)',targetTop:'Supra Fenestro (_top)',targetSelf:'Sama Fenestro (_self)',targetParent:'Patra Fenestro (_parent)',langDirLTR:'De maldekstro dekstren (LTR)',langDirRTL:'De dekstro maldekstren (RTL)',styles:'Stilo',cssClasses:'Stilfoliaj Klasoj',width:'Larĝo',height:'Alto',align:'Ĝisrandigo',alignLeft:'Maldekstre',alignRight:'Dekstre',alignCenter:'Centre',alignTop:'Supre',alignMiddle:'Centre',alignBottom:'Malsupre',invalidValue:'Nevalida Valoro',invalidHeight:'Alto devas esti nombro.',invalidWidth:'Larĝo devas esti nombro.',invalidCssLength:'La valoro indikita por la "%1" kampo devas esti pozitiva nombro kun aŭ sen valida CSSmezurunuo (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'La valoro indikita por la "%1" kampo devas esti pozitiva nombro kun aŭ sen valida HTMLmezurunuo (px or %).',invalidInlineStyle:'La valoro indikita por la enlinia stilo devas konsisti el unu aŭ pluraj elementoj kun la formato de "nomo : valoro", apartigitaj per punktokomoj.',cssLengthTooltip:'Entajpu nombron por rastrumera valoro aŭ nombron kun valida CSSunuo (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, nehavebla</span>'},contextmenu:{options:'Opcioj de Kunteksta Menuo'},specialChar:{toolbar:'Enmeti Specialan Signon',title:'Selekti Specialan Signon',options:'Opcioj pri Specialaj Signoj'},link:{toolbar:'Enmeti/Ŝanĝi Ligilon',other:'<alia>',menu:'Ŝanĝi Ligilon',title:'Ligilo',info:'Informoj pri la Ligilo',target:'Celo',upload:'Alŝuti',advanced:'Speciala',type:'Tipo de Ligilo',toUrl:'URL',toAnchor:'Ankri en tiu ĉi paĝo',toEmail:'Retpoŝto',targetFrame:'<kadro>',targetPopup:'<ŝprucfenestro>',targetFrameName:'Nomo de CelKadro',targetPopupName:'Nomo de Ŝprucfenestro',popupFeatures:'Atributoj de la Ŝprucfenestro',popupResizable:'Dimensiŝanĝebla',popupStatusBar:'Statobreto',popupLocationBar:'Adresobreto',popupToolbar:'Ilobreto',popupMenuBar:'Menubreto',popupFullScreen:'Tutekrane (IE)',popupScrollBars:'Rulumskaloj',popupDependent:'Dependa (Netscape)',popupLeft:'Maldekstra Pozicio',popupTop:'Supra Pozicio',id:'Id',langDir:'Skribdirekto',langDirLTR:'De maldekstro dekstren (LTR)',langDirRTL:'De dekstro maldekstren (RTL)',acccessKey:'Fulmoklavo',name:'Nomo',langCode:'Lingva Kodo',tabIndex:'Taba Indekso',advisoryTitle:'Priskriba Titolo',advisoryContentType:'Enhavotipo',cssClasses:'Klasoj de Stilfolioj',charset:'Signaro de la Ligita Rimedo',styles:'Stilo',rel:'Rilato',selectAnchor:'Elekti Ankron',anchorName:'Per Ankronomo',anchorId:'Per Elementidentigilo',emailAddress:'Retpoŝto',emailSubject:'Mesaĝa Temo',emailBody:'Mesaĝa korpo',noAnchors:'<Ne disponeblas ankroj en la dokumento>',noUrl:'Bonvolu entajpi la URL-on',noEmail:'Bonvolu entajpi la retpoŝtadreson'},anchor:{toolbar:'Ankro',menu:'Enmeti/Ŝanĝi Ankron',title:'Ankraj Atributoj',name:'Ankra Nomo',errorName:'Bv entajpi la ankran nomon',remove:'Forigi Ankron'},list:{numberedTitle:'Atributoj de Numera Listo',bulletedTitle:'Atributoj de Bula Listo',type:'Tipo',start:'Komenco',validateStartNumber:'La unua listero devas esti entjera nombro.',circle:'Cirklo',disc:'Disko',square:'kvadrato',none:'Neniu',notset:'<Defaŭlta>',armenian:'Armena nombrado',georgian:'Gruza nombrado (an, ban, gan, ktp.)',lowerRoman:'Minusklaj Romanaj Nombroj (i, ii, iii, iv, v, ktp.)',upperRoman:'Majusklaj Romanaj Nombroj (I, II, III, IV, V, ktp.)',lowerAlpha:'Minusklaj Literoj (a, b, c, d, e, ktp.)',upperAlpha:'Majusklaj Literoj (A, B, C, D, E, ktp.)',lowerGreek:'Grekaj Minusklaj Literoj (alpha, beta, gamma, ktp.)',decimal:'Dekumaj Nombroj (1, 2, 3, ktp.)',decimalLeadingZero:'Dekumaj Nombroj malantaŭ nulo (01, 02, 03, ktp.)'},findAndReplace:{title:'Serĉi kaj Anstataŭigi',find:'Serĉi',replace:'Anstataŭigi',findWhat:'Serĉi:',replaceWith:'Anstataŭigi per:',notFoundMsg:'La celteksto ne estas trovita.',findOptions:'Opcioj pri Serĉado',matchCase:'Kongruigi Usklecon',matchWord:'Tuta Vorto',matchCyclic:'Cikla Serĉado',replaceAll:'Anstataŭigi Ĉion',replaceSuccessMsg:'%1 anstataŭigita(j) apero(j).'},table:{toolbar:'Tabelo',title:'Atributoj de Tabelo',menu:'Atributoj de Tabelo',deleteTable:'Forigi Tabelon',rows:'Linioj',columns:'Kolumnoj',border:'Bordero',widthPx:'Rastrumeroj',widthPc:'elcentoj',widthUnit:'unuo de larĝo',cellSpace:'Spaco inter la Ĉeloj',cellPad:'Interna Marĝeno de la ĉeloj',caption:'Tabeltitolo',summary:'Resumo',headers:'Supraj Paĝotitoloj',headersNone:'Neniu',headersColumn:'Unua kolumno',headersRow:'Unua linio',headersBoth:'Ambaŭ',invalidRows:'La nombro de la linioj devas superi 0.',invalidCols:'La nombro de la kolumnoj devas superi 0.',invalidBorder:'La bordergrando devas esti nombro.',invalidWidth:'La tabellarĝo devas esti nombro.',invalidHeight:'La tabelalto devas esti nombro.',invalidCellSpacing:'La spaco inter la ĉeloj devas esti pozitiva nombro.',invalidCellPadding:'La interna marĝeno en la ĉeloj devas esti pozitiva nombro.',cell:{menu:'Ĉelo',insertBefore:'Enmeti Ĉelon Antaŭ',insertAfter:'Enmeti Ĉelon Post',deleteCell:'Forigi la Ĉelojn',merge:'Kunfandi la Ĉelojn',mergeRight:'Kunfandi dekstren',mergeDown:'Kunfandi malsupren ',splitHorizontal:'Horizontale dividi',splitVertical:'Vertikale dividi',title:'Ĉelatributoj',cellType:'Ĉeltipo',rowSpan:'Kunfando de linioj',colSpan:'Kunfando de kolumnoj',wordWrap:'Cezuro',hAlign:'Horizontala ĝisrandigo',vAlign:'Vertikala ĝisrandigo',alignBaseline:'Malsupro de la teksto',bgColor:'Fonkoloro',borderColor:'Borderkoloro',data:'Datenoj',header:'Supra paĝotitolo',yes:'Jes',no:'No',invalidWidth:'Ĉellarĝo devas esti nombro.',invalidHeight:'Ĉelalto devas esti nombro.',invalidRowSpan:'Kunfando de linioj devas esti entjera nombro.',invalidColSpan:'Kunfando de kolumnoj devas esti entjera nombro.',chooseColor:'Elektu'},row:{menu:'Linio',insertBefore:'Enmeti linion antaŭ',insertAfter:'Enmeti linion post',deleteRow:'Forigi Liniojn'},column:{menu:'Kolumno',insertBefore:'Enmeti kolumnon antaŭ',insertAfter:'Enmeti kolumnon post',deleteColumn:'Forigi Kolumnojn'}},button:{title:'Butonaj atributoj',text:'Teksto (Valoro)',type:'Tipo',typeBtn:'Butono',typeSbm:'Validigi (submit)',typeRst:'Remeti en la originstaton (Reset)'},checkboxAndRadio:{checkboxTitle:'Markobutonaj Atributoj',radioTitle:'Radiobutonaj Atributoj',value:'Valoro',selected:'Selektita'},form:{title:'Formularaj Atributoj',menu:'Formularaj Atributoj',action:'Ago',method:'Metodo',encoding:'Kodoprezento'},select:{title:'Atributoj de Elekta Kampo',selectInfo:'Informoj pri la rulummenuo',opAvail:'Elektoj Disponeblaj',value:'Valoro',size:'Grando',lines:'Linioj',chkMulti:'Permesi Plurajn Elektojn',opText:'Teksto',opValue:'Valoro',btnAdd:'Aldoni',btnModify:'Modifi',btnUp:'Supren',btnDown:'Malsupren',btnSetValue:'Agordi kiel Elektitan Valoron',btnDelete:'Forigi'},textarea:{title:'Atributoj de Teksta Areo',cols:'Kolumnoj',rows:'Linioj'},textfield:{title:'Atributoj de Teksta Kampo',name:'Nomo',value:'Valoro',charWidth:'Signolarĝo',maxChars:'Maksimuma Nombro da Signoj',type:'Tipo',typeText:'Teksto',typePass:'Pasvorto'},hidden:{title:'Atributoj de Kaŝita Kampo',name:'Nomo',value:'Valoro'},image:{title:'Atributoj de Bildo',titleButton:'Bildbutonaj Atributoj',menu:'Atributoj de Bildo',infoTab:'Informoj pri Bildo',btnUpload:'Sendu al Servilo',upload:'Alŝuti',alt:'Anstataŭiga Teksto',lockRatio:'Konservi Proporcion',resetSize:'Origina Grando',border:'Bordero',hSpace:'Horizontala Spaco',vSpace:'Vertikala Spaco',alertUrl:'Bonvolu tajpi la retadreson de la bildo',linkTab:'Ligilo',button2Img:'Ĉu vi volas transformi la selektitan bildbutonon en simplan bildon?',img2Button:'Ĉu vi volas transformi la selektitan bildon en bildbutonon?',urlMissing:'La fontretadreso de la bildo mankas.',validateBorder:'La bordero devas esti entjera nombro.',validateHSpace:'La horizontala spaco devas esti entjera nombro.',validateVSpace:'La vertikala spaco devas esti entjera nombro.'},flash:{properties:'Flaŝatributoj',propertiesTab:'Atributoj',title:'Flaŝatributoj',chkPlay:'Aŭtomata legado',chkLoop:'Iteracio',chkMenu:'Ebligi flaŝmenuon',chkFull:'Permesi tutekranon',scale:'Skalo',scaleAll:'Montri ĉion',scaleNoBorder:'Neniu bordero',scaleFit:'Origina grando',access:'Atingi skriptojn',accessAlways:'Ĉiam',accessSameDomain:'Sama domajno',accessNever:'Neniam',alignAbsBottom:'Absoluta Malsupro',alignAbsMiddle:'Absoluta Centro',alignBaseline:'TekstoMalsupro',alignTextTop:'TekstoSupro',quality:'Kvalito',qualityBest:'Plej bona',qualityHigh:'Alta',qualityAutoHigh:'Aŭtomate alta',qualityMedium:'Meza',qualityAutoLow:'Aŭtomate malalta',qualityLow:'Malalta',windowModeWindow:'Fenestro',windowModeOpaque:'Opaka',windowModeTransparent:'Travidebla',windowMode:'Fenestra reĝimo',flashvars:'Variabloj por Flaŝo',bgcolor:'Fona Koloro',hSpace:'Horizontala Spaco',vSpace:'Vertikala Spaco',validateSrc:'Bonvolu entajpi la retadreson (URL)',validateHSpace:'Horizontala Spaco devas esti nombro.',validateVSpace:'Vertikala Spaco devas esti nombro.'},spellCheck:{toolbar:'Kontroli la ortografion',title:'Kontroli la ortografion',notAvailable:'Bedaŭrinde la servo ne funkcias nuntempe.',errorLoading:'Eraro en la servoelŝuto el la gastiga komputiko: %s.',notInDic:'Ne trovita en la vortaro',changeTo:'Ŝanĝi al',btnIgnore:'Ignori',btnIgnoreAll:'Ignori Ĉion',btnReplace:'Anstataŭigi',btnReplaceAll:'Anstataŭigi Ĉion',btnUndo:'Malfari',noSuggestions:'- Neniu propono -',progress:'La ortografio estas kontrolata...',noMispell:'Ortografikontrolado finita: neniu eraro trovita',noChanges:'Ortografikontrolado finita: neniu vorto korektita',oneChange:'Ortografikontrolado finita: unu vorto korektita',manyChanges:'Ortografikontrolado finita: %1 vortoj korektitaj',ieSpellDownload:'Ortografikontrolilo ne instalita. Ĉu vi volas elŝuti ĝin nun?'},smiley:{toolbar:'Mienvinjeto',title:'Enmeti Mienvinjeton',options:'Opcioj pri mienvinjetoj'},elementsPath:{eleLabel:'Vojo al Elementoj',eleTitle:'%1 elementoj'},numberedlist:'Numera Listo',bulletedlist:'Bula Listo',indent:'Pligrandigi Krommarĝenon',outdent:'Malpligrandigi Krommarĝenon',justify:{left:'Ĝisrandigi maldekstren',center:'Centrigi',right:'Ĝisrandigi dekstren',block:'Ĝisrandigi Ambaŭflanke'},blockquote:'Citaĵo',clipboard:{title:'Interglui',cutError:'La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras eltondajn operaciojn. Bonvolu uzi la klavaron por tio (Ctrl/Cmd-X).',copyError:'La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras kopiajn operaciojn. Bonvolu uzi la klavaron por tio (Ctrl/Cmd-C).',pasteMsg:'Bonvolu glui la tekston en la jenan areon per uzado de la klavaro (<strong>Ctrl/Cmd+V</strong>) kaj premu OK',securityMsg:'Pro la sekurecagordo de via TTT-legilo, la redaktilo ne povas rekte atingi viajn datenojn en la poŝo. Bonvolu denove interglui la datenojn en tiun fenestron.',pasteArea:'Intergluoareo'},pastefromword:{confirmCleanup:'La teksto, kiun vi volas interglui, ŝajnas esti kopiita el Word. Ĉu vi deziras purigi ĝin antaŭ intergluo?',toolbar:'Interglui el Word',title:'Interglui el Word',error:'Ne eblis purigi la intergluitajn datenojn pro interna eraro'},pasteText:{button:'Interglui kiel platan tekston',title:'Interglui kiel platan tekston'},templates:{button:'Ŝablonoj',title:'Enhavo de ŝablonoj',options:'Opcioj pri ŝablonoj',insertOption:'Anstataŭigi la nunan enhavon',selectPromptMsg:'Bonvolu selekti la ŝablonon por malfermi ĝin en la redaktilo',emptyListMsg:'(Neniu ŝablono difinita)'},showBlocks:'Montri la blokojn',stylesCombo:{label:'Stiloj',panelTitle:'Stiloj pri enpaĝigo',panelTitle1:'Stiloj de blokoj',panelTitle2:'Enliniaj Stiloj',panelTitle3:'Stiloj de objektoj'},format:{label:'Formato',panelTitle:'ParagrafFormato',tag_p:'Normala',tag_pre:'Formatita',tag_address:'Adreso',tag_h1:'Titolo 1',tag_h2:'Titolo 2',tag_h3:'Titolo 3',tag_h4:'Titolo 4',tag_h5:'Titolo 5',tag_h6:'Titolo 6',tag_div:'Normala (DIV)'},div:{title:'Krei DIV ujon',toolbar:'Krei DIV ujon',cssClassInputLabel:'Stilfolioklasoj',styleSelectLabel:'Stilo',IdInputLabel:'Id',languageCodeInputLabel:' Lingvokodo',inlineStyleInputLabel:'Enlinia stilo',advisoryTitleInputLabel:'Priskriba Titolo',langDirLabel:'Skribdirekto',langDirLTRLabel:'Maldekstre dekstren (angle LTR)',langDirRTLLabel:'Dekstre maldekstren (angle RTL)',edit:'Redakti Div',remove:'Forigi Div'},iframe:{title:'Atributoj de la enlinia kadro (IFrame)',toolbar:'Enlinia kadro (IFrame)',noUrl:'Bonvolu entajpi la retadreson de la ligilo al la enlinia kadro (IFrame)',scrolling:'Ebligi rulumskalon',border:'Montri borderon de kadro (frame)'},font:{label:'Tiparo',voiceLabel:'Tiparo',panelTitle:'Tipara nomo'},fontSize:{label:'Grado',voiceLabel:'Tipara grado',panelTitle:'Tipara grado'},colorButton:{textColorTitle:'Teksta Koloro',bgColorTitle:'Fona Koloro',panelTitle:'Koloroj',auto:'Aŭtomata',more:'Pli da Koloroj...'},colors:{'000':'Nigra',800000:'Kaŝtankolora','8B4513':'Mezbruna','2F4F4F':'Ardezgriza','008080':'Marĉanaskolora','000080':'Maristblua','4B0082':'Indigokolora',696969:'Malhelgriza',B22222:'Brikruĝa',A52A2A:'Bruna',DAA520:'Senbrilorkolora','006400':'Malhelverda','40E0D0':'Turkisblua','0000CD':'Reĝblua',800080:'Purpura',808080:'Griza',F00:'Ruĝa',FF8C00:'Malheloranĝkolora',FFD700:'Orkolora','008000':'Verda','0FF':'Verdblua','00F':'Blua',EE82EE:'Viola',A9A9A9:'Mezgriza',FFA07A:'Salmokolora',FFA500:'Oranĝkolora',FFFF00:'Flava','00FF00':'Limetkolora',AFEEEE:'Helturkiskolora',ADD8E6:'Helblua',DDA0DD:'Prunkolora',D3D3D3:'Helgriza',FFF0F5:'Lavendkolora vangoŝminko',FAEBD7:'Antikvablanka',FFFFE0:'Helflava',F0FFF0:'Vintromelonkolora',F0FFFF:'Lazura',F0F8FF:'Aliceblua',E6E6FA:'Lavendkolora',FFF:'Blanka'},scayt:{title:'OrtografiKontrolado Dum Vi Tajpas (OKDVT)',opera_title:'Ne subportata de Opera',enable:'Ebligi OKDVT',disable:'Malebligi OKDVT',about:'Pri OKDVT',toggle:'Baskuligi OKDVT',options:'Opcioj',langs:'Lingvoj',moreSuggestions:'Pli da sugestoj',ignore:'Ignori',ignoreAll:'Ignori ĉion',addWord:'Almeti la vorton',emptyDic:'La vortaronomo ne devus esti malplena.',noSuggestions:'No suggestions',optionsTab:'Opcioj',allCaps:'Ignori la vortojn skribitajn nur per ĉefliteroj',ignoreDomainNames:'Ignori domajnajn nomojn',mixedCase:'Ignori vortojn kun miksa uskleco',mixedWithDigits:'Ignori vortojn kun nombroj',languagesTab:'Lingvoj',dictionariesTab:'Vortaroj',dic_field_name:'Vortaronomo',dic_create:'Krei',dic_restore:'Restaŭri',dic_delete:'Forigi',dic_rename:'Renomi',dic_info:'Komence la vortaro de la uzanto estas konservita en kuketo. Tamen la kuketgrando estas limigita. Kiam la vortaro de la uzanto atingas grandon, kiu ne plu ebligas konservi ĝin en kuketo, tiam la vortaro povas esti konservata en niaj serviloj. Por konservi vian personan vortaron en nian servilon, vi devas indiki nomon por tiu vortaro. Se vi jam havas konservitan vortaron, bonvolu entajpi ties nomon kaj alklaki la restaŭrbutonon.',aboutTab:'Pri'},about:{title:'Pri CKEditor',dlgTitle:'Pri CKEditor',help:'Kontroli $1 por helpo.',userGuide:'CKEditor Uzindikoj',moreInfo:'Por informoj pri licenco, bonvolu viziti nian retpaĝaron:',copy:'Copyright © $1. Ĉiuj rajtoj rezervitaj.'},maximize:'Pligrandigi',minimize:'Malgrandigi',fakeobjects:{anchor:'Ankro',flash:'FlaŝAnimacio',iframe:'Enlinia Kadro (IFrame)',hiddenfield:'Kaŝita kampo',unknown:'Nekonata objekto'},resize:'Movigi por ŝanĝi la grandon',colordialog:{title:'Selekti koloron',options:'Opcioj pri koloroj',highlight:'Detaloj',selected:'Selektita koloro',clear:'Forigi'},toolbarCollapse:'Faldi la ilbreton',toolbarExpand:'Malfaldi la ilbreton',toolbarGroups:{document:'Dokumento',clipboard:'Poŝo/Malfari',editing:'Redaktado',forms:'Formularoj',basicstyles:'Bazaj stiloj',paragraph:'Paragrafo',links:'Ligiloj',insert:'Enmeti',styles:'Stiloj',colors:'Koloroj',tools:'Iloj'},bidi:{ltr:'Tekstdirekto de maldekstre dekstren',rtl:'Tekstdirekto de dekstre maldekstren'},docprops:{label:'Dokumentaj Atributoj',title:'Dokumentaj Atributoj',design:'Dizajno',meta:'Metadatenoj',chooseColor:'Elektu',other:'<alia>',docTitle:'Paĝotitolo',charset:'Signara Kodo',charsetOther:'Alia Signara Kodo',charsetASCII:'ASCII',charsetCE:'Centra Eŭropa',charsetCT:'Tradicia Ĉina (Big5)',charsetCR:'Cirila',charsetGR:'Greka',charsetJP:'Japana',charsetKR:'Korea',charsetTR:'Turka',charsetUN:'Unikodo (UTF-8)',charsetWE:'Okcidenta Eŭropa',docType:'Dokumenta Tipo',docTypeOther:'Alia Dokumenta Tipo',xhtmlDec:'Inkluzivi XHTML Deklarojn',bgColor:'Fona Koloro',bgImage:'URL de Fona Bildo',bgFixed:'Neruluma Fono',txtColor:'Teksta Koloro',margin:'Paĝaj Marĝenoj',marginTop:'Supra',marginLeft:'Maldekstra',marginRight:'Dekstra',marginBottom:'Malsupra',metaKeywords:'Ŝlosilvortoj de la Dokumento (apartigitaj de komoj)',metaDescription:'Dokumenta Priskribo',metaAuthor:'Verkinto',metaCopyright:'Kopirajto',previewHtml:'<p>Tio estas <strong>sampla teksto</strong>. Vi estas uzanta <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/km.js��������������������������������������������0000664�0001750�0001750�00000060131�12262650742�021743� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.km={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'កូត',newPage:'ទំព័រថ្មី',save:'រក្សាទុក',preview:'មើលសាកល្បង',cut:'កាត់យក',copy:'ចំលងយក',paste:'ចំលងដាក់',print:'បោះពុម្ភ',underline:'ដិតបន្ទាត់ពីក្រោមអក្សរ',bold:'អក្សរដិតធំ',italic:'អក្សរផ្តេក',selectAll:'ជ្រើសរើសទាំងអស់',removeFormat:'លប់ចោល ការរចនា',strike:'ដិតបន្ទាត់ពាក់កណ្តាលអក្សរ',subscript:'អក្សរតូចក្រោម',superscript:'អក្សរតូចលើ',horizontalrule:'បន្ថែមបន្ទាត់ផ្តេក',pagebreak:'បន្ថែម ការផ្តាច់ទំព័រ',pagebreakAlt:'Page Break',unlink:'លប់ឈ្នាប់',undo:'សារឡើងវិញ',redo:'ធ្វើឡើងវិញ',common:{browseServer:'មើល',url:'URL',protocol:'ប្រូតូកូល',upload:'ទាញយក',uploadSubmit:'បញ្ជូនទៅកាន់ម៉ាស៊ីនផ្តល់សេវា',image:'រូបភាព',flash:'Flash',form:'បែបបទ',checkbox:'ប្រអប់ជ្រើសរើស',radio:'ប៉ូតុនរង្វង់មូល',textField:'ជួរសរសេរអត្ថបទ',textarea:'តំបន់សរសេរអត្ថបទ',hiddenField:'ជួរលាក់',button:'ប៉ូតុន',select:'ជួរជ្រើសរើស',imageButton:'ប៉ូតុនរូបភាព',notSet:'<មិនមែន>',id:'Id',name:'ឈ្មោះ',langDir:'ទិសដៅភាសា',langDirLtr:'ពីឆ្វេងទៅស្តាំ(LTR)',langDirRtl:'ពីស្តាំទៅឆ្វេង(RTL)',langCode:'លេខកូតភាសា',longDescr:'អធិប្បាយ URL វែង',cssClass:'Stylesheet Classes',advisoryTitle:'ចំណងជើង ប្រឹក្សា',cssStyle:'ម៉ូត',ok:'យល់ព្រម',cancel:'មិនយល់ព្រម',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'កំរិតខ្ពស់',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'ទទឹង',height:'កំពស់',align:'កំណត់ទីតាំង',alignLeft:'ខាងឆ្វង',alignRight:'ខាងស្តាំ',alignCenter:'កណ្តាល',alignTop:'ខាងលើ',alignMiddle:'កណ្តាល',alignBottom:'ខាងក្រោម',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'បន្ថែមអក្សរពិសេស',title:'តូអក្សរពិសេស',options:'Special Character Options'},link:{toolbar:'បន្ថែម/កែប្រែ ឈ្នាប់',other:'<other>',menu:'កែប្រែឈ្នាប់',title:'ឈ្នាប់',info:'ពត៌មានអំពីឈ្នាប់',target:'គោលដៅ',upload:'ទាញយក',advanced:'កំរិតខ្ពស់',type:'ប្រភេទឈ្នាប់',toUrl:'URL',toAnchor:'យុថ្កានៅក្នុងទំព័រនេះ',toEmail:'អ៊ីមែល',targetFrame:'<ហ្វ្រេម>',targetPopup:'<វីនដូវ លោត>',targetFrameName:'ឈ្មោះហ្រ្វេមដែលជាគោលដៅ',targetPopupName:'ឈ្មោះវីនដូវលោត',popupFeatures:'លក្ខណះរបស់វីនដូលលោត',popupResizable:'Resizable',popupStatusBar:'របា ពត៌មាន',popupLocationBar:'របា ទីតាំង',popupToolbar:'របា ឩបករណ៍',popupMenuBar:'របា មឺនុយ',popupFullScreen:'អេក្រុងពេញ(IE)',popupScrollBars:'របា ទាញ',popupDependent:'អាស្រ័យលើ (Netscape)',popupLeft:'ទីតាំងខាងឆ្វេង',popupTop:'ទីតាំងខាងលើ',id:'Id',langDir:'ទិសដៅភាសា',langDirLTR:'ពីឆ្វេងទៅស្តាំ(LTR)',langDirRTL:'ពីស្តាំទៅឆ្វេង(RTL)',acccessKey:'ឃី សំរាប់ចូល',name:'ឈ្មោះ',langCode:'ទិសដៅភាសា',tabIndex:'លេខ Tab',advisoryTitle:'ចំណងជើង ប្រឹក្សា',advisoryContentType:'ប្រភេទអត្ថបទ ប្រឹក្សា',cssClasses:'Stylesheet Classes',charset:'លេខកូតអក្សររបស់ឈ្នាប់',styles:'ម៉ូត',rel:'Relationship',selectAnchor:'ជ្រើសរើសយុថ្កា',anchorName:'តាមឈ្មោះរបស់យុថ្កា',anchorId:'តាម Id',emailAddress:'អ៊ីមែល',emailSubject:'ចំណងជើងអត្ថបទ',emailBody:'អត្ថបទ',noAnchors:'(No anchors available in the document)',noUrl:'សូមសរសេរ អាស័យដ្ឋាន URL',noEmail:'សូមសរសេរ អាស័យដ្ឋាន អ៊ីមែល'},anchor:{toolbar:'បន្ថែម/កែប្រែ យុថ្កា',menu:'ការកំណត់យុថ្កា',title:'ការកំណត់យុថ្កា',name:'ឈ្មោះយុទ្ធថ្កា',errorName:'សូមសរសេរ ឈ្មោះយុទ្ធថ្កា',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'ស្វែងរក',replace:'ជំនួស',findWhat:'ស្វែងរកអ្វី:',replaceWith:'ជំនួសជាមួយ:',notFoundMsg:'ពាក្យនេះ រកមិនឃើញទេ ។',findOptions:'Find Options',matchCase:'ករណ៉ត្រូវរក',matchWord:'ត្រូវពាក្យទាំងអស់',matchCyclic:'Match cyclic',replaceAll:'ជំនួសទាំងអស់',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'តារាង',title:'ការកំណត់ តារាង',menu:'ការកំណត់ តារាង',deleteTable:'លប់តារាង',rows:'ជួរផ្តេក',columns:'ជួរឈរ',border:'ទំហំស៊ុម',widthPx:'ភីកសែល',widthPc:'ភាគរយ',widthUnit:'width unit',cellSpace:'គំលាតសែល',cellPad:'គែមសែល',caption:'ចំណងជើង',summary:'សេចក្តីសង្ខេប',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'លប់សែល',merge:'បញ្ជូលសែល',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'លប់ជួរផ្តេក'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'លប់ជួរឈរ'}},button:{title:'ការកំណត់ ប៉ូតុន',text:'អត្ថបទ(តំលៃ)',type:'ប្រភេទ',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'ការកំណត់ប្រអប់ជ្រើសរើស',radioTitle:'ការកំណត់ប៉ូតុនរង្វង់',value:'តំលៃ',selected:'បានជ្រើសរើស'},form:{title:'ការកំណត់បែបបទ',menu:'ការកំណត់បែបបទ',action:'សកម្មភាព',method:'វិធី',encoding:'Encoding'},select:{title:'ការកំណត់ជួរជ្រើសរើស',selectInfo:'ពត៌មាន',opAvail:'ការកំណត់ជ្រើសរើស ដែលអាចកំណត់បាន',value:'តំលៃ',size:'ទំហំ',lines:'បន្ទាត់',chkMulti:'អនុញ្ញាតអោយជ្រើសរើសច្រើន',opText:'ពាក្យ',opValue:'តំលៃ',btnAdd:'បន្ថែម',btnModify:'ផ្លាស់ប្តូរ',btnUp:'លើ',btnDown:'ក្រោម',btnSetValue:'Set as selected value',btnDelete:'លប់'},textarea:{title:'ការកំណត់កន្លែងសរសេរអត្ថបទ',cols:'ជូរឈរ',rows:'ជូរផ្តេក'},textfield:{title:'ការកំណត់ជួរអត្ថបទ',name:'ឈ្មោះ',value:'តំលៃ',charWidth:'ទទឹង អក្សរ',maxChars:'អក្សរអតិបរិមា',type:'ប្រភេទ',typeText:'ពាក្យ',typePass:'ពាក្យសំងាត់'},hidden:{title:'ការកំណត់ជួរលាក់',name:'ឈ្មោះ',value:'តំលៃ'},image:{title:'ការកំណត់រូបភាព',titleButton:'ការកំណត់ប៉ូតុនរូបភាព',menu:'ការកំណត់រូបភាព',infoTab:'ពត៌មានអំពីរូបភាព',btnUpload:'បញ្ជូនទៅកាន់ម៉ាស៊ីនផ្តល់សេវា',upload:'ទាញយក',alt:'អត្ថបទជំនួស',lockRatio:'អត្រាឡុក',resetSize:'កំណត់ទំហំឡើងវិញ',border:'ស៊ុម',hSpace:'គំលាតទទឹង',vSpace:'គំលាតបណ្តោយ',alertUrl:'សូមសរសេរងាស័យដ្ឋានរបស់រូបភាព',linkTab:'ឈ្នាប់',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'ការកំណត់ Flash',propertiesTab:'Properties',title:'ការកំណត់ Flash',chkPlay:'លេងដោយស្វ័យប្រវត្ត',chkLoop:'ចំនួនដង',chkMenu:'បង្ហាញ មឺនុយរបស់ Flash',chkFull:'Allow Fullscreen',scale:'ទំហំ',scaleAll:'បង្ហាញទាំងអស់',scaleNoBorder:'មិនបង្ហាញស៊ុម',scaleFit:'ត្រូវល្មម',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs Bottom',alignAbsMiddle:'Abs Middle',alignBaseline:'បន្ទាត់ជាមូលដ្ឋាន',alignTextTop:'លើអត្ថបទ',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'ពណ៌ផ្ទៃខាងក្រោយ',hSpace:'គំលាតទទឹង',vSpace:'គំលាតបណ្តោយ',validateSrc:'សូមសរសេរ អាស័យដ្ឋាន URL',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'ពិនិត្យអក្ខរាវិរុទ្ធ',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'គ្មានក្នុងវចនានុក្រម',changeTo:'ផ្លាស់ប្តូរទៅ',btnIgnore:'មិនផ្លាស់ប្តូរ',btnIgnoreAll:'មិនផ្លាស់ប្តូរ ទាំងអស់',btnReplace:'ជំនួស',btnReplaceAll:'ជំនួសទាំងអស់',btnUndo:'សារឡើងវិញ',noSuggestions:'- គ្មានសំណើរ -',progress:'កំពុងពិនិត្យអក្ខរាវិរុទ្ធ...',noMispell:'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: គ្មានកំហុស',noChanges:'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពុំមានផ្លាស់ប្តូរ',oneChange:'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពាក្យមួយត្រូចបានផ្លាស់ប្តូរ',manyChanges:'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: %1 ពាក្យបានផ្លាស់ប្តូរ',ieSpellDownload:'ពុំមានកម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ ។ តើចង់ទាញយកពីណា?'},smiley:{toolbar:'រូបភាព',title:'បញ្ជូលរូបភាព',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'បញ្ជីជាអក្សរ',bulletedlist:'បញ្ជីជារង្វង់មូល',indent:'បន្ថែមការចូលបន្ទាត់',outdent:'បន្ថយការចូលបន្ទាត់',justify:{left:'តំរឹមឆ្វេង',center:'តំរឹមកណ្តាល',right:'តំរឹមស្តាំ',block:'តំរឹមសងខាង'},blockquote:'Block Quote',clipboard:{title:'ចំលងដាក់',cutError:'ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ​មិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ កាត់អត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ (Ctrl/Cmd+X) ។',copyError:'ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ​មិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ ចំលងអត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ (Ctrl/Cmd+C)។',pasteMsg:'សូមចំលងអត្ថបទទៅដាក់ក្នុងប្រអប់ដូចខាងក្រោមដោយប្រើប្រាស់ ឃី ​(<STRONG>Ctrl/Cmd+V</STRONG>) ហើយចុច <STRONG>OK</STRONG> ។',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'ចំលងដាក់ពី Word',title:'ចំលងដាក់ពី Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'ចំលងដាក់អត្ថបទធម្មតា',title:'ចំលងដាក់អត្ថបទធម្មតា'},templates:{button:'ឯកសារគំរូ',title:'ឯកសារគំរូ របស់អត្ថន័យ',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'សូមជ្រើសរើសឯកសារគំរូ ដើម្បីបើកនៅក្នុងកម្មវិធីតាក់តែងអត្ថបទ<br>(អត្ថបទនឹងបាត់បង់):',emptyListMsg:'(ពុំមានឯកសារគំរូត្រូវបានកំណត់)'},showBlocks:'Show Blocks',stylesCombo:{label:'ម៉ូត',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'រចនា',panelTitle:'រចនា',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'ហ្វុង',voiceLabel:'Font',panelTitle:'ហ្វុង'},fontSize:{label:'ទំហំ',voiceLabel:'Font Size',panelTitle:'ទំហំ'},colorButton:{textColorTitle:'ពណ៌អក្សរ',bgColorTitle:'ពណ៌ផ្ទៃខាងក្រោយ',panelTitle:'Colors',auto:'ស្វ័យប្រវត្ត',more:'ពណ៌ផ្សេងទៀត..'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:' គ្មានសំណើរ ',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'ការកំណត់ ឯកសារ',title:'ការកំណត់ ឯកសារ',design:'Design',meta:'ទិន្នន័យមេ',chooseColor:'Choose',other:'<other>',docTitle:'ចំណងជើងទំព័រ',charset:'កំណត់លេខកូតភាសា',charsetOther:'កំណត់លេខកូតភាសាផ្សេងទៀត',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'ប្រភេទក្បាលទំព័រ',docTypeOther:'ប្រភេទក្បាលទំព័រផ្សេងទៀត',xhtmlDec:'បញ្ជូល XHTML',bgColor:'ពណ៌ខាងក្រោម',bgImage:'URL របស់រូបភាពខាងក្រោម',bgFixed:'ទំព័រក្រោមមិនប្តូរ',txtColor:'ពណ៌អក្សរ',margin:'ស៊ុមទំព័រ',marginTop:'លើ',marginLeft:'ឆ្វេង',marginRight:'ស្ដាំ',marginBottom:'ក្រោម',metaKeywords:'ពាក្យនៅក្នុងឯកសារ (ផ្តាច់ពីគ្នាដោយក្បៀស)',metaDescription:'សេចក្តីអត្ថាធិប្បាយអំពីឯកសារ',metaAuthor:'អ្នកនិពន្ធ',metaCopyright:'រក្សាសិទ្ធិ៏',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/th.js��������������������������������������������0000664�0001750�0001750�00000063265�12262650742�021762� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.th={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'ดูรหัส HTML',newPage:'สร้างหน้าเอกสารใหม่',save:'บันทึก',preview:'ดูหน้าเอกสารตัวอย่าง',cut:'ตัด',copy:'สำเนา',paste:'วาง',print:'สั่งพิมพ์',underline:'ตัวขีดเส้นใต้',bold:'ตัวหนา',italic:'ตัวเอียง',selectAll:'เลือกทั้งหมด',removeFormat:'ล้างรูปแบบ',strike:'ตัวขีดเส้นทับ',subscript:'ตัวห้อย',superscript:'ตัวยก',horizontalrule:'แทรกเส้นคั่นบรรทัด',pagebreak:'แทรกตัวแบ่งหน้า Page Break',pagebreakAlt:'Page Break',unlink:'ลบ ลิงค์',undo:'ยกเลิกคำสั่ง',redo:'ทำซ้ำคำสั่ง',common:{browseServer:'เปิดหน้าต่างจัดการไฟล์อัพโหลด',url:'ที่อยู่อ้างอิง URL',protocol:'โปรโตคอล',upload:'อัพโหลดไฟล์',uploadSubmit:'อัพโหลดไฟล์ไปเก็บไว้ที่เครื่องแม่ข่าย (เซิร์ฟเวอร์)',image:'รูปภาพ',flash:'ไฟล์ Flash',form:'แบบฟอร์ม',checkbox:'เช็คบ๊อก',radio:'เรดิโอบัตตอน',textField:'เท็กซ์ฟิลด์',textarea:'เท็กซ์แอเรีย',hiddenField:'ฮิดเดนฟิลด์',button:'ปุ่ม',select:'แถบตัวเลือก',imageButton:'ปุ่มแบบรูปภาพ',notSet:'<ไม่ระบุ>',id:'ไอดี',name:'ชื่อ',langDir:'การเขียน-อ่านภาษา',langDirLtr:'จากซ้ายไปขวา (LTR)',langDirRtl:'จากขวามาซ้าย (RTL)',langCode:'รหัสภาษา',longDescr:'คำอธิบายประกอบ URL',cssClass:'คลาสของไฟล์กำหนดลักษณะการแสดงผล',advisoryTitle:'คำเกริ่นนำ',cssStyle:'ลักษณะการแสดงผล',ok:'ตกลง',cancel:'ยกเลิก',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'ขั้นสูง',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'ความกว้าง',height:'ความสูง',align:'การจัดวาง',alignLeft:'ชิดซ้าย',alignRight:'ชิดขวา',alignCenter:'กึ่งกลาง',alignTop:'บนสุด',alignMiddle:'กึ่งกลางแนวตั้ง',alignBottom:'ชิดด้านล่าง',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'แทรกตัวอักษรพิเศษ',title:'แทรกตัวอักษรพิเศษ',options:'Special Character Options'},link:{toolbar:'แทรก/แก้ไข ลิงค์',other:'<อื่น ๆ>',menu:'แก้ไข ลิงค์',title:'ลิงค์เชื่อมโยงเว็บ อีเมล์ รูปภาพ หรือไฟล์อื่นๆ',info:'รายละเอียด',target:'การเปิดหน้าลิงค์',upload:'อัพโหลดไฟล์',advanced:'ขั้นสูง',type:'ประเภทของลิงค์',toUrl:'URL',toAnchor:'จุดเชื่อมโยง (Anchor)',toEmail:'ส่งอีเมล์ (E-Mail)',targetFrame:'<เปิดในเฟรม>',targetPopup:'<เปิดหน้าจอเล็ก (Pop-up)>',targetFrameName:'ชื่อทาร์เก็ตเฟรม',targetPopupName:'ระบุชื่อหน้าจอเล็ก (Pop-up)',popupFeatures:'คุณสมบัติของหน้าจอเล็ก (Pop-up)',popupResizable:'Resizable',popupStatusBar:'แสดงแถบสถานะ',popupLocationBar:'แสดงที่อยู่ของไฟล์',popupToolbar:'แสดงแถบเครื่องมือ',popupMenuBar:'แสดงแถบเมนู',popupFullScreen:'แสดงเต็มหน้าจอ (IE5.5++ เท่านั้น)',popupScrollBars:'แสดงแถบเลื่อน',popupDependent:'แสดงเต็มหน้าจอ (Netscape)',popupLeft:'พิกัดซ้าย (Left Position)',popupTop:'พิกัดบน (Top Position)',id:'Id',langDir:'การเขียน-อ่านภาษา',langDirLTR:'จากซ้ายไปขวา (LTR)',langDirRTL:'จากขวามาซ้าย (RTL)',acccessKey:'แอคเซส คีย์',name:'ชื่อ',langCode:'การเขียน-อ่านภาษา',tabIndex:'ลำดับของ แท็บ',advisoryTitle:'คำเกริ่นนำ',advisoryContentType:'ชนิดของคำเกริ่นนำ',cssClasses:'คลาสของไฟล์กำหนดลักษณะการแสดงผล',charset:'ลิงค์เชื่อมโยงไปยังชุดตัวอักษร',styles:'ลักษณะการแสดงผล',rel:'Relationship',selectAnchor:'ระบุข้อมูลของจุดเชื่อมโยง (Anchor)',anchorName:'ชื่อ',anchorId:'ไอดี',emailAddress:'อีเมล์ (E-Mail)',emailSubject:'หัวเรื่อง',emailBody:'ข้อความ',noAnchors:'(ยังไม่มีจุดเชื่อมโยงภายในหน้าเอกสารนี้)',noUrl:'กรุณาระบุที่อยู่อ้างอิงออนไลน์ (URL)',noEmail:'กรุณาระบุอีเมล์ (E-mail)'},anchor:{toolbar:'แทรก/แก้ไข Anchor',menu:'รายละเอียด Anchor',title:'รายละเอียด Anchor',name:'ชื่อ Anchor',errorName:'กรุณาระบุชื่อของ Anchor',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'ค้นหา',replace:'ค้นหาและแทนที่',findWhat:'ค้นหาคำว่า:',replaceWith:'แทนที่ด้วย:',notFoundMsg:'ไม่พบคำที่ค้นหา.',findOptions:'Find Options',matchCase:'ตัวโหญ่-เล็ก ต้องตรงกัน',matchWord:'ต้องตรงกันทุกคำ',matchCyclic:'Match cyclic',replaceAll:'แทนที่ทั้งหมดที่พบ',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'ตาราง',title:'คุณสมบัติของ ตาราง',menu:'คุณสมบัติของ ตาราง',deleteTable:'ลบตาราง',rows:'แถว',columns:'สดมน์',border:'ขนาดเส้นขอบ',widthPx:'จุดสี',widthPc:'เปอร์เซ็น',widthUnit:'width unit',cellSpace:'ระยะแนวนอนน',cellPad:'ระยะแนวตั้ง',caption:'หัวเรื่องของตาราง',summary:'สรุปความ',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'ช่องตาราง',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'ลบช่อง',merge:'ผสานช่อง',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'แถว',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'ลบแถว'},column:{menu:'คอลัมน์',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'ลบสดมน์'}},button:{title:'รายละเอียดของ ปุ่ม',text:'ข้อความ (ค่าตัวแปร)',type:'ข้อความ',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'คุณสมบัติของ เช็คบ๊อก',radioTitle:'คุณสมบัติของ เรดิโอบัตตอน',value:'ค่าตัวแปร',selected:'เลือกเป็นค่าเริ่มต้น'},form:{title:'คุณสมบัติของ แบบฟอร์ม',menu:'คุณสมบัติของ แบบฟอร์ม',action:'แอคชั่น',method:'เมธอด',encoding:'Encoding'},select:{title:'คุณสมบัติของ แถบตัวเลือก',selectInfo:'อินโฟ',opAvail:'รายการตัวเลือก',value:'ค่าตัวแปร',size:'ขนาด',lines:'บรรทัด',chkMulti:'เลือกหลายค่าได้',opText:'ข้อความ',opValue:'ค่าตัวแปร',btnAdd:'เพิ่ม',btnModify:'แก้ไข',btnUp:'บน',btnDown:'ล่าง',btnSetValue:'เลือกเป็นค่าเริ่มต้น',btnDelete:'ลบ'},textarea:{title:'คุณสมบัติของ เท็กแอเรีย',cols:'สดมภ์',rows:'แถว'},textfield:{title:'คุณสมบัติของ เท็กซ์ฟิลด์',name:'ชื่อ',value:'ค่าตัวแปร',charWidth:'ความกว้าง',maxChars:'จำนวนตัวอักษรสูงสุด',type:'ชนิด',typeText:'ข้อความ',typePass:'รหัสผ่าน'},hidden:{title:'คุณสมบัติของ ฮิดเดนฟิลด์',name:'ชื่อ',value:'ค่าตัวแปร'},image:{title:'คุณสมบัติของ รูปภาพ',titleButton:'คุณสมบัติของ ปุ่มแบบรูปภาพ',menu:'คุณสมบัติของ รูปภาพ',infoTab:'ข้อมูลของรูปภาพ',btnUpload:'อัพโหลดไฟล์ไปเก็บไว้ที่เครื่องแม่ข่าย (เซิร์ฟเวอร์)',upload:'อัพโหลดไฟล์',alt:'คำประกอบรูปภาพ',lockRatio:'กำหนดอัตราส่วน กว้าง-สูง แบบคงที่',resetSize:'กำหนดรูปเท่าขนาดจริง',border:'ขนาดขอบรูป',hSpace:'ระยะแนวนอน',vSpace:'ระยะแนวตั้ง',alertUrl:'กรุณาระบุที่อยู่อ้างอิงออนไลน์ของไฟล์รูปภาพ (URL)',linkTab:'ลิ้งค์',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'คุณสมบัติของไฟล์ Flash',propertiesTab:'Properties',title:'คุณสมบัติของไฟล์ Flash',chkPlay:'เล่นอัตโนมัติ Auto Play',chkLoop:'เล่นวนรอบ Loop',chkMenu:'ให้ใช้งานเมนูของ Flash',chkFull:'Allow Fullscreen',scale:'อัตราส่วน Scale',scaleAll:'แสดงให้เห็นทั้งหมด Show all',scaleNoBorder:'ไม่แสดงเส้นขอบ No Border',scaleFit:'แสดงให้พอดีกับพื้นที่ Exact Fit',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'ชิดด้านล่างสุด',alignAbsMiddle:'กึ่งกลาง',alignBaseline:'ชิดบรรทัด',alignTextTop:'ใต้ตัวอักษร',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'สีพื้นหลัง',hSpace:'ระยะแนวนอน',vSpace:'ระยะแนวตั้ง',validateSrc:'กรุณาระบุที่อยู่อ้างอิงออนไลน์ (URL)',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'ตรวจการสะกดคำ',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'ไม่พบในดิกชันนารี',changeTo:'แก้ไขเป็น',btnIgnore:'ยกเว้น',btnIgnoreAll:'ยกเว้นทั้งหมด',btnReplace:'แทนที่',btnReplaceAll:'แทนที่ทั้งหมด',btnUndo:'ยกเลิก',noSuggestions:'- ไม่มีคำแนะนำใดๆ -',progress:'กำลังตรวจสอบคำสะกด...',noMispell:'ตรวจสอบคำสะกดเสร็จสิ้น: ไม่พบคำสะกดผิด',noChanges:'ตรวจสอบคำสะกดเสร็จสิ้น: ไม่มีการแก้คำใดๆ',oneChange:'ตรวจสอบคำสะกดเสร็จสิ้น: แก้ไข1คำ',manyChanges:'ตรวจสอบคำสะกดเสร็จสิ้น:: แก้ไข %1 คำ',ieSpellDownload:'ไม่ได้ติดตั้งระบบตรวจสอบคำสะกด. ต้องการติดตั้งไหมครับ?'},smiley:{toolbar:'รูปสื่ออารมณ์',title:'แทรกสัญลักษณ์สื่ออารมณ์',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'ลำดับรายการแบบตัวเลข',bulletedlist:'ลำดับรายการแบบสัญลักษณ์',indent:'เพิ่มระยะย่อหน้า',outdent:'ลดระยะย่อหน้า',justify:{left:'จัดชิดซ้าย',center:'จัดกึ่งกลาง',right:'จัดชิดขวา',block:'จัดพอดีหน้ากระดาษ'},blockquote:'Block Quote',clipboard:{title:'วาง',cutError:'ไม่สามารถตัดข้อความที่เลือกไว้ได้เนื่องจากการกำหนดค่าระดับความปลอดภัย. กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl/Cmd และตัว X พร้อมกัน).',copyError:'ไม่สามารถสำเนาข้อความที่เลือกไว้ได้เนื่องจากการกำหนดค่าระดับความปลอดภัย. กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl/Cmd และตัว C พร้อมกัน).',pasteMsg:'กรุณาใช้คีย์บอร์ดเท่านั้น โดยกดปุ๋ม (<strong>Ctrl/Cmd และ V</strong>)พร้อมๆกัน และกด <strong>OK</strong>.',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'วางสำเนาจากตัวอักษรเวิร์ด',title:'วางสำเนาจากตัวอักษรเวิร์ด',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'วางแบบตัวอักษรธรรมดา',title:'วางแบบตัวอักษรธรรมดา'},templates:{button:'เทมเพลต',title:'เทมเพลตของส่วนเนื้อหาเว็บไซต์',options:'Template Options',insertOption:'แทนที่เนื้อหาเว็บไซต์ที่เลือก',selectPromptMsg:'กรุณาเลือก เทมเพลต เพื่อนำไปแก้ไขในอีดิตเตอร์<br />(เนื้อหาส่วนนี้จะหายไป):',emptyListMsg:'(ยังไม่มีการกำหนดเทมเพลต)'},showBlocks:'Show Blocks',stylesCombo:{label:'ลักษณะ',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'รูปแบบ',panelTitle:'รูปแบบ',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Paragraph (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'แบบอักษร',voiceLabel:'Font',panelTitle:'แบบอักษร'},fontSize:{label:'ขนาด',voiceLabel:'Font Size',panelTitle:'ขนาด'},colorButton:{textColorTitle:'สีตัวอักษร',bgColorTitle:'สีพื้นหลัง',panelTitle:'Colors',auto:'สีอัตโนมัติ',more:'เลือกสีอื่นๆ...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:' ไม่มีคำแนะนำใดๆ ',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'คุณสมบัติของเอกสาร',title:'คุณสมบัติของเอกสาร',design:'Design',meta:'ข้อมูลสำหรับเสิร์ชเอนจิ้น',chooseColor:'Choose',other:'<อื่น ๆ>',docTitle:'ชื่อไตเติ้ล',charset:'ชุดตัวอักษร',charsetOther:'ชุดตัวอักษรอื่นๆ',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'ประเภทของเอกสาร',docTypeOther:'ประเภทเอกสารอื่นๆ',xhtmlDec:'รวมเอา XHTML Declarations ไว้ด้วย',bgColor:'สีพื้นหลัง',bgImage:'ที่อยู่อ้างอิงออนไลน์ของรูปพื้นหลัง (Image URL)',bgFixed:'พื้นหลังแบบไม่มีแถบเลื่อน',txtColor:'สีตัวอักษร',margin:'ระยะขอบของหน้าเอกสาร',marginTop:'ด้านบน',marginLeft:'ด้านซ้าย',marginRight:'ด้านขวา',marginBottom:'ด้านล่าง',metaKeywords:'คำสำคัญอธิบายเอกสาร (คั่นคำด้วย คอมม่า)',metaDescription:'ประโยคอธิบายเกี่ยวกับเอกสาร',metaAuthor:'ผู้สร้างเอกสาร',metaCopyright:'สงวนลิขสิทธิ์',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/en.js��������������������������������������������0000664�0001750�0001750�00000041675�12262650742�021752� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.en={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'Source',newPage:'New Page',save:'Save',preview:'Preview',cut:'Cut',copy:'Copy',paste:'Paste',print:'Print',underline:'Underline',bold:'Bold',italic:'Italic',selectAll:'Select All',removeFormat:'Remove Format',strike:'Strike Through',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Insert Horizontal Line',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Unlink',undo:'Undo',redo:'Redo',common:{browseServer:'Browse Server',url:'URL',protocol:'Protocol',upload:'Upload',uploadSubmit:'Send it to the Server',image:'Image',flash:'Flash',form:'Form',checkbox:'Checkbox',radio:'Radio Button',textField:'Text Field',textarea:'Textarea',hiddenField:'Hidden Field',button:'Button',select:'Selection Field',imageButton:'Image Button',notSet:'<not set>',id:'Id',name:'Name',langDir:'Language Direction',langDirLtr:'Left to Right (LTR)',langDirRtl:'Right to Left (RTL)',langCode:'Language Code',longDescr:'Long Description URL',cssClass:'Stylesheet Classes',advisoryTitle:'Advisory Title',cssStyle:'Style',ok:'OK',cancel:'Cancel',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Advanced',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Width',height:'Height',align:'Alignment',alignLeft:'Left',alignRight:'Right',alignCenter:'Center',alignTop:'Top',alignMiddle:'Middle',alignBottom:'Bottom',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Insert Special Character',title:'Select Special Character',options:'Special Character Options'},link:{toolbar:'Link',other:'<other>',menu:'Edit Link',title:'Link',info:'Link Info',target:'Target',upload:'Upload',advanced:'Advanced',type:'Link Type',toUrl:'URL',toAnchor:'Link to anchor in the text',toEmail:'E-mail',targetFrame:'<frame>',targetPopup:'<popup window>',targetFrameName:'Target Frame Name',targetPopupName:'Popup Window Name',popupFeatures:'Popup Window Features',popupResizable:'Resizable',popupStatusBar:'Status Bar',popupLocationBar:'Location Bar',popupToolbar:'Toolbar',popupMenuBar:'Menu Bar',popupFullScreen:'Full Screen (IE)',popupScrollBars:'Scroll Bars',popupDependent:'Dependent (Netscape)',popupLeft:'Left Position',popupTop:'Top Position',id:'Id',langDir:'Language Direction',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',acccessKey:'Access Key',name:'Name',langCode:'Language Code',tabIndex:'Tab Index',advisoryTitle:'Advisory Title',advisoryContentType:'Advisory Content Type',cssClasses:'Stylesheet Classes',charset:'Linked Resource Charset',styles:'Style',rel:'Relationship',selectAnchor:'Select an Anchor',anchorName:'By Anchor Name',anchorId:'By Element Id',emailAddress:'E-Mail Address',emailSubject:'Message Subject',emailBody:'Message Body',noAnchors:'(No anchors available in the document)',noUrl:'Please type the link URL',noEmail:'Please type the e-mail address'},anchor:{toolbar:'Anchor',menu:'Edit Anchor',title:'Anchor Properties',name:'Anchor Name',errorName:'Please type the anchor name',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Find',replace:'Replace',findWhat:'Find what:',replaceWith:'Replace with:',notFoundMsg:'The specified text was not found.',findOptions:'Find Options',matchCase:'Match case',matchWord:'Match whole word',matchCyclic:'Match cyclic',replaceAll:'Replace All',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Table',title:'Table Properties',menu:'Table Properties',deleteTable:'Delete Table',rows:'Rows',columns:'Columns',border:'Border size',widthPx:'pixels',widthPc:'percent',widthUnit:'width unit',cellSpace:'Cell spacing',cellPad:'Cell padding',caption:'Caption',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Delete Cells',merge:'Merge Cells',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Delete Rows'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Delete Columns'}},button:{title:'Button Properties',text:'Text (Value)',type:'Type',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Checkbox Properties',radioTitle:'Radio Button Properties',value:'Value',selected:'Selected'},form:{title:'Form Properties',menu:'Form Properties',action:'Action',method:'Method',encoding:'Encoding'},select:{title:'Selection Field Properties',selectInfo:'Select Info',opAvail:'Available Options',value:'Value',size:'Size',lines:'lines',chkMulti:'Allow multiple selections',opText:'Text',opValue:'Value',btnAdd:'Add',btnModify:'Modify',btnUp:'Up',btnDown:'Down',btnSetValue:'Set as selected value',btnDelete:'Delete'},textarea:{title:'Textarea Properties',cols:'Columns',rows:'Rows'},textfield:{title:'Text Field Properties',name:'Name',value:'Value',charWidth:'Character Width',maxChars:'Maximum Characters',type:'Type',typeText:'Text',typePass:'Password'},hidden:{title:'Hidden Field Properties',name:'Name',value:'Value'},image:{title:'Image Properties',titleButton:'Image Button Properties',menu:'Image Properties',infoTab:'Image Info',btnUpload:'Send it to the Server',upload:'Upload',alt:'Alternative Text',lockRatio:'Lock Ratio',resetSize:'Reset Size',border:'Border',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Please type the image URL',linkTab:'Link',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flash Properties',propertiesTab:'Properties',title:'Flash Properties',chkPlay:'Auto Play',chkLoop:'Loop',chkMenu:'Enable Flash Menu',chkFull:'Allow Fullscreen',scale:'Scale',scaleAll:'Show all',scaleNoBorder:'No Border',scaleFit:'Exact Fit',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs Bottom',alignAbsMiddle:'Abs Middle',alignBaseline:'Baseline',alignTextTop:'Text Top',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Background color',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'URL must not be empty.',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Check Spelling',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Not in dictionary',changeTo:'Change to',btnIgnore:'Ignore',btnIgnoreAll:'Ignore All',btnReplace:'Replace',btnReplaceAll:'Replace All',btnUndo:'Undo',noSuggestions:'- No suggestions -',progress:'Spell check in progress...',noMispell:'Spell check complete: No misspellings found',noChanges:'Spell check complete: No words changed',oneChange:'Spell check complete: One word changed',manyChanges:'Spell check complete: %1 words changed',ieSpellDownload:'Spell checker not installed. Do you want to download it now?'},smiley:{toolbar:'Smiley',title:'Insert a Smiley',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Insert/Remove Numbered List',bulletedlist:'Insert/Remove Bulleted List',indent:'Increase Indent',outdent:'Decrease Indent',justify:{left:'Align Left',center:'Center',right:'Align Right',block:'Justify'},blockquote:'Block Quote',clipboard:{title:'Paste',cutError:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).",copyError:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).",pasteMsg:'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Paste from Word',title:'Paste from Word',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Paste as plain text',title:'Paste as Plain Text'},templates:{button:'Templates',title:'Content Templates',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Please select the template to open in the editor',emptyListMsg:'(No templates defined)'},showBlocks:'Show Blocks',stylesCombo:{label:'Styles',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Paragraph Format',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font Name'},fontSize:{label:'Size',voiceLabel:'Font Size',panelTitle:'Font Size'},colorButton:{textColorTitle:'Text Color',bgColorTitle:'Background Color',panelTitle:'Colors',auto:'Automatic',more:'More Colors...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'No suggestions',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Document Properties',title:'Document Properties',design:'Design',meta:'Meta Tags',chooseColor:'Choose',other:'Other...',docTitle:'Page Title',charset:'Character Set Encoding',charsetOther:'Other Character Set Encoding',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Document Type Heading',docTypeOther:'Other Document Type Heading',xhtmlDec:'Include XHTML Declarations',bgColor:'Background Color',bgImage:'Background Image URL',bgFixed:'Non-scrolling (Fixed) Background',txtColor:'Text Color',margin:'Page Margins',marginTop:'Top',marginLeft:'Left',marginRight:'Right',marginBottom:'Bottom',metaKeywords:'Document Indexing Keywords (comma separated)',metaDescription:'Document Description',metaAuthor:'Author',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/zh.js��������������������������������������������0000664�0001750�0001750�00000041271�12262650742�021761� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.zh={dir:'ltr',editorTitle:'富文本編輯器,%1',editorHelp:'按 ALT+0 以獲得幫助',toolbars:'編輯器工具欄',editor:'富文本編輯器',source:'原始碼',newPage:'開新檔案',save:'儲存',preview:'預覽',cut:'剪下',copy:'複製',paste:'貼上',print:'列印',underline:'底線',bold:'粗體',italic:'斜體',selectAll:'全選',removeFormat:'清除格式',strike:'刪除線',subscript:'下標',superscript:'上標',horizontalrule:'插入水平線',pagebreak:'插入分頁符號',pagebreakAlt:'分頁符號',unlink:'移除超連結',undo:'復原',redo:'重複',common:{browseServer:'瀏覽伺服器端',url:'URL',protocol:'通訊協定',upload:'上傳',uploadSubmit:'上傳至伺服器',image:'影像',flash:'Flash',form:'表單',checkbox:'核取方塊',radio:'選項按鈕',textField:'文字方塊',textarea:'文字區域',hiddenField:'隱藏欄位',button:'按鈕',select:'清單/選單',imageButton:'影像按鈕',notSet:'<尚未設定>',id:'ID',name:'名稱',langDir:'語言方向',langDirLtr:'由左而右 (LTR)',langDirRtl:'由右而左 (RTL)',langCode:'語言代碼',longDescr:'詳細 URL',cssClass:'樣式表類別',advisoryTitle:'標題',cssStyle:'樣式',ok:'確定',cancel:'取消',close:'关闭',preview:'预览',generalTab:'一般',advancedTab:'進階',validateNumberFailed:'需要輸入數字格式',confirmNewPage:'現存的修改尚未儲存,要開新檔案?',confirmCancel:'部份選項尚未儲存,要關閉對話盒?',options:'选项',target:'目标',targetNew:'新窗口(_blank)',targetTop:'整页(_top)',targetSelf:'本窗口(_self)',targetParent:'父窗口(_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'寬度',height:'高度',align:'對齊',alignLeft:'靠左對齊',alignRight:'靠右對齊',alignCenter:'置中',alignTop:'靠上對齊',alignMiddle:'置中對齊',alignBottom:'靠下對齊',invalidValue:'Invalid value.',invalidHeight:'高度必須為數字格式',invalidWidth:'寬度必須為數字格式',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, 已關閉</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'插入特殊符號',title:'請選擇特殊符號',options:'Special Character Options'},link:{toolbar:'插入/編輯超連結',other:'<其他>',menu:'編輯超連結',title:'超連結',info:'超連結資訊',target:'目標',upload:'上傳',advanced:'進階',type:'超連接類型',toUrl:'URL',toAnchor:'本頁錨點',toEmail:'電子郵件',targetFrame:'<框架>',targetPopup:'<快顯視窗>',targetFrameName:'目標框架名稱',targetPopupName:'快顯視窗名稱',popupFeatures:'快顯視窗屬性',popupResizable:'可縮放',popupStatusBar:'狀態列',popupLocationBar:'網址列',popupToolbar:'工具列',popupMenuBar:'選單列',popupFullScreen:'全螢幕 (IE)',popupScrollBars:'捲軸',popupDependent:'從屬 (NS)',popupLeft:'左',popupTop:'右',id:'ID',langDir:'語言方向',langDirLTR:'由左而右 (LTR)',langDirRTL:'由右而左 (RTL)',acccessKey:'存取鍵',name:'名稱',langCode:'語言方向',tabIndex:'定位順序',advisoryTitle:'標題',advisoryContentType:'內容類型',cssClasses:'樣式表類別',charset:'連結資源之編碼',styles:'樣式',rel:'Relationship',selectAnchor:'請選擇錨點',anchorName:'依錨點名稱',anchorId:'依元件 ID',emailAddress:'電子郵件',emailSubject:'郵件主旨',emailBody:'郵件內容',noAnchors:'(本文件尚無可用之錨點)',noUrl:'請輸入欲連結的 URL',noEmail:'請輸入電子郵件位址'},anchor:{toolbar:'插入/編輯錨點',menu:'錨點屬性',title:'錨點屬性',name:'錨點名稱',errorName:'請輸入錨點名稱',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'尋找與取代',find:'尋找',replace:'取代',findWhat:'尋找:',replaceWith:'取代:',notFoundMsg:'未找到指定的文字。',findOptions:'Find Options',matchCase:'大小寫須相符',matchWord:'全字相符',matchCyclic:'循環搜索',replaceAll:'全部取代',replaceSuccessMsg:'共完成 %1 次取代'},table:{toolbar:'表格',title:'表格屬性',menu:'表格屬性',deleteTable:'刪除表格',rows:'列數',columns:'欄數',border:'邊框',widthPx:'像素',widthPc:'百分比',widthUnit:'width unit',cellSpace:'間距',cellPad:'內距',caption:'標題',summary:'摘要',headers:'標題',headersNone:'無標題',headersColumn:'第一欄',headersRow:'第一列',headersBoth:'第一欄和第一列',invalidRows:'必須有一或更多的列',invalidCols:'必須有一或更多的欄',invalidBorder:'邊框大小必須為數字格式',invalidWidth:'表格寬度必須為數字格式',invalidHeight:'表格高度必須為數字格式',invalidCellSpacing:'儲存格間距必須為數字格式',invalidCellPadding:'儲存格內距必須為數字格式',cell:{menu:'儲存格',insertBefore:'向左插入儲存格',insertAfter:'向右插入儲存格',deleteCell:'刪除儲存格',merge:'合併儲存格',mergeRight:'向右合併儲存格',mergeDown:'向下合併儲存格',splitHorizontal:'橫向分割儲存格',splitVertical:'縱向分割儲存格',title:'儲存格屬性',cellType:'儲存格類別',rowSpan:'儲存格列數',colSpan:'儲存格欄數',wordWrap:'自動換行',hAlign:'水平對齊',vAlign:'垂直對齊',alignBaseline:'基線對齊',bgColor:'背景顏色',borderColor:'邊框顏色',data:'數據',header:'標題',yes:'是',no:'否',invalidWidth:'儲存格寬度必須為數字格式',invalidHeight:'儲存格高度必須為數字格式',invalidRowSpan:'儲存格列數必須為整數格式',invalidColSpan:'儲存格欄數度必須為整數格式',chooseColor:'Choose'},row:{menu:'列',insertBefore:'向上插入列',insertAfter:'向下插入列',deleteRow:'刪除列'},column:{menu:'欄',insertBefore:'向左插入欄',insertAfter:'向右插入欄',deleteColumn:'刪除欄'}},button:{title:'按鈕屬性',text:'顯示文字 (值)',type:'類型',typeBtn:'按鈕 (Button)',typeSbm:'送出 (Submit)',typeRst:'重設 (Reset)'},checkboxAndRadio:{checkboxTitle:'核取方塊屬性',radioTitle:'選項按鈕屬性',value:'選取值',selected:'已選取'},form:{title:'表單屬性',menu:'表單屬性',action:'動作',method:'方法',encoding:'表單編碼'},select:{title:'清單/選單屬性',selectInfo:'資訊',opAvail:'可用選項',value:'值',size:'大小',lines:'行',chkMulti:'可多選',opText:'顯示文字',opValue:'選取值',btnAdd:'新增',btnModify:'修改',btnUp:'上移',btnDown:'下移',btnSetValue:'設為預設值',btnDelete:'刪除'},textarea:{title:'文字區域屬性',cols:'字元寬度',rows:'列數'},textfield:{title:'文字方塊屬性',name:'名稱',value:'值',charWidth:'字元寬度',maxChars:'最多字元數',type:'類型',typeText:'文字',typePass:'密碼'},hidden:{title:'隱藏欄位屬性',name:'名稱',value:'值'},image:{title:'影像屬性',titleButton:'影像按鈕屬性',menu:'影像屬性',infoTab:'影像資訊',btnUpload:'上傳至伺服器',upload:'上傳',alt:'替代文字',lockRatio:'等比例',resetSize:'重設為原大小',border:'邊框',hSpace:'水平距離',vSpace:'垂直距離',alertUrl:'請輸入影像 URL',linkTab:'超連結',button2Img:'要把影像按鈕改成影像嗎?',img2Button:'要把影像改成影像按鈕嗎?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flash 屬性',propertiesTab:'屬性',title:'Flash 屬性',chkPlay:'自動播放',chkLoop:'重複',chkMenu:'開啟選單',chkFull:'啟動全螢幕顯示',scale:'縮放',scaleAll:'全部顯示',scaleNoBorder:'無邊框',scaleFit:'精確符合',access:'允許腳本訪問',accessAlways:'永遠',accessSameDomain:'相同域名',accessNever:'永不',alignAbsBottom:'絕對下方',alignAbsMiddle:'絕對中間',alignBaseline:'基準線',alignTextTop:'文字上方',quality:'質素',qualityBest:'最好',qualityHigh:'高',qualityAutoHigh:'高(自動)',qualityMedium:'中(自動)',qualityAutoLow:'低(自動)',qualityLow:'低',windowModeWindow:'視窗',windowModeOpaque:'不透明',windowModeTransparent:'透明',windowMode:'視窗模式',flashvars:'Flash 變數',bgcolor:'背景顏色',hSpace:'水平距離',vSpace:'垂直距離',validateSrc:'請輸入欲連結的 URL',validateHSpace:'水平間距必須為數字格式',validateVSpace:'垂直間距必須為數字格式'},spellCheck:{toolbar:'拼字檢查',title:'拼字檢查',notAvailable:'抱歉,服務目前暫不可用',errorLoading:'無法聯系侍服器: %s.',notInDic:'不在字典中',changeTo:'更改為',btnIgnore:'忽略',btnIgnoreAll:'全部忽略',btnReplace:'取代',btnReplaceAll:'全部取代',btnUndo:'復原',noSuggestions:'- 無建議值 -',progress:'進行拼字檢查中…',noMispell:'拼字檢查完成:未發現拼字錯誤',noChanges:'拼字檢查完成:未更改任何單字',oneChange:'拼字檢查完成:更改了 1 個單字',manyChanges:'拼字檢查完成:更改了 %1 個單字',ieSpellDownload:'尚未安裝拼字檢查元件。您是否想要現在下載?'},smiley:{toolbar:'表情符號',title:'插入表情符號',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 元素'},numberedlist:'編號清單',bulletedlist:'項目清單',indent:'增加縮排',outdent:'減少縮排',justify:{left:'靠左對齊',center:'置中',right:'靠右對齊',block:'左右對齊'},blockquote:'引用文字',clipboard:{title:'貼上',cutError:'瀏覽器的安全性設定不允許編輯器自動執行剪下動作。請使用快捷鍵 (Ctrl/Cmd+X) 剪下。',copyError:'瀏覽器的安全性設定不允許編輯器自動執行複製動作。請使用快捷鍵 (Ctrl/Cmd+C) 複製。',pasteMsg:'請使用快捷鍵 (<strong>Ctrl/Cmd+V</strong>) 貼到下方區域中並按下 <strong>確定</strong>',securityMsg:'因為瀏覽器的安全性設定,本編輯器無法直接存取您的剪貼簿資料,請您自行在本視窗進行貼上動作。',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'您想貼上的文字似乎是自 Word 複製而來,請問您是否要先清除 Word 的格式後再行貼上?',toolbar:'自 Word 貼上',title:'自 Word 貼上',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'貼為純文字格式',title:'貼為純文字格式'},templates:{button:'樣版',title:'內容樣版',options:'Template Options',insertOption:'取代原有內容',selectPromptMsg:'請選擇欲開啟的樣版<br> (原有的內容將會被清除):',emptyListMsg:'(無樣版)'},showBlocks:'顯示區塊',stylesCombo:{label:'樣式',panelTitle:'Formatting Styles',panelTitle1:'塊級元素樣式',panelTitle2:'內聯元素樣式',panelTitle3:'物件元素樣式'},format:{label:'格式',panelTitle:'格式',tag_p:'一般',tag_pre:'已格式化',tag_address:'位址',tag_h1:'標題 1',tag_h2:'標題 2',tag_h3:'標題 3',tag_h4:'標題 4',tag_h5:'標題 5',tag_h6:'標題 6',tag_div:'一般 (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'字體',voiceLabel:'字體',panelTitle:'字體'},fontSize:{label:'大小',voiceLabel:'文字大小',panelTitle:'大小'},colorButton:{textColorTitle:'文字顏色',bgColorTitle:'背景顏色',panelTitle:'Colors',auto:'自動',more:'更多顏色…'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'即時拼寫檢查',opera_title:'Not supported by Opera',enable:'啟用即時拼寫檢查',disable:'關閉即時拼寫檢查',about:'關於即時拼寫檢查',toggle:'啟用/關閉即時拼寫檢查',options:'選項',langs:'語言',moreSuggestions:'更多拼寫建議',ignore:'忽略',ignoreAll:'全部忽略',addWord:'添加單詞',emptyDic:'字典名不應為空.',noSuggestions:'無建議值',optionsTab:'選項',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'語言',dictionariesTab:'字典',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'關於'},about:{title:'關於 CKEditor',dlgTitle:'關於 CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'訪問我們的網站以獲取更多關於協議的信息',copy:'Copyright © $1. All rights reserved.'},maximize:'最大化',minimize:'最小化',fakeobjects:{anchor:'錨點',flash:'Flash 動畫',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'不明物件'},resize:'拖拽改變大小',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'折叠工具栏',toolbarExpand:'展开工具栏',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'文件屬性',title:'文件屬性',design:'Design',meta:'Meta 資料',chooseColor:'Choose',other:'<其他>',docTitle:'頁面標題',charset:'字元編碼',charsetOther:'其他字元編碼',charsetASCII:'ASCII',charsetCE:'中歐語系',charsetCT:'正體中文 (Big5)',charsetCR:'斯拉夫文',charsetGR:'希臘文',charsetJP:'日文',charsetKR:'韓文',charsetTR:'土耳其文',charsetUN:'Unicode (UTF-8)',charsetWE:'西歐語系',docType:'文件類型',docTypeOther:'其他文件類型',xhtmlDec:'包含 XHTML 定義',bgColor:'背景顏色',bgImage:'背景影像',bgFixed:'浮水印',txtColor:'文字顏色',margin:'頁面邊界',marginTop:'上',marginLeft:'左',marginRight:'右',marginBottom:'下',metaKeywords:'文件索引關鍵字 (用半形逗號[,]分隔)',metaDescription:'文件說明',metaAuthor:'作者',metaCopyright:'版權所有',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/bs.js��������������������������������������������0000664�0001750�0001750�00000042062�12262650742�021743� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.bs={dir:'ltr',editorTitle:'Rich text editor, %1',editorHelp:'Press ALT 0 for help',toolbars:'Editor toolbars',editor:'Rich Text Editor',source:'HTML kôd',newPage:'Novi dokument',save:'Snimi',preview:'Prikaži',cut:'Izreži',copy:'Kopiraj',paste:'Zalijepi',print:'Štampaj',underline:'Podvuci',bold:'Boldiraj',italic:'Ukosi',selectAll:'Selektuj sve',removeFormat:'Poništi format',strike:'Precrtaj',subscript:'Subscript',superscript:'Superscript',horizontalrule:'Ubaci horizontalnu liniju',pagebreak:'Insert Page Break for Printing',pagebreakAlt:'Page Break',unlink:'Izbriši link',undo:'Vrati',redo:'Ponovi',common:{browseServer:'Browse Server',url:'URL',protocol:'Protokol',upload:'Šalji',uploadSubmit:'Šalji na server',image:'Slika',flash:'Flash',form:'Form',checkbox:'Checkbox',radio:'Radio Button',textField:'Text Field',textarea:'Textarea',hiddenField:'Hidden Field',button:'Button',select:'Selection Field',imageButton:'Image Button',notSet:'<nije podešeno>',id:'Id',name:'Naziv',langDir:'Smjer pisanja',langDirLtr:'S lijeva na desno (LTR)',langDirRtl:'S desna na lijevo (RTL)',langCode:'Jezièni kôd',longDescr:'Dugaèki opis URL-a',cssClass:'Klase CSS stilova',advisoryTitle:'Advisory title',cssStyle:'Stil',ok:'OK',cancel:'Odustani',close:'Close',preview:'Preview',generalTab:'General',advancedTab:'Naprednije',validateNumberFailed:'This value is not a number.',confirmNewPage:'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',confirmCancel:'Some of the options have been changed. Are you sure to close the dialog?',options:'Options',target:'Target',targetNew:'New Window (_blank)',targetTop:'Topmost Window (_top)',targetSelf:'Same Window (_self)',targetParent:'Parent Window (_parent)',langDirLTR:'Left to Right (LTR)',langDirRTL:'Right to Left (RTL)',styles:'Style',cssClasses:'Stylesheet Classes',width:'Širina',height:'Visina',align:'Poravnanje',alignLeft:'Lijevo',alignRight:'Desno',alignCenter:'Centar',alignTop:'Vrh',alignMiddle:'Sredina',alignBottom:'Dno',invalidValue:'Invalid value.',invalidHeight:'Height must be a number.',invalidWidth:'Width must be a number.',invalidCssLength:'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',invalidHtmlLength:'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',invalidInlineStyle:'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',cssLengthTooltip:'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',unavailable:'%1<span class="cke_accessibility">, unavailable</span>'},contextmenu:{options:'Context Menu Options'},specialChar:{toolbar:'Ubaci specijalni karater',title:'Izaberi specijalni karakter',options:'Special Character Options'},link:{toolbar:'Ubaci/Izmjeni link',other:'<other>',menu:'Izmjeni link',title:'Link',info:'Link info',target:'Prozor',upload:'Šalji',advanced:'Naprednije',type:'Tip linka',toUrl:'URL',toAnchor:'Sidro na ovoj stranici',toEmail:'E-Mail',targetFrame:'<frejm>',targetPopup:'<popup prozor>',targetFrameName:'Target Frame Name',targetPopupName:'Naziv popup prozora',popupFeatures:'Moguænosti popup prozora',popupResizable:'Resizable',popupStatusBar:'Statusna traka',popupLocationBar:'Traka za lokaciju',popupToolbar:'Traka sa alatima',popupMenuBar:'Izborna traka',popupFullScreen:'Cijeli ekran (IE)',popupScrollBars:'Scroll traka',popupDependent:'Ovisno (Netscape)',popupLeft:'Lijeva pozicija',popupTop:'Gornja pozicija',id:'Id',langDir:'Smjer pisanja',langDirLTR:'S lijeva na desno (LTR)',langDirRTL:'S desna na lijevo (RTL)',acccessKey:'Pristupna tipka',name:'Naziv',langCode:'Smjer pisanja',tabIndex:'Tab indeks',advisoryTitle:'Advisory title',advisoryContentType:'Advisory vrsta sadržaja',cssClasses:'Klase CSS stilova',charset:'Linked Resource Charset',styles:'Stil',rel:'Relationship',selectAnchor:'Izaberi sidro',anchorName:'Po nazivu sidra',anchorId:'Po Id-u elementa',emailAddress:'E-Mail Adresa',emailSubject:'Subjekt poruke',emailBody:'Poruka',noAnchors:'(Nema dostupnih sidra na stranici)',noUrl:'Molimo ukucajte URL link',noEmail:'Molimo ukucajte e-mail adresu'},anchor:{toolbar:'Anchor',menu:'Edit Anchor',title:'Anchor Properties',name:'Anchor Name',errorName:'Please type the anchor name',remove:'Remove Anchor'},list:{numberedTitle:'Numbered List Properties',bulletedTitle:'Bulleted List Properties',type:'Type',start:'Start',validateStartNumber:'List start number must be a whole number.',circle:'Circle',disc:'Disc',square:'Square',none:'None',notset:'<not set>',armenian:'Armenian numbering',georgian:'Georgian numbering (an, ban, gan, etc.)',lowerRoman:'Lower Roman (i, ii, iii, iv, v, etc.)',upperRoman:'Upper Roman (I, II, III, IV, V, etc.)',lowerAlpha:'Lower Alpha (a, b, c, d, e, etc.)',upperAlpha:'Upper Alpha (A, B, C, D, E, etc.)',lowerGreek:'Lower Greek (alpha, beta, gamma, etc.)',decimal:'Decimal (1, 2, 3, etc.)',decimalLeadingZero:'Decimal leading zero (01, 02, 03, etc.)'},findAndReplace:{title:'Find and Replace',find:'Naði',replace:'Zamjeni',findWhat:'Naði šta:',replaceWith:'Zamjeni sa:',notFoundMsg:'Traženi tekst nije pronaðen.',findOptions:'Find Options',matchCase:'Uporeðuj velika/mala slova',matchWord:'Uporeðuj samo cijelu rijeè',matchCyclic:'Match cyclic',replaceAll:'Zamjeni sve',replaceSuccessMsg:'%1 occurrence(s) replaced.'},table:{toolbar:'Tabela',title:'Svojstva tabele',menu:'Svojstva tabele',deleteTable:'Delete Table',rows:'Redova',columns:'Kolona',border:'Okvir',widthPx:'piksela',widthPc:'posto',widthUnit:'width unit',cellSpace:'Razmak æelija',cellPad:'Uvod æelija',caption:'Naslov',summary:'Summary',headers:'Headers',headersNone:'None',headersColumn:'First column',headersRow:'First Row',headersBoth:'Both',invalidRows:'Number of rows must be a number greater than 0.',invalidCols:'Number of columns must be a number greater than 0.',invalidBorder:'Border size must be a number.',invalidWidth:'Table width must be a number.',invalidHeight:'Table height must be a number.',invalidCellSpacing:'Cell spacing must be a positive number.',invalidCellPadding:'Cell padding must be a positive number.',cell:{menu:'Cell',insertBefore:'Insert Cell Before',insertAfter:'Insert Cell After',deleteCell:'Briši æelije',merge:'Spoji æelije',mergeRight:'Merge Right',mergeDown:'Merge Down',splitHorizontal:'Split Cell Horizontally',splitVertical:'Split Cell Vertically',title:'Cell Properties',cellType:'Cell Type',rowSpan:'Rows Span',colSpan:'Columns Span',wordWrap:'Word Wrap',hAlign:'Horizontal Alignment',vAlign:'Vertical Alignment',alignBaseline:'Baseline',bgColor:'Background Color',borderColor:'Border Color',data:'Data',header:'Header',yes:'Yes',no:'No',invalidWidth:'Cell width must be a number.',invalidHeight:'Cell height must be a number.',invalidRowSpan:'Rows span must be a whole number.',invalidColSpan:'Columns span must be a whole number.',chooseColor:'Choose'},row:{menu:'Row',insertBefore:'Insert Row Before',insertAfter:'Insert Row After',deleteRow:'Briši redove'},column:{menu:'Column',insertBefore:'Insert Column Before',insertAfter:'Insert Column After',deleteColumn:'Briši kolone'}},button:{title:'Button Properties',text:'Text (Value)',type:'Type',typeBtn:'Button',typeSbm:'Submit',typeRst:'Reset'},checkboxAndRadio:{checkboxTitle:'Checkbox Properties',radioTitle:'Radio Button Properties',value:'Value',selected:'Selected'},form:{title:'Form Properties',menu:'Form Properties',action:'Action',method:'Method',encoding:'Encoding'},select:{title:'Selection Field Properties',selectInfo:'Select Info',opAvail:'Available Options',value:'Value',size:'Size',lines:'lines',chkMulti:'Allow multiple selections',opText:'Text',opValue:'Value',btnAdd:'Add',btnModify:'Modify',btnUp:'Up',btnDown:'Down',btnSetValue:'Set as selected value',btnDelete:'Delete'},textarea:{title:'Textarea Properties',cols:'Columns',rows:'Rows'},textfield:{title:'Text Field Properties',name:'Name',value:'Value',charWidth:'Character Width',maxChars:'Maximum Characters',type:'Type',typeText:'Text',typePass:'Password'},hidden:{title:'Hidden Field Properties',name:'Name',value:'Value'},image:{title:'Svojstva slike',titleButton:'Image Button Properties',menu:'Svojstva slike',infoTab:'Info slike',btnUpload:'Šalji na server',upload:'Šalji',alt:'Tekst na slici',lockRatio:'Zakljuèaj odnos',resetSize:'Resetuj dimenzije',border:'Okvir',hSpace:'HSpace',vSpace:'VSpace',alertUrl:'Molimo ukucajte URL od slike.',linkTab:'Link',button2Img:'Do you want to transform the selected image button on a simple image?',img2Button:'Do you want to transform the selected image on a image button?',urlMissing:'Image source URL is missing.',validateBorder:'Border must be a whole number.',validateHSpace:'HSpace must be a whole number.',validateVSpace:'VSpace must be a whole number.'},flash:{properties:'Flash Properties',propertiesTab:'Properties',title:'Flash Properties',chkPlay:'Auto Play',chkLoop:'Loop',chkMenu:'Enable Flash Menu',chkFull:'Allow Fullscreen',scale:'Scale',scaleAll:'Show all',scaleNoBorder:'No Border',scaleFit:'Exact Fit',access:'Script Access',accessAlways:'Always',accessSameDomain:'Same domain',accessNever:'Never',alignAbsBottom:'Abs dole',alignAbsMiddle:'Abs sredina',alignBaseline:'Bazno',alignTextTop:'Vrh teksta',quality:'Quality',qualityBest:'Best',qualityHigh:'High',qualityAutoHigh:'Auto High',qualityMedium:'Medium',qualityAutoLow:'Auto Low',qualityLow:'Low',windowModeWindow:'Window',windowModeOpaque:'Opaque',windowModeTransparent:'Transparent',windowMode:'Window mode',flashvars:'Variables for Flash',bgcolor:'Boja pozadine',hSpace:'HSpace',vSpace:'VSpace',validateSrc:'Molimo ukucajte URL link',validateHSpace:'HSpace must be a number.',validateVSpace:'VSpace must be a number.'},spellCheck:{toolbar:'Check Spelling',title:'Spell Check',notAvailable:'Sorry, but service is unavailable now.',errorLoading:'Error loading application service host: %s.',notInDic:'Not in dictionary',changeTo:'Change to',btnIgnore:'Ignore',btnIgnoreAll:'Ignore All',btnReplace:'Replace',btnReplaceAll:'Replace All',btnUndo:'Undo',noSuggestions:'- No suggestions -',progress:'Spell check in progress...',noMispell:'Spell check complete: No misspellings found',noChanges:'Spell check complete: No words changed',oneChange:'Spell check complete: One word changed',manyChanges:'Spell check complete: %1 words changed',ieSpellDownload:'Spell checker not installed. Do you want to download it now?'},smiley:{toolbar:'Smješko',title:'Ubaci smješka',options:'Smiley Options'},elementsPath:{eleLabel:'Elements path',eleTitle:'%1 element'},numberedlist:'Numerisana lista',bulletedlist:'Lista',indent:'Poveæaj uvod',outdent:'Smanji uvod',justify:{left:'Lijevo poravnanje',center:'Centralno poravnanje',right:'Desno poravnanje',block:'Puno poravnanje'},blockquote:'Block Quote',clipboard:{title:'Zalijepi',cutError:'Sigurnosne postavke vašeg pretraživaèa ne dozvoljavaju operacije automatskog rezanja. Molimo koristite kraticu na tastaturi (Ctrl/Cmd+X).',copyError:'Sigurnosne postavke Vašeg pretraživaèa ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tastaturi (Ctrl/Cmd+C).',pasteMsg:'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',securityMsg:'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.',pasteArea:'Paste Area'},pastefromword:{confirmCleanup:'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',toolbar:'Zalijepi iz Word-a',title:'Zalijepi iz Word-a',error:'It was not possible to clean up the pasted data due to an internal error'},pasteText:{button:'Zalijepi kao obièan tekst',title:'Zalijepi kao obièan tekst'},templates:{button:'Templates',title:'Content Templates',options:'Template Options',insertOption:'Replace actual contents',selectPromptMsg:'Please select the template to open in the editor',emptyListMsg:'(No templates defined)'},showBlocks:'Show Blocks',stylesCombo:{label:'Stil',panelTitle:'Formatting Styles',panelTitle1:'Block Styles',panelTitle2:'Inline Styles',panelTitle3:'Object Styles'},format:{label:'Format',panelTitle:'Format',tag_p:'Normal',tag_pre:'Formatted',tag_address:'Address',tag_h1:'Heading 1',tag_h2:'Heading 2',tag_h3:'Heading 3',tag_h4:'Heading 4',tag_h5:'Heading 5',tag_h6:'Heading 6',tag_div:'Normal (DIV)'},div:{title:'Create Div Container',toolbar:'Create Div Container',cssClassInputLabel:'Stylesheet Classes',styleSelectLabel:'Style',IdInputLabel:'Id',languageCodeInputLabel:' Language Code',inlineStyleInputLabel:'Inline Style',advisoryTitleInputLabel:'Advisory Title',langDirLabel:'Language Direction',langDirLTRLabel:'Left to Right (LTR)',langDirRTLLabel:'Right to Left (RTL)',edit:'Edit Div',remove:'Remove Div'},iframe:{title:'IFrame Properties',toolbar:'IFrame',noUrl:'Please type the iframe URL',scrolling:'Enable scrollbars',border:'Show frame border'},font:{label:'Font',voiceLabel:'Font',panelTitle:'Font'},fontSize:{label:'Velièina',voiceLabel:'Font Size',panelTitle:'Velièina'},colorButton:{textColorTitle:'Boja teksta',bgColorTitle:'Boja pozadine',panelTitle:'Colors',auto:'Automatska',more:'Više boja...'},colors:{'000':'Black',800000:'Maroon','8B4513':'Saddle Brown','2F4F4F':'Dark Slate Gray','008080':'Teal','000080':'Navy','4B0082':'Indigo',696969:'Dark Gray',B22222:'Fire Brick',A52A2A:'Brown',DAA520:'Golden Rod','006400':'Dark Green','40E0D0':'Turquoise','0000CD':'Medium Blue',800080:'Purple',808080:'Gray',F00:'Red',FF8C00:'Dark Orange',FFD700:'Gold','008000':'Green','0FF':'Cyan','00F':'Blue',EE82EE:'Violet',A9A9A9:'Dim Gray',FFA07A:'Light Salmon',FFA500:'Orange',FFFF00:'Yellow','00FF00':'Lime',AFEEEE:'Pale Turquoise',ADD8E6:'Light Blue',DDA0DD:'Plum',D3D3D3:'Light Grey',FFF0F5:'Lavender Blush',FAEBD7:'Antique White',FFFFE0:'Light Yellow',F0FFF0:'Honeydew',F0FFFF:'Azure',F0F8FF:'Alice Blue',E6E6FA:'Lavender',FFF:'White'},scayt:{title:'Spell Check As You Type',opera_title:'Not supported by Opera',enable:'Enable SCAYT',disable:'Disable SCAYT',about:'About SCAYT',toggle:'Toggle SCAYT',options:'Options',langs:'Languages',moreSuggestions:'More suggestions',ignore:'Ignore',ignoreAll:'Ignore All',addWord:'Add Word',emptyDic:'Dictionary name should not be empty.',noSuggestions:'No suggestions',optionsTab:'Options',allCaps:'Ignore All-Caps Words',ignoreDomainNames:'Ignore Domain Names',mixedCase:'Ignore Words with Mixed Case',mixedWithDigits:'Ignore Words with Numbers',languagesTab:'Languages',dictionariesTab:'Dictionaries',dic_field_name:'Dictionary name',dic_create:'Create',dic_restore:'Restore',dic_delete:'Delete',dic_rename:'Rename',dic_info:'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',aboutTab:'About'},about:{title:'About CKEditor',dlgTitle:'About CKEditor',help:'Check $1 for help.',userGuide:"CKEditor User's Guide",moreInfo:'For licensing information please visit our web site:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximize',minimize:'Minimize',fakeobjects:{anchor:'Anchor',flash:'Flash Animation',iframe:'IFrame',hiddenfield:'Hidden Field',unknown:'Unknown Object'},resize:'Drag to resize',colordialog:{title:'Select color',options:'Color Options',highlight:'Highlight',selected:'Selected Color',clear:'Clear'},toolbarCollapse:'Collapse Toolbar',toolbarExpand:'Expand Toolbar',toolbarGroups:{document:'Document',clipboard:'Clipboard/Undo',editing:'Editing',forms:'Forms',basicstyles:'Basic Styles',paragraph:'Paragraph',links:'Links',insert:'Insert',styles:'Styles',colors:'Colors',tools:'Tools'},bidi:{ltr:'Text direction from left to right',rtl:'Text direction from right to left'},docprops:{label:'Document Properties',title:'Document Properties',design:'Design',meta:'Meta Tags',chooseColor:'Choose',other:'Other...',docTitle:'Page Title',charset:'Character Set Encoding',charsetOther:'Other Character Set Encoding',charsetASCII:'ASCII',charsetCE:'Central European',charsetCT:'Chinese Traditional (Big5)',charsetCR:'Cyrillic',charsetGR:'Greek',charsetJP:'Japanese',charsetKR:'Korean',charsetTR:'Turkish',charsetUN:'Unicode (UTF-8)',charsetWE:'Western European',docType:'Document Type Heading',docTypeOther:'Other Document Type Heading',xhtmlDec:'Include XHTML Declarations',bgColor:'Background Color',bgImage:'Background Image URL',bgFixed:'Non-scrolling (Fixed) Background',txtColor:'Text Color',margin:'Page Margins',marginTop:'Top',marginLeft:'Left',marginRight:'Right',marginBottom:'Bottom',metaKeywords:'Document Indexing Keywords (comma separated)',metaDescription:'Document Description',metaAuthor:'Author',metaCopyright:'Copyright',previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/cs.js��������������������������������������������0000664�0001750�0001750�00000045564�12262650742�021756� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.cs={dir:'ltr',editorTitle:'Textový editor, %1',editorHelp:'Stiskněte ALT 0 pro nápovědu',toolbars:'Panely nástrojů editoru',editor:'Textový editor',source:'Zdroj',newPage:'Nová stránka',save:'Uložit',preview:'Náhled',cut:'Vyjmout',copy:'Kopírovat',paste:'Vložit',print:'Tisk',underline:'Podtržené',bold:'Tučné',italic:'Kurzíva',selectAll:'Vybrat vše',removeFormat:'Odstranit formátování',strike:'Přeškrtnuté',subscript:'Dolní index',superscript:'Horní index',horizontalrule:'Vložit vodorovnou linku',pagebreak:'Vložit konec stránky',pagebreakAlt:'Konec stránky',unlink:'Odstranit odkaz',undo:'Zpět',redo:'Znovu',common:{browseServer:'Vybrat na serveru',url:'URL',protocol:'Protokol',upload:'Odeslat',uploadSubmit:'Odeslat na server',image:'Obrázek',flash:'Flash',form:'Formulář',checkbox:'Zaškrtávací políčko',radio:'Přepínač',textField:'Textové pole',textarea:'Textová oblast',hiddenField:'Skryté pole',button:'Tlačítko',select:'Seznam',imageButton:'Obrázkové tlačítko',notSet:'<nenastaveno>',id:'Id',name:'Jméno',langDir:'Směr jazyka',langDirLtr:'Zleva doprava (LTR)',langDirRtl:'Zprava doleva (RTL)',langCode:'Kód jazyka',longDescr:'Dlouhý popis URL',cssClass:'Třída stylu',advisoryTitle:'Pomocný titulek',cssStyle:'Styl',ok:'OK',cancel:'Zrušit',close:'Zavřít',preview:'Náhled',generalTab:'Obecné',advancedTab:'Rozšířené',validateNumberFailed:'Zadaná hodnota není číselná.',confirmNewPage:'Jakékoliv neuložené změny obsahu budou ztraceny. Skutečně chcete otevřít novou stránku?',confirmCancel:'Některá z nastavení byla změněna. Skutečně chcete zavřít dialogové okno?',options:'Nastavení',target:'Cíl',targetNew:'Nové okno (_blank)',targetTop:'Okno nejvyšší úrovně (_top)',targetSelf:'Stejné okno (_self)',targetParent:'Rodičovské okno (_parent)',langDirLTR:'Zleva doprava (LTR)',langDirRTL:'Zprava doleva (RTL)',styles:'Styly',cssClasses:'Třídy stylů',width:'Šířka',height:'Výška',align:'Zarovnání',alignLeft:'Vlevo',alignRight:'Vpravo',alignCenter:'Na střed',alignTop:'Nahoru',alignMiddle:'Na střed',alignBottom:'Dolů',invalidValue:'Neplatná hodnota.',invalidHeight:'Zadaná výška musí být číslo.',invalidWidth:'Šířka musí být číslo.',invalidCssLength:'Hodnota určená pro pole "%1" musí být kladné číslo bez nebo s platnou jednotkou míry CSS (px, %, in, cm, mm, em, ex, pt, nebo pc).',invalidHtmlLength:'Hodnota určená pro pole "%1" musí být kladné číslo bez nebo s platnou jednotkou míry HTML (px nebo %).',invalidInlineStyle:'Hodnota určená pro řádkový styl se musí skládat z jedné nebo více n-tic ve formátu "název : hodnota", oddělené středníky',cssLengthTooltip:'Zadejte číslo jako hodnotu v pixelech nebo číslo s platnou jednotkou CSS (px, %, v cm, mm, em, ex, pt, nebo pc).',unavailable:'%1<span class="cke_accessibility">, nedostupné</span>'},contextmenu:{options:'Nastavení kontextové nabídky'},specialChar:{toolbar:'Vložit speciální znaky',title:'Výběr speciálního znaku',options:'Nastavení speciálních znaků'},link:{toolbar:'Odkaz',other:'<jiný>',menu:'Změnit odkaz',title:'Odkaz',info:'Informace o odkazu',target:'Cíl',upload:'Odeslat',advanced:'Rozšířené',type:'Typ odkazu',toUrl:'URL',toAnchor:'Kotva v této stránce',toEmail:'E-mail',targetFrame:'<rámec>',targetPopup:'<vyskakovací okno>',targetFrameName:'Název cílového rámu',targetPopupName:'Název vyskakovacího okna',popupFeatures:'Vlastnosti vyskakovacího okna',popupResizable:'Umožňující měnit velikost',popupStatusBar:'Stavový řádek',popupLocationBar:'Panel umístění',popupToolbar:'Panel nástrojů',popupMenuBar:'Panel nabídky',popupFullScreen:'Celá obrazovka (IE)',popupScrollBars:'Posuvníky',popupDependent:'Závislost (Netscape)',popupLeft:'Levý okraj',popupTop:'Horní okraj',id:'Id',langDir:'Směr jazyka',langDirLTR:'Zleva doprava (LTR)',langDirRTL:'Zprava doleva (RTL)',acccessKey:'Přístupový klíč',name:'Jméno',langCode:'Kód jazyka',tabIndex:'Pořadí prvku',advisoryTitle:'Pomocný titulek',advisoryContentType:'Pomocný typ obsahu',cssClasses:'Třída stylu',charset:'Přiřazená znaková sada',styles:'Styl',rel:'Vztah',selectAnchor:'Vybrat kotvu',anchorName:'Podle jména kotvy',anchorId:'Podle Id objektu',emailAddress:'E-mailová adresa',emailSubject:'Předmět zprávy',emailBody:'Tělo zprávy',noAnchors:'(Ve stránce není definována žádná kotva!)',noUrl:'Zadejte prosím URL odkazu',noEmail:'Zadejte prosím e-mailovou adresu'},anchor:{toolbar:'Záložka',menu:'Vlastnosti záložky',title:'Vlastnosti záložky',name:'Název záložky',errorName:'Zadejte prosím název záložky',remove:'Odstranit záložku'},list:{numberedTitle:'Vlastnosti číslování',bulletedTitle:'Vlastnosti odrážek',type:'Typ',start:'Počátek',validateStartNumber:'Číslování musí začínat celým číslem.',circle:'Kroužky',disc:'Kolečka',square:'Čtverce',none:'Nic',notset:'<nenastaveno>',armenian:'Arménské',georgian:'Gruzínské (an, ban, gan, atd.)',lowerRoman:'Malé římské (i, ii, iii, iv, v, atd.)',upperRoman:'Velké římské (I, II, III, IV, V, atd.)',lowerAlpha:'Malá latinka (a, b, c, d, e, atd.)',upperAlpha:'Velká latinka (A, B, C, D, E, atd.)',lowerGreek:'Malé řecké (alpha, beta, gamma, atd.)',decimal:'Arabská čísla (1, 2, 3, atd.)',decimalLeadingZero:'Arabská čísla uvozená nulou (01, 02, 03, atd.)'},findAndReplace:{title:'Najít a nahradit',find:'Hledat',replace:'Nahradit',findWhat:'Co hledat:',replaceWith:'Čím nahradit:',notFoundMsg:'Hledaný text nebyl nalezen.',findOptions:'Možnosti hledání',matchCase:'Rozlišovat velikost písma',matchWord:'Pouze celá slova',matchCyclic:'Procházet opakovaně',replaceAll:'Nahradit vše',replaceSuccessMsg:'%1 nahrazení.'},table:{toolbar:'Tabulka',title:'Vlastnosti tabulky',menu:'Vlastnosti tabulky',deleteTable:'Smazat tabulku',rows:'Řádky',columns:'Sloupce',border:'Ohraničení',widthPx:'bodů',widthPc:'procent',widthUnit:'jednotka šířky',cellSpace:'Vzdálenost buněk',cellPad:'Odsazení obsahu v buňce',caption:'Popis',summary:'Souhrn',headers:'Záhlaví',headersNone:'Žádné',headersColumn:'První sloupec',headersRow:'První řádek',headersBoth:'Obojí',invalidRows:'Počet řádků musí být číslo větší než 0.',invalidCols:'Počet sloupců musí být číslo větší než 0.',invalidBorder:'Zdaná velikost okraje musí být číselná.',invalidWidth:'Šířka tabulky musí být číslo.',invalidHeight:'Zadaná výška tabulky musí být číselná.',invalidCellSpacing:'Zadaná vzdálenost buněk musí být číselná.',invalidCellPadding:'Zadané odsazení obsahu v buňce musí být číselné.',cell:{menu:'Buňka',insertBefore:'Vložit buňku před',insertAfter:'Vložit buňku za',deleteCell:'Smazat buňky',merge:'Sloučit buňky',mergeRight:'Sloučit doprava',mergeDown:'Sloučit dolů',splitHorizontal:'Rozdělit buňky vodorovně',splitVertical:'Rozdělit buňky svisle',title:'Vlastnosti buňky',cellType:'Typ buňky',rowSpan:'Spojit řádky',colSpan:'Spojit sloupce',wordWrap:'Zalamování',hAlign:'Vodorovné zarovnání',vAlign:'Svislé zarovnání',alignBaseline:'Na účaří',bgColor:'Barva pozadí',borderColor:'Barva okraje',data:'Data',header:'Hlavička',yes:'Ano',no:'Ne',invalidWidth:'Šířka buňky musí být číslo.',invalidHeight:'Zadaná výška buňky musí být číslená.',invalidRowSpan:'Zadaný počet sloučených řádků musí být celé číslo.',invalidColSpan:'Zadaný počet sloučených sloupců musí být celé číslo.',chooseColor:'Výběr'},row:{menu:'Řádek',insertBefore:'Vložit řádek před',insertAfter:'Vložit řádek za',deleteRow:'Smazat řádky'},column:{menu:'Sloupec',insertBefore:'Vložit sloupec před',insertAfter:'Vložit sloupec za',deleteColumn:'Smazat sloupec'}},button:{title:'Vlastnosti tlačítka',text:'Popisek',type:'Typ',typeBtn:'Tlačítko',typeSbm:'Odeslat',typeRst:'Obnovit'},checkboxAndRadio:{checkboxTitle:'Vlastnosti zaškrtávacího políčka',radioTitle:'Vlastnosti přepínače',value:'Hodnota',selected:'Zaškrtnuto'},form:{title:'Vlastnosti formuláře',menu:'Vlastnosti formuláře',action:'Akce',method:'Metoda',encoding:'Kódování'},select:{title:'Vlastnosti seznamu',selectInfo:'Info',opAvail:'Dostupná nastavení',value:'Hodnota',size:'Velikost',lines:'Řádků',chkMulti:'Povolit mnohonásobné výběry',opText:'Text',opValue:'Hodnota',btnAdd:'Přidat',btnModify:'Změnit',btnUp:'Nahoru',btnDown:'Dolů',btnSetValue:'Nastavit jako vybranou hodnotu',btnDelete:'Smazat'},textarea:{title:'Vlastnosti textové oblasti',cols:'Sloupců',rows:'Řádků'},textfield:{title:'Vlastnosti textového pole',name:'Název',value:'Hodnota',charWidth:'Šířka ve znacích',maxChars:'Maximální počet znaků',type:'Typ',typeText:'Text',typePass:'Heslo'},hidden:{title:'Vlastnosti skrytého pole',name:'Název',value:'Hodnota'},image:{title:'Vlastnosti obrázku',titleButton:'Vlastností obrázkového tlačítka',menu:'Vlastnosti obrázku',infoTab:'Informace o obrázku',btnUpload:'Odeslat na server',upload:'Odeslat',alt:'Alternativní text',lockRatio:'Zámek',resetSize:'Původní velikost',border:'Okraje',hSpace:'Horizontální mezera',vSpace:'Vertikální mezera',alertUrl:'Zadejte prosím URL obrázku',linkTab:'Odkaz',button2Img:'Skutečně chcete převést zvolené obrázkové tlačítko na obyčejný obrázek?',img2Button:'Skutečně chcete převést zvolený obrázek na obrázkové tlačítko?',urlMissing:'Zadané URL zdroje obrázku nebylo nalezeno.',validateBorder:'Okraj musí být nastaven v celých číslech.',validateHSpace:'Horizontální mezera musí být nastavena v celých číslech.',validateVSpace:'Vertikální mezera musí být nastavena v celých číslech.'},flash:{properties:'Vlastnosti Flashe',propertiesTab:'Vlastnosti',title:'Vlastnosti Flashe',chkPlay:'Automatické spuštění',chkLoop:'Opakování',chkMenu:'Nabídka Flash',chkFull:'Povolit celoobrazovkový režim',scale:'Zobrazit',scaleAll:'Zobrazit vše',scaleNoBorder:'Bez okraje',scaleFit:'Přizpůsobit',access:'Přístup ke skriptu',accessAlways:'Vždy',accessSameDomain:'Ve stejné doméně',accessNever:'Nikdy',alignAbsBottom:'Zcela dolů',alignAbsMiddle:'Doprostřed',alignBaseline:'Na účaří',alignTextTop:'Na horní okraj textu',quality:'Kvalita',qualityBest:'Nejlepší',qualityHigh:'Vysoká',qualityAutoHigh:'Vysoká - auto',qualityMedium:'Střední',qualityAutoLow:'Nízká - auto',qualityLow:'Nejnižší',windowModeWindow:'Okno',windowModeOpaque:'Neprůhledné',windowModeTransparent:'Průhledné',windowMode:'Režim okna',flashvars:'Proměnné pro Flash',bgcolor:'Barva pozadí',hSpace:'Horizontální mezera',vSpace:'Vertikální mezera',validateSrc:'Zadejte prosím URL odkazu',validateHSpace:'Zadaná horizontální mezera musí být číslo.',validateVSpace:'Zadaná vertikální mezera musí být číslo.'},spellCheck:{toolbar:'Zkontrolovat pravopis',title:'Kontrola pravopisu',notAvailable:'Omlouváme se, ale služba nyní není dostupná.',errorLoading:'Chyba nahrávání služby aplikace z: %s.',notInDic:'Není ve slovníku',changeTo:'Změnit na',btnIgnore:'Přeskočit',btnIgnoreAll:'Přeskakovat vše',btnReplace:'Zaměnit',btnReplaceAll:'Zaměňovat vše',btnUndo:'Zpět',noSuggestions:'- žádné návrhy -',progress:'Probíhá kontrola pravopisu...',noMispell:'Kontrola pravopisu dokončena: Žádné pravopisné chyby nenalezeny',noChanges:'Kontrola pravopisu dokončena: Beze změn',oneChange:'Kontrola pravopisu dokončena: Jedno slovo změněno',manyChanges:'Kontrola pravopisu dokončena: %1 slov změněno',ieSpellDownload:'Kontrola pravopisu není nainstalována. Chcete ji nyní stáhnout?'},smiley:{toolbar:'Smajlíci',title:'Vkládání smajlíků',options:'Nastavení smajlíků'},elementsPath:{eleLabel:'Cesta objektu',eleTitle:'%1 objekt'},numberedlist:'Číslování',bulletedlist:'Odrážky',indent:'Zvětšit odsazení',outdent:'Zmenšit odsazení',justify:{left:'Zarovnat vlevo',center:'Zarovnat na střed',right:'Zarovnat vpravo',block:'Zarovnat do bloku'},blockquote:'Citace',clipboard:{title:'Vložit',cutError:'Bezpečnostní nastavení vašeho prohlížeče nedovolují editoru spustit funkci pro vyjmutí zvoleného textu do schránky. Prosím vyjměte zvolený text do schránky pomocí klávesnice (Ctrl/Cmd+X).',copyError:'Bezpečnostní nastavení vašeho prohlížeče nedovolují editoru spustit funkci pro kopírování zvoleného textu do schránky. Prosím zkopírujte zvolený text do schránky pomocí klávesnice (Ctrl/Cmd+C).',pasteMsg:'Do následujícího pole vložte požadovaný obsah pomocí klávesnice (<STRONG>Ctrl/Cmd+V</STRONG>) a stiskněte <STRONG>OK</STRONG>.',securityMsg:'Z důvodů nastavení bezpečnosti vašeho prohlížeče nemůže editor přistupovat přímo do schránky. Obsah schránky prosím vložte znovu do tohoto okna.',pasteArea:'Oblast vkládání'},pastefromword:{confirmCleanup:'Jak je vidět, vkládaný text je kopírován z Wordu. Chcete jej před vložením vyčistit?',toolbar:'Vložit z Wordu',title:'Vložit z Wordu',error:'Z důvodu vnitřní chyby nebylo možné provést vyčištění vkládaného textu.'},pasteText:{button:'Vložit jako čistý text',title:'Vložit jako čistý text'},templates:{button:'Šablony',title:'Šablony obsahu',options:'Nastavení šablon',insertOption:'Nahradit aktuální obsah',selectPromptMsg:'Prosím zvolte šablonu pro otevření v editoru<br>(aktuální obsah editoru bude ztracen):',emptyListMsg:'(Není definována žádná šablona)'},showBlocks:'Ukázat bloky',stylesCombo:{label:'Styl',panelTitle:'Formátovací styly',panelTitle1:'Blokové styly',panelTitle2:'Řádkové styly',panelTitle3:'Objektové styly'},format:{label:'Formát',panelTitle:'Formát',tag_p:'Normální',tag_pre:'Naformátováno',tag_address:'Adresa',tag_h1:'Nadpis 1',tag_h2:'Nadpis 2',tag_h3:'Nadpis 3',tag_h4:'Nadpis 4',tag_h5:'Nadpis 5',tag_h6:'Nadpis 6',tag_div:'Normální (DIV)'},div:{title:'Vytvořit Div kontejner',toolbar:'Vytvořit Div kontejner',cssClassInputLabel:'Třídy stylů',styleSelectLabel:'Styly',IdInputLabel:'Id',languageCodeInputLabel:' Kód jazyka',inlineStyleInputLabel:'Vnitřní styly',advisoryTitleInputLabel:'Nápovědní titulek',langDirLabel:'Směr jazyka',langDirLTRLabel:'Zleva doprava (LTR)',langDirRTLLabel:'Zprava doleva (RTL)',edit:'Změnit Div',remove:'Odstranit Div'},iframe:{title:'Vlastnosti IFrame',toolbar:'IFrame',noUrl:'Zadejte prosím URL obsahu pro IFrame',scrolling:'Zapnout posuvníky',border:'Zobrazit okraj'},font:{label:'Písmo',voiceLabel:'Písmo',panelTitle:'Písmo'},fontSize:{label:'Velikost',voiceLabel:'Velikost písma',panelTitle:'Velikost'},colorButton:{textColorTitle:'Barva textu',bgColorTitle:'Barva pozadí',panelTitle:'Barvy',auto:'Automaticky',more:'Více barev...'},colors:{'000':'Černá',800000:'Kaštanová','8B4513':'Sedlová hněď','2F4F4F':'Tmavě bledě šedá','008080':'Čírka','000080':'Námořnická modř','4B0082':'Inkoustová',696969:'Tmavě šedá',B22222:'Pálená cihla',A52A2A:'Hnědá',DAA520:'Zlatý prut','006400':'Tmavě zelená','40E0D0':'Tyrkisová','0000CD':'Středně modrá',800080:'Purpurová',808080:'Šedá',F00:'Červená',FF8C00:'Tmavě oranžová',FFD700:'Zlatá','008000':'Zelená','0FF':'Azurová','00F':'Modrá',EE82EE:'Fialová',A9A9A9:'Kalně šedá',FFA07A:'Světle lososová',FFA500:'Oranžová',FFFF00:'Žlutá','00FF00':'Limetková',AFEEEE:'Bledě tyrkisová',ADD8E6:'Světle modrá',DDA0DD:'Švestková',D3D3D3:'Světle šedá',FFF0F5:'Levandulově ruměnná',FAEBD7:'Antická bílá',FFFFE0:'Světle žlutá',F0FFF0:'Medová rosa',F0FFFF:'Azurová',F0F8FF:'Alenčina modrá',E6E6FA:'Levandulová',FFF:'Bílá'},scayt:{title:'Kontrola pravopisu během psaní (SCAYT)',opera_title:'Toto Opera nepodporuje',enable:'Zapnout SCAYT',disable:'Vypnout SCAYT',about:'O aplikaci SCAYT',toggle:'Vypínač SCAYT',options:'Nastavení',langs:'Jazyky',moreSuggestions:'Více návrhů',ignore:'Přeskočit',ignoreAll:'Přeskočit vše',addWord:'Přidat slovo',emptyDic:'Název slovníku nesmí být prázdný.',noSuggestions:'Zádné návrhy',optionsTab:'Nastavení',allCaps:'Ignorovat slova tvořená velkými písmeny',ignoreDomainNames:'Ignorovat doménová jména',mixedCase:'Ignorovat slova obsahující různou velikost písma',mixedWithDigits:'Ignorovat slova obsahující čísla',languagesTab:'Jazyky',dictionariesTab:'Slovníky',dic_field_name:'Název slovníku',dic_create:'Vytvořit',dic_restore:'Obnovit',dic_delete:'Smazat',dic_rename:'Přejmenovat',dic_info:'Zpočátku se uživatelský slovník ukládá do cookies ve vašem prohlížeči. Ovšem cookies mají omezenou velikost, takže když slovník dosáhne velikosti, kdy se již do cookies nevejde, může být uložen na našem serveru. Chcete-li uložit váš osobní slovník na našem serveru, je třeba slovník nejdříve pojmenovat. Máte-li již slovník pojmenován a uložen, zadejte jeho název a klepněte na tlačítko Obnovit.',aboutTab:'O aplikaci'},about:{title:'O aplikaci CKEditor',dlgTitle:'O aplikaci CKEditor',help:'Prohlédněte si $1 pro nápovědu.',userGuide:'Uživatelská příručka CKEditor',moreInfo:'Pro informace o lincenci navštivte naši webovou stránku:',copy:'Copyright © $1. All rights reserved.'},maximize:'Maximalizovat',minimize:'Minimalizovat',fakeobjects:{anchor:'Záložka',flash:'Flash animace',iframe:'IFrame',hiddenfield:'Skryté pole',unknown:'Neznámý objekt'},resize:'Uchopit pro změnu velikosti',colordialog:{title:'Výběr barvy',options:'Nastavení barvy',highlight:'Zvýraznit',selected:'Vybráno',clear:'Vyčistit'},toolbarCollapse:'Skrýt panel nástrojů',toolbarExpand:'Zobrazit panel nástrojů',toolbarGroups:{document:'Dokument',clipboard:'Schránka/Zpět',editing:'Úpravy',forms:'Formuláře',basicstyles:'Základní styly',paragraph:'Odstavec',links:'Odkazy',insert:'Vložit',styles:'Styly',colors:'Barvy',tools:'Nástroje'},bidi:{ltr:'Směr textu zleva doprava',rtl:'Směr textu zprava doleva'},docprops:{label:'Vlastnosti dokumentu',title:'Vlastnosti dokumentu',design:'Vzhled',meta:'Metadata',chooseColor:'Výběr',other:'<jiný>',docTitle:'Titulek stránky',charset:'Znaková sada',charsetOther:'Další znaková sada',charsetASCII:'ASCII',charsetCE:'Středoevropské jazyky',charsetCT:'Tradiční čínština (Big5)',charsetCR:'Cyrilice',charsetGR:'Řečtina',charsetJP:'Japonština',charsetKR:'Korejština',charsetTR:'Turečtina',charsetUN:'Unicode (UTF-8)',charsetWE:'Západoevropské jazyky',docType:'Typ dokumentu',docTypeOther:'Jiný typ dokumetu',xhtmlDec:'Zahrnout deklarace XHTML',bgColor:'Barva pozadí',bgImage:'URL obrázku na pozadí',bgFixed:'Nerolovatelné (Pevné) pozadí',txtColor:'Barva textu',margin:'Okraje stránky',marginTop:'Horní',marginLeft:'Levý',marginRight:'Pravý',marginBottom:'Dolní',metaKeywords:'Klíčová slova (oddělená čárkou)',metaDescription:'Popis dokumentu',metaAuthor:'Autor',metaCopyright:'Autorská práva',previewHtml:'<p>Toto je <strong>ukázkový text</strong>. Používáte <a href="javascript:void(0)">CKEditor</a>.</p>'}}; ��������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/lang/ru.js��������������������������������������������0000664�0001750�0001750�00000070331�12262650742�021765� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.lang.ru={dir:'ltr',editorTitle:'Визуальный редактор текста, %1',editorHelp:'нажмите ALT-0 для открытия справки',toolbars:'Панели инструментов редактора',editor:'Визуальный редактор текста',source:'Источник',newPage:'Новая страница',save:'Сохранить',preview:'Предварительный просмотр',cut:'Вырезать',copy:'Копировать',paste:'Вставить',print:'Печать',underline:'Подчеркнутый',bold:'Полужирный',italic:'Курсив',selectAll:'Выделить все',removeFormat:'Убрать форматирование',strike:'Зачеркнутый',subscript:'Подстрочный индекс',superscript:'Надстрочный индекс',horizontalrule:'Вставить горизонтальную линию',pagebreak:'Вставить разрыв страницы для печати',pagebreakAlt:'Разрыв страницы',unlink:'Убрать ссылку',undo:'Отменить',redo:'Повторить',common:{browseServer:'Выбор на сервере',url:'Ссылка',protocol:'Протокол',upload:'Загрузка',uploadSubmit:'Загрузить на сервер',image:'Изображение',flash:'Flash',form:'Форма',checkbox:'Флаговая кнопка',radio:'Кнопка выбора',textField:'Текстовое поле',textarea:'Многострочное текстовое поле',hiddenField:'Скрытое поле',button:'Кнопка',select:'Список выбора',imageButton:'Изображение-кнопка',notSet:'<не указано>',id:'Идентификатор',name:'Имя',langDir:'Направление текста',langDirLtr:'Слева направо (LTR)',langDirRtl:'Справа налево (RTL)',langCode:'Код языка',longDescr:'Длинное описание ссылки',cssClass:'Класс CSS',advisoryTitle:'Заголовок',cssStyle:'Стиль',ok:'ОК',cancel:'Отмена',close:'Закрыть',preview:'Предпросмотр',generalTab:'Основное',advancedTab:'Дополнительно',validateNumberFailed:'Это значение не является числом.',confirmNewPage:'Несохранённые изменения будут потеряны! Вы действительно желаете перейти на другую страницу?',confirmCancel:'Некоторые параметры были изменены. Вы уверены, что желаете закрыть без сохранения?',options:'Параметры',target:'Цель',targetNew:'Новое окно (_blank)',targetTop:'Главное окно (_top)',targetSelf:'Текущее окно (_self)',targetParent:'Родительское окно (_parent)',langDirLTR:'Слева направо (LTR)',langDirRTL:'Справа налево (RTL)',styles:'Стиль',cssClasses:'Классы CSS',width:'Ширина',height:'Высота',align:'Выравнивание',alignLeft:'По левому краю',alignRight:'По правому краю',alignCenter:'По центру',alignTop:'По верху',alignMiddle:'По середине',alignBottom:'По низу',invalidValue:'Invalid value.',invalidHeight:'Высота задается числом.',invalidWidth:'Ширина задается числом.',invalidCssLength:'Значение, указанное в поле "%1", должно быть положительным целым числом. Допускается указание единиц меры CSS (px, %, in, cm, mm, em, ex, pt или pc).',invalidHtmlLength:'Значение, указанное в поле "%1", должно быть положительным целым числом. Допускается указание единиц меры HTML (px или %).',invalidInlineStyle:'Значение, указанное для стиля элемента, должно состоять из одной или нескольких пар данных в формате "параметр : значение", разделённых точкой с запятой.',cssLengthTooltip:'Введите значение в пикселях, либо число с корректной единицей меры CSS (px, %, in, cm, mm, em, ex, pt или pc).',unavailable:'%1<span class="cke_accessibility">, недоступно</span>'},contextmenu:{options:'Параметры контекстного меню'},specialChar:{toolbar:'Вставить специальный символ',title:'Выберите специальный символ',options:'Выбор специального символа'},link:{toolbar:'Вставить/Редактировать ссылку',other:'<другой>',menu:'Редактировать ссылку',title:'Ссылка',info:'Информация о ссылке',target:'Цель',upload:'Загрузка',advanced:'Дополнительно',type:'Тип ссылки',toUrl:'Ссылка',toAnchor:'Ссылка на якорь в тексте',toEmail:'Email',targetFrame:'<фрейм>',targetPopup:'<всплывающее окно>',targetFrameName:'Имя целевого фрейма',targetPopupName:'Имя всплывающего окна',popupFeatures:'Параметры всплывающего окна',popupResizable:'Изменяемый размер',popupStatusBar:'Строка состояния',popupLocationBar:'Панель адреса',popupToolbar:'Панель инструментов',popupMenuBar:'Панель меню',popupFullScreen:'Полноэкранное (IE)',popupScrollBars:'Полосы прокрутки',popupDependent:'Зависимое (Netscape)',popupLeft:'Отступ слева',popupTop:'Отступ сверху',id:'Идентификатор',langDir:'Направление текста',langDirLTR:'Слева направо (LTR)',langDirRTL:'Справа налево (RTL)',acccessKey:'Клавиша доступа',name:'Имя',langCode:'Код языка',tabIndex:'Последовательность перехода',advisoryTitle:'Заголовок',advisoryContentType:'Тип содержимого',cssClasses:'Классы CSS',charset:'Кодировка ресурса',styles:'Стиль',rel:'Отношение',selectAnchor:'Выберите якорь',anchorName:'По имени',anchorId:'По идентификатору',emailAddress:'Email адрес',emailSubject:'Тема сообщения',emailBody:'Текст сообщения',noAnchors:'(В документе нет ни одного якоря)',noUrl:'Пожалуйста, введите ссылку',noEmail:'Пожалуйста, введите email адрес'},anchor:{toolbar:'Вставить / редактировать якорь',menu:'Изменить якорь',title:'Свойства якоря',name:'Имя якоря',errorName:'Пожалуйста, введите имя якоря',remove:'Удалить якорь'},list:{numberedTitle:'Свойства нумерованного списка',bulletedTitle:'Свойства маркированного списка',type:'Тип',start:'Начиная с',validateStartNumber:'Первый номер списка должен быть задан обычным целым числом.',circle:'Круг',disc:'Окружность',square:'Квадрат',none:'Нет',notset:'<не указано>',armenian:'Армянская нумерация',georgian:'Грузинская нумерация (ани, бани, гани, и т.д.)',lowerRoman:'Строчные римские (i, ii, iii, iv, v, и т.д.)',upperRoman:'Заглавные римские (I, II, III, IV, V, и т.д.)',lowerAlpha:'Строчные латинские (a, b, c, d, e, и т.д.)',upperAlpha:'Заглавные латинские (A, B, C, D, E, и т.д.)',lowerGreek:'Строчные греческие (альфа, бета, гамма, и т.д.)',decimal:'Десятичные (1, 2, 3, и т.д.)',decimalLeadingZero:'Десятичные с ведущим нулём (01, 02, 03, и т.д.)'},findAndReplace:{title:'Поиск и замена',find:'Найти',replace:'Заменить',findWhat:'Найти:',replaceWith:'Заменить на:',notFoundMsg:'Искомый текст не найден.',findOptions:'Опции поиска',matchCase:'Учитывать регистр',matchWord:'Только слово целиком',matchCyclic:'По всему тексту',replaceAll:'Заменить всё',replaceSuccessMsg:'Успешно заменено %1 раз(а).'},table:{toolbar:'Таблица',title:'Свойства таблицы',menu:'Свойства таблицы',deleteTable:'Удалить таблицу',rows:'Строки',columns:'Колонки',border:'Размер границ',widthPx:'пикселей',widthPc:'процентов',widthUnit:'единица измерения',cellSpace:'Внешний отступ ячеек',cellPad:'Внутренний отступ ячеек',caption:'Заголовок',summary:'Итоги',headers:'Заголовки',headersNone:'Без заголовков',headersColumn:'Левая колонка',headersRow:'Верхняя строка',headersBoth:'Сверху и слева',invalidRows:'Количество строк должно быть больше 0.',invalidCols:'Количество столбцов должно быть больше 0.',invalidBorder:'Размер границ должен быть числом.',invalidWidth:'Ширина таблицы должна быть числом.',invalidHeight:'Высота таблицы должна быть числом.',invalidCellSpacing:'Внешний отступ ячеек (cellspacing) должен быть числом.',invalidCellPadding:'Внутренний отступ ячеек (cellpadding) должен быть числом.',cell:{menu:'Ячейка',insertBefore:'Вставить ячейку слева',insertAfter:'Вставить ячейку справа',deleteCell:'Удалить ячейки',merge:'Объединить ячейки',mergeRight:'Объединить с правой',mergeDown:'Объединить с нижней',splitHorizontal:'Разделить ячейку по горизонтали',splitVertical:'Разделить ячейку по вертикали',title:'Свойства ячейки',cellType:'Тип ячейки',rowSpan:'Объединяет строк',colSpan:'Объединяет колонок',wordWrap:'Перенос по словам',hAlign:'Горизонтальное выравнивание',vAlign:'Вертикальное выравнивание',alignBaseline:'По базовой линии',bgColor:'Цвет фона',borderColor:'Цвет границ',data:'Данные',header:'Заголовок',yes:'Да',no:'Нет',invalidWidth:'Ширина ячейки должна быть числом.',invalidHeight:'Высота ячейки должна быть числом.',invalidRowSpan:'Количество объединяемых строк должно быть задано числом.',invalidColSpan:'Количество объединяемых колонок должно быть задано числом.',chooseColor:'Выберите'},row:{menu:'Строка',insertBefore:'Вставить строку сверху',insertAfter:'Вставить строку снизу',deleteRow:'Удалить строки'},column:{menu:'Колонка',insertBefore:'Вставить колонку слева',insertAfter:'Вставить колонку справа',deleteColumn:'Удалить колонки'}},button:{title:'Свойства кнопки',text:'Текст (Значение)',type:'Тип',typeBtn:'Кнопка',typeSbm:'Отправка',typeRst:'Сброс'},checkboxAndRadio:{checkboxTitle:'Свойства флаговой кнопки',radioTitle:'Свойства кнопки выбора',value:'Значение',selected:'Выбрано'},form:{title:'Свойства формы',menu:'Свойства формы',action:'Действие',method:'Метод',encoding:'Кодировка'},select:{title:'Свойства списка выбора',selectInfo:'Информация о списке выбора',opAvail:'Доступные варианты',value:'Значение',size:'Размер',lines:'строк(и)',chkMulti:'Разрешить выбор нескольких вариантов',opText:'Текст',opValue:'Значение',btnAdd:'Добавить',btnModify:'Изменить',btnUp:'Поднять',btnDown:'Опустить',btnSetValue:'Пометить как выбранное',btnDelete:'Удалить'},textarea:{title:'Свойства многострочного текстового поля',cols:'Колонок',rows:'Строк'},textfield:{title:'Свойства текстового поля',name:'Имя',value:'Значение',charWidth:'Ширина поля (в символах)',maxChars:'Макс. количество символов',type:'Тип содержимого',typeText:'Текст',typePass:'Пароль'},hidden:{title:'Свойства скрытого поля',name:'Имя',value:'Значение'},image:{title:'Свойства изображения',titleButton:'Свойства изображения-кнопки',menu:'Свойства изображения',infoTab:'Данные об изображении',btnUpload:'Загрузить на сервер',upload:'Загрузить',alt:'Альтернативный текст',lockRatio:'Сохранять пропорции',resetSize:'Вернуть обычные размеры',border:'Граница',hSpace:'Гориз. отступ',vSpace:'Вертик. отступ',alertUrl:'Пожалуйста, введите ссылку на изображение',linkTab:'Ссылка',button2Img:'Вы желаете преобразовать это изображение-кнопку в обычное изображение?',img2Button:'Вы желаете преобразовать это обычное изображение в изображение-кнопку?',urlMissing:'Не указана ссылка на изображение.',validateBorder:'Размер границ должен быть задан числом.',validateHSpace:'Горизонтальный отступ должен быть задан числом.',validateVSpace:'Вертикальный отступ должен быть задан числом.'},flash:{properties:'Свойства Flash',propertiesTab:'Свойства',title:'Свойства Flash',chkPlay:'Автоматическое воспроизведение',chkLoop:'Повторять',chkMenu:'Включить меню Flash',chkFull:'Разрешить полноэкранный режим',scale:'Масштабировать',scaleAll:'Пропорционально',scaleNoBorder:'Заходить за границы',scaleFit:'Заполнять',access:'Доступ к скриптам',accessAlways:'Всегда',accessSameDomain:'В том же домене',accessNever:'Никогда',alignAbsBottom:'По низу текста',alignAbsMiddle:'По середине текста',alignBaseline:'По базовой линии',alignTextTop:'По верху текста',quality:'Качество',qualityBest:'Лучшее',qualityHigh:'Высокое',qualityAutoHigh:'Запуск на высоком',qualityMedium:'Среднее',qualityAutoLow:'Запуск на низком',qualityLow:'Низкое',windowModeWindow:'Обычный',windowModeOpaque:'Непрозрачный',windowModeTransparent:'Прозрачный',windowMode:'Взаимодействие с окном',flashvars:'Переменные для Flash',bgcolor:'Цвет фона',hSpace:'Гориз. отступ',vSpace:'Вертик. отступ',validateSrc:'Вы должны ввести ссылку',validateHSpace:'Горизонтальный отступ задается числом.',validateVSpace:'Вертикальный отступ задается числом.'},spellCheck:{toolbar:'Проверить орфографию',title:'Проверка орфографии',notAvailable:'Извините, но в данный момент сервис недоступен.',errorLoading:'Произошла ошибка при подключении к серверу проверки орфографии: %s.',notInDic:'Отсутствует в словаре',changeTo:'Изменить на',btnIgnore:'Пропустить',btnIgnoreAll:'Пропустить всё',btnReplace:'Заменить',btnReplaceAll:'Заменить всё',btnUndo:'Отменить',noSuggestions:'- Варианты отсутствуют -',progress:'Орфография проверяется...',noMispell:'Проверка орфографии завершена. Ошибок не найдено',noChanges:'Проверка орфографии завершена. Не изменено ни одного слова',oneChange:'Проверка орфографии завершена. Изменено одно слово',manyChanges:'Проверка орфографии завершена. Изменено слов: %1',ieSpellDownload:'Модуль проверки орфографии не установлен. Хотите скачать его?'},smiley:{toolbar:'Смайлы',title:'Вставить смайл',options:'Выбор смайла'},elementsPath:{eleLabel:'Путь элементов',eleTitle:'Элемент %1'},numberedlist:'Вставить / удалить нумерованный список',bulletedlist:'Вставить / удалить маркированный список',indent:'Увеличить отступ',outdent:'Уменьшить отступ',justify:{left:'По левому краю',center:'По центру',right:'По правому краю',block:'По ширине'},blockquote:'Цитата',clipboard:{title:'Вставить',cutError:'Настройки безопасности вашего браузера не разрешают редактору выполнять операции по вырезке текста. Пожалуйста, используйте для этого клавиатуру (Ctrl/Cmd+X).',copyError:'Настройки безопасности вашего браузера не разрешают редактору выполнять операции по копированию текста. Пожалуйста, используйте для этого клавиатуру (Ctrl/Cmd+C).',pasteMsg:'Пожалуйста, вставьте текст в зону ниже, используя клавиатуру (<strong>Ctrl/Cmd+V</strong>) и нажмите кнопку "OK".',securityMsg:'Настройки безопасности вашего браузера не разрешают редактору напрямую обращаться к буферу обмена. Вы должны вставить текст снова в это окно.',pasteArea:'Зона для вставки'},pastefromword:{confirmCleanup:'Текст, который вы желаете вставить, по всей видимости, был скопирован из Word. Следует ли очистить его перед вставкой?',toolbar:'Вставить из Word',title:'Вставить из Word',error:'Невозможно очистить вставленные данные из-за внутренней ошибки'},pasteText:{button:'Вставить только текст',title:'Вставить только текст'},templates:{button:'Шаблоны',title:'Шаблоны содержимого',options:'Параметры шаблона',insertOption:'Заменить текущее содержимое',selectPromptMsg:'Пожалуйста, выберите, какой шаблон следует открыть в редакторе',emptyListMsg:'(не определено ни одного шаблона)'},showBlocks:'Отображать блоки',stylesCombo:{label:'Стили',panelTitle:'Стили форматирования',panelTitle1:'Стили блока',panelTitle2:'Стили элемента',panelTitle3:'Стили объекта'},format:{label:'Форматирование',panelTitle:'Форматирование',tag_p:'Обычное',tag_pre:'Моноширинное',tag_address:'Адрес',tag_h1:'Заголовок 1',tag_h2:'Заголовок 2',tag_h3:'Заголовок 3',tag_h4:'Заголовок 4',tag_h5:'Заголовок 5',tag_h6:'Заголовок 6',tag_div:'Обычное (div)'},div:{title:'Создать Div-контейнер',toolbar:'Создать Div-контейнер',cssClassInputLabel:'Классы CSS',styleSelectLabel:'Стиль',IdInputLabel:'Идентификатор',languageCodeInputLabel:'Код языка',inlineStyleInputLabel:'Стиль элемента',advisoryTitleInputLabel:'Заголовок',langDirLabel:'Направление текста',langDirLTRLabel:'Слева направо (LTR)',langDirRTLLabel:'Справа налево (RTL)',edit:'Редактировать контейнер',remove:'Удалить контейнер'},iframe:{title:'Свойства iFrame',toolbar:'iFrame',noUrl:'Пожалуйста, введите ссылку фрейма',scrolling:'Отображать полосы прокрутки',border:'Показать границы фрейма'},font:{label:'Шрифт',voiceLabel:'Шрифт',panelTitle:'Шрифт'},fontSize:{label:'Размер',voiceLabel:'Размер шрифта',panelTitle:'Размер шрифта'},colorButton:{textColorTitle:'Цвет текста',bgColorTitle:'Цвет фона',panelTitle:'Цвета',auto:'Автоматически',more:'Ещё цвета...'},colors:{'000':'Чёрный',800000:'Бордовый','8B4513':'Кожано-коричневый','2F4F4F':'Темный синевато-серый','008080':'Сине-зелёный','000080':'Тёмно-синий','4B0082':'Индиго',696969:'Тёмно-серый',B22222:'Кирпичный',A52A2A:'Коричневый',DAA520:'Золотисто-берёзовый','006400':'Темно-зелёный','40E0D0':'Бирюзовый','0000CD':'Умеренно синий',800080:'Пурпурный',808080:'Серый',F00:'Красный',FF8C00:'Темно-оранжевый',FFD700:'Золотистый','008000':'Зелёный','0FF':'Васильковый','00F':'Синий',EE82EE:'Фиолетовый',A9A9A9:'Тускло-серый',FFA07A:'Светло-лососевый',FFA500:'Оранжевый',FFFF00:'Жёлтый','00FF00':'Лайма',AFEEEE:'Бледно-синий',ADD8E6:'Свелто-голубой',DDA0DD:'Сливовый',D3D3D3:'Светло-серый',FFF0F5:'Розово-лавандовый',FAEBD7:'Античный белый',FFFFE0:'Светло-жёлтый',F0FFF0:'Медвяной росы',F0FFFF:'Лазурный',F0F8FF:'Бледно-голубой',E6E6FA:'Лавандовый',FFF:'Белый'},scayt:{title:'Проверка орфографии по мере ввода (SCAYT)',opera_title:'Не поддерживается Opera',enable:'Включить SCAYT',disable:'Отключить SCAYT',about:'О SCAYT',toggle:'Переключить SCAYT',options:'Настройки',langs:'Языки',moreSuggestions:'Ещё варианты',ignore:'Пропустить',ignoreAll:'Пропустить всё',addWord:'Добавить слово',emptyDic:'Вы должны указать название словаря.',noSuggestions:'No suggestions',optionsTab:'Параметры',allCaps:'Игнорировать слова из заглавных букв',ignoreDomainNames:'Игнорировать доменные имена',mixedCase:'Игнорировать слова из букв в разном регистре',mixedWithDigits:'Игнорировать слова, содержащие цифры',languagesTab:'Языки',dictionariesTab:'Словари',dic_field_name:'Название словаря',dic_create:'Создать',dic_restore:'Восстановить',dic_delete:'Удалить',dic_rename:'Переименовать',dic_info:'Изначально, пользовательский словарь хранится в cookie, которые ограничены в размере. Когда словарь пользователя вырастает до размеров, что его невозможно хранить в cookie, он переносится на хранение на наш сервер. Чтобы сохранить ваш словарь на нашем сервере, вам следует указать название вашего словаря. Если у вас уже был словарь, который вы сохраняли на нашем сервере, то укажите здесь его название и нажмите кнопку Восстановить.',aboutTab:'О SCAYT'},about:{title:'О CKEditor',dlgTitle:'О CKEditor',help:'$1 содержит подробную справку по использованию.',userGuide:'Руководство пользователя CKEditor',moreInfo:'Для получения информации о лицензии, пожалуйста, перейдите на наш сайт:',copy:'Copyright © $1. Все права защищены.'},maximize:'Развернуть',minimize:'Свернуть',fakeobjects:{anchor:'Якорь',flash:'Flash анимация',iframe:'iFrame',hiddenfield:'Скрытое поле',unknown:'Неизвестный объект'},resize:'Перетащите для изменения размера',colordialog:{title:'Выберите цвет',options:'Настройки цвета',highlight:'Под курсором',selected:'Выбранный цвет',clear:'Очистить'},toolbarCollapse:'Свернуть панель инструментов',toolbarExpand:'Развернуть панель инструментов',toolbarGroups:{document:'Документ',clipboard:'Буфер обмена / Отмена действий',editing:'Корректировка',forms:'Формы',basicstyles:'Простые стили',paragraph:'Абзац',links:'Ссылки',insert:'Вставка',styles:'Стили',colors:'Цвета',tools:'Инструменты'},bidi:{ltr:'Направление текста слева направо',rtl:'Направление текста справа налево'},docprops:{label:'Свойства документа',title:'Свойства документа',design:'Дизайн',meta:'Метаданные',chooseColor:'Выберите',other:'Другой ...',docTitle:'Заголовок страницы',charset:'Кодировка набора символов',charsetOther:'Другая кодировка набора символов',charsetASCII:'ASCII',charsetCE:'Центрально-европейская',charsetCT:'Китайская традиционная (Big5)',charsetCR:'Кириллица',charsetGR:'Греческая',charsetJP:'Японская',charsetKR:'Корейская',charsetTR:'Турецкая',charsetUN:'Юникод (UTF-8)',charsetWE:'Западно-европейская',docType:'Заголовок типа документа',docTypeOther:'Другой заголовок типа документа',xhtmlDec:'Включить объявления XHTML',bgColor:'Цвет фона',bgImage:'Ссылка на фоновое изображение',bgFixed:'Фон прикреплён (не проматывается)',txtColor:'Цвет текста',margin:'Отступы страницы',marginTop:'Верхний',marginLeft:'Левый',marginRight:'Правый',marginBottom:'Нижний',metaKeywords:'Ключевые слова документа (через запятую)',metaDescription:'Описание документа',metaAuthor:'Автор',metaCopyright:'Авторские права',previewHtml:'<p>Это <strong>пример</strong> текста, написанного с помощью <a href="javascript:void(0)">CKEditor</a>.</p>'}}; �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/contents.css������������������������������������������0000664�0001750�0001750�00000001035�12262650742�022422� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ body { /* Font */ font-family: Arial, Verdana, sans-serif; font-size: 12px; /* Text color */ color: #222; /* Remove the background color to make it transparent */ background-color: transparent; } ol,ul,dl { /* IE7: reset rtl list margin. (#7334) */ *margin-right:0px; /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/ padding:0 40px; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/config.js���������������������������������������������0000664�0001750�0001750�00000002710�12262650742�021657� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.toolbar = 'Full'; config.toolbar_Full = [ ['Cut','Copy','Paste','PasteText','PasteFromWord'], ['Undo','Redo','-','-','SelectAll','RemoveFormat'], ['Table','HorizontalRule','SpecialChar'], '/', ['Bold','Italic','Underline','Strike'], ['NumberedList','BulletedList','-','Outdent','Indent'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], '/', ['Format','Font','FontSize'], ['TextColor'], ['Link'] ]; config.enterMode = CKEDITOR.ENTER_BR; config.shiftEnterMode = CKEDITOR.ENTER_P; config.enableTabKeyTools = true; config.htmlEncodeOutput = false; config.disableNativeSpellChecker = false; config.browserContextMenuOnCtrl = true; config.toolbarStartupExpanded = false; config.font_names = 'Arial/Arial, Helvetica, sans-serif;' + 'Courier New/Courier New, Courier, monospace;' + 'Georgia/Georgia, serif;' + 'Lucida Sans Unicode/Lucida Sans Unicode, Lucida Grande, sans-serif;' + 'Tahoma/Tahoma, Geneva, sans-serif;' + 'Times New Roman/Times New Roman, Times, serif;' + 'Trebuchet MS/Trebuchet MS, Helvetica, sans-serif;' + 'Verdana/Verdana, Geneva, sans-serif'; }; ��������������������������������������������������������rt-4.0.19/share/html/NoAuth/RichText/ckeditor/ckeditor.js�������������������������������������������0000664�0001750�0001750�00001344607�12262650742�022235� 0����������������������������������������������������������������������������������������������������ustar �chmrr���������������������������chmrr������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){if(window.CKEDITOR&&window.CKEDITOR.dom)return;if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'D03G5XL',version:'3.6.6.1',revision:'7696',rnd:Math.floor(Math.random()*900)+100,_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf(':/')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;if(!d)throw 'The CKEditor installation path could not be automatically detected. Please set the global variable "CKEDITOR_BASEPATH" before creating editor instances.';return d;})(),getUrl:function(d){if(d.indexOf(':/')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/'&&!/[&?]t=/.test(d))d+=(d.indexOf('?')>=0?'&':'?')+'t='+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();var a=CKEDITOR;if(!a.event){a.event=function(){};a.event.implementOn=function(b){var c=a.event.prototype;for(var d in c){if(b[d]==undefined)b[d]=c[d];}};a.event.prototype=(function(){var b=function(d){var e=d.getPrivate&&d.getPrivate()||d._||(d._={});return e.events||(e.events={});},c=function(d){this.name=d;this.listeners=[];};c.prototype={getListenerIndex:function(d){for(var e=0,f=this.listeners;e<f.length;e++){if(f[e].fn==d)return e;}return-1;}};return{on:function(d,e,f,g,h){var i=b(this),j=i[d]||(i[d]=new c(d));if(j.getListenerIndex(e)<0){var k=j.listeners;if(!f)f=this;if(isNaN(h))h=10;var l=this,m=function(o,p,q,r){var s={name:d,sender:this,editor:o,data:p,listenerData:g,stop:q,cancel:r,removeListener:function(){l.removeListener(d,e);}};e.call(f,s);return s.data;};m.fn=e;m.priority=h;for(var n=k.length-1;n>=0;n--){if(k[n].priority<=h){k.splice(n+1,0,m);return;}}k.unshift(m);}},fire:(function(){var d=false,e=function(){d=true;},f=false,g=function(){f=true;};return function(h,i,j){var k=b(this)[h],l=d,m=f;d=f=false;if(k){var n=k.listeners;if(n.length){n=n.slice(0);for(var o=0;o<n.length;o++){var p=n[o].call(this,j,i,e,g);if(typeof p!='undefined')i=p;if(d||f)break;}}}var q=f||(typeof i=='undefined'?false:i);d=l;f=m;return q;};})(),fireOnce:function(d,e,f){var g=this.fire(d,e,f);delete b(this)[d];return g;},removeListener:function(d,e){var f=b(this)[d];if(f){var g=f.getListenerIndex(e); if(g>=0)f.listeners.splice(g,1);}},hasListeners:function(d){var e=b(this)[d];return e&&e.listeners.length>0;}};})();}if(!a.editor){a.ELEMENT_MODE_NONE=0;a.ELEMENT_MODE_REPLACE=1;a.ELEMENT_MODE_APPENDTO=2;a.editor=function(b,c,d,e){var f=this;f._={instanceConfig:b,element:c,data:e};f.elementMode=d||0;a.event.call(f);f._init();};a.editor.replace=function(b,c){var d=b;if(typeof d!='object'){d=document.getElementById(b);if(d&&d.tagName.toLowerCase() in {style:1,script:1,base:1,link:1,meta:1,title:1})d=null;if(!d){var e=0,f=document.getElementsByName(b);while((d=f[e++])&&d.tagName.toLowerCase()!='textarea'){}}if(!d)throw '[CKEDITOR.editor.replace] The element with id or name "'+b+'" was not found.';}d.style.visibility='hidden';return new a.editor(c,d,1);};a.editor.appendTo=function(b,c,d){var e=b;if(typeof e!='object'){e=document.getElementById(b);if(!e)throw '[CKEDITOR.editor.appendTo] The element with id "'+b+'" was not found.';}return new a.editor(c,e,2,d);};a.editor.prototype={_init:function(){var b=a.editor._pending||(a.editor._pending=[]);b.push(this);},fire:function(b,c){return a.event.prototype.fire.call(this,b,c,this);},fireOnce:function(b,c){return a.event.prototype.fireOnce.call(this,b,c,this);}};a.event.implementOn(a.editor.prototype,true);}if(!a.env)a.env=(function(){var b=navigator.userAgent.toLowerCase(),c=window.opera,d={ie:/*@cc_on!@*/false,opera:!!c&&c.version,webkit:b.indexOf(' applewebkit/')>-1,air:b.indexOf(' adobeair/')>-1,mac:b.indexOf('macintosh')>-1,quirks:document.compatMode=='BackCompat',mobile:b.indexOf('mobile')>-1,iOS:/(ipad|iphone|ipod)/.test(b),isCustomDomain:function(){if(!this.ie)return false;var g=document.domain,h=window.location.hostname;return g!=h&&g!='['+h+']';},secure:location.protocol=='https:'};d.gecko=navigator.product=='Gecko'&&!d.webkit&&!d.opera;var e=0;if(d.ie){e=parseFloat(b.match(/msie (\d+)/)[1]);d.ie8=!!document.documentMode;d.ie8Compat=document.documentMode==8;d.ie9Compat=document.documentMode==9;d.ie7Compat=e==7&&!document.documentMode||document.documentMode==7;d.ie6Compat=e<7||d.quirks;}if(d.gecko){var f=b.match(/rv:([\d\.]+)/);if(f){f=f[1].split('.');e=f[0]*10000+(f[1]||0)*100+ +(f[2]||0);}}if(d.opera)e=parseFloat(c.version());if(d.air)e=parseFloat(b.match(/ adobeair\/(\d+)/)[1]);if(d.webkit)e=parseFloat(b.match(/ applewebkit\/(\d+)/)[1]);d.version=e;d.isCompatible=d.iOS&&e>=534||!d.mobile&&(d.ie&&e>=6||d.gecko&&e>=10801||d.opera&&e>=9.5||d.air&&e>=1||d.webkit&&e>=522||false);d.cssClass='cke_browser_'+(d.ie?'ie':d.gecko?'gecko':d.opera?'opera':d.webkit?'webkit':'unknown'); if(d.quirks)d.cssClass+=' cke_browser_quirks';if(d.ie){d.cssClass+=' cke_browser_ie'+(d.version<7?'6':d.version>=8?document.documentMode:'7');if(d.quirks)d.cssClass+=' cke_browser_iequirks';if(document.documentMode&&document.documentMode>=9)d.cssClass+=' cke_browser_ie9plus';}if(d.gecko&&e<10900)d.cssClass+=' cke_browser_gecko18';if(d.air)d.cssClass+=' cke_browser_air';return d;})();var b=a.env;var c=b.ie;if(a.status=='unloaded')(function(){a.event.implementOn(a);a.loadFullCore=function(){if(a.status!='basic_ready'){a.loadFullCore._load=1;return;}delete a.loadFullCore;var e=document.createElement('script');e.type='text/javascript';e.src=a.basePath+'ckeditor.js';document.getElementsByTagName('head')[0].appendChild(e);};a.loadFullCoreTimeout=0;a.replaceClass='ckeditor';a.replaceByClassEnabled=1;var d=function(e,f,g,h){if(b.isCompatible){if(a.loadFullCore)a.loadFullCore();var i=g(e,f,h);a.add(i);return i;}return null;};a.replace=function(e,f){return d(e,f,a.editor.replace);};a.appendTo=function(e,f,g){return d(e,f,a.editor.appendTo,g);};a.add=function(e){var f=this._.pending||(this._.pending=[]);f.push(e);};a.replaceAll=function(){var e=document.getElementsByTagName('textarea');for(var f=0;f<e.length;f++){var g=null,h=e[f];if(!h.name&&!h.id)continue;if(typeof arguments[0]=='string'){var i=new RegExp('(?:^|\\s)'+arguments[0]+'(?:$|\\s)');if(!i.test(h.className))continue;}else if(typeof arguments[0]=='function'){g={};if(arguments[0](h,g)===false)continue;}this.replace(h,g);}};(function(){var e=function(){var f=a.loadFullCore,g=a.loadFullCoreTimeout;if(a.replaceByClassEnabled)a.replaceAll(a.replaceClass);a.status='basic_ready';if(f&&f._load)f();else if(g)setTimeout(function(){if(a.loadFullCore)a.loadFullCore();},g*1000);};if(window.addEventListener)window.addEventListener('load',e,false);else if(window.attachEvent)window.attachEvent('onload',e);})();a.status='basic_loaded';})();a.dom={};var d=a.dom;(function(){var e=[];a.on('reset',function(){e=[];});a.tools={arrayCompare:function(f,g){if(!f&&!g)return true;if(!f||!g||f.length!=g.length)return false;for(var h=0;h<f.length;h++){if(f[h]!=g[h])return false;}return true;},clone:function(f){var g;if(f&&f instanceof Array){g=[];for(var h=0;h<f.length;h++)g[h]=this.clone(f[h]);return g;}if(f===null||typeof f!='object'||f instanceof String||f instanceof Number||f instanceof Boolean||f instanceof Date||f instanceof RegExp)return f;g=new f.constructor();for(var i in f){var j=f[i];g[i]=this.clone(j);}return g;},capitalize:function(f){return f.charAt(0).toUpperCase()+f.substring(1).toLowerCase(); },extend:function(f){var g=arguments.length,h,i;if(typeof (h=arguments[g-1])=='boolean')g--;else if(typeof (h=arguments[g-2])=='boolean'){i=arguments[g-1];g-=2;}for(var j=1;j<g;j++){var k=arguments[j];for(var l in k){if(h===true||f[l]==undefined)if(!i||l in i)f[l]=k[l];}}return f;},prototypedCopy:function(f){var g=function(){};g.prototype=f;return new g();},isArray:function(f){return!!f&&f instanceof Array;},isEmpty:function(f){for(var g in f){if(f.hasOwnProperty(g))return false;}return true;},cssStyleToDomStyle:(function(){var f=document.createElement('div').style,g=typeof f.cssFloat!='undefined'?'cssFloat':typeof f.styleFloat!='undefined'?'styleFloat':'float';return function(h){if(h=='float')return g;else return h.replace(/-./g,function(i){return i.substr(1).toUpperCase();});};})(),buildStyleHtml:function(f){f=[].concat(f);var g,h=[];for(var i=0;i<f.length;i++){g=f[i];if(/@import|[{}]/.test(g))h.push('<style>'+g+'</style>');else h.push('<link type="text/css" rel=stylesheet href="'+g+'">');}return h.join('');},htmlEncode:function(f){var g=function(k){var l=new d.element('span');l.setText(k);return l.getHtml();},h=g('\n').toLowerCase()=='<br>'?function(k){return g(k).replace(/<br>/gi,'\n');}:g,i=g('>')=='>'?function(k){return h(k).replace(/>/g,'>');}:h,j=g(' ')=='  '?function(k){return i(k).replace(/ /g,' ');}:i;this.htmlEncode=j;return this.htmlEncode(f);},htmlEncodeAttr:function(f){return f.replace(/"/g,'"').replace(/</g,'<').replace(/>/g,'>');},getNextNumber:(function(){var f=0;return function(){return++f;};})(),getNextId:function(){return 'cke_'+this.getNextNumber();},override:function(f,g){return g(f);},setTimeout:function(f,g,h,i,j){if(!j)j=window;if(!h)h=j;return j.setTimeout(function(){if(i)f.apply(h,[].concat(i));else f.apply(h);},g||0);},trim:(function(){var f=/(?:^[ \t\n\r]+)|(?:[ \t\n\r]+$)/g;return function(g){return g.replace(f,'');};})(),ltrim:(function(){var f=/^[ \t\n\r]+/g;return function(g){return g.replace(f,'');};})(),rtrim:(function(){var f=/[ \t\n\r]+$/g;return function(g){return g.replace(f,'');};})(),indexOf:Array.prototype.indexOf?function(f,g){return f.indexOf(g);}:function(f,g){for(var h=0,i=f.length;h<i;h++){if(f[h]===g)return h;}return-1;},bind:function(f,g){return function(){return f.apply(g,arguments);};},createClass:function(f){var g=f.$,h=f.base,i=f.privates||f._,j=f.proto,k=f.statics;if(i){var l=g;g=function(){var p=this;var m=p._||(p._={});for(var n in i){var o=i[n];m[n]=typeof o=='function'?a.tools.bind(o,p):o; }l.apply(p,arguments);};}if(h){g.prototype=this.prototypedCopy(h.prototype);g.prototype['constructor']=g;g.prototype.base=function(){this.base=h.prototype.base;h.apply(this,arguments);this.base=arguments.callee;};}if(j)this.extend(g.prototype,j,true);if(k)this.extend(g,k,true);return g;},addFunction:function(f,g){return e.push(function(){return f.apply(g||this,arguments);})-1;},removeFunction:function(f){e[f]=null;},callFunction:function(f){var g=e[f];return g&&g.apply(window,Array.prototype.slice.call(arguments,1));},cssLength:(function(){return function(f){return f+(!f||isNaN(Number(f))?'':'px');};})(),convertToPx:(function(){var f;return function(g){if(!f){f=d.element.createFromHtml('<div style="position:absolute;left:-9999px;top:-9999px;margin:0px;padding:0px;border:0px;"></div>',a.document);a.document.getBody().append(f);}if(!/%$/.test(g)){f.setStyle('width',g);return f.$.clientWidth;}return g;};})(),repeat:function(f,g){return new Array(g+1).join(f);},tryThese:function(){var f;for(var g=0,h=arguments.length;g<h;g++){var i=arguments[g];try{f=i();break;}catch(j){}}return f;},genKey:function(){return Array.prototype.slice.call(arguments).join('-');},normalizeCssText:function(f,g){var h=[],i,j=a.tools.parseCssText(f,true,g);for(i in j)h.push(i+':'+j[i]);h.sort();return h.length?h.join(';')+';':'';},convertRgbToHex:function(f){return f.replace(/(?:rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\))/gi,function(g,h,i,j){var k=[h,i,j];for(var l=0;l<3;l++)k[l]=('0'+parseInt(k[l],10).toString(16)).slice(-2);return '#'+k.join('');});},parseCssText:function(f,g,h){var i={};if(h){var j=new d.element('span');j.setAttribute('style',f);f=a.tools.convertRgbToHex(j.getAttribute('style')||'');}if(!f||f==';')return i;f.replace(/"/g,'"').replace(/\s*([^:;\s]+)\s*:\s*([^;]+)\s*(?=;|$)/g,function(k,l,m){if(g){l=l.toLowerCase();if(l=='font-family')m=m.toLowerCase().replace(/["']/g,'').replace(/\s*,\s*/g,',');m=a.tools.trim(m);}i[l]=m;});return i;}};})();var e=a.tools;a.dtd=(function(){var f=e.extend,g={isindex:1,fieldset:1},h={input:1,button:1,select:1,textarea:1,label:1},i=f({a:1},h),j=f({iframe:1},i),k={hr:1,ul:1,menu:1,div:1,section:1,header:1,footer:1,nav:1,article:1,aside:1,figure:1,dialog:1,hgroup:1,mark:1,time:1,meter:1,command:1,keygen:1,output:1,progress:1,audio:1,video:1,details:1,datagrid:1,datalist:1,blockquote:1,noscript:1,table:1,center:1,address:1,dir:1,pre:1,h5:1,dl:1,h4:1,noframes:1,h6:1,ol:1,h1:1,h3:1,h2:1},l={ins:1,del:1,script:1,style:1},m=f({b:1,acronym:1,bdo:1,'var':1,'#':1,abbr:1,code:1,br:1,i:1,cite:1,kbd:1,u:1,strike:1,s:1,tt:1,strong:1,q:1,samp:1,em:1,dfn:1,span:1,wbr:1},l),n=f({sub:1,img:1,object:1,sup:1,basefont:1,map:1,applet:1,font:1,big:1,small:1,mark:1},m),o=f({p:1},n),p=f({iframe:1},n,h),q={img:1,noscript:1,br:1,kbd:1,center:1,button:1,basefont:1,h5:1,h4:1,samp:1,h6:1,ol:1,h1:1,h3:1,h2:1,form:1,font:1,'#':1,select:1,menu:1,ins:1,abbr:1,label:1,code:1,table:1,script:1,cite:1,input:1,iframe:1,strong:1,textarea:1,noframes:1,big:1,small:1,span:1,hr:1,sub:1,bdo:1,'var':1,div:1,section:1,header:1,footer:1,nav:1,article:1,aside:1,figure:1,dialog:1,hgroup:1,mark:1,time:1,meter:1,menu:1,command:1,keygen:1,output:1,progress:1,audio:1,video:1,details:1,datagrid:1,datalist:1,object:1,sup:1,strike:1,dir:1,map:1,dl:1,applet:1,del:1,isindex:1,fieldset:1,ul:1,b:1,acronym:1,a:1,blockquote:1,i:1,u:1,s:1,tt:1,address:1,q:1,pre:1,p:1,em:1,dfn:1},r=f({a:1},p),s={tr:1},t={'#':1},u=f({param:1},q),v=f({form:1},g,j,k,o),w={li:1},x={style:1,script:1},y={base:1,link:1,meta:1,title:1},z=f(y,x),A={head:1,body:1},B={html:1},C={address:1,blockquote:1,center:1,dir:1,div:1,section:1,header:1,footer:1,nav:1,article:1,aside:1,figure:1,dialog:1,hgroup:1,time:1,meter:1,menu:1,command:1,keygen:1,output:1,progress:1,audio:1,video:1,details:1,datagrid:1,datalist:1,dl:1,fieldset:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,hr:1,isindex:1,noframes:1,ol:1,p:1,pre:1,table:1,ul:1}; return{$nonBodyContent:f(B,A,y),$block:C,$blockLimit:{body:1,div:1,section:1,header:1,footer:1,nav:1,article:1,aside:1,figure:1,dialog:1,hgroup:1,time:1,meter:1,menu:1,command:1,keygen:1,output:1,progress:1,audio:1,video:1,details:1,datagrid:1,datalist:1,td:1,th:1,caption:1,form:1},$inline:r,$body:f({script:1,style:1},C),$cdata:{script:1,style:1},$empty:{area:1,base:1,br:1,col:1,hr:1,img:1,input:1,link:1,meta:1,param:1,wbr:1},$listItem:{dd:1,dt:1,li:1},$list:{ul:1,ol:1,dl:1},$nonEditable:{applet:1,button:1,embed:1,iframe:1,map:1,object:1,option:1,script:1,textarea:1,param:1,audio:1,video:1},$captionBlock:{caption:1,legend:1},$removeEmpty:{abbr:1,acronym:1,address:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,s:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1,mark:1},$tabIndex:{a:1,area:1,button:1,input:1,object:1,select:1,textarea:1},$tableContent:{caption:1,col:1,colgroup:1,tbody:1,td:1,tfoot:1,th:1,thead:1,tr:1},html:A,head:z,style:t,script:t,body:v,base:{},link:{},meta:{},title:t,col:{},tr:{td:1,th:1},img:{},colgroup:{col:1},noscript:v,td:v,br:{},wbr:{},th:v,center:v,kbd:r,button:f(o,k),basefont:{},h5:r,h4:r,samp:r,h6:r,ol:w,h1:r,h3:r,option:t,h2:r,form:f(g,j,k,o),select:{optgroup:1,option:1},font:r,ins:r,menu:w,abbr:r,label:r,table:{thead:1,col:1,tbody:1,tr:1,colgroup:1,caption:1,tfoot:1},code:r,tfoot:s,cite:r,li:v,input:{},iframe:v,strong:r,textarea:t,noframes:v,big:r,small:r,span:r,hr:{},dt:r,sub:r,optgroup:{option:1},param:{},bdo:r,'var':r,div:v,object:u,sup:r,dd:v,strike:r,area:{},dir:w,map:f({area:1,form:1,p:1},g,l,k),applet:u,dl:{dt:1,dd:1},del:r,isindex:{},fieldset:f({legend:1},q),thead:s,ul:w,acronym:r,b:r,a:p,blockquote:v,caption:r,i:r,u:r,tbody:s,s:r,address:f(j,o),tt:r,legend:r,q:r,pre:f(m,i),p:r,em:r,dfn:r,section:v,header:v,footer:v,nav:v,article:v,aside:v,figure:v,dialog:v,hgroup:v,mark:r,time:r,meter:r,menu:r,command:r,keygen:r,output:r,progress:u,audio:u,video:u,details:u,datagrid:u,datalist:u};})();var f=a.dtd;d.event=function(g){this.$=g;};d.event.prototype={getKey:function(){return this.$.keyCode||this.$.which;},getKeystroke:function(){var h=this;var g=h.getKey();if(h.$.ctrlKey||h.$.metaKey)g+=1114112;if(h.$.shiftKey)g+=2228224;if(h.$.altKey)g+=4456448;return g;},preventDefault:function(g){var h=this.$;if(h.preventDefault)h.preventDefault();else h.returnValue=false;if(g)this.stopPropagation();},stopPropagation:function(){var g=this.$;if(g.stopPropagation)g.stopPropagation();else g.cancelBubble=true; },getTarget:function(){var g=this.$.target||this.$.srcElement;return g?new d.node(g):null;},getPageOffset:function(){var j=this;var g=j.getTarget().getDocument().$,h=j.$.pageX||j.$.clientX+(g.documentElement.scrollLeft||g.body.scrollLeft),i=j.$.pageY||j.$.clientY+(g.documentElement.scrollTop||g.body.scrollTop);return{x:h,y:i};}};a.CTRL=1114112;a.SHIFT=2228224;a.ALT=4456448;d.domObject=function(g){if(g)this.$=g;};d.domObject.prototype=(function(){var g=function(h,i){return function(j){if(typeof a!='undefined')h.fire(i,new d.event(j));};};return{getPrivate:function(){var h;if(!(h=this.getCustomData('_')))this.setCustomData('_',h={});return h;},on:function(h){var k=this;var i=k.getCustomData('_cke_nativeListeners');if(!i){i={};k.setCustomData('_cke_nativeListeners',i);}if(!i[h]){var j=i[h]=g(k,h);if(k.$.addEventListener)k.$.addEventListener(h,j,!!a.event.useCapture);else if(k.$.attachEvent)k.$.attachEvent('on'+h,j);}return a.event.prototype.on.apply(k,arguments);},removeListener:function(h){var k=this;a.event.prototype.removeListener.apply(k,arguments);if(!k.hasListeners(h)){var i=k.getCustomData('_cke_nativeListeners'),j=i&&i[h];if(j){if(k.$.removeEventListener)k.$.removeEventListener(h,j,false);else if(k.$.detachEvent)k.$.detachEvent('on'+h,j);delete i[h];}}},removeAllListeners:function(){var k=this;var h=k.getCustomData('_cke_nativeListeners');for(var i in h){var j=h[i];if(k.$.detachEvent)k.$.detachEvent('on'+i,j);else if(k.$.removeEventListener)k.$.removeEventListener(i,j,false);delete h[i];}}};})();(function(g){var h={};a.on('reset',function(){h={};});g.equals=function(i){return i&&i.$===this.$;};g.setCustomData=function(i,j){var k=this.getUniqueId(),l=h[k]||(h[k]={});l[i]=j;return this;};g.getCustomData=function(i){var j=this.$['data-cke-expando'],k=j&&h[j];return k&&k[i];};g.removeCustomData=function(i){var j=this.$['data-cke-expando'],k=j&&h[j],l=k&&k[i];if(typeof l!='undefined')delete k[i];return l||null;};g.clearCustomData=function(){this.removeAllListeners();var i=this.$['data-cke-expando'];i&&delete h[i];};g.getUniqueId=function(){return this.$['data-cke-expando']||(this.$['data-cke-expando']=e.getNextNumber());};a.event.implementOn(g);})(d.domObject.prototype);d.window=function(g){d.domObject.call(this,g);};d.window.prototype=new d.domObject();e.extend(d.window.prototype,{focus:function(){if(b.webkit&&this.$.parent)this.$.parent.focus();this.$.focus();},getViewPaneSize:function(){var g=this.$.document,h=g.compatMode=='CSS1Compat';return{width:(h?g.documentElement.clientWidth:g.body.clientWidth)||0,height:(h?g.documentElement.clientHeight:g.body.clientHeight)||0}; },getScrollPosition:function(){var g=this.$;if('pageXOffset' in g)return{x:g.pageXOffset||0,y:g.pageYOffset||0};else{var h=g.document;return{x:h.documentElement.scrollLeft||h.body.scrollLeft||0,y:h.documentElement.scrollTop||h.body.scrollTop||0};}}});d.document=function(g){d.domObject.call(this,g);};var g=d.document;g.prototype=new d.domObject();e.extend(g.prototype,{appendStyleSheet:function(h){if(this.$.createStyleSheet)this.$.createStyleSheet(h);else{var i=new d.element('link');i.setAttributes({rel:'stylesheet',type:'text/css',href:h});this.getHead().append(i);}},appendStyleText:function(h){var k=this;if(k.$.createStyleSheet){var i=k.$.createStyleSheet('');i.cssText=h;}else{var j=new d.element('style',k);j.append(new d.text(h,k));k.getHead().append(j);}},createElement:function(h,i){var j=new d.element(h,this);if(i){if(i.attributes)j.setAttributes(i.attributes);if(i.styles)j.setStyles(i.styles);}return j;},createText:function(h){return new d.text(h,this);},focus:function(){this.getWindow().focus();},getById:function(h){var i=this.$.getElementById(h);return i?new d.element(i):null;},getByAddress:function(h,i){var j=this.$.documentElement;for(var k=0;j&&k<h.length;k++){var l=h[k];if(!i){j=j.childNodes[l];continue;}var m=-1;for(var n=0;n<j.childNodes.length;n++){var o=j.childNodes[n];if(i===true&&o.nodeType==3&&o.previousSibling&&o.previousSibling.nodeType==3)continue;m++;if(m==l){j=o;break;}}}return j?new d.node(j):null;},getElementsByTag:function(h,i){if(!(c&&!(document.documentMode>8))&&i)h=i+':'+h;return new d.nodeList(this.$.getElementsByTagName(h));},getHead:function(){var h=this.$.getElementsByTagName('head')[0];if(!h)h=this.getDocumentElement().append(new d.element('head'),true);else h=new d.element(h);return(this.getHead=function(){return h;})();},getBody:function(){var h=new d.element(this.$.body);return(this.getBody=function(){return h;})();},getDocumentElement:function(){var h=new d.element(this.$.documentElement);return(this.getDocumentElement=function(){return h;})();},getWindow:function(){var h=new d.window(this.$.parentWindow||this.$.defaultView);return(this.getWindow=function(){return h;})();},write:function(h){var i=this;i.$.open('text/html','replace');b.isCustomDomain()&&(i.$.domain=document.domain);i.$.write(h);i.$.close();}});d.node=function(h){if(h){var i=h.nodeType==9?'document':h.nodeType==1?'element':h.nodeType==3?'text':h.nodeType==8?'comment':'domObject';return new d[i](h);}return this;};d.node.prototype=new d.domObject();a.NODE_ELEMENT=1; a.NODE_DOCUMENT=9;a.NODE_TEXT=3;a.NODE_COMMENT=8;a.NODE_DOCUMENT_FRAGMENT=11;a.POSITION_IDENTICAL=0;a.POSITION_DISCONNECTED=1;a.POSITION_FOLLOWING=2;a.POSITION_PRECEDING=4;a.POSITION_IS_CONTAINED=8;a.POSITION_CONTAINS=16;e.extend(d.node.prototype,{appendTo:function(h,i){h.append(this,i);return h;},clone:function(h,i){var j=this.$.cloneNode(h),k=function(l){if(l.nodeType!=1)return;if(!i)l.removeAttribute('id',false);l['data-cke-expando']=undefined;if(h){var m=l.childNodes;for(var n=0;n<m.length;n++)k(m[n]);}};k(j);return new d.node(j);},hasPrevious:function(){return!!this.$.previousSibling;},hasNext:function(){return!!this.$.nextSibling;},insertAfter:function(h){h.$.parentNode.insertBefore(this.$,h.$.nextSibling);return h;},insertBefore:function(h){h.$.parentNode.insertBefore(this.$,h.$);return h;},insertBeforeMe:function(h){this.$.parentNode.insertBefore(h.$,this.$);return h;},getAddress:function(h){var i=[],j=this.getDocument().$.documentElement,k=this.$;while(k&&k!=j){var l=k.parentNode;if(l)i.unshift(this.getIndex.call({$:k},h));k=l;}return i;},getDocument:function(){return new g(this.$.ownerDocument||this.$.parentNode.ownerDocument);},getIndex:function(h){var i=this.$,j=0;while(i=i.previousSibling){if(h&&i.nodeType==3&&(!i.nodeValue.length||i.previousSibling&&i.previousSibling.nodeType==3))continue;j++;}return j;},getNextSourceNode:function(h,i,j){if(j&&!j.call){var k=j;j=function(n){return!n.equals(k);};}var l=!h&&this.getFirst&&this.getFirst(),m;if(!l){if(this.type==1&&j&&j(this,true)===false)return null;l=this.getNext();}while(!l&&(m=(m||this).getParent())){if(j&&j(m,true)===false)return null;l=m.getNext();}if(!l)return null;if(j&&j(l)===false)return null;if(i&&i!=l.type)return l.getNextSourceNode(false,i,j);return l;},getPreviousSourceNode:function(h,i,j){if(j&&!j.call){var k=j;j=function(n){return!n.equals(k);};}var l=!h&&this.getLast&&this.getLast(),m;if(!l){if(this.type==1&&j&&j(this,true)===false)return null;l=this.getPrevious();}while(!l&&(m=(m||this).getParent())){if(j&&j(m,true)===false)return null;l=m.getPrevious();}if(!l)return null;if(j&&j(l)===false)return null;if(i&&l.type!=i)return l.getPreviousSourceNode(false,i,j);return l;},getPrevious:function(h){var i=this.$,j;do{i=i.previousSibling;j=i&&i.nodeType!=10&&new d.node(i);}while(j&&h&&!h(j));return j;},getNext:function(h){var i=this.$,j;do{i=i.nextSibling;j=i&&new d.node(i);}while(j&&h&&!h(j));return j;},getParent:function(){var h=this.$.parentNode;return h&&h.nodeType==1?new d.node(h):null; },getParents:function(h){var i=this,j=[];do j[h?'push':'unshift'](i);while(i=i.getParent());return j;},getCommonAncestor:function(h){var j=this;if(h.equals(j))return j;if(h.contains&&h.contains(j))return h;var i=j.contains?j:j.getParent();do{if(i.contains(h))return i;}while(i=i.getParent());return null;},getPosition:function(h){var i=this.$,j=h.$;if(i.compareDocumentPosition)return i.compareDocumentPosition(j);if(i==j)return 0;if(this.type==1&&h.type==1){if(i.contains){if(i.contains(j))return 16+4;if(j.contains(i))return 8+2;}if('sourceIndex' in i)return i.sourceIndex<0||j.sourceIndex<0?1:i.sourceIndex<j.sourceIndex?4:2;}var k=this.getAddress(),l=h.getAddress(),m=Math.min(k.length,l.length);for(var n=0;n<=m-1;n++){if(k[n]!=l[n]){if(n<m)return k[n]<l[n]?4:2;break;}}return k.length<l.length?16+4:8+2;},getAscendant:function(h,i){var j=this.$,k;if(!i)j=j.parentNode;while(j){if(j.nodeName&&(k=j.nodeName.toLowerCase(),typeof h=='string'?k==h:k in h))return new d.node(j);j=j.parentNode;}return null;},hasAscendant:function(h,i){var j=this.$;if(!i)j=j.parentNode;while(j){if(j.nodeName&&j.nodeName.toLowerCase()==h)return true;j=j.parentNode;}return false;},move:function(h,i){h.append(this.remove(),i);},remove:function(h){var i=this.$,j=i.parentNode;if(j){if(h)for(var k;k=i.firstChild;)j.insertBefore(i.removeChild(k),i);j.removeChild(i);}return this;},replace:function(h){this.insertBefore(h);h.remove();},trim:function(){this.ltrim();this.rtrim();},ltrim:function(){var k=this;var h;while(k.getFirst&&(h=k.getFirst())){if(h.type==3){var i=e.ltrim(h.getText()),j=h.getLength();if(!i){h.remove();continue;}else if(i.length<j){h.split(j-i.length);k.$.removeChild(k.$.firstChild);}}break;}},rtrim:function(){var k=this;var h;while(k.getLast&&(h=k.getLast())){if(h.type==3){var i=e.rtrim(h.getText()),j=h.getLength();if(!i){h.remove();continue;}else if(i.length<j){h.split(i.length);k.$.lastChild.parentNode.removeChild(k.$.lastChild);}}break;}if(!c&&!b.opera){h=k.$.lastChild;if(h&&h.type==1&&h.nodeName.toLowerCase()=='br')h.parentNode.removeChild(h);}},isReadOnly:function(){var h=this;if(this.type!=1)h=this.getParent();if(h&&typeof h.$.isContentEditable!='undefined')return!(h.$.isContentEditable||h.data('cke-editable'));else{var i=h;while(i){if(i.is('body')||!!i.data('cke-editable'))break;if(i.getAttribute('contentEditable')=='false')return true;else if(i.getAttribute('contentEditable')=='true')break;i=i.getParent();}return false;}}});d.nodeList=function(h){this.$=h;};d.nodeList.prototype={count:function(){return this.$.length; },getItem:function(h){var i=this.$[h];return i?new d.node(i):null;}};d.element=function(h,i){if(typeof h=='string')h=(i?i.$:document).createElement(h);d.domObject.call(this,h);};var h=d.element;h.get=function(i){return i&&(i.$?i:new h(i));};h.prototype=new d.node();h.createFromHtml=function(i,j){var k=new h('div',j);k.setHtml(i);return k.getFirst().remove();};h.setMarker=function(i,j,k,l){var m=j.getCustomData('list_marker_id')||j.setCustomData('list_marker_id',e.getNextNumber()).getCustomData('list_marker_id'),n=j.getCustomData('list_marker_names')||j.setCustomData('list_marker_names',{}).getCustomData('list_marker_names');i[m]=j;n[k]=1;return j.setCustomData(k,l);};h.clearAllMarkers=function(i){for(var j in i)h.clearMarkers(i,i[j],1);};h.clearMarkers=function(i,j,k){var l=j.getCustomData('list_marker_names'),m=j.getCustomData('list_marker_id');for(var n in l)j.removeCustomData(n);j.removeCustomData('list_marker_names');if(k){j.removeCustomData('list_marker_id');delete i[m];}};(function(){e.extend(h.prototype,{type:1,addClass:function(l){var m=this.$.className;if(m){var n=new RegExp('(?:^|\\s)'+l+'(?:\\s|$)','');if(!n.test(m))m+=' '+l;}this.$.className=m||l;},removeClass:function(l){var m=this.getAttribute('class');if(m){var n=new RegExp('(?:^|\\s+)'+l+'(?=\\s|$)','i');if(n.test(m)){m=m.replace(n,'').replace(/^\s+/,'');if(m)this.setAttribute('class',m);else this.removeAttribute('class');}}},hasClass:function(l){var m=new RegExp('(?:^|\\s+)'+l+'(?=\\s|$)','');return m.test(this.getAttribute('class'));},append:function(l,m){var n=this;if(typeof l=='string')l=n.getDocument().createElement(l);if(m)n.$.insertBefore(l.$,n.$.firstChild);else n.$.appendChild(l.$);return l;},appendHtml:function(l){var n=this;if(!n.$.childNodes.length)n.setHtml(l);else{var m=new h('div',n.getDocument());m.setHtml(l);m.moveChildren(n);}},appendText:function(l){if(this.$.text!=undefined)this.$.text+=l;else this.append(new d.text(l));},appendBogus:function(){var n=this;var l=n.getLast();while(l&&l.type==3&&!e.rtrim(l.getText()))l=l.getPrevious();if(!l||!l.is||!l.is('br')){var m=b.opera?n.getDocument().createText(''):n.getDocument().createElement('br');b.gecko&&m.setAttribute('type','_moz');n.append(m);}},breakParent:function(l){var o=this;var m=new d.range(o.getDocument());m.setStartAfter(o);m.setEndAfter(l);var n=m.extractContents();m.insertNode(o.remove());n.insertAfterNode(o);},contains:c||b.webkit?function(l){var m=this.$;return l.type!=1?m.contains(l.getParent().$):m!=l.$&&m.contains(l.$); }:function(l){return!!(this.$.compareDocumentPosition(l.$)&16);},focus:(function(){function l(){try{this.$.focus();}catch(m){}};return function(m){if(m)e.setTimeout(l,100,this);else l.call(this);};})(),getHtml:function(){var l=this.$.innerHTML;return c?l.replace(/<\?[^>]*>/g,''):l;},getOuterHtml:function(){var m=this;if(m.$.outerHTML)return m.$.outerHTML.replace(/<\?[^>]*>/,'');var l=m.$.ownerDocument.createElement('div');l.appendChild(m.$.cloneNode(true));return l.innerHTML;},setHtml:function(l){return this.$.innerHTML=l;},setText:function(l){h.prototype.setText=this.$.innerText!=undefined?function(m){return this.$.innerText=m;}:function(m){return this.$.textContent=m;};return this.setText(l);},getAttribute:(function(){var l=function(m){return this.$.getAttribute(m,2);};if(c&&(b.ie7Compat||b.ie6Compat))return function(m){var q=this;switch(m){case 'class':m='className';break;case 'http-equiv':m='httpEquiv';break;case 'name':return q.$.name;case 'tabindex':var n=l.call(q,m);if(n!==0&&q.$.tabIndex===0)n=null;return n;break;case 'checked':var o=q.$.attributes.getNamedItem(m),p=o.specified?o.nodeValue:q.$.checked;return p?'checked':null;case 'hspace':case 'value':return q.$[m];case 'style':return q.$.style.cssText;case 'contenteditable':case 'contentEditable':return q.$.attributes.getNamedItem('contentEditable').specified?q.$.getAttribute('contentEditable'):null;}return l.call(q,m);};else return l;})(),getChildren:function(){return new d.nodeList(this.$.childNodes);},getComputedStyle:c?function(l){return this.$.currentStyle[e.cssStyleToDomStyle(l)];}:function(l){var m=this.getWindow().$.getComputedStyle(this.$,null);return m?m.getPropertyValue(l):'';},getDtd:function(){var l=f[this.getName()];this.getDtd=function(){return l;};return l;},getElementsByTag:g.prototype.getElementsByTag,getTabIndex:c?function(){var l=this.$.tabIndex;if(l===0&&!f.$tabIndex[this.getName()]&&parseInt(this.getAttribute('tabindex'),10)!==0)l=-1;return l;}:b.webkit?function(){var l=this.$.tabIndex;if(l==undefined){l=parseInt(this.getAttribute('tabindex'),10);if(isNaN(l))l=-1;}return l;}:function(){return this.$.tabIndex;},getText:function(){return this.$.textContent||this.$.innerText||'';},getWindow:function(){return this.getDocument().getWindow();},getId:function(){return this.$.id||null;},getNameAtt:function(){return this.$.name||null;},getName:function(){var l=this.$.nodeName.toLowerCase();if(c&&!(document.documentMode>8)){var m=this.$.scopeName;if(m!='HTML')l=m.toLowerCase()+':'+l;}return(this.getName=function(){return l; })();},getValue:function(){return this.$.value;},getFirst:function(l){var m=this.$.firstChild,n=m&&new d.node(m);if(n&&l&&!l(n))n=n.getNext(l);return n;},getLast:function(l){var m=this.$.lastChild,n=m&&new d.node(m);if(n&&l&&!l(n))n=n.getPrevious(l);return n;},getStyle:function(l){return this.$.style[e.cssStyleToDomStyle(l)];},is:function(){var l=this.getName();for(var m=0;m<arguments.length;m++){if(arguments[m]==l)return true;}return false;},isEditable:function(l){var o=this;var m=o.getName();if(o.isReadOnly()||o.getComputedStyle('display')=='none'||o.getComputedStyle('visibility')=='hidden'||o.is('a')&&o.data('cke-saved-name')&&!o.getChildCount()||f.$nonEditable[m]||f.$empty[m])return false;if(l!==false){var n=f[m]||f.span;return n&&n['#'];}return true;},isIdentical:function(l){if(this.getName()!=l.getName())return false;var m=this.$.attributes,n=l.$.attributes,o=m.length,p=n.length;for(var q=0;q<o;q++){var r=m[q];if(r.nodeName=='_moz_dirty')continue;if((!c||r.specified&&r.nodeName!='data-cke-expando')&&r.nodeValue!=l.getAttribute(r.nodeName))return false;}if(c)for(q=0;q<p;q++){r=n[q];if(r.specified&&r.nodeName!='data-cke-expando'&&r.nodeValue!=this.getAttribute(r.nodeName))return false;}return true;},isVisible:function(){var o=this;var l=(o.$.offsetHeight||o.$.offsetWidth)&&o.getComputedStyle('visibility')!='hidden',m,n;if(l&&(b.webkit||b.opera)){m=o.getWindow();if(!m.equals(a.document.getWindow())&&(n=m.$.frameElement))l=new h(n).isVisible();}return!!l;},isEmptyInlineRemoveable:function(){if(!f.$removeEmpty[this.getName()])return false;var l=this.getChildren();for(var m=0,n=l.count();m<n;m++){var o=l.getItem(m);if(o.type==1&&o.data('cke-bookmark'))continue;if(o.type==1&&!o.isEmptyInlineRemoveable()||o.type==3&&e.trim(o.getText()))return false;}return true;},hasAttributes:c&&(b.ie7Compat||b.ie6Compat)?function(){var l=this.$.attributes;for(var m=0;m<l.length;m++){var n=l[m];switch(n.nodeName){case 'class':if(this.getAttribute('class'))return true;case 'data-cke-expando':continue;default:if(n.specified)return true;}}return false;}:function(){var l=this.$.attributes,m=l.length,n={'data-cke-expando':1,_moz_dirty:1};return m>0&&(m>2||!n[l[0].nodeName]||m==2&&!n[l[1].nodeName]);},hasAttribute:(function(){function l(m){var n=this.$.attributes.getNamedItem(m);return!!(n&&n.specified);};return c&&b.version<8?function(m){if(m=='name')return!!this.$.name;return l.call(this,m);}:l;})(),hide:function(){this.setStyle('display','none');},moveChildren:function(l,m){var n=this.$; l=l.$;if(n==l)return;var o;if(m)while(o=n.lastChild)l.insertBefore(n.removeChild(o),l.firstChild);else while(o=n.firstChild)l.appendChild(n.removeChild(o));},mergeSiblings:(function(){function l(m,n,o){if(n&&n.type==1){var p=[];while(n.data('cke-bookmark')||n.isEmptyInlineRemoveable()){p.push(n);n=o?n.getNext():n.getPrevious();if(!n||n.type!=1)return;}if(m.isIdentical(n)){var q=o?m.getLast():m.getFirst();while(p.length)p.shift().move(m,!o);n.moveChildren(m,!o);n.remove();if(q&&q.type==1)q.mergeSiblings();}}};return function(m){var n=this;if(!(m===false||f.$removeEmpty[n.getName()]||n.is('a')))return;l(n,n.getNext(),true);l(n,n.getPrevious());};})(),show:function(){this.setStyles({display:'',visibility:''});},setAttribute:(function(){var l=function(m,n){this.$.setAttribute(m,n);return this;};if(c&&(b.ie7Compat||b.ie6Compat))return function(m,n){var o=this;if(m=='class')o.$.className=n;else if(m=='style')o.$.style.cssText=n;else if(m=='tabindex')o.$.tabIndex=n;else if(m=='checked')o.$.checked=n;else if(m=='contenteditable')l.call(o,'contentEditable',n);else l.apply(o,arguments);return o;};else if(b.ie8Compat&&b.secure)return function(m,n){if(m=='src'&&n.match(/^http:\/\//))try{l.apply(this,arguments);}catch(o){}else l.apply(this,arguments);return this;};else return l;})(),setAttributes:function(l){for(var m in l)this.setAttribute(m,l[m]);return this;},setValue:function(l){this.$.value=l;return this;},removeAttribute:(function(){var l=function(m){this.$.removeAttribute(m);};if(c&&(b.ie7Compat||b.ie6Compat))return function(m){if(m=='class')m='className';else if(m=='tabindex')m='tabIndex';else if(m=='contenteditable')m='contentEditable';l.call(this,m);};else return l;})(),removeAttributes:function(l){if(e.isArray(l))for(var m=0;m<l.length;m++)this.removeAttribute(l[m]);else for(var n in l)l.hasOwnProperty(n)&&this.removeAttribute(n);},removeStyle:function(l){var p=this;var m=p.$.style;if(!m.removeProperty&&(l=='border'||l=='margin'||l=='padding')){var n=j(l);for(var o=0;o<n.length;o++)p.removeStyle(n[o]);return;}m.removeProperty?m.removeProperty(l):m.removeAttribute(e.cssStyleToDomStyle(l));if(!p.$.style.cssText)p.removeAttribute('style');},setStyle:function(l,m){this.$.style[e.cssStyleToDomStyle(l)]=m;return this;},setStyles:function(l){for(var m in l)this.setStyle(m,l[m]);return this;},setOpacity:function(l){if(c&&b.version<9){l=Math.round(l*100);this.setStyle('filter',l>=100?'':'progid:DXImageTransform.Microsoft.Alpha(opacity='+l+')');}else this.setStyle('opacity',l); },unselectable:b.gecko?function(){this.$.style.MozUserSelect='none';this.on('dragstart',function(l){l.data.preventDefault();});}:b.webkit?function(){this.$.style.KhtmlUserSelect='none';this.on('dragstart',function(l){l.data.preventDefault();});}:function(){if(c||b.opera){var l=this.$,m=l.getElementsByTagName('*'),n,o=0;l.unselectable='on';while(n=m[o++])switch(n.tagName.toLowerCase()){case 'iframe':case 'textarea':case 'input':case 'select':break;default:n.unselectable='on';}}},getPositionedAncestor:function(){var l=this;while(l.getName()!='html'){if(l.getComputedStyle('position')!='static')return l;l=l.getParent();}return null;},getDocumentPosition:function(l){var G=this;var m=0,n=0,o=G.getDocument(),p=o.getBody(),q=o.$.compatMode=='BackCompat';if(document.documentElement.getBoundingClientRect){var r=G.$.getBoundingClientRect(),s=o.$,t=s.documentElement,u=t.clientTop||p.$.clientTop||0,v=t.clientLeft||p.$.clientLeft||0,w=true;if(c){var x=o.getDocumentElement().contains(G),y=o.getBody().contains(G);w=q&&y||!q&&x;}if(w){m=r.left+(!q&&t.scrollLeft||p.$.scrollLeft);m-=v;n=r.top+(!q&&t.scrollTop||p.$.scrollTop);n-=u;}}else{var z=G,A=null,B;while(z&&!(z.getName()=='body'||z.getName()=='html')){m+=z.$.offsetLeft-z.$.scrollLeft;n+=z.$.offsetTop-z.$.scrollTop;if(!z.equals(G)){m+=z.$.clientLeft||0;n+=z.$.clientTop||0;}var C=A;while(C&&!C.equals(z)){m-=C.$.scrollLeft;n-=C.$.scrollTop;C=C.getParent();}A=z;z=(B=z.$.offsetParent)?new h(B):null;}}if(l){var D=G.getWindow(),E=l.getWindow();if(!D.equals(E)&&D.$.frameElement){var F=new h(D.$.frameElement).getDocumentPosition(l);m+=F.x;n+=F.y;}}if(!document.documentElement.getBoundingClientRect)if(b.gecko&&!q){m+=G.$.clientLeft?1:0;n+=G.$.clientTop?1:0;}return{x:m,y:n};},scrollIntoView:function(l){var m=this.getParent();if(!m)return;do{var n=m.$.clientWidth&&m.$.clientWidth<m.$.scrollWidth||m.$.clientHeight&&m.$.clientHeight<m.$.scrollHeight;if(n)this.scrollIntoParent(m,l,1);if(m.is('html')){var o=m.getWindow();try{var p=o.$.frameElement;p&&(m=new h(p));}catch(q){}}}while(m=m.getParent());},scrollIntoParent:function(l,m,n){!l&&(l=this.getWindow());var o=l.getDocument(),p=o.$.compatMode=='BackCompat';if(l instanceof d.window)l=p?o.getBody():o.getDocumentElement();function q(C,D){if(/body|html/.test(l.getName()))l.getWindow().$.scrollBy(C,D);else{l.$.scrollLeft+=C;l.$.scrollTop+=D;}};function r(C,D){var E={x:0,y:0};if(!C.is(p?'body':'html')){var F=C.$.getBoundingClientRect();E.x=F.left,E.y=F.top;}var G=C.getWindow();if(!G.equals(D)){var H=r(h.get(G.$.frameElement),D); E.x+=H.x,E.y+=H.y;}return E;};function s(C,D){return parseInt(C.getComputedStyle('margin-'+D)||0,10)||0;};var t=l.getWindow(),u=r(this,t),v=r(l,t),w=this.$.offsetHeight,x=this.$.offsetWidth,y=l.$.clientHeight,z=l.$.clientWidth,A,B;A={x:u.x-s(this,'left')-v.x||0,y:u.y-s(this,'top')-v.y||0};B={x:u.x+x+s(this,'right')-(v.x+z)||0,y:u.y+w+s(this,'bottom')-(v.y+y)||0};if(A.y<0||B.y>0)q(0,m===true?A.y:m===false?B.y:A.y<0?A.y:B.y);if(n&&(A.x<0||B.x>0))q(A.x<0?A.x:B.x,0);},setState:function(l){var m=this;switch(l){case 1:m.addClass('cke_on');m.removeClass('cke_off');m.removeClass('cke_disabled');break;case 0:m.addClass('cke_disabled');m.removeClass('cke_off');m.removeClass('cke_on');break;default:m.addClass('cke_off');m.removeClass('cke_on');m.removeClass('cke_disabled');break;}},getFrameDocument:function(){var l=this.$;try{l.contentWindow.document;}catch(m){l.src=l.src;if(c&&b.version<7)window.showModalDialog('javascript:document.write("<script>window.setTimeout(function(){window.close();},50);</script>")');}return l&&new g(l.contentWindow.document);},copyAttributes:function(l,m){var s=this;var n=s.$.attributes;m=m||{};for(var o=0;o<n.length;o++){var p=n[o],q=p.nodeName.toLowerCase(),r;if(q in m)continue;if(q=='checked'&&(r=s.getAttribute(q)))l.setAttribute(q,r);else if(p.specified||c&&p.nodeValue&&q=='value'){r=s.getAttribute(q);if(r===null)r=p.nodeValue;l.setAttribute(q,r);}}if(s.$.style.cssText!=='')l.$.style.cssText=s.$.style.cssText;},renameNode:function(l){var o=this;if(o.getName()==l)return;var m=o.getDocument(),n=new h(l,m);o.copyAttributes(n);o.moveChildren(n);o.getParent()&&o.$.parentNode.replaceChild(n.$,o.$);n.$['data-cke-expando']=o.$['data-cke-expando'];o.$=n.$;},getChild:function(l){var m=this.$;if(!l.slice)m=m.childNodes[l];else while(l.length>0&&m)m=m.childNodes[l.shift()];return m?new d.node(m):null;},getChildCount:function(){return this.$.childNodes.length;},disableContextMenu:function(){this.on('contextmenu',function(l){if(!l.data.getTarget().hasClass('cke_enable_context_menu'))l.data.preventDefault();});},getDirection:function(l){var m=this;return l?m.getComputedStyle('direction')||m.getDirection()||m.getDocument().$.dir||m.getDocument().getBody().getDirection(1):m.getStyle('direction')||m.getAttribute('dir');},data:function(l,m){l='data-'+l;if(m===undefined)return this.getAttribute(l);else if(m===false)this.removeAttribute(l);else this.setAttribute(l,m);return null;}});var i={width:['border-left-width','border-right-width','padding-left','padding-right'],height:['border-top-width','border-bottom-width','padding-top','padding-bottom']}; function j(l){var m=['top','left','right','bottom'],n;if(l=='border')n=['color','style','width'];var o=[];for(var p=0;p<m.length;p++){if(n)for(var q=0;q<n.length;q++)o.push([l,m[p],n[q]].join('-'));else o.push([l,m[p]].join('-'));}return o;};function k(l){var m=0;for(var n=0,o=i[l].length;n<o;n++)m+=parseInt(this.getComputedStyle(i[l][n])||0,10)||0;return m;};h.prototype.setSize=function(l,m,n){if(typeof m=='number'){if(n&&!(c&&b.quirks))m-=k.call(this,l);this.setStyle(l,m+'px');}};h.prototype.getSize=function(l,m){var n=Math.max(this.$['offset'+e.capitalize(l)],this.$['client'+e.capitalize(l)])||0;if(m)n-=k.call(this,l);return n;};})();a.command=function(i,j){this.uiItems=[];this.exec=function(k){var l=this;if(l.state==0)return false;if(l.editorFocus)i.focus();if(l.fire('exec')===true)return true;return j.exec.call(l,i,k)!==false;};this.refresh=function(){if(this.fire('refresh')===true)return true;return j.refresh&&j.refresh.apply(this,arguments)!==false;};e.extend(this,j,{modes:{wysiwyg:1},editorFocus:1,state:2});a.event.call(this);};a.command.prototype={enable:function(){var i=this;if(i.state==0)i.setState(!i.preserveState||typeof i.previousState=='undefined'?2:i.previousState);},disable:function(){this.setState(0);},setState:function(i){var j=this;if(j.state==i)return false;j.previousState=j.state;j.state=i;j.fire('state');return true;},toggleState:function(){var i=this;if(i.state==2)i.setState(1);else if(i.state==1)i.setState(2);}};a.event.implementOn(a.command.prototype,true);a.ENTER_P=1;a.ENTER_BR=2;a.ENTER_DIV=3;a.config={customConfig:'config.js',autoUpdateElement:true,baseHref:'',contentsCss:a.basePath+'contents.css',contentsLangDirection:'ui',contentsLanguage:'',language:'',defaultLanguage:'en',enterMode:1,forceEnterMode:false,shiftEnterMode:2,corePlugins:'',docType:'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',bodyId:'',bodyClass:'',fullPage:false,height:200,plugins:'about,a11yhelp,basicstyles,bidi,blockquote,button,clipboard,colorbutton,colordialog,contextmenu,dialogadvtab,div,elementspath,enterkey,entities,filebrowser,find,flash,font,format,forms,horizontalrule,htmldataprocessor,iframe,image,indent,justify,keystrokes,link,list,liststyle,maximize,newpage,pagebreak,pastefromword,pastetext,popup,preview,print,removeformat,resize,save,scayt,showblocks,showborders,smiley,sourcearea,specialchar,stylescombo,tab,table,tabletools,templates,toolbar,undo,wsc,wysiwygarea',extraPlugins:'',removePlugins:'',protectedSource:[],tabIndex:0,theme:'default',skin:'kama',width:'',baseFloatZIndex:10000}; var i=a.config;a.focusManager=function(j){if(j.focusManager)return j.focusManager;this.hasFocus=false;this._={editor:j};return this;};a.focusManager.prototype={focus:function(){var k=this;if(k._.timer)clearTimeout(k._.timer);if(!k.hasFocus){if(a.currentInstance)a.currentInstance.focusManager.forceBlur();var j=k._.editor;j.container.getChild(1).addClass('cke_focus');k.hasFocus=true;j.fire('focus');}},blur:function(){var j=this;if(j._.timer)clearTimeout(j._.timer);j._.timer=setTimeout(function(){delete j._.timer;j.forceBlur();},100);},forceBlur:function(){if(this.hasFocus){var j=this._.editor;j.container.getChild(1).removeClass('cke_focus');this.hasFocus=false;j.fire('blur');}}};(function(){var j={};a.lang={languages:{af:1,ar:1,bg:1,bn:1,bs:1,ca:1,cs:1,cy:1,da:1,de:1,el:1,'en-au':1,'en-ca':1,'en-gb':1,en:1,eo:1,es:1,et:1,eu:1,fa:1,fi:1,fo:1,'fr-ca':1,fr:1,gl:1,gu:1,he:1,hi:1,hr:1,hu:1,is:1,it:1,ja:1,ka:1,km:1,ko:1,ku:1,lt:1,lv:1,mn:1,ms:1,nb:1,nl:1,no:1,pl:1,'pt-br':1,pt:1,ro:1,ru:1,sk:1,sl:1,'sr-latn':1,sr:1,sv:1,th:1,tr:1,ug:1,uk:1,vi:1,'zh-cn':1,zh:1},load:function(k,l,m){if(!k||!a.lang.languages[k])k=this.detect(l,k);if(!this[k])a.scriptLoader.load(a.getUrl('lang/'+k+'.js'),function(){m(k,this[k]);},this);else m(k,this[k]);},detect:function(k,l){var m=this.languages;l=l||navigator.userLanguage||navigator.language||k;var n=l.toLowerCase().match(/([a-z]+)(?:-([a-z]+))?/),o=n[1],p=n[2];if(m[o+'-'+p])o=o+'-'+p;else if(!m[o])o=null;a.lang.detect=o?function(){return o;}:function(q){return q;};return o||k;}};})();a.scriptLoader=(function(){var j={},k={};return{load:function(l,m,n,o){var p=typeof l=='string';if(p)l=[l];if(!n)n=a;var q=l.length,r=[],s=[],t=function(y){if(m)if(p)m.call(n,y);else m.call(n,r,s);};if(q===0){t(true);return;}var u=function(y,z){(z?r:s).push(y);if(--q<=0){o&&a.document.getDocumentElement().removeStyle('cursor');t(z);}},v=function(y,z){j[y]=1;var A=k[y];delete k[y];for(var B=0;B<A.length;B++)A[B](y,z);},w=function(y){if(j[y]){u(y,true);return;}var z=k[y]||(k[y]=[]);z.push(u);if(z.length>1)return;var A=new h('script');A.setAttributes({type:'text/javascript',src:y});if(m)if(c)A.$.onreadystatechange=function(){if(A.$.readyState=='loaded'||A.$.readyState=='complete'){A.$.onreadystatechange=null;v(y,true);}};else{A.$.onload=function(){setTimeout(function(){v(y,true);},0);};A.$.onerror=function(){v(y,false);};}A.appendTo(a.document.getHead());};o&&a.document.getDocumentElement().setStyle('cursor','wait');for(var x=0;x<q;x++)w(l[x]);}};})();a.resourceManager=function(j,k){var l=this; l.basePath=j;l.fileName=k;l.registered={};l.loaded={};l.externals={};l._={waitingList:{}};};a.resourceManager.prototype={add:function(j,k){if(this.registered[j])throw '[CKEDITOR.resourceManager.add] The resource name "'+j+'" is already registered.';a.fire(j+e.capitalize(this.fileName)+'Ready',this.registered[j]=k||{});},get:function(j){return this.registered[j]||null;},getPath:function(j){var k=this.externals[j];return a.getUrl(k&&k.dir||this.basePath+j+'/');},getFilePath:function(j){var k=this.externals[j];return a.getUrl(this.getPath(j)+(k&&typeof k.file=='string'?k.file:this.fileName+'.js'));},addExternal:function(j,k,l){j=j.split(',');for(var m=0;m<j.length;m++){var n=j[m];this.externals[n]={dir:k,file:l};}},load:function(j,k,l){if(!e.isArray(j))j=j?[j]:[];var m=this.loaded,n=this.registered,o=[],p={},q={};for(var r=0;r<j.length;r++){var s=j[r];if(!s)continue;if(!m[s]&&!n[s]){var t=this.getFilePath(s);o.push(t);if(!(t in p))p[t]=[];p[t].push(s);}else q[s]=this.get(s);}a.scriptLoader.load(o,function(u,v){if(v.length)throw '[CKEDITOR.resourceManager.load] Resource name "'+p[v[0]].join(',')+'" was not found at "'+v[0]+'".';for(var w=0;w<u.length;w++){var x=p[u[w]];for(var y=0;y<x.length;y++){var z=x[y];q[z]=this.get(z);m[z]=1;}}k.call(l,q);},this);}};a.plugins=new a.resourceManager('plugins/','plugin');var j=a.plugins;j.load=e.override(j.load,function(k){return function(l,m,n){var o={},p=function(q){k.call(this,q,function(r){e.extend(o,r);var s=[];for(var t in r){var u=r[t],v=u&&u.requires;if(v)for(var w=0;w<v.length;w++){if(!o[v[w]])s.push(v[w]);}}if(s.length)p.call(this,s);else{for(t in o){u=o[t];if(u.onLoad&&!u.onLoad._called){u.onLoad();u.onLoad._called=1;}}if(m)m.call(n||window,o);}},this);};p.call(this,l);};});j.setLang=function(k,l,m){var n=this.get(k),o=n.langEntries||(n.langEntries={}),p=n.lang||(n.lang=[]);if(e.indexOf(p,l)==-1)p.push(l);o[l]=m;};a.skins=(function(){var k={},l={},m=function(n,o,p,q){var r=k[o];if(!n.skin){n.skin=r;if(r.init)r.init(n);}var s=function(B){for(var C=0;C<B.length;C++)B[C]=a.getUrl(l[o]+B[C]);};function t(B,C){return B.replace(/url\s*\(([\s'"]*)(.*?)([\s"']*)\)/g,function(D,E,F,G){if(/^\/|^\w?:/.test(F))return D;else return 'url('+C+E+F+G+')';});};p=r[p];var u=!p||!!p._isLoaded;if(u)q&&q();else{var v=p._pending||(p._pending=[]);v.push(q);if(v.length>1)return;var w=!p.css||!p.css.length,x=!p.js||!p.js.length,y=function(){if(w&&x){p._isLoaded=1;for(var B=0;B<v.length;B++){if(v[B])v[B]();}}};if(!w){var z=p.css;if(e.isArray(z)){s(z); for(var A=0;A<z.length;A++)a.document.appendStyleSheet(z[A]);}else{z=t(z,a.getUrl(l[o]));a.document.appendStyleText(z);}p.css=z;w=1;}if(!x){s(p.js);a.scriptLoader.load(p.js,function(){x=1;y();});}y();}};return{add:function(n,o){k[n]=o;o.skinPath=l[n]||(l[n]=a.getUrl('skins/'+n+'/'));},load:function(n,o,p){var q=n.skinName,r=n.skinPath;if(k[q])m(n,q,o,p);else{l[q]=r;a.scriptLoader.load(a.getUrl(r+'skin.js'),function(){m(n,q,o,p);});}}};})();a.themes=new a.resourceManager('themes/','theme');a.ui=function(k){if(k.ui)return k.ui;this._={handlers:{},items:{},editor:k};return this;};var k=a.ui;k.prototype={add:function(l,m,n){this._.items[l]={type:m,command:n.command||null,args:Array.prototype.slice.call(arguments,2)};},create:function(l){var q=this;var m=q._.items[l],n=m&&q._.handlers[m.type],o=m&&m.command&&q._.editor.getCommand(m.command),p=n&&n.create.apply(q,m.args);m&&(p=e.extend(p,q._.editor.skin[m.type],true));if(o)o.uiItems.push(p);return p;},addHandler:function(l,m){this._.handlers[l]=m;}};a.event.implementOn(k);(function(){var l=0,m=function(){var x='editor'+ ++l;return a.instances&&a.instances[x]?m():x;},n={},o=function(x){var y=x.config.customConfig;if(!y)return false;y=a.getUrl(y);var z=n[y]||(n[y]={});if(z.fn){z.fn.call(x,x.config);if(a.getUrl(x.config.customConfig)==y||!o(x))x.fireOnce('customConfigLoaded');}else a.scriptLoader.load(y,function(){if(a.editorConfig)z.fn=a.editorConfig;else z.fn=function(){};o(x);});return true;},p=function(x,y){x.on('customConfigLoaded',function(){if(y){if(y.on)for(var z in y.on)x.on(z,y.on[z]);e.extend(x.config,y,true);delete x.config.on;}q(x);});if(y&&y.customConfig!=undefined)x.config.customConfig=y.customConfig;if(!o(x))x.fireOnce('customConfigLoaded');},q=function(x){var y=x.config.skin.split(','),z=y[0],A=a.getUrl(y[1]||'skins/'+z+'/');x.skinName=z;x.skinPath=A;x.skinClass='cke_skin_'+z;x.tabIndex=x.config.tabIndex||x.element.getAttribute('tabindex')||0;x.readOnly=!!(x.config.readOnly||x.element.getAttribute('disabled'));x.fireOnce('configLoaded');t(x);},r=function(x){a.lang.load(x.config.language,x.config.defaultLanguage,function(y,z){x.langCode=y;x.lang=e.prototypedCopy(z);if(b.gecko&&b.version<10900&&x.lang.dir=='rtl')x.lang.dir='ltr';x.fire('langLoaded');var A=x.config;A.contentsLangDirection=='ui'&&(A.contentsLangDirection=x.lang.dir);s(x);});},s=function(x){var y=x.config,z=y.plugins,A=y.extraPlugins,B=y.removePlugins;if(A){var C=new RegExp('(?:^|,)(?:'+A.replace(/\s*,\s*/g,'|')+')(?=,|$)','g');z=z.replace(C,''); z+=','+A;}if(B){C=new RegExp('(?:^|,)(?:'+B.replace(/\s*,\s*/g,'|')+')(?=,|$)','g');z=z.replace(C,'');}b.air&&(z+=',adobeair');j.load(z.split(','),function(D){var E=[],F=[],G=[];x.plugins=D;for(var H in D){var I=D[H],J=I.lang,K=j.getPath(H),L=null;I.path=K;if(J){L=e.indexOf(J,x.langCode)>=0?x.langCode:J[0];if(!I.langEntries||!I.langEntries[L])G.push(a.getUrl(K+'lang/'+L+'.js'));else{e.extend(x.lang,I.langEntries[L]);L=null;}}F.push(L);E.push(I);}a.scriptLoader.load(G,function(){var M=['beforeInit','init','afterInit'];for(var N=0;N<M.length;N++)for(var O=0;O<E.length;O++){var P=E[O];if(N===0&&F[O]&&P.lang)e.extend(x.lang,P.langEntries[F[O]]);if(P[M[N]])P[M[N]](x);}x.fire('pluginsLoaded');u(x);});});},t=function(x){a.skins.load(x,'editor',function(){r(x);});},u=function(x){var y=x.config.theme;a.themes.load(y,function(){var z=x.theme=a.themes.get(y);z.path=a.themes.getPath(y);z.build(x);if(x.config.autoUpdateElement)v(x);});},v=function(x){var y=x.element;if(x.elementMode==1&&y.is('textarea')){var z=y.$.form&&new h(y.$.form);if(z){function A(){x.updateElement();};z.on('submit',A);if(!z.$.submit.nodeName&&!z.$.submit.length)z.$.submit=e.override(z.$.submit,function(B){return function(){x.updateElement();if(B.apply)B.apply(this,arguments);else B();};});x.on('destroy',function(){z.removeListener('submit',A);});}}};function w(){var x,y=this._.commands,z=this.mode;if(!z)return;for(var A in y){x=y[A];x[x.startDisabled?'disable':this.readOnly&&!x.readOnly?'disable':x.modes[z]?'enable':'disable']();}};a.editor.prototype._init=function(){var z=this;var x=h.get(z._.element),y=z._.instanceConfig;delete z._.element;delete z._.instanceConfig;z._.commands={};z._.styles=[];z.element=x;z.name=x&&z.elementMode==1&&(x.getId()||x.getNameAtt())||m();if(z.name in a.instances)throw '[CKEDITOR.editor] The instance "'+z.name+'" already exists.';z.id=e.getNextId();z.config=e.prototypedCopy(i);z.ui=new k(z);z.focusManager=new a.focusManager(z);a.fire('instanceCreated',null,z);z.on('mode',w,null,null,1);z.on('readOnly',w,null,null,1);p(z,y);};})();e.extend(a.editor.prototype,{addCommand:function(l,m){return this._.commands[l]=new a.command(this,m);},addCss:function(l){this._.styles.push(l);},destroy:function(l){var m=this;if(!l)m.updateElement();m.fire('destroy');m.theme&&m.theme.destroy(m);a.remove(m);a.fire('instanceDestroyed',null,m);},execCommand:function(l,m){var n=this.getCommand(l),o={name:l,commandData:m,command:n};if(n&&n.state!=0)if(this.fire('beforeCommandExec',o)!==true){o.returnValue=n.exec(o.commandData); if(!n.async&&this.fire('afterCommandExec',o)!==true)return o.returnValue;}return false;},getCommand:function(l){return this._.commands[l];},getData:function(){var n=this;n.fire('beforeGetData');var l=n._.data;if(typeof l!='string'){var m=n.element;if(m&&n.elementMode==1)l=m.is('textarea')?m.getValue():m.getHtml();else l='';}l={dataValue:l};n.fire('getData',l);return l.dataValue;},getSnapshot:function(){var l=this.fire('getSnapshot');if(typeof l!='string'){var m=this.element;if(m&&this.elementMode==1)l=m.is('textarea')?m.getValue():m.getHtml();}return l;},loadSnapshot:function(l){this.fire('loadSnapshot',l);},setData:function(l,m,n){if(m)this.on('dataReady',function(p){p.removeListener();m.call(p.editor);});var o={dataValue:l};!n&&this.fire('setData',o);this._.data=o.dataValue;!n&&this.fire('afterSetData',o);},setReadOnly:function(l){l=l==undefined||l;if(this.readOnly!=l){this.readOnly=l;this.fire('readOnly');}},insertHtml:function(l){this.fire('insertHtml',l);},insertText:function(l){this.fire('insertText',l);},insertElement:function(l){this.fire('insertElement',l);},checkDirty:function(){return this.mayBeDirty&&this._.previousValue!==this.getSnapshot();},resetDirty:function(){if(this.mayBeDirty)this._.previousValue=this.getSnapshot();},updateElement:function(){var n=this;var l=n.element;if(l&&n.elementMode==1){var m=n.getData();if(n.config.htmlEncodeOutput)m=e.htmlEncode(m);if(l.is('textarea'))l.setValue(m);else l.setHtml(m);}}});a.on('loaded',function(){var l=a.editor._pending;if(l){delete a.editor._pending;for(var m=0;m<l.length;m++)l[m]._init();}});a.htmlParser=function(){this._={htmlPartsRegex:new RegExp("<(?:(?:\\/([^>]+)>)|(?:!--([\\S|\\s]*?)-->)|(?:([^\\s>]+)\\s*((?:(?:\"[^\"]*\")|(?:'[^']*')|[^\"'>])*)\\/?>))",'g')};};(function(){var l=/([\w\-:.]+)(?:(?:\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+)))|(?=\s|$))/g,m={checked:1,compact:1,declare:1,defer:1,disabled:1,ismap:1,multiple:1,nohref:1,noresize:1,noshade:1,nowrap:1,readonly:1,selected:1};a.htmlParser.prototype={onTagOpen:function(){},onTagClose:function(){},onText:function(){},onCDATA:function(){},onComment:function(){},parse:function(n){var A=this;var o,p,q=0,r;while(o=A._.htmlPartsRegex.exec(n)){var s=o.index;if(s>q){var t=n.substring(q,s);if(r)r.push(t);else A.onText(t);}q=A._.htmlPartsRegex.lastIndex;if(p=o[1]){p=p.toLowerCase();if(r&&f.$cdata[p]){A.onCDATA(r.join(''));r=null;}if(!r){A.onTagClose(p);continue;}}if(r){r.push(o[0]);continue;}if(p=o[3]){p=p.toLowerCase();if(/="/.test(p))continue; var u={},v,w=o[4],x=!!(w&&w.charAt(w.length-1)=='/');if(w)while(v=l.exec(w)){var y=v[1].toLowerCase(),z=v[2]||v[3]||v[4]||'';if(!z&&m[y])u[y]=y;else u[y]=z;}A.onTagOpen(p,u,x);if(!r&&f.$cdata[p])r=[];continue;}if(p=o[2])A.onComment(p);}if(n.length>q)A.onText(n.substring(q,n.length));}};})();a.htmlParser.comment=function(l){this.value=l;this._={isBlockLike:false};};a.htmlParser.comment.prototype={type:8,writeHtml:function(l,m){var n=this.value;if(m){if(!(n=m.onComment(n,this)))return;if(typeof n!='string'){n.parent=this.parent;n.writeHtml(l,m);return;}}l.comment(n);}};(function(){a.htmlParser.text=function(l){this.value=l;this._={isBlockLike:false};};a.htmlParser.text.prototype={type:3,writeHtml:function(l,m){var n=this.value;if(m&&!(n=m.onText(n,this)))return;l.text(n);}};})();(function(){a.htmlParser.cdata=function(l){this.value=l;};a.htmlParser.cdata.prototype={type:3,writeHtml:function(l){l.write(this.value);}};})();a.htmlParser.fragment=function(){this.children=[];this.parent=null;this._={isBlockLike:true,hasInlineStarted:false};};(function(){var l=e.extend({table:1,ul:1,ol:1,dl:1},f.table,f.ul,f.ol,f.dl),m=c&&b.version<8?{dd:1,dt:1}:{},n={ol:1,ul:1},o=e.extend({},{html:1},f.html,f.body,f.head,{style:1,script:1});function p(q){return q.name=='a'&&q.attributes.href||f.$removeEmpty[q.name];};a.htmlParser.fragment.fromHtml=function(q,r,s){var t=new a.htmlParser(),u=s||new a.htmlParser.fragment(),v=[],w=[],x=u,y=false,z=false;function A(D){var E;if(v.length>0)for(var F=0;F<v.length;F++){var G=v[F],H=G.name,I=f[H],J=x.name&&f[x.name];if((!J||J[H])&&(!D||!I||I[D]||!f[D])){if(!E){B();E=1;}G=G.clone();G.parent=x;x=G;v.splice(F,1);F--;}else if(H==x.name)C(x,x.parent,1),F--;}};function B(){while(w.length)x.add(w.shift());};function C(D,E,F){if(D.previous!==undefined)return;E=E||x||u;var G=x;if(r&&(!E.type||E.name=='body')){var H,I;if(D.attributes&&(I=D.attributes['data-cke-real-element-type']))H=I;else H=D.name;if(H&&!(H in f.$body||H=='body'||D.isOrphan)){x=E;t.onTagOpen(r,{});D.returnPoint=E=x;}}if(D._.isBlockLike&&D.name!='pre'&&D.name!='textarea'){var J=D.children.length,K=D.children[J-1],L;if(K&&K.type==3)if(!(L=e.rtrim(K.value)))D.children.length=J-1;else K.value=L;}E.add(D);if(D.name=='pre')z=false;if(D.name=='textarea')y=false;if(D.returnPoint){x=D.returnPoint;delete D.returnPoint;}else x=F?E:G;};t.onTagOpen=function(D,E,F,G){var H=new a.htmlParser.element(D,E);if(H.isUnknown&&F)H.isEmpty=true;H.isOptionalClose=D in m||G;if(p(H)){v.push(H);return;}else if(D=='pre')z=true; else if(D=='br'&&z){x.add(new a.htmlParser.text('\n'));return;}else if(D=='textarea')y=true;if(D=='br'){w.push(H);return;}while(1){var I=x.name,J=I?f[I]||(x._.isBlockLike?f.div:f.span):o;if(!H.isUnknown&&!x.isUnknown&&!J[D]){if(x.isOptionalClose)t.onTagClose(I);else if(D in n&&I in n){var K=x.children,L=K[K.length-1];if(!(L&&L.name=='li'))C(L=new a.htmlParser.element('li'),x);!H.returnPoint&&(H.returnPoint=x);x=L;}else if(D in f.$listItem&&I!=D)t.onTagOpen(D=='li'?'ul':'dl',{},0,1);else if(I in l&&I!=D){!H.returnPoint&&(H.returnPoint=x);x=x.parent;}else{if(I in f.$inline)v.unshift(x);if(x.parent)C(x,x.parent,1);else{H.isOrphan=1;break;}}}else break;}A(D);B();H.parent=x;if(H.isEmpty)C(H);else x=H;};t.onTagClose=function(D){for(var E=v.length-1;E>=0;E--){if(D==v[E].name){v.splice(E,1);return;}}var F=[],G=[],H=x;while(H!=u&&H.name!=D){if(!H._.isBlockLike)G.unshift(H);F.push(H);H=H.returnPoint||H.parent;}if(H!=u){for(E=0;E<F.length;E++){var I=F[E];C(I,I.parent);}x=H;if(H._.isBlockLike)B();C(H,H.parent);if(H==x)x=x.parent;v=v.concat(G);}if(D=='body')r=false;};t.onText=function(D){if((!x._.hasInlineStarted||w.length)&&!z&&!y){D=e.ltrim(D);if(D.length===0)return;}var E=x.name,F=E?f[E]||(x._.isBlockLike?f.div:f.span):o;if(!y&&!F['#']&&E in l){t.onTagOpen(E in n?'li':E=='dl'?'dd':E=='table'?'tr':E=='tr'?'td':'');t.onText(D);return;}B();A();if(r&&(!x.type||x.name=='body')&&e.trim(D))this.onTagOpen(r,{},0,1);if(!z&&!y)D=D.replace(/[\t\r\n ]{2,}|[\t\r\n]/g,' ');x.add(new a.htmlParser.text(D));};t.onCDATA=function(D){x.add(new a.htmlParser.cdata(D));};t.onComment=function(D){B();A();x.add(new a.htmlParser.comment(D));};t.parse(q);B(!c&&1);while(x!=u)C(x,x.parent,1);return u;};a.htmlParser.fragment.prototype={add:function(q,r){var t=this;isNaN(r)&&(r=t.children.length);var s=r>0?t.children[r-1]:null;if(s){if(q._.isBlockLike&&s.type==3){s.value=e.rtrim(s.value);if(s.value.length===0){t.children.pop();t.add(q);return;}}s.next=q;}q.previous=s;q.parent=t;t.children.splice(r,0,q);t._.hasInlineStarted=q.type==3||q.type==1&&!q._.isBlockLike;},writeHtml:function(q,r){var s;this.filterChildren=function(){var t=new a.htmlParser.basicWriter();this.writeChildrenHtml.call(this,t,r,true);var u=t.getHtml();this.children=new a.htmlParser.fragment.fromHtml(u).children;s=1;};!this.name&&r&&r.onFragment(this);this.writeChildrenHtml(q,s?null:r);},writeChildrenHtml:function(q,r){for(var s=0;s<this.children.length;s++)this.children[s].writeHtml(q,r);}};})();a.htmlParser.element=function(l,m){var q=this; q.name=l;q.attributes=m||{};q.children=[];var n=l||'',o=n.match(/^cke:(.*)/);o&&(n=o[1]);var p=!!(f.$nonBodyContent[n]||f.$block[n]||f.$listItem[n]||f.$tableContent[n]||f.$nonEditable[n]||n=='br');q.isEmpty=!!f.$empty[l];q.isUnknown=!f[l];q._={isBlockLike:p,hasInlineStarted:q.isEmpty||!p};};a.htmlParser.cssStyle=function(){var l,m=arguments[0],n={};l=m instanceof a.htmlParser.element?m.attributes.style:m;(l||'').replace(/"/g,'"').replace(/\s*([^ :;]+)\s*:\s*([^;]+)\s*(?=;|$)/g,function(o,p,q){p=='font-family'&&(q=q.replace(/["']/g,''));n[p.toLowerCase()]=q;});return{rules:n,populate:function(o){var p=this.toString();if(p)o instanceof h?o.setAttribute('style',p):o instanceof a.htmlParser.element?o.attributes.style=p:o.style=p;},'toString':function(){var o=[];for(var p in n)n[p]&&o.push(p,':',n[p],';');return o.join('');}};};(function(){var l=function(m,n){m=m[0];n=n[0];return m<n?-1:m>n?1:0;};a.htmlParser.element.prototype={type:1,add:a.htmlParser.fragment.prototype.add,clone:function(){return new a.htmlParser.element(this.name,this.attributes);},writeHtml:function(m,n){var o=this.attributes,p=this,q=p.name,r,s,t,u;p.filterChildren=function(){if(!u){var B=new a.htmlParser.basicWriter();a.htmlParser.fragment.prototype.writeChildrenHtml.call(p,B,n);p.children=new a.htmlParser.fragment.fromHtml(B.getHtml(),0,p.clone()).children;u=1;}};if(n){for(;;){if(!(q=n.onElementName(q)))return;p.name=q;if(!(p=n.onElement(p)))return;p.parent=this.parent;if(p.name==q)break;if(p.type!=1){p.writeHtml(m,n);return;}q=p.name;if(!q){for(var v=0,w=this.children.length;v<w;v++)this.children[v].parent=p.parent;this.writeChildrenHtml.call(p,m,u?null:n);return;}}o=p.attributes;}m.openTag(q,o);var x=[];for(var y=0;y<2;y++)for(r in o){s=r;t=o[r];if(y==1)x.push([r,t]);else if(n){for(;;){if(!(s=n.onAttributeName(r))){delete o[r];break;}else if(s!=r){delete o[r];r=s;continue;}else break;}if(s)if((t=n.onAttribute(p,s,t))===false)delete o[s];else o[s]=t;}}if(m.sortAttributes)x.sort(l);var z=x.length;for(y=0;y<z;y++){var A=x[y];m.attribute(A[0],A[1]);}m.openTagClose(q,p.isEmpty);if(!p.isEmpty){this.writeChildrenHtml.call(p,m,u?null:n);m.closeTag(q);}},writeChildrenHtml:function(m,n){a.htmlParser.fragment.prototype.writeChildrenHtml.apply(this,arguments);}};})();(function(){a.htmlParser.filter=e.createClass({$:function(q){this._={elementNames:[],attributeNames:[],elements:{$length:0},attributes:{$length:0}};if(q)this.addRules(q,10);},proto:{addRules:function(q,r){var s=this;if(typeof r!='number')r=10; m(s._.elementNames,q.elementNames,r);m(s._.attributeNames,q.attributeNames,r);n(s._.elements,q.elements,r);n(s._.attributes,q.attributes,r);s._.text=o(s._.text,q.text,r)||s._.text;s._.comment=o(s._.comment,q.comment,r)||s._.comment;s._.root=o(s._.root,q.root,r)||s._.root;},onElementName:function(q){return l(q,this._.elementNames);},onAttributeName:function(q){return l(q,this._.attributeNames);},onText:function(q){var r=this._.text;return r?r.filter(q):q;},onComment:function(q,r){var s=this._.comment;return s?s.filter(q,r):q;},onFragment:function(q){var r=this._.root;return r?r.filter(q):q;},onElement:function(q){var v=this;var r=[v._.elements['^'],v._.elements[q.name],v._.elements.$],s,t;for(var u=0;u<3;u++){s=r[u];if(s){t=s.filter(q,v);if(t===false)return null;if(t&&t!=q)return v.onNode(t);if(q.parent&&!q.name)break;}}return q;},onNode:function(q){var r=q.type;return r==1?this.onElement(q):r==3?new a.htmlParser.text(this.onText(q.value)):r==8?new a.htmlParser.comment(this.onComment(q.value)):null;},onAttribute:function(q,r,s){var t=this._.attributes[r];if(t){var u=t.filter(s,q,this);if(u===false)return false;if(typeof u!='undefined')return u;}return s;}}});function l(q,r){for(var s=0;q&&s<r.length;s++){var t=r[s];q=q.replace(t[0],t[1]);}return q;};function m(q,r,s){if(typeof r=='function')r=[r];var t,u,v=q.length,w=r&&r.length;if(w){for(t=0;t<v&&q[t].pri<s;t++){}for(u=w-1;u>=0;u--){var x=r[u];if(x){x.pri=s;q.splice(t,0,x);}}}};function n(q,r,s){if(r)for(var t in r){var u=q[t];q[t]=o(u,r[t],s);if(!u)q.$length++;}};function o(q,r,s){if(r){r.pri=s;if(q){if(!q.splice){if(q.pri>s)q=[r,q];else q=[q,r];q.filter=p;}else m(q,r,s);return q;}else{r.filter=r;return r;}}};function p(q){var r=q.type||q instanceof a.htmlParser.fragment;for(var s=0;s<this.length;s++){if(r)var t=q.type,u=q.name;var v=this[s],w=v.apply(window,arguments);if(w===false)return w;if(r){if(w&&(w.name!=u||w.type!=t))return w;}else if(typeof w!='string')return w;w!=undefined&&(q=w);}return q;};})();a.htmlParser.basicWriter=e.createClass({$:function(){this._={output:[]};},proto:{openTag:function(l,m){this._.output.push('<',l);},openTagClose:function(l,m){if(m)this._.output.push(' />');else this._.output.push('>');},attribute:function(l,m){if(typeof m=='string')m=e.htmlEncodeAttr(m);this._.output.push(' ',l,'="',m,'"');},closeTag:function(l){this._.output.push('</',l,'>');},text:function(l){this._.output.push(l);},comment:function(l){this._.output.push('<!--',l,'-->');},write:function(l){this._.output.push(l); },reset:function(){this._.output=[];this._.indent=false;},getHtml:function(l){var m=this._.output.join('');if(l)this.reset();return m;}}});delete a.loadFullCore;a.instances={};a.document=new g(document);a.add=function(l){a.instances[l.name]=l;l.on('focus',function(){if(a.currentInstance!=l){a.currentInstance=l;a.fire('currentInstance');}});l.on('blur',function(){if(a.currentInstance==l){a.currentInstance=null;a.fire('currentInstance');}});};a.remove=function(l){delete a.instances[l.name];};a.on('instanceDestroyed',function(){if(e.isEmpty(this.instances))a.fire('reset');});a.TRISTATE_ON=1;a.TRISTATE_OFF=2;a.TRISTATE_DISABLED=0;d.comment=function(l,m){if(typeof l=='string')l=(m?m.$:document).createComment(l);d.domObject.call(this,l);};d.comment.prototype=new d.node();e.extend(d.comment.prototype,{type:8,getOuterHtml:function(){return '<!--'+this.$.nodeValue+'-->';}});(function(){var l={address:1,blockquote:1,dl:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,p:1,pre:1,li:1,dt:1,dd:1,legend:1,caption:1},m={body:1,div:1,table:1,tbody:1,tr:1,td:1,th:1,form:1,fieldset:1},n=function(o){var p=o.getChildren();for(var q=0,r=p.count();q<r;q++){var s=p.getItem(q);if(s.type==1&&f.$block[s.getName()])return true;}return false;};d.elementPath=function(o){var u=this;var p=null,q=null,r=[],s=o;while(s){if(s.type==1){if(!u.lastElement)u.lastElement=s;var t=s.getName();if(!q){if(!p&&l[t])p=s;if(m[t])if(!p&&t=='div'&&!n(s))p=s;else q=s;}r.push(s);if(t=='body')break;}s=s.getParent();}u.block=p;u.blockLimit=q;u.elements=r;};})();d.elementPath.prototype={compare:function(l){var m=this.elements,n=l&&l.elements;if(!n||m.length!=n.length)return false;for(var o=0;o<m.length;o++){if(!m[o].equals(n[o]))return false;}return true;},contains:function(l){var m=this.elements;for(var n=0;n<m.length;n++){if(m[n].getName() in l)return m[n];}return null;}};d.text=function(l,m){if(typeof l=='string')l=(m?m.$:document).createTextNode(l);this.$=l;};d.text.prototype=new d.node();e.extend(d.text.prototype,{type:3,getLength:function(){return this.$.nodeValue.length;},getText:function(){return this.$.nodeValue;},setText:function(l){this.$.nodeValue=l;},split:function(l){var q=this;if(c&&l==q.getLength()){var m=q.getDocument().createText('');m.insertAfter(q);return m;}var n=q.getDocument(),o=new d.text(q.$.splitText(l),n);if(b.ie8){var p=new d.text('',n);p.insertAfter(o);p.remove();}return o;},substring:function(l,m){if(typeof m!='number')return this.$.nodeValue.substr(l);else return this.$.nodeValue.substring(l,m);}}); d.documentFragment=function(l){l=l||a.document;this.$=l.$.createDocumentFragment();};e.extend(d.documentFragment.prototype,h.prototype,{type:11,insertAfterNode:function(l){l=l.$;l.parentNode.insertBefore(this.$,l.nextSibling);}},true,{append:1,appendBogus:1,getFirst:1,getLast:1,appendTo:1,moveChildren:1,insertBefore:1,insertAfterNode:1,replace:1,trim:1,type:1,ltrim:1,rtrim:1,getDocument:1,getChildCount:1,getChild:1,getChildren:1});(function(){function l(s,t){var u=this.range;if(this._.end)return null;if(!this._.start){this._.start=1;if(u.collapsed){this.end();return null;}u.optimize();}var v,w=u.startContainer,x=u.endContainer,y=u.startOffset,z=u.endOffset,A,B=this.guard,C=this.type,D=s?'getPreviousSourceNode':'getNextSourceNode';if(!s&&!this._.guardLTR){var E=x.type==1?x:x.getParent(),F=x.type==1?x.getChild(z):x.getNext();this._.guardLTR=function(J,K){return(!K||!E.equals(J))&&(!F||!J.equals(F))&&(J.type!=1||!K||J.getName()!='body');};}if(s&&!this._.guardRTL){var G=w.type==1?w:w.getParent(),H=w.type==1?y?w.getChild(y-1):null:w.getPrevious();this._.guardRTL=function(J,K){return(!K||!G.equals(J))&&(!H||!J.equals(H))&&(J.type!=1||!K||J.getName()!='body');};}var I=s?this._.guardRTL:this._.guardLTR;if(B)A=function(J,K){if(I(J,K)===false)return false;return B(J,K);};else A=I;if(this.current)v=this.current[D](false,C,A);else{if(s){v=x;if(v.type==1)if(z>0)v=v.getChild(z-1);else v=A(v,true)===false?null:v.getPreviousSourceNode(true,C,A);}else{v=w;if(v.type==1)if(!(v=v.getChild(y)))v=A(w,true)===false?null:w.getNextSourceNode(true,C,A);}if(v&&A(v)===false)v=null;}while(v&&!this._.end){this.current=v;if(!this.evaluator||this.evaluator(v)!==false){if(!t)return v;}else if(t&&this.evaluator)return false;v=v[D](false,C,A);}this.end();return this.current=null;};function m(s){var t,u=null;while(t=l.call(this,s))u=t;return u;};d.walker=e.createClass({$:function(s){this.range=s;this._={};},proto:{end:function(){this._.end=1;},next:function(){return l.call(this);},previous:function(){return l.call(this,1);},checkForward:function(){return l.call(this,0,1)!==false;},checkBackward:function(){return l.call(this,1,1)!==false;},lastForward:function(){return m.call(this);},lastBackward:function(){return m.call(this,1);},reset:function(){delete this.current;this._={};}}});var n={block:1,'list-item':1,table:1,'table-row-group':1,'table-header-group':1,'table-footer-group':1,'table-row':1,'table-column-group':1,'table-column':1,'table-cell':1,'table-caption':1};h.prototype.isBlockBoundary=function(s){var t=s?e.extend({},f.$block,s||{}):f.$block; return this.getComputedStyle('float')=='none'&&n[this.getComputedStyle('display')]||t[this.getName()];};d.walker.blockBoundary=function(s){return function(t,u){return!(t.type==1&&t.isBlockBoundary(s));};};d.walker.listItemBoundary=function(){return this.blockBoundary({br:1});};d.walker.bookmark=function(s,t){function u(v){return v&&v.getName&&v.getName()=='span'&&v.data('cke-bookmark');};return function(v){var w,x;w=v&&!v.getName&&(x=v.getParent())&&u(x);w=s?w:w||u(v);return!!(t^w);};};d.walker.whitespaces=function(s){return function(t){var u;if(t&&t.type==3)u=!e.trim(t.getText())||b.webkit&&t.getText()=='​';return!!(s^u);};};d.walker.invisible=function(s){var t=d.walker.whitespaces();return function(u){var v;if(t(u))v=1;else{if(u.type==3)u=u.getParent();v=!u.$.offsetHeight;}return!!(s^v);};};d.walker.nodeType=function(s,t){return function(u){return!!(t^u.type==s);};};d.walker.bogus=function(s){function t(u){return!p(u)&&!q(u);};return function(u){var v=!c?u.is&&u.is('br'):u.getText&&o.test(u.getText());if(v){var w=u.getParent(),x=u.getNext(t);v=w.isBlockBoundary()&&(!x||x.type==1&&x.isBlockBoundary());}return!!(s^v);};};var o=/^[\t\r\n ]*(?: |\xa0)$/,p=d.walker.whitespaces(),q=d.walker.bookmark(),r=function(s){return q(s)||p(s)||s.type==1&&s.getName() in f.$inline&&!(s.getName() in f.$empty);};h.prototype.getBogus=function(){var s=this;do s=s.getPreviousSourceNode();while(r(s));if(s&&(!c?s.is&&s.is('br'):s.getText&&o.test(s.getText())))return s;return false;};})();d.range=function(l){var m=this;m.startContainer=null;m.startOffset=null;m.endContainer=null;m.endOffset=null;m.collapsed=true;m.document=l;};(function(){var l=function(v){v.collapsed=v.startContainer&&v.endContainer&&v.startContainer.equals(v.endContainer)&&v.startOffset==v.endOffset;},m=function(v,w,x,y){v.optimizeBookmark();var z=v.startContainer,A=v.endContainer,B=v.startOffset,C=v.endOffset,D,E;if(A.type==3)A=A.split(C);else if(A.getChildCount()>0)if(C>=A.getChildCount()){A=A.append(v.document.createText(''));E=true;}else A=A.getChild(C);if(z.type==3){z.split(B);if(z.equals(A))A=z.getNext();}else if(!B){z=z.getFirst().insertBeforeMe(v.document.createText(''));D=true;}else if(B>=z.getChildCount()){z=z.append(v.document.createText(''));D=true;}else z=z.getChild(B).getPrevious();var F=z.getParents(),G=A.getParents(),H,I,J;for(H=0;H<F.length;H++){I=F[H];J=G[H];if(!I.equals(J))break;}var K=x,L,M,N,O;for(var P=H;P<F.length;P++){L=F[P];if(K&&!L.equals(z))M=K.append(L.clone());N=L.getNext();while(N){if(N.equals(G[P])||N.equals(A))break; O=N.getNext();if(w==2)K.append(N.clone(true));else{N.remove();if(w==1)K.append(N);}N=O;}if(K)K=M;}K=x;for(var Q=H;Q<G.length;Q++){L=G[Q];if(w>0&&!L.equals(A))M=K.append(L.clone());if(!F[Q]||L.$.parentNode!=F[Q].$.parentNode){N=L.getPrevious();while(N){if(N.equals(F[Q])||N.equals(z))break;O=N.getPrevious();if(w==2)K.$.insertBefore(N.$.cloneNode(true),K.$.firstChild);else{N.remove();if(w==1)K.$.insertBefore(N.$,K.$.firstChild);}N=O;}}if(K)K=M;}if(w==2){var R=v.startContainer;if(R.type==3){R.$.data+=R.$.nextSibling.data;R.$.parentNode.removeChild(R.$.nextSibling);}var S=v.endContainer;if(S.type==3&&S.$.nextSibling){S.$.data+=S.$.nextSibling.data;S.$.parentNode.removeChild(S.$.nextSibling);}}else{if(I&&J&&(z.$.parentNode!=I.$.parentNode||A.$.parentNode!=J.$.parentNode)){var T=J.getIndex();if(D&&J.$.parentNode==z.$.parentNode)T--;if(y&&I.type==1){var U=h.createFromHtml('<span data-cke-bookmark="1" style="display:none"> </span>',v.document);U.insertAfter(I);I.mergeSiblings(false);v.moveToBookmark({startNode:U});}else v.setStart(J.getParent(),T);}v.collapse(true);}if(D)z.remove();if(E&&A.$.parentNode)A.remove();},n={abbr:1,acronym:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1};function o(){var v=false,w=d.walker.whitespaces(),x=d.walker.bookmark(true),y=d.walker.bogus();return function(z){if(x(z)||w(z))return true;if(y(z)&&!v){v=true;return true;}if(z.type==3&&(z.hasAscendant('pre')||e.trim(z.getText()).length))return false;if(z.type==1&&!n[z.getName()])return false;return true;};};var p=d.walker.bogus();function q(v){var w=d.walker.whitespaces(),x=d.walker.bookmark(1);return function(y){if(x(y)||w(y))return true;return!v&&p(y)||y.type==1&&y.getName() in f.$removeEmpty;};};var r=new d.walker.whitespaces(),s=new d.walker.bookmark(),t=/^[\t\r\n ]*(?: |\xa0)$/;function u(v){return!r(v)&&!s(v);};d.range.prototype={clone:function(){var w=this;var v=new d.range(w.document);v.startContainer=w.startContainer;v.startOffset=w.startOffset;v.endContainer=w.endContainer;v.endOffset=w.endOffset;v.collapsed=w.collapsed;return v;},collapse:function(v){var w=this;if(v){w.endContainer=w.startContainer;w.endOffset=w.startOffset;}else{w.startContainer=w.endContainer;w.startOffset=w.endOffset;}w.collapsed=true;},cloneContents:function(){var v=new d.documentFragment(this.document);if(!this.collapsed)m(this,2,v);return v;},deleteContents:function(v){if(this.collapsed)return; m(this,0,null,v);},extractContents:function(v){var w=new d.documentFragment(this.document);if(!this.collapsed)m(this,1,w,v);return w;},createBookmark:function(v){var B=this;var w,x,y,z,A=B.collapsed;w=B.document.createElement('span');w.data('cke-bookmark',1);w.setStyle('display','none');w.setHtml(' ');if(v){y='cke_bm_'+e.getNextNumber();w.setAttribute('id',y+(A?'C':'S'));}if(!A){x=w.clone();x.setHtml(' ');if(v)x.setAttribute('id',y+'E');z=B.clone();z.collapse();z.insertNode(x);}z=B.clone();z.collapse(true);z.insertNode(w);if(x){B.setStartAfter(w);B.setEndBefore(x);}else B.moveToPosition(w,4);return{startNode:v?y+(A?'C':'S'):w,endNode:v?y+'E':x,serializable:v,collapsed:A};},createBookmark2:function(v){var D=this;var w=D.startContainer,x=D.endContainer,y=D.startOffset,z=D.endOffset,A=D.collapsed,B,C;if(!w||!x)return{start:0,end:0};if(v){if(w.type==1){B=w.getChild(y);if(B&&B.type==3&&y>0&&B.getPrevious().type==3){w=B;y=0;}if(B&&B.type==1)y=B.getIndex(1);}while(w.type==3&&(C=w.getPrevious())&&C.type==3){w=C;y+=C.getLength();}if(!A){if(x.type==1){B=x.getChild(z);if(B&&B.type==3&&z>0&&B.getPrevious().type==3){x=B;z=0;}if(B&&B.type==1)z=B.getIndex(1);}while(x.type==3&&(C=x.getPrevious())&&C.type==3){x=C;z+=C.getLength();}}}return{start:w.getAddress(v),end:A?null:x.getAddress(v),startOffset:y,endOffset:z,normalized:v,collapsed:A,is2:true};},moveToBookmark:function(v){var D=this;if(v.is2){var w=D.document.getByAddress(v.start,v.normalized),x=v.startOffset,y=v.end&&D.document.getByAddress(v.end,v.normalized),z=v.endOffset;D.setStart(w,x);if(y)D.setEnd(y,z);else D.collapse(true);}else{var A=v.serializable,B=A?D.document.getById(v.startNode):v.startNode,C=A?D.document.getById(v.endNode):v.endNode;D.setStartBefore(B);B.remove();if(C){D.setEndBefore(C);C.remove();}else D.collapse(true);}},getBoundaryNodes:function(){var A=this;var v=A.startContainer,w=A.endContainer,x=A.startOffset,y=A.endOffset,z;if(v.type==1){z=v.getChildCount();if(z>x)v=v.getChild(x);else if(z<1)v=v.getPreviousSourceNode();else{v=v.$;while(v.lastChild)v=v.lastChild;v=new d.node(v);v=v.getNextSourceNode()||v;}}if(w.type==1){z=w.getChildCount();if(z>y)w=w.getChild(y).getPreviousSourceNode(true);else if(z<1)w=w.getPreviousSourceNode();else{w=w.$;while(w.lastChild)w=w.lastChild;w=new d.node(w);}}if(v.getPosition(w)&2)v=w;return{startNode:v,endNode:w};},getCommonAncestor:function(v,w){var A=this;var x=A.startContainer,y=A.endContainer,z;if(x.equals(y)){if(v&&x.type==1&&A.startOffset==A.endOffset-1)z=x.getChild(A.startOffset); else z=x;}else z=x.getCommonAncestor(y);return w&&!z.is?z.getParent():z;},optimize:function(){var x=this;var v=x.startContainer,w=x.startOffset;if(v.type!=1)if(!w)x.setStartBefore(v);else if(w>=v.getLength())x.setStartAfter(v);v=x.endContainer;w=x.endOffset;if(v.type!=1)if(!w)x.setEndBefore(v);else if(w>=v.getLength())x.setEndAfter(v);},optimizeBookmark:function(){var x=this;var v=x.startContainer,w=x.endContainer;if(v.is&&v.is('span')&&v.data('cke-bookmark'))x.setStartAt(v,3);if(w&&w.is&&w.is('span')&&w.data('cke-bookmark'))x.setEndAt(w,4);},trim:function(v,w){var D=this;var x=D.startContainer,y=D.startOffset,z=D.collapsed;if((!v||z)&&x&&x.type==3){if(!y){y=x.getIndex();x=x.getParent();}else if(y>=x.getLength()){y=x.getIndex()+1;x=x.getParent();}else{var A=x.split(y);y=x.getIndex()+1;x=x.getParent();if(D.startContainer.equals(D.endContainer))D.setEnd(A,D.endOffset-D.startOffset);else if(x.equals(D.endContainer))D.endOffset+=1;}D.setStart(x,y);if(z){D.collapse(true);return;}}var B=D.endContainer,C=D.endOffset;if(!(w||z)&&B&&B.type==3){if(!C){C=B.getIndex();B=B.getParent();}else if(C>=B.getLength()){C=B.getIndex()+1;B=B.getParent();}else{B.split(C);C=B.getIndex()+1;B=B.getParent();}D.setEnd(B,C);}},enlarge:function(v,w){switch(v){case 1:if(this.collapsed)return;var x=this.getCommonAncestor(),y=this.document.getBody(),z,A,B,C,D,E=false,F,G,H=this.startContainer,I=this.startOffset;if(H.type==3){if(I){H=!e.trim(H.substring(0,I)).length&&H;E=!!H;}if(H)if(!(C=H.getPrevious()))B=H.getParent();}else{if(I)C=H.getChild(I-1)||H.getLast();if(!C)B=H;}while(B||C){if(B&&!C){if(!D&&B.equals(x))D=true;if(!y.contains(B))break;if(!E||B.getComputedStyle('display')!='inline'){E=false;if(D)z=B;else this.setStartBefore(B);}C=B.getPrevious();}while(C){F=false;if(C.type==8){C=C.getPrevious();continue;}else if(C.type==3){G=C.getText();if(/[^\s\ufeff]/.test(G))C=null;F=/[\s\ufeff]$/.test(G);}else if((C.$.offsetWidth>0||w&&C.is('br'))&&!C.data('cke-bookmark'))if(E&&f.$removeEmpty[C.getName()]){G=C.getText();if(/[^\s\ufeff]/.test(G))C=null;else{var J=C.$.getElementsByTagName('*');for(var K=0,L;L=J[K++];){if(!f.$removeEmpty[L.nodeName.toLowerCase()]){C=null;break;}}}if(C)F=!!G.length;}else C=null;if(F)if(E){if(D)z=B;else if(B)this.setStartBefore(B);}else E=true;if(C){var M=C.getPrevious();if(!B&&!M){B=C;C=null;break;}C=M;}else B=null;}if(B)B=B.getParent();}H=this.endContainer;I=this.endOffset;B=C=null;D=E=false;if(H.type==3){H=!e.trim(H.substring(I)).length&&H;E=!(H&&H.getLength());if(H)if(!(C=H.getNext()))B=H.getParent(); }else{C=H.getChild(I);if(!C)B=H;}while(B||C){if(B&&!C){if(!D&&B.equals(x))D=true;if(!y.contains(B))break;if(!E||B.getComputedStyle('display')!='inline'){E=false;if(D)A=B;else if(B)this.setEndAfter(B);}C=B.getNext();}while(C){F=false;if(C.type==3){G=C.getText();if(/[^\s\ufeff]/.test(G))C=null;F=/^[\s\ufeff]/.test(G);}else if(C.type==1){if((C.$.offsetWidth>0||w&&C.is('br'))&&!C.data('cke-bookmark'))if(E&&f.$removeEmpty[C.getName()]){G=C.getText();if(/[^\s\ufeff]/.test(G))C=null;else{J=C.$.getElementsByTagName('*');for(K=0;L=J[K++];){if(!f.$removeEmpty[L.nodeName.toLowerCase()]){C=null;break;}}}if(C)F=!!G.length;}else C=null;}else F=1;if(F)if(E)if(D)A=B;else this.setEndAfter(B);if(C){M=C.getNext();if(!B&&!M){B=C;C=null;break;}C=M;}else B=null;}if(B)B=B.getParent();}if(z&&A){x=z.contains(A)?A:z;this.setStartBefore(x);this.setEndAfter(x);}break;case 2:case 3:var N=new d.range(this.document);y=this.document.getBody();N.setStartAt(y,1);N.setEnd(this.startContainer,this.startOffset);var O=new d.walker(N),P,Q,R=d.walker.blockBoundary(v==3?{br:1}:null),S=function(Y){var Z=R(Y);if(!Z)P=Y;return Z;},T=function(Y){var Z=S(Y);if(!Z&&Y.is&&Y.is('br'))Q=Y;return Z;};O.guard=S;B=O.lastBackward();P=P||y;this.setStartAt(P,!P.is('br')&&(!B&&this.checkStartOfBlock()||B&&P.contains(B))?1:4);if(v==3){var U=this.clone();O=new d.walker(U);var V=d.walker.whitespaces(),W=d.walker.bookmark();O.evaluator=function(Y){return!V(Y)&&!W(Y);};var X=O.previous();if(X&&X.type==1&&X.is('br'))return;}N=this.clone();N.collapse();N.setEndAt(y,2);O=new d.walker(N);O.guard=v==3?T:S;P=null;B=O.lastForward();P=P||y;this.setEndAt(P,!B&&this.checkEndOfBlock()||B&&P.contains(B)?2:3);if(Q)this.setEndAfter(Q);}},shrink:function(v,w){if(!this.collapsed){v=v||2;var x=this.clone(),y=this.startContainer,z=this.endContainer,A=this.startOffset,B=this.endOffset,C=this.collapsed,D=1,E=1;if(y&&y.type==3)if(!A)x.setStartBefore(y);else if(A>=y.getLength())x.setStartAfter(y);else{x.setStartBefore(y);D=0;}if(z&&z.type==3)if(!B)x.setEndBefore(z);else if(B>=z.getLength())x.setEndAfter(z);else{x.setEndAfter(z);E=0;}var F=new d.walker(x),G=d.walker.bookmark();F.evaluator=function(K){return K.type==(v==1?1:3);};var H;F.guard=function(K,L){if(G(K))return true;if(v==1&&K.type==3)return false;if(L&&K.equals(H))return false;if(!L&&K.type==1)H=K;return true;};if(D){var I=F[v==1?'lastForward':'next']();I&&this.setStartAt(I,w?1:3);}if(E){F.reset();var J=F[v==1?'lastBackward':'previous']();J&&this.setEndAt(J,w?2:4);}return!!(D||E); }},insertNode:function(v){var z=this;z.optimizeBookmark();z.trim(false,true);var w=z.startContainer,x=z.startOffset,y=w.getChild(x);if(y)v.insertBefore(y);else w.append(v);if(v.getParent().equals(z.endContainer))z.endOffset++;z.setStartBefore(v);},moveToPosition:function(v,w){this.setStartAt(v,w);this.collapse(true);},selectNodeContents:function(v){this.setStart(v,0);this.setEnd(v,v.type==3?v.getLength():v.getChildCount());},setStart:function(v,w){var x=this;if(v.type==1&&f.$empty[v.getName()])w=v.getIndex(),v=v.getParent();x.startContainer=v;x.startOffset=w;if(!x.endContainer){x.endContainer=v;x.endOffset=w;}l(x);},setEnd:function(v,w){var x=this;if(v.type==1&&f.$empty[v.getName()])w=v.getIndex()+1,v=v.getParent();x.endContainer=v;x.endOffset=w;if(!x.startContainer){x.startContainer=v;x.startOffset=w;}l(x);},setStartAfter:function(v){this.setStart(v.getParent(),v.getIndex()+1);},setStartBefore:function(v){this.setStart(v.getParent(),v.getIndex());},setEndAfter:function(v){this.setEnd(v.getParent(),v.getIndex()+1);},setEndBefore:function(v){this.setEnd(v.getParent(),v.getIndex());},setStartAt:function(v,w){var x=this;switch(w){case 1:x.setStart(v,0);break;case 2:if(v.type==3)x.setStart(v,v.getLength());else x.setStart(v,v.getChildCount());break;case 3:x.setStartBefore(v);break;case 4:x.setStartAfter(v);}l(x);},setEndAt:function(v,w){var x=this;switch(w){case 1:x.setEnd(v,0);break;case 2:if(v.type==3)x.setEnd(v,v.getLength());else x.setEnd(v,v.getChildCount());break;case 3:x.setEndBefore(v);break;case 4:x.setEndAfter(v);}l(x);},fixBlock:function(v,w){var z=this;var x=z.createBookmark(),y=z.document.createElement(w);z.collapse(v);z.enlarge(2);z.extractContents().appendTo(y);y.trim();if(!c)y.appendBogus();z.insertNode(y);z.moveToBookmark(x);return y;},splitBlock:function(v){var F=this;var w=new d.elementPath(F.startContainer),x=new d.elementPath(F.endContainer),y=w.blockLimit,z=x.blockLimit,A=w.block,B=x.block,C=null;if(!y.equals(z))return null;if(v!='br'){if(!A){A=F.fixBlock(true,v);B=new d.elementPath(F.endContainer).block;}if(!B)B=F.fixBlock(false,v);}var D=A&&F.checkStartOfBlock(),E=B&&F.checkEndOfBlock();F.deleteContents();if(A&&A.equals(B))if(E){C=new d.elementPath(F.startContainer);F.moveToPosition(B,4);B=null;}else if(D){C=new d.elementPath(F.startContainer);F.moveToPosition(A,3);A=null;}else{B=F.splitElement(A);if(!c&&!A.is('ul','ol'))A.appendBogus();}return{previousBlock:A,nextBlock:B,wasStartOfBlock:D,wasEndOfBlock:E,elementPath:C};},splitElement:function(v){var y=this; if(!y.collapsed)return null;y.setEndAt(v,2);var w=y.extractContents(),x=v.clone(false);w.appendTo(x);x.insertAfter(v);y.moveToPosition(v,4);return x;},checkBoundaryOfElement:function(v,w){var x=w==1,y=this.clone();y.collapse(x);y[x?'setStartAt':'setEndAt'](v,x?1:2);var z=new d.walker(y);z.evaluator=q(x);return z[x?'checkBackward':'checkForward']();},checkStartOfBlock:function(){var B=this;var v=B.startContainer,w=B.startOffset;if(c&&w&&v.type==3){var x=e.ltrim(v.substring(0,w));if(t.test(x))B.trim(0,1);}var y=new d.elementPath(B.startContainer),z=B.clone();z.collapse(true);z.setStartAt(y.block||y.blockLimit,1);var A=new d.walker(z);A.evaluator=o();return A.checkBackward();},checkEndOfBlock:function(){var B=this;var v=B.endContainer,w=B.endOffset;if(c&&v.type==3){var x=e.rtrim(v.substring(w));if(t.test(x))B.trim(1,0);}var y=new d.elementPath(B.endContainer),z=B.clone();z.collapse(false);z.setEndAt(y.block||y.blockLimit,2);var A=new d.walker(z);A.evaluator=o();return A.checkForward();},getPreviousNode:function(v,w,x){var y=this.clone();y.collapse(1);y.setStartAt(x||this.document.getBody(),1);var z=new d.walker(y);z.evaluator=v;z.guard=w;return z.previous();},getNextNode:function(v,w,x){var y=this.clone();y.collapse();y.setEndAt(x||this.document.getBody(),2);var z=new d.walker(y);z.evaluator=v;z.guard=w;return z.next();},checkReadOnly:(function(){function v(w,x){while(w){if(w.type==1)if(w.getAttribute('contentEditable')=='false'&&!w.data('cke-editable'))return 0;else if(w.is('html')||w.getAttribute('contentEditable')=='true'&&(w.contains(x)||w.equals(x)))break;w=w.getParent();}return 1;};return function(){var w=this.startContainer,x=this.endContainer;return!(v(w,x)&&v(x,w));};})(),moveToElementEditablePosition:function(v,w){function x(z,A){var B;if(z.type==1&&z.isEditable(false))B=z[w?'getLast':'getFirst'](u);if(!A&&!B)B=z[w?'getPrevious':'getNext'](u);return B;};if(v.type==1&&!v.isEditable(false)){this.moveToPosition(v,w?4:3);return true;}var y=0;while(v){if(v.type==3){if(w&&this.checkEndOfBlock()&&t.test(v.getText()))this.moveToPosition(v,3);else this.moveToPosition(v,w?4:3);y=1;break;}if(v.type==1)if(v.isEditable()){this.moveToPosition(v,w?2:1);y=1;}else if(w&&v.is('br')&&this.checkEndOfBlock())this.moveToPosition(v,3);v=x(v,y);}return!!y;},moveToElementEditStart:function(v){return this.moveToElementEditablePosition(v);},moveToElementEditEnd:function(v){return this.moveToElementEditablePosition(v,true);},getEnclosedNode:function(){var v=this.clone();v.optimize(); if(v.startContainer.type!=1||v.endContainer.type!=1)return null;var w=new d.walker(v),x=d.walker.bookmark(true),y=d.walker.whitespaces(true),z=function(B){return y(B)&&x(B);};v.evaluator=z;var A=w.next();w.reset();return A&&A.equals(w.previous())?A:null;},getTouchedStartNode:function(){var v=this.startContainer;if(this.collapsed||v.type!=1)return v;return v.getChild(this.startOffset)||v;},getTouchedEndNode:function(){var v=this.endContainer;if(this.collapsed||v.type!=1)return v;return v.getChild(this.endOffset-1)||v;}};})();a.POSITION_AFTER_START=1;a.POSITION_BEFORE_END=2;a.POSITION_BEFORE_START=3;a.POSITION_AFTER_END=4;a.ENLARGE_ELEMENT=1;a.ENLARGE_BLOCK_CONTENTS=2;a.ENLARGE_LIST_ITEM_CONTENTS=3;a.START=1;a.END=2;a.STARTEND=3;a.SHRINK_ELEMENT=1;a.SHRINK_TEXT=2;(function(){d.rangeList=function(n){if(n instanceof d.rangeList)return n;if(!n)n=[];else if(n instanceof d.range)n=[n];return e.extend(n,l);};var l={createIterator:function(){var n=this,o=d.walker.bookmark(),p=function(s){return!(s.is&&s.is('tr'));},q=[],r;return{getNextRange:function(s){r=r==undefined?0:r+1;var t=n[r];if(t&&n.length>1){if(!r)for(var u=n.length-1;u>=0;u--)q.unshift(n[u].createBookmark(true));if(s){var v=0;while(n[r+v+1]){var w=t.document,x=0,y=w.getById(q[v].endNode),z=w.getById(q[v+1].startNode),A;while(1){A=y.getNextSourceNode(false);if(!z.equals(A)){if(o(A)||A.type==1&&A.isBlockBoundary()){y=A;continue;}}else x=1;break;}if(!x)break;v++;}}t.moveToBookmark(q.shift());while(v--){A=n[++r];A.moveToBookmark(q.shift());t.setEnd(A.endContainer,A.endOffset);}}return t;}};},createBookmarks:function(n){var s=this;var o=[],p;for(var q=0;q<s.length;q++){o.push(p=s[q].createBookmark(n,true));for(var r=q+1;r<s.length;r++){s[r]=m(p,s[r]);s[r]=m(p,s[r],true);}}return o;},createBookmarks2:function(n){var o=[];for(var p=0;p<this.length;p++)o.push(this[p].createBookmark2(n));return o;},moveToBookmarks:function(n){for(var o=0;o<this.length;o++)this[o].moveToBookmark(n[o]);}};function m(n,o,p){var q=n.serializable,r=o[p?'endContainer':'startContainer'],s=p?'endOffset':'startOffset',t=q?o.document.getById(n.startNode):n.startNode,u=q?o.document.getById(n.endNode):n.endNode;if(r.equals(t.getPrevious())){o.startOffset=o.startOffset-r.getLength()-u.getPrevious().getLength();r=u.getNext();}else if(r.equals(u.getPrevious())){o.startOffset=o.startOffset-r.getLength();r=u.getNext();}r.equals(t.getParent())&&o[s]++;r.equals(u.getParent())&&o[s]++;o[p?'endContainer':'startContainer']=r;return o;};})();(function(){if(b.webkit){b.hc=false; return;}var l=h.createFromHtml('<div style="width:0px;height:0px;position:absolute;left:-10000px;border: 1px solid;border-color: red blue;"></div>',a.document);l.appendTo(a.document.getHead());try{b.hc=l.getComputedStyle('border-top-color')==l.getComputedStyle('border-right-color');}catch(m){b.hc=false;}if(b.hc)b.cssClass+=' cke_hc';l.remove();})();j.load(i.corePlugins.split(','),function(){a.status='loaded';a.fire('loaded');var l=a._.pending;if(l){delete a._.pending;for(var m=0;m<l.length;m++)a.add(l[m]);}});if(c)try{document.execCommand('BackgroundImageCache',false,true);}catch(l){}a.skins.add('kama',(function(){var m='cke_ui_color';return{editor:{css:['editor.css']},dialog:{css:['dialog.css']},richcombo:{canGroup:false},templates:{css:['templates.css']},margins:[0,0,0,0],init:function(n){if(n.config.width&&!isNaN(n.config.width))n.config.width-=12;var o=[],p=/\$color/g,q='/* UI Color Support */.cke_skin_kama .cke_menuitem .cke_icon_wrapper{\tbackground-color: $color !important;\tborder-color: $color !important;}.cke_skin_kama .cke_menuitem a:hover .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a:focus .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a:active .cke_icon_wrapper{\tbackground-color: $color !important;\tborder-color: $color !important;}.cke_skin_kama .cke_menuitem a:hover .cke_label,.cke_skin_kama .cke_menuitem a:focus .cke_label,.cke_skin_kama .cke_menuitem a:active .cke_label{\tbackground-color: $color !important;}.cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_label,.cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_label,.cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_label{\tbackground-color: transparent !important;}.cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_icon_wrapper,.cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_icon_wrapper{\tbackground-color: $color !important;\tborder-color: $color !important;}.cke_skin_kama .cke_menuitem a.cke_disabled .cke_icon_wrapper{\tbackground-color: $color !important;\tborder-color: $color !important;}.cke_skin_kama .cke_menuseparator{\tbackground-color: $color !important;}.cke_skin_kama .cke_menuitem a:hover,.cke_skin_kama .cke_menuitem a:focus,.cke_skin_kama .cke_menuitem a:active{\tbackground-color: $color !important;}';if(b.webkit){q=q.split('}').slice(0,-1);for(var r=0;r<q.length;r++)q[r]=q[r].split('{');}function s(v){var w=v.getById(m);if(!w){w=v.getHead().append('style');w.setAttribute('id',m); w.setAttribute('type','text/css');}return w;};function t(v,w,x){var y,z,A;for(var B=0;B<v.length;B++){if(b.webkit)for(z=0;z<w.length;z++){A=w[z][1];for(y=0;y<x.length;y++)A=A.replace(x[y][0],x[y][1]);v[B].$.sheet.addRule(w[z][0],A);}else{A=w;for(y=0;y<x.length;y++)A=A.replace(x[y][0],x[y][1]);if(c)v[B].$.styleSheet.cssText+=A;else v[B].$.innerHTML+=A;}}};var u=/\$color/g;e.extend(n,{uiColor:null,getUiColor:function(){return this.uiColor;},setUiColor:function(v){var w,x=s(a.document),y='.'+n.id,z=[y+' .cke_wrapper',y+'_dialog .cke_dialog_contents',y+'_dialog a.cke_dialog_tab',y+'_dialog .cke_dialog_footer'].join(','),A='background-color: $color !important;';if(b.webkit)w=[[z,A]];else w=z+'{'+A+'}';return(this.setUiColor=function(B){var C=[[u,B]];n.uiColor=B;t([x],w,C);t(o,q,C);})(v);}});n.on('menuShow',function(v){var w=v.data[0],x=w.element.getElementsByTag('iframe').getItem(0).getFrameDocument();if(!x.getById('cke_ui_color')){var y=s(x);o.push(y);var z=n.getUiColor();if(z)t([y],q,[[u,z]]);}});if(n.config.uiColor)n.setUiColor(n.config.uiColor);}};})());(function(){a.dialog?m():a.on('dialogPluginReady',m);function m(){a.dialog.on('resize',function(n){var o=n.data,p=o.width,q=o.height,r=o.dialog,s=r.parts.contents;if(o.skin!='kama')return;s.setStyles({width:p+'px',height:q+'px'});});};})();j.add('about',{requires:['dialog'],init:function(m){var n=m.addCommand('about',new a.dialogCommand('about'));n.modes={wysiwyg:1,source:1};n.canUndo=false;n.readOnly=1;m.ui.addButton('About',{label:m.lang.about.title,command:'about'});a.dialog.add('about',this.path+'dialogs/about.js');}});(function(){var m='a11yhelp',n='a11yHelp';j.add(m,{requires:['dialog'],availableLangs:{cs:1,cy:1,da:1,de:1,el:1,en:1,eo:1,fa:1,fi:1,fr:1,gu:1,he:1,it:1,ku:1,mk:1,nb:1,nl:1,no:1,'pt-br':1,ro:1,tr:1,ug:1,vi:1,'zh-cn':1},init:function(o){var p=this;o.addCommand(n,{exec:function(){var q=o.langCode;q=p.availableLangs[q]?q:'en';a.scriptLoader.load(a.getUrl(p.path+'lang/'+q+'.js'),function(){e.extend(o.lang,p.langEntries[q]);o.openDialog(n);});},modes:{wysiwyg:1,source:1},readOnly:1,canUndo:false});a.dialog.add(n,this.path+'dialogs/a11yhelp.js');}});})();j.add('basicstyles',{requires:['styles','button'],init:function(m){var n=function(q,r,s,t){var u=new a.style(t);m.attachStyleStateChange(u,function(v){!m.readOnly&&m.getCommand(s).setState(v);});m.addCommand(s,new a.styleCommand(u));m.ui.addButton(q,{label:r,command:s});},o=m.config,p=m.lang;n('Bold',p.bold,'bold',o.coreStyles_bold);n('Italic',p.italic,'italic',o.coreStyles_italic); n('Underline',p.underline,'underline',o.coreStyles_underline);n('Strike',p.strike,'strike',o.coreStyles_strike);n('Subscript',p.subscript,'subscript',o.coreStyles_subscript);n('Superscript',p.superscript,'superscript',o.coreStyles_superscript);}});i.coreStyles_bold={element:'strong',overrides:'b'};i.coreStyles_italic={element:'em',overrides:'i'};i.coreStyles_underline={element:'u'};i.coreStyles_strike={element:'strike'};i.coreStyles_subscript={element:'sub'};i.coreStyles_superscript={element:'sup'};(function(){var m={table:1,ul:1,ol:1,blockquote:1,div:1},n={},o={};e.extend(n,m,{tr:1,p:1,div:1,li:1});e.extend(o,n,{td:1});function p(B){q(B);r(B);};function q(B){var C=B.editor,D=B.data.path;if(C.readOnly)return;var E=C.config.useComputedState,F;E=E===undefined||E;if(!E)F=s(D.lastElement);F=F||D.block||D.blockLimit;if(F.is('body')){var G=C.getSelection().getRanges()[0].getEnclosedNode();G&&G.type==1&&(F=G);}if(!F)return;var H=E?F.getComputedStyle('direction'):F.getStyle('direction')||F.getAttribute('dir');C.getCommand('bidirtl').setState(H=='rtl'?1:2);C.getCommand('bidiltr').setState(H=='ltr'?1:2);};function r(B){var C=B.editor,D=B.data.path.block||B.data.path.blockLimit;C.fire('contentDirChanged',D?D.getComputedStyle('direction'):C.lang.dir);};function s(B){while(B&&!(B.getName() in o||B.is('body'))){var C=B.getParent();if(!C)break;B=C;}return B;};function t(B,C,D,E){if(B.isReadOnly())return;h.setMarker(E,B,'bidi_processed',1);var F=B;while((F=F.getParent())&&!F.is('body')){if(F.getCustomData('bidi_processed')){B.removeStyle('direction');B.removeAttribute('dir');return;}}var G='useComputedState' in D.config?D.config.useComputedState:1,H=G?B.getComputedStyle('direction'):B.getStyle('direction')||B.hasAttribute('dir');if(H==C)return;B.removeStyle('direction');if(G){B.removeAttribute('dir');if(C!=B.getComputedStyle('direction'))B.setAttribute('dir',C);}else B.setAttribute('dir',C);D.forceNextSelectionCheck();};function u(B,C,D){var E=B.getCommonAncestor(false,true);B=B.clone();B.enlarge(D==2?3:2);if(B.checkBoundaryOfElement(E,1)&&B.checkBoundaryOfElement(E,2)){var F;while(E&&E.type==1&&(F=E.getParent())&&F.getChildCount()==1&&!(E.getName() in C))E=F;return E.type==1&&E.getName() in C&&E;}};function v(B){return function(C){var D=C.getSelection(),E=C.config.enterMode,F=D.getRanges();if(F&&F.length){var G={},H=D.createBookmarks(),I=F.createIterator(),J,K=0;while(J=I.getNextRange(1)){var L=J.getEnclosedNode();if(!L||L&&!(L.type==1&&L.getName() in n))L=u(J,m,E);L&&t(L,B,C,G); var M,N,O=new d.walker(J),P=H[K].startNode,Q=H[K++].endNode;O.evaluator=function(R){return!!(R.type==1&&R.getName() in m&&!(R.getName()==(E==1?'p':'div')&&R.getParent().type==1&&R.getParent().getName()=='blockquote')&&R.getPosition(P)&2&&(R.getPosition(Q)&4+16)==4);};while(N=O.next())t(N,B,C,G);M=J.createIterator();M.enlargeBr=E!=2;while(N=M.getNextParagraph(E==1?'p':'div'))t(N,B,C,G);}h.clearAllMarkers(G);C.forceNextSelectionCheck();D.selectBookmarks(H);C.focus();}};};j.add('bidi',{requires:['styles','button'],init:function(B){var C=function(E,F,G,H){B.addCommand(G,new a.command(B,{exec:H}));B.ui.addButton(E,{label:F,command:G});},D=B.lang.bidi;C('BidiLtr',D.ltr,'bidiltr',v('ltr'));C('BidiRtl',D.rtl,'bidirtl',v('rtl'));B.on('selectionChange',p);B.on('contentDom',function(){B.document.on('dirChanged',function(E){B.fire('dirChanged',{node:E.data,dir:E.data.getDirection(1)});});});}});function w(B){var C=B.getDocument().getBody().getParent();while(B){if(B.equals(C))return false;B=B.getParent();}return true;};function x(B){var C=B==y.setAttribute,D=B==y.removeAttribute,E=/\bdirection\s*:\s*(.*?)\s*(:?$|;)/;return function(F,G){var J=this;if(!J.getDocument().equals(a.document)){var H;if((F==(C||D?'dir':'direction')||F=='style'&&(D||E.test(G)))&&!w(J)){H=J.getDirection(1);var I=B.apply(J,arguments);if(H!=J.getDirection(1)){J.getDocument().fire('dirChanged',J);return I;}}}return B.apply(J,arguments);};};var y=h.prototype,z=['setStyle','removeStyle','setAttribute','removeAttribute'];for(var A=0;A<z.length;A++)y[z[A]]=e.override(y[z[A]],x);})();(function(){function m(q,r){var s=r.block||r.blockLimit;if(!s||s.getName()=='body')return 2;if(s.getAscendant('blockquote',true))return 1;return 2;};function n(q){var r=q.editor;if(r.readOnly)return;var s=r.getCommand('blockquote');s.state=m(r,q.data.path);s.fire('state');};function o(q){for(var r=0,s=q.getChildCount(),t;r<s&&(t=q.getChild(r));r++){if(t.type==1&&t.isBlockBoundary())return false;}return true;};var p={exec:function(q){var r=q.getCommand('blockquote').state,s=q.getSelection(),t=s&&s.getRanges(true)[0];if(!t)return;var u=s.createBookmarks();if(c){var v=u[0].startNode,w=u[0].endNode,x;if(v&&v.getParent().getName()=='blockquote'){x=v;while(x=x.getNext()){if(x.type==1&&x.isBlockBoundary()){v.move(x,true);break;}}}if(w&&w.getParent().getName()=='blockquote'){x=w;while(x=x.getPrevious()){if(x.type==1&&x.isBlockBoundary()){w.move(x);break;}}}}var y=t.createIterator(),z;y.enlargeBr=q.config.enterMode!=2;if(r==2){var A=[]; while(z=y.getNextParagraph())A.push(z);if(A.length<1){var B=q.document.createElement(q.config.enterMode==1?'p':'div'),C=u.shift();t.insertNode(B);B.append(new d.text('\ufeff',q.document));t.moveToBookmark(C);t.selectNodeContents(B);t.collapse(true);C=t.createBookmark();A.push(B);u.unshift(C);}var D=A[0].getParent(),E=[];for(var F=0;F<A.length;F++){z=A[F];D=D.getCommonAncestor(z.getParent());}var G={table:1,tbody:1,tr:1,ol:1,ul:1};while(G[D.getName()])D=D.getParent();var H=null;while(A.length>0){z=A.shift();while(!z.getParent().equals(D))z=z.getParent();if(!z.equals(H))E.push(z);H=z;}while(E.length>0){z=E.shift();if(z.getName()=='blockquote'){var I=new d.documentFragment(q.document);while(z.getFirst()){I.append(z.getFirst().remove());A.push(I.getLast());}I.replace(z);}else A.push(z);}var J=q.document.createElement('blockquote');J.insertBefore(A[0]);while(A.length>0){z=A.shift();J.append(z);}}else if(r==1){var K=[],L={};while(z=y.getNextParagraph()){var M=null,N=null;while(z.getParent()){if(z.getParent().getName()=='blockquote'){M=z.getParent();N=z;break;}z=z.getParent();}if(M&&N&&!N.getCustomData('blockquote_moveout')){K.push(N);h.setMarker(L,N,'blockquote_moveout',true);}}h.clearAllMarkers(L);var O=[],P=[];L={};while(K.length>0){var Q=K.shift();J=Q.getParent();if(!Q.getPrevious())Q.remove().insertBefore(J);else if(!Q.getNext())Q.remove().insertAfter(J);else{Q.breakParent(Q.getParent());P.push(Q.getNext());}if(!J.getCustomData('blockquote_processed')){P.push(J);h.setMarker(L,J,'blockquote_processed',true);}O.push(Q);}h.clearAllMarkers(L);for(F=P.length-1;F>=0;F--){J=P[F];if(o(J))J.remove();}if(q.config.enterMode==2){var R=true;while(O.length){Q=O.shift();if(Q.getName()=='div'){I=new d.documentFragment(q.document);var S=R&&Q.getPrevious()&&!(Q.getPrevious().type==1&&Q.getPrevious().isBlockBoundary());if(S)I.append(q.document.createElement('br'));var T=Q.getNext()&&!(Q.getNext().type==1&&Q.getNext().isBlockBoundary());while(Q.getFirst())Q.getFirst().remove().appendTo(I);if(T)I.append(q.document.createElement('br'));I.replace(Q);R=false;}}}}s.selectBookmarks(u);q.focus();}};j.add('blockquote',{init:function(q){q.addCommand('blockquote',p);q.ui.addButton('Blockquote',{label:q.lang.blockquote,command:'blockquote'});q.on('selectionChange',n);},requires:['domiterator']});})();j.add('button',{beforeInit:function(m){m.ui.addHandler('button',k.button.handler);}});a.UI_BUTTON='button';k.button=function(m){e.extend(this,m,{title:m.label,className:m.className||m.command&&'cke_button_'+m.command||'',click:m.click||(function(n){n.execCommand(m.command); })});this._={};};k.button.handler={create:function(m){return new k.button(m);}};(function(){k.button.prototype={render:function(m,n){var o=b,p=this._.id=e.getNextId(),q='',r=this.command,s;this._.editor=m;var t={id:p,button:this,editor:m,focus:function(){var z=a.document.getById(p);z.focus();},execute:function(){if(c&&b.version<7)e.setTimeout(function(){this.button.click(m);},0,this);else this.button.click(m);}},u=e.addFunction(function(z){if(t.onkey){z=new d.event(z);return t.onkey(t,z.getKeystroke())!==false;}}),v=e.addFunction(function(z){var A;if(t.onfocus)A=t.onfocus(t,new d.event(z))!==false;if(b.gecko&&b.version<10900)z.preventBubble();return A;});t.clickFn=s=e.addFunction(t.execute,t);if(this.modes){var w={};function x(){var z=m.mode;if(z){var A=this.modes[z]?w[z]!=undefined?w[z]:2:0;this.setState(m.readOnly&&!this.readOnly?0:A);}};m.on('beforeModeUnload',function(){if(m.mode&&this._.state!=0)w[m.mode]=this._.state;},this);m.on('mode',x,this);!this.readOnly&&m.on('readOnly',x,this);}else if(r){r=m.getCommand(r);if(r){r.on('state',function(){this.setState(r.state);},this);q+='cke_'+(r.state==1?'on':r.state==0?'disabled':'off');}}if(!r)q+='cke_off';if(this.className)q+=' '+this.className;n.push('<span class="cke_button'+(this.icon&&this.icon.indexOf('.png')==-1?' cke_noalphafix':'')+'">','<a id="',p,'" class="',q,'"',o.gecko&&o.version>=10900&&!o.hc?'':'" href="javascript:void(\''+(this.title||'').replace("'",'')+"')\"",' title="',this.title,'" tabindex="-1" hidefocus="true" role="button" aria-labelledby="'+p+'_label"'+(this.hasArrow?' aria-haspopup="true"':''));if(o.opera||o.gecko&&o.mac)n.push(' onkeypress="return false;"');if(o.gecko)n.push(' onblur="this.style.cssText = this.style.cssText;"');n.push(' onkeydown="return CKEDITOR.tools.callFunction(',u,', event);" onfocus="return CKEDITOR.tools.callFunction(',v,', event);" '+(c?'onclick="return false;" onmouseup':'onclick')+'="CKEDITOR.tools.callFunction(',s,', this); return false;"><span class="cke_icon"');if(this.icon){var y=(this.iconOffset||0)*-16;n.push(' style="background-image:url(',a.getUrl(this.icon),');background-position:0 '+y+'px;"');}n.push('> </span><span id="',p,'_label" class="cke_label">',this.label,'</span>');if(this.hasArrow)n.push('<span class="cke_buttonarrow">'+(b.hc?'▼':' ')+'</span>');n.push('</a>','</span>');if(this.onRender)this.onRender();return t;},setState:function(m){if(this._.state==m)return false;this._.state=m;var n=a.document.getById(this._.id);if(n){n.setState(m); m==0?n.setAttribute('aria-disabled',true):n.removeAttribute('aria-disabled');m==1?n.setAttribute('aria-pressed',true):n.removeAttribute('aria-pressed');return true;}else return false;}};})();k.prototype.addButton=function(m,n){this.add(m,'button',n);};(function(){var m=function(y,z){var A=y.document,B=A.getBody(),C=false,D=function(){C=true;};B.on(z,D);(b.version>7?A.$:A.$.selection.createRange()).execCommand(z);B.removeListener(z,D);return C;},n=c?function(y,z){return m(y,z);}:function(y,z){try{return y.document.$.execCommand(z,false,null);}catch(A){return false;}},o=function(y){var z=this;z.type=y;z.canUndo=z.type=='cut';z.startDisabled=true;};o.prototype={exec:function(y,z){this.type=='cut'&&t(y);var A=n(y,this.type);if(!A)alert(y.lang.clipboard[this.type+'Error']);return A;}};var p={canUndo:false,exec:c?function(y){y.focus();if(!y.document.getBody().fire('beforepaste')&&!m(y,'paste')){y.fire('pasteDialog');return false;}}:function(y){try{if(!y.document.getBody().fire('beforepaste')&&!y.document.$.execCommand('Paste',false,null))throw 0;}catch(z){setTimeout(function(){y.fire('pasteDialog');},0);return false;}}},q=function(y){if(this.mode!='wysiwyg')return;switch(y.data.keyCode){case 1114112+86:case 2228224+45:var z=this.document.getBody();if(b.opera||b.gecko)z.fire('paste');return;case 1114112+88:case 2228224+46:var A=this;this.fire('saveSnapshot');setTimeout(function(){A.fire('saveSnapshot');},0);}};function r(y){y.cancel();};function s(y,z,A){var B=this.document;if(B.getById('cke_pastebin'))return;if(z=='text'&&y.data&&y.data.$.clipboardData){var C=y.data.$.clipboardData.getData('text/plain');if(C){y.data.preventDefault();A(C);return;}}var D=this.getSelection(),E=new d.range(B),F=new h(z=='text'?'textarea':b.webkit?'body':'div',B);F.setAttribute('id','cke_pastebin');b.webkit&&F.append(B.createText('\xa0'));B.getBody().append(F);F.setStyles({position:'absolute',top:D.getStartElement().getDocumentPosition().y+'px',width:'1px',height:'1px',overflow:'hidden'});F.setStyle(this.config.contentsLangDirection=='ltr'?'left':'right','-1000px');var G=D.createBookmarks();this.on('selectionChange',r,null,null,0);if(z=='text')F.$.focus();else{E.setStartAt(F,1);E.setEndAt(F,2);E.select(true);}var H=this;window.setTimeout(function(){H.document.getBody().focus();H.removeListener('selectionChange',r);if(b.ie7Compat){D.selectBookmarks(G);F.remove();}else{F.remove();D.selectBookmarks(G);}var I;F=b.webkit&&(I=F.getFirst())&&I.is&&I.hasClass('Apple-style-span')?I:F;A(F['get'+(z=='text'?'Value':'Html')]()); },0);};function t(y){if(!c||b.quirks)return;var z=y.getSelection(),A;if(z.getType()==3&&(A=z.getSelectedElement())){var B=z.getRanges()[0],C=y.document.createText('');C.insertBefore(A);B.setStartBefore(C);B.setEndAfter(A);z.selectRanges([B]);setTimeout(function(){if(A.getParent()){C.remove();z.selectElement(A);}},0);}};var u,v;function w(y,z){var A;if(v&&y in {Paste:1,Cut:1})return 0;if(y=='Paste'){c&&(u=1);try{A=z.document.$.queryCommandEnabled(y)||b.webkit;}catch(D){}u=0;}else{var B=z.getSelection(),C=B&&B.getRanges();A=B&&!(C.length==1&&C[0].collapsed);}return A?2:0;};function x(){var z=this;if(z.mode!='wysiwyg')return;var y=w('Paste',z);z.getCommand('cut').setState(w('Cut',z));z.getCommand('copy').setState(w('Copy',z));z.getCommand('paste').setState(y);z.fire('pasteState',y);};j.add('clipboard',{requires:['dialog','htmldataprocessor'],init:function(y){y.on('paste',function(A){var B=A.data;if(B.html)y.insertHtml(B.html);else if(B.text)y.insertText(B.text);setTimeout(function(){y.fire('afterPaste');},0);},null,null,1000);y.on('pasteDialog',function(A){setTimeout(function(){y.openDialog('paste');},0);});y.on('pasteState',function(A){y.getCommand('paste').setState(A.data);});function z(A,B,C,D){var E=y.lang[B];y.addCommand(B,C);y.ui.addButton(A,{label:E,command:B});if(y.addMenuItems)y.addMenuItem(B,{label:E,command:B,group:'clipboard',order:D});};z('Cut','cut',new o('cut'),1);z('Copy','copy',new o('copy'),4);z('Paste','paste',p,8);a.dialog.add('paste',a.getUrl(this.path+'dialogs/paste.js'));y.on('key',q,y);y.on('contentDom',function(){var A=y.document.getBody();A.on(!c?'paste':'beforepaste',function(B){if(u)return;var C=B.data&&B.data.$;if(c&&C&&!C.ctrlKey)return;var D={mode:'html'};y.fire('beforePaste',D);s.call(y,B,D.mode,function(E){if(!(E=e.trim(E.replace(/<span[^>]+data-cke-bookmark[^<]*?<\/span>/ig,''))))return;var F={};F[D.mode]=E;y.fire('paste',F);});});if(c){A.on('contextmenu',function(){u=1;setTimeout(function(){u=0;},0);});A.on('paste',function(B){if(!y.document.getById('cke_pastebin')){B.data.preventDefault();u=0;p.exec(y);}});}A.on('beforecut',function(){!u&&t(y);});A.on('mouseup',function(){setTimeout(function(){x.call(y);},0);},y);A.on('keyup',x,y);});y.on('selectionChange',function(A){v=A.data.selection.getRanges()[0].checkReadOnly();x.call(y);});if(y.contextMenu)y.contextMenu.addListener(function(A,B){var C=B.getRanges()[0].checkReadOnly();return{cut:w('Cut',y),copy:w('Copy',y),paste:w('Paste',y)};});}});})();j.add('colorbutton',{requires:['panelbutton','floatpanel','styles'],init:function(m){var n=m.config,o=m.lang.colorButton,p; if(!b.hc){q('TextColor','fore',o.textColorTitle);q('BGColor','back',o.bgColorTitle);}function q(t,u,v){var w=e.getNextId()+'_colorBox';m.ui.add(t,'panelbutton',{label:v,title:v,className:'cke_button_'+t.toLowerCase(),modes:{wysiwyg:1},panel:{css:m.skin.editor.css,attributes:{role:'listbox','aria-label':o.panelTitle}},onBlock:function(x,y){y.autoSize=true;y.element.addClass('cke_colorblock');y.element.setHtml(r(x,u,w));y.element.getDocument().getBody().setStyle('overflow','hidden');k.fire('ready',this);var z=y.keys,A=m.lang.dir=='rtl';z[A?37:39]='next';z[40]='next';z[9]='next';z[A?39:37]='prev';z[38]='prev';z[2228224+9]='prev';z[32]='click';},onOpen:function(){var x=m.getSelection(),y=x&&x.getStartElement(),z=new d.elementPath(y),A;y=z.block||z.blockLimit||m.document.getBody();do A=y&&y.getComputedStyle(u=='back'?'background-color':'color')||'transparent';while(u=='back'&&A=='transparent'&&y&&(y=y.getParent()));if(!A||A=='transparent')A='#ffffff';this._.panel._.iframe.getFrameDocument().getById(w).setStyle('background-color',A);}});};function r(t,u,v){var w=[],x=n.colorButton_colors.split(','),y=e.addFunction(function(E,F){if(E=='?'){var G=arguments.callee;function H(J){this.removeListener('ok',H);this.removeListener('cancel',H);J.name=='ok'&&G(this.getContentElement('picker','selectedColor').getValue(),F);};m.openDialog('colordialog',function(){this.on('ok',H);this.on('cancel',H);});return;}m.focus();t.hide(false);m.fire('saveSnapshot');new a.style(n['colorButton_'+F+'Style'],{color:'inherit'}).remove(m.document);if(E){var I=n['colorButton_'+F+'Style'];I.childRule=F=='back'?function(J){return s(J);}:function(J){return!(J.is('a')||J.getElementsByTag('a').count())||s(J);};new a.style(I,{color:E}).apply(m.document);}m.fire('saveSnapshot');});w.push('<a class="cke_colorauto" _cke_focus=1 hidefocus=true title="',o.auto,'" onclick="CKEDITOR.tools.callFunction(',y,",null,'",u,"');return false;\" href=\"javascript:void('",o.auto,'\')" role="option"><table role="presentation" cellspacing=0 cellpadding=0 width="100%"><tr><td><span class="cke_colorbox" id="',v,'"></span></td><td colspan=7 align=center>',o.auto,'</td></tr></table></a><table role="presentation" cellspacing=0 cellpadding=0 width="100%">');for(var z=0;z<x.length;z++){if(z%8===0)w.push('</tr><tr>');var A=x[z].split('/'),B=A[0],C=A[1]||B;if(!A[1])B='#'+B.replace(/^(.)(.)(.)$/,'$1$1$2$2$3$3');var D=m.lang.colors[C]||C;w.push('<td><a class="cke_colorbox" _cke_focus=1 hidefocus=true title="',D,'" onclick="CKEDITOR.tools.callFunction(',y,",'",B,"','",u,"'); return false;\" href=\"javascript:void('",D,'\')" role="option"><span class="cke_colorbox" style="background-color:#',C,'"></span></a></td>'); }if(n.colorButton_enableMore===undefined||n.colorButton_enableMore)w.push('</tr><tr><td colspan=8 align=center><a class="cke_colormore" _cke_focus=1 hidefocus=true title="',o.more,'" onclick="CKEDITOR.tools.callFunction(',y,",'?','",u,"');return false;\" href=\"javascript:void('",o.more,"')\"",' role="option">',o.more,'</a></td>');w.push('</tr></table>');return w.join('');};function s(t){return t.getAttribute('contentEditable')=='false'||t.getAttribute('data-nostyle');};}});i.colorButton_colors='000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF';i.colorButton_foreStyle={element:'span',styles:{color:'#(color)'},overrides:[{element:'font',attributes:{color:null}}]};i.colorButton_backStyle={element:'span',styles:{'background-color':'#(color)'}};j.colordialog={requires:['dialog'],init:function(m){m.addCommand('colordialog',new a.dialogCommand('colordialog'));a.dialog.add('colordialog',this.path+'dialogs/colordialog.js');}};j.add('colordialog',j.colordialog);j.add('contextmenu',{requires:['menu'],onLoad:function(){j.contextMenu=e.createClass({base:a.menu,$:function(m){this.base.call(this,m,{panel:{className:m.skinClass+' cke_contextmenu',attributes:{'aria-label':m.lang.contextmenu.options}}});},proto:{addTarget:function(m,n){if(b.opera&&!('oncontextmenu' in document.body)){var o;m.on('mousedown',function(s){s=s.data;if(s.$.button!=2){if(s.getKeystroke()==1114112+1)m.fire('contextmenu',s);return;}if(n&&(b.mac?s.$.metaKey:s.$.ctrlKey))return;var t=s.getTarget();if(!o){var u=t.getDocument();o=u.createElement('input');o.$.type='button';u.getBody().append(o);}o.setAttribute('style','position:absolute;top:'+(s.$.clientY-2)+'px;left:'+(s.$.clientX-2)+'px;width:5px;height:5px;opacity:0.01');});m.on('mouseup',function(s){if(o){o.remove();o=undefined;m.fire('contextmenu',s.data);}});}m.on('contextmenu',function(s){var t=s.data;if(n&&(b.webkit?p:b.mac?t.$.metaKey:t.$.ctrlKey))return;t.preventDefault();var u=t.getTarget().getDocument().getDocumentElement(),v=t.$.clientX,w=t.$.clientY;e.setTimeout(function(){this.open(u,null,v,w);},c?200:0,this);},this);if(b.opera)m.on('keypress',function(s){var t=s.data;if(t.$.keyCode===0)t.preventDefault();});if(b.webkit){var p,q=function(s){p=b.mac?s.data.$.metaKey:s.data.$.ctrlKey;},r=function(){p=0;};m.on('keydown',q);m.on('keyup',r); m.on('contextmenu',r);}},open:function(m,n,o,p){this.editor.focus();m=m||a.document.getDocumentElement();this.show(m,n,o,p);}}});},beforeInit:function(m){m.contextMenu=new j.contextMenu(m);m.addCommand('contextMenu',{exec:function(){m.contextMenu.open(m.document.getBody());}});}});(function(){function m(o){var p=this.att,q=o&&o.hasAttribute(p)&&o.getAttribute(p)||'';if(q!==undefined)this.setValue(q);};function n(){var o;for(var p=0;p<arguments.length;p++){if(arguments[p] instanceof h){o=arguments[p];break;}}if(o){var q=this.att,r=this.getValue();if(r)o.setAttribute(q,r);else o.removeAttribute(q,r);}};j.add('dialogadvtab',{createAdvancedTab:function(o,p){if(!p)p={id:1,dir:1,classes:1,styles:1};var q=o.lang.common,r={id:'advanced',label:q.advancedTab,title:q.advancedTab,elements:[{type:'vbox',padding:1,children:[]}]},s=[];if(p.id||p.dir){if(p.id)s.push({id:'advId',att:'id',type:'text',label:q.id,setup:m,commit:n});if(p.dir)s.push({id:'advLangDir',att:'dir',type:'select',label:q.langDir,'default':'',style:'width:100%',items:[[q.notSet,''],[q.langDirLTR,'ltr'],[q.langDirRTL,'rtl']],setup:m,commit:n});r.elements[0].children.push({type:'hbox',widths:['50%','50%'],children:[].concat(s)});}if(p.styles||p.classes){s=[];if(p.styles)s.push({id:'advStyles',att:'style',type:'text',label:q.styles,'default':'',validate:a.dialog.validate.inlineStyle(q.invalidInlineStyle),onChange:function(){},getStyle:function(t,u){var v=this.getValue().match(new RegExp('(?:^|;)\\s*'+t+'\\s*:\\s*([^;]*)','i'));return v?v[1]:u;},updateStyle:function(t,u){var v=this.getValue(),w=o.document.createElement('span');w.setAttribute('style',v);w.setStyle(t,u);v=e.normalizeCssText(w.getAttribute('style'));this.setValue(v,1);},setup:m,commit:n});if(p.classes)s.push({type:'hbox',widths:['45%','55%'],children:[{id:'advCSSClasses',att:'class',type:'text',label:q.cssClasses,'default':'',setup:m,commit:n}]});r.elements[0].children.push({type:'hbox',widths:['50%','50%'],children:[].concat(s)});}return r;}});})();(function(){j.add('div',{requires:['editingblock','dialog','domiterator','styles'],init:function(m){var n=m.lang.div;m.addCommand('creatediv',new a.dialogCommand('creatediv'));m.addCommand('editdiv',new a.dialogCommand('editdiv'));m.addCommand('removediv',{exec:function(o){var p=o.getSelection(),q=p&&p.getRanges(),r,s=p.createBookmarks(),t,u=[];function v(x){var y=new d.elementPath(x),z=y.blockLimit,A=z.is('div')&&z;if(A&&!A.data('cke-div-added')){u.push(A);A.data('cke-div-added');}};for(var w=0;w<q.length; w++){r=q[w];if(r.collapsed)v(p.getStartElement());else{t=new d.walker(r);t.evaluator=v;t.lastForward();}}for(w=0;w<u.length;w++)u[w].remove(true);p.selectBookmarks(s);}});m.ui.addButton('CreateDiv',{label:n.toolbar,command:'creatediv'});if(m.addMenuItems){m.addMenuItems({editdiv:{label:n.edit,command:'editdiv',group:'div',order:1},removediv:{label:n.remove,command:'removediv',group:'div',order:5}});if(m.contextMenu)m.contextMenu.addListener(function(o,p){if(!o||o.isReadOnly())return null;var q=new d.elementPath(o),r=q.blockLimit;if(r&&r.getAscendant('div',true))return{editdiv:2,removediv:2};return null;});}a.dialog.add('creatediv',this.path+'dialogs/div.js');a.dialog.add('editdiv',this.path+'dialogs/div.js');}});})();(function(){var m={toolbarFocus:{editorFocus:false,readOnly:1,exec:function(o){var p=o._.elementsPath.idBase,q=a.document.getById(p+'0');q&&q.focus(c||b.air);}}},n='<span class="cke_empty"> </span>';j.add('elementspath',{requires:['selection'],init:function(o){var p='cke_path_'+o.name,q,r=function(){if(!q)q=a.document.getById(p);return q;},s='cke_elementspath_'+e.getNextNumber()+'_';o._.elementsPath={idBase:s,filters:[]};o.on('themeSpace',function(x){if(x.data.space=='bottom')x.data.html+='<span id="'+p+'_label" class="cke_voice_label">'+o.lang.elementsPath.eleLabel+'</span>'+'<div id="'+p+'" class="cke_path" role="group" aria-labelledby="'+p+'_label">'+n+'</div>';});function t(x){o.focus();var y=o._.elementsPath.list[x];if(y.is('body')){var z=new d.range(o.document);z.selectNodeContents(y);z.select();}else o.getSelection().selectElement(y);};var u=e.addFunction(t),v=e.addFunction(function(x,y){var z=o._.elementsPath.idBase,A;y=new d.event(y);var B=o.lang.dir=='rtl';switch(y.getKeystroke()){case B?39:37:case 9:A=a.document.getById(z+(x+1));if(!A)A=a.document.getById(z+'0');A.focus();return false;case B?37:39:case 2228224+9:A=a.document.getById(z+(x-1));if(!A)A=a.document.getById(z+(o._.elementsPath.list.length-1));A.focus();return false;case 27:o.focus();return false;case 13:case 32:t(x);return false;}return true;});o.on('selectionChange',function(x){var y=b,z=x.data.selection,A=z.getStartElement(),B=[],C=x.editor,D=C._.elementsPath.list=[],E=C._.elementsPath.filters;while(A){var F=0,G;if(A.data('cke-display-name'))G=A.data('cke-display-name');else if(A.data('cke-real-element-type'))G=A.data('cke-real-element-type');else G=A.getName();for(var H=0;H<E.length;H++){var I=E[H](A,G);if(I===false){F=1;break;}G=I||G;}if(!F){var J=D.push(A)-1,K=''; if(y.opera||y.gecko&&y.mac)K+=' onkeypress="return false;"';if(y.gecko)K+=' onblur="this.style.cssText = this.style.cssText;"';var L=C.lang.elementsPath.eleTitle.replace(/%1/,G);B.unshift('<a id="',s,J,'" href="javascript:void(\'',G,'\')" tabindex="-1" title="',L,'"'+(b.gecko&&b.version<10900?' onfocus="event.preventBubble();"':'')+' hidefocus="true" '+' onkeydown="return CKEDITOR.tools.callFunction(',v,',',J,', event );"'+K,' onclick="CKEDITOR.tools.callFunction('+u,',',J,'); return false;"',' role="button" aria-labelledby="'+s+J+'_label">',G,'<span id="',s,J,'_label" class="cke_label">'+L+'</span>','</a>');}if(G=='body')break;A=A.getParent();}var M=r();M.setHtml(B.join('')+n);C.fire('elementsPathUpdate',{space:M});});function w(){q&&q.setHtml(n);delete o._.elementsPath.list;};o.on('readOnly',w);o.on('contentDomUnload',w);o.addCommand('elementsPathFocus',m.toolbarFocus);}});})();(function(){j.add('enterkey',{requires:['keystrokes','indent'],init:function(t){t.addCommand('enter',{modes:{wysiwyg:1},editorFocus:false,exec:function(v){r(v);}});t.addCommand('shiftEnter',{modes:{wysiwyg:1},editorFocus:false,exec:function(v){q(v);}});var u=t.keystrokeHandler.keystrokes;u[13]='enter';u[2228224+13]='shiftEnter';}});j.enterkey={enterBlock:function(t,u,v,w){v=v||s(t);if(!v)return;var x=v.document,y=v.checkStartOfBlock(),z=v.checkEndOfBlock(),A=new d.elementPath(v.startContainer),B=A.block;if(y&&z){if(B&&(B.is('li')||B.getParent().is('li'))){t.execCommand('outdent');return;}if(B&&B.getParent().is('blockquote')){B.breakParent(B.getParent());if(!B.getPrevious().getFirst(d.walker.invisible(1)))B.getPrevious().remove();if(!B.getNext().getFirst(d.walker.invisible(1)))B.getNext().remove();v.moveToElementEditStart(B);v.select();return;}}else if(B&&B.is('pre')){if(!z){n(t,u,v,w);return;}}else if(B&&f.$captionBlock[B.getName()]){n(t,u,v,w);return;}var C=u==3?'div':'p',D=v.splitBlock(C);if(!D)return;var E=D.previousBlock,F=D.nextBlock,G=D.wasStartOfBlock,H=D.wasEndOfBlock,I;if(F){I=F.getParent();if(I.is('li')){F.breakParent(I);F.move(F.getNext(),1);}}else if(E&&(I=E.getParent())&&I.is('li')){E.breakParent(I);I=E.getNext();v.moveToElementEditStart(I);E.move(E.getPrevious());}if(!G&&!H){if(F.is('li')&&(I=F.getFirst(d.walker.invisible(true)))&&I.is&&I.is('ul','ol'))(c?x.createText('\xa0'):x.createElement('br')).insertBefore(I);if(F)v.moveToElementEditStart(F);}else{var J,K;if(E){if(E.is('li')||!(p.test(E.getName())||E.is('pre')))J=E.clone();}else if(F)J=F.clone();if(!J){if(I&&I.is('li'))J=I; else{J=x.createElement(C);if(E&&(K=E.getDirection()))J.setAttribute('dir',K);}}else if(w&&!J.is('li'))J.renameNode(C);var L=D.elementPath;if(L)for(var M=0,N=L.elements.length;M<N;M++){var O=L.elements[M];if(O.equals(L.block)||O.equals(L.blockLimit))break;if(f.$removeEmpty[O.getName()]){O=O.clone();J.moveChildren(O);J.append(O);}}if(!c)J.appendBogus();if(!J.getParent())v.insertNode(J);J.is('li')&&J.removeAttribute('value');if(c&&G&&(!H||!E.getChildCount())){v.moveToElementEditStart(H?E:J);v.select();}v.moveToElementEditStart(G&&!H?F:J);}if(!c)if(F){var P=x.createElement('span');P.setHtml(' ');v.insertNode(P);P.scrollIntoView();v.deleteContents();}else J.scrollIntoView();v.select();},enterBr:function(t,u,v,w){v=v||s(t);if(!v)return;var x=v.document,y=u==3?'div':'p',z=v.checkEndOfBlock(),A=new d.elementPath(t.getSelection().getStartElement()),B=A.block,C=B&&A.block.getName(),D=false;if(!w&&C=='li'){o(t,u,v,w);return;}if(!w&&z&&p.test(C)){var E,F;if(F=B.getDirection()){E=x.createElement('div');E.setAttribute('dir',F);E.insertAfter(B);v.setStart(E,0);}else{x.createElement('br').insertAfter(B);if(b.gecko)x.createText('').insertAfter(B);v.setStartAt(B.getNext(),c?3:1);}}else{var G;D=C=='pre';if(C=='pre'&&c&&b.version<8)G=x.createText('\r');else G=x.createElement('br');v.deleteContents();v.insertNode(G);if(c)v.setStartAt(G,4);else{x.createText('\ufeff').insertAfter(G);if(z)G.getParent().appendBogus();G.getNext().$.nodeValue='';v.setStartAt(G.getNext(),1);var H=null;if(!b.gecko){H=x.createElement('span');H.setHtml(' ');}else H=x.createElement('br');H.insertBefore(G.getNext());H.scrollIntoView();H.remove();}}v.collapse(true);v.select(D);}};var m=j.enterkey,n=m.enterBr,o=m.enterBlock,p=/^h[1-6]$/;function q(t){if(t.mode!='wysiwyg')return false;return r(t,t.config.shiftEnterMode,1);};function r(t,u,v){v=t.config.forceEnterMode||v;if(t.mode!='wysiwyg')return false;if(!u)u=t.config.enterMode;setTimeout(function(){t.fire('saveSnapshot');if(u==2)n(t,u,null,v);else o(t,u,null,v);t.fire('saveSnapshot');},0);return true;};function s(t){var u=t.getSelection().getRanges(true);for(var v=u.length-1;v>0;v--)u[v].deleteContents();return u[0];};})();(function(){var m='nbsp,gt,lt,amp',n='quot,iexcl,cent,pound,curren,yen,brvbar,sect,uml,copy,ordf,laquo,not,shy,reg,macr,deg,plusmn,sup2,sup3,acute,micro,para,middot,cedil,sup1,ordm,raquo,frac14,frac12,frac34,iquest,times,divide,fnof,bull,hellip,prime,Prime,oline,frasl,weierp,image,real,trade,alefsym,larr,uarr,rarr,darr,harr,crarr,lArr,uArr,rArr,dArr,hArr,forall,part,exist,empty,nabla,isin,notin,ni,prod,sum,minus,lowast,radic,prop,infin,ang,and,or,cap,cup,int,there4,sim,cong,asymp,ne,equiv,le,ge,sub,sup,nsub,sube,supe,oplus,otimes,perp,sdot,lceil,rceil,lfloor,rfloor,lang,rang,loz,spades,clubs,hearts,diams,circ,tilde,ensp,emsp,thinsp,zwnj,zwj,lrm,rlm,ndash,mdash,lsquo,rsquo,sbquo,ldquo,rdquo,bdquo,dagger,Dagger,permil,lsaquo,rsaquo,euro',o='Agrave,Aacute,Acirc,Atilde,Auml,Aring,AElig,Ccedil,Egrave,Eacute,Ecirc,Euml,Igrave,Iacute,Icirc,Iuml,ETH,Ntilde,Ograve,Oacute,Ocirc,Otilde,Ouml,Oslash,Ugrave,Uacute,Ucirc,Uuml,Yacute,THORN,szlig,agrave,aacute,acirc,atilde,auml,aring,aelig,ccedil,egrave,eacute,ecirc,euml,igrave,iacute,icirc,iuml,eth,ntilde,ograve,oacute,ocirc,otilde,ouml,oslash,ugrave,uacute,ucirc,uuml,yacute,thorn,yuml,OElig,oelig,Scaron,scaron,Yuml',p='Alpha,Beta,Gamma,Delta,Epsilon,Zeta,Eta,Theta,Iota,Kappa,Lambda,Mu,Nu,Xi,Omicron,Pi,Rho,Sigma,Tau,Upsilon,Phi,Chi,Psi,Omega,alpha,beta,gamma,delta,epsilon,zeta,eta,theta,iota,kappa,lambda,mu,nu,xi,omicron,pi,rho,sigmaf,sigma,tau,upsilon,phi,chi,psi,omega,thetasym,upsih,piv'; function q(r,s){var t={},u=[],v={nbsp:'\xa0',shy:'­',gt:'>',lt:'<',amp:'&',apos:"'",quot:'"'};r=r.replace(/\b(nbsp|shy|gt|lt|amp|apos|quot)(?:,|$)/g,function(A,B){var C=s?'&'+B+';':v[B],D=s?v[B]:'&'+B+';';t[C]=D;u.push(C);return '';});if(!s&&r){r=r.split(',');var w=document.createElement('div'),x;w.innerHTML='&'+r.join(';&')+';';x=w.innerHTML;w=null;for(var y=0;y<x.length;y++){var z=x.charAt(y);t[z]='&'+r[y]+';';u.push(z);}}t.regex=u.join(s?'|':'');return t;};j.add('entities',{afterInit:function(r){var s=r.config,t=r.dataProcessor,u=t&&t.htmlFilter;if(u){var v=[];if(s.basicEntities!==false)v.push(m);if(s.entities){if(v.length)v.push(n);if(s.entities_latin)v.push(o);if(s.entities_greek)v.push(p);if(s.entities_additional)v.push(s.entities_additional);}var w=q(v.join(',')),x=w.regex?'['+w.regex+']':'a^';delete w.regex;if(s.entities&&s.entities_processNumerical)x='[^ -~]|'+x;x=new RegExp(x,'g');function y(C){return s.entities_processNumerical=='force'||!w[C]?'&#'+C.charCodeAt(0)+';':w[C];};var z=q([m,'shy'].join(','),true),A=new RegExp(z.regex,'g');function B(C){return z[C];};u.addRules({text:function(C){return C.replace(A,B).replace(x,y);}});}}});})();i.basicEntities=true;i.entities=true;i.entities_latin=true;i.entities_greek=true;i.entities_additional='#39';(function(){function m(v,w){var x=[];if(!w)return v;else for(var y in w)x.push(y+'='+encodeURIComponent(w[y]));return v+(v.indexOf('?')!=-1?'&':'?')+x.join('&');};function n(v){v+='';var w=v.charAt(0).toUpperCase();return w+v.substr(1);};function o(v){var C=this;var w=C.getDialog(),x=w.getParentEditor();x._.filebrowserSe=C;var y=x.config['filebrowser'+n(w.getName())+'WindowWidth']||x.config.filebrowserWindowWidth||'80%',z=x.config['filebrowser'+n(w.getName())+'WindowHeight']||x.config.filebrowserWindowHeight||'70%',A=C.filebrowser.params||{};A.CKEditor=x.name;A.CKEditorFuncNum=x._.filebrowserFn;if(!A.langCode)A.langCode=x.langCode;var B=m(C.filebrowser.url,A);x.popup(B,y,z,x.config.filebrowserWindowFeatures||x.config.fileBrowserWindowFeatures);};function p(v){var y=this;var w=y.getDialog(),x=w.getParentEditor();x._.filebrowserSe=y;if(!w.getContentElement(y['for'][0],y['for'][1]).getInputElement().$.value)return false;if(!w.getContentElement(y['for'][0],y['for'][1]).getAction())return false;return true;};function q(v,w,x){var y=x.params||{};y.CKEditor=v.name;y.CKEditorFuncNum=v._.filebrowserFn;if(!y.langCode)y.langCode=v.langCode;w.action=m(x.url,y);w.filebrowser=x;};function r(v,w,x,y){var z,A;for(var B in y){z=y[B]; if(z.type=='hbox'||z.type=='vbox'||z.type=='fieldset')r(v,w,x,z.children);if(!z.filebrowser)continue;if(typeof z.filebrowser=='string'){var C={action:z.type=='fileButton'?'QuickUpload':'Browse',target:z.filebrowser};z.filebrowser=C;}if(z.filebrowser.action=='Browse'){var D=z.filebrowser.url;if(D===undefined){D=v.config['filebrowser'+n(w)+'BrowseUrl'];if(D===undefined)D=v.config.filebrowserBrowseUrl;}if(D){z.onClick=o;z.filebrowser.url=D;z.hidden=false;}}else if(z.filebrowser.action=='QuickUpload'&&z['for']){D=z.filebrowser.url;if(D===undefined){D=v.config['filebrowser'+n(w)+'UploadUrl'];if(D===undefined)D=v.config.filebrowserUploadUrl;}if(D){var E=z.onClick;z.onClick=function(F){var G=F.sender;if(E&&E.call(G,F)===false)return false;return p.call(G,F);};z.filebrowser.url=D;z.hidden=false;q(v,x.getContents(z['for'][0]).get(z['for'][1]),z.filebrowser);}}}};function s(v,w){var x=w.getDialog(),y=w.filebrowser.target||null;if(y){var z=y.split(':'),A=x.getContentElement(z[0],z[1]);if(A){A.setValue(v);x.selectPage(z[0]);}}};function t(v,w,x){if(x.indexOf(';')!==-1){var y=x.split(';');for(var z=0;z<y.length;z++){if(t(v,w,y[z]))return true;}return false;}var A=v.getContents(w).get(x).filebrowser;return A&&A.url;};function u(v,w){var A=this;var x=A._.filebrowserSe.getDialog(),y=A._.filebrowserSe['for'],z=A._.filebrowserSe.filebrowser.onSelect;if(y)x.getContentElement(y[0],y[1]).reset();if(typeof w=='function'&&w.call(A._.filebrowserSe)===false)return;if(z&&z.call(A._.filebrowserSe,v,w)===false)return;if(typeof w=='string'&&w)alert(w);if(v)s(v,A._.filebrowserSe);};j.add('filebrowser',{init:function(v,w){v._.filebrowserFn=e.addFunction(u,v);v.on('destroy',function(){e.removeFunction(this._.filebrowserFn);});}});a.on('dialogDefinition',function(v){var w=v.data.definition,x;for(var y in w.contents){if(x=w.contents[y]){r(v.editor,v.data.name,w,x.elements);if(x.hidden&&x.filebrowser)x.hidden=!t(w,x.id,x.filebrowser);}}});})();j.add('find',{requires:['dialog'],init:function(m){var n=j.find;m.ui.addButton('Find',{label:m.lang.findAndReplace.find,command:'find'});var o=m.addCommand('find',new a.dialogCommand('find'));o.canUndo=false;o.readOnly=1;m.ui.addButton('Replace',{label:m.lang.findAndReplace.replace,command:'replace'});var p=m.addCommand('replace',new a.dialogCommand('replace'));p.canUndo=false;a.dialog.add('find',this.path+'dialogs/find.js');a.dialog.add('replace',this.path+'dialogs/find.js');},requires:['styles']});i.find_highlight={element:'span',styles:{'background-color':'#004',color:'#fff'}}; (function(){var m=/\.swf(?:$|\?)/i;function n(p){var q=p.attributes;return q.type=='application/x-shockwave-flash'||m.test(q.src||'');};function o(p,q){return p.createFakeParserElement(q,'cke_flash','flash',true);};j.add('flash',{init:function(p){p.addCommand('flash',new a.dialogCommand('flash'));p.ui.addButton('Flash',{label:p.lang.common.flash,command:'flash'});a.dialog.add('flash',this.path+'dialogs/flash.js');p.addCss('img.cke_flash{background-image: url('+a.getUrl(this.path+'images/placeholder.png')+');'+'background-position: center center;'+'background-repeat: no-repeat;'+'border: 1px solid #a9a9a9;'+'width: 80px;'+'height: 80px;'+'}');if(p.addMenuItems)p.addMenuItems({flash:{label:p.lang.flash.properties,command:'flash',group:'flash'}});p.on('doubleclick',function(q){var r=q.data.element;if(r.is('img')&&r.data('cke-real-element-type')=='flash')q.data.dialog='flash';});if(p.contextMenu)p.contextMenu.addListener(function(q,r){if(q&&q.is('img')&&!q.isReadOnly()&&q.data('cke-real-element-type')=='flash')return{flash:2};});},afterInit:function(p){var q=p.dataProcessor,r=q&&q.dataFilter;if(r)r.addRules({elements:{'cke:object':function(s){var t=s.attributes,u=t.classid&&String(t.classid).toLowerCase();if(!u&&!n(s)){for(var v=0;v<s.children.length;v++){if(s.children[v].name=='cke:embed'){if(!n(s.children[v]))return null;return o(p,s);}}return null;}return o(p,s);},'cke:embed':function(s){if(!n(s))return null;return o(p,s);}}},5);},requires:['fakeobjects']});})();e.extend(i,{flashEmbedTagOnly:false,flashAddEmbedTag:true,flashConvertOnEdit:false});(function(){function m(n,o,p,q,r,s,t){var u=n.config,v=r.split(';'),w=[],x={};for(var y=0;y<v.length;y++){var z=v[y];if(z){z=z.split('/');var A={},B=v[y]=z[0];A[p]=w[y]=z[1]||B;x[B]=new a.style(t,A);x[B]._.definition.name=B;}else v.splice(y--,1);}n.ui.addRichCombo(o,{label:q.label,title:q.panelTitle,className:'cke_'+(p=='size'?'fontSize':'font'),panel:{css:n.skin.editor.css.concat(u.contentsCss),multiSelect:false,attributes:{'aria-label':q.panelTitle}},init:function(){this.startGroup(q.panelTitle);for(var C=0;C<v.length;C++){var D=v[C];this.add(D,x[D].buildPreview(),D);}},onClick:function(C){n.focus();n.fire('saveSnapshot');var D=x[C];if(this.getValue()==C)D.remove(n.document);else D.apply(n.document);n.fire('saveSnapshot');},onRender:function(){n.on('selectionChange',function(C){var D=this.getValue(),E=C.data.path,F=E.elements;for(var G=0,H;G<F.length;G++){H=F[G];for(var I in x){if(x[I].checkElementMatch(H,true)){if(I!=D)this.setValue(I); return;}}}this.setValue('',s);},this);}});};j.add('font',{requires:['richcombo','styles'],init:function(n){var o=n.config;m(n,'Font','family',n.lang.font,o.font_names,o.font_defaultLabel,o.font_style);m(n,'FontSize','size',n.lang.fontSize,o.fontSize_sizes,o.fontSize_defaultLabel,o.fontSize_style);}});})();i.font_names='Arial/Arial, Helvetica, sans-serif;Comic Sans MS/Comic Sans MS, cursive;Courier New/Courier New, Courier, monospace;Georgia/Georgia, serif;Lucida Sans Unicode/Lucida Sans Unicode, Lucida Grande, sans-serif;Tahoma/Tahoma, Geneva, sans-serif;Times New Roman/Times New Roman, Times, serif;Trebuchet MS/Trebuchet MS, Helvetica, sans-serif;Verdana/Verdana, Geneva, sans-serif';i.font_defaultLabel='';i.font_style={element:'span',styles:{'font-family':'#(family)'},overrides:[{element:'font',attributes:{face:null}}]};i.fontSize_sizes='8/8px;9/9px;10/10px;11/11px;12/12px;14/14px;16/16px;18/18px;20/20px;22/22px;24/24px;26/26px;28/28px;36/36px;48/48px;72/72px';i.fontSize_defaultLabel='';i.fontSize_style={element:'span',styles:{'font-size':'#(size)'},overrides:[{element:'font',attributes:{size:null}}]};j.add('format',{requires:['richcombo','styles'],init:function(m){var n=m.config,o=m.lang.format,p=n.format_tags.split(';'),q={};for(var r=0;r<p.length;r++){var s=p[r];q[s]=new a.style(n['format_'+s]);q[s]._.enterMode=m.config.enterMode;}m.ui.addRichCombo('Format',{label:o.label,title:o.panelTitle,className:'cke_format',panel:{css:m.skin.editor.css.concat(n.contentsCss),multiSelect:false,attributes:{'aria-label':o.panelTitle}},init:function(){this.startGroup(o.panelTitle);for(var t in q){var u=o['tag_'+t];this.add(t,q[t].buildPreview(u),u);}},onClick:function(t){m.focus();m.fire('saveSnapshot');var u=q[t],v=new d.elementPath(m.getSelection().getStartElement());u[u.checkActive(v)?'remove':'apply'](m.document);setTimeout(function(){m.fire('saveSnapshot');},0);},onRender:function(){m.on('selectionChange',function(t){var u=this.getValue(),v=t.data.path;for(var w in q){if(q[w].checkActive(v)){if(w!=u)this.setValue(w,m.lang.format['tag_'+w]);return;}}this.setValue('');},this);}});}});i.format_tags='p;h1;h2;h3;h4;h5;h6;pre;address;div';i.format_p={element:'p'};i.format_div={element:'div'};i.format_pre={element:'pre'};i.format_address={element:'address'};i.format_h1={element:'h1'};i.format_h2={element:'h2'};i.format_h3={element:'h3'};i.format_h4={element:'h4'};i.format_h5={element:'h5'};i.format_h6={element:'h6'};j.add('forms',{requires:['dialog'],init:function(m){var n=m.lang; m.addCss('form{border: 1px dotted #FF0000;padding: 2px;}\n');m.addCss('img.cke_hidden{background-image: url('+a.getUrl(this.path+'images/hiddenfield.gif')+');'+'background-position: center center;'+'background-repeat: no-repeat;'+'border: 1px solid #a9a9a9;'+'width: 16px !important;'+'height: 16px !important;'+'}');var o=function(q,r,s){m.addCommand(r,new a.dialogCommand(r));m.ui.addButton(q,{label:n.common[q.charAt(0).toLowerCase()+q.slice(1)],command:r});a.dialog.add(r,s);},p=this.path+'dialogs/';o('Form','form',p+'form.js');o('Checkbox','checkbox',p+'checkbox.js');o('Radio','radio',p+'radio.js');o('TextField','textfield',p+'textfield.js');o('Textarea','textarea',p+'textarea.js');o('Select','select',p+'select.js');o('Button','button',p+'button.js');o('ImageButton','imagebutton',j.getPath('image')+'dialogs/image.js');o('HiddenField','hiddenfield',p+'hiddenfield.js');if(m.addMenuItems)m.addMenuItems({form:{label:n.form.menu,command:'form',group:'form'},checkbox:{label:n.checkboxAndRadio.checkboxTitle,command:'checkbox',group:'checkbox'},radio:{label:n.checkboxAndRadio.radioTitle,command:'radio',group:'radio'},textfield:{label:n.textfield.title,command:'textfield',group:'textfield'},hiddenfield:{label:n.hidden.title,command:'hiddenfield',group:'hiddenfield'},imagebutton:{label:n.image.titleButton,command:'imagebutton',group:'imagebutton'},button:{label:n.button.title,command:'button',group:'button'},select:{label:n.select.title,command:'select',group:'select'},textarea:{label:n.textarea.title,command:'textarea',group:'textarea'}});if(m.contextMenu){m.contextMenu.addListener(function(q){if(q&&q.hasAscendant('form',true)&&!q.isReadOnly())return{form:2};});m.contextMenu.addListener(function(q){if(q&&!q.isReadOnly()){var r=q.getName();if(r=='select')return{select:2};if(r=='textarea')return{textarea:2};if(r=='input')switch(q.getAttribute('type')){case 'button':case 'submit':case 'reset':return{button:2};case 'checkbox':return{checkbox:2};case 'radio':return{radio:2};case 'image':return{imagebutton:2};default:return{textfield:2};}if(r=='img'&&q.data('cke-real-element-type')=='hiddenfield')return{hiddenfield:2};}});}m.on('doubleclick',function(q){var r=q.data.element;if(r.is('form'))q.data.dialog='form';else if(r.is('select'))q.data.dialog='select';else if(r.is('textarea'))q.data.dialog='textarea';else if(r.is('img')&&r.data('cke-real-element-type')=='hiddenfield')q.data.dialog='hiddenfield';else if(r.is('input'))switch(r.getAttribute('type')){case 'button':case 'submit':case 'reset':q.data.dialog='button'; break;case 'checkbox':q.data.dialog='checkbox';break;case 'radio':q.data.dialog='radio';break;case 'image':q.data.dialog='imagebutton';break;default:q.data.dialog='textfield';break;}});},afterInit:function(m){var n=m.dataProcessor,o=n&&n.htmlFilter,p=n&&n.dataFilter;if(c)o&&o.addRules({elements:{input:function(q){var r=q.attributes,s=r.type;if(!s)r.type='text';if(s=='checkbox'||s=='radio')r.value=='on'&&delete r.value;}}});if(p)p.addRules({elements:{input:function(q){if(q.attributes.type=='hidden')return m.createFakeParserElement(q,'cke_hidden','hiddenfield');}}});},requires:['image','fakeobjects']});if(c)h.prototype.hasAttribute=e.override(h.prototype.hasAttribute,function(m){return function(n){var q=this;var o=q.$.attributes.getNamedItem(n);if(q.getName()=='input')switch(n){case 'class':return q.$.className.length>0;case 'checked':return!!q.$.checked;case 'value':var p=q.getAttribute('type');return p=='checkbox'||p=='radio'?q.$.value!='on':q.$.value;}return m.apply(q,arguments);};});(function(){var m={canUndo:false,exec:function(o){var p=o.document.createElement('hr');o.insertElement(p);}},n='horizontalrule';j.add(n,{init:function(o){o.addCommand(n,m);o.ui.addButton('HorizontalRule',{label:o.lang.horizontalrule,command:n});}});})();(function(){var m=/^[\t\r\n ]*(?: |\xa0)$/,n='{cke_protected}';function o(U){var V=U.children.length,W=U.children[V-1];while(W&&W.type==3&&!e.trim(W.value))W=U.children[--V];return W;};function p(U){var V=U.parent;return V?e.indexOf(V.children,U):-1;};function q(U,V){var W=U.children,X=o(U);if(X){if((V||!c)&&X.type==1&&X.name=='br')W.pop();if(X.type==3&&m.test(X.value))W.pop();}};function r(U,V,W){if(!V&&(!W||typeof W=='function'&&W(U)===false))return false;if(V&&c&&(document.documentMode>7||U.name in f.tr||U.name in f.$listItem))return false;var X=o(U);return!X||X&&(X.type==1&&X.name=='br'||U.name=='form'&&X.name=='input');};function s(U,V){return function(W){q(W,!U);if(r(W,!U,V))if(U||c)W.add(new a.htmlParser.text('\xa0'));else W.add(new a.htmlParser.element('br',{}));};};var t=f,u=['caption','colgroup','col','thead','tfoot','tbody'],v=e.extend({},t.$block,t.$listItem,t.$tableContent);for(var w in v){if(!('br' in t[w]))delete v[w];}delete v.pre;var x={elements:{},attributeNames:[[/^on/,'data-cke-pa-on']]},y={elements:{}};for(w in v)y.elements[w]=s();var z={elementNames:[[/^cke:/,''],[/^\?xml:namespace$/,'']],attributeNames:[[/^data-cke-(saved|pa)-/,''],[/^data-cke-.*/,''],['hidefocus','']],elements:{$:function(U){var V=U.attributes; if(V){if(V['data-cke-temp'])return false;var W=['name','href','src'],X;for(var Y=0;Y<W.length;Y++){X='data-cke-saved-'+W[Y];X in V&&delete V[W[Y]];}}return U;},table:function(U){var V=U.children.slice(0);V.sort(function(W,X){var Y,Z;if(W.type==1&&X.type==W.type){Y=e.indexOf(u,W.name);Z=e.indexOf(u,X.name);}if(!(Y>-1&&Z>-1&&Y!=Z)){Y=p(W);Z=p(X);}return Y>Z?1:-1;});},embed:function(U){var V=U.parent;if(V&&V.name=='object'){var W=V.attributes.width,X=V.attributes.height;W&&(U.attributes.width=W);X&&(U.attributes.height=X);}},param:function(U){U.children=[];U.isEmpty=true;return U;},a:function(U){if(!(U.children.length||U.attributes.name||U.attributes['data-cke-saved-name']))return false;},span:function(U){if(U.attributes['class']=='Apple-style-span')delete U.name;},pre:function(U){c&&q(U);},html:function(U){delete U.attributes.contenteditable;delete U.attributes['class'];},body:function(U){delete U.attributes.spellcheck;delete U.attributes.contenteditable;},style:function(U){var V=U.children[0];V&&V.value&&(V.value=e.trim(V.value));if(!U.attributes.type)U.attributes.type='text/css';},title:function(U){var V=U.children[0];V&&(V.value=U.attributes['data-cke-title']||'');}},attributes:{'class':function(U,V){return e.ltrim(U.replace(/(?:^|\s+)cke_[^\s]*/g,''))||false;}}};if(c)z.attributes.style=function(U,V){return U.replace(/(^|;)([^\:]+)/g,function(W){return W.toLowerCase();});};function A(U){var V=U.attributes;if(V.contenteditable!='false')V['data-cke-editable']=V.contenteditable?'true':1;V.contenteditable='false';};function B(U){var V=U.attributes;switch(V['data-cke-editable']){case 'true':V.contenteditable='true';break;case '1':delete V.contenteditable;break;}};for(w in {input:1,textarea:1}){x.elements[w]=A;z.elements[w]=B;}var C=/<(a|area|img|input|source)\b([^>]*)>/gi,D=/\b(on\w+|href|src|name)\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:[^ "'>]+))/gi,E=/(?:<style(?=[ >])[^>]*>[\s\S]*<\/style>)|(?:<(:?link|meta|base)[^>]*>)/gi,F=/<cke:encoded>([^<]*)<\/cke:encoded>/gi,G=/(<\/?)((?:object|embed|param|html|body|head|title)[^>]*>)/gi,H=/(<\/?)cke:((?:html|body|head|title)[^>]*>)/gi,I=/<cke:(param|embed)([^>]*?)\/?>(?!\s*<\/cke:\1)/gi;function J(U){return U.replace(C,function(V,W,X){return '<'+W+X.replace(D,function(Y,Z){if(!/^on/.test(Z)&&X.indexOf('data-cke-saved-'+Z)==-1)return ' data-cke-saved-'+Y+' data-cke-'+a.rnd+'-'+Y;return Y;})+'>';});};function K(U){return U.replace(E,function(V){return '<cke:encoded>'+encodeURIComponent(V)+'</cke:encoded>';});};function L(U){return U.replace(F,function(V,W){return decodeURIComponent(W); });};function M(U){return U.replace(G,'$1cke:$2');};function N(U){return U.replace(H,'$1$2');};function O(U){return U.replace(I,'<cke:$1$2></cke:$1>');};function P(U){return U.replace(/(<pre\b[^>]*>)(\r\n|\n)/g,'$1$2$2');};function Q(U){return U.replace(/<!--(?!{cke_protected})[\s\S]+?-->/g,function(V){return '<!--'+n+'{C}'+encodeURIComponent(V).replace(/--/g,'%2D%2D')+'-->';});};function R(U){return U.replace(/<!--\{cke_protected\}\{C\}([\s\S]+?)-->/g,function(V,W){return decodeURIComponent(W);});};function S(U,V){var W=V._.dataStore;return U.replace(/<!--\{cke_protected\}([\s\S]+?)-->/g,function(X,Y){return decodeURIComponent(Y);}).replace(/\{cke_protected_(\d+)\}/g,function(X,Y){return W&&W[Y]||'';});};function T(U,V){var W=[],X=V.config.protectedSource,Y=V._.dataStore||(V._.dataStore={id:1}),Z=/<\!--\{cke_temp(comment)?\}(\d*?)-->/g,aa=[/<script[\s\S]*?<\/script>/gi,/<noscript[\s\S]*?<\/noscript>/gi].concat(X);U=U.replace(/<!--[\s\S]*?-->/g,function(ac){return '<!--{cke_tempcomment}'+(W.push(ac)-1)+'-->';});for(var ab=0;ab<aa.length;ab++)U=U.replace(aa[ab],function(ac){ac=ac.replace(Z,function(ad,ae,af){return W[af];});return/cke_temp(comment)?/.test(ac)?ac:'<!--{cke_temp}'+(W.push(ac)-1)+'-->';});U=U.replace(Z,function(ac,ad,ae){return '<!--'+n+(ad?'{C}':'')+encodeURIComponent(W[ae]).replace(/--/g,'%2D%2D')+'-->';});return U.replace(/(['"]).*?\1/g,function(ac){return ac.replace(/<!--\{cke_protected\}([\s\S]+?)-->/g,function(ad,ae){Y[Y.id]=decodeURIComponent(ae);return '{cke_protected_'+Y.id++ +'}';});});};j.add('htmldataprocessor',{requires:['htmlwriter'],init:function(U){var V=U.dataProcessor=new a.htmlDataProcessor(U);V.writer.forceSimpleAmpersand=U.config.forceSimpleAmpersand;V.dataFilter.addRules(x);V.dataFilter.addRules(y);V.htmlFilter.addRules(z);var W={elements:{}};for(w in v)W.elements[w]=s(true,U.config.fillEmptyBlocks);V.htmlFilter.addRules(W);},onLoad:function(){!('fillEmptyBlocks' in i)&&(i.fillEmptyBlocks=1);}});a.htmlDataProcessor=function(U){var V=this;V.editor=U;V.writer=new a.htmlWriter();V.dataFilter=new a.htmlParser.filter();V.htmlFilter=new a.htmlParser.filter();};a.htmlDataProcessor.prototype={toHtml:function(U,V){U=T(U,this.editor);U=J(U);U=K(U);U=M(U);U=O(U);U=P(U);var W=new h('div');W.setHtml('a'+U);U=W.getHtml().substr(1);U=U.replace(new RegExp(' data-cke-'+a.rnd+'-','ig'),' ');U=N(U);U=L(U);U=R(U);var X=a.htmlParser.fragment.fromHtml(U,V),Y=new a.htmlParser.basicWriter();X.writeHtml(Y,this.dataFilter);U=Y.getHtml(true);U=Q(U); return U;},toDataFormat:function(U,V){var W=this.writer,X=a.htmlParser.fragment.fromHtml(U,V);W.reset();X.writeHtml(W,this.htmlFilter);var Y=W.getHtml(true);Y=R(Y);Y=S(Y,this.editor);return Y;}};})();(function(){j.add('iframe',{requires:['dialog','fakeobjects'],init:function(m){var n='iframe',o=m.lang.iframe;a.dialog.add(n,this.path+'dialogs/iframe.js');m.addCommand(n,new a.dialogCommand(n));m.addCss('img.cke_iframe{background-image: url('+a.getUrl(this.path+'images/placeholder.png')+');'+'background-position: center center;'+'background-repeat: no-repeat;'+'border: 1px solid #a9a9a9;'+'width: 80px;'+'height: 80px;'+'}');m.ui.addButton('Iframe',{label:o.toolbar,command:n});m.on('doubleclick',function(p){var q=p.data.element;if(q.is('img')&&q.data('cke-real-element-type')=='iframe')p.data.dialog='iframe';});if(m.addMenuItems)m.addMenuItems({iframe:{label:o.title,command:'iframe',group:'image'}});if(m.contextMenu)m.contextMenu.addListener(function(p,q){if(p&&p.is('img')&&p.data('cke-real-element-type')=='iframe')return{iframe:2};});},afterInit:function(m){var n=m.dataProcessor,o=n&&n.dataFilter;if(o)o.addRules({elements:{iframe:function(p){return m.createFakeParserElement(p,'cke_iframe','iframe',true);}}});}});})();(function(){j.add('image',{requires:['dialog'],init:function(o){var p='image';a.dialog.add(p,this.path+'dialogs/image.js');o.addCommand(p,new a.dialogCommand(p));o.ui.addButton('Image',{label:o.lang.common.image,command:p});o.on('doubleclick',function(q){var r=q.data.element;if(r.is('img')&&!r.data('cke-realelement')&&!r.isReadOnly())q.data.dialog='image';});if(o.addMenuItems)o.addMenuItems({image:{label:o.lang.image.menu,command:'image',group:'image'}});if(o.contextMenu)o.contextMenu.addListener(function(q,r){if(m(o,q))return{image:2};});},afterInit:function(o){p('left');p('right');p('center');p('block');function p(q){var r=o.getCommand('justify'+q);if(r){if(q=='left'||q=='right')r.on('exec',function(s){var t=m(o),u;if(t){u=n(t);if(u==q){t.removeStyle('float');if(q==n(t))t.removeAttribute('align');}else t.setStyle('float',q);s.cancel();}});r.on('refresh',function(s){var t=m(o),u;if(t){u=n(t);this.setState(u==q?1:q=='right'||q=='left'?2:0);s.cancel();}});}};}});function m(o,p){if(!p){var q=o.getSelection();p=q.getType()==3&&q.getSelectedElement();}if(p&&p.is('img')&&!p.data('cke-realelement')&&!p.isReadOnly())return p;};function n(o){var p=o.getStyle('float');if(p=='inherit'||p=='none')p=0;if(!p)p=o.getAttribute('align');return p;};})();i.image_removeLinkByEmptyURL=true; (function(){var m={ol:1,ul:1},n=d.walker.whitespaces(true),o=d.walker.bookmark(false,true);function p(t){var B=this;if(t.editor.readOnly)return null;var u=t.editor,v=t.data.path,w=v&&v.contains(m),x=v.block||v.blockLimit;if(w)return B.setState(2);if(!B.useIndentClasses&&B.name=='indent')return B.setState(2);if(!x)return B.setState(0);if(B.useIndentClasses){var y=x.$.className.match(B.classNameRegex),z=0;if(y){y=y[1];z=B.indentClassMap[y];}if(B.name=='outdent'&&!z||B.name=='indent'&&z==u.config.indentClasses.length)return B.setState(0);return B.setState(2);}else{var A=parseInt(x.getStyle(r(x)),10);if(isNaN(A))A=0;if(A<=0)return B.setState(0);return B.setState(2);}};function q(t,u){var w=this;w.name=u;w.useIndentClasses=t.config.indentClasses&&t.config.indentClasses.length>0;if(w.useIndentClasses){w.classNameRegex=new RegExp('(?:^|\\s+)('+t.config.indentClasses.join('|')+')(?=$|\\s)');w.indentClassMap={};for(var v=0;v<t.config.indentClasses.length;v++)w.indentClassMap[t.config.indentClasses[v]]=v+1;}w.startDisabled=u=='outdent';};function r(t,u){return(u||t.getComputedStyle('direction'))=='ltr'?'margin-left':'margin-right';};function s(t){return t.type==1&&t.is('li');};q.prototype={exec:function(t){var u=this,v={};function w(M){var N=C.startContainer,O=C.endContainer;while(N&&!N.getParent().equals(M))N=N.getParent();while(O&&!O.getParent().equals(M))O=O.getParent();if(!N||!O)return;var P=N,Q=[],R=false;while(!R){if(P.equals(O))R=true;Q.push(P);P=P.getNext();}if(Q.length<1)return;var S=M.getParents(true);for(var T=0;T<S.length;T++){if(S[T].getName&&m[S[T].getName()]){M=S[T];break;}}var U=u.name=='indent'?1:-1,V=Q[0],W=Q[Q.length-1],X=j.list.listToArray(M,v),Y=X[W.getCustomData('listarray_index')].indent;for(T=V.getCustomData('listarray_index');T<=W.getCustomData('listarray_index');T++){X[T].indent+=U;if(U>0){var Z=X[T].parent;X[T].parent=new h(Z.getName(),Z.getDocument());}}for(T=W.getCustomData('listarray_index')+1;T<X.length&&X[T].indent>Y;T++)X[T].indent+=U;var aa=j.list.arrayToList(X,v,null,t.config.enterMode,M.getDirection());if(u.name=='outdent'){var ab;if((ab=M.getParent())&&ab.is('li')){var ac=aa.listNode.getChildren(),ad=[],ae=ac.count(),af;for(T=ae-1;T>=0;T--){if((af=ac.getItem(T))&&af.is&&af.is('li'))ad.push(af);}}}if(aa)aa.listNode.replace(M);if(ad&&ad.length)for(T=0;T<ad.length;T++){var ag=ad[T],ah=ag;while((ah=ah.getNext())&&ah.is&&ah.getName() in m){if(c&&!ag.getFirst(function(ai){return n(ai)&&o(ai);}))ag.append(C.document.createText('\xa0'));ag.append(ah); }ag.insertAfter(ab);}};function x(){var M=C.createIterator(),N=t.config.enterMode;M.enforceRealBlocks=true;M.enlargeBr=N!=2;var O;while(O=M.getNextParagraph(N==1?'p':'div'))y(O);};function y(M,N){if(M.getCustomData('indent_processed'))return false;if(u.useIndentClasses){var O=M.$.className.match(u.classNameRegex),P=0;if(O){O=O[1];P=u.indentClassMap[O];}if(u.name=='outdent')P--;else P++;if(P<0)return false;P=Math.min(P,t.config.indentClasses.length);P=Math.max(P,0);M.$.className=e.ltrim(M.$.className.replace(u.classNameRegex,''));if(P>0)M.addClass(t.config.indentClasses[P-1]);}else{var Q=r(M,N),R=parseInt(M.getStyle(Q),10);if(isNaN(R))R=0;var S=t.config.indentOffset||40;R+=(u.name=='indent'?1:-1)*S;if(R<0)return false;R=Math.max(R,0);R=Math.ceil(R/S)*S;M.setStyle(Q,R?R+(t.config.indentUnit||'px'):'');if(M.getAttribute('style')==='')M.removeAttribute('style');}h.setMarker(v,M,'indent_processed',1);return true;};var z=t.getSelection(),A=z.createBookmarks(1),B=z&&z.getRanges(1),C,D=B.createIterator();while(C=D.getNextRange()){var E=C.getCommonAncestor(),F=E;while(F&&!(F.type==1&&m[F.getName()]))F=F.getParent();if(!F){var G=C.getEnclosedNode();if(G&&G.type==1&&G.getName() in m){C.setStartAt(G,1);C.setEndAt(G,2);F=G;}}if(F&&C.startContainer.type==1&&C.startContainer.getName() in m){var H=new d.walker(C);H.evaluator=s;C.startContainer=H.next();}if(F&&C.endContainer.type==1&&C.endContainer.getName() in m){H=new d.walker(C);H.evaluator=s;C.endContainer=H.previous();}if(F){var I=F.getFirst(s),J=!!I.getNext(s),K=C.startContainer,L=I.equals(K)||I.contains(K);if(!(L&&(u.name=='indent'||u.useIndentClasses||parseInt(F.getStyle(r(F)),10))&&y(F,!J&&I.getDirection())))w(F);}else x();}h.clearAllMarkers(v);t.forceNextSelectionCheck();z.selectBookmarks(A);}};j.add('indent',{init:function(t){var u=t.addCommand('indent',new q(t,'indent')),v=t.addCommand('outdent',new q(t,'outdent'));t.ui.addButton('Indent',{label:t.lang.indent,command:'indent'});t.ui.addButton('Outdent',{label:t.lang.outdent,command:'outdent'});t.on('selectionChange',e.bind(p,u));t.on('selectionChange',e.bind(p,v));if(b.ie6Compat||b.ie7Compat)t.addCss('ul,ol{\tmargin-left: 0px;\tpadding-left: 40px;}');t.on('dirChanged',function(w){var x=new d.range(t.document);x.setStartBefore(w.data.node);x.setEndAfter(w.data.node);var y=new d.walker(x),z;while(z=y.next()){if(z.type==1){if(!z.equals(w.data.node)&&z.getDirection()){x.setStartAfter(z);y=new d.walker(x);continue;}var A=t.config.indentClasses;if(A){var B=w.data.dir=='ltr'?['_rtl','']:['','_rtl']; for(var C=0;C<A.length;C++){if(z.hasClass(A[C]+B[0])){z.removeClass(A[C]+B[0]);z.addClass(A[C]+B[1]);}}}var D=z.getStyle('margin-right'),E=z.getStyle('margin-left');D?z.setStyle('margin-left',D):z.removeStyle('margin-left');E?z.setStyle('margin-right',E):z.removeStyle('margin-right');}}});},requires:['domiterator','list']});})();(function(){function m(q,r){r=r===undefined||r;var s;if(r)s=q.getComputedStyle('text-align');else{while(!q.hasAttribute||!(q.hasAttribute('align')||q.getStyle('text-align'))){var t=q.getParent();if(!t)break;q=t;}s=q.getStyle('text-align')||q.getAttribute('align')||'';}s&&(s=s.replace(/(?:-(?:moz|webkit)-)?(?:start|auto)/i,''));!s&&r&&(s=q.getComputedStyle('direction')=='rtl'?'right':'left');return s;};function n(q){if(q.editor.readOnly)return;q.editor.getCommand(this.name).refresh(q.data.path);};function o(q,r,s){var u=this;u.editor=q;u.name=r;u.value=s;var t=q.config.justifyClasses;if(t){switch(s){case 'left':u.cssClassName=t[0];break;case 'center':u.cssClassName=t[1];break;case 'right':u.cssClassName=t[2];break;case 'justify':u.cssClassName=t[3];break;}u.cssClassRegex=new RegExp('(?:^|\\s+)(?:'+t.join('|')+')(?=$|\\s)');}};function p(q){var r=q.editor,s=new d.range(r.document);s.setStartBefore(q.data.node);s.setEndAfter(q.data.node);var t=new d.walker(s),u;while(u=t.next()){if(u.type==1){if(!u.equals(q.data.node)&&u.getDirection()){s.setStartAfter(u);t=new d.walker(s);continue;}var v=r.config.justifyClasses;if(v)if(u.hasClass(v[0])){u.removeClass(v[0]);u.addClass(v[2]);}else if(u.hasClass(v[2])){u.removeClass(v[2]);u.addClass(v[0]);}var w='text-align',x=u.getStyle(w);if(x=='left')u.setStyle(w,'right');else if(x=='right')u.setStyle(w,'left');}}};o.prototype={exec:function(q){var C=this;var r=q.getSelection(),s=q.config.enterMode;if(!r)return;var t=r.createBookmarks(),u=r.getRanges(true),v=C.cssClassName,w,x,y=q.config.useComputedState;y=y===undefined||y;for(var z=u.length-1;z>=0;z--){w=u[z].createIterator();w.enlargeBr=s!=2;while(x=w.getNextParagraph(s==1?'p':'div')){x.removeAttribute('align');x.removeStyle('text-align');var A=v&&(x.$.className=e.ltrim(x.$.className.replace(C.cssClassRegex,''))),B=C.state==2&&(!y||m(x,true)!=C.value);if(v){if(B)x.addClass(v);else if(!A)x.removeAttribute('class');}else if(B)x.setStyle('text-align',C.value);}}q.focus();q.forceNextSelectionCheck();r.selectBookmarks(t);},refresh:function(q){var r=q.block||q.blockLimit;this.setState(r.getName()!='body'&&m(r,this.editor.config.useComputedState)==this.value?1:2); }};j.add('justify',{init:function(q){var r=new o(q,'justifyleft','left'),s=new o(q,'justifycenter','center'),t=new o(q,'justifyright','right'),u=new o(q,'justifyblock','justify');q.addCommand('justifyleft',r);q.addCommand('justifycenter',s);q.addCommand('justifyright',t);q.addCommand('justifyblock',u);q.ui.addButton('JustifyLeft',{label:q.lang.justify.left,command:'justifyleft'});q.ui.addButton('JustifyCenter',{label:q.lang.justify.center,command:'justifycenter'});q.ui.addButton('JustifyRight',{label:q.lang.justify.right,command:'justifyright'});q.ui.addButton('JustifyBlock',{label:q.lang.justify.block,command:'justifyblock'});q.on('selectionChange',e.bind(n,r));q.on('selectionChange',e.bind(n,t));q.on('selectionChange',e.bind(n,s));q.on('selectionChange',e.bind(n,u));q.on('dirChanged',p);},requires:['domiterator']});})();j.add('keystrokes',{beforeInit:function(m){m.keystrokeHandler=new a.keystrokeHandler(m);m.specialKeys={};},init:function(m){var n=m.config.keystrokes,o=m.config.blockedKeystrokes,p=m.keystrokeHandler.keystrokes,q=m.keystrokeHandler.blockedKeystrokes;for(var r=0;r<n.length;r++)p[n[r][0]]=n[r][1];for(r=0;r<o.length;r++)q[o[r]]=1;}});a.keystrokeHandler=function(m){var n=this;if(m.keystrokeHandler)return m.keystrokeHandler;n.keystrokes={};n.blockedKeystrokes={};n._={editor:m};return n;};(function(){var m,n=function(p){p=p.data;var q=p.getKeystroke(),r=this.keystrokes[q],s=this._.editor;m=s.fire('key',{keyCode:q})===true;if(!m){if(r){var t={from:'keystrokeHandler'};m=s.execCommand(r,t)!==false;}if(!m){var u=s.specialKeys[q];m=u&&u(s)===true;if(!m)m=!!this.blockedKeystrokes[q];}}if(m)p.preventDefault(true);return!m;},o=function(p){if(m){m=false;p.data.preventDefault(true);}};a.keystrokeHandler.prototype={attach:function(p){p.on('keydown',n,this);if(b.opera||b.gecko&&b.mac)p.on('keypress',o,this);}};})();i.blockedKeystrokes=[1114112+66,1114112+73,1114112+85];i.keystrokes=[[4456448+121,'toolbarFocus'],[4456448+122,'elementsPathFocus'],[2228224+121,'contextMenu'],[1114112+2228224+121,'contextMenu'],[1114112+90,'undo'],[1114112+89,'redo'],[1114112+2228224+90,'redo'],[1114112+76,'link'],[1114112+66,'bold'],[1114112+73,'italic'],[1114112+85,'underline'],[4456448+(c||b.webkit?189:109),'toolbarCollapse'],[4456448+48,'a11yHelp']];j.add('link',{requires:['fakeobjects','dialog'],init:function(m){m.addCommand('link',new a.dialogCommand('link'));m.addCommand('anchor',new a.dialogCommand('anchor'));m.addCommand('unlink',new a.unlinkCommand());m.addCommand('removeAnchor',new a.removeAnchorCommand()); m.ui.addButton('Link',{label:m.lang.link.toolbar,command:'link'});m.ui.addButton('Unlink',{label:m.lang.unlink,command:'unlink'});m.ui.addButton('Anchor',{label:m.lang.anchor.toolbar,command:'anchor'});a.dialog.add('link',this.path+'dialogs/link.js');a.dialog.add('anchor',this.path+'dialogs/anchor.js');var n=m.lang.dir=='rtl'?'right':'left',o='background:url('+a.getUrl(this.path+'images/anchor.gif')+') no-repeat '+n+' center;'+'border:1px dotted #00f;';m.addCss('a.cke_anchor,a.cke_anchor_empty'+(c&&b.version<7?'':',a[name],a[data-cke-saved-name]')+'{'+o+'padding-'+n+':18px;'+'cursor:auto;'+'}'+(c?'a.cke_anchor_empty{display:inline-block;}':'')+'img.cke_anchor'+'{'+o+'width:16px;'+'min-height:15px;'+'height:1.15em;'+'vertical-align:'+(b.opera?'middle':'text-bottom')+';'+'}');m.on('selectionChange',function(p){if(m.readOnly)return;var q=m.getCommand('unlink'),r=p.data.path.lastElement&&p.data.path.lastElement.getAscendant('a',true);if(r&&r.getName()=='a'&&r.getAttribute('href')&&r.getChildCount())q.setState(2);else q.setState(0);});m.on('doubleclick',function(p){var q=j.link.getSelectedLink(m)||p.data.element;if(!q.isReadOnly())if(q.is('a')){p.data.dialog=q.getAttribute('name')&&(!q.getAttribute('href')||!q.getChildCount())?'anchor':'link';m.getSelection().selectElement(q);}else if(j.link.tryRestoreFakeAnchor(m,q))p.data.dialog='anchor';});if(m.addMenuItems)m.addMenuItems({anchor:{label:m.lang.anchor.menu,command:'anchor',group:'anchor',order:1},removeAnchor:{label:m.lang.anchor.remove,command:'removeAnchor',group:'anchor',order:5},link:{label:m.lang.link.menu,command:'link',group:'link',order:1},unlink:{label:m.lang.unlink,command:'unlink',group:'link',order:5}});if(m.contextMenu)m.contextMenu.addListener(function(p,q){if(!p||p.isReadOnly())return null;var r=j.link.tryRestoreFakeAnchor(m,p);if(!r&&!(r=j.link.getSelectedLink(m)))return null;var s={};if(r.getAttribute('href')&&r.getChildCount())s={link:2,unlink:2};if(r&&r.hasAttribute('name'))s.anchor=s.removeAnchor=2;return s;});},afterInit:function(m){var n=m.dataProcessor,o=n&&n.dataFilter,p=n&&n.htmlFilter,q=m._.elementsPath&&m._.elementsPath.filters;if(o)o.addRules({elements:{a:function(r){var s=r.attributes;if(!s.name)return null;var t=!r.children.length;if(j.link.synAnchorSelector){var u=t?'cke_anchor_empty':'cke_anchor',v=s['class'];if(s.name&&(!v||v.indexOf(u)<0))s['class']=(v||'')+' '+u;if(t&&j.link.emptyAnchorFix){s.contenteditable='false';s['data-cke-editable']=1;}}else if(j.link.fakeAnchor&&t)return m.createFakeParserElement(r,'cke_anchor','anchor'); return null;}}});if(j.link.emptyAnchorFix&&p)p.addRules({elements:{a:function(r){delete r.attributes.contenteditable;}}});if(q)q.push(function(r,s){if(s=='a')if(j.link.tryRestoreFakeAnchor(m,r)||r.getAttribute('name')&&(!r.getAttribute('href')||!r.getChildCount()))return 'anchor';});}});j.link={getSelectedLink:function(m){try{var n=m.getSelection();if(n.getType()==3){var o=n.getSelectedElement();if(o.is('a'))return o;}var p=n.getRanges(true)[0];p.shrink(2);var q=p.getCommonAncestor();return q.getAscendant('a',true);}catch(r){return null;}},fakeAnchor:b.opera||b.webkit,synAnchorSelector:c,emptyAnchorFix:c&&b.version<8,tryRestoreFakeAnchor:function(m,n){if(n&&n.data('cke-real-element-type')&&n.data('cke-real-element-type')=='anchor'){var o=m.restoreRealElement(n);if(o.data('cke-saved-name'))return o;}}};a.unlinkCommand=function(){};a.unlinkCommand.prototype={exec:function(m){var n=m.getSelection(),o=n.createBookmarks(),p=n.getRanges(),q,r;for(var s=0;s<p.length;s++){q=p[s].getCommonAncestor(true);r=q.getAscendant('a',true);if(!r)continue;p[s].selectNodeContents(r);}n.selectRanges(p);m.document.$.execCommand('unlink',false,null);n.selectBookmarks(o);},startDisabled:true};a.removeAnchorCommand=function(){};a.removeAnchorCommand.prototype={exec:function(m){var n=m.getSelection(),o=n.createBookmarks(),p;if(n&&(p=n.getSelectedElement())&&(j.link.fakeAnchor&&!p.getChildCount()?j.link.tryRestoreFakeAnchor(m,p):p.is('a')))p.remove(1);else if(p=j.link.getSelectedLink(m))if(p.hasAttribute('href')){p.removeAttributes({name:1,'data-cke-saved-name':1});p.removeClass('cke_anchor');}else p.remove(1);n.selectBookmarks(o);}};e.extend(i,{linkShowAdvancedTab:true,linkShowTargetTab:true});(function(){var m={ol:1,ul:1},n=/^[\n\r\t ]*$/,o=d.walker.whitespaces(),p=d.walker.bookmark(),q=function(N){return!(o(N)||p(N));},r=d.walker.bogus();function s(N){var O,P,Q;if(O=N.getDirection()){P=N.getParent();while(P&&!(Q=P.getDirection()))P=P.getParent();if(O==Q)N.removeAttribute('dir');}};function t(N,O){var P=N.getAttribute('style');P&&O.setAttribute('style',P.replace(/([^;])$/,'$1;')+(O.getAttribute('style')||''));};j.list={listToArray:function(N,O,P,Q,R){if(!m[N.getName()])return[];if(!Q)Q=0;if(!P)P=[];for(var S=0,T=N.getChildCount();S<T;S++){var U=N.getChild(S);if(U.type==1&&U.getName() in f.$list)j.list.listToArray(U,O,P,Q+1);if(U.$.nodeName.toLowerCase()!='li')continue;var V={parent:N,indent:Q,element:U,contents:[]};if(!R){V.grandparent=N.getParent();if(V.grandparent&&V.grandparent.$.nodeName.toLowerCase()=='li')V.grandparent=V.grandparent.getParent(); }else V.grandparent=R;if(O)h.setMarker(O,U,'listarray_index',P.length);P.push(V);for(var W=0,X=U.getChildCount(),Y;W<X;W++){Y=U.getChild(W);if(Y.type==1&&m[Y.getName()])j.list.listToArray(Y,O,P,Q+1,V.grandparent);else V.contents.push(Y);}}return P;},arrayToList:function(N,O,P,Q,R){if(!P)P=0;if(!N||N.length<P+1)return null;var S,T=N[P].parent.getDocument(),U=new d.documentFragment(T),V=null,W=P,X=Math.max(N[P].indent,0),Y=null,Z,aa,ab=Q==1?'p':'div';while(1){var ac=N[W],ad=ac.grandparent;Z=ac.element.getDirection(1);if(ac.indent==X){if(!V||N[W].parent.getName()!=V.getName()){V=N[W].parent.clone(false,1);R&&V.setAttribute('dir',R);U.append(V);}Y=V.append(ac.element.clone(0,1));if(Z!=V.getDirection(1))Y.setAttribute('dir',Z);for(S=0;S<ac.contents.length;S++)Y.append(ac.contents[S].clone(1,1));W++;}else if(ac.indent==Math.max(X,0)+1){var ae=N[W-1].element.getDirection(1),af=j.list.arrayToList(N,null,W,Q,ae!=Z?Z:null);if(!Y.getChildCount()&&c&&!(T.$.documentMode>7))Y.append(T.createText('\xa0'));Y.append(af.listNode);W=af.nextIndex;}else if(ac.indent==-1&&!P&&ad){if(m[ad.getName()]){Y=ac.element.clone(false,true);if(Z!=ad.getDirection(1))Y.setAttribute('dir',Z);}else Y=new d.documentFragment(T);var ag=ad.getDirection(1)!=Z,ah=ac.element,ai=ah.getAttribute('class'),aj=ah.getAttribute('style'),ak=Y.type==11&&(Q!=2||ag||aj||ai),al,am=ac.contents.length;for(S=0;S<am;S++){al=ac.contents[S];if(al.type==1&&al.isBlockBoundary()){if(ag&&!al.getDirection())al.setAttribute('dir',Z);t(ah,al);ai&&al.addClass(ai);}else if(ak){if(!aa){aa=T.createElement(ab);ag&&aa.setAttribute('dir',Z);}aj&&aa.setAttribute('style',aj);ai&&aa.setAttribute('class',ai);aa.append(al.clone(1,1));}Y.append(aa||al.clone(1,1));}if(Y.type==11&&W!=N.length-1){var an=Y.getLast();if(an&&an.type==1&&an.getAttribute('type')=='_moz')an.remove();if(!(an=Y.getLast(q)&&an.type==1&&an.getName() in f.$block))Y.append(T.createElement('br'));}var ao=Y.$.nodeName.toLowerCase();if(!c&&(ao=='div'||ao=='p'))Y.appendBogus();U.append(Y);V=null;W++;}else return null;aa=null;if(N.length<=W||Math.max(N[W].indent,0)<X)break;}if(O){var ap=U.getFirst(),aq=N[0].parent;while(ap){if(ap.type==1){h.clearMarkers(O,ap);if(ap.getName() in f.$listItem)s(ap);}ap=ap.getNextSourceNode();}}return{listNode:U,nextIndex:W};}};function u(N){if(N.editor.readOnly)return null;var O=N.data.path,P=O.blockLimit,Q=O.elements,R,S;for(S=0;S<Q.length&&(R=Q[S])&&!R.equals(P);S++){if(m[Q[S].getName()])return this.setState(this.type==Q[S].getName()?1:2);}return this.setState(2); };function v(N,O,P,Q){var R=j.list.listToArray(O.root,P),S=[];for(var T=0;T<O.contents.length;T++){var U=O.contents[T];U=U.getAscendant('li',true);if(!U||U.getCustomData('list_item_processed'))continue;S.push(U);h.setMarker(P,U,'list_item_processed',true);}var V=O.root,W=V.getDocument(),X,Y;for(T=0;T<S.length;T++){var Z=S[T].getCustomData('listarray_index');X=R[Z].parent;if(!X.is(this.type)){Y=W.createElement(this.type);X.copyAttributes(Y,{start:1,type:1});Y.removeStyle('list-style-type');R[Z].parent=Y;}}var aa=j.list.arrayToList(R,P,null,N.config.enterMode),ab,ac=aa.listNode.getChildCount();for(T=0;T<ac&&(ab=aa.listNode.getChild(T));T++){if(ab.getName()==this.type)Q.push(ab);}aa.listNode.replace(O.root);};var w=/^h[1-6]$/;function x(N,O,P){var Q=O.contents,R=O.root.getDocument(),S=[];if(Q.length==1&&Q[0].equals(O.root)){var T=R.createElement('div');Q[0].moveChildren&&Q[0].moveChildren(T);Q[0].append(T);Q[0]=T;}var U=O.contents[0].getParent();for(var V=0;V<Q.length;V++)U=U.getCommonAncestor(Q[V].getParent());var W=N.config.useComputedState,X,Y;W=W===undefined||W;for(V=0;V<Q.length;V++){var Z=Q[V],aa;while(aa=Z.getParent()){if(aa.equals(U)){S.push(Z);if(!Y&&Z.getDirection())Y=1;var ab=Z.getDirection(W);if(X!==null)if(X&&X!=ab)X=null;else X=ab;break;}Z=aa;}}if(S.length<1)return;var ac=S[S.length-1].getNext(),ad=R.createElement(this.type);P.push(ad);var ae,af;while(S.length){ae=S.shift();af=R.createElement('li');if(ae.is('pre')||w.test(ae.getName()))ae.appendTo(af);else{ae.copyAttributes(af);if(X&&ae.getDirection()){af.removeStyle('direction');af.removeAttribute('dir');}ae.moveChildren(af);ae.remove();}af.appendTo(ad);}if(X&&Y)ad.setAttribute('dir',X);if(ac)ad.insertBefore(ac);else ad.appendTo(U);};function y(N,O,P){var Q=j.list.listToArray(O.root,P),R=[];for(var S=0;S<O.contents.length;S++){var T=O.contents[S];T=T.getAscendant('li',true);if(!T||T.getCustomData('list_item_processed'))continue;R.push(T);h.setMarker(P,T,'list_item_processed',true);}var U=null;for(S=0;S<R.length;S++){var V=R[S].getCustomData('listarray_index');Q[V].indent=-1;U=V;}for(S=U+1;S<Q.length;S++){if(Q[S].indent>Q[S-1].indent+1){var W=Q[S-1].indent+1-Q[S].indent,X=Q[S].indent;while(Q[S]&&Q[S].indent>=X){Q[S].indent+=W;S++;}S--;}}var Y=j.list.arrayToList(Q,P,null,N.config.enterMode,O.root.getAttribute('dir')),Z=Y.listNode,aa,ab;function ac(ad){if((aa=Z[ad?'getFirst':'getLast']())&&!(aa.is&&aa.isBlockBoundary())&&(ab=O.root[ad?'getPrevious':'getNext'](d.walker.whitespaces(true)))&&!(ab.is&&ab.isBlockBoundary({br:1})))N.document.createElement('br')[ad?'insertBefore':'insertAfter'](aa); };ac(true);ac();Z.replace(O.root);};function z(N,O){this.name=N;this.type=O;};var A=d.walker.nodeType(1);function B(N,O,P,Q){var R,S;while(R=N[Q?'getLast':'getFirst'](A)){if((S=R.getDirection(1))!==O.getDirection(1))R.setAttribute('dir',S);R.remove();P?R[Q?'insertBefore':'insertAfter'](P):O.append(R,Q);}};z.prototype={exec:function(N){var aq=this;var O=N.document,P=N.config,Q=N.getSelection(),R=Q&&Q.getRanges(true);if(!R||R.length<1)return;if(aq.state==2){var S=O.getBody();if(!S.getFirst(q)){P.enterMode==2?S.appendBogus():R[0].fixBlock(1,P.enterMode==1?'p':'div');Q.selectRanges(R);}else{var T=R.length==1&&R[0],U=T&&T.getEnclosedNode();if(U&&U.is&&aq.type==U.getName())aq.setState(1);}}var V=Q.createBookmarks(true),W=[],X={},Y=R.createIterator(),Z=0;while((T=Y.getNextRange())&&++Z){var aa=T.getBoundaryNodes(),ab=aa.startNode,ac=aa.endNode;if(ab.type==1&&ab.getName()=='td')T.setStartAt(aa.startNode,1);if(ac.type==1&&ac.getName()=='td')T.setEndAt(aa.endNode,2);var ad=T.createIterator(),ae;ad.forceBrBreak=aq.state==2;while(ae=ad.getNextParagraph()){if(ae.getCustomData('list_block'))continue;else h.setMarker(X,ae,'list_block',1);var af=new d.elementPath(ae),ag=af.elements,ah=ag.length,ai=null,aj=0,ak=af.blockLimit,al;for(var am=ah-1;am>=0&&(al=ag[am]);am--){if(m[al.getName()]&&ak.contains(al)){ak.removeCustomData('list_group_object_'+Z);var an=al.getCustomData('list_group_object');if(an)an.contents.push(ae);else{an={root:al,contents:[ae]};W.push(an);h.setMarker(X,al,'list_group_object',an);}aj=1;break;}}if(aj)continue;var ao=ak;if(ao.getCustomData('list_group_object_'+Z))ao.getCustomData('list_group_object_'+Z).contents.push(ae);else{an={root:ao,contents:[ae]};h.setMarker(X,ao,'list_group_object_'+Z,an);W.push(an);}}}var ap=[];while(W.length>0){an=W.shift();if(aq.state==2){if(m[an.root.getName()])v.call(aq,N,an,X,ap);else x.call(aq,N,an,ap);}else if(aq.state==1&&m[an.root.getName()])y.call(aq,N,an,X);}for(am=0;am<ap.length;am++)C(ap[am]);h.clearAllMarkers(X);Q.selectBookmarks(V);N.focus();}};function C(N){var O;(O=function(P){var Q=N[P?'getPrevious':'getNext'](q);if(Q&&Q.type==1&&Q.is(N.getName())){B(N,Q,null,!P);N.remove();N=Q;}})();O(1);};var D=f,E=/[\t\r\n ]*(?: |\xa0)$/;function F(N,O){var P,Q=N.children,R=Q.length;for(var S=0;S<R;S++){P=Q[S];if(P.name&&P.name in O)return S;}return R;};function G(N){return function(O){var P=O.children,Q=F(O,D.$list),R=P[Q],S=R&&R.previous,T;if(S&&(S.name&&S.name=='br'||S.value&&(T=S.value.match(E)))){var U=S;if(!(T&&T.index)&&U==P[0])P[0]=N||c?new a.htmlParser.text('\xa0'):new a.htmlParser.element('br',{}); else if(U.name=='br')P.splice(Q-1,1);else U.value=U.value.replace(E,'');}};};var H={elements:{}};for(var I in D.$listItem)H.elements[I]=G();var J={elements:{}};for(I in D.$listItem)J.elements[I]=G(true);function K(N){return N.type==1&&(N.getName() in f.$block||N.getName() in f.$listItem)&&f[N.getName()]['#'];};function L(N,O,P){N.fire('saveSnapshot');P.enlarge(3);var Q=P.extractContents();O.trim(false,true);var R=O.createBookmark(),S=new d.elementPath(O.startContainer),T=S.block,U=S.lastElement.getAscendant('li',1)||T,V=new d.elementPath(P.startContainer),W=V.contains(f.$listItem),X=V.contains(f.$list),Y;if(T){var Z=T.getBogus();Z&&Z.remove();}else if(X){Y=X.getPrevious(q);if(Y&&r(Y))Y.remove();}Y=Q.getLast();if(Y&&Y.type==1&&Y.is('br'))Y.remove();var aa=O.startContainer.getChild(O.startOffset);if(aa)Q.insertBefore(aa);else O.startContainer.append(Q);if(W){var ab=M(W);if(ab)if(U.contains(W)){B(ab,W.getParent(),W);ab.remove();}else U.append(ab);}while(P.checkStartOfBlock()&&P.checkEndOfBlock()){V=new d.elementPath(P.startContainer);var ac=V.block,ad;if(ac.is('li')){ad=ac.getParent();if(ac.equals(ad.getLast(q))&&ac.equals(ad.getFirst(q)))ac=ad;}P.moveToPosition(ac,3);ac.remove();}var ae=P.clone(),af=N.document.getBody();ae.setEndAt(af,2);var ag=new d.walker(ae);ag.evaluator=function(ai){return q(ai)&&!r(ai);};var ah=ag.next();if(ah&&ah.type==1&&ah.getName() in f.$list)C(ah);O.moveToBookmark(R);O.select();N.selectionChange(1);N.fire('saveSnapshot');};function M(N){var O=N.getLast(q);return O&&O.type==1&&O.getName() in m?O:null;};j.add('list',{init:function(N){var O=N.addCommand('numberedlist',new z('numberedlist','ol')),P=N.addCommand('bulletedlist',new z('bulletedlist','ul'));N.ui.addButton('NumberedList',{label:N.lang.numberedlist,command:'numberedlist'});N.ui.addButton('BulletedList',{label:N.lang.bulletedlist,command:'bulletedlist'});N.on('selectionChange',e.bind(u,O));N.on('selectionChange',e.bind(u,P));N.on('key',function(Q){var R=Q.data.keyCode;if(N.mode=='wysiwyg'&&R in {8:1,46:1}){var S=N.getSelection(),T=S.getRanges()[0];if(!T.collapsed)return;var U=new d.elementPath(T.startContainer),V=R==8,W=N.document.getBody(),X=new d.walker(T.clone());X.evaluator=function(ai){return q(ai)&&!r(ai);};X.guard=function(ai,aj){return!(aj&&ai.type==1&&ai.is('table'));};var Y=T.clone();if(V){var Z,aa;if((Z=U.contains(m))&&T.checkBoundaryOfElement(Z,1)&&(Z=Z.getParent())&&Z.is('li')&&(Z=M(Z))){aa=Z;Z=Z.getPrevious(q);Y.moveToPosition(Z&&r(Z)?Z:aa,3);}else{X.range.setStartAt(W,1); X.range.setEnd(T.startContainer,T.startOffset);Z=X.previous();if(Z&&Z.type==1&&(Z.getName() in m||Z.is('li'))){if(!Z.is('li')){X.range.selectNodeContents(Z);X.reset();X.evaluator=K;Z=X.previous();}aa=Z;Y.moveToElementEditEnd(aa);}}if(aa){L(N,Y,T);Q.cancel();}else{var ab=U.contains(m),ac;if(ab&&T.checkBoundaryOfElement(ab,1)){ac=ab.getFirst(q);if(T.checkBoundaryOfElement(ac,1)){Z=ab.getPrevious(q);if(M(ac)){if(Z){T.moveToElementEditEnd(Z);T.select();}Q.cancel();}else{N.execCommand('outdent');Q.cancel();}}}}}else{var ad,ae;ac=T.startContainer.getAscendant('li',1);if(ac){X.range.setEndAt(W,2);var af=ac.getLast(q),ag=af&&K(af)?af:ac,ah=0;ad=X.next();if(ad&&ad.type==1&&ad.getName() in m&&ad.equals(af)){ah=1;ad=X.next();}else if(T.checkBoundaryOfElement(ag,2))ah=1;if(ah&&ad){ae=T.clone();ae.moveToElementEditStart(ad);L(N,Y,ae);Q.cancel();}}else{X.range.setEndAt(W,2);ad=X.next();if(ad&&ad.type==1&&ad.getName() in m){ad=ad.getFirst(q);if(U.block&&T.checkStartOfBlock()&&T.checkEndOfBlock()){U.block.remove();T.moveToElementEditStart(ad);T.select();Q.cancel();}else if(M(ad)){T.moveToElementEditStart(ad);T.select();Q.cancel();}else{ae=T.clone();ae.moveToElementEditStart(ad);L(N,Y,ae);Q.cancel();}}}}setTimeout(function(){N.selectionChange(1);});}});},afterInit:function(N){var O=N.dataProcessor;if(O){O.dataFilter.addRules(H);O.htmlFilter.addRules(J);}},requires:['domiterator']});})();(function(){j.liststyle={requires:['dialog'],init:function(m){m.addCommand('numberedListStyle',new a.dialogCommand('numberedListStyle'));a.dialog.add('numberedListStyle',this.path+'dialogs/liststyle.js');m.addCommand('bulletedListStyle',new a.dialogCommand('bulletedListStyle'));a.dialog.add('bulletedListStyle',this.path+'dialogs/liststyle.js');if(m.addMenuItems){m.addMenuGroup('list',108);m.addMenuItems({numberedlist:{label:m.lang.list.numberedTitle,group:'list',command:'numberedListStyle'},bulletedlist:{label:m.lang.list.bulletedTitle,group:'list',command:'bulletedListStyle'}});}if(m.contextMenu)m.contextMenu.addListener(function(n,o){if(!n||n.isReadOnly())return null;while(n){var p=n.getName();if(p=='ol')return{numberedlist:2};else if(p=='ul')return{bulletedlist:2};n=n.getParent();}return null;});}};j.add('liststyle',j.liststyle);})();(function(){function m(s){if(!s||s.type!=1||s.getName()!='form')return[];var t=[],u=['style','className'];for(var v=0;v<u.length;v++){var w=u[v],x=s.$.elements.namedItem(w);if(x){var y=new h(x);t.push([y,y.nextSibling]);y.remove();}}return t;};function n(s,t){if(!s||s.type!=1||s.getName()!='form')return; if(t.length>0)for(var u=t.length-1;u>=0;u--){var v=t[u][0],w=t[u][1];if(w)v.insertBefore(w);else v.appendTo(s);}};function o(s,t){var u=m(s),v={},w=s.$;if(!t){v['class']=w.className||'';w.className='';}v.inline=w.style.cssText||'';if(!t)w.style.cssText='position: static; overflow: visible';n(u);return v;};function p(s,t){var u=m(s),v=s.$;if('class' in t)v.className=t['class'];if('inline' in t)v.style.cssText=t.inline;n(u);};function q(s){var t=a.instances;for(var u in t){var v=t[u];if(v.mode=='wysiwyg'&&!v.readOnly){var w=v.document.getBody();w.setAttribute('contentEditable',false);w.setAttribute('contentEditable',true);}}if(s.focusManager.hasFocus){s.toolbox.focus();s.focus();}};function r(s){if(!c||b.version>6)return null;var t=h.createFromHtml('<iframe frameborder="0" tabindex="-1" src="javascript:void((function(){document.open();'+(b.isCustomDomain()?"document.domain='"+this.getDocument().$.domain+"';":'')+'document.close();'+'})())"'+' style="display:block;position:absolute;z-index:-1;'+'progid:DXImageTransform.Microsoft.Alpha(opacity=0);'+'"></iframe>');return s.append(t,true);};j.add('maximize',{init:function(s){var t=s.lang,u=a.document,v=u.getWindow(),w,x,y,z;function A(){var C=v.getViewPaneSize();z&&z.setStyles({width:C.width+'px',height:C.height+'px'});s.resize(C.width,C.height,null,true);};var B=2;s.addCommand('maximize',{modes:{wysiwyg:!b.iOS,source:!b.iOS},readOnly:1,editorFocus:false,exec:function(){var C=s.container.getChild(1),D=s.getThemeSpace('contents');if(s.mode=='wysiwyg'){var E=s.getSelection();w=E&&E.getRanges();x=v.getScrollPosition();}else{var F=s.textarea.$;w=!c&&[F.selectionStart,F.selectionEnd];x=[F.scrollLeft,F.scrollTop];}if(this.state==2){v.on('resize',A);y=v.getScrollPosition();var G=s.container;while(G=G.getParent()){G.setCustomData('maximize_saved_styles',o(G));G.setStyle('z-index',s.config.baseFloatZIndex-1);}D.setCustomData('maximize_saved_styles',o(D,true));C.setCustomData('maximize_saved_styles',o(C,true));var H={overflow:b.webkit?'':'hidden',width:0,height:0};u.getDocumentElement().setStyles(H);!b.gecko&&u.getDocumentElement().setStyle('position','fixed');!(b.gecko&&b.quirks)&&u.getBody().setStyles(H);c?setTimeout(function(){v.$.scrollTo(0,0);},0):v.$.scrollTo(0,0);C.setStyle('position',b.gecko&&b.quirks?'fixed':'absolute');C.$.offsetLeft;C.setStyles({'z-index':s.config.baseFloatZIndex-1,left:'0px',top:'0px'});z=r(C);C.addClass('cke_maximized');A();var I=C.getDocumentPosition();C.setStyles({left:-1*I.x+'px',top:-1*I.y+'px'}); b.gecko&&q(s);}else if(this.state==1){v.removeListener('resize',A);var J=[D,C];for(var K=0;K<J.length;K++){p(J[K],J[K].getCustomData('maximize_saved_styles'));J[K].removeCustomData('maximize_saved_styles');}G=s.container;while(G=G.getParent()){p(G,G.getCustomData('maximize_saved_styles'));G.removeCustomData('maximize_saved_styles');}c?setTimeout(function(){v.$.scrollTo(y.x,y.y);},0):v.$.scrollTo(y.x,y.y);C.removeClass('cke_maximized');if(b.webkit){C.setStyle('display','inline');setTimeout(function(){C.setStyle('display','block');},0);}if(z){z.remove();z=null;}s.fire('resize');}this.toggleState();var L=this.uiItems[0];if(L){var M=this.state==2?t.maximize:t.minimize,N=s.element.getDocument().getById(L._.id);N.getChild(1).setHtml(M);N.setAttribute('title',M);N.setAttribute('href','javascript:void("'+M+'");');}if(s.mode=='wysiwyg'){if(w){b.gecko&&q(s);s.getSelection().selectRanges(w);var O=s.getSelection().getStartElement();O&&O.scrollIntoView(true);}else v.$.scrollTo(x.x,x.y);}else{if(w){F.selectionStart=w[0];F.selectionEnd=w[1];}F.scrollLeft=x[0];F.scrollTop=x[1];}w=x=null;B=this.state;},canUndo:false});s.ui.addButton('Maximize',{label:t.maximize,command:'maximize'});s.on('mode',function(){var C=s.getCommand('maximize');C.setState(C.state==0?0:B);},null,null,100);}});})();j.add('newpage',{init:function(m){m.addCommand('newpage',{modes:{wysiwyg:1,source:1},exec:function(n){var o=this;n.setData(n.config.newpage_html||'',function(){setTimeout(function(){n.fire('afterCommandExec',{name:'newpage',command:o});n.selectionChange();},200);});n.focus();},async:true});m.ui.addButton('NewPage',{label:m.lang.newPage,command:'newpage'});}});j.add('pagebreak',{init:function(m){m.addCommand('pagebreak',j.pagebreakCmd);m.ui.addButton('PageBreak',{label:m.lang.pagebreak,command:'pagebreak'});var n=['{','background: url('+a.getUrl(this.path+'images/pagebreak.gif')+') no-repeat center center;','clear: both;','width:100%; _width:99.9%;','border-top: #999999 1px dotted;','border-bottom: #999999 1px dotted;','padding:0;','height: 5px;','cursor: default;','}'].join('').replace(/;/g,' !important;');m.addCss('div.cke_pagebreak'+n);b.opera&&m.on('contentDom',function(){m.document.on('click',function(o){var p=o.data.getTarget();if(p.is('div')&&p.hasClass('cke_pagebreak'))m.getSelection().selectElement(p);});});},afterInit:function(m){var n=m.lang.pagebreakAlt,o=m.dataProcessor,p=o&&o.dataFilter,q=o&&o.htmlFilter;if(q)q.addRules({attributes:{'class':function(r,s){var t=r.replace('cke_pagebreak',''); if(t!=r){var u=a.htmlParser.fragment.fromHtml('<span style="display: none;"> </span>');s.children.length=0;s.add(u);var v=s.attributes;delete v['aria-label'];delete v.contenteditable;delete v.title;}return t;}}},5);if(p)p.addRules({elements:{div:function(r){var s=r.attributes,t=s&&s.style,u=t&&r.children.length==1&&r.children[0],v=u&&u.name=='span'&&u.attributes.style;if(v&&/page-break-after\s*:\s*always/i.test(t)&&/display\s*:\s*none/i.test(v)){s.contenteditable='false';s['class']='cke_pagebreak';s['data-cke-display-name']='pagebreak';s['aria-label']=n;s.title=n;r.children.length=0;}}}});},requires:['fakeobjects']});j.pagebreakCmd={exec:function(m){var n=m.lang.pagebreakAlt,o=h.createFromHtml('<div style="page-break-after: always;"contenteditable="false" title="'+n+'" '+'aria-label="'+n+'" '+'data-cke-display-name="pagebreak" '+'class="cke_pagebreak">'+'</div>',m.document),p=m.getSelection().getRanges(true);m.fire('saveSnapshot');for(var q,r=p.length-1;r>=0;r--){q=p[r];if(r<p.length-1)o=o.clone(true);q.splitBlock('p');q.insertNode(o);if(r==p.length-1){var s=o.getNext();q.moveToPosition(o,4);if(!s||s.type==1&&!s.isEditable())q.fixBlock(true,m.config.enterMode==3?'div':'p');q.select();}}m.fire('saveSnapshot');}};(function(){function m(n){n.data.mode='html';};j.add('pastefromword',{init:function(n){var o=0,p=function(q){q&&q.removeListener();n.removeListener('beforePaste',m);o&&setTimeout(function(){o=0;},0);};n.addCommand('pastefromword',{canUndo:false,exec:function(){o=1;n.on('beforePaste',m);if(n.execCommand('paste','html')===false){n.on('dialogShow',function(q){q.removeListener();q.data.on('cancel',p);});n.on('dialogHide',function(q){q.data.removeListener('cancel',p);});}n.on('afterPaste',p);}});n.ui.addButton('PasteFromWord',{label:n.lang.pastefromword.toolbar,command:'pastefromword'});n.on('pasteState',function(q){n.getCommand('pastefromword').setState(q.data);});n.on('paste',function(q){var r=q.data,s;if((s=r.html)&&(o||/(class=\"?Mso|style=\"[^\"]*\bmso\-|w:WordDocument)/.test(s))){var t=this.loadFilterRules(function(){if(t)n.fire('paste',r);else if(!n.config.pasteFromWordPromptCleanup||o||confirm(n.lang.pastefromword.confirmCleanup))r.html=a.cleanWord(s,n);});t&&q.cancel();}},this);},loadFilterRules:function(n){var o=a.cleanWord;if(o)n();else{var p=a.getUrl(i.pasteFromWordCleanupFile||this.path+'filter/default.js');a.scriptLoader.load(p,n,null,true);}return!o;},requires:['clipboard']});})();(function(){var m={exec:function(n){var o=e.tryThese(function(){var p=window.clipboardData.getData('Text'); if(!p)throw 0;return p;});if(!o){n.openDialog('pastetext');return false;}else n.fire('paste',{text:o});return true;}};j.add('pastetext',{init:function(n){var o='pastetext',p=n.addCommand(o,m);n.ui.addButton('PasteText',{label:n.lang.pasteText.button,command:o});a.dialog.add(o,a.getUrl(this.path+'dialogs/pastetext.js'));if(n.config.forcePasteAsPlainText){n.on('beforeCommandExec',function(q){var r=q.data.commandData;if(q.data.name=='paste'&&r!='html'){n.execCommand('pastetext');q.cancel();}},null,null,0);n.on('beforePaste',function(q){q.data.mode='text';});}n.on('pasteState',function(q){n.getCommand('pastetext').setState(q.data);});},requires:['clipboard']});})();j.add('popup');e.extend(a.editor.prototype,{popup:function(m,n,o,p){n=n||'80%';o=o||'70%';if(typeof n=='string'&&n.length>1&&n.substr(n.length-1,1)=='%')n=parseInt(window.screen.width*parseInt(n,10)/100,10);if(typeof o=='string'&&o.length>1&&o.substr(o.length-1,1)=='%')o=parseInt(window.screen.height*parseInt(o,10)/100,10);if(n<640)n=640;if(o<420)o=420;var q=parseInt((window.screen.height-o)/2,10),r=parseInt((window.screen.width-n)/2,10);p=(p||'location=no,menubar=no,toolbar=no,dependent=yes,minimizable=no,modal=yes,alwaysRaised=yes,resizable=yes,scrollbars=yes')+',width='+n+',height='+o+',top='+q+',left='+r;var s=window.open('',null,p,true);if(!s)return false;try{var t=navigator.userAgent.toLowerCase();if(t.indexOf(' chrome/')==-1){s.moveTo(r,q);s.resizeTo(n,o);}s.focus();s.location.href=m;}catch(u){s=window.open(m,null,p,true);}return true;}});(function(){var m,n={modes:{wysiwyg:1,source:1},canUndo:false,readOnly:1,exec:function(p){var q,r=p.config,s=r.baseHref?'<base href="'+r.baseHref+'"/>':'',t=b.isCustomDomain();if(r.fullPage)q=p.getData().replace(/<head>/,'$&'+s).replace(/[^>]*(?=<\/title>)/,'$& — '+p.lang.preview);else{var u='<body ',v=p.document&&p.document.getBody();if(v){if(v.getAttribute('id'))u+='id="'+v.getAttribute('id')+'" ';if(v.getAttribute('class'))u+='class="'+v.getAttribute('class')+'" ';}u+='>';q=p.config.docType+'<html dir="'+p.config.contentsLangDirection+'">'+'<head>'+s+'<title>'+p.lang.preview+''+e.buildStyleHtml(p.config.contentsCss)+''+u+p.getData()+'';}var w=640,x=420,y=80;try{var z=window.screen;w=Math.round(z.width*0.8);x=Math.round(z.height*0.7);y=Math.round(z.width*0.1);}catch(D){}var A='';if(t){window._cke_htmlToLoad=q;A='javascript:void( (function(){document.open();document.domain="'+document.domain+'";'+'document.write( window.opener._cke_htmlToLoad );'+'document.close();'+'window.opener._cke_htmlToLoad = null;'+'})() )'; }if(b.gecko){window._cke_htmlToLoad=q;A=m+'preview.html';}var B=window.open(A,null,'toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+w+',height='+x+',left='+y);if(!t&&!b.gecko){var C=B.document;C.open();C.write(q);C.close();b.webkit&&setTimeout(function(){C.body.innerHTML+='';},0);}}},o='preview';j.add(o,{init:function(p){m=this.path;p.addCommand(o,n);p.ui.addButton('Preview',{label:p.lang.preview,command:o});}});})();j.add('print',{init:function(m){var n='print',o=m.addCommand(n,j.print);m.ui.addButton('Print',{label:m.lang.print,command:n});}});j.print={exec:function(m){if(b.opera)return;else if(b.gecko)m.window.$.print();else m.document.$.execCommand('Print');},canUndo:false,readOnly:1,modes:{wysiwyg:!b.opera}};j.add('removeformat',{requires:['selection'],init:function(m){m.addCommand('removeFormat',j.removeformat.commands.removeformat);m.ui.addButton('RemoveFormat',{label:m.lang.removeFormat,command:'removeFormat'});m._.removeFormat={filters:[]};}});j.removeformat={commands:{removeformat:{exec:function(m){var n=m._.removeFormatRegex||(m._.removeFormatRegex=new RegExp('^(?:'+m.config.removeFormatTags.replace(/,/g,'|')+')$','i')),o=m._.removeAttributes||(m._.removeAttributes=m.config.removeFormatAttributes.split(',')),p=j.removeformat.filter,q=m.getSelection().getRanges(1),r=q.createIterator(),s;while(s=r.getNextRange()){if(!s.collapsed)s.enlarge(1);var t=s.createBookmark(),u=t.startNode,v=t.endNode,w,x=function(z){var A=new d.elementPath(z),B=A.elements;for(var C=1,D;D=B[C];C++){if(D.equals(A.block)||D.equals(A.blockLimit))break;if(n.test(D.getName())&&p(m,D))z.breakParent(D);}};x(u);if(v){x(v);w=u.getNextSourceNode(true,1);while(w){if(w.equals(v))break;var y=w.getNextSourceNode(false,1);if(!(w.getName()=='img'&&w.data('cke-realelement'))&&p(m,w))if(n.test(w.getName()))w.remove(1);else{w.removeAttributes(o);m.fire('removeFormatCleanup',w);}w=y;}}s.moveToBookmark(t);}m.getSelection().selectRanges(q);}}},filter:function(m,n){var o=m._.removeFormat.filters;for(var p=0;pr.width&&(n.resize_minWidth=r.width);n.resize_minHeight>r.height&&(n.resize_minHeight=r.height);a.document.on('mousemove',u);a.document.on('mouseup',v);if(m.document){m.document.on('mousemove',u);m.document.on('mouseup',v);}});m.on('destroy',function(){e.removeFunction(w);});m.on('themeSpace',function(x){if(x.data.space=='bottom'){var y='';if(s&&!t)y=' cke_resizer_horizontal';if(!s&&t)y=' cke_resizer_vertical';var z='
    ';o=='ltr'&&y=='ltr'?x.data.html+=z:x.data.html=z+x.data.html;}},m,null,100);}}});(function(){var m={modes:{wysiwyg:1,source:1},readOnly:1,exec:function(o){var p=o.element.$.form;if(p)try{p.submit();}catch(q){if(p.submit.click)p.submit.click();}}},n='save';j.add(n,{init:function(o){var p=o.addCommand(n,m);p.modes={wysiwyg:!!o.element.$.form};o.ui.addButton('Save',{label:o.lang.save,command:n});}});})();(function(){var m='scaytcheck',n='';function o(t,u){var v=0,w;for(w in u){if(u[w]==t){v=1;break;}}return v;};var p=function(){var t=this,u=function(){if(q.instances[t.name])q.instances[t.name].destroy();var y=t.config,z={};z.srcNodeRef=t.document.getWindow().$.frameElement;z.assocApp='CKEDITOR.'+a.version+'@'+a.revision;z.customerid=y.scayt_customerid||'1:WvF0D4-UtPqN1-43nkD4-NKvUm2-daQqk3-LmNiI-z7Ysb4-mwry24-T8YrS3-Q2tpq2';z.customDictionaryIds=y.scayt_customDictionaryIds||'';z.userDictionaryName=y.scayt_userDictionaryName||''; z.sLang=y.scayt_sLang||'en_US';z.onLoad=function(){if(!(c&&b.version<8))this.addStyle(this.selectorCss(),'padding-bottom: 2px !important;');if(t.focusManager.hasFocus&&!q.isControlRestored(t))this.focus();};z.onBeforeChange=function(){if(q.getScayt(t)&&!t.checkDirty())setTimeout(function(){t.resetDirty();},0);};var A=window.scayt_custom_params;if(typeof A=='object')for(var B in A)z[B]=A[B];if(q.getControlId(t))z.id=q.getControlId(t);var C=new window.scayt(z);C.afterMarkupRemove.push(function(E){new h(E,C.document).mergeSiblings();});var D=q.instances[t.name];if(D){C.sLang=D.sLang;C.option(D.option());C.paused=D.paused;}q.instances[t.name]=C;try{C.setDisabled(q.isPaused(t)===false);}catch(E){}t.fire('showScaytState');};t.on('contentDom',function(y){u();});t.on('contentDomUnload',function(){var y=a.document.getElementsByTag('script'),z=/^dojoIoScript(\d+)$/i,A=/^https?:\/\/svc\.webspellchecker\.net\/spellcheck\/script\/ssrv\.cgi/i;for(var B=0;B=0){this.setState(0);q.loadEngine(t);}}};j.add('scayt',{requires:['menubutton'],beforeInit:function(t){var u=t.config.scayt_contextMenuItemsOrder||'suggest|moresuggest|control',v='';u=u.split('|');if(u&&u.length)for(var w=0;w tr > td, .%1 table.%2 > tr > th,','.%1 table.%2 > tbody > tr > td, .%1 table.%2 > tbody > tr > th,','.%1 table.%2 > thead > tr > td, .%1 table.%2 > thead > tr > th,','.%1 table.%2 > tfoot > tr > td, .%1 table.%2 > tfoot > tr > th','{','border : #d3d3d3 1px dotted','}']).join('');n=o.replace(/%2/g,m).replace(/%1/g,'cke_show_borders ');var p={preserveState:true,editorFocus:false,readOnly:1,exec:function(q){this.toggleState();this.refresh(q);},refresh:function(q){if(q.document){var r=this.state==1?'addClass':'removeClass';q.document.getBody()[r]('cke_show_borders');}}};j.add('showborders',{requires:['wysiwygarea'],modes:{wysiwyg:1},init:function(q){var r=q.addCommand('showborders',p);r.canUndo=false;if(q.config.startupShowBorders!==false)r.setState(1);q.addCss(n);q.on('mode',function(){if(r.state!=0)r.refresh(q);},null,null,100);q.on('contentDom',function(){if(r.state!=0)r.refresh(q);});q.on('removeFormatCleanup',function(s){var t=s.data;if(q.getCommand('showborders').state==1&&t.is('table')&&(!t.hasAttribute('border')||parseInt(t.getAttribute('border'),10)<=0))t.addClass(m);});},afterInit:function(q){var r=q.dataProcessor,s=r&&r.dataFilter,t=r&&r.htmlFilter; if(s)s.addRules({elements:{table:function(u){var v=u.attributes,w=v['class'],x=parseInt(v.border,10);if((!x||x<=0)&&(!w||w.indexOf(m)==-1))v['class']=(w||'')+' '+m;}}});if(t)t.addRules({elements:{table:function(u){var v=u.attributes,w=v['class'];w&&(v['class']=w.replace(m,'').replace(/\s{2}/,' ').replace(/^\s+|\s+$/,''));}}});}});a.on('dialogDefinition',function(q){var r=q.data.name;if(r=='table'||r=='tableProperties'){var s=q.data.definition,t=s.getContents('info'),u=t.get('txtBorder'),v=u.commit;u.commit=e.override(v,function(y){return function(z,A){y.apply(this,arguments);var B=parseInt(this.getValue(),10);A[!B||B<=0?'addClass':'removeClass'](m);};});var w=s.getContents('advanced'),x=w&&w.get('advCSSClasses');if(x){x.setup=e.override(x.setup,function(y){return function(){y.apply(this,arguments);this.setValue(this.getValue().replace(/cke_show_border/,''));};});x.commit=e.override(x.commit,function(y){return function(z,A){y.apply(this,arguments);if(!parseInt(A.getAttribute('border'),10))A.addClass('cke_show_border');};});}}});})();j.add('sourcearea',{requires:['editingblock'],init:function(m){var n=j.sourcearea,o=a.document.getWindow();m.on('editingBlockReady',function(){var p,q;m.addMode('source',{load:function(r,s){if(c&&b.version<8)r.setStyle('position','relative');m.textarea=p=new h('textarea');p.setAttributes({dir:'ltr',tabIndex:b.webkit?-1:m.tabIndex,role:'textbox','aria-label':m.lang.editorTitle.replace('%1',m.name)});p.addClass('cke_source');p.addClass('cke_enable_context_menu');m.readOnly&&p.setAttribute('readOnly','readonly');var t={width:b.ie7Compat?'99%':'100%',height:'100%',resize:'none',outline:'none','text-align':'left'};if(c){q=function(){p.hide();p.setStyle('height',r.$.clientHeight+'px');p.setStyle('width',r.$.clientWidth+'px');p.show();};m.on('resize',q);o.on('resize',q);setTimeout(q,0);}r.setHtml('');r.append(p);p.setStyles(t);m.fire('ariaWidget',p);p.on('blur',function(){m.focusManager.blur();});p.on('focus',function(){m.focusManager.focus();});m.mayBeDirty=true;this.loadData(s);var u=m.keystrokeHandler;if(u)u.attach(p);setTimeout(function(){m.mode='source';m.fire('mode',{previousMode:m._.previousMode});},b.gecko||b.webkit?100:0);},loadData:function(r){p.setValue(r);m.fire('dataReady');},getData:function(){return p.getValue();},getSnapshotData:function(){return p.getValue();},unload:function(r){p.clearCustomData();m.textarea=p=null;if(q){m.removeListener('resize',q);o.removeListener('resize',q);}if(c&&b.version<8)r.removeStyle('position'); },focus:function(){p.focus();}});});m.on('readOnly',function(){if(m.mode=='source')if(m.readOnly)m.textarea.setAttribute('readOnly','readonly');else m.textarea.removeAttribute('readOnly');});m.addCommand('source',n.commands.source);if(m.ui.addButton)m.ui.addButton('Source',{label:m.lang.source,command:'source'});m.on('mode',function(){m.getCommand('source').setState(m.mode=='source'?1:2);});}});j.sourcearea={commands:{source:{modes:{wysiwyg:1,source:1},editorFocus:false,readOnly:1,exec:function(m){if(m.mode=='wysiwyg')m.fire('saveSnapshot');m.getCommand('source').setState(0);m.setMode(m.mode=='source'?'wysiwyg':'source');},canUndo:false}}};(function(){j.add('stylescombo',{requires:['richcombo','styles'],init:function(n){var o=n.config,p=n.lang.stylesCombo,q={},r=[],s;function t(u){n.getStylesSet(function(v){if(!r.length){var w,x;for(var y=0,z=v.length;y0)return;if(S.type==1&&m.test(S.getName())&&!S.getCustomData('selected_cell')){h.setMarker(J,S,'selected_cell',true);I.push(S);}};for(var L=0;L1&&V&&U[Y]==V[Y]){Z=U[Y];Z.rowSpan+=1;}else{Z=new h(U[Y]).clone();Z.removeAttribute('rowSpan');!c&&Z.appendBogus();X.append(Z);Z=Z.$;}Y+=Z.colSpan-1;}H?X.insertBefore(S):X.insertAfter(S);};function q(G){if(G instanceof d.selection){var H=n(G),I=H[0],J=I.getAscendant('table'),K=e.buildTableMap(J),L=H[0].getParent(),M=L.$.rowIndex,N=H[H.length-1],O=N.getParent().$.rowIndex+N.$.rowSpan-1,P=[]; for(var Q=M;Q<=O;Q++){var R=K[Q],S=new h(J.$.rows[Q]);for(var T=0;T0?X[M-1]:null)||J.$.parentNode);for(Q=P.length;Q>=0;Q--)q(P[Q]);return Y;}else if(G instanceof h){J=G.getAscendant('table');if(J.$.rows.length==1)J.remove();else G.remove();}return null;};function r(G,H){var I=G.getParent(),J=I.$.cells,K=0;for(var L=0;LI)I=K;}return I;};function t(G,H){var I=n(G),J=I[0],K=J.getAscendant('table'),L=s(I,1),M=s(I),N=H?L:M,O=e.buildTableMap(K),P=[],Q=[],R=O.length;for(var S=0;S1&&Q[S]==P[S]){U=P[S];U.colSpan+=1;}else{U=new h(P[S]).clone();U.removeAttribute('colSpan');!c&&U.appendBogus();U[H?'insertBefore':'insertAfter'].call(U,new h(P[S]));U=U.$;}S+=U.rowSpan-1;}};function u(G){var H=n(G),I=H[0],J=H[H.length-1],K=I.getAscendant('table'),L=e.buildTableMap(K),M,N,O=[];for(var P=0,Q=L.length;P1){L=H[J-1]+1;break;}}if(!L)L=H[0]>0?H[0]-1:H[H.length-1]+1;var N=I.$.rows;for(J=0,K=N.length;J=0;K--)x(H[K]);if(J)z(J,true);else if(I)I.remove();}else if(G instanceof h){var L=G.getParent();if(L.getChildCount()==1)L.remove(); else G.remove();}};function y(G){var H=G.getBogus();H&&H.remove();G.trim();};function z(G,H){var I=new d.range(G.getDocument());if(!I['moveToElementEdit'+(H?'End':'Start')](G)){I.selectNodeContents(G);I.collapse(H?false:true);}I.select(true);};function A(G,H,I){var J=G[H];if(typeof I=='undefined')return J;for(var K=0;J&&K1)J+=K[H].rowSpan-1;}return I;};function C(G,H,I){var J=n(G),K;if((H?J.length!=1:J.length<2)||(K=G.getCommonAncestor())&&K.type==1&&K.is('table'))return false;var L,M=J[0],N=M.getAscendant('table'),O=e.buildTableMap(N),P=O.length,Q=O[0].length,R=M.getParent().$.rowIndex,S=A(O,R,M);if(H){var T;try{var U=parseInt(M.getAttribute('rowspan'),10)||1,V=parseInt(M.getAttribute('colspan'),10)||1;T=O[H=='up'?R-U:H=='down'?R+U:R][H=='left'?S-V:H=='right'?S+V:S];}catch(an){return false;}if(!T||M.$==T)return false;J[H=='up'||H=='left'?'unshift':'push'](new h(T));}var W=M.getDocument(),X=R,Y=0,Z=0,aa=!I&&new d.documentFragment(W),ab=0;for(var ac=0;ac=Q)M.removeAttribute('rowSpan');else M.$.rowSpan=Y;if(Y>=P)M.removeAttribute('colSpan');else M.$.colSpan=Z;var ak=new d.nodeList(N.$.rows),al=ak.count();for(ac=al-1;ac>=0;ac--){var am=ak.getItem(ac);if(!am.$.cells.length){am.remove();al++;continue;}}return M;}else return Y*Z==ab;};function D(G,H){var I=n(G);if(I.length>1)return false;else if(H)return true;var J=I[0],K=J.getParent(),L=K.getAscendant('table'),M=e.buildTableMap(L),N=K.$.rowIndex,O=A(M,N,J),P=J.$.rowSpan,Q,R,S,T;if(P>1){R=Math.ceil(P/2);S=Math.floor(P/2);T=N+R;var U=new h(L.$.rows[T]),V=A(M,T),W;Q=J.clone();for(var X=0;XO){Q.insertBefore(new h(W));break;}else W=null;}if(!W)U.append(Q,true);}else{S=R=1;U=K.clone();U.insertAfter(K);U.append(Q=J.clone());var Y=A(M,N);for(var Z=0;Z1)return false;else if(H)return true;var J=I[0],K=J.getParent(),L=K.getAscendant('table'),M=e.buildTableMap(L),N=K.$.rowIndex,O=A(M,N,J),P=J.$.colSpan,Q,R,S;if(P>1){R=Math.ceil(P/2);S=Math.floor(P/2);}else{S=R=1;var T=B(M,O);for(var U=0;U0?2:0}; }},tablecell_insertBefore:{label:H.cell.insertBefore,group:'tablecell',command:'cellInsertBefore',order:5},tablecell_insertAfter:{label:H.cell.insertAfter,group:'tablecell',command:'cellInsertAfter',order:10},tablecell_delete:{label:H.cell.deleteCell,group:'tablecell',command:'cellDelete',order:15},tablecell_merge:{label:H.cell.merge,group:'tablecell',command:'cellMerge',order:16},tablecell_merge_right:{label:H.cell.mergeRight,group:'tablecell',command:'cellMergeRight',order:17},tablecell_merge_down:{label:H.cell.mergeDown,group:'tablecell',command:'cellMergeDown',order:18},tablecell_split_horizontal:{label:H.cell.splitHorizontal,group:'tablecell',command:'cellHorizontalSplit',order:19},tablecell_split_vertical:{label:H.cell.splitVertical,group:'tablecell',command:'cellVerticalSplit',order:20},tablecell_properties:{label:H.cell.title,group:'tablecellproperties',command:'cellProperties',order:21},tablerow:{label:H.row.menu,group:'tablerow',order:1,getItems:function(){return{tablerow_insertBefore:2,tablerow_insertAfter:2,tablerow_delete:2};}},tablerow_insertBefore:{label:H.row.insertBefore,group:'tablerow',command:'rowInsertBefore',order:5},tablerow_insertAfter:{label:H.row.insertAfter,group:'tablerow',command:'rowInsertAfter',order:10},tablerow_delete:{label:H.row.deleteRow,group:'tablerow',command:'rowDelete',order:15},tablecolumn:{label:H.column.menu,group:'tablecolumn',order:1,getItems:function(){return{tablecolumn_insertBefore:2,tablecolumn_insertAfter:2,tablecolumn_delete:2};}},tablecolumn_insertBefore:{label:H.column.insertBefore,group:'tablecolumn',command:'columnInsertBefore',order:5},tablecolumn_insertAfter:{label:H.column.insertAfter,group:'tablecolumn',command:'columnInsertAfter',order:10},tablecolumn_delete:{label:H.column.deleteColumn,group:'tablecolumn',command:'columnDelete',order:15}});if(G.contextMenu)G.contextMenu.addListener(function(I,J){if(!I||I.isReadOnly())return null;while(I){if(I.getName() in F)return{tablecell:2,tablerow:2,tablecolumn:2};I=I.getParent();}return null;});},getSelectedCells:n};j.add('tabletools',j.tabletools);})();e.buildTableMap=function(m){var n=m.$.rows,o=-1,p=[];for(var q=0;qp&&(!s||!t||vt){s=v;t=u;}}else{if(q&&u==p){s=v;break;}if(ut)){s=v;t=u;}}}if(s)s.focus();};(function(){j.add('templates',{requires:['dialog'],init:function(o){a.dialog.add('templates',a.getUrl(this.path+'dialogs/templates.js'));o.addCommand('templates',new a.dialogCommand('templates')); o.ui.addButton('Templates',{label:o.lang.templates.button,command:'templates'});}});var m={},n={};a.addTemplates=function(o,p){m[o]=p;};a.getTemplates=function(o){return m[o];};a.loadTemplates=function(o,p){var q=[];for(var r=0,s=o.length;r':' style="display:none">');t.push('',o.lang.toolbars,'');var w=o.toolbox.toolbars,x=o.config.toolbar instanceof Array?o.config.toolbar:o.config['toolbar_'+o.config.toolbar];for(var y=0;y');v=0;}if(C==='/'){t.push('
    ');continue;}D=C.items||C;for(var E=0;E');B&&t.push('',B,'');t.push('');var I=w.push(A)-1;if(I>0){A.previous=w[I-1];A.previous.next=A;}}if(H){if(!v){t.push('');v=1;}}else if(v){t.push('');v=0;}var J=F.render(o,t);I=A.items.push(J)-1;if(I>0){J.previous=A.items[I-1];J.previous.next=J;}J.toolbar=A;J.onkey=q;J.onfocus=function(){if(!o.toolbox.focusCommandExecuted)o.focus();};}}if(v){t.push('');v=0;}if(A)t.push('');}t.push('');if(o.config.toolbarCanCollapse){var K=e.addFunction(function(){o.execCommand('toolbarCollapse');});o.on('destroy',function(){e.removeFunction(K);});var L=e.getNextId();o.addCommand('toolbarCollapse',{readOnly:1,exec:function(M){var N=a.document.getById(L),O=N.getPrevious(),P=M.getThemeSpace('contents'),Q=O.getParent(),R=parseInt(P.$.style.height,10),S=Q.$.offsetHeight,T=!O.isVisible();if(!T){O.hide();N.addClass('cke_toolbox_collapser_min');N.setAttribute('title',M.lang.toolbarExpand);}else{O.show();N.removeClass('cke_toolbox_collapser_min');N.setAttribute('title',M.lang.toolbarCollapse);}N.getFirst().setText(T?'▲':'◀');var U=Q.$.offsetHeight-S;P.setStyle('height',R-U+'px');M.fire('resize');},modes:{wysiwyg:1,source:1}});t.push('','','');}r.data.html+=t.join('');}});o.on('destroy',function(){var r,s=0,t,u,v;r=this.toolbox.toolbars;for(;s');return{};}};}});}});})();a.UI_SEPARATOR='separator';i.toolbarLocation='top';i.toolbar_Basic=[['Bold','Italic','-','NumberedList','BulletedList','-','Link','Unlink','-','About']];i.toolbar_Full=[{name:'document',items:['Source','-','Save','NewPage','DocProps','Preview','Print','-','Templates']},{name:'clipboard',items:['Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo']},{name:'editing',items:['Find','Replace','-','SelectAll','-','SpellChecker','Scayt']},{name:'forms',items:['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField']},'/',{name:'basicstyles',items:['Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat']},{name:'paragraph',items:['NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl']},{name:'links',items:['Link','Unlink','Anchor']},{name:'insert',items:['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe']},'/',{name:'styles',items:['Styles','Format','Font','FontSize']},{name:'colors',items:['TextColor','BGColor']},{name:'tools',items:['Maximize','ShowBlocks','-','About']}]; i.toolbar='Full';i.toolbarCanCollapse=true;(function(){j.add('undo',{requires:['selection','wysiwygarea'],init:function(s){var t=new o(s),u=s.addCommand('undo',{exec:function(){if(t.undo()){s.selectionChange();this.fire('afterUndo');}},state:0,canUndo:false}),v=s.addCommand('redo',{exec:function(){if(t.redo()){s.selectionChange();this.fire('afterRedo');}},state:0,canUndo:false});t.onChange=function(){u.setState(t.undoable()?2:0);v.setState(t.redoable()?2:0);};function w(x){if(t.enabled&&x.data.command.canUndo!==false)t.save();};s.on('beforeCommandExec',w);s.on('afterCommandExec',w);s.on('saveSnapshot',function(x){t.save(x.data&&x.data.contentOnly);});s.on('contentDom',function(){s.document.on('keydown',function(x){if(!x.data.$.ctrlKey&&!x.data.$.metaKey)t.type(x);});});s.on('beforeModeUnload',function(){s.mode=='wysiwyg'&&t.save(true);});s.on('mode',function(){t.enabled=s.readOnly?false:s.mode=='wysiwyg';t.onChange();});s.ui.addButton('Undo',{label:s.lang.undo,command:'undo'});s.ui.addButton('Redo',{label:s.lang.redo,command:'redo'});s.resetUndo=function(){t.reset();s.fire('saveSnapshot');};s.on('updateSnapshot',function(){if(t.currentImage)t.update();});}});j.undo={};var m=j.undo.Image=function(s){this.editor=s;s.fire('beforeUndoImage');var t=s.getSnapshot(),u=t&&s.getSelection();c&&t&&(t=t.replace(/\s+data-cke-expando=".*?"/g,''));this.contents=t;this.bookmarks=u&&u.createBookmarks2(true);s.fire('afterUndoImage');},n=/\b(?:href|src|name)="[^"]*?"/gi;m.prototype={equals:function(s,t){var u=this.contents,v=s.contents;if(c&&(b.ie7Compat||b.ie6Compat)){u=u.replace(n,'');v=v.replace(n,'');}if(u!=v)return false;if(t)return true;var w=this.bookmarks,x=s.bookmarks;if(w||x){if(!w||!x||w.length!=x.length)return false;for(var y=0;y25){this.save(false,null,false);this.modifiersCount=1;}}else if(!y){this.modifiersCount=0;this.typesCount++;if(this.typesCount>25){this.save(false,null,false);this.typesCount=1;}}},reset:function(){var s=this;s.lastKeystroke=0;s.snapshots=[];s.index=-1;s.limit=s.editor.config.undoStackSize||20;s.currentImage=null;s.hasUndo=false;s.hasRedo=false;s.resetType();},resetType:function(){var s=this;s.typing=false;delete s.lastKeystroke;s.typesCount=0;s.modifiersCount=0;},fireChange:function(){var s=this;s.hasUndo=!!s.getNextImage(true);s.hasRedo=!!s.getNextImage(false);s.resetType();s.onChange();},save:function(s,t,u){var w=this;var v=w.snapshots;if(!t)t=new m(w.editor);if(t.contents===false)return false;if(w.currentImage&&t.equals(w.currentImage,s))return false;v.splice(w.index+1,v.length-w.index-1);if(v.length==w.limit)v.shift();w.index=v.push(t)-1;w.currentImage=t;if(u!==false)w.fireChange();return true;},restoreImage:function(s){var w=this;var t=w.editor,u;if(s.bookmarks){t.focus();u=t.getSelection();}w.editor.loadSnapshot(s.contents);if(s.bookmarks)u.selectBookmarks(s.bookmarks);else if(c){var v=w.editor.document.getBody().$.createTextRange();v.collapse(true);v.select();}w.index=s.index;w.update();w.fireChange();},getNextImage:function(s){var x=this;var t=x.snapshots,u=x.currentImage,v,w;if(u)if(s)for(w=x.index-1;w>=0;w--){v=t[w];if(!u.equals(v,true)){v.index=w;return v;}}else for(w=x.index+1;w]*>)\s*<(p|div|address|h\d|center|pre)[^>]*>\s*(?:]*>| |\u00A0| )?\s*(:?<\/\2>)?\s*(?=$|<\/body>)/gi,n=d.walker.whitespaces(true),o=d.walker.bogus(true),p=function(E){return n(E)&&o(E);};function q(E){return E.isBlockBoundary()&&f.$empty[E.getName()];};function r(E){return function(F){if(this.mode=='wysiwyg'){this.focus(); var G=this.getSelection(),H=G.isLocked;H&&G.unlock();this.fire('saveSnapshot');E.call(this,F.data);H&&this.getSelection().lock();var I=this;setTimeout(function(){try{I.fire('saveSnapshot');}catch(J){setTimeout(function(){I.fire('saveSnapshot');},200);}},0);}};};function s(E){var N=this;if(N.dataProcessor)E=N.dataProcessor.toHtml(E);if(!E)return;var F=N.getSelection(),G=F.getRanges()[0];if(G.checkReadOnly())return;if(b.opera){var H=new d.elementPath(G.startContainer);if(H.block){var I=a.htmlParser.fragment.fromHtml(E,false).children;for(var J=0,K=I.length;J'+Q+'';});I=I.replace(/\n/g,'
    ');if(!(H||c))I=I.replace(new RegExp('
    (?=)'),function(O){return e.repeat(O,2);});if(b.gecko||b.webkit){var K=new d.elementPath(F.getStartElement()),L=[];for(var M=0;M/));else if(N in f.$block)break;}I=L.join('')+I;}s.call(this,I);};function u(E){var F=this.getSelection(),G=F.getRanges(),H=E.getName(),I=f.$block[H],J=F.isLocked;if(J)F.unlock();var K,L,M,N;for(var O=G.length-1;O>=0;O--){K=G[O];if(!K.checkReadOnly()){K.deleteContents(1);L=!O&&E||E.clone(1);var P,Q;if(I)while((P=K.getCommonAncestor(0,1))&&(Q=f[P.getName()])&&!(Q&&Q[H])){if(P.getName() in f.span)K.splitElement(P);else if(K.checkStartOfBlock()&&K.checkEndOfBlock()){K.setStartBefore(P);K.collapse(true);P.remove();}else K.splitBlock();}K.insertNode(L); if(!M)M=L;}}if(M){K.moveToPosition(M,4);if(I){var R=M.getNext(p),S=R&&R.type==1&&R.getName();if(S&&f.$block[S]){if(f[S]['#'])K.moveToElementEditStart(R);else K.moveToElementEditEnd(M);}else if(!R){R=K.fixBlock(true,this.config.enterMode==3?'div':'p');K.moveToElementEditStart(R);}}}F.selectRanges([K]);if(J)this.getSelection().lock();};function v(E){if(!E.checkDirty())setTimeout(function(){E.resetDirty();},0);};var w=d.walker.whitespaces(true),x=d.walker.bookmark(false,true);function y(E){return w(E)&&x(E);};function z(E){return E.type==3&&e.trim(E.getText()).match(/^(?: |\xa0)$/);};function A(E){if(E.isLocked){E.unlock();setTimeout(function(){E.lock();},0);}};function B(E){return E.getOuterHtml().match(m);};w=d.walker.whitespaces(true);function C(E){var F=E.window,G=E.document,H=E.document.getBody(),I=H.getFirst(),J=H.getChildren().count();if(!J||J==1&&I.type==1&&I.hasAttribute('_moz_editor_bogus_node')){v(E);var K=E.element.getDocument(),L=K.getDocumentElement(),M=L.$.scrollTop,N=L.$.scrollLeft,O=G.$.createEvent('KeyEvents');O.initKeyEvent('keypress',true,true,F.$,false,false,false,false,0,32);G.$.dispatchEvent(O);if(M!=L.$.scrollTop||N!=L.$.scrollLeft)K.getWindow().$.scrollTo(N,M);J&&H.getFirst().remove();G.getBody().appendBogus();var P=new d.range(G);P.setStartAt(H,1);P.select();}};function D(E){var F=E.editor,G=E.data.path,H=G.blockLimit,I=E.data.selection,J=I.getRanges()[0],K=F.document.getBody(),L=F.config.enterMode;if(b.gecko){var M=G.block||G.blockLimit,N=M&&M.getLast(y);if(M&&M.isBlockBoundary()&&!(N&&N.type==1&&N.isBlockBoundary())&&!M.is('pre')&&!M.getBogus())M.appendBogus();}if(F.config.autoParagraph!==false&&L!=2&&J.collapsed&&H.getName()=='body'&&!G.block){var O=J.fixBlock(true,F.config.enterMode==3?'div':'p');if(c){var P=O.getFirst(y);P&&z(P)&&P.remove();}if(B(O)){var Q=O.getNext(w);if(Q&&Q.type==1&&!q(Q)){J.moveToElementEditStart(Q);O.remove();}else{Q=O.getPrevious(w);if(Q&&Q.type==1&&!q(Q)){J.moveToElementEditEnd(Q);O.remove();}}}J.select();E.cancel();}var R=new d.range(F.document);R.moveToElementEditEnd(F.document.getBody());var S=new d.elementPath(R.startContainer);if(!S.blockLimit.is('body')){var T;if(L!=2)T=K.append(F.document.createElement(L==1?'p':'div'));else T=K;if(!c)T.appendBogus();}};j.add('wysiwygarea',{requires:['editingblock'],init:function(E){var F=E.config.enterMode!=2&&E.config.autoParagraph!==false?E.config.enterMode==3?'div':'p':false,G=E.lang.editorTitle.replace('%1',E.name),H=E.lang.editorHelp;if(c)G+=', '+H;var I=a.document.getWindow(),J; E.on('editingBlockReady',function(){var M,N,O,P,Q,R,S,T=b.isCustomDomain(),U=function(X){if(N)N.remove();var Y='document.open();'+(T?'document.domain="'+document.domain+'";':'')+'document.close();';Y=b.air?'javascript:void(0)':c?'javascript:void(function(){'+encodeURIComponent(Y)+'}())':'';var Z=e.getNextId();N=h.createFromHtml('');if(document.location.protocol=='chrome:')a.event.useCapture=true;N.on('load',function(aa){Q=1;aa.removeListener();var ab=N.getFrameDocument();ab.write(X);b.air&&W(ab.getWindow().$);});if(document.location.protocol=='chrome:')a.event.useCapture=false;M.append(h.createFromHtml(''+H+''));M.append(N);if(b.webkit){S=function(){M.setStyle('width','100%');N.hide();N.setSize('width',M.getSize('width'));M.removeStyle('width');N.show();};I.on('resize',S);}};J=e.addFunction(W);var V='';function W(X){if(!Q)return;Q=0;E.fire('ariaWidget',N);var Y=X.document,Z=Y.body,aa=Y.getElementById('cke_actscrpt');aa&&aa.parentNode.removeChild(aa);Z.spellcheck=!E.config.disableNativeSpellChecker;var ab=!E.readOnly;if(c){Z.hideFocus=true;Z.disabled=true;Z.contentEditable=ab;Z.removeAttribute('disabled');}else setTimeout(function(){if(b.gecko&&b.version>=10900||b.opera)Y.$.body.contentEditable=ab;else if(b.webkit)Y.$.body.parentNode.contentEditable=ab;else Y.$.designMode=ab?'off':'on';},0);ab&&b.gecko&&e.setTimeout(C,0,null,E);X=E.window=new d.window(X);Y=E.document=new g(Y);ab&&Y.on('dblclick',function(ag){var ah=ag.data.getTarget(),ai={element:ah,dialog:''};E.fire('doubleclick',ai);ai.dialog&&E.openDialog(ai.dialog);});c&&Y.on('click',function(ag){var ah=ag.data.getTarget();if(ah.is('input')){var ai=ah.getAttribute('type');if(ai=='submit'||ai=='reset')ag.data.preventDefault();}});if(!(c||b.opera))Y.on('mousedown',function(ag){var ah=ag.data.getTarget();if(ah.is('img','hr','input','textarea','select'))E.getSelection().selectElement(ah);});if(b.gecko)Y.on('mouseup',function(ag){if(ag.data.$.button==2){var ah=ag.data.getTarget();if(!ah.getOuterHtml().replace(m,'')){var ai=new d.range(Y);ai.moveToElementEditStart(ah);ai.select(true);}}}); Y.on('click',function(ag){ag=ag.data;if(ag.getTarget().is('a')&&ag.$.button!=2)ag.preventDefault();});if(b.webkit){Y.on('mousedown',function(){ad=1;});Y.on('click',function(ag){if(ag.data.getTarget().is('input','select'))ag.data.preventDefault();});Y.on('mouseup',function(ag){if(ag.data.getTarget().is('input','textarea'))ag.data.preventDefault();});}var ac=c?N:X;ac.on('blur',function(){E.focusManager.blur();});var ad;ac.on('focus',function(){var ag=E.document;if(b.gecko||b.opera)ag.getBody().focus();else if(b.webkit)if(!ad){E.document.getDocumentElement().focus();ad=1;}E.focusManager.focus();});var ae=E.keystrokeHandler;ae.blockedKeystrokes[8]=!ab;ae.attach(Y);Y.getDocumentElement().addClass(Y.$.compatMode);E.on('key',function(ag){if(E.mode!='wysiwyg')return;var ah=ag.data.keyCode;if(ah in {8:1,46:1}){var ai=E.getSelection(),aj=ai.getSelectedElement(),ak=ai.getRanges()[0],al=new d.elementPath(ak.startContainer),am,an,ao,ap=ah==8;if(aj){E.fire('saveSnapshot');ak.moveToPosition(aj,3);aj.remove();ak.select();E.fire('saveSnapshot');ag.cancel();}else if(ak.collapsed)if((am=al.block)&&ak[ap?'checkStartOfBlock':'checkEndOfBlock']()&&(ao=am[ap?'getPrevious':'getNext'](n))&&ao.is('table')){E.fire('saveSnapshot');if(ak[ap?'checkEndOfBlock':'checkStartOfBlock']())am.remove();ak['moveToElementEdit'+(ap?'End':'Start')](ao);ak.select();E.fire('saveSnapshot');ag.cancel();}else if(al.blockLimit.is('td')&&(an=al.blockLimit.getAscendant('table'))&&ak.checkBoundaryOfElement(an,ap?1:2)&&(ao=an[ap?'getPrevious':'getNext'](n))){E.fire('saveSnapshot');ak['moveToElementEdit'+(ap?'End':'Start')](ao);if(ak.checkStartOfBlock()&&ak.checkEndOfBlock())ao.remove();else ak.select();E.fire('saveSnapshot');ag.cancel();}}if(ah==33||ah==34)if(b.gecko){var aq=Y.getBody();if(X.$.innerHeight>aq.$.offsetHeight){ak=new d.range(Y);ak[ah==33?'moveToElementEditStart':'moveToElementEditEnd'](aq);ak.select();ag.cancel();}}});if(c&&Y.$.compatMode=='CSS1Compat'){var af={33:1,34:1};Y.on('keydown',function(ag){if(ag.data.getKeystroke() in af)setTimeout(function(){E.getSelection().scrollIntoView();},0);});}if(c&&E.config.enterMode!=1)Y.on('selectionchange',function(){var ag=Y.getBody(),ah=E.getSelection(),ai=ah&&ah.getRanges()[0];if(ai&&ag.getHtml().match(/^

     <\/p>$/i)&&ai.startContainer.equals(ag))setTimeout(function(){ai=E.getSelection().getRanges()[0];if(!ai.startContainer.equals('body')){ag.getFirst().remove(1);ai.moveToElementEditEnd(ag);ai.select(1);}},0);});if(E.contextMenu)E.contextMenu.addTarget(Y,E.config.browserContextMenuOnCtrl!==false); setTimeout(function(){E.fire('contentDom');if(R){E.mode='wysiwyg';E.fire('mode',{previousMode:E._.previousMode});R=false;}O=false;if(P){E.focus();P=false;}setTimeout(function(){E.fire('dataReady');},0);try{E.document.$.execCommand('2D-position',false,true);}catch(ag){}try{E.document.$.execCommand('enableInlineTableEditing',false,!E.config.disableNativeTableHandles);}catch(ah){}if(E.config.disableObjectResizing)try{E.document.$.execCommand('enableObjectResizing',false,false);}catch(ai){E.document.getBody().on(c?'resizestart':'resize',function(aj){aj.data.preventDefault();});}if(c)setTimeout(function(){if(E.document){var aj=E.document.$.body;aj.runtimeStyle.marginBottom='0px';aj.runtimeStyle.marginBottom='';}},1000);},0);};E.addMode('wysiwyg',{load:function(X,Y,Z){M=X;if(c&&b.quirks)X.setStyle('position','relative');E.mayBeDirty=true;R=true;if(Z)this.loadSnapshotData(Y);else this.loadData(Y);},loadData:function(X){O=true;E._.dataStore={id:1};var Y=E.config,Z=Y.fullPage,aa=Y.docType,ab='';!Z&&(ab=e.buildStyleHtml(E.config.contentsCss)+ab);var ac=Y.baseHref?'':'';if(Z)X=X.replace(/]*>/i,function(ad){E.docType=aa=ad;return '';}).replace(/<\?xml\s[^\?]*\?>/i,function(ad){E.xmlDeclaration=ad;return '';});if(E.dataProcessor)X=E.dataProcessor.toHtml(X,F);if(Z){if(!/]/.test(X))X=''+X;if(!/]/.test(X))X=''+X+'';if(!/]/.test(X))X=X.replace(/]*>/,'$&');else if(!/]/.test(X))X=X.replace(/]*>/,'$&');ac&&(X=X.replace(//,'$&'+ac));X=X.replace(/<\/head\s*>/,ab+'$&');X=aa+X;}else X=Y.docType+''+''+''+G+''+ac+ab+''+''+X+'';if(b.gecko)X=X.replace(/
    (?=\s*<\/(:?html|body)>)/,'$&
    ');X+=V;this.onDispose();U(X);},getData:function(){var X=E.config,Y=X.fullPage,Z=Y&&E.docType,aa=Y&&E.xmlDeclaration,ab=N.getFrameDocument(),ac=Y?ab.getDocumentElement().getOuterHtml():ab.getBody().getHtml();if(b.gecko)ac=ac.replace(/
    (?=\s*(:?$|<\/body>))/,'');if(E.dataProcessor)ac=E.dataProcessor.toDataFormat(ac,F);if(X.ignoreEmptyParagraph)ac=ac.replace(m,function(ad,ae){return ae;});if(aa)ac=aa+'\n'+ac;if(Z)ac=Z+'\n'+ac; return ac;},getSnapshotData:function(){return N.getFrameDocument().getBody().getHtml();},loadSnapshotData:function(X){N.getFrameDocument().getBody().setHtml(X);},onDispose:function(){if(!E.document)return;E.document.getDocumentElement().clearCustomData();E.document.getBody().clearCustomData();E.window.clearCustomData();E.document.clearCustomData();N.clearCustomData();N.remove();},unload:function(X){this.onDispose();if(S)I.removeListener('resize',S);E.window=E.document=N=M=P=null;E.fire('contentDomUnload');},focus:function(){var X=E.window;if(O)P=true;else if(X){var Y=E.getSelection(),Z=Y&&Y.getNative();if(Z&&Z.type=='Control')return;b.air?setTimeout(function(){X.focus();},0):X.focus();E.selectionChange();}}});E.on('insertHtml',r(s),null,null,20);E.on('insertElement',r(u),null,null,20);E.on('insertText',r(t),null,null,20);E.on('selectionChange',function(X){if(E.readOnly)return;var Y=E.getSelection();if(Y&&!Y.isLocked){var Z=E.checkDirty();E.fire('saveSnapshot',{contentOnly:1});D.call(this,X);E.fire('updateSnapshot');!Z&&E.resetDirty();}},null,null,1);});E.on('contentDom',function(){var M=E.document.getElementsByTag('title').getItem(0);M.data('cke-title',E.document.$.title);c&&(E.document.$.title=G);});E.on('readOnly',function(){if(E.mode=='wysiwyg'){var M=E.getMode();M.loadData(M.getData());}});if(a.document.$.documentMode>=8){E.addCss('html.CSS1Compat [contenteditable=false]{ min-height:0 !important;}');var K=[];for(var L in f.$removeEmpty)K.push('html.CSS1Compat '+L+'[contenteditable=false]');E.addCss(K.join(',')+'{ display:inline-block;}');}else if(b.gecko){E.addCss('html { height: 100% !important; }');E.addCss('img:-moz-broken { -moz-force-broken-image-icon : 1;\tmin-width : 24px; min-height : 24px; }');}E.addCss('html {\t_overflow-y: scroll; cursor: text;\t*cursor:auto;}');E.addCss('img, input, textarea { cursor: default;}');E.on('insertElement',function(M){var N=M.data;if(N.type==1&&(N.is('input')||N.is('textarea'))){var O=N.getAttribute('contenteditable')=='false';if(!O){N.data('cke-editable',N.hasAttribute('contenteditable')?'true':'1');N.setAttribute('contenteditable',false);}}});}});if(b.gecko)(function(){var E=document.body;if(!E)window.addEventListener('load',arguments.callee,false);else{var F=E.getAttribute('onpageshow');E.setAttribute('onpageshow',(F?F+';':'')+'event.persisted && (function(){'+'var allInstances = CKEDITOR.instances, editor, doc;'+'for ( var i in allInstances )'+'{'+'\teditor = allInstances[ i ];'+'\tdoc = editor.document;'+'\tif ( doc )'+'\t{'+'\t\tdoc.$.designMode = "off";'+'\t\tdoc.$.designMode = "on";'+'\t}'+'}'+'})();'); }})();})();i.disableObjectResizing=false;i.disableNativeTableHandles=true;i.disableNativeSpellChecker=true;i.ignoreEmptyParagraph=true;j.add('wsc',{requires:['dialog'],init:function(m){var n='checkspell',o=m.addCommand(n,new a.dialogCommand(n));o.modes={wysiwyg:!b.opera&&!b.air&&document.domain==window.location.hostname};m.ui.addButton('SpellChecker',{label:m.lang.spellCheck.toolbar,command:n});a.dialog.add(n,this.path+'dialogs/wsc.js');}});i.wsc_customerId=i.wsc_customerId||'1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk';i.wsc_customLoaderScript=i.wsc_customLoaderScript||null;a.DIALOG_RESIZE_NONE=0;a.DIALOG_RESIZE_WIDTH=1;a.DIALOG_RESIZE_HEIGHT=2;a.DIALOG_RESIZE_BOTH=3;(function(){var m=e.cssLength;function n(R){return!!this._.tabs[R][0].$.offsetHeight;};function o(){var V=this;var R=V._.currentTabId,S=V._.tabIdList.length,T=e.indexOf(V._.tabIdList,R)+S;for(var U=T-1;U>T-S;U--){if(n.call(V,V._.tabIdList[U%S]))return V._.tabIdList[U%S];}return null;};function p(){var V=this;var R=V._.currentTabId,S=V._.tabIdList.length,T=e.indexOf(V._.tabIdList,R);for(var U=T+1;U1){ah._.tabBarMode=true; ah._.tabs[ah._.currentTabId][0].focus();Z=1;}else if((as==37||as==39)&&ah._.tabBarMode){aw=as==(at?39:37)?o.call(ah):p.call(ah);ah.selectPage(aw);ah._.tabs[aw][0].focus();Z=1;}else if((as==13||as==32)&&ah._.tabBarMode){ay.selectPage(ay._.currentTabId);ay._.tabBarMode=false;ay._.currentFocusIndex=-1;ak(1);Z=1;}else if(as==13){var ax=ar.data.getTarget();if(!ax.is('a','button','select','textarea')&&(!ax.is('input')||ax.$.type!='button')){au=ay.getButton('ok');au&&e.setTimeout(au.click,0,au);Z=1;}aa=1;}else if(as==27){au=ay.getButton('cancel');if(au)e.setTimeout(au.click,0,au);else if(ay.fire('cancel',{hide:true}).hide!==false)ay.hide();aa=1;}else return;am(ar);};function am(ar){if(Z)ar.data.preventDefault(1);else if(aa)ar.data.stopPropagation();};var an=this._.element;this.on('show',function(){an.on('keydown',al,this);if(b.opera||b.gecko)an.on('keypress',am,this);});this.on('hide',function(){an.removeListener('keydown',al);if(b.opera||b.gecko)an.removeListener('keypress',am);ai(function(ar){s.apply(ar);});});this.on('iframeAdded',function(ar){var as=new g(ar.data.iframe.$.contentWindow.document);as.on('keydown',al,this,null,0);});this.on('show',function(){var av=this;aj();if(R.config.dialog_startupFocusTab&&ah._.pageCount>1){ah._.tabBarMode=true;ah._.tabs[ah._.currentTabId][0].focus();}else if(!av._.hasFocus){av._.currentFocusIndex=-1;if(T.onFocus){var ar=T.onFocus.call(av);ar&&ar.focus();}else ak(1);if(av._.editor.mode=='wysiwyg'&&c){var as=R.document.$.selection,at=as.createRange();if(at)if(at.parentElement&&at.parentElement().ownerDocument==R.document.$||at.item&&at.item(0).ownerDocument==R.document.$){var au=document.body.createTextRange();au.moveToElementText(av.getElement().getFirst().$);au.collapse(true);au.select();}}}},this,null,4294967295);if(b.ie6Compat)this.on('load',function(ar){var as=this.getElement(),at=as.getFirst();at.remove();at.appendTo(as);},this);B(this);C(this);new d.text(T.title,a.document).appendTo(this.parts.title);for(Y=0;Y0?S:0)+'px'};aa[V?'right':'left']=(R>0?R:0)+'px';U.setStyles(aa);T&&(ab._.moved=1);},getPosition:function(){return e.extend({},this._.position);},show:function(){var R=this._.element,S=this.definition;if(!(R.getParent()&&R.getParent().equals(a.document.getBody())))R.appendTo(a.document.getBody());else R.setStyle('display','block');if(b.gecko&&b.version<10900){var T=this.parts.dialog;T.setStyle('position','absolute');setTimeout(function(){T.setStyle('position','fixed');},0);}this.resize(this._.contentSize&&this._.contentSize.width||S.width||S.minWidth,this._.contentSize&&this._.contentSize.height||S.height||S.minHeight);this.reset();this.selectPage(this.definition.contents[0].id);if(a.dialog._.currentZIndex===null)a.dialog._.currentZIndex=this._.editor.config.baseFloatZIndex; this._.element.getFirst().setStyle('z-index',a.dialog._.currentZIndex+=10);if(a.dialog._.currentTop===null){a.dialog._.currentTop=this;this._.parentDialog=null;H(this._.editor);}else{this._.parentDialog=a.dialog._.currentTop;var U=this._.parentDialog.getElement().getFirst();U.$.style.zIndex-=Math.floor(this._.editor.config.baseFloatZIndex/2);a.dialog._.currentTop=this;}R.on('keydown',L);R.on(b.opera?'keypress':'keyup',M);this._.hasFocus=false;e.setTimeout(function(){this.layout();u(this);this.parts.dialog.setStyle('visibility','');this.fireOnce('load',{});k.fire('ready',this);this.fire('show',{});this._.editor.fire('dialogShow',this);this.foreach(function(V){V.setInitValue&&V.setInitValue();});},100,this);},layout:function(){var X=this;var R=X.parts.dialog,S=X.getSize(),T=a.document.getWindow(),U=T.getViewPaneSize(),V=(U.width-S.width)/2,W=(U.height-S.height)/2;if(!b.ie6Compat)if(S.height+(W>0?W:0)>U.height||S.width+(V>0?V:0)>U.width)R.setStyle('position','absolute');else R.setStyle('position','fixed');X.move(X._.moved?X._.position.x:V,X._.moved?X._.position.y:W);},foreach:function(R){var U=this;for(var S in U._.contents)for(var T in U._.contents[S])R.call(U,U._.contents[S][T]);return U;},reset:(function(){var R=function(S){if(S.reset)S.reset(1);};return function(){this.foreach(R);return this;};})(),setupContent:function(){var R=arguments;this.foreach(function(S){if(S.setup)S.setup.apply(S,R);});},commitContent:function(){var R=arguments;this.foreach(function(S){if(c&&this._.currentFocusIndex==S.focusIndex)S.getInputElement().$.blur();if(S.commit)S.commit.apply(S,R);});},hide:function(){if(!this.parts.dialog.isVisible())return;this.fire('hide',{});this._.editor.fire('dialogHide',this);this.selectPage(this._.tabIdList[0]);var R=this._.element;R.setStyle('display','none');this.parts.dialog.setStyle('visibility','hidden');O(this);while(a.dialog._.currentTop!=this)a.dialog._.currentTop.hide();if(!this._.parentDialog)I();else{var S=this._.parentDialog.getElement().getFirst();S.setStyle('z-index',parseInt(S.$.style.zIndex,10)+Math.floor(this._.editor.config.baseFloatZIndex/2));}a.dialog._.currentTop=this._.parentDialog;if(!this._.parentDialog){a.dialog._.currentZIndex=null;R.removeListener('keydown',L);R.removeListener(b.opera?'keypress':'keyup',M);var T=this._.editor;T.focus();if(T.mode=='wysiwyg'&&c){var U=T.getSelection();U&&U.unlock(true);}}else a.dialog._.currentZIndex-=10;delete this._.parentDialog;this.foreach(function(V){V.resetInitValue&&V.resetInitValue(); });},addPage:function(R){var ad=this;var S=[],T=R.label?' title="'+e.htmlEncode(R.label)+'"':'',U=R.elements,V=a.dialog._.uiElementBuilders.vbox.build(ad,{type:'vbox',className:'cke_dialog_page_contents',children:R.elements,expand:!!R.expand,padding:R.padding,style:R.style||'width: 100%;height:100%'},S),W=h.createFromHtml(S.join(''));W.setAttribute('role','tabpanel');var X=b,Y='cke_'+R.id+'_'+e.getNextNumber(),Z=h.createFromHtml(['0?' cke_last':'cke_first',T,!!R.hidden?' style="display:none"':'',' id="',Y,'"',X.gecko&&X.version>=10900&&!X.hc?'':' href="javascript:void(0)"',' tabIndex="-1"',' hidefocus="true"',' role="tab">',R.label,''].join(''));W.setAttribute('aria-labelledby',Y);ad._.tabs[R.id]=[Z,W];ad._.tabIdList.push(R.id);!R.hidden&&ad._.pageCount++;ad._.lastTab=Z;ad.updateStyle();var aa=ad._.contents[R.id]={},ab,ac=V.getChild();while(ab=ac.shift()){aa[ab.id]=ab;if(typeof ab.getChild=='function')ac.push.apply(ac,ab.getChild());}W.setAttribute('name',R.id);W.appendTo(ad.parts.contents);Z.unselectable();ad.parts.tabs.append(Z);if(R.accessKey){N(ad,ad,'CTRL+'+R.accessKey,Q,P);ad._.accessKeyMap['CTRL+'+R.accessKey]=R.id;}},selectPage:function(R){if(this._.currentTabId==R)return;if(this.fire('selectPage',{page:R,currentPage:this._.currentTabId})===true)return;for(var S in this._.tabs){var T=this._.tabs[S][0],U=this._.tabs[S][1];if(S!=R){T.removeClass('cke_dialog_tab_selected');U.hide();}U.setAttribute('aria-hidden',S!=R);}var V=this._.tabs[R];V[0].addClass('cke_dialog_tab_selected');if(b.ie6Compat||b.ie7Compat){q(V[1]);V[1].show();setTimeout(function(){q(V[1],1);},0);}else V[1].show();this._.currentTabId=R;this._.currentTabIndex=e.indexOf(this._.tabIdList,R);},updateStyle:function(){this.parts.dialog[(this._.pageCount===1?'add':'remove')+'Class']('cke_single_page');},hidePage:function(R){var T=this;var S=T._.tabs[R]&&T._.tabs[R][0];if(!S||T._.pageCount==1||!S.isVisible())return;else if(R==T._.currentTabId)T.selectPage(o.call(T));S.hide();T._.pageCount--;T.updateStyle();},showPage:function(R){var T=this;var S=T._.tabs[R]&&T._.tabs[R][0];if(!S)return;S.show();T._.pageCount++;T.updateStyle();},getElement:function(){return this._.element;},getName:function(){return this._.name;},getContentElement:function(R,S){var T=this._.contents[R];return T&&T[S];},getValueOf:function(R,S){return this.getContentElement(R,S).getValue();},setValueOf:function(R,S,T){return this.getContentElement(R,S).setValue(T);},getButton:function(R){return this._.buttons[R]; },click:function(R){return this._.buttons[R].click();},disableButton:function(R){return this._.buttons[R].disable();},enableButton:function(R){return this._.buttons[R].enable();},getPageCount:function(){return this._.pageCount;},getParentEditor:function(){return this._.editor;},getSelectedElement:function(){return this.getParentEditor().getSelection().getSelectedElement();},addFocusable:function(R,S){var U=this;if(typeof S=='undefined'){S=U._.focusList.length;U._.focusList.push(new t(U,R,S));}else{U._.focusList.splice(S,0,new t(U,R,S));for(var T=S+1;Tac.width-ab.width-W)ah=ac.width-ab.width+(V.lang.dir=='rtl'?0:X[1]);else ah=T.x;if(T.y+X[0]ac.height-ab.height-W)ai=ac.height-ab.height+X[2];else ai=T.y;R.move(ah,ai,1);aa.data.preventDefault();};function Z(aa){a.document.removeListener('mousemove',Y);a.document.removeListener('mouseup',Z);if(b.ie6Compat){var ab=F.getChild(0).getFrameDocument();ab.removeListener('mousemove',Y);ab.removeListener('mouseup',Z);}};R.parts.title.on('mousedown',function(aa){S={x:aa.data.$.screenX,y:aa.data.$.screenY};a.document.on('mousemove',Y);a.document.on('mouseup',Z);T=R.getPosition();if(b.ie6Compat){var ab=F.getChild(0).getFrameDocument();ab.on('mousemove',Y);ab.on('mouseup',Z);}aa.data.preventDefault();},R);};function C(R){var S=R.definition,T=S.resizable;if(T==0)return;var U=R.getParentEditor(),V,W,X,Y,Z,aa,ab=e.addFunction(function(ae){Z=R.getSize();var af=R.parts.contents,ag=af.$.getElementsByTagName('iframe').length;if(ag){aa=h.createFromHtml('

    ');af.append(aa);}W=Z.height-R.parts.contents.getSize('height',!(b.gecko||b.opera||c&&b.quirks));V=Z.width-R.parts.contents.getSize('width',1);Y={x:ae.screenX,y:ae.screenY};X=a.document.getWindow().getViewPaneSize();a.document.on('mousemove',ac);a.document.on('mouseup',ad);if(b.ie6Compat){var ah=F.getChild(0).getFrameDocument();ah.on('mousemove',ac);ah.on('mouseup',ad);}ae.preventDefault&&ae.preventDefault();});R.on('load',function(){var ae='';if(T==1)ae=' cke_resizer_horizontal';else if(T==2)ae=' cke_resizer_vertical';var af=h.createFromHtml('
    '); R.parts.footer.append(af,1);});U.on('destroy',function(){e.removeFunction(ab);});function ac(ae){var af=U.lang.dir=='rtl',ag=(ae.data.$.screenX-Y.x)*(af?-1:1),ah=ae.data.$.screenY-Y.y,ai=Z.width,aj=Z.height,ak=ai+ag*(R._.moved?1:2),al=aj+ah*(R._.moved?1:2),am=R._.element.getFirst(),an=af&&am.getComputedStyle('right'),ao=R.getPosition();if(ao.y+al>X.height)al=X.height-ao.y;if((af?an:ao.x)+ak>X.width)ak=X.width-(af?an:ao.x);if(T==1||T==3)ai=Math.max(S.minWidth||0,ak-V);if(T==2||T==3)aj=Math.max(S.minHeight||0,al-W);R.resize(ai,aj);if(!R._.moved)R.layout();ae.data.preventDefault();};function ad(){a.document.removeListener('mouseup',ad);a.document.removeListener('mousemove',ac);if(aa){aa.remove();aa=null;}if(b.ie6Compat){var ae=F.getChild(0).getFrameDocument();ae.removeListener('mouseup',ad);ae.removeListener('mousemove',ac);}};};var D,E={},F;function G(R){R.data.preventDefault(1);};function H(R){var S=a.document.getWindow(),T=R.config,U=T.dialog_backgroundCoverColor||'white',V=T.dialog_backgroundCoverOpacity,W=T.baseFloatZIndex,X=e.genKey(U,V,W),Y=E[X];if(!Y){var Z=['
    '];if(b.ie6Compat){var aa=b.isCustomDomain(),ab="";Z.push('');}Z.push('
    ');Y=h.createFromHtml(Z.join(''));Y.setOpacity(V!=undefined?V:0.5);Y.on('keydown',G);Y.on('keypress',G);Y.on('keyup',G);Y.appendTo(a.document.getBody());E[X]=Y;}else Y.show();F=Y;var ac=function(){var af=S.getViewPaneSize();Y.setStyles({width:af.width+'px',height:af.height+'px'});},ad=function(){var af=S.getScrollPosition(),ag=a.dialog._.currentTop;Y.setStyles({left:af.x+'px',top:af.y+'px'});if(ag)do{var ah=ag.getPosition();ag.move(ah.x,ah.y);}while(ag=ag._.parentDialog)};D=ac;S.on('resize',ac);ac();if(!(b.mac&&b.webkit))Y.focus();if(b.ie6Compat){var ae=function(){ad();arguments.callee.prevScrollHandler.apply(this,arguments);};S.$.setTimeout(function(){ae.prevScrollHandler=window.onscroll||(function(){}); window.onscroll=ae;},0);ad();}};function I(){if(!F)return;var R=a.document.getWindow();F.hide();R.removeListener('resize',D);if(b.ie6Compat)R.$.setTimeout(function(){var S=window.onscroll&&window.onscroll.prevScrollHandler;window.onscroll=S||null;},0);D=null;};function J(){for(var R in E)E[R].remove();E={};};var K={},L=function(R){var S=R.data.$.ctrlKey||R.data.$.metaKey,T=R.data.$.altKey,U=R.data.$.shiftKey,V=String.fromCharCode(R.data.$.keyCode),W=K[(S?'CTRL+':'')+(T?'ALT+':'')+(U?'SHIFT+':'')+V];if(!W||!W.length)return;W=W[W.length-1];W.keydown&&W.keydown.call(W.uiElement,W.dialog,W.key);R.data.preventDefault();},M=function(R){var S=R.data.$.ctrlKey||R.data.$.metaKey,T=R.data.$.altKey,U=R.data.$.shiftKey,V=String.fromCharCode(R.data.$.keyCode),W=K[(S?'CTRL+':'')+(T?'ALT+':'')+(U?'SHIFT+':'')+V];if(!W||!W.length)return;W=W[W.length-1];if(W.keyup){W.keyup.call(W.uiElement,W.dialog,W.key);R.data.preventDefault();}},N=function(R,S,T,U,V){var W=K[T]||(K[T]=[]);W.push({uiElement:R,dialog:S,key:T,keyup:V||R.accessKeyUp,keydown:U||R.accessKeyDown});},O=function(R){for(var S in K){var T=K[S];for(var U=T.length-1;U>=0;U--){if(T[U].dialog==R||T[U].uiElement==R)T.splice(U,1);}if(T.length===0)delete K[S];}},P=function(R,S){if(R._.accessKeyMap[S])R.selectPage(R._.accessKeyMap[S]);},Q=function(R,S){};(function(){k.dialog={uiElement:function(R,S,T,U,V,W,X){if(arguments.length<4)return;var Y=(U.call?U(S):U)||'div',Z=['<',Y,' '],aa=(V&&V.call?V(S):V)||{},ab=(W&&W.call?W(S):W)||{},ac=(X&&X.call?X.call(this,R,S):X)||'',ad=this.domId=ab.id||e.getNextId()+'_uiElement',ae=this.id=S.id,af;ab.id=ad;var ag={};if(S.type)ag['cke_dialog_ui_'+S.type]=1;if(S.className)ag[S.className]=1;if(S.disabled)ag.cke_disabled=1;var ah=ab['class']&&ab['class'].split?ab['class'].split(' '):[];for(af=0;af=0;af--){if(aj[af]==='')aj.splice(af,1);}if(aj.length>0)ab.style=(ab.style?ab.style+'; ':'')+aj.join('; ');for(af in ab)Z.push(af+'="'+e.htmlEncode(ab[af])+'" ');Z.push('>',ac,'');T.push(Z.join(''));(this._||(this._={})).dialog=R;if(typeof S.isChanged=='boolean')this.isChanged=function(){return S.isChanged;};if(typeof S.isChanged=='function')this.isChanged=S.isChanged; if(typeof S.setValue=='function')this.setValue=e.override(this.setValue,function(am){return function(an){am.call(this,S.setValue.call(this,an));};});if(typeof S.getValue=='function')this.getValue=e.override(this.getValue,function(am){return function(){return S.getValue.call(this,am.call(this));};});a.event.implementOn(this);this.registerEvents(S);if(this.accessKeyUp&&this.accessKeyDown&&S.accessKey)N(this,R,'CTRL+'+S.accessKey);var al=this;R.on('load',function(){var am=al.getInputElement();if(am){var an=al.type in {checkbox:1,ratio:1}&&c&&b.version<8?'cke_dialog_ui_focused':'';am.on('focus',function(){R._.tabBarMode=false;R._.hasFocus=true;al.fire('focus');an&&this.addClass(an);});am.on('blur',function(){al.fire('blur');an&&this.removeClass(an);});}});if(this.keyboardFocusable){this.tabIndex=S.tabIndex||0;this.focusIndex=R._.focusList.push(this)-1;this.on('focus',function(){R._.currentFocusIndex=al.focusIndex;});}e.extend(this,S);},hbox:function(R,S,T,U,V){if(arguments.length<4)return;this._||(this._={});var W=this._.children=S,X=V&&V.widths||null,Y=V&&V.height||null,Z={},aa,ab=function(){var ad=[''];for(aa=0;aa0)ad.push('style="'+af.join('; ')+'" ');ad.push('>',T[aa],'');}ad.push('');return ad.join('');},ac={role:'presentation'};V&&V.align&&(ac.align=V.align);k.dialog.uiElement.call(this,R,V||{type:'hbox'},U,'table',Z,ac,ab);},vbox:function(R,S,T,U,V){if(arguments.length<3)return;this._||(this._={});var W=this._.children=S,X=V&&V.width||null,Y=V&&V.heights||null,Z=function(){var aa=['');for(var ab=0;ab');}aa.push('
    0)aa.push('style="',ac.join('; '),'" ');aa.push(' class="cke_dialog_ui_vbox_child">',T[ab],'
    ');return aa.join('');};k.dialog.uiElement.call(this,R,V||{type:'vbox'},U,'div',null,{role:'presentation'},Z);}};})();k.dialog.uiElement.prototype={getElement:function(){return a.document.getById(this.domId);},getInputElement:function(){return this.getElement();},getDialog:function(){return this._.dialog;},setValue:function(R,S){this.getInputElement().setValue(R);!S&&this.fire('change',{value:R});return this;},getValue:function(){return this.getInputElement().getValue();},isChanged:function(){return false;},selectParentTab:function(){var U=this;var R=U.getInputElement(),S=R,T;while((S=S.getParent())&&S.$.className.search('cke_dialog_page_contents')==-1){}if(!S)return U;T=S.getAttribute('name');if(U._.dialog._.currentTabId!=T)U._.dialog.selectPage(T);return U;},focus:function(){this.selectParentTab().getInputElement().focus();return this;},registerEvents:function(R){var S=/^on([A-Z]\w+)/,T,U=function(W,X,Y,Z){X.on('load',function(){W.getInputElement().on(Y,Z,W);});};for(var V in R){if(!(T=V.match(S)))continue;if(this.eventProcessors[V])this.eventProcessors[V].call(this,this._.dialog,R[V]);else U(this,this._.dialog,T[1].toLowerCase(),R[V]);}return this;},eventProcessors:{onLoad:function(R,S){R.on('load',S,this);},onShow:function(R,S){R.on('show',S,this);},onHide:function(R,S){R.on('hide',S,this);}},accessKeyDown:function(R,S){this.focus();},accessKeyUp:function(R,S){},disable:function(){var R=this.getElement(),S=this.getInputElement();S.setAttribute('disabled','true');R.addClass('cke_disabled');},enable:function(){var R=this.getElement(),S=this.getInputElement();S.removeAttribute('disabled');R.removeClass('cke_disabled');},isEnabled:function(){return!this.getElement().hasClass('cke_disabled');},isVisible:function(){return this.getInputElement().isVisible();},isFocusable:function(){if(!this.isEnabled()||!this.isVisible())return false;return true;}};k.dialog.hbox.prototype=e.extend(new k.dialog.uiElement(),{getChild:function(R){var S=this;if(arguments.length<1)return S._.children.concat();if(!R.splice)R=[R];if(R.length<2)return S._.children[R[0]];else return S._.children[R[0]]&&S._.children[R[0]].getChild?S._.children[R[0]].getChild(R.slice(1,R.length)):null;}},true);k.dialog.vbox.prototype=new k.dialog.hbox(); (function(){var R={build:function(S,T,U){var V=T.children,W,X=[],Y=[];for(var Z=0;Z',T||U.name,'');return V.join('');}};a.style.getStyleText=function(T){var U=T._ST;if(U)return U;U=T.styles;var V=T.attributes&&T.attributes.style||'',W='';if(V.length)V=V.replace(o,';');for(var X in U){var Y=U[X],Z=(X+':'+Y).replace(o,';');if(Y=='inherit')W+=Z;else V+=Z;}if(V.length)V=P(V);V+=W;return T._ST=V;};function s(T){var U,V;while(T=T.getParent()){if(T.getName()=='body')break;if(T.getAttribute('data-nostyle'))U=T;else if(!V){var W=T.getAttribute('contentEditable');if(W=='false')U=T;else if(W=='true')V=1;}}return U;};function t(T){var ay=this;var U=T.document;if(T.collapsed){var V=J(ay,U);T.insertNode(V);T.moveToPosition(V,2);return;}var W=ay.element,X=ay._.definition,Y,Z=X.ignoreReadonly,aa=Z||X.includeReadonly;if(aa==undefined)aa=U.getCustomData('cke_includeReadonly');var ab=f[W]||(Y=true,f.span);T.enlarge(1,1);T.trim();var ac=T.createBookmark(),ad=ac.startNode,ae=ac.endNode,af=ad,ag;if(!Z){var ah=s(ad),ai=s(ae);if(ah)af=ah.getNextSourceNode(true);if(ai)ae=ai;}if(af.getPosition(ae)==2)af=0;while(af){var aj=false;if(af.equals(ae)){af=null;aj=true;}else{var ak=af.type,al=ak==1?af.getName():null,am=al&&af.getAttribute('contentEditable')=='false',an=al&&af.getAttribute('data-nostyle');if(al&&af.data('cke-bookmark')){af=af.getNextSourceNode(true);continue;}if(!al||ab[al]&&!an&&(!am||aa)&&(af.getPosition(ae)|4|0|8)==4+0+8&&(!X.childRule||X.childRule(af))){var ao=af.getParent(); if(ao&&((ao.getDtd()||f.span)[W]||Y)&&(!X.parentRule||X.parentRule(ao))){if(!ag&&(!al||!f.$removeEmpty[al]||(af.getPosition(ae)|4|0|8)==4+0+8)){ag=new d.range(U);ag.setStartBefore(af);}if(ak==3||am||ak==1&&!af.getChildCount()){var ap=af,aq;while((aj=!ap.getNext(q))&&(aq=ap.getParent(),ab[aq.getName()])&&(aq.getPosition(ad)|2|0|8)==2+0+8&&(!X.childRule||X.childRule(aq)))ap=aq;ag.setEndAfter(ap);}}else aj=true;}else aj=true;af=af.getNextSourceNode(an||am);}if(aj&&ag&&!ag.collapsed){var ar=J(ay,U),as=ar.hasAttributes(),at=ag.getCommonAncestor(),au={styles:{},attrs:{},blockedStyles:{},blockedAttrs:{}},av,aw,ax;while(ar&&at){if(at.getName()==W){for(av in X.attributes){if(au.blockedAttrs[av]||!(ax=at.getAttribute(aw)))continue;if(ar.getAttribute(av)==ax)au.attrs[av]=1;else au.blockedAttrs[av]=1;}for(aw in X.styles){if(au.blockedStyles[aw]||!(ax=at.getStyle(aw)))continue;if(ar.getStyle(aw)==ax)au.styles[aw]=1;else au.blockedStyles[aw]=1;}}at=at.getParent();}for(av in au.attrs)ar.removeAttribute(av);for(aw in au.styles)ar.removeStyle(aw);if(as&&!ar.hasAttributes())ar=null;if(ar){ag.extractContents().appendTo(ar);G(ay,ar);ag.insertNode(ar);ar.mergeSiblings();if(!c)ar.$.normalize();}else{ar=new h('span');ag.extractContents().appendTo(ar);ag.insertNode(ar);G(ay,ar);ar.remove(true);}ag=null;}}T.moveToBookmark(ac);T.shrink(2);};function u(T){T.enlarge(1,1);var U=T.createBookmark(),V=U.startNode;if(T.collapsed){var W=new d.elementPath(V.getParent()),X;for(var Y=0,Z;Y'+V+'
    ';else T.setHtml(V);U.remove();};function B(T){var U=/(\S\s*)\n(?:\s|(]+data-cke-bookmark.*?\/span>))*\n(?!$)/gi,V=T.getName(),W=C(T.getOuterHtml(),U,function(Y,Z,aa){return Z+'
    '+aa+'
    ';}),X=[];W.replace(/([\s\S]*?)<\/pre>/gi,function(Y,Z){X.push(Z);});return X;};function C(T,U,V){var W='',X='';T=T.replace(/(^]+data-cke-bookmark.*?\/span>)|(]+data-cke-bookmark.*?\/span>$)/gi,function(Y,Z,aa){Z&&(W=Z);aa&&(X=aa);return '';});return W+T.replace(U,V)+X;};function D(T,U){var V;if(T.length>1)V=new d.documentFragment(U.getDocument());for(var W=0;W');X=X.replace(/[ \t]{2,}/g,function(Z){return e.repeat(' ',Z.length-1)+' ';});if(V){var Y=U.clone();Y.setHtml(X);V.append(Y);}else U.setHtml(X);}return V||U;};function E(T,U){var V=T.getBogus();V&&V.remove();var W=T.getHtml();W=C(W,/(?:^[ \t\n\r]+)|(?:[ \t\n\r]+$)/g,'');W=W.replace(/[ \t\r\n]*(]*>)[ \t\r\n]*/gi,'$1');W=W.replace(/([ \t\n\r]+| )/g,' ');W=W.replace(/]*>/gi,'\n');if(c){var X=T.getDocument().createElement('div');X.append(U);U.$.outerHTML='
    '+W+'
    ';U.copyAttributes(X.getFirst());U=X.getFirst().remove();}else U.setHtml(W);return U;};function F(T,U){var V=T._.definition,W=V.attributes,X=V.styles,Y=N(T)[U.getName()],Z=e.isEmpty(W)&&e.isEmpty(X);for(var aa in W){if((aa=='class'||T._.definition.fullMatch)&&U.getAttribute(aa)!=O(aa,W[aa]))continue;Z=U.hasAttribute(aa);U.removeAttribute(aa);}for(var ab in X){if(T._.definition.fullMatch&&U.getStyle(ab)!=O(ab,X[ab],true))continue;Z=Z||!!U.getStyle(ab);U.removeStyle(ab);}H(U,Y,m[U.getName()]);if(Z)!f.$block[U.getName()]||T._.enterMode==2&&!U.hasAttributes()?I(U):U.renameNode(T._.enterMode==1?'p':'div');};function G(T,U){var V=T._.definition,W=V.attributes,X=V.styles,Y=N(T),Z=U.getElementsByTag(T.element);for(var aa=Z.count();--aa>=0;)F(T,Z.getItem(aa));for(var ab in Y){if(ab!=T.element){Z=U.getElementsByTag(ab);for(aa=Z.count()-1;aa>=0;aa--){var ac=Z.getItem(aa);H(ac,Y[ab]);}}}};function H(T,U,V){var W=U&&U.attributes;if(W)for(var X=0;X0)H+=(F.$.offsetWidth||0)-(F.$.clientWidth||0)+3;H+=4;F.setStyle('width',H+'px');v.element.addClass('cke_frameLoaded');var I=v.element.$.scrollHeight;if(c&&b.quirks&&I>0)I+=(F.$.offsetHeight||0)-(F.$.clientHeight||0)+3;F.setStyle('height',I+'px');u._.currentBlock.element.setStyle('display','none').removeStyle('display');}else F.removeStyle('height');if(A)B-=w.$.offsetWidth;w.setStyle('left',B+'px');var J=u.element,K=J.getWindow(),L=w.$.getBoundingClientRect(),M=K.getViewPaneSize(),N=L.width||L.right-L.left,O=L.height||L.bottom-L.top,P=A?L.right:M.width-L.left,Q=A?M.width-L.right:L.left;if(A){if(PN)B+=N;else if(M.width>N)B-=L.left;else B=B-L.right+M.width;}else if(PN)B-=N;else if(M.width>N)B=B-L.right+M.width;else B-=L.left;var R=M.height-L.top,S=L.top; if(RO)C-=O;else if(M.height>O)C=C-L.bottom+M.height;else C-=L.top;if(c){var T=new h(w.$.offsetParent),U=T;if(U.getName()=='html')U=U.getDocument().getBody();if(U.getComputedStyle('direction')=='rtl')if(b.ie8Compat)B-=w.getDocument().getDocumentElement().$.scrollLeft*2;else B-=T.$.scrollWidth-T.$.clientWidth;}var V=w.getFirst(),W;if(W=V.getCustomData('activePanel'))W.onHide&&W.onHide.call(this,1);V.setCustomData('activePanel',this);w.setStyles({top:C+'px',left:B+'px'});w.setOpacity(1);},this);u.isLoaded?E():u.onLoad=E;e.setTimeout(function(){x.$.contentWindow.focus();this.allowBlur(true);},0,this);},b.air?200:0,this);this.visible=1;if(this.onShow)this.onShow.call(this);n=0;},hide:function(p){var r=this;if(r.visible&&(!r.onHide||r.onHide.call(r)!==true)){r.hideChild();b.gecko&&r._.iframe.getFrameDocument().$.activeElement.blur();r.element.setStyle('display','none');r.visible=0;r.element.getFirst().removeCustomData('activePanel');var q=p!==false&&r._.returnFocus;if(q){if(b.webkit&&q.type)q.getWindow().$.focus();q.focus();}}},allowBlur:function(p){var q=this._.panel;if(p!=undefined)q.allowBlur=p;return q.allowBlur;},showAsChild:function(p,q,r,s,t,u){if(this._.activeChild==p&&p._.panel._.offsetParentId==r.getId())return;this.hideChild();p.onHide=e.bind(function(){e.setTimeout(function(){if(!this._.focused)this.hide();},0,this);},this);this._.activeChild=p;this._.focused=false;p.showBlock(q,r,s,t,u);if(b.ie7Compat||b.ie8&&b.ie6Compat)setTimeout(function(){p.element.getChild(0).$.style.cssText+='';},100);},hideChild:function(){var p=this._.activeChild;if(p){delete p.onHide;delete p._.returnFocus;delete this._.activeChild;p.hide();}}}});a.on('instanceDestroyed',function(){var p=e.isEmpty(a.instances);for(var q in m){var r=m[q];if(p)r.destroy();else r.element.hide();}p&&(m={});});})();j.add('menu',{beforeInit:function(m){var n=m.config.menu_groups.split(','),o=m._.menuGroups={},p=m._.menuItems={};for(var q=0;q'],B=r.length,C=B&&r[0].group;for(var D=0;D');C=E.group;}E.render(this,D,A);}A.push('');u.setHtml(A.join(''));k.fire('ready',this);if(this.parent)this.parent._.panel.showAsChild(t,this.id,n,o,p,q);else t.showBlock(this.id,n,o,p,q);s.fire('menuShow',[t]);},addListener:function(n){this._.listeners.push(n);},hide:function(n){var o=this;o._.onHide&&o._.onHide();o._.panel&&o._.panel.hide(n);}}});function m(n){n.sort(function(o,p){if(o.groupp.group)return 1;return o.orderp.order?1:0;});};a.menuItem=e.createClass({$:function(n,o,p){var q=this;e.extend(q,p,{order:0,className:'cke_button_'+o});q.group=n._.menuGroups[q.group];q.editor=n;q.name=o;},proto:{render:function(n,o,p){var w=this;var q=n.id+String(o),r=typeof w.state=='undefined'?2:w.state,s=' cke_'+(r==1?'on':r==0?'disabled':'off'),t=w.label;if(w.className)s+=' '+w.className;var u=w.getItems;p.push(''+''+'');if(u)p.push('','&#',w.editor.lang.dir=='rtl'?'9668':'9658',';',''); p.push(t,'');}}});})();i.menu_groups='clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea,div';(function(){var m;j.add('editingblock',{init:function(n){if(!n.config.editingBlock)return;n.on('themeSpace',function(o){if(o.data.space=='contents')o.data.html+='
    ';});n.on('themeLoaded',function(){n.fireOnce('editingBlockReady');});n.on('uiReady',function(){n.setMode(n.config.startupMode);});n.on('afterSetData',function(){if(!m){function o(){m=true;n.getMode().loadData(n.getData());m=false;};if(n.mode)o();else n.on('mode',function(){if(n.mode){o();n.removeListener('mode',arguments.callee);}});}});n.on('beforeGetData',function(){if(!m&&n.mode){m=true;n.setData(n.getMode().getData(),null,1);m=false;}});n.on('getSnapshot',function(o){if(n.mode)o.data=n.getMode().getSnapshotData();});n.on('loadSnapshot',function(o){if(n.mode)n.getMode().loadSnapshotData(o.data);});n.on('mode',function(o){o.removeListener();b.webkit&&n.container.on('focus',function(){n.focus();});if(n.config.startupFocus)n.focus();setTimeout(function(){n.fireOnce('instanceReady');a.fire('instanceReady',null,n);},0);});n.on('destroy',function(){var o=this;if(o.mode)o._.modes[o.mode].unload(o.getThemeSpace('contents'));});}});a.editor.prototype.mode='';a.editor.prototype.addMode=function(n,o){o.name=n;(this._.modes||(this._.modes={}))[n]=o;};a.editor.prototype.setMode=function(n){this.fire('beforeSetMode',{newMode:n});var o,p=this.getThemeSpace('contents'),q=this.checkDirty();if(this.mode){if(n==this.mode)return;this._.previousMode=this.mode;this.fire('beforeModeUnload');var r=this.getMode();o=r.getData();r.unload(p);this.mode='';}p.setHtml('');var s=this.getMode(n);if(!s)throw '[CKEDITOR.editor.setMode] Unknown mode "'+n+'".';if(!q)this.on('mode',function(){this.resetDirty();this.removeListener('mode',arguments.callee);});s.load(p,typeof o!='string'?this.getData():o);};a.editor.prototype.getMode=function(n){return this._.modes&&this._.modes[n||this.mode];};a.editor.prototype.focus=function(){this.forceNextSelectionCheck();var n=this.getMode();if(n)n.focus();};})();i.startupMode='wysiwyg';i.editingBlock=true;(function(){function m(){var G=this;try{var D=G.getSelection();if(!D||!D.document.getWindow().$)return;var E=D.getStartElement(),F=new d.elementPath(E);if(!F.compare(G._.selectionPreviousPath)){G._.selectionPreviousPath=F;G.fire('selectionChange',{selection:D,path:F,element:E}); }}catch(H){}};var n,o;function p(){o=true;if(n)return;q.call(this);n=e.setTimeout(q,200,this);};function q(){n=null;if(o){e.setTimeout(m,0,this);o=false;}};function r(D){function E(I,J){if(!I||I.type==3)return false;var K=D.clone();return K['moveToElementEdit'+(J?'End':'Start')](I);};var F=D.startContainer,G=D.getPreviousNode(A,null,F),H=D.getNextNode(A,null,F);if(E(G)||E(H,1))return true;if(!(G||H)&&!(F.type==1&&F.isBlockBoundary()&&F.getBogus()))return true;return false;};var s={modes:{wysiwyg:1,source:1},readOnly:c||b.webkit,exec:function(D){switch(D.mode){case 'wysiwyg':D.document.$.execCommand('SelectAll',false,null);D.forceNextSelectionCheck();D.selectionChange();break;case 'source':var E=D.textarea.$;if(c)E.createTextRange().execCommand('SelectAll');else{E.selectionStart=0;E.selectionEnd=E.value.length;}E.focus();}},canUndo:false};function t(D){w(D);var E=D.createText('​');D.setCustomData('cke-fillingChar',E);return E;};function u(D){return D&&D.getCustomData('cke-fillingChar');};function v(D){var E=D&&u(D);if(E)if(E.getCustomData('ready'))w(D);else E.setCustomData('ready',1);};function w(D){var E=D&&D.removeCustomData('cke-fillingChar');if(E){var F,G=D.getSelection().getNative(),H=G&&G.type!='None'&&G.getRangeAt(0);if(E.getLength()>1&&H&&H.intersectsNode(E.$)){F=[G.anchorOffset,G.focusOffset];var I=G.anchorNode==E.$&&G.anchorOffset>0,J=G.focusNode==E.$&&G.focusOffset>0;I&&F[0]--;J&&F[1]--;x(G)&&F.unshift(F.pop());}E.setText(E.getText().replace(/\u200B/g,''));if(F){var K=G.getRangeAt(0);K.setStart(K.startContainer,F[0]);K.setEnd(K.startContainer,F[1]);G.removeAllRanges();G.addRange(K);}}};function x(D){if(!D.isCollapsed){var E=D.getRangeAt(0);E.setStart(D.anchorNode,D.anchorOffset);E.setEnd(D.focusNode,D.focusOffset);return E.collapsed;}};j.add('selection',{init:function(D){if(b.webkit){D.on('selectionChange',function(){v(D.document);});D.on('beforeSetMode',function(){w(D.document);});var E,F;function G(){var I=D.document,J=u(I);if(J){var K=I.$.defaultView.getSelection();if(K.type=='Caret'&&K.anchorNode==J.$)F=1;E=J.getText();J.setText(E.replace(/\u200B/g,''));}};function H(){var I=D.document,J=u(I);if(J){J.setText(E);if(F){I.$.defaultView.getSelection().setPosition(J.$,J.getLength());F=0;}}};D.on('beforeUndoImage',G);D.on('afterUndoImage',H);D.on('beforeGetData',G,null,null,0);D.on('getData',H);}D.on('contentDom',function(){var I=D.document,J=a.document,K=I.getBody(),L=I.getDocumentElement();if(c){var M,N,O=1;K.on('focusin',function(V){if(V.data.$.srcElement.nodeName!='BODY')return; var W=I.getCustomData('cke_locked_selection');if(W){W.unlock(1);W.lock();}else if(M&&O){try{M.select();}catch(X){}M=null;}});K.on('focus',function(){N=1;U();});K.on('beforedeactivate',function(V){if(V.data.$.toElement)return;N=0;O=1;});c&&D.on('blur',function(){try{I.$.selection.empty();}catch(V){}});L.on('mousedown',function(){O=0;});L.on('mouseup',function(){O=1;});var P;K.on('mousedown',function(V){if(V.data.$.button==2){var W=D.document.$.selection;if(W.type=='None')P=D.window.getScrollPosition();}T();});K.on('mouseup',function(V){if(V.data.$.button==2&&P){D.document.$.documentElement.scrollLeft=P.x;D.document.$.documentElement.scrollTop=P.y;}P=null;N=1;setTimeout(function(){U(true);},0);});K.on('keydown',T);K.on('keyup',function(){N=1;U();});if(I.$.compatMode!='BackCompat'){if(b.ie7Compat||b.ie6Compat){function Q(V,W,X){try{V.moveToPoint(W,X);}catch(Y){}};L.on('mousedown',function(V){function W(ab){ab=ab.data.$;if(Z){var ac=K.$.createTextRange();Q(ac,ab.x,ab.y);Z.setEndPoint(aa.compareEndPoints('StartToStart',ac)<0?'EndToEnd':'StartToStart',ac);Z.select();}};function X(){J.removeListener('mouseup',Y);L.removeListener('mouseup',Y);};function Y(){L.removeListener('mousemove',W);X();Z.select();};V=V.data;if(V.getTarget().is('html')&&V.$.x0)P=Q-1;else if(R<0)O=Q+1;else if(b.ie9Compat&&L.tagName=='BR'){var U=J.defaultView.getSelection();return{container:U[H?'anchorNode':'focusNode'],offset:U[H?'anchorOffset':'focusOffset']};}else return{container:I,offset:E(L)};}if(Q==-1||Q==K.length-1&&R<0){N.moveToElementText(I); N.setEndPoint('StartToStart',G);S=N.text.replace(/(\r\n|\r)/g,'\n').length;K=I.childNodes;if(!S){L=K[K.length-1];if(L.nodeType!=3)return{container:I,offset:K.length};else return{container:L,offset:L.nodeValue.length};}var V=K.length;while(S>0&&V>0){M=K[--V];if(M.nodeType==3){T=M;S-=M.nodeValue.length;}}return{container:T,offset:-S};}else{N.collapse(R>0?true:false);N.setEndPoint(R>0?'StartToStart':'EndToStart',G);S=N.text.replace(/(\r\n|\r)/g,'\n').length;if(!S)return{container:I,offset:E(L)+(R>0?0:1)};while(S>0)try{M=L[R>0?'previousSibling':'nextSibling'];if(M.nodeType==3){S-=M.nodeValue.length;T=M;}L=M;}catch(W){return{container:I,offset:E(L)};}return{container:T,offset:R>0?-S:T.nodeValue.length+S};}};return function(){var Q=this;var G=Q.getNative(),H=G&&G.createRange(),I=Q.getType(),J;if(!G)return[];if(I==2){J=new d.range(Q.document);var K=F(H,true);J.setStart(new d.node(K.container),K.offset);K=F(H);J.setEnd(new d.node(K.container),K.offset);if(J.endContainer.getPosition(J.startContainer)&4&&J.endOffset<=J.startContainer.getIndex())J.collapse();return[J];}else if(I==3){var L=[];for(var M=0;M=L.getLength())P.setStartAfter(L);else P.setStartBefore(L);if(M&&M.type==3)if(!O)P.setEndBefore(M);else P.setEndAfter(M);var Q=new d.walker(P);Q.evaluator=function(R){if(R.type==1&&R.isReadOnly()){var S=I.clone();I.setEndBefore(R);if(I.collapsed)G.splice(H--,1); if(!(R.getPosition(P.endContainer)&16)){S.setStartAfter(R);if(!S.collapsed)G.splice(H+1,0,S);}return true;}return false;};Q.next();}}return F.ranges;};})(),getStartElement:function(){var K=this;var D=K._.cache;if(D.startElement!==undefined)return D.startElement;var E,F=K.getNative();switch(K.getType()){case 3:return K.getSelectedElement();case 2:var G=K.getRanges()[0];if(G){if(!G.collapsed){G.optimize();while(1){var H=G.startContainer,I=G.startOffset;if(I==(H.getChildCount?H.getChildCount():H.getLength())&&!H.isBlockBoundary())G.setStartAfter(H);else break;}E=G.startContainer;if(E.type!=1)return E.getParent();E=E.getChild(G.startOffset);if(!E||E.type!=1)E=G.startContainer;else{var J=E.getFirst();while(J&&J.type==1){E=J;J=J.getFirst();}}}else{E=G.startContainer;if(E.type!=1)E=E.getParent();}E=E.$;}}return D.startElement=E?new h(E):null;},getSelectedElement:function(){var D=this._.cache;if(D.selectedElement!==undefined)return D.selectedElement;var E=this,F=e.tryThese(function(){return E.getNative().createRange().item(0);},function(){var G,H,I=E.getRanges()[0],J=I.getCommonAncestor(1,1),K={table:1,ul:1,ol:1,dl:1};for(var L in K){if(G=J.getAscendant(L,1))break;}if(G){var M=new d.range(this.document);M.setStartAt(G,1);M.setEnd(I.startContainer,I.startOffset);var N=e.extend(K,f.$listItem,f.$tableContent),O=new d.walker(M),P=function(Q,R){return function(S,T){if(S.type==3&&(!e.trim(S.getText())||S.getParent().data('cke-bookmark')))return true;var U;if(S.type==1){U=S.getName();if(U=='br'&&R&&S.equals(S.getParent().getBogus()))return true;if(T&&U in N||U in f.$removeEmpty)return true;}Q.halted=1;return false;};};O.guard=P(O);if(O.checkBackward()&&!O.halted){O=new d.walker(M);M.setStart(I.endContainer,I.endOffset);M.setEndAt(G,2);O.guard=P(O,1);if(O.checkForward()&&!O.halted)H=G.$;}}if(!H)throw 0;return H;},function(){var G=E.getRanges()[0],H,I;for(var J=2;J&&!((H=G.getEnclosedNode())&&H.type==1&&y[H.getName()]&&(I=H));J--)G.shrink(1);return I.$;});return D.selectedElement=F?new h(F):null;},getSelectedText:function(){var D=this._.cache;if(D.selectedText!==undefined)return D.selectedText;var E='',F=this.getNative();if(this.getType()==2)E=c?F.createRange().text:F.toString();return D.selectedText=E;},lock:function(){var D=this;D.getRanges();D.getStartElement();D.getSelectedElement();D.getSelectedText();D._.cache.nativeSel={};D.isLocked=1;D.document.setCustomData('cke_locked_selection',D);},unlock:function(D){var I=this;var E=I.document,F=E.getCustomData('cke_locked_selection'); if(F){E.setCustomData('cke_locked_selection',null);if(D){var G=F.getSelectedElement(),H=!G&&F.getRanges();I.isLocked=0;I.reset();if(G)I.selectElement(G);else I.selectRanges(H);}}if(!F||!D){I.isLocked=0;I.reset();}},reset:function(){this._.cache={};},selectElement:function(D){var F=this;if(F.isLocked){var E=new d.range(F.document);E.setStartBefore(D);E.setEndAfter(D);F._.cache.selectedElement=D;F._.cache.startElement=D;F._.cache.ranges=new d.rangeList(E);F._.cache.type=3;return;}E=new d.range(D.getDocument());E.setStartBefore(D);E.setEndAfter(D);E.select();F.document.fire('selectionchange');F.reset();},selectRanges:function(D){var R=this;if(R.isLocked){R._.cache.selectedElement=null;R._.cache.startElement=D[0]&&D[0].getTouchedStartNode();R._.cache.ranges=new d.rangeList(D);R._.cache.type=2;return;}if(c){if(D.length>1){var E=D[D.length-1];D[0].setEnd(E.endContainer,E.endOffset);D.length=1;}if(D[0])D[0].select();R.reset();}else{var F=R.getNative();if(!F)return;if(D.length){F.removeAllRanges();b.webkit&&w(R.document);}for(var G=0;G=0){M.collapse(1);N.setEnd(M.endContainer.$,M.endOffset);}else throw S;}F.addRange(N);}R.document.fire('selectionchange');R.reset();}},createBookmarks:function(D){return this.getRanges().createBookmarks(D);},createBookmarks2:function(D){return this.getRanges().createBookmarks2(D);},selectBookmarks:function(D){var E=[];for(var F=0;F','','',this.label,'','=10900&&!o.hc?'':" href=\"javascript:void('"+this.label+"')\"",' role="button" aria-labelledby="',p,'_label" aria-describedby="',p,'_text" aria-haspopup="true"');if(b.opera||b.gecko&&b.mac)n.push(' onkeypress="return false;"');if(b.gecko)n.push(' onblur="this.style.cssText = this.style.cssText;"');n.push(' onkeydown="CKEDITOR.tools.callFunction( ',t,', event, this );" onfocus="return CKEDITOR.tools.callFunction(',u,', event);" '+(c?'onclick="return false;" onmouseup':'onclick')+'="CKEDITOR.tools.callFunction(',q,', this); return false;">'+this.label+''+''+''+(b.hc?'▼':b.air?' ':'')+''+''+''+'');if(this.onRender)this.onRender();return r;},createPanel:function(m){if(this._.panel)return;var n=this._.panelDefinition,o=this._.panelDefinition.block,p=n.parent||a.document.getBody(),q=new k.floatPanel(m,p,n),r=q.addListBlock(this.id,o),s=this;q.onShow=function(){if(s.className)this.element.getFirst().addClass(s.className+'_panel');s.setState(1);r.focus(!s.multiSelect&&s.getValue());s._.on=1;if(s.onOpen)s.onOpen();};q.onHide=function(t){if(s.className)this.element.getFirst().removeClass(s.className+'_panel');s.setState(s.modes&&s.modes[m.mode]?2:0);s._.on=0;if(!t&&s.onClose)s.onClose();};q.onEscape=function(){q.hide();};r.onClick=function(t,u){s.document.getWindow().focus();if(s.onClick)s.onClick.call(s,t,u);if(u)s.setValue(t,s._.items[t]);else s.setValue('');q.hide(false);};this._.panel=q;this._.list=r;q.getBlock(this.id).onHide=function(){s._.on=0;s.setState(2);};if(this.init)this.init();},setValue:function(m,n){var p=this;p._.value=m;var o=p.document.getById('cke_'+p.id+'_text');if(o){if(!(m||n)){n=p.label;o.addClass('cke_inline_label');}else o.removeClass('cke_inline_label');o.setHtml(typeof n!='undefined'?n:m);}},getValue:function(){return this._.value||'';},unmarkAll:function(){this._.list.unmarkAll();},mark:function(m){this._.list.mark(m);},hideItem:function(m){this._.list.hideItem(m);},hideGroup:function(m){this._.list.hideGroup(m);},showAll:function(){this._.list.showAll();},add:function(m,n,o){this._.items[m]=o||m;this._.list.add(m,n,o);},startGroup:function(m){this._.list.startGroup(m); },commit:function(){var m=this;if(!m._.committed){m._.list.commit();m._.committed=1;k.fire('ready',m);}m._.committed=1;},setState:function(m){var n=this;if(n._.state==m)return;n.document.getById('cke_'+n.id).setState(m);n._.state=m;}}});k.prototype.addRichCombo=function(m,n){this.add(m,'richcombo',n);};j.add('htmlwriter');a.htmlWriter=e.createClass({base:a.htmlParser.basicWriter,$:function(){var o=this;o.base();o.indentationChars='\t';o.selfClosingEnd=' />';o.lineBreakChars='\n';o.forceSimpleAmpersand=0;o.sortAttributes=1;o._.indent=0;o._.indentation='';o._.inPre=0;o._.rules={};var m=f;for(var n in e.extend({},m.$nonBodyContent,m.$block,m.$listItem,m.$tableContent))o.setRules(n,{indent:1,breakBeforeOpen:1,breakAfterOpen:1,breakBeforeClose:!m[n]['#'],breakAfterClose:1});o.setRules('br',{breakAfterOpen:1});o.setRules('title',{indent:0,breakAfterOpen:0});o.setRules('style',{indent:0,breakBeforeClose:1});o.setRules('pre',{indent:0});},proto:{openTag:function(m,n){var p=this;var o=p._.rules[m];if(p._.indent)p.indentation();else if(o&&o.breakBeforeOpen){p.lineBreak();p.indentation();}p._.output.push('<',m);},openTagClose:function(m,n){var p=this;var o=p._.rules[m];if(n)p._.output.push(p.selfClosingEnd);else{p._.output.push('>');if(o&&o.indent)p._.indentation+=p.indentationChars;}if(o&&o.breakAfterOpen)p.lineBreak();m=='pre'&&(p._.inPre=1);},attribute:function(m,n){if(typeof n=='string'){this.forceSimpleAmpersand&&(n=n.replace(/&/g,'&'));n=e.htmlEncodeAttr(n);}this._.output.push(' ',m,'="',n,'"');},closeTag:function(m){var o=this;var n=o._.rules[m];if(n&&n.indent)o._.indentation=o._.indentation.substr(o.indentationChars.length);if(o._.indent)o.indentation();else if(n&&n.breakBeforeClose){o.lineBreak();o.indentation();}o._.output.push('');m=='pre'&&(o._.inPre=0);if(n&&n.breakAfterClose)o.lineBreak();},text:function(m){var n=this;if(n._.indent){n.indentation();!n._.inPre&&(m=e.ltrim(m));}n._.output.push(m);},comment:function(m){if(this._.indent)this.indentation();this._.output.push('');},lineBreak:function(){var m=this;if(!m._.inPre&&m._.output.length>0)m._.output.push(m.lineBreakChars);m._.indent=1;},indentation:function(){var m=this;if(!m._.inPre)m._.output.push(m._.indentation);m._.indent=0;},setRules:function(m,n){var o=this._.rules[m];if(o)e.extend(o,n,true);else this._.rules[m]=n;}}});j.add('menubutton',{requires:['button','menu'],beforeInit:function(m){m.ui.addHandler('menubutton',k.menuButton.handler);}});a.UI_MENUBUTTON='menubutton'; (function(){var m=function(n){var o=this._;if(o.state===0)return;o.previousState=o.state;var p=o.menu;if(!p){p=o.menu=new a.menu(n,{panel:{className:n.skinClass+' cke_contextmenu',attributes:{'aria-label':n.lang.common.options}}});p.onHide=e.bind(function(){this.setState(this.modes&&this.modes[n.mode]?o.previousState:0);},this);if(this.onMenu)p.addListener(this.onMenu);}if(o.on){p.hide();return;}this.setState(1);p.show(a.document.getById(this._.id),4);};k.menuButton=e.createClass({base:k.button,$:function(n){var o=n.panel;delete n.panel;this.base(n);this.hasArrow=true;this.click=m;},statics:{handler:{create:function(n){return new k.menuButton(n);}}}});})();j.add('dialogui');(function(){var m=function(u){var x=this;x._||(x._={});x._['default']=x._.initValue=u['default']||'';x._.required=u.required||false;var v=[x._];for(var w=1;w',v.label,'',''); else{var D={type:'hbox',widths:v.widths,padding:0,children:[{type:'html',html:'